@adaptabletools/adaptable 18.0.0-canary.20 → 18.0.0-canary.22
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/package.json +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -1
- package/src/AdaptableOptions/AdaptableOptions.d.ts +0 -6
- package/src/AdaptableOptions/CommentOptions.d.ts +7 -1
- package/src/AdaptableOptions/GroupingOptions.d.ts +0 -4
- package/src/AdaptableOptions/NoteOptions.d.ts +8 -2
- package/src/AdaptableOptions/StateOptions.d.ts +6 -0
- package/src/Api/ColumnApi.d.ts +5 -0
- package/src/Api/CommentApi.d.ts +2 -2
- package/src/Api/Implementation/ColumnApiImpl.d.ts +3 -0
- package/src/Api/Implementation/ColumnApiImpl.js +19 -6
- package/src/Api/Implementation/ConfigApiImpl.js +3 -0
- package/src/Api/Implementation/GridApiImpl.js +3 -1
- package/src/Api/Implementation/ScopeApiImpl.js +34 -1
- package/src/Api/Internal/ActionRowInternalApi.d.ts +1 -0
- package/src/Api/Internal/ActionRowInternalApi.js +12 -1
- package/src/Api/Internal/ColumnInternalApi.d.ts +2 -0
- package/src/Api/Internal/ColumnInternalApi.js +7 -1
- package/src/PredefinedConfig/Common/TransposeConfig.d.ts +5 -0
- package/src/Strategy/LayoutModule.js +6 -0
- package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
- package/src/Utilities/Constants/GeneralConstants.js +1 -0
- package/src/View/Comments/CommentsPopup.js +5 -2
- package/src/View/Components/CellPopup/index.js +1 -1
- package/src/View/Components/FilterForm/QuickFilterValues.js +39 -23
- package/src/View/DataImport/DataImportWizard/DataImportWizard.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +19 -6
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +0 -5
- package/src/View/Layout/TransposedPopup.js +2 -2
- package/src/View/Note/NotePopup.js +5 -2
- package/src/agGrid/AdaptableAgGrid.d.ts +2 -0
- package/src/agGrid/AdaptableAgGrid.js +29 -66
- package/src/agGrid/AgGridAdapter.d.ts +1 -0
- package/src/agGrid/AgGridAdapter.js +4 -0
- package/src/agGrid/AgGridColumnAdapter.d.ts +0 -2
- package/src/agGrid/AgGridColumnAdapter.js +0 -43
- package/src/agGrid/buildSortedColumnStateForLayout.d.ts +7 -0
- package/src/agGrid/buildSortedColumnStateForLayout.js +120 -0
- package/src/agGrid/defaultAdaptableOptions.js +1 -2
- package/src/agGrid/sortColumnStateForVisibleColumns.d.ts +12 -0
- package/src/agGrid/sortColumnStateForVisibleColumns.js +46 -0
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +29 -23
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/tsconfig.esm.tsbuildinfo +1 -1
|
@@ -703,15 +703,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
703
703
|
noCode: string;
|
|
704
704
|
defVal?: undefined;
|
|
705
705
|
ref?: undefined;
|
|
706
|
-
} | {
|
|
707
|
-
name: string;
|
|
708
|
-
kind: string;
|
|
709
|
-
desc: string;
|
|
710
|
-
isOpt: boolean;
|
|
711
|
-
defVal: string;
|
|
712
|
-
gridInfo?: undefined;
|
|
713
|
-
noCode?: undefined;
|
|
714
|
-
ref?: undefined;
|
|
715
706
|
} | {
|
|
716
707
|
name: string;
|
|
717
708
|
kind: string;
|
|
@@ -766,6 +757,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
766
757
|
gridInfo?: undefined;
|
|
767
758
|
defVal?: undefined;
|
|
768
759
|
ref?: undefined;
|
|
760
|
+
} | {
|
|
761
|
+
name: string;
|
|
762
|
+
kind: string;
|
|
763
|
+
desc: string;
|
|
764
|
+
isOpt: boolean;
|
|
765
|
+
defVal: string;
|
|
766
|
+
gridInfo?: undefined;
|
|
767
|
+
noCode?: undefined;
|
|
768
|
+
ref?: undefined;
|
|
769
769
|
} | {
|
|
770
770
|
name: string;
|
|
771
771
|
kind: string;
|
|
@@ -1974,12 +1974,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1974
1974
|
name: string;
|
|
1975
1975
|
kind: string;
|
|
1976
1976
|
desc: string;
|
|
1977
|
-
props: {
|
|
1977
|
+
props: ({
|
|
1978
1978
|
name: string;
|
|
1979
1979
|
kind: string;
|
|
1980
1980
|
desc: string;
|
|
1981
1981
|
isOpt: boolean;
|
|
1982
|
-
|
|
1982
|
+
defVal: string;
|
|
1983
|
+
} | {
|
|
1984
|
+
name: string;
|
|
1985
|
+
kind: string;
|
|
1986
|
+
desc: string;
|
|
1987
|
+
isOpt: boolean;
|
|
1988
|
+
defVal?: undefined;
|
|
1989
|
+
})[];
|
|
1983
1990
|
};
|
|
1984
1991
|
CommentState: {
|
|
1985
1992
|
name: string;
|
|
@@ -3639,14 +3646,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3639
3646
|
gridInfo: string;
|
|
3640
3647
|
noCode: string;
|
|
3641
3648
|
defVal: string;
|
|
3642
|
-
} | {
|
|
3643
|
-
name: string;
|
|
3644
|
-
kind: string;
|
|
3645
|
-
desc: string;
|
|
3646
|
-
isOpt: boolean;
|
|
3647
|
-
gridInfo?: undefined;
|
|
3648
|
-
noCode?: undefined;
|
|
3649
|
-
defVal?: undefined;
|
|
3650
3649
|
} | {
|
|
3651
3650
|
name: string;
|
|
3652
3651
|
kind: string;
|
|
@@ -4040,12 +4039,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4040
4039
|
name: string;
|
|
4041
4040
|
kind: string;
|
|
4042
4041
|
desc: string;
|
|
4043
|
-
props: {
|
|
4042
|
+
props: ({
|
|
4044
4043
|
name: string;
|
|
4045
4044
|
kind: string;
|
|
4046
4045
|
desc: string;
|
|
4047
4046
|
isOpt: boolean;
|
|
4048
|
-
|
|
4047
|
+
defVal: string;
|
|
4048
|
+
} | {
|
|
4049
|
+
name: string;
|
|
4050
|
+
kind: string;
|
|
4051
|
+
desc: string;
|
|
4052
|
+
isOpt: boolean;
|
|
4053
|
+
defVal?: undefined;
|
|
4054
|
+
})[];
|
|
4049
4055
|
};
|
|
4050
4056
|
NoteState: {
|
|
4051
4057
|
name: string;
|
|
@@ -5040,14 +5046,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5040
5046
|
desc: string;
|
|
5041
5047
|
isOpt: boolean;
|
|
5042
5048
|
defVal: string;
|
|
5043
|
-
ref
|
|
5049
|
+
ref?: undefined;
|
|
5044
5050
|
} | {
|
|
5045
5051
|
name: string;
|
|
5046
5052
|
kind: string;
|
|
5047
5053
|
desc: string;
|
|
5048
5054
|
isOpt: boolean;
|
|
5049
5055
|
defVal: string;
|
|
5050
|
-
ref
|
|
5056
|
+
ref: string;
|
|
5051
5057
|
} | {
|
|
5052
5058
|
name: string;
|
|
5053
5059
|
kind: string;
|