| PRODUCT | +
+
+ PRODUCT
+
+ |
|---|
| Product Info | +
+
+ Product Info
+
+ |
Forecast (Period) | Actual Units Sales 2026 | Fc 26 Achievement | diff --git a/components/InColumnStockFilter.tsx b/components/InColumnStockFilter.tsx new file mode 100644 index 0000000..088ca6f --- /dev/null +++ b/components/InColumnStockFilter.tsx @@ -0,0 +1,89 @@ +import React, { useState, useRef, useEffect } from 'react'; + +interface InColumnStockFilterProps { + currentFilters: string[]; + onFilterChange: (newFilters: string[]) => void; +} + +const STOCK_OPTIONS = [ + 'Out of Stock (0)', + 'In Stock (>0)', + 'Low Stock (<10)', +]; + +export const InColumnStockFilter: React.FC
|---|