@adaptabletools/adaptable 20.2.0 → 20.2.1
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 +7 -7
- package/base.css.map +1 -1
- package/index.css +7 -7
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableOptions/QuickSearchOptions.d.ts +1 -1
- package/src/AdaptableOptions/StateOptions.d.ts +60 -15
- package/src/AdaptableState/FormatColumnState.d.ts +11 -6
- package/src/AdaptableState/QuickSearchState.d.ts +3 -3
- package/src/Api/Implementation/ColumnApiImpl.js +3 -2
- package/src/Api/Implementation/StateApiImpl.d.ts +1 -0
- package/src/Api/Implementation/StateApiImpl.js +6 -5
- package/src/Api/Internal/ColumnInternalApi.d.ts +1 -0
- package/src/Api/Internal/ColumnInternalApi.js +5 -0
- package/src/Api/Internal/FormatColumnInternalApi.js +5 -5
- package/src/Api/StateApi.d.ts +9 -0
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +14 -18
- package/src/Redux/Store/AdaptableStore.d.ts +2 -0
- package/src/Redux/Store/AdaptableStore.js +12 -4
- package/src/Redux/Store/Interface/IAdaptableStore.d.ts +1 -0
- package/src/Redux/Store/Interface/IStorageEngine.d.ts +4 -4
- package/src/Redux/Store/buildAdaptableStateFunctionConfig.d.ts +3 -0
- package/src/Redux/Store/buildAdaptableStateFunctionConfig.js +9 -0
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +1 -1
- package/src/Utilities/Helpers/StyleHelper.d.ts +1 -1
- package/src/Utilities/Helpers/StyleHelper.js +11 -0
- package/src/Utilities/Services/LicenseService/index.js +1 -1
- package/src/Utilities/license/decode.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -3
- package/src/View/Components/EntityRulesEditor/index.js +3 -3
- package/src/View/Components/ExpressionWizard.js +1 -1
- package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
- package/src/View/GridFilter/GridFilterExpressionEditor.js +1 -1
- package/src/View/Layout/Wizard/sections/GridFilterSection.js +1 -1
- package/src/View/Layout/Wizard/sections/RowGroupingSection.js +2 -2
- package/src/View/License/LicenseWatermark.js +1 -1
- package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +1 -1
- package/src/View/QuickSearch/QuickSearchInput.js +3 -2
- package/src/agGrid/AdaptableAgGrid.js +2 -2
- package/src/agGrid/AgGridColumnAdapter.d.ts +1 -0
- package/src/agGrid/AgGridColumnAdapter.js +29 -9
- package/src/agGrid/AgGridExportAdapter.js +22 -10
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +33 -16
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +1 -1
- package/tsconfig.esm.tsbuildinfo +1 -1
|
@@ -934,11 +934,31 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
934
934
|
name: string;
|
|
935
935
|
kind: string;
|
|
936
936
|
desc: string;
|
|
937
|
-
props: {
|
|
937
|
+
props: ({
|
|
938
938
|
name: string;
|
|
939
939
|
kind: string;
|
|
940
940
|
desc: string;
|
|
941
|
-
|
|
941
|
+
isOpt: boolean;
|
|
942
|
+
ref?: undefined;
|
|
943
|
+
} | {
|
|
944
|
+
name: string;
|
|
945
|
+
kind: string;
|
|
946
|
+
desc: string;
|
|
947
|
+
ref: string;
|
|
948
|
+
isOpt?: undefined;
|
|
949
|
+
} | {
|
|
950
|
+
name: string;
|
|
951
|
+
kind: string;
|
|
952
|
+
desc: string;
|
|
953
|
+
isOpt?: undefined;
|
|
954
|
+
ref?: undefined;
|
|
955
|
+
} | {
|
|
956
|
+
name: string;
|
|
957
|
+
kind: string;
|
|
958
|
+
desc: string;
|
|
959
|
+
isOpt: boolean;
|
|
960
|
+
ref: string;
|
|
961
|
+
})[];
|
|
942
962
|
};
|
|
943
963
|
AdaptableStatusBar: {
|
|
944
964
|
name: string;
|
|
@@ -1667,6 +1687,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1667
1687
|
kind: string;
|
|
1668
1688
|
desc: string;
|
|
1669
1689
|
};
|
|
1690
|
+
CellAlignment: {
|
|
1691
|
+
name: string;
|
|
1692
|
+
kind: string;
|
|
1693
|
+
desc: string;
|
|
1694
|
+
};
|
|
1670
1695
|
CellColorRange: {
|
|
1671
1696
|
name: string;
|
|
1672
1697
|
kind: string;
|
|
@@ -1975,6 +2000,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1975
2000
|
ref?: undefined;
|
|
1976
2001
|
})[];
|
|
1977
2002
|
};
|
|
2003
|
+
ColumnGroupScope: {
|
|
2004
|
+
name: string;
|
|
2005
|
+
kind: string;
|
|
2006
|
+
desc: string;
|
|
2007
|
+
};
|
|
1978
2008
|
ColumnMenuContext: {
|
|
1979
2009
|
name: string;
|
|
1980
2010
|
kind: string;
|
|
@@ -3563,12 +3593,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3563
3593
|
kind: string;
|
|
3564
3594
|
desc: string;
|
|
3565
3595
|
props: ({
|
|
3566
|
-
name: string;
|
|
3567
|
-
kind: string;
|
|
3568
|
-
desc: string;
|
|
3569
|
-
isOpt: boolean;
|
|
3570
|
-
ref?: undefined;
|
|
3571
|
-
} | {
|
|
3572
3596
|
name: string;
|
|
3573
3597
|
kind: string;
|
|
3574
3598
|
desc: string;
|
|
@@ -5321,8 +5345,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5321
5345
|
kind: string;
|
|
5322
5346
|
desc: string;
|
|
5323
5347
|
isOpt: boolean;
|
|
5348
|
+
ref: string;
|
|
5324
5349
|
defVal?: undefined;
|
|
5325
|
-
ref?: undefined;
|
|
5326
5350
|
} | {
|
|
5327
5351
|
name: string;
|
|
5328
5352
|
kind: string;
|
|
@@ -5337,13 +5361,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5337
5361
|
isOpt: boolean;
|
|
5338
5362
|
defVal: string;
|
|
5339
5363
|
ref: string;
|
|
5340
|
-
} | {
|
|
5341
|
-
name: string;
|
|
5342
|
-
kind: string;
|
|
5343
|
-
desc: string;
|
|
5344
|
-
isOpt: boolean;
|
|
5345
|
-
ref: string;
|
|
5346
|
-
defVal?: undefined;
|
|
5347
5364
|
})[];
|
|
5348
5365
|
};
|
|
5349
5366
|
StatusBarState: {
|