@adaptabletools/adaptable 20.1.3 → 20.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,22 +0,0 @@
1
- import { ColumnFilter, DataSet } from '../../types';
2
- /**
3
- * Current Searches and Filter in AdapTable
4
- */
5
- export interface AdaptableSearchState {
6
- /**
7
- * Current DataSet (if one selected)
8
- */
9
- dataSet: DataSet | undefined;
10
- /**
11
- * Current Grid Filter
12
- */
13
- gridFilter: string | undefined;
14
- /**
15
- * AST for Grid Filter
16
- */
17
- gridFilterAST: any;
18
- /**
19
- * Currently applied Column Filters
20
- */
21
- columnFilters: ColumnFilter[] | undefined;
22
- }