Enhance Excel-style filters with numeric operators and integrate into GRID metrics (Sell Out, Units)

This commit is contained in:
Christian Vidal Wolf
2026-02-09 12:09:01 +01:00
parent d5bcbeda1a
commit 81c946b3e1
3 changed files with 75 additions and 14 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ export interface FilterState {
export interface ColumnFilterCondition {
textFilter?: {
operator: 'equals' | 'notEquals' | 'contains' | 'notContains' | 'startsWith' | 'notStartsWith' | 'endsWith' | 'notEndsWith';
operator: 'equals' | 'notEquals' | 'contains' | 'notContains' | 'startsWith' | 'notStartsWith' | 'endsWith' | 'notEndsWith' | 'gt' | 'lt' | 'gte' | 'lte';
value: string;
};
selectedValues?: string[];