@adaptabletools/adaptable 11.3.0 → 12.0.0-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/base.css +568 -273
- package/bundle.cjs.js +114 -114
- package/index.css +642 -270
- package/package.json +2 -2
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -0
- package/src/AdaptableInterfaces/IAdaptable.d.ts +4 -1
- package/src/AdaptableOptions/ActionOptions.d.ts +1 -0
- package/src/AdaptableOptions/{FormatColumnOptions.js → ActionOptions.js} +0 -0
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +5 -0
- package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -10
- 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/{MasterDetailAgGridPluginOptions.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 +6 -7
- package/src/AdaptableOptions/EntitlementOptions.d.ts +7 -1
- package/src/AdaptableOptions/ExportOptions.d.ts +9 -8
- package/src/AdaptableOptions/FilterOptions.d.ts +6 -1
- package/src/AdaptableOptions/GeneralOptions.d.ts +25 -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 +88 -57
- package/src/Api/AdaptableApi.d.ts +6 -3
- package/src/Api/ColumnApi.d.ts +9 -4
- 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 +26 -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/SearchChanged.d.ts +4 -5
- package/src/Api/ExportApi.d.ts +2 -2
- package/src/Api/FilterApi.d.ts +28 -36
- package/src/Api/GridApi.d.ts +1 -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 +4 -4
- package/src/Api/Implementation/ColumnApiImpl.js +17 -16
- 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/ExportApiImpl.d.ts +2 -2
- package/src/Api/Implementation/FilterApiImpl.d.ts +11 -11
- package/src/Api/Implementation/FilterApiImpl.js +59 -72
- package/src/Api/Implementation/FormatColumnApiImpl.js +2 -2
- package/src/Api/Implementation/GridApiImpl.d.ts +1 -1
- package/src/Api/Implementation/GridApiImpl.js +7 -3
- package/src/Api/Implementation/InternalApiImpl.d.ts +3 -2
- package/src/Api/Implementation/InternalApiImpl.js +14 -3
- package/src/Api/Implementation/LayoutApiImpl.d.ts +3 -0
- package/src/Api/Implementation/LayoutApiImpl.js +20 -0
- package/src/Api/Implementation/PredicateApiImpl.d.ts +2 -0
- package/src/Api/Implementation/PredicateApiImpl.js +19 -1
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +3 -1
- package/src/Api/Implementation/SmartEditApiImpl.js +6 -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 +4 -4
- package/src/Api/InternalApi.d.ts +3 -2
- package/src/Api/LayoutApi.d.ts +16 -0
- package/src/Api/PredicateApi.d.ts +7 -0
- package/src/Api/SmartEditApi.d.ts +8 -2
- 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/Common/AdaptableButton.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +5 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +18 -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/FormContext.d.ts +8 -0
- package/src/PredefinedConfig/Common/FormContext.js +2 -0
- 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 +3 -0
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +47 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +134 -1
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +3 -2
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +22 -0
- package/src/Redux/ActionsReducers/SystemRedux.js +39 -1
- package/src/Redux/Store/AdaptableStore.js +37 -39
- package/src/Strategy/AdaptableModuleBase.js +1 -2
- package/src/Strategy/AlertModule.d.ts +11 -0
- package/src/Strategy/AlertModule.js +14 -0
- package/src/Strategy/BulkUpdateModule.js +3 -4
- package/src/Strategy/CellSummaryModule.d.ts +3 -0
- package/src/Strategy/CellSummaryModule.js +29 -16
- 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 +26 -20
- package/src/Strategy/FlashingCellModule.d.ts +1 -1
- package/src/Strategy/FlashingCellModule.js +2 -2
- package/src/Strategy/Interface/IModule.d.ts +3 -1
- package/src/Strategy/LayoutModule.js +25 -2
- package/src/Strategy/PlusMinusModule.js +1 -4
- package/src/Strategy/SmartEditModule.js +3 -3
- 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 +8 -2
- package/src/Utilities/Constants/GeneralConstants.js +8 -2
- package/src/Utilities/Constants/ModuleConstants.d.ts +1 -1
- package/src/Utilities/Constants/ModuleConstants.js +2 -2
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +17 -15
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +3 -1
- package/src/Utilities/ObjectFactory.d.ts +3 -6
- package/src/Utilities/ObjectFactory.js +3 -7
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +6 -7
- package/src/Utilities/Services/EntitlementService.js +7 -1
- package/src/Utilities/Services/ModuleService.js +1 -1
- package/src/Utilities/Services/ReportService.js +2 -3
- package/src/Utilities/Services/RowEditService.d.ts +1 -0
- package/src/Utilities/Services/RowEditService.js +34 -2
- 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/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 +18 -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/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/AlertBehaviourWizardSection.js +1 -1
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +3 -3
- 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/BulkUpdate/BulkUpdateViewPanel.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +3 -4
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +5 -6
- package/src/View/CellSummary/CellSummaryDetails.js +4 -4
- 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 +1 -1
- package/src/View/Components/FilterForm/FilterForm.js +10 -8
- package/src/View/Components/FilterForm/QuickFilterForm.d.ts +1 -1
- package/src/View/Components/FilterForm/QuickFilterForm.js +5 -4
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
- 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/PreviewResultsPanel.js +3 -3
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -2
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -9
- 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/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/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.d.ts +5 -5
- package/src/View/Filter/FilterSummary.js +5 -4
- package/src/View/Filter/FilterViewPanel.d.ts +4 -4
- package/src/View/Filter/FilterViewPanel.js +10 -13
- 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 +2 -2
- 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/Layout/LayoutStatusBarSubPanelPopover.js +6 -24
- package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +1 -0
- 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/SmartEdit/SmartEditPopup.js +2 -2
- package/src/View/SmartEdit/SmartEditViewPanel.js +2 -2
- 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 +10 -10
- 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/ActionColumnRenderer.js +3 -2
- package/src/agGrid/Adaptable.d.ts +4 -2
- package/src/agGrid/Adaptable.js +99 -58
- package/src/agGrid/FilterWrapper.js +1 -1
- package/src/agGrid/agGridHelper.d.ts +7 -8
- package/src/agGrid/agGridHelper.js +68 -86
- package/src/agGrid/agGridMenuHelper.js +4 -1
- package/src/agGrid/rowEditIcons.d.ts +1 -0
- package/src/agGrid/rowEditIcons.js +2 -1
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +3 -2
- package/src/components/Dashboard/DashboardToolbar.js +2 -2
- package/src/components/InfiniteTable/index.js +1 -0
- package/src/components/List/GridList/index.js +1 -1
- package/src/components/SelectList.d.ts +10 -0
- package/src/components/SelectList.js +9 -0
- package/src/components/WindowModal/WindowModal.js +13 -7
- package/src/components/icons/{data-source.d.ts → add-row.d.ts} +0 -0
- package/src/components/icons/add-row.js +7 -0
- package/src/components/icons/data-set.d.ts +3 -0
- package/src/components/icons/{data-source.js → data-set.js} +0 -0
- package/src/components/icons/index.js +4 -2
- package/src/metamodel/adaptable.metamodel.d.ts +163 -78
- package/src/metamodel/adaptable.metamodel.js +402 -322
- package/src/types.d.ts +16 -12
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/FormatColumnOptions.d.ts +0 -10
- 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/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
|
@@ -118,6 +118,52 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
118
118
|
"kind": "TypeAlias",
|
|
119
119
|
"description": "Handles a Form Button Action"
|
|
120
120
|
},
|
|
121
|
+
"ActionOptions": {
|
|
122
|
+
"name": "ActionOptions",
|
|
123
|
+
"kind": "Interface",
|
|
124
|
+
"description": "Options related to Action Columns and Buttons in Adaptable.",
|
|
125
|
+
"properties": [
|
|
126
|
+
{
|
|
127
|
+
"name": "actionColumns",
|
|
128
|
+
"kind": "unknown",
|
|
129
|
+
"description": "Columns which contain an AdapTable Button - used for performing Actions",
|
|
130
|
+
"uiLabel": "Action Columns",
|
|
131
|
+
"isOptional": true
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
"name": "actionRowButtons",
|
|
135
|
+
"kind": "unknown",
|
|
136
|
+
"description": "Action buttons to display for each row.",
|
|
137
|
+
"uiLabel": "Action Row Buttons",
|
|
138
|
+
"isOptional": true,
|
|
139
|
+
"defaultValue": "undefined"
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
"name": "actionRowButtonsPosition",
|
|
143
|
+
"kind": "unknown",
|
|
144
|
+
"description": "Position of supplied Action Buttons",
|
|
145
|
+
"uiLabel": "Action Row Buttons Position",
|
|
146
|
+
"isOptional": true,
|
|
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"
|
|
164
|
+
}
|
|
165
|
+
]
|
|
166
|
+
},
|
|
121
167
|
"AdaptableAlert": {
|
|
122
168
|
"name": "AdaptableAlert",
|
|
123
169
|
"kind": "TypeAlias",
|
|
@@ -250,11 +296,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
250
296
|
"reference": "DataChangeHistoryApi"
|
|
251
297
|
},
|
|
252
298
|
{
|
|
253
|
-
"name": "
|
|
299
|
+
"name": "dataSetApi",
|
|
254
300
|
"kind": "REFERENCE",
|
|
255
|
-
"description": "Provides access to
|
|
256
|
-
"uiLabel": "Data
|
|
257
|
-
"reference": "
|
|
301
|
+
"description": "Provides access to Data Sets",
|
|
302
|
+
"uiLabel": "Data Set Api",
|
|
303
|
+
"reference": "DataSetApi"
|
|
258
304
|
},
|
|
259
305
|
{
|
|
260
306
|
"name": "destroy",
|
|
@@ -317,6 +363,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
317
363
|
"description": "Cleanup method that only cleans up this api instance (clears event listeners and sets every property to null), but does not destroy the Adaptable instance.",
|
|
318
364
|
"uiLabel": "Internal Destroy Self"
|
|
319
365
|
},
|
|
366
|
+
{
|
|
367
|
+
"name": "isDestroyed",
|
|
368
|
+
"kind": "unknown",
|
|
369
|
+
"description": "Whether the Adaptable instance has been destroyed",
|
|
370
|
+
"uiLabel": "Is Destroyed"
|
|
371
|
+
},
|
|
320
372
|
{
|
|
321
373
|
"name": "layoutApi",
|
|
322
374
|
"kind": "REFERENCE",
|
|
@@ -453,7 +505,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
453
505
|
{
|
|
454
506
|
"name": "buttonStyle",
|
|
455
507
|
"kind": "unknown",
|
|
456
|
-
"description": "Style for Button - can be object or function
|
|
508
|
+
"description": "Style for Button - can be object or function that provides a `ButtonStyle` object",
|
|
457
509
|
"uiLabel": "Button Style",
|
|
458
510
|
"isOptional": true
|
|
459
511
|
},
|
|
@@ -473,11 +525,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
473
525
|
},
|
|
474
526
|
{
|
|
475
527
|
"name": "icon",
|
|
476
|
-
"kind": "
|
|
477
|
-
"description": "Icon
|
|
528
|
+
"kind": "unknown",
|
|
529
|
+
"description": "Icon for Button - can be object or function that provides a `AdaptableIcon` object",
|
|
478
530
|
"uiLabel": "Icon",
|
|
479
|
-
"isOptional": true
|
|
480
|
-
"reference": "AdaptableIcon"
|
|
531
|
+
"isOptional": true
|
|
481
532
|
},
|
|
482
533
|
{
|
|
483
534
|
"name": "label",
|
|
@@ -680,9 +731,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
680
731
|
},
|
|
681
732
|
{
|
|
682
733
|
"name": "dataType",
|
|
683
|
-
"kind": "
|
|
734
|
+
"kind": "REFERENCE",
|
|
684
735
|
"description": "DataType of the column",
|
|
685
|
-
"uiLabel": "Data Type"
|
|
736
|
+
"uiLabel": "Data Type",
|
|
737
|
+
"reference": "AdaptableColumnDataType"
|
|
686
738
|
},
|
|
687
739
|
{
|
|
688
740
|
"name": "friendlyName",
|
|
@@ -692,6 +744,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
692
744
|
}
|
|
693
745
|
]
|
|
694
746
|
},
|
|
747
|
+
"AdaptableColumnDataType": {
|
|
748
|
+
"name": "AdaptableColumnDataType",
|
|
749
|
+
"kind": "TypeAlias",
|
|
750
|
+
"description": "Type of data stored in an Adaptable Column"
|
|
751
|
+
},
|
|
695
752
|
"AdaptableComparerFunction": {
|
|
696
753
|
"name": "AdaptableComparerFunction",
|
|
697
754
|
"kind": "TypeAlias",
|
|
@@ -1061,6 +1118,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1061
1118
|
"gridInfo": "item",
|
|
1062
1119
|
"defaultValue": "false"
|
|
1063
1120
|
},
|
|
1121
|
+
{
|
|
1122
|
+
"name": "columnOptions",
|
|
1123
|
+
"kind": "REFERENCE",
|
|
1124
|
+
"description": "Options for managing Columns",
|
|
1125
|
+
"uiLabel": "Column Options",
|
|
1126
|
+
"isOptional": true,
|
|
1127
|
+
"reference": "ColumnOptions"
|
|
1128
|
+
},
|
|
1064
1129
|
{
|
|
1065
1130
|
"name": "containerOptions",
|
|
1066
1131
|
"kind": "REFERENCE",
|
|
@@ -1069,13 +1134,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1069
1134
|
"isOptional": true,
|
|
1070
1135
|
"reference": "ContainerOptions"
|
|
1071
1136
|
},
|
|
1072
|
-
{
|
|
1073
|
-
"name": "customPredicateDefs",
|
|
1074
|
-
"kind": "unknown",
|
|
1075
|
-
"description": "Predicate definitions provided by developers at Design-Time",
|
|
1076
|
-
"uiLabel": "Custom Predicate Defs",
|
|
1077
|
-
"isOptional": true
|
|
1078
|
-
},
|
|
1079
1137
|
{
|
|
1080
1138
|
"name": "dashboardOptions",
|
|
1081
1139
|
"kind": "REFERENCE",
|
|
@@ -1139,15 +1197,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1139
1197
|
"gridInfo": "container",
|
|
1140
1198
|
"reference": "FlashingCellOptions"
|
|
1141
1199
|
},
|
|
1142
|
-
{
|
|
1143
|
-
"name": "formatColumnOptions",
|
|
1144
|
-
"kind": "REFERENCE",
|
|
1145
|
-
"description": "Options for managing format columns",
|
|
1146
|
-
"uiLabel": "Format Column Options",
|
|
1147
|
-
"isOptional": true,
|
|
1148
|
-
"gridInfo": "container",
|
|
1149
|
-
"reference": "unknown"
|
|
1150
|
-
},
|
|
1151
1200
|
{
|
|
1152
1201
|
"name": "generalOptions",
|
|
1153
1202
|
"kind": "REFERENCE",
|
|
@@ -1411,6 +1460,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1411
1460
|
"gridInfo": "item",
|
|
1412
1461
|
"defaultValue": "false"
|
|
1413
1462
|
},
|
|
1463
|
+
{
|
|
1464
|
+
"name": "customPredicateDefs",
|
|
1465
|
+
"kind": "unknown",
|
|
1466
|
+
"description": "Definitions for Custom provided Predicates",
|
|
1467
|
+
"uiLabel": "Custom Predicate Defs",
|
|
1468
|
+
"isOptional": true
|
|
1469
|
+
},
|
|
1414
1470
|
{
|
|
1415
1471
|
"name": "expressionOptions",
|
|
1416
1472
|
"kind": "REFERENCE",
|
|
@@ -1487,10 +1543,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1487
1543
|
"uiLabel": "Current Query"
|
|
1488
1544
|
},
|
|
1489
1545
|
{
|
|
1490
|
-
"name": "
|
|
1546
|
+
"name": "dataSet",
|
|
1491
1547
|
"kind": "unknown",
|
|
1492
|
-
"description": "Current
|
|
1493
|
-
"uiLabel": "Data
|
|
1548
|
+
"description": "Current DataSet (if one selected)",
|
|
1549
|
+
"uiLabel": "Data Set"
|
|
1494
1550
|
},
|
|
1495
1551
|
{
|
|
1496
1552
|
"name": "queryAST",
|
|
@@ -1998,6 +2054,28 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1998
2054
|
"kind": "TypeAlias",
|
|
1999
2055
|
"description": "Form to show in an Alert"
|
|
2000
2056
|
},
|
|
2057
|
+
"AlertMessageContext": {
|
|
2058
|
+
"name": "AlertMessageContext",
|
|
2059
|
+
"kind": "Interface",
|
|
2060
|
+
"description": "Context used for creating bespoke Alert messages",
|
|
2061
|
+
"properties": [
|
|
2062
|
+
{
|
|
2063
|
+
"name": "alertDefinition",
|
|
2064
|
+
"kind": "REFERENCE",
|
|
2065
|
+
"description": "Current Alert Definition",
|
|
2066
|
+
"uiLabel": "Alert Definition",
|
|
2067
|
+
"reference": "AlertDefinition"
|
|
2068
|
+
},
|
|
2069
|
+
{
|
|
2070
|
+
"name": "cellDataChangedInfo",
|
|
2071
|
+
"kind": "REFERENCE",
|
|
2072
|
+
"description": "Data change that might have triggered the Alert",
|
|
2073
|
+
"uiLabel": "Cell Data Changed Info",
|
|
2074
|
+
"isOptional": true,
|
|
2075
|
+
"reference": "CellDataChangedInfo"
|
|
2076
|
+
}
|
|
2077
|
+
]
|
|
2078
|
+
},
|
|
2001
2079
|
"AlertOptions": {
|
|
2002
2080
|
"name": "AlertOptions",
|
|
2003
2081
|
"kind": "Interface",
|
|
@@ -3067,6 +3145,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3067
3145
|
"description": "Is Column an Action Column",
|
|
3068
3146
|
"uiLabel": "Is Action Column"
|
|
3069
3147
|
},
|
|
3148
|
+
{
|
|
3149
|
+
"name": "isActionRowButtonColumn",
|
|
3150
|
+
"kind": "function",
|
|
3151
|
+
"description": "Checks if a column is a ActionRowButton column (see UserInterfaceOptions.ActionOptions)",
|
|
3152
|
+
"uiLabel": "Is Action Row Button Column"
|
|
3153
|
+
},
|
|
3070
3154
|
{
|
|
3071
3155
|
"name": "isAutoPivotColumn",
|
|
3072
3156
|
"kind": "function",
|
|
@@ -3204,6 +3288,26 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3204
3288
|
}
|
|
3205
3289
|
]
|
|
3206
3290
|
},
|
|
3291
|
+
"ColumnFriendlyNameContext": {
|
|
3292
|
+
"name": "ColumnFriendlyNameContext",
|
|
3293
|
+
"kind": "Interface",
|
|
3294
|
+
"description": "Context used when setting a Column Friendly Name",
|
|
3295
|
+
"properties": [
|
|
3296
|
+
{
|
|
3297
|
+
"name": "agColumn",
|
|
3298
|
+
"kind": "REFERENCE",
|
|
3299
|
+
"description": "AG Grid ColDef for the Column",
|
|
3300
|
+
"uiLabel": "Ag Column",
|
|
3301
|
+
"reference": "unknown"
|
|
3302
|
+
},
|
|
3303
|
+
{
|
|
3304
|
+
"name": "colId",
|
|
3305
|
+
"kind": "string",
|
|
3306
|
+
"description": "Id of the Column",
|
|
3307
|
+
"uiLabel": "Col Id"
|
|
3308
|
+
}
|
|
3309
|
+
]
|
|
3310
|
+
},
|
|
3207
3311
|
"ColumnMenuContext": {
|
|
3208
3312
|
"name": "ColumnMenuContext",
|
|
3209
3313
|
"kind": "Interface",
|
|
@@ -3231,6 +3335,54 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3231
3335
|
}
|
|
3232
3336
|
]
|
|
3233
3337
|
},
|
|
3338
|
+
"ColumnOptions": {
|
|
3339
|
+
"name": "ColumnOptions",
|
|
3340
|
+
"kind": "Interface",
|
|
3341
|
+
"description": "Options related to managing Columns in Adaptable.",
|
|
3342
|
+
"properties": [
|
|
3343
|
+
{
|
|
3344
|
+
"name": "autoOrderGroupedColumns",
|
|
3345
|
+
"kind": "boolean",
|
|
3346
|
+
"description": "Order Grouped Column automatically, deriving from Adaptable State if available (CustomSort or Layout ColumnSort)",
|
|
3347
|
+
"uiLabel": "Auto Order Grouped Columns",
|
|
3348
|
+
"isOptional": true,
|
|
3349
|
+
"gridInfo": "item",
|
|
3350
|
+
"defaultValue": "true"
|
|
3351
|
+
},
|
|
3352
|
+
{
|
|
3353
|
+
"name": "columnFriendlyName",
|
|
3354
|
+
"kind": "unknown",
|
|
3355
|
+
"description": "Provide an alternative Friendly Name for a Column",
|
|
3356
|
+
"uiLabel": "Column Friendly Name",
|
|
3357
|
+
"isOptional": true
|
|
3358
|
+
},
|
|
3359
|
+
{
|
|
3360
|
+
"name": "columnTypes",
|
|
3361
|
+
"kind": "unknown",
|
|
3362
|
+
"description": "Optional list of Column Types - used primarily for Special Columns",
|
|
3363
|
+
"uiLabel": "Column Types",
|
|
3364
|
+
"isOptional": true
|
|
3365
|
+
},
|
|
3366
|
+
{
|
|
3367
|
+
"name": "hideColumnWhenGrouped",
|
|
3368
|
+
"kind": "boolean",
|
|
3369
|
+
"description": "Automatically removes a column from the grid when it becomes Row Grouped",
|
|
3370
|
+
"uiLabel": "Hide Column When Grouped",
|
|
3371
|
+
"isOptional": true,
|
|
3372
|
+
"gridInfo": "item",
|
|
3373
|
+
"defaultValue": "false"
|
|
3374
|
+
},
|
|
3375
|
+
{
|
|
3376
|
+
"name": "showMissingColumnsWarning",
|
|
3377
|
+
"kind": "boolean",
|
|
3378
|
+
"description": "Show warning if AdapTable cannot find a column",
|
|
3379
|
+
"uiLabel": "Show Missing Columns Warning",
|
|
3380
|
+
"isOptional": true,
|
|
3381
|
+
"gridInfo": "item",
|
|
3382
|
+
"defaultValue": "true"
|
|
3383
|
+
}
|
|
3384
|
+
]
|
|
3385
|
+
},
|
|
3234
3386
|
"ColumnSort": {
|
|
3235
3387
|
"name": "ColumnSort",
|
|
3236
3388
|
"kind": "Interface",
|
|
@@ -3348,6 +3500,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3348
3500
|
"description": "Adds new Conditional Style to State",
|
|
3349
3501
|
"uiLabel": "Add Conditional Style"
|
|
3350
3502
|
},
|
|
3503
|
+
{
|
|
3504
|
+
"name": "deleteConditionalStyle",
|
|
3505
|
+
"kind": "function",
|
|
3506
|
+
"description": "Deletes a Conditional Style",
|
|
3507
|
+
"uiLabel": "Delete Conditional Style"
|
|
3508
|
+
},
|
|
3509
|
+
{
|
|
3510
|
+
"name": "deleteConditionalStyles",
|
|
3511
|
+
"kind": "function",
|
|
3512
|
+
"description": "Deletes Conditional Styles",
|
|
3513
|
+
"uiLabel": "Delete Conditional Styles"
|
|
3514
|
+
},
|
|
3351
3515
|
{
|
|
3352
3516
|
"name": "editConditionalStyle",
|
|
3353
3517
|
"kind": "function",
|
|
@@ -3554,12 +3718,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3554
3718
|
"description": "Returns Dashboard section of Adaptable State",
|
|
3555
3719
|
"uiLabel": "Get Dashboard State"
|
|
3556
3720
|
},
|
|
3557
|
-
{
|
|
3558
|
-
"name": "getDataSourceState",
|
|
3559
|
-
"kind": "function",
|
|
3560
|
-
"description": "Returns Data Source section of Adaptable State",
|
|
3561
|
-
"uiLabel": "Get Data Source State"
|
|
3562
|
-
},
|
|
3563
3721
|
{
|
|
3564
3722
|
"name": "getDescriptionForModule",
|
|
3565
3723
|
"kind": "function",
|
|
@@ -3572,12 +3730,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3572
3730
|
"description": "Returns Export section of Adaptable State",
|
|
3573
3731
|
"uiLabel": "Get Export State"
|
|
3574
3732
|
},
|
|
3575
|
-
{
|
|
3576
|
-
"name": "getFilterState",
|
|
3577
|
-
"kind": "function",
|
|
3578
|
-
"description": "Returns Filter section of Adaptable State",
|
|
3579
|
-
"uiLabel": "Get Filter State"
|
|
3580
|
-
},
|
|
3581
3733
|
{
|
|
3582
3734
|
"name": "getFormatColumnState",
|
|
3583
3735
|
"kind": "function",
|
|
@@ -4382,18 +4534,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4382
4534
|
"kind": "Interface",
|
|
4383
4535
|
"description": "Functions relating to the AdapTable Dashboard.",
|
|
4384
4536
|
"properties": [
|
|
4385
|
-
{
|
|
4386
|
-
"name": "addCustomToolbarButtons",
|
|
4387
|
-
"kind": "function",
|
|
4388
|
-
"description": "Adds Toolbar Buttons to current collection in Custom Toolbar",
|
|
4389
|
-
"uiLabel": "Add Custom Toolbar Buttons"
|
|
4390
|
-
},
|
|
4391
|
-
{
|
|
4392
|
-
"name": "clearCustomToolbarButtons",
|
|
4393
|
-
"kind": "function",
|
|
4394
|
-
"description": "Clears all Toolbar Buttons from Custom Toolbar",
|
|
4395
|
-
"uiLabel": "Clear Custom Toolbar Buttons"
|
|
4396
|
-
},
|
|
4397
4537
|
{
|
|
4398
4538
|
"name": "collapseDashboard",
|
|
4399
4539
|
"kind": "function",
|
|
@@ -4538,6 +4678,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4538
4678
|
"description": "Checks if a given Toolbar is visible",
|
|
4539
4679
|
"uiLabel": "Is Toolbar Visible"
|
|
4540
4680
|
},
|
|
4681
|
+
{
|
|
4682
|
+
"name": "refreshDashboard",
|
|
4683
|
+
"kind": "function",
|
|
4684
|
+
"description": "Refreshes the entire Dashboard section, including Toolbars and Buttons; this is particularly relevant for AdapTable built-in elements, as framework components are dependent on the framework specific change detection mechanisms",
|
|
4685
|
+
"uiLabel": "Refresh Dashboard"
|
|
4686
|
+
},
|
|
4541
4687
|
{
|
|
4542
4688
|
"name": "setActiveTab",
|
|
4543
4689
|
"kind": "function",
|
|
@@ -4550,12 +4696,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4550
4696
|
"description": "Sets Active Tab in Dashboard",
|
|
4551
4697
|
"uiLabel": "Set Active Tab Index"
|
|
4552
4698
|
},
|
|
4553
|
-
{
|
|
4554
|
-
"name": "setCustomToolbarButtons",
|
|
4555
|
-
"kind": "function",
|
|
4556
|
-
"description": "Replaces Toolbar Buttons in Custom Toolbar with the new set",
|
|
4557
|
-
"uiLabel": "Set Custom Toolbar Buttons"
|
|
4558
|
-
},
|
|
4559
4699
|
{
|
|
4560
4700
|
"name": "setCustomToolbarContents",
|
|
4561
4701
|
"kind": "function",
|
|
@@ -4828,6 +4968,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4828
4968
|
"kind": "Interface",
|
|
4829
4969
|
"description": "Options to manage the 'Data Change History Module', which provides an overview of all previous changes, giving the possibility to undo specific changes",
|
|
4830
4970
|
"properties": [
|
|
4971
|
+
{
|
|
4972
|
+
"name": "actionColumnButton",
|
|
4973
|
+
"kind": "unknown",
|
|
4974
|
+
"description": "Action button definition. Can be used to implement undo functionality.",
|
|
4975
|
+
"uiLabel": "Action Column Button",
|
|
4976
|
+
"isOptional": true
|
|
4977
|
+
},
|
|
4831
4978
|
{
|
|
4832
4979
|
"name": "activeByDefault",
|
|
4833
4980
|
"kind": "boolean",
|
|
@@ -4848,117 +4995,78 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4848
4995
|
}
|
|
4849
4996
|
]
|
|
4850
4997
|
},
|
|
4851
|
-
"
|
|
4852
|
-
"name": "
|
|
4998
|
+
"DataSet": {
|
|
4999
|
+
"name": "DataSet",
|
|
4853
5000
|
"kind": "Interface",
|
|
4854
|
-
"description": "Defines a Data
|
|
5001
|
+
"description": "Defines a Data Set object that can provide data to AdapTable",
|
|
4855
5002
|
"properties": [
|
|
4856
5003
|
{
|
|
4857
|
-
"name": "
|
|
5004
|
+
"name": "description",
|
|
4858
5005
|
"kind": "string",
|
|
4859
|
-
"description": "Describes the Data
|
|
5006
|
+
"description": "Describes the Data Set",
|
|
4860
5007
|
"uiLabel": "Description"
|
|
4861
5008
|
},
|
|
4862
5009
|
{
|
|
4863
|
-
"name": "
|
|
5010
|
+
"name": "form",
|
|
4864
5011
|
"kind": "unknown",
|
|
4865
|
-
"description": "Params for
|
|
5012
|
+
"description": "Params for Data Set popup form",
|
|
4866
5013
|
"uiLabel": "Form",
|
|
4867
5014
|
"isOptional": true
|
|
4868
5015
|
},
|
|
4869
5016
|
{
|
|
4870
|
-
"name": "
|
|
5017
|
+
"name": "name",
|
|
4871
5018
|
"kind": "string",
|
|
4872
|
-
"description": "Name of Data
|
|
5019
|
+
"description": "Name of Data Set",
|
|
4873
5020
|
"uiLabel": "Name"
|
|
4874
5021
|
}
|
|
4875
5022
|
]
|
|
4876
5023
|
},
|
|
4877
|
-
"
|
|
4878
|
-
"name": "
|
|
5024
|
+
"DataSetApi": {
|
|
5025
|
+
"name": "DataSetApi",
|
|
4879
5026
|
"kind": "Interface",
|
|
4880
|
-
"description": "Provides run-time access to Data
|
|
5027
|
+
"description": "Provides run-time access to Data Sets",
|
|
4881
5028
|
"properties": [
|
|
4882
5029
|
{
|
|
4883
|
-
"name": "
|
|
4884
|
-
"kind": "function",
|
|
4885
|
-
"description": "Adds new DataSource to State",
|
|
4886
|
-
"uiLabel": "Add Data Source"
|
|
4887
|
-
},
|
|
4888
|
-
{
|
|
4889
|
-
"name": "clearDataSource",
|
|
4890
|
-
"kind": "function",
|
|
4891
|
-
"description": "Clears currently selected DataSource",
|
|
4892
|
-
"uiLabel": "Clear Data Source"
|
|
4893
|
-
},
|
|
4894
|
-
{
|
|
4895
|
-
"name": "createDataSource",
|
|
4896
|
-
"kind": "function",
|
|
4897
|
-
"description": "Creates a DataSource from a given name and description",
|
|
4898
|
-
"uiLabel": "Create Data Source"
|
|
4899
|
-
},
|
|
4900
|
-
{
|
|
4901
|
-
"name": "getAllDataSource",
|
|
5030
|
+
"name": "clearCurrentDataSet",
|
|
4902
5031
|
"kind": "function",
|
|
4903
|
-
"description": "
|
|
4904
|
-
"uiLabel": "
|
|
5032
|
+
"description": "Clears currently selected Data Set",
|
|
5033
|
+
"uiLabel": "Clear Current Data Set"
|
|
4905
5034
|
},
|
|
4906
5035
|
{
|
|
4907
|
-
"name": "
|
|
5036
|
+
"name": "fireDataSetChangeEvent",
|
|
4908
5037
|
"kind": "function",
|
|
4909
|
-
"description": "
|
|
4910
|
-
"uiLabel": "
|
|
5038
|
+
"description": "Fire the DataSet Changed Event",
|
|
5039
|
+
"uiLabel": "Fire Data Set Change Event"
|
|
4911
5040
|
},
|
|
4912
5041
|
{
|
|
4913
|
-
"name": "
|
|
5042
|
+
"name": "getAllDataSets",
|
|
4914
5043
|
"kind": "function",
|
|
4915
|
-
"description": "Retrieves Data
|
|
4916
|
-
"uiLabel": "Get Data
|
|
5044
|
+
"description": "Retrieves the Data Sets from General Options",
|
|
5045
|
+
"uiLabel": "Get All Data Sets"
|
|
4917
5046
|
},
|
|
4918
5047
|
{
|
|
4919
|
-
"name": "
|
|
5048
|
+
"name": "getCurrentDataSet",
|
|
4920
5049
|
"kind": "function",
|
|
4921
|
-
"description": "
|
|
4922
|
-
"uiLabel": "Get Data
|
|
5050
|
+
"description": "Retrieves the currently applied Data Set",
|
|
5051
|
+
"uiLabel": "Get Current Data Set"
|
|
4923
5052
|
},
|
|
4924
5053
|
{
|
|
4925
|
-
"name": "
|
|
5054
|
+
"name": "getDataSetByName",
|
|
4926
5055
|
"kind": "function",
|
|
4927
|
-
"description": "
|
|
4928
|
-
"uiLabel": "Get Data
|
|
5056
|
+
"description": "Retreives Data Set from State with given name",
|
|
5057
|
+
"uiLabel": "Get Data Set By Name"
|
|
4929
5058
|
},
|
|
4930
5059
|
{
|
|
4931
|
-
"name": "
|
|
5060
|
+
"name": "setDataSet",
|
|
4932
5061
|
"kind": "function",
|
|
4933
|
-
"description": "Makes given
|
|
4934
|
-
"uiLabel": "Set Data
|
|
5062
|
+
"description": "Makes given Data Set current",
|
|
5063
|
+
"uiLabel": "Set Data Set"
|
|
4935
5064
|
},
|
|
4936
5065
|
{
|
|
4937
|
-
"name": "
|
|
5066
|
+
"name": "showDataSetPopup",
|
|
4938
5067
|
"kind": "function",
|
|
4939
|
-
"description": "Opens Settings Panel with Data
|
|
4940
|
-
"uiLabel": "Show Data
|
|
4941
|
-
}
|
|
4942
|
-
]
|
|
4943
|
-
},
|
|
4944
|
-
"DataSourceState": {
|
|
4945
|
-
"name": "DataSourceState",
|
|
4946
|
-
"kind": "Interface",
|
|
4947
|
-
"description": "Predefined Configuration for Data Source Module",
|
|
4948
|
-
"properties": [
|
|
4949
|
-
{
|
|
4950
|
-
"name": "CurrentDataSource",
|
|
4951
|
-
"kind": "string",
|
|
4952
|
-
"description": "Name of the currently selected Data Source",
|
|
4953
|
-
"uiLabel": "Current Data Source",
|
|
4954
|
-
"isOptional": true
|
|
4955
|
-
},
|
|
4956
|
-
{
|
|
4957
|
-
"name": "DataSources",
|
|
4958
|
-
"kind": "unknown",
|
|
4959
|
-
"description": "Collection of available Data Sources",
|
|
4960
|
-
"uiLabel": "Data Sources",
|
|
4961
|
-
"isOptional": true
|
|
5068
|
+
"description": "Opens Settings Panel with Data Set section selected and visible",
|
|
5069
|
+
"uiLabel": "Show Data Set Popup"
|
|
4962
5070
|
}
|
|
4963
5071
|
]
|
|
4964
5072
|
},
|
|
@@ -5180,6 +5288,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5180
5288
|
"description": "Unsubscribe from LiveDataChanged",
|
|
5181
5289
|
"uiLabel": "Off"
|
|
5182
5290
|
},
|
|
5291
|
+
{
|
|
5292
|
+
"name": "off",
|
|
5293
|
+
"kind": "function",
|
|
5294
|
+
"description": "Unsubscribe from RowFormSubmitted",
|
|
5295
|
+
"uiLabel": "Off"
|
|
5296
|
+
},
|
|
5297
|
+
{
|
|
5298
|
+
"name": "off",
|
|
5299
|
+
"kind": "function",
|
|
5300
|
+
"description": "Unsubscribe from DataSetChanged",
|
|
5301
|
+
"uiLabel": "Off"
|
|
5302
|
+
},
|
|
5183
5303
|
{
|
|
5184
5304
|
"name": "off",
|
|
5185
5305
|
"kind": "function",
|
|
@@ -5276,6 +5396,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5276
5396
|
"description": "Event fired whenever **a change occurs relating to live reports / data** Used in conjunction with AdapTable's partners OpenFin, ipushpull or Glue42",
|
|
5277
5397
|
"uiLabel": "On"
|
|
5278
5398
|
},
|
|
5399
|
+
{
|
|
5400
|
+
"name": "on",
|
|
5401
|
+
"kind": "function",
|
|
5402
|
+
"description": "Event fired when a Row Form is submitted",
|
|
5403
|
+
"uiLabel": "On"
|
|
5404
|
+
},
|
|
5405
|
+
{
|
|
5406
|
+
"name": "on",
|
|
5407
|
+
"kind": "function",
|
|
5408
|
+
"description": "Event fired when a DataSet is changed",
|
|
5409
|
+
"uiLabel": "On"
|
|
5410
|
+
},
|
|
5279
5411
|
{
|
|
5280
5412
|
"name": "on",
|
|
5281
5413
|
"kind": "function",
|
|
@@ -5501,8 +5633,8 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5501
5633
|
}
|
|
5502
5634
|
]
|
|
5503
5635
|
},
|
|
5504
|
-
"
|
|
5505
|
-
"name": "
|
|
5636
|
+
"ExportFormContext": {
|
|
5637
|
+
"name": "ExportFormContext",
|
|
5506
5638
|
"kind": "Interface",
|
|
5507
5639
|
"description": "Context required by functions when using an Export Button",
|
|
5508
5640
|
"properties": [
|
|
@@ -5513,13 +5645,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5513
5645
|
"uiLabel": "Custom Destination",
|
|
5514
5646
|
"reference": "CustomDestination"
|
|
5515
5647
|
},
|
|
5516
|
-
{
|
|
5517
|
-
"name": "formData",
|
|
5518
|
-
"kind": "REFERENCE",
|
|
5519
|
-
"description": "Adaptable Form Data",
|
|
5520
|
-
"uiLabel": "Form Data",
|
|
5521
|
-
"reference": "unknown"
|
|
5522
|
-
},
|
|
5523
5648
|
{
|
|
5524
5649
|
"name": "report",
|
|
5525
5650
|
"kind": "REFERENCE",
|
|
@@ -5952,12 +6077,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5952
6077
|
"kind": "Interface",
|
|
5953
6078
|
"description": "Provides run-time access to Filter section of Adaptable State.",
|
|
5954
6079
|
"properties": [
|
|
5955
|
-
{
|
|
5956
|
-
"name": "clearAllColumnFilter",
|
|
5957
|
-
"kind": "function",
|
|
5958
|
-
"description": "Clears all Column Filters in State",
|
|
5959
|
-
"uiLabel": "Clear All Column Filter"
|
|
5960
|
-
},
|
|
5961
6080
|
{
|
|
5962
6081
|
"name": "clearAndSetColumnFilter",
|
|
5963
6082
|
"kind": "function",
|
|
@@ -5982,6 +6101,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5982
6101
|
"description": "Clears Column Filters for given set of Columns",
|
|
5983
6102
|
"uiLabel": "Clear Column Filter By Columns"
|
|
5984
6103
|
},
|
|
6104
|
+
{
|
|
6105
|
+
"name": "clearColumnFilters",
|
|
6106
|
+
"kind": "function",
|
|
6107
|
+
"description": "Clears all Column Filters in the Current Layout",
|
|
6108
|
+
"uiLabel": "Clear Column Filters"
|
|
6109
|
+
},
|
|
5985
6110
|
{
|
|
5986
6111
|
"name": "columnFiltersToString",
|
|
5987
6112
|
"kind": "function",
|
|
@@ -5995,10 +6120,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5995
6120
|
"uiLabel": "Column Filter To String"
|
|
5996
6121
|
},
|
|
5997
6122
|
{
|
|
5998
|
-
"name": "
|
|
6123
|
+
"name": "createEqualityColumnFilterForCell",
|
|
6124
|
+
"kind": "function",
|
|
6125
|
+
"description": "Creates an Equality Filter based on given Grid Cell",
|
|
6126
|
+
"uiLabel": "Create Equality Column Filter For Cell"
|
|
6127
|
+
},
|
|
6128
|
+
{
|
|
6129
|
+
"name": "createValuesColumnFilterForCells",
|
|
5999
6130
|
"kind": "function",
|
|
6000
|
-
"description": "Creates
|
|
6001
|
-
"uiLabel": "Create Column Filter For
|
|
6131
|
+
"description": "Creates an Equality Filter based on given Grid Cells",
|
|
6132
|
+
"uiLabel": "Create Values Column Filter For Cells"
|
|
6002
6133
|
},
|
|
6003
6134
|
{
|
|
6004
6135
|
"name": "evaluateColumnFilter",
|
|
@@ -6012,12 +6143,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6012
6143
|
"description": "Returns Predicate Definition for given Column and Quick Filter shortcut",
|
|
6013
6144
|
"uiLabel": "Find Predicate Def By Shortcut"
|
|
6014
6145
|
},
|
|
6015
|
-
{
|
|
6016
|
-
"name": "getAllColumnFilter",
|
|
6017
|
-
"kind": "function",
|
|
6018
|
-
"description": "Retrieves all the Column Filters in the Column Filter State (of Predefined Config)",
|
|
6019
|
-
"uiLabel": "Get All Column Filter"
|
|
6020
|
-
},
|
|
6021
6146
|
{
|
|
6022
6147
|
"name": "getAllColumnFilterForColumn",
|
|
6023
6148
|
"kind": "function",
|
|
@@ -6031,10 +6156,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6031
6156
|
"uiLabel": "Get All System Filter Ids"
|
|
6032
6157
|
},
|
|
6033
6158
|
{
|
|
6034
|
-
"name": "
|
|
6159
|
+
"name": "getColumnFilters",
|
|
6035
6160
|
"kind": "function",
|
|
6036
|
-
"description": "Retrieves
|
|
6037
|
-
"uiLabel": "Get Column
|
|
6161
|
+
"description": "Retrieves all the Column Filters in the Column Filter State (of Predefined Config)",
|
|
6162
|
+
"uiLabel": "Get Column Filters"
|
|
6038
6163
|
},
|
|
6039
6164
|
{
|
|
6040
6165
|
"name": "getFilterPredicateDefsForColumn",
|
|
@@ -6048,12 +6173,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6048
6173
|
"description": "Gets all Filter Predicates available for a given ColumnId",
|
|
6049
6174
|
"uiLabel": "Get Filter Predicate Defs For Column Id"
|
|
6050
6175
|
},
|
|
6051
|
-
{
|
|
6052
|
-
"name": "getFilterState",
|
|
6053
|
-
"kind": "function",
|
|
6054
|
-
"description": "Retrieves Filter section from Adaptable State",
|
|
6055
|
-
"uiLabel": "Get Filter State"
|
|
6056
|
-
},
|
|
6057
6176
|
{
|
|
6058
6177
|
"name": "hideQuickFilterBar",
|
|
6059
6178
|
"kind": "function",
|
|
@@ -6233,6 +6352,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6233
6352
|
"gridInfo": "item",
|
|
6234
6353
|
"defaultValue": "'mouseenter'"
|
|
6235
6354
|
},
|
|
6355
|
+
{
|
|
6356
|
+
"name": "showQuickFilter",
|
|
6357
|
+
"kind": "boolean",
|
|
6358
|
+
"description": "Whether to display Quick Filter Bar between Column Header and the Grid (provided its been setup)",
|
|
6359
|
+
"uiLabel": "Show Quick Filter",
|
|
6360
|
+
"isOptional": true,
|
|
6361
|
+
"defaultValue": "true"
|
|
6362
|
+
},
|
|
6236
6363
|
{
|
|
6237
6364
|
"name": "sortColumnValuesInFilter",
|
|
6238
6365
|
"kind": "boolean",
|
|
@@ -6293,28 +6420,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6293
6420
|
}
|
|
6294
6421
|
]
|
|
6295
6422
|
},
|
|
6296
|
-
"FilterState": {
|
|
6297
|
-
"name": "FilterState",
|
|
6298
|
-
"kind": "Interface",
|
|
6299
|
-
"description": "Predefined Configuration for Filters",
|
|
6300
|
-
"properties": [
|
|
6301
|
-
{
|
|
6302
|
-
"name": "ColumnFilters",
|
|
6303
|
-
"kind": "unknown",
|
|
6304
|
-
"description": "Collection of Column Filters",
|
|
6305
|
-
"uiLabel": "Column Filters",
|
|
6306
|
-
"isOptional": true
|
|
6307
|
-
},
|
|
6308
|
-
{
|
|
6309
|
-
"name": "IsQuickFilterVisible",
|
|
6310
|
-
"kind": "boolean",
|
|
6311
|
-
"description": "Whether to display Quick Filter Bar between Column Header and the Grid",
|
|
6312
|
-
"uiLabel": "Is Quick Filter Visible",
|
|
6313
|
-
"isOptional": true,
|
|
6314
|
-
"defaultValue": "true"
|
|
6315
|
-
}
|
|
6316
|
-
]
|
|
6317
|
-
},
|
|
6318
6423
|
"FinanceApi": {
|
|
6319
6424
|
"name": "FinanceApi",
|
|
6320
6425
|
"kind": "Interface",
|
|
@@ -7174,15 +7279,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7174
7279
|
"isOptional": true,
|
|
7175
7280
|
"defaultValue": "null"
|
|
7176
7281
|
},
|
|
7177
|
-
{
|
|
7178
|
-
"name": "autoOrderGroupedColumns",
|
|
7179
|
-
"kind": "boolean",
|
|
7180
|
-
"description": "Order Grouped Column automatically, deriving from Adaptable State if available (CustomSort or Layout ColumnSort)",
|
|
7181
|
-
"uiLabel": "Auto Order Grouped Columns",
|
|
7182
|
-
"isOptional": true,
|
|
7183
|
-
"gridInfo": "item",
|
|
7184
|
-
"defaultValue": "true"
|
|
7185
|
-
},
|
|
7186
7282
|
{
|
|
7187
7283
|
"name": "cellSummaryOperations",
|
|
7188
7284
|
"kind": "unknown",
|
|
@@ -7206,6 +7302,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7206
7302
|
"uiLabel": "Custom Sort Comparers",
|
|
7207
7303
|
"isOptional": true
|
|
7208
7304
|
},
|
|
7305
|
+
{
|
|
7306
|
+
"name": "dataSets",
|
|
7307
|
+
"kind": "unknown",
|
|
7308
|
+
"description": "Collection of Data Sets to provide Data to AdapTable",
|
|
7309
|
+
"uiLabel": "Data Sets",
|
|
7310
|
+
"isOptional": true
|
|
7311
|
+
},
|
|
7209
7312
|
{
|
|
7210
7313
|
"name": "englishVariant",
|
|
7211
7314
|
"kind": "unknown",
|
|
@@ -7215,15 +7318,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7215
7318
|
"gridInfo": "item",
|
|
7216
7319
|
"defaultValue": "'GB'"
|
|
7217
7320
|
},
|
|
7218
|
-
{
|
|
7219
|
-
"name": "hideColumnWhenGrouped",
|
|
7220
|
-
"kind": "boolean",
|
|
7221
|
-
"description": "Automatically removes a column from the grid when it becomes Row Grouped",
|
|
7222
|
-
"uiLabel": "Hide Column When Grouped",
|
|
7223
|
-
"isOptional": true,
|
|
7224
|
-
"gridInfo": "item",
|
|
7225
|
-
"defaultValue": "false"
|
|
7226
|
-
},
|
|
7227
7321
|
{
|
|
7228
7322
|
"name": "hideEmptyGroupRows",
|
|
7229
7323
|
"kind": "boolean",
|
|
@@ -7241,15 +7335,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7241
7335
|
"gridInfo": "item",
|
|
7242
7336
|
"defaultValue": "false"
|
|
7243
7337
|
},
|
|
7244
|
-
{
|
|
7245
|
-
"name": "showMissingColumnsWarning",
|
|
7246
|
-
"kind": "boolean",
|
|
7247
|
-
"description": "Show warning if AdapTable cannot find a column",
|
|
7248
|
-
"uiLabel": "Show Missing Columns Warning",
|
|
7249
|
-
"isOptional": true,
|
|
7250
|
-
"gridInfo": "item",
|
|
7251
|
-
"defaultValue": "true"
|
|
7252
|
-
},
|
|
7253
7338
|
{
|
|
7254
7339
|
"name": "showMissingPrimaryKeyAlert",
|
|
7255
7340
|
"kind": "boolean",
|
|
@@ -8668,6 +8753,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8668
8753
|
"uiLabel": "Auto Save",
|
|
8669
8754
|
"isOptional": true
|
|
8670
8755
|
},
|
|
8756
|
+
{
|
|
8757
|
+
"name": "ColumnFilters",
|
|
8758
|
+
"kind": "unknown",
|
|
8759
|
+
"description": "Collection of Column Filters.",
|
|
8760
|
+
"uiLabel": "Column Filters",
|
|
8761
|
+
"isOptional": true
|
|
8762
|
+
},
|
|
8671
8763
|
{
|
|
8672
8764
|
"name": "ColumnHeadersMap",
|
|
8673
8765
|
"kind": "unknown",
|
|
@@ -8906,6 +8998,24 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8906
8998
|
"description": "Does an object's Tags include the Current Layout",
|
|
8907
8999
|
"uiLabel": "Is Object Available In Current Layout"
|
|
8908
9000
|
},
|
|
9001
|
+
{
|
|
9002
|
+
"name": "removeColumnFromAllLayouts",
|
|
9003
|
+
"kind": "function",
|
|
9004
|
+
"description": "Removes a Column from all Layouts",
|
|
9005
|
+
"uiLabel": "Remove Column From All Layouts"
|
|
9006
|
+
},
|
|
9007
|
+
{
|
|
9008
|
+
"name": "removeColumnFromCurrentLayout",
|
|
9009
|
+
"kind": "function",
|
|
9010
|
+
"description": "Removes a Column from the Current Layout",
|
|
9011
|
+
"uiLabel": "Remove Column From Current Layout"
|
|
9012
|
+
},
|
|
9013
|
+
{
|
|
9014
|
+
"name": "removeColumnFromLayout",
|
|
9015
|
+
"kind": "function",
|
|
9016
|
+
"description": "Removes a Column from a given Layout",
|
|
9017
|
+
"uiLabel": "Remove Column From Layout"
|
|
9018
|
+
},
|
|
8909
9019
|
{
|
|
8910
9020
|
"name": "saveCurrentLayout",
|
|
8911
9021
|
"kind": "function",
|
|
@@ -9180,6 +9290,27 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9180
9290
|
}
|
|
9181
9291
|
]
|
|
9182
9292
|
},
|
|
9293
|
+
"MasterDetailPluginOptions": {
|
|
9294
|
+
"name": "MasterDetailPluginOptions",
|
|
9295
|
+
"kind": "Interface",
|
|
9296
|
+
"description": "Plugin Options used when creating a Master / Detail grid - passed into the plugin as the only argument.",
|
|
9297
|
+
"properties": [
|
|
9298
|
+
{
|
|
9299
|
+
"name": "detailAdaptableOptions",
|
|
9300
|
+
"kind": "REFERENCE",
|
|
9301
|
+
"description": "`AdaptableOptions` object to use for child Data Grids; **all** will share the same behaviour and State",
|
|
9302
|
+
"uiLabel": "Detail Adaptable Options",
|
|
9303
|
+
"reference": "AdaptableOptions"
|
|
9304
|
+
},
|
|
9305
|
+
{
|
|
9306
|
+
"name": "onDetailInit",
|
|
9307
|
+
"kind": "unknown",
|
|
9308
|
+
"description": "Function called when Detail Grid is initialised (i.e. opens) receives an Adaptable Api object",
|
|
9309
|
+
"uiLabel": "On Detail Init",
|
|
9310
|
+
"isOptional": true
|
|
9311
|
+
}
|
|
9312
|
+
]
|
|
9313
|
+
},
|
|
9183
9314
|
"MenuOptions": {
|
|
9184
9315
|
"name": "MenuOptions",
|
|
9185
9316
|
"kind": "Interface",
|
|
@@ -10098,14 +10229,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10098
10229
|
"isOptional": true,
|
|
10099
10230
|
"reference": "DashboardState"
|
|
10100
10231
|
},
|
|
10101
|
-
{
|
|
10102
|
-
"name": "DataSource",
|
|
10103
|
-
"kind": "REFERENCE",
|
|
10104
|
-
"description": "Supplies a collection of *DataSource* objects to facilitate replacing the DataSource in the Grid with an alternate set of data (e.g. a Book or Stored Proc name)",
|
|
10105
|
-
"uiLabel": "Data Source",
|
|
10106
|
-
"isOptional": true,
|
|
10107
|
-
"reference": "DataSourceState"
|
|
10108
|
-
},
|
|
10109
10232
|
{
|
|
10110
10233
|
"name": "Export",
|
|
10111
10234
|
"kind": "REFERENCE",
|
|
@@ -10114,14 +10237,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10114
10237
|
"isOptional": true,
|
|
10115
10238
|
"reference": "ExportState"
|
|
10116
10239
|
},
|
|
10117
|
-
{
|
|
10118
|
-
"name": "Filter",
|
|
10119
|
-
"kind": "REFERENCE",
|
|
10120
|
-
"description": "Stores Filters in AdapTable - both System and Column (predicate) Filters",
|
|
10121
|
-
"uiLabel": "Filter",
|
|
10122
|
-
"isOptional": true,
|
|
10123
|
-
"reference": "FilterState"
|
|
10124
|
-
},
|
|
10125
10240
|
{
|
|
10126
10241
|
"name": "FlashingCell",
|
|
10127
10242
|
"kind": "REFERENCE",
|
|
@@ -10200,7 +10315,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10200
10315
|
"description": "Configures the Adaptable Status Bar",
|
|
10201
10316
|
"uiLabel": "Status Bar",
|
|
10202
10317
|
"isOptional": true,
|
|
10203
|
-
"reference": "
|
|
10318
|
+
"reference": "StatusBarState"
|
|
10204
10319
|
},
|
|
10205
10320
|
{
|
|
10206
10321
|
"name": "Theme",
|
|
@@ -10237,6 +10352,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10237
10352
|
"description": "Returns Predicate Definitions provided by users",
|
|
10238
10353
|
"uiLabel": "Get Custom Predicate Defs"
|
|
10239
10354
|
},
|
|
10355
|
+
{
|
|
10356
|
+
"name": "getEqualityPredicateForDataType",
|
|
10357
|
+
"kind": "function",
|
|
10358
|
+
"description": "Gets the correct Equality-type System Predicate for a particular DataType",
|
|
10359
|
+
"uiLabel": "Get Equality Predicate For Data Type"
|
|
10360
|
+
},
|
|
10240
10361
|
{
|
|
10241
10362
|
"name": "getPredicateDefById",
|
|
10242
10363
|
"kind": "function",
|
|
@@ -11623,10 +11744,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11623
11744
|
"description": "Returns current Smart Edit Value",
|
|
11624
11745
|
"uiLabel": "Get Smart Edit Value"
|
|
11625
11746
|
},
|
|
11747
|
+
{
|
|
11748
|
+
"name": "setCustomSmartEditOperation",
|
|
11749
|
+
"kind": "function",
|
|
11750
|
+
"description": "Sets current Smart Edit Operation to a Custom Operation",
|
|
11751
|
+
"uiLabel": "Set Custom Smart Edit Operation"
|
|
11752
|
+
},
|
|
11626
11753
|
{
|
|
11627
11754
|
"name": "setSmartEditOperation",
|
|
11628
11755
|
"kind": "function",
|
|
11629
|
-
"description": "Sets Smart Edit
|
|
11756
|
+
"description": "Sets (shipped) Smart Edit Operation: 'Add','Subtract','Multiply','Divide'",
|
|
11630
11757
|
"uiLabel": "Set Smart Edit Operation"
|
|
11631
11758
|
},
|
|
11632
11759
|
{
|
|
@@ -11814,6 +11941,21 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11814
11941
|
}
|
|
11815
11942
|
]
|
|
11816
11943
|
},
|
|
11944
|
+
"StatusBarState": {
|
|
11945
|
+
"name": "StatusBarState",
|
|
11946
|
+
"kind": "Interface",
|
|
11947
|
+
"description": "Predefined Configuration for the Adaptable Status Bar",
|
|
11948
|
+
"properties": [
|
|
11949
|
+
{
|
|
11950
|
+
"name": "StatusBars",
|
|
11951
|
+
"kind": "unknown",
|
|
11952
|
+
"description": "Adaptable Status Bars to display - up to 3 can be shown",
|
|
11953
|
+
"uiLabel": "Status Bars",
|
|
11954
|
+
"isOptional": true,
|
|
11955
|
+
"defaultValue": "null"
|
|
11956
|
+
}
|
|
11957
|
+
]
|
|
11958
|
+
},
|
|
11817
11959
|
"StringFormatterOptions": {
|
|
11818
11960
|
"name": "StringFormatterOptions",
|
|
11819
11961
|
"kind": "Interface",
|
|
@@ -11992,15 +12134,9 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11992
12134
|
{
|
|
11993
12135
|
"name": "getSharedEntities",
|
|
11994
12136
|
"kind": "function",
|
|
11995
|
-
"description": "Retrieves all
|
|
12137
|
+
"description": "Retrieves all shared entities which are currently shared. It is an asynchronous operation as it leverages the `TeamSharingOptions.getSharedEntities(...)` method.",
|
|
11996
12138
|
"uiLabel": "Get Shared Entities"
|
|
11997
12139
|
},
|
|
11998
|
-
{
|
|
11999
|
-
"name": "getTeamSharingState",
|
|
12000
|
-
"kind": "function",
|
|
12001
|
-
"description": "Retrieves Team Sharing section of State",
|
|
12002
|
-
"uiLabel": "Get Team Sharing State"
|
|
12003
|
-
},
|
|
12004
12140
|
{
|
|
12005
12141
|
"name": "hasTeamSharingFullRights",
|
|
12006
12142
|
"kind": "function",
|
|
@@ -12013,6 +12149,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12013
12149
|
"description": "Whether Team Sharing is Activated",
|
|
12014
12150
|
"uiLabel": "Is Team Sharing Activated"
|
|
12015
12151
|
},
|
|
12152
|
+
{
|
|
12153
|
+
"name": "isTeamSharingAvailable",
|
|
12154
|
+
"kind": "function",
|
|
12155
|
+
"description": "Whether Team Sharing is Available to use",
|
|
12156
|
+
"uiLabel": "Is Team Sharing Available"
|
|
12157
|
+
},
|
|
12158
|
+
{
|
|
12159
|
+
"name": "setSharedEntities",
|
|
12160
|
+
"kind": "function",
|
|
12161
|
+
"description": "Sets the shared entities which are currently shared. It is an asynchronous operation as it leverages the `TeamSharingOptions.setSharedEntities(...)` method.",
|
|
12162
|
+
"uiLabel": "Set Shared Entities"
|
|
12163
|
+
},
|
|
12016
12164
|
{
|
|
12017
12165
|
"name": "shareEntity",
|
|
12018
12166
|
"kind": "function",
|
|
@@ -12024,6 +12172,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12024
12172
|
"kind": "function",
|
|
12025
12173
|
"description": "Opens Settings Panel with Team Sharing section selected and visible",
|
|
12026
12174
|
"uiLabel": "Show Team Sharing Popup"
|
|
12175
|
+
},
|
|
12176
|
+
{
|
|
12177
|
+
"name": "unshareEntity",
|
|
12178
|
+
"kind": "function",
|
|
12179
|
+
"description": "Removes an Adaptable Object from the Team Share.",
|
|
12180
|
+
"uiLabel": "Unshare Entity"
|
|
12027
12181
|
}
|
|
12028
12182
|
]
|
|
12029
12183
|
},
|
|
@@ -12324,15 +12478,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12324
12478
|
"kind": "Interface",
|
|
12325
12479
|
"description": "Options related to managing the AdapTable ToolPanel Component",
|
|
12326
12480
|
"properties": [
|
|
12327
|
-
{
|
|
12328
|
-
"name": "adaptableToolPanelTitle",
|
|
12329
|
-
"kind": "string",
|
|
12330
|
-
"description": "Title for AdapTable ToolPanel Component - appears vertically at side",
|
|
12331
|
-
"uiLabel": "Adaptable Tool Panel Title",
|
|
12332
|
-
"isOptional": true,
|
|
12333
|
-
"gridInfo": "item",
|
|
12334
|
-
"defaultValue": "'AdapTable'"
|
|
12335
|
-
},
|
|
12336
12481
|
{
|
|
12337
12482
|
"name": "customButtons",
|
|
12338
12483
|
"kind": "unknown",
|
|
@@ -12347,40 +12492,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12347
12492
|
"uiLabel": "Custom Tool Panels",
|
|
12348
12493
|
"isOptional": true
|
|
12349
12494
|
},
|
|
12350
|
-
{
|
|
12351
|
-
"name": "iconKey",
|
|
12352
|
-
"kind": "string",
|
|
12353
|
-
"description": "Key of icon to be used (beside the label) for Adaptable ToolPanel Component",
|
|
12354
|
-
"uiLabel": "Icon Key",
|
|
12355
|
-
"isOptional": true,
|
|
12356
|
-
"gridInfo": "item",
|
|
12357
|
-
"defaultValue": "'menu'"
|
|
12358
|
-
},
|
|
12359
|
-
{
|
|
12360
|
-
"name": "maxWidth",
|
|
12361
|
-
"kind": "number",
|
|
12362
|
-
"description": "The max width of AdapTable ToolPanel",
|
|
12363
|
-
"uiLabel": "Max Width",
|
|
12364
|
-
"isOptional": true,
|
|
12365
|
-
"defaultValue": "undefined"
|
|
12366
|
-
},
|
|
12367
|
-
{
|
|
12368
|
-
"name": "minWidth",
|
|
12369
|
-
"kind": "number",
|
|
12370
|
-
"description": "The min width of AdapTable ToolPanel",
|
|
12371
|
-
"uiLabel": "Min Width",
|
|
12372
|
-
"isOptional": true,
|
|
12373
|
-
"defaultValue": "var(--ab-cmp-toolpanel__width)"
|
|
12374
|
-
},
|
|
12375
|
-
{
|
|
12376
|
-
"name": "showAdaptableToolPanel",
|
|
12377
|
-
"kind": "boolean",
|
|
12378
|
-
"description": "Displays Adaptable ToolPanel Component (only if AG Grid Sidebar is provided)",
|
|
12379
|
-
"uiLabel": "Show Adaptable Tool Panel",
|
|
12380
|
-
"isOptional": true,
|
|
12381
|
-
"gridInfo": "item",
|
|
12382
|
-
"defaultValue": "true"
|
|
12383
|
-
},
|
|
12384
12495
|
{
|
|
12385
12496
|
"name": "showToolPanelsDropdown",
|
|
12386
12497
|
"kind": "boolean",
|
|
@@ -12389,22 +12500,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12389
12500
|
"isOptional": true,
|
|
12390
12501
|
"gridInfo": "item",
|
|
12391
12502
|
"defaultValue": "true"
|
|
12392
|
-
},
|
|
12393
|
-
{
|
|
12394
|
-
"name": "toolPanelOrder",
|
|
12395
|
-
"kind": "unknown",
|
|
12396
|
-
"description": "Order of displayed ToolPanels in Sidebar",
|
|
12397
|
-
"uiLabel": "Tool Panel Order",
|
|
12398
|
-
"isOptional": true,
|
|
12399
|
-
"defaultValue": "['filters', 'columns', 'adaptable']"
|
|
12400
|
-
},
|
|
12401
|
-
{
|
|
12402
|
-
"name": "width",
|
|
12403
|
-
"kind": "number",
|
|
12404
|
-
"description": "The initial width of AdapTable ToolPanel",
|
|
12405
|
-
"uiLabel": "Width",
|
|
12406
|
-
"isOptional": true,
|
|
12407
|
-
"defaultValue": "var(--ab-cmp-toolpanel__width)"
|
|
12408
12503
|
}
|
|
12409
12504
|
]
|
|
12410
12505
|
},
|
|
@@ -12546,11 +12641,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12546
12641
|
"description": "Options for managing the User Interface of AdapTable",
|
|
12547
12642
|
"properties": [
|
|
12548
12643
|
{
|
|
12549
|
-
"name": "
|
|
12550
|
-
"kind": "
|
|
12551
|
-
"description": "
|
|
12552
|
-
"uiLabel": "Action
|
|
12553
|
-
"isOptional": true
|
|
12644
|
+
"name": "actionOptions",
|
|
12645
|
+
"kind": "REFERENCE",
|
|
12646
|
+
"description": "Options for creating Action Columns and Buttons",
|
|
12647
|
+
"uiLabel": "Action Options",
|
|
12648
|
+
"isOptional": true,
|
|
12649
|
+
"reference": "ActionOptions"
|
|
12554
12650
|
},
|
|
12555
12651
|
{
|
|
12556
12652
|
"name": "applicationIcon",
|
|
@@ -12576,10 +12672,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12576
12672
|
"isOptional": true
|
|
12577
12673
|
},
|
|
12578
12674
|
{
|
|
12579
|
-
"name": "
|
|
12675
|
+
"name": "customDisplayFormatters",
|
|
12580
12676
|
"kind": "unknown",
|
|
12581
|
-
"description": "
|
|
12582
|
-
"uiLabel": "
|
|
12677
|
+
"description": "Custom Formatters to use in the Format Column Module",
|
|
12678
|
+
"uiLabel": "Custom Display Formatters",
|
|
12583
12679
|
"isOptional": true
|
|
12584
12680
|
},
|
|
12585
12681
|
{
|
|
@@ -12650,22 +12746,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
12650
12746
|
"isOptional": true,
|
|
12651
12747
|
"reference": "AdaptableStyle"
|
|
12652
12748
|
},
|
|
12653
|
-
{
|
|
12654
|
-
"name": "rowActionButtons",
|
|
12655
|
-
"kind": "unknown",
|
|
12656
|
-
"description": "Action buttons to display for each row.",
|
|
12657
|
-
"uiLabel": "Row Action Buttons",
|
|
12658
|
-
"isOptional": true,
|
|
12659
|
-
"defaultValue": "undefined"
|
|
12660
|
-
},
|
|
12661
|
-
{
|
|
12662
|
-
"name": "rowActionButtonsPosition",
|
|
12663
|
-
"kind": "unknown",
|
|
12664
|
-
"description": "Position of the action buttons",
|
|
12665
|
-
"uiLabel": "Row Action Buttons Position",
|
|
12666
|
-
"isOptional": true,
|
|
12667
|
-
"defaultValue": "'pinnedLeft'"
|
|
12668
|
-
},
|
|
12669
12749
|
{
|
|
12670
12750
|
"name": "showAdapTableVersion",
|
|
12671
12751
|
"kind": "boolean",
|