@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.
- package/base.css +1 -0
- package/base.css.map +1 -1
- package/index.css +1 -0
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableState/Common/AdaptableFilterState.d.ts +22 -0
- package/src/AdaptableState/Common/AdaptableSortState.d.ts +8 -3
- package/src/Api/CustomSortApi.d.ts +19 -9
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +3 -0
- package/src/Api/Implementation/CustomSortApiImpl.js +36 -0
- package/src/Api/Implementation/StateApiImpl.d.ts +2 -3
- package/src/Api/Implementation/StateApiImpl.js +6 -8
- package/src/Api/Internal/EventInternalApi.js +8 -6
- package/src/Api/Internal/ExportInternalApi.js +1 -1
- package/src/Api/StateApi.d.ts +3 -3
- package/src/Redux/Store/AdaptableStore.js +7 -6
- package/src/Utilities/Services/DataService.js +0 -1
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +1 -1
- package/src/agGrid/AdaptableAgGrid.js +29 -14
- package/src/agGrid/AgGridExportAdapter.js +1 -1
- package/src/components/Datepicker/index.js +50 -5
- package/src/components/Select/Select.d.ts +2 -0
- package/src/components/Select/Select.js +33 -14
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +10 -10
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +1 -1
- package/tsconfig.esm.tsbuildinfo +1 -1
- package/src/AdaptableState/Common/AdaptableSearchState.d.ts +0 -22
- /package/src/AdaptableState/Common/{AdaptableSearchState.js → AdaptableFilterState.js} +0 -0
|
@@ -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
|
-
}
|
|
File without changes
|