@adaptabletools/adaptable 11.2.4-canary.0 → 12.0.0-canary.0
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 +22 -4
- package/bundle.cjs.js +111 -111
- package/index.css +26 -4
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +6 -1
- package/src/AdaptableOptions/ActionOptions.d.ts +1 -0
- package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.js → ActionOptions.js} +0 -0
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +5 -0
- package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -3
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +5 -0
- package/src/AdaptableOptions/AlertOptions.d.ts +14 -1
- package/src/AdaptableOptions/ColumnOptions.d.ts +49 -0
- package/src/AdaptableOptions/{SmartEdit.js → ColumnOptions.js} +0 -0
- package/src/AdaptableOptions/DashboardOptions.d.ts +2 -7
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +19 -0
- package/src/AdaptableOptions/EditOptions.d.ts +92 -4
- package/src/AdaptableOptions/EntitlementOptions.d.ts +7 -1
- package/src/AdaptableOptions/ExportOptions.d.ts +5 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +6 -1
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +33 -3
- package/src/AdaptableOptions/GeneralOptions.d.ts +22 -23
- package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.d.ts → MasterDetailPluginOptions.d.ts} +2 -4
- package/src/{Api/DataSourceApi.js → AdaptableOptions/MasterDetailPluginOptions.js} +0 -0
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +3 -6
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -49
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +81 -54
- package/src/Api/AdaptableApi.d.ts +6 -3
- package/src/Api/ColumnApi.d.ts +6 -3
- package/src/Api/ConditionalStyleApi.d.ts +10 -0
- package/src/Api/ConfigApi.d.ts +0 -12
- package/src/Api/DashboardApi.d.ts +6 -19
- package/src/Api/DataSetApi.d.ts +40 -0
- package/src/{PredefinedConfig/DataSourceState.js → Api/DataSetApi.js} +0 -0
- package/src/Api/EventApi.d.ts +18 -1
- package/src/Api/Events/DataSetChanged.d.ts +5 -0
- package/src/{PredefinedConfig/FilterState.js → Api/Events/DataSetChanged.js} +0 -0
- package/src/Api/Events/RowFormSubmitted.d.ts +19 -0
- package/src/Api/Events/RowFormSubmitted.js +2 -0
- package/src/Api/Events/SearchChanged.d.ts +3 -4
- package/src/Api/FilterApi.d.ts +1 -77
- package/src/Api/FinanceApi.d.ts +3 -2
- package/src/Api/FormatColumnApi.d.ts +28 -1
- package/src/Api/GridApi.d.ts +15 -1
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
- package/src/Api/Implementation/AdaptableApiImpl.js +3 -3
- package/src/Api/Implementation/AlertApiImpl.js +5 -1
- package/src/Api/Implementation/ApiBase.d.ts +3 -0
- package/src/Api/Implementation/ApiBase.js +6 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +2 -2
- package/src/Api/Implementation/ColumnApiImpl.js +6 -3
- package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +2 -0
- package/src/Api/Implementation/ConditionalStyleApiImpl.js +8 -0
- package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -4
- package/src/Api/Implementation/ConfigApiImpl.js +2 -24
- package/src/Api/Implementation/DashboardApiImpl.d.ts +3 -6
- package/src/Api/Implementation/DashboardApiImpl.js +5 -29
- package/src/Api/Implementation/DataSetApiImpl.d.ts +12 -0
- package/src/Api/Implementation/DataSetApiImpl.js +42 -0
- package/src/Api/Implementation/EventApiImpl.js +1 -0
- package/src/Api/Implementation/FilterApiImpl.d.ts +1 -16
- package/src/Api/Implementation/FilterApiImpl.js +5 -164
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +6 -0
- package/src/Api/Implementation/FormatColumnApiImpl.js +34 -0
- package/src/Api/Implementation/GridApiImpl.d.ts +4 -1
- package/src/Api/Implementation/GridApiImpl.js +41 -1
- package/src/Api/Implementation/InternalApiImpl.d.ts +7 -2
- package/src/Api/Implementation/InternalApiImpl.js +51 -10
- package/src/Api/Implementation/LayoutApiImpl.d.ts +18 -1
- package/src/Api/Implementation/LayoutApiImpl.js +172 -0
- package/src/Api/Implementation/PredicateApiImpl.js +1 -1
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +5 -2
- package/src/Api/Implementation/SmartEditApiImpl.js +9 -0
- package/src/Api/Implementation/TeamSharingApiImpl.d.ts +5 -3
- package/src/Api/Implementation/TeamSharingApiImpl.js +28 -10
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +1 -1
- package/src/Api/Implementation/UserInterfaceApiImpl.js +7 -25
- package/src/Api/InternalApi.d.ts +6 -2
- package/src/Api/LayoutApi.d.ts +88 -1
- package/src/Api/SmartEditApi.d.ts +14 -3
- package/src/Api/TeamSharingApi.d.ts +18 -5
- package/src/Api/UserInterfaceApi.d.ts +4 -4
- package/src/PredefinedConfig/AdaptableState.d.ts +0 -4
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +5 -0
- package/src/PredefinedConfig/Common/AdaptableButton.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +5 -1
- package/src/PredefinedConfig/Common/AdaptableForm.d.ts +3 -2
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +6 -3
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +2 -11
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +35 -2
- package/src/PredefinedConfig/Common/BaseContext.d.ts +1 -1
- package/src/PredefinedConfig/{FilterState.d.ts → Common/ColumnFilter.d.ts} +2 -33
- package/src/PredefinedConfig/Common/ColumnFilter.js +2 -0
- package/src/PredefinedConfig/Common/Enums.d.ts +2 -2
- package/src/PredefinedConfig/Common/Enums.js +1 -1
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +5 -1
- package/src/PredefinedConfig/Common/Types.d.ts +6 -5
- package/src/PredefinedConfig/Common/Types.js +2 -3
- package/src/PredefinedConfig/LayoutState.d.ts +5 -0
- package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -10
- package/src/PredefinedConfig/StatusBarState.d.ts +1 -2
- package/src/PredefinedConfig/SystemState.d.ts +4 -2
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +47 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +135 -1
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +23 -1
- package/src/Redux/ActionsReducers/SystemRedux.js +39 -1
- package/src/Redux/Store/AdaptableStore.js +37 -39
- package/src/Strategy/AlertModule.d.ts +11 -0
- package/src/Strategy/AlertModule.js +14 -0
- package/src/Strategy/CellSummaryModule.d.ts +3 -0
- package/src/Strategy/CellSummaryModule.js +28 -14
- package/src/Strategy/DataSetModule.d.ts +25 -0
- package/src/Strategy/DataSetModule.js +65 -0
- package/src/Strategy/ExportModule.js +6 -1
- package/src/Strategy/FilterModule.d.ts +7 -11
- package/src/Strategy/FilterModule.js +24 -15
- package/src/Strategy/FlashingCellModule.d.ts +1 -1
- package/src/Strategy/FlashingCellModule.js +2 -2
- package/src/Strategy/FormatColumnModule.js +1 -1
- package/src/Strategy/Interface/IModule.d.ts +3 -1
- package/src/Strategy/LayoutModule.js +24 -2
- package/src/Strategy/SmartEditModule.d.ts +1 -1
- package/src/Strategy/SmartEditModule.js +5 -6
- package/src/Strategy/StatusBarModule.js +1 -3
- package/src/Strategy/TeamSharingModule.js +1 -1
- package/src/Strategy/ToolPanelModule.js +1 -4
- package/src/Utilities/Constants/GeneralConstants.d.ts +6 -2
- package/src/Utilities/Constants/GeneralConstants.js +6 -2
- package/src/Utilities/Constants/ModuleConstants.d.ts +1 -1
- package/src/Utilities/Constants/ModuleConstants.js +2 -2
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +22 -13
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +2 -4
- package/src/Utilities/Helpers/AdaptableHelper.js +4 -1
- package/src/Utilities/ObjectFactory.d.ts +3 -6
- package/src/Utilities/ObjectFactory.js +3 -7
- package/src/Utilities/Services/EntitlementService.js +7 -1
- package/src/Utilities/Services/Interface/IRowEditService.d.ts +8 -0
- package/src/Utilities/Services/Interface/IRowEditService.js +2 -0
- package/src/Utilities/Services/ModuleService.js +1 -1
- package/src/Utilities/Services/ReportService.js +2 -3
- package/src/Utilities/Services/RowEditService.d.ts +25 -0
- package/src/Utilities/Services/RowEditService.js +165 -0
- package/src/Utilities/Services/TeamSharingService.js +4 -4
- package/src/View/AdaptablePopover/index.d.ts +1 -0
- package/src/View/AdaptablePopover/index.js +5 -6
- package/src/View/AdaptableView.js +1 -1
- package/src/View/AdaptableViewFactory.js +2 -2
- package/src/View/Alert/ActiveAlertsPanel.d.ts +2 -0
- package/src/View/Alert/ActiveAlertsPanel.js +15 -0
- package/src/View/Alert/AlertStatusSubPanel.js +3 -8
- package/src/View/Alert/AlertViewPanel.js +2 -2
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +1 -1
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +9 -2
- package/src/View/CellSummary/CellSummaryDetails.js +2 -2
- package/src/View/CellSummary/CellSummaryPopover.d.ts +2 -4
- package/src/View/CellSummary/CellSummaryPopover.js +3 -6
- package/src/View/CellSummary/CellSummaryPopup.js +8 -0
- package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +1 -1
- package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -2
- package/src/View/CellSummary/CellSummaryViewPanel.js +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +18 -8
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -2
- package/src/View/Components/ExternalRenderer.d.ts +3 -6
- package/src/View/Components/ExternalRenderer.js +5 -5
- package/src/View/Components/FilterForm/FilterForm.d.ts +5 -2
- package/src/View/Components/FilterForm/FilterForm.js +9 -7
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +4 -1
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +7 -7
- package/src/View/Components/FilterForm/QuickFilterForm.d.ts +1 -1
- package/src/View/Components/FilterForm/QuickFilterForm.js +21 -7
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +2 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +0 -2
- package/src/View/Components/Popups/AdaptablePopupAlert.js +13 -11
- package/src/View/Components/Popups/AdaptableToaster.js +29 -9
- package/src/View/Components/Popups/FormPopups/FormPopups.js +2 -2
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -2
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -9
- package/src/View/Dashboard/CustomDashboardButton.d.ts +11 -0
- package/src/View/Dashboard/CustomDashboardButton.js +47 -0
- package/src/View/Dashboard/CustomToolbarWrapper.d.ts +1 -0
- package/src/View/Dashboard/CustomToolbarWrapper.js +30 -11
- package/src/View/Dashboard/Dashboard.d.ts +1 -0
- package/src/View/Dashboard/Dashboard.js +8 -34
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +19 -36
- package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +3 -0
- package/src/View/DataChangeHistory/buildActionColumnButton.js +70 -0
- package/src/View/DataSet/DataSetSelector.d.ts +7 -0
- package/src/View/DataSet/DataSetSelector.js +18 -0
- package/src/View/DataSet/DataSetStatusPanelPopover.d.ts +2 -0
- package/src/View/DataSet/DataSetStatusPanelPopover.js +19 -0
- package/src/View/DataSet/DataSetViewPanel.d.ts +19 -0
- package/src/View/DataSet/DataSetViewPanel.js +58 -0
- package/src/View/Filter/ActiveFiltersPanel.js +1 -1
- package/src/View/Filter/FilterSummary.d.ts +5 -5
- package/src/View/Filter/FilterSummary.js +6 -5
- package/src/View/Filter/FilterViewPanel.d.ts +4 -4
- package/src/View/Filter/FilterViewPanel.js +11 -14
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +3 -2
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +51 -22
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +1 -1
- package/src/View/GridInfo/GridInfoPopup.js +1 -1
- package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +6 -24
- package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +2 -1
- package/src/View/SmartEdit/SmartEditPopup.d.ts +1 -1
- package/src/View/SmartEdit/SmartEditPopup.js +3 -4
- package/src/View/SmartEdit/SmartEditViewPanel.d.ts +1 -1
- package/src/View/SmartEdit/SmartEditViewPanel.js +3 -4
- package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
- package/src/View/StatusBar/AdaptableStatusBar.js +1 -1
- package/src/View/StatusBar/StatusBarPanel.d.ts +1 -0
- package/src/View/StatusBar/StatusBarPanel.js +5 -4
- package/src/View/Theme/ThemeStatusPanelPopover.js +5 -25
- package/src/View/UIHelper.d.ts +4 -4
- package/src/View/UIHelper.js +4 -4
- package/src/agGrid/ActionColumnRenderer.d.ts +6 -1
- package/src/agGrid/ActionColumnRenderer.js +9 -6
- package/src/agGrid/Adaptable.d.ts +7 -2
- package/src/agGrid/Adaptable.js +217 -87
- package/src/agGrid/FilterWrapper.js +1 -1
- package/src/agGrid/agGridHelper.d.ts +6 -6
- package/src/agGrid/agGridHelper.js +34 -56
- package/src/agGrid/agGridMenuHelper.js +4 -1
- package/src/agGrid/rowEditIcons.d.ts +4 -0
- package/src/agGrid/rowEditIcons.js +9 -0
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +9 -18
- package/src/components/Dashboard/DashboardToolbar.js +2 -2
- package/src/components/Datepicker/index.js +19 -18
- package/src/components/SelectList.d.ts +10 -0
- package/src/components/SelectList.js +9 -0
- package/src/components/WindowModal/WindowModal.d.ts +2 -0
- package/src/components/WindowModal/WindowModal.js +1 -1
- package/src/components/icons/{data-source.d.ts → data-set.d.ts} +0 -0
- package/src/components/icons/{data-source.js → data-set.js} +0 -0
- package/src/components/icons/index.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +242 -70
- package/src/metamodel/adaptable.metamodel.js +620 -376
- package/src/types.d.ts +19 -15
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/SmartEdit.d.ts +0 -34
- package/src/Api/DataSourceApi.d.ts +0 -58
- package/src/Api/Implementation/DataSourceApiImpl.d.ts +0 -15
- package/src/Api/Implementation/DataSourceApiImpl.js +0 -51
- package/src/PredefinedConfig/DataSourceState.d.ts +0 -34
- package/src/Redux/ActionsReducers/DataSourceRedux.d.ts +0 -42
- package/src/Redux/ActionsReducers/DataSourceRedux.js +0 -76
- package/src/Redux/ActionsReducers/FilterRedux.d.ts +0 -70
- package/src/Redux/ActionsReducers/FilterRedux.js +0 -126
- package/src/Strategy/DataSourceModule.d.ts +0 -20
- package/src/Strategy/DataSourceModule.js +0 -56
- package/src/View/Components/Forms/AdaptableForm.d.ts +0 -6
- package/src/View/Components/Forms/AdaptableForm.js +0 -21
- package/src/View/DataSource/DataSourceViewPanel.d.ts +0 -19
- package/src/View/DataSource/DataSourceViewPanel.js +0 -69
- package/src/View/DataSource/Wizard/DataSourceSettingsSummary.d.ts +0 -2
- package/src/View/DataSource/Wizard/DataSourceSettingsSummary.js +0 -17
- package/src/View/DataSource/Wizard/DataSourceSettingsWizard.d.ts +0 -8
- package/src/View/DataSource/Wizard/DataSourceSettingsWizard.js +0 -42
- package/src/View/DataSource/Wizard/DataSourceWizard.d.ts +0 -8
- package/src/View/DataSource/Wizard/DataSourceWizard.js +0 -53
|
@@ -74,6 +74,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
74
74
|
kind: string;
|
|
75
75
|
description: string;
|
|
76
76
|
};
|
|
77
|
+
ActionOptions: {
|
|
78
|
+
name: string;
|
|
79
|
+
kind: string;
|
|
80
|
+
description: string;
|
|
81
|
+
properties: ({
|
|
82
|
+
name: string;
|
|
83
|
+
kind: string;
|
|
84
|
+
description: string;
|
|
85
|
+
uiLabel: string;
|
|
86
|
+
isOptional: boolean;
|
|
87
|
+
defaultValue?: undefined;
|
|
88
|
+
} | {
|
|
89
|
+
name: string;
|
|
90
|
+
kind: string;
|
|
91
|
+
description: string;
|
|
92
|
+
uiLabel: string;
|
|
93
|
+
isOptional: boolean;
|
|
94
|
+
defaultValue: string;
|
|
95
|
+
})[];
|
|
96
|
+
};
|
|
77
97
|
AdaptableAlert: {
|
|
78
98
|
name: string;
|
|
79
99
|
kind: string;
|
|
@@ -124,21 +144,13 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
124
144
|
name: string;
|
|
125
145
|
kind: string;
|
|
126
146
|
description: string;
|
|
127
|
-
properties:
|
|
128
|
-
name: string;
|
|
129
|
-
kind: string;
|
|
130
|
-
description: string;
|
|
131
|
-
uiLabel: string;
|
|
132
|
-
isOptional: boolean;
|
|
133
|
-
reference?: undefined;
|
|
134
|
-
} | {
|
|
147
|
+
properties: {
|
|
135
148
|
name: string;
|
|
136
149
|
kind: string;
|
|
137
150
|
description: string;
|
|
138
151
|
uiLabel: string;
|
|
139
152
|
isOptional: boolean;
|
|
140
|
-
|
|
141
|
-
})[];
|
|
153
|
+
}[];
|
|
142
154
|
};
|
|
143
155
|
AdaptableCalculatedColumnQuery: {
|
|
144
156
|
name: string;
|
|
@@ -188,12 +200,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
188
200
|
name: string;
|
|
189
201
|
kind: string;
|
|
190
202
|
description: string;
|
|
191
|
-
properties: {
|
|
203
|
+
properties: ({
|
|
192
204
|
name: string;
|
|
193
205
|
kind: string;
|
|
194
206
|
description: string;
|
|
195
207
|
uiLabel: string;
|
|
196
|
-
|
|
208
|
+
reference?: undefined;
|
|
209
|
+
} | {
|
|
210
|
+
name: string;
|
|
211
|
+
kind: string;
|
|
212
|
+
description: string;
|
|
213
|
+
uiLabel: string;
|
|
214
|
+
reference: string;
|
|
215
|
+
})[];
|
|
216
|
+
};
|
|
217
|
+
AdaptableColumnDataType: {
|
|
218
|
+
name: string;
|
|
219
|
+
kind: string;
|
|
220
|
+
description: string;
|
|
197
221
|
};
|
|
198
222
|
AdaptableComparerFunction: {
|
|
199
223
|
name: string;
|
|
@@ -240,7 +264,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
240
264
|
description: string;
|
|
241
265
|
uiLabel: string;
|
|
242
266
|
isOptional: boolean;
|
|
243
|
-
reference
|
|
267
|
+
reference?: undefined;
|
|
244
268
|
})[];
|
|
245
269
|
};
|
|
246
270
|
AdaptableFlashingCell: {
|
|
@@ -297,12 +321,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
297
321
|
description: string;
|
|
298
322
|
uiLabel: string;
|
|
299
323
|
isOptional: boolean;
|
|
324
|
+
reference?: undefined;
|
|
325
|
+
} | {
|
|
326
|
+
name: string;
|
|
327
|
+
kind: string;
|
|
328
|
+
description: string;
|
|
329
|
+
uiLabel: string;
|
|
330
|
+
reference: string;
|
|
331
|
+
isOptional?: undefined;
|
|
300
332
|
} | {
|
|
301
333
|
name: string;
|
|
302
334
|
kind: string;
|
|
303
335
|
description: string;
|
|
304
336
|
uiLabel: string;
|
|
305
337
|
isOptional?: undefined;
|
|
338
|
+
reference?: undefined;
|
|
306
339
|
})[];
|
|
307
340
|
};
|
|
308
341
|
AdaptableIcon: {
|
|
@@ -427,18 +460,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
427
460
|
description: string;
|
|
428
461
|
uiLabel: string;
|
|
429
462
|
isOptional: boolean;
|
|
463
|
+
defaultValue: string;
|
|
464
|
+
reference: string;
|
|
430
465
|
gridInfo?: undefined;
|
|
431
|
-
defaultValue?: undefined;
|
|
432
|
-
reference?: undefined;
|
|
433
466
|
} | {
|
|
434
467
|
name: string;
|
|
435
468
|
kind: string;
|
|
436
469
|
description: string;
|
|
437
470
|
uiLabel: string;
|
|
438
471
|
isOptional: boolean;
|
|
439
|
-
defaultValue: string;
|
|
440
|
-
reference: string;
|
|
441
472
|
gridInfo?: undefined;
|
|
473
|
+
defaultValue?: undefined;
|
|
474
|
+
reference?: undefined;
|
|
442
475
|
} | {
|
|
443
476
|
name: string;
|
|
444
477
|
kind: string;
|
|
@@ -527,6 +560,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
527
560
|
gridInfo: string;
|
|
528
561
|
defaultValue: string;
|
|
529
562
|
reference?: undefined;
|
|
563
|
+
} | {
|
|
564
|
+
name: string;
|
|
565
|
+
kind: string;
|
|
566
|
+
description: string;
|
|
567
|
+
uiLabel: string;
|
|
568
|
+
isOptional: boolean;
|
|
569
|
+
gridInfo?: undefined;
|
|
570
|
+
defaultValue?: undefined;
|
|
571
|
+
reference?: undefined;
|
|
530
572
|
} | {
|
|
531
573
|
name: string;
|
|
532
574
|
kind: string;
|
|
@@ -778,6 +820,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
778
820
|
kind: string;
|
|
779
821
|
description: string;
|
|
780
822
|
};
|
|
823
|
+
AlertMessageContext: {
|
|
824
|
+
name: string;
|
|
825
|
+
kind: string;
|
|
826
|
+
description: string;
|
|
827
|
+
properties: ({
|
|
828
|
+
name: string;
|
|
829
|
+
kind: string;
|
|
830
|
+
description: string;
|
|
831
|
+
uiLabel: string;
|
|
832
|
+
reference: string;
|
|
833
|
+
isOptional?: undefined;
|
|
834
|
+
} | {
|
|
835
|
+
name: string;
|
|
836
|
+
kind: string;
|
|
837
|
+
description: string;
|
|
838
|
+
uiLabel: string;
|
|
839
|
+
isOptional: boolean;
|
|
840
|
+
reference: string;
|
|
841
|
+
})[];
|
|
842
|
+
};
|
|
781
843
|
AlertOptions: {
|
|
782
844
|
name: string;
|
|
783
845
|
kind: string;
|
|
@@ -1224,6 +1286,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1224
1286
|
reference: string;
|
|
1225
1287
|
})[];
|
|
1226
1288
|
};
|
|
1289
|
+
ColumnFriendlyNameContext: {
|
|
1290
|
+
name: string;
|
|
1291
|
+
kind: string;
|
|
1292
|
+
description: string;
|
|
1293
|
+
properties: ({
|
|
1294
|
+
name: string;
|
|
1295
|
+
kind: string;
|
|
1296
|
+
description: string;
|
|
1297
|
+
uiLabel: string;
|
|
1298
|
+
reference: string;
|
|
1299
|
+
} | {
|
|
1300
|
+
name: string;
|
|
1301
|
+
kind: string;
|
|
1302
|
+
description: string;
|
|
1303
|
+
uiLabel: string;
|
|
1304
|
+
reference?: undefined;
|
|
1305
|
+
})[];
|
|
1306
|
+
};
|
|
1227
1307
|
ColumnMenuContext: {
|
|
1228
1308
|
name: string;
|
|
1229
1309
|
kind: string;
|
|
@@ -1242,6 +1322,28 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1242
1322
|
reference?: undefined;
|
|
1243
1323
|
})[];
|
|
1244
1324
|
};
|
|
1325
|
+
ColumnOptions: {
|
|
1326
|
+
name: string;
|
|
1327
|
+
kind: string;
|
|
1328
|
+
description: string;
|
|
1329
|
+
properties: ({
|
|
1330
|
+
name: string;
|
|
1331
|
+
kind: string;
|
|
1332
|
+
description: string;
|
|
1333
|
+
uiLabel: string;
|
|
1334
|
+
isOptional: boolean;
|
|
1335
|
+
gridInfo: string;
|
|
1336
|
+
defaultValue: string;
|
|
1337
|
+
} | {
|
|
1338
|
+
name: string;
|
|
1339
|
+
kind: string;
|
|
1340
|
+
description: string;
|
|
1341
|
+
uiLabel: string;
|
|
1342
|
+
isOptional: boolean;
|
|
1343
|
+
gridInfo?: undefined;
|
|
1344
|
+
defaultValue?: undefined;
|
|
1345
|
+
})[];
|
|
1346
|
+
};
|
|
1245
1347
|
ColumnSort: {
|
|
1246
1348
|
name: string;
|
|
1247
1349
|
kind: string;
|
|
@@ -1522,6 +1624,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1522
1624
|
isOptional?: undefined;
|
|
1523
1625
|
})[];
|
|
1524
1626
|
};
|
|
1627
|
+
CustomFDC3Column: {
|
|
1628
|
+
name: string;
|
|
1629
|
+
kind: string;
|
|
1630
|
+
description: string;
|
|
1631
|
+
properties: {
|
|
1632
|
+
name: string;
|
|
1633
|
+
kind: string;
|
|
1634
|
+
description: string;
|
|
1635
|
+
uiLabel: string;
|
|
1636
|
+
}[];
|
|
1637
|
+
};
|
|
1638
|
+
CustomFDC3Intent: {
|
|
1639
|
+
name: string;
|
|
1640
|
+
kind: string;
|
|
1641
|
+
description: string;
|
|
1642
|
+
};
|
|
1525
1643
|
CustomReport: {
|
|
1526
1644
|
name: string;
|
|
1527
1645
|
kind: string;
|
|
@@ -1819,7 +1937,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1819
1937
|
name: string;
|
|
1820
1938
|
kind: string;
|
|
1821
1939
|
description: string;
|
|
1822
|
-
properties: {
|
|
1940
|
+
properties: ({
|
|
1941
|
+
name: string;
|
|
1942
|
+
kind: string;
|
|
1943
|
+
description: string;
|
|
1944
|
+
uiLabel: string;
|
|
1945
|
+
isOptional: boolean;
|
|
1946
|
+
gridInfo?: undefined;
|
|
1947
|
+
defaultValue?: undefined;
|
|
1948
|
+
} | {
|
|
1823
1949
|
name: string;
|
|
1824
1950
|
kind: string;
|
|
1825
1951
|
description: string;
|
|
@@ -1827,9 +1953,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1827
1953
|
isOptional: boolean;
|
|
1828
1954
|
gridInfo: string;
|
|
1829
1955
|
defaultValue: string;
|
|
1830
|
-
}[];
|
|
1956
|
+
})[];
|
|
1831
1957
|
};
|
|
1832
|
-
|
|
1958
|
+
DataSet: {
|
|
1833
1959
|
name: string;
|
|
1834
1960
|
kind: string;
|
|
1835
1961
|
description: string;
|
|
@@ -1847,7 +1973,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1847
1973
|
isOptional: boolean;
|
|
1848
1974
|
})[];
|
|
1849
1975
|
};
|
|
1850
|
-
|
|
1976
|
+
DataSetApi: {
|
|
1851
1977
|
name: string;
|
|
1852
1978
|
kind: string;
|
|
1853
1979
|
description: string;
|
|
@@ -1858,18 +1984,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1858
1984
|
uiLabel: string;
|
|
1859
1985
|
}[];
|
|
1860
1986
|
};
|
|
1861
|
-
DataSourceState: {
|
|
1862
|
-
name: string;
|
|
1863
|
-
kind: string;
|
|
1864
|
-
description: string;
|
|
1865
|
-
properties: {
|
|
1866
|
-
name: string;
|
|
1867
|
-
kind: string;
|
|
1868
|
-
description: string;
|
|
1869
|
-
uiLabel: string;
|
|
1870
|
-
isOptional: boolean;
|
|
1871
|
-
}[];
|
|
1872
|
-
};
|
|
1873
1987
|
DataUpdateConfig: {
|
|
1874
1988
|
name: string;
|
|
1875
1989
|
kind: string;
|
|
@@ -1924,12 +2038,23 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1924
2038
|
isOptional: boolean;
|
|
1925
2039
|
gridInfo: string;
|
|
1926
2040
|
defaultValue: string;
|
|
2041
|
+
reference?: undefined;
|
|
2042
|
+
} | {
|
|
2043
|
+
name: string;
|
|
2044
|
+
kind: string;
|
|
2045
|
+
description: string;
|
|
2046
|
+
uiLabel: string;
|
|
2047
|
+
isOptional: boolean;
|
|
2048
|
+
gridInfo?: undefined;
|
|
2049
|
+
defaultValue?: undefined;
|
|
2050
|
+
reference?: undefined;
|
|
1927
2051
|
} | {
|
|
1928
2052
|
name: string;
|
|
1929
2053
|
kind: string;
|
|
1930
2054
|
description: string;
|
|
1931
2055
|
uiLabel: string;
|
|
1932
2056
|
isOptional: boolean;
|
|
2057
|
+
reference: string;
|
|
1933
2058
|
gridInfo?: undefined;
|
|
1934
2059
|
defaultValue?: undefined;
|
|
1935
2060
|
})[];
|
|
@@ -2259,26 +2384,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2259
2384
|
defaultValue: string;
|
|
2260
2385
|
}[];
|
|
2261
2386
|
};
|
|
2262
|
-
FilterState: {
|
|
2263
|
-
name: string;
|
|
2264
|
-
kind: string;
|
|
2265
|
-
description: string;
|
|
2266
|
-
properties: ({
|
|
2267
|
-
name: string;
|
|
2268
|
-
kind: string;
|
|
2269
|
-
description: string;
|
|
2270
|
-
uiLabel: string;
|
|
2271
|
-
isOptional: boolean;
|
|
2272
|
-
defaultValue?: undefined;
|
|
2273
|
-
} | {
|
|
2274
|
-
name: string;
|
|
2275
|
-
kind: string;
|
|
2276
|
-
description: string;
|
|
2277
|
-
uiLabel: string;
|
|
2278
|
-
isOptional: boolean;
|
|
2279
|
-
defaultValue: string;
|
|
2280
|
-
})[];
|
|
2281
|
-
};
|
|
2282
2387
|
FinanceApi: {
|
|
2283
2388
|
name: string;
|
|
2284
2389
|
kind: string;
|
|
@@ -2553,16 +2658,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2553
2658
|
description: string;
|
|
2554
2659
|
uiLabel: string;
|
|
2555
2660
|
isOptional: boolean;
|
|
2556
|
-
|
|
2557
|
-
|
|
2661
|
+
defaultValue?: undefined;
|
|
2662
|
+
gridInfo?: undefined;
|
|
2558
2663
|
} | {
|
|
2559
2664
|
name: string;
|
|
2560
2665
|
kind: string;
|
|
2561
2666
|
description: string;
|
|
2562
2667
|
uiLabel: string;
|
|
2563
2668
|
isOptional: boolean;
|
|
2564
|
-
|
|
2565
|
-
|
|
2669
|
+
gridInfo: string;
|
|
2670
|
+
defaultValue: string;
|
|
2566
2671
|
})[];
|
|
2567
2672
|
};
|
|
2568
2673
|
Glue42Api: {
|
|
@@ -3010,6 +3115,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3010
3115
|
reference: string;
|
|
3011
3116
|
})[];
|
|
3012
3117
|
};
|
|
3118
|
+
MasterDetailPluginOptions: {
|
|
3119
|
+
name: string;
|
|
3120
|
+
kind: string;
|
|
3121
|
+
description: string;
|
|
3122
|
+
properties: ({
|
|
3123
|
+
name: string;
|
|
3124
|
+
kind: string;
|
|
3125
|
+
description: string;
|
|
3126
|
+
uiLabel: string;
|
|
3127
|
+
reference: string;
|
|
3128
|
+
isOptional?: undefined;
|
|
3129
|
+
} | {
|
|
3130
|
+
name: string;
|
|
3131
|
+
kind: string;
|
|
3132
|
+
description: string;
|
|
3133
|
+
uiLabel: string;
|
|
3134
|
+
isOptional: boolean;
|
|
3135
|
+
reference?: undefined;
|
|
3136
|
+
})[];
|
|
3137
|
+
};
|
|
3013
3138
|
MenuOptions: {
|
|
3014
3139
|
name: string;
|
|
3015
3140
|
kind: string;
|
|
@@ -3495,7 +3620,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3495
3620
|
kind: string;
|
|
3496
3621
|
description: string;
|
|
3497
3622
|
uiLabel: string;
|
|
3498
|
-
reference: string;
|
|
3499
3623
|
}[];
|
|
3500
3624
|
};
|
|
3501
3625
|
ReactFrameworkComponent: {
|
|
@@ -3552,6 +3676,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3552
3676
|
reference: string;
|
|
3553
3677
|
})[];
|
|
3554
3678
|
};
|
|
3679
|
+
RowFormOptions: {
|
|
3680
|
+
name: string;
|
|
3681
|
+
kind: string;
|
|
3682
|
+
description: string;
|
|
3683
|
+
properties: ({
|
|
3684
|
+
name: string;
|
|
3685
|
+
kind: string;
|
|
3686
|
+
description: string;
|
|
3687
|
+
uiLabel: string;
|
|
3688
|
+
isOptional: boolean;
|
|
3689
|
+
defaultValue?: undefined;
|
|
3690
|
+
} | {
|
|
3691
|
+
name: string;
|
|
3692
|
+
kind: string;
|
|
3693
|
+
description: string;
|
|
3694
|
+
uiLabel: string;
|
|
3695
|
+
isOptional: boolean;
|
|
3696
|
+
defaultValue: string;
|
|
3697
|
+
})[];
|
|
3698
|
+
};
|
|
3555
3699
|
RowInfo: {
|
|
3556
3700
|
name: string;
|
|
3557
3701
|
kind: string;
|
|
@@ -3778,6 +3922,29 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3778
3922
|
uiLabel: string;
|
|
3779
3923
|
}[];
|
|
3780
3924
|
};
|
|
3925
|
+
SmartEditCustomOperation: {
|
|
3926
|
+
name: string;
|
|
3927
|
+
kind: string;
|
|
3928
|
+
description: string;
|
|
3929
|
+
};
|
|
3930
|
+
SmartEditOperationContext: {
|
|
3931
|
+
name: string;
|
|
3932
|
+
kind: string;
|
|
3933
|
+
description: string;
|
|
3934
|
+
properties: ({
|
|
3935
|
+
name: string;
|
|
3936
|
+
kind: string;
|
|
3937
|
+
description: string;
|
|
3938
|
+
uiLabel: string;
|
|
3939
|
+
reference: string;
|
|
3940
|
+
} | {
|
|
3941
|
+
name: string;
|
|
3942
|
+
kind: string;
|
|
3943
|
+
description: string;
|
|
3944
|
+
uiLabel: string;
|
|
3945
|
+
reference?: undefined;
|
|
3946
|
+
})[];
|
|
3947
|
+
};
|
|
3781
3948
|
SpecialColumnSettings: {
|
|
3782
3949
|
name: string;
|
|
3783
3950
|
kind: string;
|
|
@@ -3828,6 +3995,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3828
3995
|
reference?: undefined;
|
|
3829
3996
|
})[];
|
|
3830
3997
|
};
|
|
3998
|
+
StatusBarState: {
|
|
3999
|
+
name: string;
|
|
4000
|
+
kind: string;
|
|
4001
|
+
description: string;
|
|
4002
|
+
properties: {
|
|
4003
|
+
name: string;
|
|
4004
|
+
kind: string;
|
|
4005
|
+
description: string;
|
|
4006
|
+
uiLabel: string;
|
|
4007
|
+
isOptional: boolean;
|
|
4008
|
+
defaultValue: string;
|
|
4009
|
+
}[];
|
|
4010
|
+
};
|
|
3831
4011
|
StringFormatterOptions: {
|
|
3832
4012
|
name: string;
|
|
3833
4013
|
kind: string;
|
|
@@ -4033,14 +4213,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4033
4213
|
kind: string;
|
|
4034
4214
|
description: string;
|
|
4035
4215
|
properties: ({
|
|
4036
|
-
name: string;
|
|
4037
|
-
kind: string;
|
|
4038
|
-
description: string;
|
|
4039
|
-
uiLabel: string;
|
|
4040
|
-
isOptional: boolean;
|
|
4041
|
-
gridInfo: string;
|
|
4042
|
-
defaultValue: string;
|
|
4043
|
-
} | {
|
|
4044
4216
|
name: string;
|
|
4045
4217
|
kind: string;
|
|
4046
4218
|
description: string;
|
|
@@ -4054,8 +4226,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4054
4226
|
description: string;
|
|
4055
4227
|
uiLabel: string;
|
|
4056
4228
|
isOptional: boolean;
|
|
4229
|
+
gridInfo: string;
|
|
4057
4230
|
defaultValue: string;
|
|
4058
|
-
gridInfo?: undefined;
|
|
4059
4231
|
})[];
|
|
4060
4232
|
};
|
|
4061
4233
|
ToolPanelState: {
|
|
@@ -4106,8 +4278,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4106
4278
|
description: string;
|
|
4107
4279
|
uiLabel: string;
|
|
4108
4280
|
isOptional: boolean;
|
|
4281
|
+
reference: string;
|
|
4109
4282
|
defaultValue?: undefined;
|
|
4110
|
-
reference?: undefined;
|
|
4111
4283
|
gridInfo?: undefined;
|
|
4112
4284
|
} | {
|
|
4113
4285
|
name: string;
|
|
@@ -4124,7 +4296,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4124
4296
|
description: string;
|
|
4125
4297
|
uiLabel: string;
|
|
4126
4298
|
isOptional: boolean;
|
|
4127
|
-
reference
|
|
4299
|
+
reference?: undefined;
|
|
4128
4300
|
defaultValue?: undefined;
|
|
4129
4301
|
gridInfo?: undefined;
|
|
4130
4302
|
} | {
|
|
@@ -4143,8 +4315,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4143
4315
|
uiLabel: string;
|
|
4144
4316
|
isOptional: boolean;
|
|
4145
4317
|
gridInfo: string;
|
|
4146
|
-
defaultValue?: undefined;
|
|
4147
4318
|
reference?: undefined;
|
|
4319
|
+
defaultValue?: undefined;
|
|
4148
4320
|
})[];
|
|
4149
4321
|
};
|
|
4150
4322
|
UserMenuItem: {
|