@adaptabletools/adaptable 10.0.2 → 10.0.4-canary.2
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/LICENSE.md +1 -1
- package/README.md +1 -1
- package/base.css +84 -32
- package/bundle.cjs.js +350 -0
- package/index.css +100 -34
- package/package.json +1 -5
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +24 -12
- package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -3
- package/src/AdaptableOptions/ContainerOptions.d.ts +4 -5
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
- package/src/AdaptableOptions/DateInputOptions.d.ts +5 -1
- package/src/AdaptableOptions/EditOptions.d.ts +2 -3
- package/src/AdaptableOptions/FilterOptions.d.ts +22 -15
- package/src/AdaptableOptions/GeneralOptions.d.ts +3 -2
- package/src/AdaptableOptions/LayoutOptions.d.ts +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +11 -11
- package/src/AdaptableOptions/NotificationsOptions.d.ts +11 -1
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +108 -6
- package/src/Api/AdaptableApi.d.ts +12 -12
- package/src/Api/AlertApi.d.ts +1 -1
- package/src/Api/CalculatedColumnApi.d.ts +15 -0
- package/src/Api/ColumnApi.d.ts +49 -5
- package/src/Api/ConfigApi.d.ts +8 -0
- package/src/Api/EventApi.d.ts +1 -1
- package/src/Api/Events/AdaptableReady.d.ts +5 -8
- package/src/Api/Events/AdaptableStateChanged.d.ts +2 -1
- package/src/Api/Events/AlertFired.d.ts +2 -1
- package/src/Api/Events/BaseEventInfo.d.ts +10 -0
- package/src/{Utilities/Interface/ProgressIndicator.js → Api/Events/BaseEventInfo.js} +0 -0
- package/src/Api/Events/CellChanged.d.ts +2 -1
- package/src/Api/Events/ChexboxColumnClicked.d.ts +2 -1
- package/src/Api/Events/CustomToolbarConfigured.d.ts +2 -1
- package/src/Api/Events/DashboardChanged.d.ts +2 -1
- package/src/Api/Events/FlashingAlertFired.d.ts +2 -1
- package/src/Api/Events/GridDataChanged.d.ts +2 -1
- package/src/Api/Events/LayoutChanged.d.ts +2 -1
- package/src/Api/Events/LiveDataChanged.d.ts +2 -1
- package/src/Api/Events/SearchChanged.d.ts +2 -1
- package/src/Api/Events/SelectionChanged.d.ts +2 -1
- package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +2 -1
- package/src/Api/Events/TeamSharingEntityChanged.d.ts +2 -1
- package/src/Api/Events/ThemeChanged.d.ts +2 -1
- package/src/Api/GridApi.d.ts +44 -18
- package/src/Api/Implementation/AlertApiImpl.d.ts +1 -1
- package/src/Api/Implementation/AlertApiImpl.js +22 -15
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +3 -0
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +23 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +12 -3
- package/src/Api/Implementation/ColumnApiImpl.js +79 -44
- package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
- package/src/Api/Implementation/ConfigApiImpl.js +28 -41
- package/src/Api/Implementation/DashboardApiImpl.js +2 -1
- package/src/Api/Implementation/ExportApiImpl.js +4 -4
- package/src/Api/Implementation/FormatColumnApiImpl.js +2 -1
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +9 -3
- package/src/Api/Implementation/GridApiImpl.d.ts +11 -2
- package/src/Api/Implementation/GridApiImpl.js +30 -13
- package/src/Api/Implementation/InternalApiImpl.d.ts +4 -2
- package/src/Api/Implementation/InternalApiImpl.js +21 -5
- package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
- package/src/Api/Implementation/LayoutApiImpl.js +19 -3
- package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -2
- package/src/Api/Implementation/PluginsApiImpl.js +1 -1
- package/src/Api/Implementation/ScheduleApiImpl.js +6 -6
- package/src/Api/Implementation/ScopeApiImpl.js +11 -11
- package/src/Api/Implementation/SystemStatusApiImpl.js +1 -0
- package/src/Api/Implementation/TeamSharingApiImpl.js +1 -0
- package/src/Api/Implementation/ThemeApiImpl.js +1 -0
- package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +15 -11
- package/src/Api/Implementation/UserInterfaceApiImpl.js +73 -91
- package/src/Api/InternalApi.d.ts +4 -2
- package/src/Api/LayoutApi.d.ts +7 -0
- package/src/Api/PluginsApi.d.ts +1 -7
- package/src/Api/TeamSharingApi.d.ts +1 -1
- package/src/Api/ThemeApi.d.ts +2 -2
- package/src/Api/UserInterfaceApi.d.ts +19 -9
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -10
- package/src/PredefinedConfig/AlertState.d.ts +5 -1
- package/src/PredefinedConfig/ApplicationState.d.ts +1 -1
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +5 -38
- package/src/PredefinedConfig/Common/AdaptableButton.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +36 -36
- package/src/PredefinedConfig/Common/AdaptableColumn.js +5 -5
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +19 -18
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +7 -7
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +4 -3
- package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +5 -1
- package/src/PredefinedConfig/Common/Menu.d.ts +40 -17
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +49 -0
- package/src/PredefinedConfig/Common/SpecialColumnSettings.js +2 -0
- package/src/PredefinedConfig/Common/Types.d.ts +5 -5
- package/src/PredefinedConfig/Common/Types.js +9 -7
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +1 -1
- package/src/PredefinedConfig/CustomSortState.d.ts +1 -1
- package/src/PredefinedConfig/DataSourceState.d.ts +1 -1
- package/src/PredefinedConfig/ExportState.d.ts +3 -3
- package/src/PredefinedConfig/FilterState.d.ts +3 -3
- package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +11 -1
- package/src/PredefinedConfig/LayoutState.d.ts +1 -1
- package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -40
- package/src/PredefinedConfig/QuickSearchState.d.ts +3 -3
- package/src/PredefinedConfig/ScheduleState.d.ts +1 -1
- package/src/PredefinedConfig/Selection/GridCell.d.ts +2 -1
- package/src/PredefinedConfig/Selection/GridRow.d.ts +12 -4
- package/src/PredefinedConfig/SystemState.d.ts +4 -1
- package/src/PredefinedConfig/ThemeState.d.ts +5 -1
- package/src/Redux/ActionsReducers/DashboardRedux.js +2 -1
- package/src/Redux/ActionsReducers/GridRedux.d.ts +3 -2
- package/src/Redux/ActionsReducers/GridRedux.js +2 -2
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +12 -2
- package/src/Redux/ActionsReducers/LayoutRedux.js +24 -1
- package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
- package/src/Redux/DeadRedux.d.ts +4 -8
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +6 -1
- package/src/Redux/Store/AdaptableStore.d.ts +3 -3
- package/src/Redux/Store/AdaptableStore.js +25 -16
- package/src/Strategy/AdaptableModuleBase.d.ts +2 -2
- package/src/Strategy/AdaptableModuleBase.js +8 -8
- package/src/Strategy/AlertModule.d.ts +2 -2
- package/src/Strategy/AlertModule.js +13 -105
- package/src/Strategy/BulkUpdateModule.d.ts +2 -2
- package/src/Strategy/BulkUpdateModule.js +7 -7
- package/src/Strategy/CalculatedColumnModule.js +1 -1
- package/src/Strategy/CellSummaryModule.d.ts +2 -2
- package/src/Strategy/CellSummaryModule.js +3 -3
- package/src/Strategy/ConditionalStyleModule.js +3 -3
- package/src/Strategy/CustomSortModule.js +2 -2
- package/src/Strategy/DashboardModule.d.ts +2 -2
- package/src/Strategy/DataChangeHistoryModule.js +2 -2
- package/src/Strategy/ExportModule.d.ts +2 -4
- package/src/Strategy/ExportModule.js +59 -62
- package/src/Strategy/FilterModule.d.ts +2 -2
- package/src/Strategy/FilterModule.js +4 -4
- package/src/Strategy/FormatColumnModule.js +6 -6
- package/src/Strategy/FreeTextColumnModule.js +1 -1
- package/src/Strategy/GridInfoModule.d.ts +2 -2
- package/src/Strategy/Interface/IModule.d.ts +2 -2
- package/src/Strategy/LayoutModule.d.ts +2 -2
- package/src/Strategy/LayoutModule.js +22 -9
- package/src/Strategy/PlusMinusModule.js +8 -9
- package/src/Strategy/SmartEditModule.d.ts +2 -2
- package/src/Strategy/SmartEditModule.js +8 -9
- package/src/Strategy/SystemStatusModule.d.ts +2 -2
- package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
- package/src/Utilities/Constants/GeneralConstants.js +2 -1
- package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
- package/src/Utilities/Constants/ModuleConstants.js +7 -7
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +9 -7
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +1 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +2 -2
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +1 -1
- package/src/Utilities/Helpers/DateHelper.d.ts +2 -2
- package/src/Utilities/Helpers/DateHelper.js +30 -20
- package/src/Utilities/Helpers/PreviewHelper.js +2 -2
- package/src/Utilities/Interface/Preview.d.ts +2 -1
- package/src/Utilities/ObjectFactory.d.ts +1 -1
- package/src/Utilities/ObjectFactory.js +14 -2
- package/src/Utilities/Services/DataService.js +5 -5
- package/src/Utilities/Services/LicenseService.js +16 -2
- package/src/Utilities/Services/ReportService.js +13 -12
- package/src/Utilities/Services/ValidationService.js +4 -5
- package/src/Utilities/runIfNotResolvedIn.d.ts +8 -0
- package/src/Utilities/runIfNotResolvedIn.js +23 -0
- package/src/View/AdaptableView.js +1 -1
- package/src/View/AdaptableViewFactory.d.ts +2 -1
- package/src/View/AdaptableViewFactory.js +2 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +7 -7
- package/src/View/Alert/AlertPopup.js +1 -1
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +19 -5
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +1 -1
- package/src/View/BulkUpdate/BulkUpdatePopup.d.ts +2 -0
- package/src/View/BulkUpdate/BulkUpdatePopup.js +6 -4
- package/src/View/BulkUpdate/BulkUpdateViewPanel.d.ts +2 -0
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +3 -1
- package/src/View/CalculatedColumn/CalculatedColumnPopup.js +1 -1
- package/src/View/CalculatedColumn/CalculatedColumnSummary.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -1
- package/src/View/CellSummary/CellSummaryViewPanel.js +2 -2
- package/src/View/Components/ColumnSelector/index.js +2 -2
- package/src/View/Components/FilterForm/FilterForm.d.ts +3 -51
- package/src/View/Components/FilterForm/FilterForm.js +57 -38
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +4 -1
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +18 -9
- package/src/View/Components/FilterForm/QuickFilterForm.d.ts +3 -43
- package/src/View/Components/FilterForm/QuickFilterForm.js +74 -35
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +3 -0
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +8 -0
- package/src/View/Components/NewScopeComponent.js +1 -1
- package/src/View/Components/Panels/FilterFormPanel.d.ts +1 -1
- package/src/View/Components/Panels/PanelWithImage.d.ts +423 -1
- package/src/View/Components/Popups/AdaptablePopup.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopupAlert.js +23 -10
- package/src/View/Components/PreviewResultsPanel.js +1 -1
- package/src/View/Components/RangesComponent.js +2 -2
- package/src/View/Components/Selectors/ColumnSelector.js +5 -5
- package/src/View/Components/Selectors/ColumnValueSelector.d.ts +10 -2
- package/src/View/Components/Selectors/ColumnValueSelector.js +47 -15
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +10 -11
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +2 -3
- package/src/View/ConditionalStyle/ConditionalStylePopup.js +1 -1
- package/src/View/ConditionalStyle/ConditionalStyleSummary.js +1 -1
- package/src/View/CustomSort/CustomSortEntityRow.d.ts +3 -1
- package/src/View/CustomSort/CustomSortEntityRow.js +3 -3
- package/src/View/CustomSort/CustomSortPopup.js +2 -2
- package/src/View/CustomSort/CustomSortSummary.js +3 -3
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +4 -4
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +24 -6
- package/src/View/Dashboard/CustomToolbarWrapper.js +2 -1
- package/src/View/Dashboard/Dashboard.js +2 -3
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +11 -10
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +6 -6
- package/src/View/Export/ExportCustomDestinationDialog.js +1 -1
- package/src/View/Export/ExportViewPanel.js +6 -6
- package/src/View/Filter/FilterSummary.js +2 -2
- package/src/View/FormatColumn/FormatColumnPopup.js +1 -1
- package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
- package/src/View/FreeTextColumn/FreeTextColumnPopup.js +4 -2
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +5 -3
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +1 -1
- package/src/View/GridInfo/ColumnInfoComponent.js +16 -16
- package/src/View/GridInfo/GridInfoPopup.js +4 -1
- package/src/View/GridInfo/GridOptionsComponent.js +1 -1
- package/src/View/Layout/LayoutViewPanel.js +2 -2
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +6 -6
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +2 -2
- package/src/View/Layout/Wizard/LayoutEditor/index.js +41 -41
- package/src/View/PlusMinus/PlusMinusPopup.js +1 -1
- package/src/View/PlusMinus/PlusMinusSummary.js +1 -1
- package/src/View/Query/QueryViewPanel.js +3 -3
- package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -3
- package/src/View/Schedule/SchedulePopup.js +3 -3
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +1 -1
- package/src/View/SmartEdit/SmartEditPopup.js +1 -1
- package/src/View/StateManagement/StateManagementPopup.d.ts +2 -12
- package/src/View/StateManagement/StateManagementPopup.js +21 -114
- package/src/View/StateManagement/StateManagementViewPanel.d.ts +5 -0
- package/src/View/StateManagement/StateManagementViewPanel.js +22 -0
- package/src/View/StateManagement/components/ClearButton.d.ts +6 -0
- package/src/View/StateManagement/components/ClearButton.js +9 -0
- package/src/View/StateManagement/components/ExportDropdown.d.ts +8 -0
- package/src/View/StateManagement/components/ExportDropdown.js +43 -0
- package/src/View/StateManagement/components/LoadButton.d.ts +7 -0
- package/src/View/StateManagement/components/LoadButton.js +38 -0
- package/src/View/StateManagement/handleExportState.d.ts +1 -0
- package/src/View/StateManagement/handleExportState.js +22 -0
- package/src/View/Theme/ThemeViewPanel.js +1 -1
- package/src/View/UIHelper.d.ts +2 -0
- package/src/View/UIHelper.js +10 -1
- package/src/agGrid/ActionColumnRenderer.d.ts +2 -1
- package/src/agGrid/ActionColumnRenderer.js +21 -4
- package/src/agGrid/Adaptable.d.ts +28 -11
- package/src/agGrid/Adaptable.js +326 -168
- package/src/agGrid/agGridHelper.d.ts +4 -4
- package/src/agGrid/agGridHelper.js +46 -46
- package/src/agGrid/agGridMenuHelper.d.ts +15 -13
- package/src/agGrid/agGridMenuHelper.js +55 -47
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +1 -1
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +11 -6
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +3 -2
- package/src/agGrid/editors/AdaptableDateEditor/index.js +16 -6
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +1 -0
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +7 -2
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +3 -3
- package/src/components/Dashboard/Dashboard.js +1 -1
- package/src/components/Datepicker/DatepickerContext.d.ts +2 -2
- package/src/components/Datepicker/index.js +9 -5
- package/src/components/DropdownButton/index.js +1 -1
- package/src/components/ExpressionEditor/index.js +7 -7
- package/src/components/Loader/Loader.d.ts +7 -0
- package/src/components/Loader/Loader.js +13 -0
- package/src/components/Loader/index.d.ts +2 -0
- package/src/components/Loader/index.js +7 -0
- package/src/components/Modal/index.d.ts +1 -1
- package/src/components/OverlayTrigger/index.js +3 -3
- package/src/components/OverlayTrigger/useAgGridClassName.d.ts +2 -0
- package/src/components/OverlayTrigger/{useVendorClassName.js → useAgGridClassName.js} +3 -3
- package/src/components/ProgressIndicator/ProgressIndicator.d.ts +2 -0
- package/src/components/ProgressIndicator/ProgressIndicator.js +54 -0
- package/src/components/icons/index.js +2 -0
- package/src/components/icons/upload.d.ts +3 -0
- package/src/components/icons/upload.js +8 -0
- package/src/metamodel/adaptable.metamodel.d.ts +176 -52
- package/src/metamodel/adaptable.metamodel.js +659 -366
- package/src/types.d.ts +5 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/PredefinedConfig/DeprecatedState.d.ts +0 -82
- package/src/PredefinedConfig/DeprecatedState.js +0 -5
- package/src/Utilities/Interface/ProgressIndicator.d.ts +0 -4
- package/src/View/Export/ProgressIndicator.d.ts +0 -6
- package/src/View/Export/ProgressIndicator.js +0 -25
- package/src/components/OverlayTrigger/useVendorClassName.d.ts +0 -2
|
@@ -14,12 +14,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
14
14
|
description: string;
|
|
15
15
|
uiLabel: string;
|
|
16
16
|
isOptional?: undefined;
|
|
17
|
+
reference?: undefined;
|
|
18
|
+
} | {
|
|
19
|
+
name: string;
|
|
20
|
+
kind: string;
|
|
21
|
+
description: string;
|
|
22
|
+
uiLabel: string;
|
|
23
|
+
isOptional: boolean;
|
|
24
|
+
reference: string;
|
|
17
25
|
} | {
|
|
18
26
|
name: string;
|
|
19
27
|
kind: string;
|
|
20
28
|
description: string;
|
|
21
29
|
uiLabel: string;
|
|
22
30
|
isOptional: boolean;
|
|
31
|
+
reference?: undefined;
|
|
23
32
|
})[];
|
|
24
33
|
};
|
|
25
34
|
ActionColumnButtonContext: {
|
|
@@ -40,6 +49,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
40
49
|
reference?: undefined;
|
|
41
50
|
})[];
|
|
42
51
|
};
|
|
52
|
+
ActionColumnSettings: {
|
|
53
|
+
name: string;
|
|
54
|
+
kind: string;
|
|
55
|
+
description: string;
|
|
56
|
+
properties: ({
|
|
57
|
+
name: string;
|
|
58
|
+
kind: string;
|
|
59
|
+
description: string;
|
|
60
|
+
uiLabel: string;
|
|
61
|
+
isOptional: boolean;
|
|
62
|
+
defaultValue: string;
|
|
63
|
+
} | {
|
|
64
|
+
name: string;
|
|
65
|
+
kind: string;
|
|
66
|
+
description: string;
|
|
67
|
+
uiLabel: string;
|
|
68
|
+
isOptional: boolean;
|
|
69
|
+
defaultValue?: undefined;
|
|
70
|
+
})[];
|
|
71
|
+
};
|
|
43
72
|
ActionHandler: {
|
|
44
73
|
name: string;
|
|
45
74
|
kind: string;
|
|
@@ -415,19 +444,13 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
415
444
|
name: string;
|
|
416
445
|
kind: string;
|
|
417
446
|
description: string;
|
|
418
|
-
properties:
|
|
447
|
+
properties: {
|
|
419
448
|
name: string;
|
|
420
449
|
kind: string;
|
|
421
450
|
description: string;
|
|
422
451
|
uiLabel: string;
|
|
423
452
|
reference: string;
|
|
424
|
-
}
|
|
425
|
-
name: string;
|
|
426
|
-
kind: string;
|
|
427
|
-
description: string;
|
|
428
|
-
uiLabel: string;
|
|
429
|
-
reference?: undefined;
|
|
430
|
-
})[];
|
|
453
|
+
}[];
|
|
431
454
|
};
|
|
432
455
|
AdaptableScope: {
|
|
433
456
|
name: string;
|
|
@@ -500,13 +523,13 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
500
523
|
kind: string;
|
|
501
524
|
description: string;
|
|
502
525
|
uiLabel: string;
|
|
503
|
-
isOptional
|
|
526
|
+
isOptional: boolean;
|
|
504
527
|
} | {
|
|
505
528
|
name: string;
|
|
506
529
|
kind: string;
|
|
507
530
|
description: string;
|
|
508
531
|
uiLabel: string;
|
|
509
|
-
isOptional
|
|
532
|
+
isOptional?: undefined;
|
|
510
533
|
})[];
|
|
511
534
|
};
|
|
512
535
|
AdaptableToolPanelDefinition: {
|
|
@@ -736,6 +759,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
736
759
|
uiLabel: string;
|
|
737
760
|
}[];
|
|
738
761
|
};
|
|
762
|
+
BulkUpdatePermittedValues: {
|
|
763
|
+
name: string;
|
|
764
|
+
kind: string;
|
|
765
|
+
description: string;
|
|
766
|
+
};
|
|
739
767
|
ButtonStyle: {
|
|
740
768
|
name: string;
|
|
741
769
|
kind: string;
|
|
@@ -804,14 +832,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
804
832
|
description: string;
|
|
805
833
|
uiLabel: string;
|
|
806
834
|
isOptional: boolean;
|
|
807
|
-
defaultValue
|
|
835
|
+
defaultValue?: undefined;
|
|
808
836
|
} | {
|
|
809
837
|
name: string;
|
|
810
838
|
kind: string;
|
|
811
839
|
description: string;
|
|
812
840
|
uiLabel: string;
|
|
813
841
|
isOptional: boolean;
|
|
814
|
-
defaultValue
|
|
842
|
+
defaultValue: string;
|
|
815
843
|
})[];
|
|
816
844
|
};
|
|
817
845
|
CalculatedColumnState: {
|
|
@@ -905,6 +933,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
905
933
|
kind: string;
|
|
906
934
|
description: string;
|
|
907
935
|
};
|
|
936
|
+
CellValuesList: {
|
|
937
|
+
name: string;
|
|
938
|
+
kind: string;
|
|
939
|
+
description: string;
|
|
940
|
+
};
|
|
908
941
|
ChartApi: {
|
|
909
942
|
name: string;
|
|
910
943
|
kind: string;
|
|
@@ -981,34 +1014,46 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
981
1014
|
reference: string;
|
|
982
1015
|
})[];
|
|
983
1016
|
};
|
|
984
|
-
|
|
1017
|
+
ColumnMenuContext: {
|
|
985
1018
|
name: string;
|
|
986
1019
|
kind: string;
|
|
987
1020
|
description: string;
|
|
988
|
-
properties: {
|
|
1021
|
+
properties: ({
|
|
989
1022
|
name: string;
|
|
990
1023
|
kind: string;
|
|
991
1024
|
description: string;
|
|
992
1025
|
uiLabel: string;
|
|
993
|
-
|
|
1026
|
+
reference: string;
|
|
1027
|
+
} | {
|
|
1028
|
+
name: string;
|
|
1029
|
+
kind: string;
|
|
1030
|
+
description: string;
|
|
1031
|
+
uiLabel: string;
|
|
1032
|
+
reference?: undefined;
|
|
1033
|
+
})[];
|
|
994
1034
|
};
|
|
995
|
-
|
|
1035
|
+
ColumnSort: {
|
|
996
1036
|
name: string;
|
|
997
1037
|
kind: string;
|
|
998
1038
|
description: string;
|
|
999
|
-
properties:
|
|
1039
|
+
properties: {
|
|
1000
1040
|
name: string;
|
|
1001
1041
|
kind: string;
|
|
1002
1042
|
description: string;
|
|
1003
1043
|
uiLabel: string;
|
|
1004
|
-
|
|
1005
|
-
|
|
1044
|
+
}[];
|
|
1045
|
+
};
|
|
1046
|
+
ColumnValuesComparer: {
|
|
1047
|
+
name: string;
|
|
1048
|
+
kind: string;
|
|
1049
|
+
description: string;
|
|
1050
|
+
properties: {
|
|
1006
1051
|
name: string;
|
|
1007
1052
|
kind: string;
|
|
1008
1053
|
description: string;
|
|
1009
1054
|
uiLabel: string;
|
|
1010
1055
|
reference: string;
|
|
1011
|
-
}
|
|
1056
|
+
}[];
|
|
1012
1057
|
};
|
|
1013
1058
|
ConditionalStyle: {
|
|
1014
1059
|
name: string;
|
|
@@ -1097,6 +1142,24 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1097
1142
|
defaultValue: string;
|
|
1098
1143
|
}[];
|
|
1099
1144
|
};
|
|
1145
|
+
ContextMenuContext: {
|
|
1146
|
+
name: string;
|
|
1147
|
+
kind: string;
|
|
1148
|
+
description: string;
|
|
1149
|
+
properties: ({
|
|
1150
|
+
name: string;
|
|
1151
|
+
kind: string;
|
|
1152
|
+
description: string;
|
|
1153
|
+
uiLabel: string;
|
|
1154
|
+
reference: string;
|
|
1155
|
+
} | {
|
|
1156
|
+
name: string;
|
|
1157
|
+
kind: string;
|
|
1158
|
+
description: string;
|
|
1159
|
+
uiLabel: string;
|
|
1160
|
+
reference?: undefined;
|
|
1161
|
+
})[];
|
|
1162
|
+
};
|
|
1100
1163
|
CustomDestination: {
|
|
1101
1164
|
name: string;
|
|
1102
1165
|
kind: string;
|
|
@@ -1155,6 +1218,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1155
1218
|
uiLabel: string;
|
|
1156
1219
|
}[];
|
|
1157
1220
|
};
|
|
1221
|
+
CustomSortPermittedValues: {
|
|
1222
|
+
name: string;
|
|
1223
|
+
kind: string;
|
|
1224
|
+
description: string;
|
|
1225
|
+
};
|
|
1158
1226
|
CustomSortState: {
|
|
1159
1227
|
name: string;
|
|
1160
1228
|
kind: string;
|
|
@@ -1367,8 +1435,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1367
1435
|
kind: string;
|
|
1368
1436
|
description: string;
|
|
1369
1437
|
uiLabel: string;
|
|
1370
|
-
isOptional?: undefined;
|
|
1371
1438
|
reference?: undefined;
|
|
1439
|
+
isOptional?: undefined;
|
|
1440
|
+
} | {
|
|
1441
|
+
name: string;
|
|
1442
|
+
kind: string;
|
|
1443
|
+
description: string;
|
|
1444
|
+
uiLabel: string;
|
|
1445
|
+
reference: string;
|
|
1446
|
+
isOptional?: undefined;
|
|
1372
1447
|
} | {
|
|
1373
1448
|
name: string;
|
|
1374
1449
|
kind: string;
|
|
@@ -1488,6 +1563,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1488
1563
|
defaultValue: string;
|
|
1489
1564
|
}[];
|
|
1490
1565
|
};
|
|
1566
|
+
EditLookUpPermittedValues: {
|
|
1567
|
+
name: string;
|
|
1568
|
+
kind: string;
|
|
1569
|
+
description: string;
|
|
1570
|
+
};
|
|
1491
1571
|
EditOptions: {
|
|
1492
1572
|
name: string;
|
|
1493
1573
|
kind: string;
|
|
@@ -1773,6 +1853,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1773
1853
|
defaultValue?: undefined;
|
|
1774
1854
|
})[];
|
|
1775
1855
|
};
|
|
1856
|
+
FilterPermittedValues: {
|
|
1857
|
+
name: string;
|
|
1858
|
+
kind: string;
|
|
1859
|
+
description: string;
|
|
1860
|
+
properties: {
|
|
1861
|
+
name: string;
|
|
1862
|
+
kind: string;
|
|
1863
|
+
description: string;
|
|
1864
|
+
uiLabel: string;
|
|
1865
|
+
isOptional: boolean;
|
|
1866
|
+
}[];
|
|
1867
|
+
};
|
|
1776
1868
|
FilterState: {
|
|
1777
1869
|
name: string;
|
|
1778
1870
|
kind: string;
|
|
@@ -1927,6 +2019,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1927
2019
|
uiLabel: string;
|
|
1928
2020
|
isOptional?: undefined;
|
|
1929
2021
|
defaultValue?: undefined;
|
|
2022
|
+
reference?: undefined;
|
|
1930
2023
|
} | {
|
|
1931
2024
|
name: string;
|
|
1932
2025
|
kind: string;
|
|
@@ -1934,12 +2027,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1934
2027
|
uiLabel: string;
|
|
1935
2028
|
isOptional: boolean;
|
|
1936
2029
|
defaultValue: string;
|
|
2030
|
+
reference?: undefined;
|
|
2031
|
+
} | {
|
|
2032
|
+
name: string;
|
|
2033
|
+
kind: string;
|
|
2034
|
+
description: string;
|
|
2035
|
+
uiLabel: string;
|
|
2036
|
+
isOptional: boolean;
|
|
2037
|
+
defaultValue?: undefined;
|
|
2038
|
+
reference?: undefined;
|
|
1937
2039
|
} | {
|
|
1938
2040
|
name: string;
|
|
1939
2041
|
kind: string;
|
|
1940
2042
|
description: string;
|
|
1941
2043
|
uiLabel: string;
|
|
1942
2044
|
isOptional: boolean;
|
|
2045
|
+
reference: string;
|
|
1943
2046
|
defaultValue?: undefined;
|
|
1944
2047
|
})[];
|
|
1945
2048
|
};
|
|
@@ -1954,6 +2057,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1954
2057
|
uiLabel: string;
|
|
1955
2058
|
}[];
|
|
1956
2059
|
};
|
|
2060
|
+
FreeTextColumnSettings: {
|
|
2061
|
+
name: string;
|
|
2062
|
+
kind: string;
|
|
2063
|
+
description: string;
|
|
2064
|
+
};
|
|
1957
2065
|
FreeTextColumnState: {
|
|
1958
2066
|
name: string;
|
|
1959
2067
|
kind: string;
|
|
@@ -2099,22 +2207,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2099
2207
|
kind: string;
|
|
2100
2208
|
description: string;
|
|
2101
2209
|
uiLabel: string;
|
|
2210
|
+
reference: string;
|
|
2102
2211
|
isOptional?: undefined;
|
|
2103
|
-
reference?: undefined;
|
|
2104
2212
|
} | {
|
|
2105
2213
|
name: string;
|
|
2106
2214
|
kind: string;
|
|
2107
2215
|
description: string;
|
|
2108
2216
|
uiLabel: string;
|
|
2109
|
-
isOptional: boolean;
|
|
2110
2217
|
reference?: undefined;
|
|
2218
|
+
isOptional?: undefined;
|
|
2111
2219
|
} | {
|
|
2112
2220
|
name: string;
|
|
2113
2221
|
kind: string;
|
|
2114
2222
|
description: string;
|
|
2115
2223
|
uiLabel: string;
|
|
2116
|
-
|
|
2117
|
-
|
|
2224
|
+
isOptional: boolean;
|
|
2225
|
+
reference?: undefined;
|
|
2118
2226
|
})[];
|
|
2119
2227
|
};
|
|
2120
2228
|
GridDataChangedInfo: {
|
|
@@ -2356,24 +2464,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2356
2464
|
reference: string;
|
|
2357
2465
|
})[];
|
|
2358
2466
|
};
|
|
2359
|
-
MenuContext: {
|
|
2360
|
-
name: string;
|
|
2361
|
-
kind: string;
|
|
2362
|
-
description: string;
|
|
2363
|
-
properties: ({
|
|
2364
|
-
name: string;
|
|
2365
|
-
kind: string;
|
|
2366
|
-
description: string;
|
|
2367
|
-
uiLabel: string;
|
|
2368
|
-
reference: string;
|
|
2369
|
-
} | {
|
|
2370
|
-
name: string;
|
|
2371
|
-
kind: string;
|
|
2372
|
-
description: string;
|
|
2373
|
-
uiLabel: string;
|
|
2374
|
-
reference?: undefined;
|
|
2375
|
-
})[];
|
|
2376
|
-
};
|
|
2377
2467
|
MenuOptions: {
|
|
2378
2468
|
name: string;
|
|
2379
2469
|
kind: string;
|
|
@@ -2452,6 +2542,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2452
2542
|
gridInfo: string;
|
|
2453
2543
|
defaultValue: string;
|
|
2454
2544
|
reference: string;
|
|
2545
|
+
} | {
|
|
2546
|
+
name: string;
|
|
2547
|
+
kind: string;
|
|
2548
|
+
description: string;
|
|
2549
|
+
uiLabel: string;
|
|
2550
|
+
isOptional: boolean;
|
|
2551
|
+
defaultValue: string;
|
|
2552
|
+
gridInfo?: undefined;
|
|
2553
|
+
reference?: undefined;
|
|
2455
2554
|
})[];
|
|
2456
2555
|
};
|
|
2457
2556
|
NumberFormatterOptions: {
|
|
@@ -2531,6 +2630,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2531
2630
|
kind: string;
|
|
2532
2631
|
description: string;
|
|
2533
2632
|
};
|
|
2633
|
+
PermittedValues: {
|
|
2634
|
+
name: string;
|
|
2635
|
+
kind: string;
|
|
2636
|
+
description: string;
|
|
2637
|
+
properties: {
|
|
2638
|
+
name: string;
|
|
2639
|
+
kind: string;
|
|
2640
|
+
description: string;
|
|
2641
|
+
uiLabel: string;
|
|
2642
|
+
isOptional: boolean;
|
|
2643
|
+
}[];
|
|
2644
|
+
};
|
|
2534
2645
|
PluginsApi: {
|
|
2535
2646
|
name: string;
|
|
2536
2647
|
kind: string;
|
|
@@ -2590,21 +2701,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2590
2701
|
name: string;
|
|
2591
2702
|
kind: string;
|
|
2592
2703
|
description: string;
|
|
2593
|
-
properties:
|
|
2594
|
-
name: string;
|
|
2595
|
-
kind: string;
|
|
2596
|
-
description: string;
|
|
2597
|
-
uiLabel: string;
|
|
2598
|
-
isOptional: boolean;
|
|
2599
|
-
reference?: undefined;
|
|
2600
|
-
} | {
|
|
2704
|
+
properties: {
|
|
2601
2705
|
name: string;
|
|
2602
2706
|
kind: string;
|
|
2603
2707
|
description: string;
|
|
2604
2708
|
uiLabel: string;
|
|
2605
2709
|
isOptional: boolean;
|
|
2606
2710
|
reference: string;
|
|
2607
|
-
}
|
|
2711
|
+
}[];
|
|
2608
2712
|
};
|
|
2609
2713
|
PredicateApi: {
|
|
2610
2714
|
name: string;
|
|
@@ -3025,6 +3129,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3025
3129
|
isOptional: boolean;
|
|
3026
3130
|
}[];
|
|
3027
3131
|
};
|
|
3132
|
+
SpecialColumnSettings: {
|
|
3133
|
+
name: string;
|
|
3134
|
+
kind: string;
|
|
3135
|
+
description: string;
|
|
3136
|
+
properties: ({
|
|
3137
|
+
name: string;
|
|
3138
|
+
kind: string;
|
|
3139
|
+
description: string;
|
|
3140
|
+
uiLabel: string;
|
|
3141
|
+
isOptional: boolean;
|
|
3142
|
+
defaultValue: string;
|
|
3143
|
+
} | {
|
|
3144
|
+
name: string;
|
|
3145
|
+
kind: string;
|
|
3146
|
+
description: string;
|
|
3147
|
+
uiLabel: string;
|
|
3148
|
+
isOptional: boolean;
|
|
3149
|
+
defaultValue?: undefined;
|
|
3150
|
+
})[];
|
|
3151
|
+
};
|
|
3028
3152
|
StateOptions: {
|
|
3029
3153
|
name: string;
|
|
3030
3154
|
kind: string;
|