@adaptabletools/adaptable 18.0.0-canary.34 → 18.0.0-canary.36
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/AdaptableOptions/AdaptableOptions.d.ts +10 -3
- package/src/AdaptableOptions/ColumnMenuOptions.d.ts +94 -0
- package/src/AdaptableOptions/ColumnMenuOptions.js +1 -0
- package/src/AdaptableOptions/ContextMenuOptions.d.ts +94 -0
- package/src/AdaptableOptions/ContextMenuOptions.js +1 -0
- package/src/Api/AdaptableApi.d.ts +10 -0
- package/src/Api/ColumnMenuApi.d.ts +5 -0
- package/src/Api/ColumnMenuApi.js +1 -0
- package/src/Api/ContextMenuApi.d.ts +5 -0
- package/src/Api/ContextMenuApi.js +1 -0
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +3 -1
- package/src/Api/Implementation/ApiBase.d.ts +3 -2
- package/src/Api/Implementation/ApiBase.js +5 -2
- package/src/Api/Implementation/OptionsApiImpl.d.ts +3 -2
- package/src/Api/Implementation/OptionsApiImpl.js +5 -2
- package/src/Api/OptionsApi.d.ts +7 -3
- package/src/PredefinedConfig/Common/Menu.d.ts +14 -1
- package/src/Strategy/AdaptableModuleBase.d.ts +4 -4
- package/src/Utilities/MenuItem.d.ts +3 -3
- package/src/agGrid/AgGridMenuAdapter.js +6 -6
- package/src/agGrid/defaultAdaptableOptions.js +5 -2
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +46 -36
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/types.d.ts +5 -2
- package/tsconfig.esm.tsbuildinfo +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +0 -194
- package/src/AdaptableOptions/MenuOptions.js +0 -6
|
@@ -737,18 +737,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
737
737
|
desc: string;
|
|
738
738
|
isOpt: boolean;
|
|
739
739
|
gridInfo: string;
|
|
740
|
-
noCode
|
|
741
|
-
ref: string;
|
|
740
|
+
noCode?: undefined;
|
|
742
741
|
defVal?: undefined;
|
|
742
|
+
ref?: undefined;
|
|
743
743
|
} | {
|
|
744
744
|
name: string;
|
|
745
745
|
kind: string;
|
|
746
746
|
desc: string;
|
|
747
747
|
isOpt: boolean;
|
|
748
748
|
gridInfo: string;
|
|
749
|
-
noCode
|
|
749
|
+
noCode: string;
|
|
750
|
+
ref: string;
|
|
750
751
|
defVal?: undefined;
|
|
751
|
-
ref?: undefined;
|
|
752
752
|
} | {
|
|
753
753
|
name: string;
|
|
754
754
|
kind: string;
|
|
@@ -980,6 +980,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
980
980
|
isOpt: boolean;
|
|
981
981
|
}[];
|
|
982
982
|
};
|
|
983
|
+
AdaptableSystemColumnMenuItem: {
|
|
984
|
+
name: string;
|
|
985
|
+
kind: string;
|
|
986
|
+
desc: string;
|
|
987
|
+
props: {
|
|
988
|
+
name: string;
|
|
989
|
+
kind: string;
|
|
990
|
+
desc: string;
|
|
991
|
+
}[];
|
|
992
|
+
};
|
|
993
|
+
AdaptableSystemContextMenuItem: {
|
|
994
|
+
name: string;
|
|
995
|
+
kind: string;
|
|
996
|
+
desc: string;
|
|
997
|
+
props: {
|
|
998
|
+
name: string;
|
|
999
|
+
kind: string;
|
|
1000
|
+
desc: string;
|
|
1001
|
+
}[];
|
|
1002
|
+
};
|
|
983
1003
|
AdaptableSystemIcon: {
|
|
984
1004
|
name: string;
|
|
985
1005
|
kind: string;
|
|
@@ -1001,16 +1021,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1001
1021
|
kind: string;
|
|
1002
1022
|
desc: string;
|
|
1003
1023
|
};
|
|
1004
|
-
AdaptableSystemMenuItem: {
|
|
1005
|
-
name: string;
|
|
1006
|
-
kind: string;
|
|
1007
|
-
desc: string;
|
|
1008
|
-
props: {
|
|
1009
|
-
name: string;
|
|
1010
|
-
kind: string;
|
|
1011
|
-
desc: string;
|
|
1012
|
-
}[];
|
|
1013
|
-
};
|
|
1014
1024
|
AdaptableTheme: {
|
|
1015
1025
|
name: string;
|
|
1016
1026
|
kind: string;
|
|
@@ -1909,6 +1919,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1909
1919
|
ref: string;
|
|
1910
1920
|
})[];
|
|
1911
1921
|
};
|
|
1922
|
+
ColumnMenuOptions: {
|
|
1923
|
+
name: string;
|
|
1924
|
+
kind: string;
|
|
1925
|
+
desc: string;
|
|
1926
|
+
props: {
|
|
1927
|
+
name: string;
|
|
1928
|
+
kind: string;
|
|
1929
|
+
desc: string;
|
|
1930
|
+
isOpt: boolean;
|
|
1931
|
+
}[];
|
|
1932
|
+
};
|
|
1912
1933
|
ColumnOptions: {
|
|
1913
1934
|
name: string;
|
|
1914
1935
|
kind: string;
|
|
@@ -2095,6 +2116,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2095
2116
|
ref: string;
|
|
2096
2117
|
})[];
|
|
2097
2118
|
};
|
|
2119
|
+
ContextMenuOptions: {
|
|
2120
|
+
name: string;
|
|
2121
|
+
kind: string;
|
|
2122
|
+
desc: string;
|
|
2123
|
+
props: {
|
|
2124
|
+
name: string;
|
|
2125
|
+
kind: string;
|
|
2126
|
+
desc: string;
|
|
2127
|
+
isOpt: boolean;
|
|
2128
|
+
}[];
|
|
2129
|
+
};
|
|
2098
2130
|
CountryContext: {
|
|
2099
2131
|
name: string;
|
|
2100
2132
|
kind: string;
|
|
@@ -3950,28 +3982,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3950
3982
|
ref?: undefined;
|
|
3951
3983
|
})[];
|
|
3952
3984
|
};
|
|
3953
|
-
MenuOptions: {
|
|
3954
|
-
name: string;
|
|
3955
|
-
kind: string;
|
|
3956
|
-
desc: string;
|
|
3957
|
-
props: {
|
|
3958
|
-
name: string;
|
|
3959
|
-
kind: string;
|
|
3960
|
-
desc: string;
|
|
3961
|
-
isOpt: boolean;
|
|
3962
|
-
}[];
|
|
3963
|
-
};
|
|
3964
|
-
MenuOrderContext: {
|
|
3965
|
-
name: string;
|
|
3966
|
-
kind: string;
|
|
3967
|
-
desc: string;
|
|
3968
|
-
props: {
|
|
3969
|
-
name: string;
|
|
3970
|
-
kind: string;
|
|
3971
|
-
desc: string;
|
|
3972
|
-
ref: string;
|
|
3973
|
-
}[];
|
|
3974
|
-
};
|
|
3975
3985
|
ModuleExpressionFunctions: {
|
|
3976
3986
|
name: string;
|
|
3977
3987
|
kind: string;
|