@adaptabletools/adaptable 12.0.0-canary.2 → 12.0.0-canary.3
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 +15 -14
- package/bundle.cjs.js +162 -148
- package/index.css +15 -14
- package/package.json +2 -2
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableOptions/AlertOptions.d.ts +5 -9
- package/src/AdaptableOptions/DashboardOptions.d.ts +1 -5
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +2 -2
- package/src/AdaptableOptions/EditOptions.d.ts +22 -3
- package/src/AdaptableOptions/GeneralOptions.d.ts +7 -0
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +1 -5
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -2
- package/src/Api/AlertApi.d.ts +3 -3
- package/src/Api/Events/RowFormSubmitted.d.ts +15 -0
- package/src/Api/Implementation/AlertApiImpl.d.ts +3 -3
- package/src/Api/Implementation/InternalApiImpl.d.ts +3 -3
- package/src/PredefinedConfig/AlertState.d.ts +4 -4
- package/src/PredefinedConfig/Common/FormContext.d.ts +3 -0
- package/src/Redux/Store/AdaptableStore.js +6 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.d.ts +13 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +1 -1
- package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +3 -3
- package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +2 -2
- package/src/components/Datepicker/Caption.js +1 -1
- package/src/metamodel/adaptable.metamodel.d.ts +105 -21
- package/src/metamodel/adaptable.metamodel.js +116 -32
- package/src/types.d.ts +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -31,7 +31,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
31
31
|
reference?: undefined;
|
|
32
32
|
})[];
|
|
33
33
|
};
|
|
34
|
-
|
|
34
|
+
ActionColumnContext: {
|
|
35
35
|
name: string;
|
|
36
36
|
kind: string;
|
|
37
37
|
description: string;
|
|
@@ -756,26 +756,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
756
756
|
reference?: undefined;
|
|
757
757
|
})[];
|
|
758
758
|
};
|
|
759
|
-
AlertButtonContext: {
|
|
760
|
-
name: string;
|
|
761
|
-
kind: string;
|
|
762
|
-
description: string;
|
|
763
|
-
properties: ({
|
|
764
|
-
name: string;
|
|
765
|
-
kind: string;
|
|
766
|
-
description: string;
|
|
767
|
-
uiLabel: string;
|
|
768
|
-
reference: string;
|
|
769
|
-
isOptional?: undefined;
|
|
770
|
-
} | {
|
|
771
|
-
name: string;
|
|
772
|
-
kind: string;
|
|
773
|
-
description: string;
|
|
774
|
-
uiLabel: string;
|
|
775
|
-
isOptional: boolean;
|
|
776
|
-
reference: string;
|
|
777
|
-
})[];
|
|
778
|
-
};
|
|
779
759
|
AlertDefinition: {
|
|
780
760
|
name: string;
|
|
781
761
|
kind: string;
|
|
@@ -820,6 +800,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
820
800
|
kind: string;
|
|
821
801
|
description: string;
|
|
822
802
|
};
|
|
803
|
+
AlertFormContext: {
|
|
804
|
+
name: string;
|
|
805
|
+
kind: string;
|
|
806
|
+
description: string;
|
|
807
|
+
properties: {
|
|
808
|
+
name: string;
|
|
809
|
+
kind: string;
|
|
810
|
+
description: string;
|
|
811
|
+
uiLabel: string;
|
|
812
|
+
reference: string;
|
|
813
|
+
}[];
|
|
814
|
+
};
|
|
823
815
|
AlertMessageContext: {
|
|
824
816
|
name: string;
|
|
825
817
|
kind: string;
|
|
@@ -1606,6 +1598,31 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1606
1598
|
kind: string;
|
|
1607
1599
|
description: string;
|
|
1608
1600
|
};
|
|
1601
|
+
CreatedRowFormInfo: {
|
|
1602
|
+
name: string;
|
|
1603
|
+
kind: string;
|
|
1604
|
+
description: string;
|
|
1605
|
+
};
|
|
1606
|
+
CreateRowFormContext: {
|
|
1607
|
+
name: string;
|
|
1608
|
+
kind: string;
|
|
1609
|
+
description: string;
|
|
1610
|
+
properties: ({
|
|
1611
|
+
name: string;
|
|
1612
|
+
kind: string;
|
|
1613
|
+
description: string;
|
|
1614
|
+
uiLabel: string;
|
|
1615
|
+
isOptional: boolean;
|
|
1616
|
+
reference: string;
|
|
1617
|
+
} | {
|
|
1618
|
+
name: string;
|
|
1619
|
+
kind: string;
|
|
1620
|
+
description: string;
|
|
1621
|
+
uiLabel: string;
|
|
1622
|
+
isOptional?: undefined;
|
|
1623
|
+
reference?: undefined;
|
|
1624
|
+
})[];
|
|
1625
|
+
};
|
|
1609
1626
|
CustomDestination: {
|
|
1610
1627
|
name: string;
|
|
1611
1628
|
kind: string;
|
|
@@ -1984,6 +2001,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1984
2001
|
uiLabel: string;
|
|
1985
2002
|
}[];
|
|
1986
2003
|
};
|
|
2004
|
+
DataSetFormContext: {
|
|
2005
|
+
name: string;
|
|
2006
|
+
kind: string;
|
|
2007
|
+
description: string;
|
|
2008
|
+
properties: {
|
|
2009
|
+
name: string;
|
|
2010
|
+
kind: string;
|
|
2011
|
+
description: string;
|
|
2012
|
+
uiLabel: string;
|
|
2013
|
+
reference: string;
|
|
2014
|
+
}[];
|
|
2015
|
+
};
|
|
1987
2016
|
DataUpdateConfig: {
|
|
1988
2017
|
name: string;
|
|
1989
2018
|
kind: string;
|
|
@@ -2021,6 +2050,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2021
2050
|
defaultValue: string;
|
|
2022
2051
|
}[];
|
|
2023
2052
|
};
|
|
2053
|
+
DeletedRowFormInfo: {
|
|
2054
|
+
name: string;
|
|
2055
|
+
kind: string;
|
|
2056
|
+
description: string;
|
|
2057
|
+
};
|
|
2058
|
+
EditedRowFormInfo: {
|
|
2059
|
+
name: string;
|
|
2060
|
+
kind: string;
|
|
2061
|
+
description: string;
|
|
2062
|
+
};
|
|
2024
2063
|
EditLookUpPermittedValues: {
|
|
2025
2064
|
name: string;
|
|
2026
2065
|
kind: string;
|
|
@@ -2059,6 +2098,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2059
2098
|
defaultValue?: undefined;
|
|
2060
2099
|
})[];
|
|
2061
2100
|
};
|
|
2101
|
+
EditRowFormContext: {
|
|
2102
|
+
name: string;
|
|
2103
|
+
kind: string;
|
|
2104
|
+
description: string;
|
|
2105
|
+
properties: ({
|
|
2106
|
+
name: string;
|
|
2107
|
+
kind: string;
|
|
2108
|
+
description: string;
|
|
2109
|
+
uiLabel: string;
|
|
2110
|
+
reference: string;
|
|
2111
|
+
} | {
|
|
2112
|
+
name: string;
|
|
2113
|
+
kind: string;
|
|
2114
|
+
description: string;
|
|
2115
|
+
uiLabel: string;
|
|
2116
|
+
reference?: undefined;
|
|
2117
|
+
})[];
|
|
2118
|
+
};
|
|
2062
2119
|
EntitlementOptions: {
|
|
2063
2120
|
name: string;
|
|
2064
2121
|
kind: string;
|
|
@@ -2555,6 +2612,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2555
2612
|
isOptional: boolean;
|
|
2556
2613
|
}[];
|
|
2557
2614
|
};
|
|
2615
|
+
FormContext: {
|
|
2616
|
+
name: string;
|
|
2617
|
+
kind: string;
|
|
2618
|
+
description: string;
|
|
2619
|
+
properties: {
|
|
2620
|
+
name: string;
|
|
2621
|
+
kind: string;
|
|
2622
|
+
description: string;
|
|
2623
|
+
uiLabel: string;
|
|
2624
|
+
reference: string;
|
|
2625
|
+
}[];
|
|
2626
|
+
};
|
|
2558
2627
|
FreeTextColumn: {
|
|
2559
2628
|
name: string;
|
|
2560
2629
|
kind: string;
|
|
@@ -3676,6 +3745,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3676
3745
|
reference: string;
|
|
3677
3746
|
})[];
|
|
3678
3747
|
};
|
|
3748
|
+
RowFormContext: {
|
|
3749
|
+
name: string;
|
|
3750
|
+
kind: string;
|
|
3751
|
+
description: string;
|
|
3752
|
+
};
|
|
3679
3753
|
RowFormOptions: {
|
|
3680
3754
|
name: string;
|
|
3681
3755
|
kind: string;
|
|
@@ -3696,6 +3770,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3696
3770
|
defaultValue: string;
|
|
3697
3771
|
})[];
|
|
3698
3772
|
};
|
|
3773
|
+
RowFormSubmittedInfo: {
|
|
3774
|
+
name: string;
|
|
3775
|
+
kind: string;
|
|
3776
|
+
description: string;
|
|
3777
|
+
};
|
|
3778
|
+
RowFormType: {
|
|
3779
|
+
name: string;
|
|
3780
|
+
kind: string;
|
|
3781
|
+
description: string;
|
|
3782
|
+
};
|
|
3699
3783
|
RowInfo: {
|
|
3700
3784
|
name: string;
|
|
3701
3785
|
kind: string;
|
|
@@ -48,8 +48,8 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
48
48
|
}
|
|
49
49
|
]
|
|
50
50
|
},
|
|
51
|
-
"
|
|
52
|
-
"name": "
|
|
51
|
+
"ActionColumnContext": {
|
|
52
|
+
"name": "ActionColumnContext",
|
|
53
53
|
"kind": "Interface",
|
|
54
54
|
"description": "Context required by functions when using an Action Column Button",
|
|
55
55
|
"properties": [
|
|
@@ -1963,28 +1963,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1963
1963
|
}
|
|
1964
1964
|
]
|
|
1965
1965
|
},
|
|
1966
|
-
"AlertButtonContext": {
|
|
1967
|
-
"name": "AlertButtonContext",
|
|
1968
|
-
"kind": "Interface",
|
|
1969
|
-
"description": "Context required by functions when using an Alert Button",
|
|
1970
|
-
"properties": [
|
|
1971
|
-
{
|
|
1972
|
-
"name": "alert",
|
|
1973
|
-
"kind": "REFERENCE",
|
|
1974
|
-
"description": "Alert that has been triggered",
|
|
1975
|
-
"uiLabel": "Alert",
|
|
1976
|
-
"reference": "AdaptableAlert"
|
|
1977
|
-
},
|
|
1978
|
-
{
|
|
1979
|
-
"name": "formData",
|
|
1980
|
-
"kind": "REFERENCE",
|
|
1981
|
-
"description": "Data in the Alert Form",
|
|
1982
|
-
"uiLabel": "Form Data",
|
|
1983
|
-
"isOptional": true,
|
|
1984
|
-
"reference": "unknown"
|
|
1985
|
-
}
|
|
1986
|
-
]
|
|
1987
|
-
},
|
|
1988
1966
|
"AlertDefinition": {
|
|
1989
1967
|
"name": "AlertDefinition",
|
|
1990
1968
|
"kind": "Interface",
|
|
@@ -2054,6 +2032,20 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2054
2032
|
"kind": "TypeAlias",
|
|
2055
2033
|
"description": "Form to show in an Alert"
|
|
2056
2034
|
},
|
|
2035
|
+
"AlertFormContext": {
|
|
2036
|
+
"name": "AlertFormContext",
|
|
2037
|
+
"kind": "Interface",
|
|
2038
|
+
"description": "Context required by functions when using an Alert Button",
|
|
2039
|
+
"properties": [
|
|
2040
|
+
{
|
|
2041
|
+
"name": "alert",
|
|
2042
|
+
"kind": "REFERENCE",
|
|
2043
|
+
"description": "Alert that has been triggered",
|
|
2044
|
+
"uiLabel": "Alert",
|
|
2045
|
+
"reference": "AdaptableAlert"
|
|
2046
|
+
}
|
|
2047
|
+
]
|
|
2048
|
+
},
|
|
2057
2049
|
"AlertMessageContext": {
|
|
2058
2050
|
"name": "AlertMessageContext",
|
|
2059
2051
|
"kind": "Interface",
|
|
@@ -4166,6 +4158,32 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4166
4158
|
"kind": "TypeAlias",
|
|
4167
4159
|
"description": "All available Country Intents"
|
|
4168
4160
|
},
|
|
4161
|
+
"CreatedRowFormInfo": {
|
|
4162
|
+
"name": "CreatedRowFormInfo",
|
|
4163
|
+
"kind": "Interface",
|
|
4164
|
+
"description": "Info passed into RowFormSubmitted Event for Created Rows"
|
|
4165
|
+
},
|
|
4166
|
+
"CreateRowFormContext": {
|
|
4167
|
+
"name": "CreateRowFormContext",
|
|
4168
|
+
"kind": "Interface",
|
|
4169
|
+
"description": "Context used in a Create Row Form",
|
|
4170
|
+
"properties": [
|
|
4171
|
+
{
|
|
4172
|
+
"name": "clonedRowNode",
|
|
4173
|
+
"kind": "REFERENCE",
|
|
4174
|
+
"description": "The RowNode being cloned",
|
|
4175
|
+
"uiLabel": "Cloned Row Node",
|
|
4176
|
+
"isOptional": true,
|
|
4177
|
+
"reference": "unknown"
|
|
4178
|
+
},
|
|
4179
|
+
{
|
|
4180
|
+
"name": "type",
|
|
4181
|
+
"kind": "unknown",
|
|
4182
|
+
"description": "Type of the Context",
|
|
4183
|
+
"uiLabel": "Type"
|
|
4184
|
+
}
|
|
4185
|
+
]
|
|
4186
|
+
},
|
|
4169
4187
|
"CustomDestination": {
|
|
4170
4188
|
"name": "CustomDestination",
|
|
4171
4189
|
"kind": "Interface",
|
|
@@ -4463,13 +4481,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4463
4481
|
"description": "Custom Toolbar which hosts the Button",
|
|
4464
4482
|
"uiLabel": "Custom Toolbar",
|
|
4465
4483
|
"reference": "CustomToolbar"
|
|
4466
|
-
},
|
|
4467
|
-
{
|
|
4468
|
-
"name": "dashboardState",
|
|
4469
|
-
"kind": "REFERENCE",
|
|
4470
|
-
"description": "Current Dashboard State",
|
|
4471
|
-
"uiLabel": "Dashboard State",
|
|
4472
|
-
"reference": "DashboardState"
|
|
4473
4484
|
}
|
|
4474
4485
|
]
|
|
4475
4486
|
},
|
|
@@ -5070,6 +5081,20 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5070
5081
|
}
|
|
5071
5082
|
]
|
|
5072
5083
|
},
|
|
5084
|
+
"DataSetFormContext": {
|
|
5085
|
+
"name": "DataSetFormContext",
|
|
5086
|
+
"kind": "Interface",
|
|
5087
|
+
"description": "Used when a DataSet displays a Form",
|
|
5088
|
+
"properties": [
|
|
5089
|
+
{
|
|
5090
|
+
"name": "dataSet",
|
|
5091
|
+
"kind": "REFERENCE",
|
|
5092
|
+
"description": "The DataSet which triggered the Form",
|
|
5093
|
+
"uiLabel": "Data Set",
|
|
5094
|
+
"reference": "DataSet"
|
|
5095
|
+
}
|
|
5096
|
+
]
|
|
5097
|
+
},
|
|
5073
5098
|
"DataUpdateConfig": {
|
|
5074
5099
|
"name": "DataUpdateConfig",
|
|
5075
5100
|
"kind": "Interface",
|
|
@@ -5167,6 +5192,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5167
5192
|
}
|
|
5168
5193
|
]
|
|
5169
5194
|
},
|
|
5195
|
+
"DeletedRowFormInfo": {
|
|
5196
|
+
"name": "DeletedRowFormInfo",
|
|
5197
|
+
"kind": "Interface",
|
|
5198
|
+
"description": "Info passed into RowFormSubmitted Event for Deleted Rows"
|
|
5199
|
+
},
|
|
5200
|
+
"EditedRowFormInfo": {
|
|
5201
|
+
"name": "EditedRowFormInfo",
|
|
5202
|
+
"kind": "Interface",
|
|
5203
|
+
"description": "Info passed into RowFormSubmitted Event for Edited Rows"
|
|
5204
|
+
},
|
|
5170
5205
|
"EditLookUpPermittedValues": {
|
|
5171
5206
|
"name": "EditLookUpPermittedValues",
|
|
5172
5207
|
"kind": "Interface",
|
|
@@ -5175,7 +5210,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5175
5210
|
"EditOptions": {
|
|
5176
5211
|
"name": "EditOptions",
|
|
5177
5212
|
"kind": "Interface",
|
|
5178
|
-
"description": "Options related to Editing in Adaptable
|
|
5213
|
+
"description": "Options related to Editing in Adaptable - includes Server Validation, Smart Edit Operations and Row Forms",
|
|
5179
5214
|
"properties": [
|
|
5180
5215
|
{
|
|
5181
5216
|
"name": "displayServerValidationMessages",
|
|
@@ -5217,6 +5252,26 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5217
5252
|
}
|
|
5218
5253
|
]
|
|
5219
5254
|
},
|
|
5255
|
+
"EditRowFormContext": {
|
|
5256
|
+
"name": "EditRowFormContext",
|
|
5257
|
+
"kind": "Interface",
|
|
5258
|
+
"description": "Context used in an Edit Row Form",
|
|
5259
|
+
"properties": [
|
|
5260
|
+
{
|
|
5261
|
+
"name": "rowNode",
|
|
5262
|
+
"kind": "REFERENCE",
|
|
5263
|
+
"description": "The RowNode being edited",
|
|
5264
|
+
"uiLabel": "Row Node",
|
|
5265
|
+
"reference": "unknown"
|
|
5266
|
+
},
|
|
5267
|
+
{
|
|
5268
|
+
"name": "type",
|
|
5269
|
+
"kind": "unknown",
|
|
5270
|
+
"description": "Type of the Context",
|
|
5271
|
+
"uiLabel": "Type"
|
|
5272
|
+
}
|
|
5273
|
+
]
|
|
5274
|
+
},
|
|
5220
5275
|
"EntitlementOptions": {
|
|
5221
5276
|
"name": "EntitlementOptions",
|
|
5222
5277
|
"kind": "Interface",
|
|
@@ -7092,6 +7147,20 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7092
7147
|
}
|
|
7093
7148
|
]
|
|
7094
7149
|
},
|
|
7150
|
+
"FormContext": {
|
|
7151
|
+
"name": "FormContext",
|
|
7152
|
+
"kind": "Interface",
|
|
7153
|
+
"description": "Context supplied to Buttons that appear in an Adaptable Form",
|
|
7154
|
+
"properties": [
|
|
7155
|
+
{
|
|
7156
|
+
"name": "formData",
|
|
7157
|
+
"kind": "REFERENCE",
|
|
7158
|
+
"description": "Adaptable Form Data",
|
|
7159
|
+
"uiLabel": "Form Data",
|
|
7160
|
+
"reference": "unknown"
|
|
7161
|
+
}
|
|
7162
|
+
]
|
|
7163
|
+
},
|
|
7095
7164
|
"FreeTextColumn": {
|
|
7096
7165
|
"name": "FreeTextColumn",
|
|
7097
7166
|
"kind": "Interface",
|
|
@@ -10788,6 +10857,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10788
10857
|
}
|
|
10789
10858
|
]
|
|
10790
10859
|
},
|
|
10860
|
+
"RowFormContext": {
|
|
10861
|
+
"name": "RowFormContext",
|
|
10862
|
+
"kind": "TypeAlias",
|
|
10863
|
+
"description": "Context passed into a Row Form - can be `CreateRowFormContext` or `EditRowFormContext`"
|
|
10864
|
+
},
|
|
10791
10865
|
"RowFormOptions": {
|
|
10792
10866
|
"name": "RowFormOptions",
|
|
10793
10867
|
"kind": "Interface",
|
|
@@ -10834,6 +10908,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10834
10908
|
}
|
|
10835
10909
|
]
|
|
10836
10910
|
},
|
|
10911
|
+
"RowFormSubmittedInfo": {
|
|
10912
|
+
"name": "RowFormSubmittedInfo",
|
|
10913
|
+
"kind": "TypeAlias",
|
|
10914
|
+
"description": "Info passed into RowFormSubmitted Event - can be `CreatedRowFormInfo` or `EditedRowFormInfo` or `DeletedRowFormInfo`"
|
|
10915
|
+
},
|
|
10916
|
+
"RowFormType": {
|
|
10917
|
+
"name": "RowFormType",
|
|
10918
|
+
"kind": "TypeAlias",
|
|
10919
|
+
"description": "Type of Row Form - Created, Edited or Deleted"
|
|
10920
|
+
},
|
|
10837
10921
|
"RowInfo": {
|
|
10838
10922
|
"name": "RowInfo",
|
|
10839
10923
|
"kind": "Interface",
|
package/src/types.d.ts
CHANGED
|
@@ -10,7 +10,7 @@ export { AdaptablePlugin } from './AdaptableOptions/AdaptablePlugin';
|
|
|
10
10
|
export type { ContainerOptions } from './AdaptableOptions/ContainerOptions';
|
|
11
11
|
export type { FlashingCellOptions } from './AdaptableOptions/FlashingCellOptions';
|
|
12
12
|
export type { TOAST_POSITIONS, NotificationsOptions, } from './AdaptableOptions/NotificationsOptions';
|
|
13
|
-
export type { AlertOptions, ActionHandler, AlertForm,
|
|
13
|
+
export type { AlertOptions, ActionHandler, AlertForm, AlertFormContext, AlertMessageContext, } from './AdaptableOptions/AlertOptions';
|
|
14
14
|
export type { DashboardOptions, CustomToolbar, DashboardButtonContext, CustomToolbarButtonContext, } from './AdaptableOptions/DashboardOptions';
|
|
15
15
|
export type { EditOptions, RowFormOptions, FormParamContext, FormFieldLabelContext, RowFormContext, CreateRowFormContext, EditRowFormContext, ValidationResult, SmartEditCustomOperation, SmartEditOperation, SmartEditOperationContext, } from './AdaptableOptions/EditOptions';
|
|
16
16
|
export type { ExportOptions, SystemExportDestination, SystemExportDestinations, CustomDestination, CustomReport, DataFormatType, ExportFormContext, ReportContext, } from './AdaptableOptions/ExportOptions';
|
|
@@ -31,7 +31,7 @@ export type { FilterActionOnDataChange } from './PredefinedConfig/Common/FilterA
|
|
|
31
31
|
export type { ConfigState } from './PredefinedConfig/ConfigState';
|
|
32
32
|
export type { TeamSharingOptions } from './AdaptableOptions/TeamSharingOptions';
|
|
33
33
|
export type { ToolPanelOptions, CustomToolPanel, ToolPanelButtonContext, CustomToolPanelButtonContext, } from './AdaptableOptions/ToolPanelOptions';
|
|
34
|
-
export type { UserInterfaceOptions, CellValuesList, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, GridInfoSections, GridInfoSection, ObjectTagsContext, CustomDisplayFormatter,
|
|
34
|
+
export type { UserInterfaceOptions, CellValuesList, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, GridInfoSections, GridInfoSection, ObjectTagsContext, CustomDisplayFormatter, ActionColumnContext, ActionColumn, ActionColumnSettings, ActionOptions, } from './AdaptableOptions/UserInterfaceOptions';
|
|
35
35
|
export type { MenuOptions } from './AdaptableOptions/MenuOptions';
|
|
36
36
|
export type { CustomSettingsPanel, SettingsPanelOptions, } from './AdaptableOptions/SettingsPanelOptions';
|
|
37
37
|
export type { EntitlementOptions, EntitlementContext } from './AdaptableOptions/EntitlementOptions';
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "12.0.0-canary.
|
|
1
|
+
declare const _default: "12.0.0-canary.3";
|
|
2
2
|
export default _default;
|
package/version.js
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.default = '12.0.0-canary.
|
|
3
|
+
exports.default = '12.0.0-canary.3'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
|