@adaptabletools/adaptable 12.0.0-canary.0 → 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 +561 -283
- package/bundle.cjs.js +162 -148
- package/index.css +631 -280
- package/package.json +3 -3
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -0
- 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 +26 -8
- package/src/AdaptableOptions/ExportOptions.d.ts +4 -7
- package/src/AdaptableOptions/GeneralOptions.d.ts +12 -2
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +1 -5
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +21 -3
- package/src/Api/AlertApi.d.ts +3 -3
- package/src/Api/ColumnApi.d.ts +7 -2
- package/src/Api/EventApi.d.ts +11 -0
- package/src/Api/Events/RowFormSubmitted.d.ts +15 -0
- package/src/Api/Events/SearchChanged.d.ts +1 -1
- package/src/Api/ExportApi.d.ts +2 -2
- package/src/Api/FilterApi.d.ts +69 -1
- package/src/Api/Implementation/AlertApiImpl.d.ts +3 -3
- package/src/Api/Implementation/ColumnApiImpl.d.ts +2 -2
- package/src/Api/Implementation/ColumnApiImpl.js +15 -14
- package/src/Api/Implementation/ConfigApiImpl.js +1 -1
- package/src/Api/Implementation/ExportApiImpl.d.ts +2 -2
- package/src/Api/Implementation/FilterApiImpl.d.ts +16 -1
- package/src/Api/Implementation/FilterApiImpl.js +141 -0
- package/src/Api/Implementation/FormatColumnApiImpl.js +2 -2
- package/src/Api/Implementation/GridApiImpl.js +7 -3
- package/src/Api/Implementation/InternalApiImpl.d.ts +3 -3
- package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -15
- package/src/Api/Implementation/LayoutApiImpl.js +0 -152
- package/src/Api/Implementation/PredicateApiImpl.d.ts +2 -0
- package/src/Api/Implementation/PredicateApiImpl.js +18 -0
- package/src/Api/LayoutApi.d.ts +1 -72
- package/src/Api/PredicateApi.d.ts +7 -0
- package/src/PredefinedConfig/AlertState.d.ts +4 -4
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
- package/src/PredefinedConfig/Common/FormContext.d.ts +11 -0
- package/src/PredefinedConfig/Common/FormContext.js +2 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +0 -1
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +3 -2
- package/src/Redux/Store/AdaptableStore.js +6 -0
- package/src/Strategy/AdaptableModuleBase.js +1 -2
- package/src/Strategy/BulkUpdateModule.js +3 -4
- package/src/Strategy/CellSummaryModule.js +1 -2
- package/src/Strategy/FilterModule.js +15 -18
- package/src/Strategy/LayoutModule.js +1 -0
- package/src/Strategy/PlusMinusModule.js +1 -4
- package/src/Strategy/SmartEditModule.js +2 -2
- package/src/Utilities/Constants/GeneralConstants.d.ts +2 -0
- package/src/Utilities/Constants/GeneralConstants.js +3 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +2 -0
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +6 -7
- package/src/Utilities/Services/RowEditService.d.ts +1 -0
- package/src/Utilities/Services/RowEditService.js +34 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +8 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +3 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +9 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.d.ts +30 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +87 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.d.ts +18 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +16 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.d.ts +2 -9
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +2 -75
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.d.ts +3 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.js +9 -4
- package/src/View/AdaptableWizardView/Utils.d.ts +1 -0
- package/src/View/AdaptableWizardView/Utils.js +24 -0
- package/src/View/AdaptableWizardView/Wizard.d.ts +54 -0
- package/src/View/AdaptableWizardView/Wizard.js +98 -0
- package/src/View/AdaptableWizardView/index.d.ts +1 -22
- package/src/View/AdaptableWizardView/index.js +2 -103
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +1 -1
- package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +3 -3
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -2
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +1 -1
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +2 -2
- package/src/View/BulkUpdate/BulkUpdatePopup.js +2 -3
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +3 -4
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +5 -6
- package/src/View/CellSummary/CellSummaryDetails.js +2 -2
- package/src/View/Components/FilterForm/FilterForm.js +1 -1
- package/src/View/Components/FilterForm/QuickFilterForm.js +1 -1
- package/src/View/Components/PreviewResultsPanel.js +3 -3
- package/src/View/Components/WizardSummaryPage.js +2 -2
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +1 -1
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +1 -1
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +1 -1
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +1 -1
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +2 -2
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +1 -1
- package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +2 -2
- package/src/View/Export/Wizard/ReportColumnsWizardSection.js +1 -1
- package/src/View/Export/Wizard/ReportNameWizardSection.js +1 -1
- package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
- package/src/View/Filter/ActiveFiltersPanel.js +1 -1
- package/src/View/Filter/FilterSummary.js +1 -1
- package/src/View/Filter/FilterViewPanel.js +2 -2
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +2 -2
- package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +5 -6
- package/src/View/GridInfo/ColumnInfoComponent.js +1 -1
- package/src/View/GridInfo/GridInfoPopup.js +1 -1
- package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +2 -2
- package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.js +1 -1
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +2 -2
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +1 -1
- package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +1 -1
- package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +1 -1
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +2 -2
- package/src/View/UIHelper.js +6 -6
- package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +2 -2
- package/src/View/Wizard/ObjectTagsWizardSection.js +1 -1
- package/src/View/Wizard/OnePageAdaptableWizard.d.ts +5 -6
- package/src/View/Wizard/OnePageAdaptableWizard.js +35 -169
- package/src/View/Wizard/OnePageWizards.d.ts +37 -0
- package/src/View/Wizard/OnePageWizards.js +187 -0
- package/src/View/Wizard/useKeyboardNavigation.d.ts +1 -1
- package/src/agGrid/Adaptable.js +25 -11
- package/src/agGrid/FilterWrapper.js +2 -2
- package/src/agGrid/agGridHelper.d.ts +2 -3
- package/src/agGrid/agGridHelper.js +37 -33
- package/src/agGrid/rowEditIcons.d.ts +1 -0
- package/src/agGrid/rowEditIcons.js +2 -1
- package/src/components/Datepicker/Caption.js +1 -1
- package/src/components/InfiniteTable/index.js +1 -0
- package/src/components/List/GridList/index.js +1 -1
- package/src/components/WindowModal/WindowModal.js +13 -7
- package/src/components/icons/add-row.d.ts +3 -0
- package/src/components/icons/add-row.js +7 -0
- package/src/components/icons/index.js +2 -0
- package/src/metamodel/adaptable.metamodel.d.ts +106 -22
- package/src/metamodel/adaptable.metamodel.js +238 -121
- package/src/types.d.ts +5 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -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": [
|
|
@@ -145,6 +145,22 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
145
145
|
"uiLabel": "Action Row Buttons Position",
|
|
146
146
|
"isOptional": true,
|
|
147
147
|
"defaultValue": "'pinnedLeft'"
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"name": "autoHandleActionRowButtons",
|
|
151
|
+
"kind": "boolean",
|
|
152
|
+
"description": "If set to true, the Action Row Buttons will be handled by AdapTable and the grid data model will be automatically updated with the created/edited/deleted rows",
|
|
153
|
+
"uiLabel": "Auto Handle Action Row Buttons",
|
|
154
|
+
"isOptional": true,
|
|
155
|
+
"defaultValue": "false"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "setPrimaryKeyValue",
|
|
159
|
+
"kind": "unknown",
|
|
160
|
+
"description": "Function which is called when auto-handling the 'create' Action Row Button. The returned row value should have a valid(unique) primary key value.",
|
|
161
|
+
"uiLabel": "Set Primary Key Value",
|
|
162
|
+
"isOptional": true,
|
|
163
|
+
"defaultValue": "undefined"
|
|
148
164
|
}
|
|
149
165
|
]
|
|
150
166
|
},
|
|
@@ -731,7 +747,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
731
747
|
"AdaptableColumnDataType": {
|
|
732
748
|
"name": "AdaptableColumnDataType",
|
|
733
749
|
"kind": "TypeAlias",
|
|
734
|
-
"description": "
|
|
750
|
+
"description": "Type of data stored in an Adaptable Column"
|
|
735
751
|
},
|
|
736
752
|
"AdaptableComparerFunction": {
|
|
737
753
|
"name": "AdaptableComparerFunction",
|
|
@@ -1529,7 +1545,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1529
1545
|
{
|
|
1530
1546
|
"name": "dataSet",
|
|
1531
1547
|
"kind": "unknown",
|
|
1532
|
-
"description": "Current
|
|
1548
|
+
"description": "Current DataSet (if one selected)",
|
|
1533
1549
|
"uiLabel": "Data Set"
|
|
1534
1550
|
},
|
|
1535
1551
|
{
|
|
@@ -1947,28 +1963,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1947
1963
|
}
|
|
1948
1964
|
]
|
|
1949
1965
|
},
|
|
1950
|
-
"AlertButtonContext": {
|
|
1951
|
-
"name": "AlertButtonContext",
|
|
1952
|
-
"kind": "Interface",
|
|
1953
|
-
"description": "Context required by functions when using an Alert Button",
|
|
1954
|
-
"properties": [
|
|
1955
|
-
{
|
|
1956
|
-
"name": "alert",
|
|
1957
|
-
"kind": "REFERENCE",
|
|
1958
|
-
"description": "Alert that has been triggered",
|
|
1959
|
-
"uiLabel": "Alert",
|
|
1960
|
-
"reference": "AdaptableAlert"
|
|
1961
|
-
},
|
|
1962
|
-
{
|
|
1963
|
-
"name": "formData",
|
|
1964
|
-
"kind": "REFERENCE",
|
|
1965
|
-
"description": "Data in the Alert Form",
|
|
1966
|
-
"uiLabel": "Form Data",
|
|
1967
|
-
"isOptional": true,
|
|
1968
|
-
"reference": "unknown"
|
|
1969
|
-
}
|
|
1970
|
-
]
|
|
1971
|
-
},
|
|
1972
1966
|
"AlertDefinition": {
|
|
1973
1967
|
"name": "AlertDefinition",
|
|
1974
1968
|
"kind": "Interface",
|
|
@@ -2038,6 +2032,20 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2038
2032
|
"kind": "TypeAlias",
|
|
2039
2033
|
"description": "Form to show in an Alert"
|
|
2040
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
|
+
},
|
|
2041
2049
|
"AlertMessageContext": {
|
|
2042
2050
|
"name": "AlertMessageContext",
|
|
2043
2051
|
"kind": "Interface",
|
|
@@ -3129,6 +3137,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3129
3137
|
"description": "Is Column an Action Column",
|
|
3130
3138
|
"uiLabel": "Is Action Column"
|
|
3131
3139
|
},
|
|
3140
|
+
{
|
|
3141
|
+
"name": "isActionRowButtonColumn",
|
|
3142
|
+
"kind": "function",
|
|
3143
|
+
"description": "Checks if a column is a ActionRowButton column (see UserInterfaceOptions.ActionOptions)",
|
|
3144
|
+
"uiLabel": "Is Action Row Button Column"
|
|
3145
|
+
},
|
|
3132
3146
|
{
|
|
3133
3147
|
"name": "isAutoPivotColumn",
|
|
3134
3148
|
"kind": "function",
|
|
@@ -4144,6 +4158,32 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4144
4158
|
"kind": "TypeAlias",
|
|
4145
4159
|
"description": "All available Country Intents"
|
|
4146
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
|
+
},
|
|
4147
4187
|
"CustomDestination": {
|
|
4148
4188
|
"name": "CustomDestination",
|
|
4149
4189
|
"kind": "Interface",
|
|
@@ -4441,13 +4481,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4441
4481
|
"description": "Custom Toolbar which hosts the Button",
|
|
4442
4482
|
"uiLabel": "Custom Toolbar",
|
|
4443
4483
|
"reference": "CustomToolbar"
|
|
4444
|
-
},
|
|
4445
|
-
{
|
|
4446
|
-
"name": "dashboardState",
|
|
4447
|
-
"kind": "REFERENCE",
|
|
4448
|
-
"description": "Current Dashboard State",
|
|
4449
|
-
"uiLabel": "Dashboard State",
|
|
4450
|
-
"reference": "DashboardState"
|
|
4451
4484
|
}
|
|
4452
4485
|
]
|
|
4453
4486
|
},
|
|
@@ -5048,6 +5081,20 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5048
5081
|
}
|
|
5049
5082
|
]
|
|
5050
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
|
+
},
|
|
5051
5098
|
"DataUpdateConfig": {
|
|
5052
5099
|
"name": "DataUpdateConfig",
|
|
5053
5100
|
"kind": "Interface",
|
|
@@ -5145,6 +5192,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5145
5192
|
}
|
|
5146
5193
|
]
|
|
5147
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
|
+
},
|
|
5148
5205
|
"EditLookUpPermittedValues": {
|
|
5149
5206
|
"name": "EditLookUpPermittedValues",
|
|
5150
5207
|
"kind": "Interface",
|
|
@@ -5153,7 +5210,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5153
5210
|
"EditOptions": {
|
|
5154
5211
|
"name": "EditOptions",
|
|
5155
5212
|
"kind": "Interface",
|
|
5156
|
-
"description": "Options related to Editing in Adaptable
|
|
5213
|
+
"description": "Options related to Editing in Adaptable - includes Server Validation, Smart Edit Operations and Row Forms",
|
|
5157
5214
|
"properties": [
|
|
5158
5215
|
{
|
|
5159
5216
|
"name": "displayServerValidationMessages",
|
|
@@ -5195,6 +5252,26 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5195
5252
|
}
|
|
5196
5253
|
]
|
|
5197
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
|
+
},
|
|
5198
5275
|
"EntitlementOptions": {
|
|
5199
5276
|
"name": "EntitlementOptions",
|
|
5200
5277
|
"kind": "Interface",
|
|
@@ -5266,6 +5343,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5266
5343
|
"description": "Unsubscribe from LiveDataChanged",
|
|
5267
5344
|
"uiLabel": "Off"
|
|
5268
5345
|
},
|
|
5346
|
+
{
|
|
5347
|
+
"name": "off",
|
|
5348
|
+
"kind": "function",
|
|
5349
|
+
"description": "Unsubscribe from RowFormSubmitted",
|
|
5350
|
+
"uiLabel": "Off"
|
|
5351
|
+
},
|
|
5269
5352
|
{
|
|
5270
5353
|
"name": "off",
|
|
5271
5354
|
"kind": "function",
|
|
@@ -5368,6 +5451,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5368
5451
|
"description": "Event fired whenever **a change occurs relating to live reports / data** Used in conjunction with AdapTable's partners OpenFin, ipushpull or Glue42",
|
|
5369
5452
|
"uiLabel": "On"
|
|
5370
5453
|
},
|
|
5454
|
+
{
|
|
5455
|
+
"name": "on",
|
|
5456
|
+
"kind": "function",
|
|
5457
|
+
"description": "Event fired when a Row Form is submitted",
|
|
5458
|
+
"uiLabel": "On"
|
|
5459
|
+
},
|
|
5371
5460
|
{
|
|
5372
5461
|
"name": "on",
|
|
5373
5462
|
"kind": "function",
|
|
@@ -5599,8 +5688,8 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5599
5688
|
}
|
|
5600
5689
|
]
|
|
5601
5690
|
},
|
|
5602
|
-
"
|
|
5603
|
-
"name": "
|
|
5691
|
+
"ExportFormContext": {
|
|
5692
|
+
"name": "ExportFormContext",
|
|
5604
5693
|
"kind": "Interface",
|
|
5605
5694
|
"description": "Context required by functions when using an Export Button",
|
|
5606
5695
|
"properties": [
|
|
@@ -5611,13 +5700,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5611
5700
|
"uiLabel": "Custom Destination",
|
|
5612
5701
|
"reference": "CustomDestination"
|
|
5613
5702
|
},
|
|
5614
|
-
{
|
|
5615
|
-
"name": "formData",
|
|
5616
|
-
"kind": "REFERENCE",
|
|
5617
|
-
"description": "Adaptable Form Data",
|
|
5618
|
-
"uiLabel": "Form Data",
|
|
5619
|
-
"reference": "unknown"
|
|
5620
|
-
},
|
|
5621
5703
|
{
|
|
5622
5704
|
"name": "report",
|
|
5623
5705
|
"kind": "REFERENCE",
|
|
@@ -6050,18 +6132,90 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6050
6132
|
"kind": "Interface",
|
|
6051
6133
|
"description": "Provides run-time access to Filter section of Adaptable State.",
|
|
6052
6134
|
"properties": [
|
|
6135
|
+
{
|
|
6136
|
+
"name": "clearAndSetColumnFilter",
|
|
6137
|
+
"kind": "function",
|
|
6138
|
+
"description": "Clears existing Column Filters and then sets the new ones",
|
|
6139
|
+
"uiLabel": "Clear And Set Column Filter"
|
|
6140
|
+
},
|
|
6141
|
+
{
|
|
6142
|
+
"name": "clearColumnFilter",
|
|
6143
|
+
"kind": "function",
|
|
6144
|
+
"description": "Clears given Column Filter",
|
|
6145
|
+
"uiLabel": "Clear Column Filter"
|
|
6146
|
+
},
|
|
6147
|
+
{
|
|
6148
|
+
"name": "clearColumnFilterByColumn",
|
|
6149
|
+
"kind": "function",
|
|
6150
|
+
"description": "Clears Column Filter for given Column",
|
|
6151
|
+
"uiLabel": "Clear Column Filter By Column"
|
|
6152
|
+
},
|
|
6153
|
+
{
|
|
6154
|
+
"name": "clearColumnFilterByColumns",
|
|
6155
|
+
"kind": "function",
|
|
6156
|
+
"description": "Clears Column Filters for given set of Columns",
|
|
6157
|
+
"uiLabel": "Clear Column Filter By Columns"
|
|
6158
|
+
},
|
|
6159
|
+
{
|
|
6160
|
+
"name": "clearColumnFilters",
|
|
6161
|
+
"kind": "function",
|
|
6162
|
+
"description": "Clears all Column Filters in the Current Layout",
|
|
6163
|
+
"uiLabel": "Clear Column Filters"
|
|
6164
|
+
},
|
|
6165
|
+
{
|
|
6166
|
+
"name": "columnFiltersToString",
|
|
6167
|
+
"kind": "function",
|
|
6168
|
+
"description": "Retrieves descriptions of given Column Filters",
|
|
6169
|
+
"uiLabel": "Column Filters To String"
|
|
6170
|
+
},
|
|
6171
|
+
{
|
|
6172
|
+
"name": "columnFilterToString",
|
|
6173
|
+
"kind": "function",
|
|
6174
|
+
"description": "Retrieves description of given Column Filter",
|
|
6175
|
+
"uiLabel": "Column Filter To String"
|
|
6176
|
+
},
|
|
6177
|
+
{
|
|
6178
|
+
"name": "createEqualityColumnFilterForCell",
|
|
6179
|
+
"kind": "function",
|
|
6180
|
+
"description": "Creates an Equality Filter based on given Grid Cell",
|
|
6181
|
+
"uiLabel": "Create Equality Column Filter For Cell"
|
|
6182
|
+
},
|
|
6183
|
+
{
|
|
6184
|
+
"name": "createValuesColumnFilterForCells",
|
|
6185
|
+
"kind": "function",
|
|
6186
|
+
"description": "Creates an Equality Filter based on given Grid Cells",
|
|
6187
|
+
"uiLabel": "Create Values Column Filter For Cells"
|
|
6188
|
+
},
|
|
6189
|
+
{
|
|
6190
|
+
"name": "evaluateColumnFilter",
|
|
6191
|
+
"kind": "function",
|
|
6192
|
+
"description": "Calls AdapTableQL to evaluate Filter for given Row",
|
|
6193
|
+
"uiLabel": "Evaluate Column Filter"
|
|
6194
|
+
},
|
|
6053
6195
|
{
|
|
6054
6196
|
"name": "findPredicateDefByShortcut",
|
|
6055
6197
|
"kind": "function",
|
|
6056
6198
|
"description": "Returns Predicate Definition for given Column and Quick Filter shortcut",
|
|
6057
6199
|
"uiLabel": "Find Predicate Def By Shortcut"
|
|
6058
6200
|
},
|
|
6201
|
+
{
|
|
6202
|
+
"name": "getAllColumnFilterForColumn",
|
|
6203
|
+
"kind": "function",
|
|
6204
|
+
"description": "Retrieves all Column Filters for given Column",
|
|
6205
|
+
"uiLabel": "Get All Column Filter For Column"
|
|
6206
|
+
},
|
|
6059
6207
|
{
|
|
6060
6208
|
"name": "getAllSystemFilterIds",
|
|
6061
6209
|
"kind": "function",
|
|
6062
6210
|
"description": "Retrieves Ids for all System Filters",
|
|
6063
6211
|
"uiLabel": "Get All System Filter Ids"
|
|
6064
6212
|
},
|
|
6213
|
+
{
|
|
6214
|
+
"name": "getColumnFilters",
|
|
6215
|
+
"kind": "function",
|
|
6216
|
+
"description": "Retrieves all the Column Filters in the Column Filter State (of Predefined Config)",
|
|
6217
|
+
"uiLabel": "Get Column Filters"
|
|
6218
|
+
},
|
|
6065
6219
|
{
|
|
6066
6220
|
"name": "getFilterPredicateDefsForColumn",
|
|
6067
6221
|
"kind": "function",
|
|
@@ -6092,6 +6246,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6092
6246
|
"description": "Whether Quick Filter Form is currently visible",
|
|
6093
6247
|
"uiLabel": "Is Quick Filter Visible"
|
|
6094
6248
|
},
|
|
6249
|
+
{
|
|
6250
|
+
"name": "setColumnFilter",
|
|
6251
|
+
"kind": "function",
|
|
6252
|
+
"description": "Sets Column Filters - will replace filters for existing column and leave other column filters in place",
|
|
6253
|
+
"uiLabel": "Set Column Filter"
|
|
6254
|
+
},
|
|
6095
6255
|
{
|
|
6096
6256
|
"name": "showQuickFilterBar",
|
|
6097
6257
|
"kind": "function",
|
|
@@ -6987,6 +7147,20 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6987
7147
|
}
|
|
6988
7148
|
]
|
|
6989
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
|
+
},
|
|
6990
7164
|
"FreeTextColumn": {
|
|
6991
7165
|
"name": "FreeTextColumn",
|
|
6992
7166
|
"kind": "Interface",
|
|
@@ -8749,36 +8923,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8749
8923
|
"description": "Compares 2 Layouts for equality",
|
|
8750
8924
|
"uiLabel": "Are Layouts Equal"
|
|
8751
8925
|
},
|
|
8752
|
-
{
|
|
8753
|
-
"name": "clearAllColumnFilter",
|
|
8754
|
-
"kind": "function",
|
|
8755
|
-
"description": "Clears all Column Filters in State",
|
|
8756
|
-
"uiLabel": "Clear All Column Filter"
|
|
8757
|
-
},
|
|
8758
|
-
{
|
|
8759
|
-
"name": "clearAndSetColumnFilter",
|
|
8760
|
-
"kind": "function",
|
|
8761
|
-
"description": "Clears existing Column Filters and then sets the new ones",
|
|
8762
|
-
"uiLabel": "Clear And Set Column Filter"
|
|
8763
|
-
},
|
|
8764
|
-
{
|
|
8765
|
-
"name": "clearColumnFilter",
|
|
8766
|
-
"kind": "function",
|
|
8767
|
-
"description": "Clears given Column Filter",
|
|
8768
|
-
"uiLabel": "Clear Column Filter"
|
|
8769
|
-
},
|
|
8770
|
-
{
|
|
8771
|
-
"name": "clearColumnFilterByColumn",
|
|
8772
|
-
"kind": "function",
|
|
8773
|
-
"description": "Clears Column Filter for given Column",
|
|
8774
|
-
"uiLabel": "Clear Column Filter By Column"
|
|
8775
|
-
},
|
|
8776
|
-
{
|
|
8777
|
-
"name": "clearColumnFilterByColumns",
|
|
8778
|
-
"kind": "function",
|
|
8779
|
-
"description": "Clears Column Filters for given set of Columns",
|
|
8780
|
-
"uiLabel": "Clear Column Filter By Columns"
|
|
8781
|
-
},
|
|
8782
8926
|
{
|
|
8783
8927
|
"name": "cloneAndSetLayout",
|
|
8784
8928
|
"kind": "function",
|
|
@@ -8791,30 +8935,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8791
8935
|
"description": "Creates new Layout based on given Layout but with name provided",
|
|
8792
8936
|
"uiLabel": "Clone Layout"
|
|
8793
8937
|
},
|
|
8794
|
-
{
|
|
8795
|
-
"name": "columnFiltersToString",
|
|
8796
|
-
"kind": "function",
|
|
8797
|
-
"description": "Retrieves descriptions of given Column Filters",
|
|
8798
|
-
"uiLabel": "Column Filters To String"
|
|
8799
|
-
},
|
|
8800
|
-
{
|
|
8801
|
-
"name": "columnFilterToString",
|
|
8802
|
-
"kind": "function",
|
|
8803
|
-
"description": "Retrieves description of given Column Filter",
|
|
8804
|
-
"uiLabel": "Column Filter To String"
|
|
8805
|
-
},
|
|
8806
8938
|
{
|
|
8807
8939
|
"name": "createAndSetLayout",
|
|
8808
8940
|
"kind": "function",
|
|
8809
8941
|
"description": "Creates new Layout in the state and then loads it into Grid",
|
|
8810
8942
|
"uiLabel": "Create And Set Layout"
|
|
8811
8943
|
},
|
|
8812
|
-
{
|
|
8813
|
-
"name": "createColumnFilterForCell",
|
|
8814
|
-
"kind": "function",
|
|
8815
|
-
"description": "Creates new Column Filter on given Column using Primary Key values",
|
|
8816
|
-
"uiLabel": "Create Column Filter For Cell"
|
|
8817
|
-
},
|
|
8818
8944
|
{
|
|
8819
8945
|
"name": "createDefaultLayoutIfNeeded",
|
|
8820
8946
|
"kind": "function",
|
|
@@ -8851,42 +8977,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8851
8977
|
"description": "Checks whether this Layout exists in the Adaptable State (by comparing Uuid property)",
|
|
8852
8978
|
"uiLabel": "Does Layout Exist"
|
|
8853
8979
|
},
|
|
8854
|
-
{
|
|
8855
|
-
"name": "evaluateColumnFilter",
|
|
8856
|
-
"kind": "function",
|
|
8857
|
-
"description": "Calls AdapTableQL to evaluate Filter for given Row",
|
|
8858
|
-
"uiLabel": "Evaluate Column Filter"
|
|
8859
|
-
},
|
|
8860
8980
|
{
|
|
8861
8981
|
"name": "fireLayoutChangedEvent",
|
|
8862
8982
|
"kind": "function",
|
|
8863
8983
|
"description": "Fires the `LayoutChanged` event",
|
|
8864
8984
|
"uiLabel": "Fire Layout Changed Event"
|
|
8865
8985
|
},
|
|
8866
|
-
{
|
|
8867
|
-
"name": "getAllColumnFilter",
|
|
8868
|
-
"kind": "function",
|
|
8869
|
-
"description": "Retrieves all the Column Filters in the Column Filter State (of Predefined Config)",
|
|
8870
|
-
"uiLabel": "Get All Column Filter"
|
|
8871
|
-
},
|
|
8872
|
-
{
|
|
8873
|
-
"name": "getAllColumnFilterForColumn",
|
|
8874
|
-
"kind": "function",
|
|
8875
|
-
"description": "Retrieves all Column Filters for given Column",
|
|
8876
|
-
"uiLabel": "Get All Column Filter For Column"
|
|
8877
|
-
},
|
|
8878
8986
|
{
|
|
8879
8987
|
"name": "getAllLayout",
|
|
8880
8988
|
"kind": "function",
|
|
8881
8989
|
"description": "Retrieves all Layouts in Adaptable State",
|
|
8882
8990
|
"uiLabel": "Get All Layout"
|
|
8883
8991
|
},
|
|
8884
|
-
{
|
|
8885
|
-
"name": "getColumnFilterById",
|
|
8886
|
-
"kind": "function",
|
|
8887
|
-
"description": "Retrieves ColumnFilter by Id",
|
|
8888
|
-
"uiLabel": "Get Column Filter By Id"
|
|
8889
|
-
},
|
|
8890
8992
|
{
|
|
8891
8993
|
"name": "getCurrentLayout",
|
|
8892
8994
|
"kind": "function",
|
|
@@ -9001,12 +9103,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9001
9103
|
"description": "Sets a new Caption / Header for a Column (this Layout only)",
|
|
9002
9104
|
"uiLabel": "Set Column Caption"
|
|
9003
9105
|
},
|
|
9004
|
-
{
|
|
9005
|
-
"name": "setColumnFilter",
|
|
9006
|
-
"kind": "function",
|
|
9007
|
-
"description": "Sets Column Filters - will replace filters for existing column and leave other column filters in place",
|
|
9008
|
-
"uiLabel": "Set Column Filter"
|
|
9009
|
-
},
|
|
9010
9106
|
{
|
|
9011
9107
|
"name": "setLayout",
|
|
9012
9108
|
"kind": "function",
|
|
@@ -10325,6 +10421,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10325
10421
|
"description": "Returns Predicate Definitions provided by users",
|
|
10326
10422
|
"uiLabel": "Get Custom Predicate Defs"
|
|
10327
10423
|
},
|
|
10424
|
+
{
|
|
10425
|
+
"name": "getEqualityPredicateForDataType",
|
|
10426
|
+
"kind": "function",
|
|
10427
|
+
"description": "Gets the correct Equality-type System Predicate for a particular DataType",
|
|
10428
|
+
"uiLabel": "Get Equality Predicate For Data Type"
|
|
10429
|
+
},
|
|
10328
10430
|
{
|
|
10329
10431
|
"name": "getPredicateDefById",
|
|
10330
10432
|
"kind": "function",
|
|
@@ -10755,6 +10857,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10755
10857
|
}
|
|
10756
10858
|
]
|
|
10757
10859
|
},
|
|
10860
|
+
"RowFormContext": {
|
|
10861
|
+
"name": "RowFormContext",
|
|
10862
|
+
"kind": "TypeAlias",
|
|
10863
|
+
"description": "Context passed into a Row Form - can be `CreateRowFormContext` or `EditRowFormContext`"
|
|
10864
|
+
},
|
|
10758
10865
|
"RowFormOptions": {
|
|
10759
10866
|
"name": "RowFormOptions",
|
|
10760
10867
|
"kind": "Interface",
|
|
@@ -10801,6 +10908,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10801
10908
|
}
|
|
10802
10909
|
]
|
|
10803
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
|
+
},
|
|
10804
10921
|
"RowInfo": {
|
|
10805
10922
|
"name": "RowInfo",
|
|
10806
10923
|
"kind": "Interface",
|
package/src/types.d.ts
CHANGED
|
@@ -10,11 +10,11 @@ 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
|
-
export type { ExportOptions, SystemExportDestination, SystemExportDestinations, CustomDestination, CustomReport, DataFormatType,
|
|
17
|
-
export type { GeneralOptions, ColumnValuesComparer, DataSet, } from './AdaptableOptions/GeneralOptions';
|
|
16
|
+
export type { ExportOptions, SystemExportDestination, SystemExportDestinations, CustomDestination, CustomReport, DataFormatType, ExportFormContext, ReportContext, } from './AdaptableOptions/ExportOptions';
|
|
17
|
+
export type { GeneralOptions, ColumnValuesComparer, DataSet, DataSetFormContext, } from './AdaptableOptions/GeneralOptions';
|
|
18
18
|
export type { Glue42PluginOptions } from './AdaptableOptions/Glue42PluginOptions';
|
|
19
19
|
export type { IPushPullPluginOptions } from './AdaptableOptions/IPushPullPluginOptions';
|
|
20
20
|
export type { LayoutOptions, LayoutViewOptions, LayoutTagOptions, LayoutAvailableContext, AutoGenerateTagsForLayoutsContext, LayoutAssociatedObject, } from './AdaptableOptions/LayoutOptions';
|
|
@@ -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';
|
|
@@ -131,6 +131,7 @@ export type { AdaptableFormData, AdaptableForm, AdaptableFormField, AdaptableFor
|
|
|
131
131
|
export type { AdaptableButton } from './PredefinedConfig/Common/AdaptableButton';
|
|
132
132
|
export type { AdaptableMenuItem, UserMenuItem, ColumnMenuContext, ContextMenuContext, } from './PredefinedConfig/Common/Menu';
|
|
133
133
|
export type { BaseContext } from './PredefinedConfig/Common/BaseContext';
|
|
134
|
+
export type { FormContext } from './PredefinedConfig/Common/FormContext';
|
|
134
135
|
export type { Schedule } from './PredefinedConfig/Common/Schedule';
|
|
135
136
|
export type { ButtonStyle } from './PredefinedConfig/Common/ButtonStyle';
|
|
136
137
|
export type { AdaptableModule, AdaptableToolPanel, AdaptableQLModule, AdaptableSettingsPanel, AdaptableDashboardToolbar, AdaptableStatusBarPanel, AdaptableColumnType, } from './PredefinedConfig/Common/Types';
|
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
|