mirror of
https://github.com/christianvidalwolf-prog/CrazeAnalytix.git
synced 2026-08-03 11:45:23 +02:00
Enhance Excel-style filters with numeric operators and integrate into GRID metrics (Sell Out, Units)
This commit is contained in:
@@ -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[];
|
||||
|
||||
Reference in New Issue
Block a user