Fix UI for inventory page 3

This commit is contained in:
Urtzi Alfaro
2025-09-16 12:21:15 +02:00
parent dd4016e217
commit 7aa26d51d3
15 changed files with 1660 additions and 2030 deletions

View File

@@ -1,22 +1,18 @@
// Inventory Domain Components
export { default as InventoryTable, type InventoryTableProps } from './InventoryTable';
export { default as StockLevelIndicator, type StockLevelIndicatorProps, useStockLevels } from './StockLevelIndicator';
export { default as InventoryForm, type InventoryFormProps } from './InventoryForm';
export { default as LowStockAlert, type LowStockAlertProps } from './LowStockAlert';
export { default as InventoryModal, type InventoryModalProps } from './InventoryModal';
export { default as InventoryItemModal, type InventoryItemModalProps } from './InventoryItemModal';
// Re-export related types from inventory types
export type {
InventoryFilters,
InventoryFilter,
IngredientResponse,
StockAlert,
IngredientFormData,
StockMovementResponse,
IngredientCreate,
IngredientUpdate,
UnitOfMeasure,
ProductType,
AlertSeverity,
AlertType,
SortOrder,
} from '../../../types/inventory.types';
PaginatedResponse,
} from '../../../api/types/inventory';
// Utility exports for common inventory operations
export const INVENTORY_CONSTANTS = {