@adaptabletools/adaptable 10.0.4-canary.1 → 10.0.4-canary.5
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 +2 -2
- package/README.md +1 -1
- package/agGrid.d.ts +2 -2
- package/base.css +387 -87
- package/bundle.cjs.js +353 -0
- package/index.css +454 -94
- package/package.json +5 -8
- 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 +17 -15
- package/src/AdaptableOptions/AdaptableOptions.d.ts +9 -4
- package/src/AdaptableOptions/ContainerOptions.d.ts +4 -5
- package/src/AdaptableOptions/DashboardOptions.d.ts +2 -2
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +3 -3
- package/src/AdaptableOptions/DateInputOptions.d.ts +5 -1
- package/src/AdaptableOptions/EditOptions.d.ts +4 -5
- package/src/AdaptableOptions/ExportOptions.d.ts +1 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +8 -8
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +1 -1
- package/src/AdaptableOptions/GeneralOptions.d.ts +3 -2
- package/src/AdaptableOptions/MenuOptions.d.ts +12 -12
- package/src/AdaptableOptions/NotificationsOptions.d.ts +12 -3
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +75 -0
- package/src/{Api/Events/FlashingAlertFired.js → AdaptableOptions/SettingsPanelOptions.js} +0 -0
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +32 -3
- package/src/Api/AdaptableApi.d.ts +14 -12
- package/src/Api/AlertApi.d.ts +4 -79
- package/src/Api/ColumnApi.d.ts +10 -5
- package/src/Api/DataChangeHistoryApi.d.ts +4 -0
- package/src/Api/EventApi.d.ts +9 -9
- package/src/Api/Events/AdaptableReady.d.ts +3 -2
- package/src/Api/Events/FlashingCellDisplayed.d.ts +11 -0
- package/src/{PredefinedConfig/Common/AdaptableFlashingAlert.js → Api/Events/FlashingCellDisplayed.js} +0 -0
- package/src/Api/Events/GridDataChanged.d.ts +3 -1
- package/src/Api/FlashingCellApi.d.ts +78 -0
- package/src/Api/FlashingCellApi.js +2 -0
- package/src/Api/GridApi.d.ts +38 -15
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
- package/src/Api/Implementation/AlertApiImpl.d.ts +8 -22
- package/src/Api/Implementation/AlertApiImpl.js +40 -107
- package/src/Api/Implementation/ColumnApiImpl.d.ts +4 -3
- package/src/Api/Implementation/ColumnApiImpl.js +16 -14
- package/src/Api/Implementation/ConfigApiImpl.js +0 -29
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +5 -0
- package/src/Api/Implementation/FilterApiImpl.js +1 -1
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +20 -0
- package/src/Api/Implementation/FlashingCellApiImpl.js +96 -0
- package/src/Api/Implementation/GridApiImpl.d.ts +15 -10
- package/src/Api/Implementation/GridApiImpl.js +42 -21
- package/src/Api/Implementation/InternalApiImpl.d.ts +3 -3
- package/src/Api/Implementation/InternalApiImpl.js +7 -6
- package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
- package/src/Api/Implementation/LayoutApiImpl.js +27 -0
- package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -2
- package/src/Api/Implementation/PluginsApiImpl.js +1 -1
- package/src/Api/Implementation/ScheduleApiImpl.js +11 -11
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +1 -1
- package/src/Api/Implementation/SystemStatusApiImpl.js +1 -1
- package/src/Api/Implementation/ToolPanelApiImpl.js +3 -3
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +3 -3
- package/src/Api/Implementation/UserInterfaceApiImpl.js +4 -4
- package/src/Api/InternalApi.d.ts +5 -5
- package/src/Api/LayoutApi.d.ts +7 -0
- package/src/Api/PluginsApi.d.ts +1 -7
- package/src/Api/SmartEditApi.d.ts +4 -4
- package/src/Api/TeamSharingApi.d.ts +1 -1
- package/src/Api/ThemeApi.d.ts +2 -2
- package/src/Api/UserInterfaceApi.d.ts +3 -3
- package/src/PredefinedConfig/AdaptableState.d.ts +4 -10
- package/src/PredefinedConfig/AlertState.d.ts +14 -55
- package/src/PredefinedConfig/ApplicationState.d.ts +1 -1
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +7 -3
- package/src/PredefinedConfig/Common/AdaptableComparerFunction.d.ts +2 -2
- package/src/PredefinedConfig/Common/{AdaptableFlashingAlert.d.ts → AdaptableFlashingCell.d.ts} +6 -6
- package/src/PredefinedConfig/Common/AdaptableFlashingCell.js +2 -0
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
- package/src/PredefinedConfig/Common/AdaptableScope.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +7 -7
- package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +14 -3
- package/src/PredefinedConfig/Common/CellSummary.d.ts +2 -2
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
- package/src/PredefinedConfig/Common/Menu.d.ts +41 -18
- package/src/PredefinedConfig/Common/Schedule.d.ts +4 -14
- package/src/PredefinedConfig/Common/Schedule.js +0 -14
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
- package/src/PredefinedConfig/Common/Types.d.ts +6 -5
- package/src/PredefinedConfig/Common/Types.js +9 -7
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +1 -1
- package/src/PredefinedConfig/CustomSortState.d.ts +2 -2
- package/src/PredefinedConfig/DashboardState.d.ts +3 -2
- package/src/PredefinedConfig/DataSourceState.d.ts +1 -1
- package/src/PredefinedConfig/ExportState.d.ts +3 -3
- package/src/PredefinedConfig/FilterState.d.ts +2 -2
- package/src/PredefinedConfig/FlashingCellState.d.ts +70 -0
- package/src/PredefinedConfig/FlashingCellState.js +2 -0
- package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +3 -3
- package/src/PredefinedConfig/LayoutState.d.ts +2 -2
- package/src/PredefinedConfig/PredefinedConfig.d.ts +1 -39
- package/src/PredefinedConfig/QuickSearchState.d.ts +3 -3
- package/src/PredefinedConfig/ScheduleState.d.ts +2 -6
- package/src/PredefinedConfig/ShortcutState.d.ts +6 -2
- package/src/PredefinedConfig/SystemState.d.ts +17 -4
- package/src/PredefinedConfig/ThemeState.d.ts +5 -1
- package/src/Redux/ActionsReducers/AlertRedux.d.ts +3 -38
- package/src/Redux/ActionsReducers/AlertRedux.js +9 -68
- package/src/Redux/ActionsReducers/DashboardRedux.js +3 -2
- package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +55 -0
- package/src/Redux/ActionsReducers/FlashingCellRedux.js +100 -0
- 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/PopupRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +34 -13
- package/src/Redux/ActionsReducers/SystemRedux.js +94 -40
- package/src/Redux/ActionsReducers/ToolPanelRedux.js +2 -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 +91 -51
- package/src/Strategy/AdaptableModuleBase.d.ts +2 -2
- package/src/Strategy/AlertModule.d.ts +16 -7
- package/src/Strategy/AlertModule.js +40 -216
- package/src/Strategy/BulkUpdateModule.d.ts +2 -2
- package/src/Strategy/BulkUpdateModule.js +4 -4
- package/src/Strategy/CalculatedColumnModule.d.ts +28 -0
- package/src/Strategy/CalculatedColumnModule.js +29 -0
- package/src/Strategy/CellSummaryModule.d.ts +2 -2
- package/src/Strategy/ConditionalStyleModule.d.ts +12 -0
- package/src/Strategy/ConditionalStyleModule.js +28 -0
- package/src/Strategy/CustomSortModule.d.ts +12 -1
- package/src/Strategy/CustomSortModule.js +26 -0
- package/src/Strategy/DashboardModule.d.ts +2 -3
- package/src/Strategy/DashboardModule.js +1 -7
- package/src/Strategy/DataChangeHistoryModule.js +3 -3
- package/src/Strategy/DataSourceModule.d.ts +9 -1
- package/src/Strategy/DataSourceModule.js +28 -0
- package/src/Strategy/ExportModule.d.ts +14 -2
- package/src/Strategy/ExportModule.js +43 -0
- package/src/Strategy/FilterModule.d.ts +10 -3
- package/src/Strategy/FilterModule.js +27 -0
- package/src/Strategy/FlashingCellModule.d.ts +33 -0
- package/src/Strategy/FlashingCellModule.js +219 -0
- package/src/Strategy/FormatColumnModule.d.ts +11 -1
- package/src/Strategy/FormatColumnModule.js +36 -1
- package/src/Strategy/FreeTextColumnModule.d.ts +9 -1
- package/src/Strategy/FreeTextColumnModule.js +45 -0
- package/src/Strategy/GridInfoModule.d.ts +2 -2
- package/src/Strategy/GridInfoModule.js +58 -36
- package/src/Strategy/Interface/IModule.d.ts +72 -2
- package/src/Strategy/LayoutModule.d.ts +2 -2
- package/src/Strategy/LayoutModule.js +21 -8
- package/src/Strategy/PlusMinusModule.d.ts +11 -0
- package/src/Strategy/PlusMinusModule.js +34 -0
- package/src/Strategy/QueryModule.d.ts +20 -0
- package/src/Strategy/QueryModule.js +27 -0
- package/src/Strategy/ScheduleModule.d.ts +17 -1
- package/src/Strategy/ScheduleModule.js +148 -2
- package/src/Strategy/SetingsPanelModule.d.ts +10 -0
- package/src/Strategy/SetingsPanelModule.js +24 -0
- package/src/Strategy/ShortcutModule.d.ts +11 -0
- package/src/Strategy/ShortcutModule.js +22 -0
- package/src/Strategy/SmartEditModule.d.ts +2 -2
- package/src/Strategy/SmartEditModule.js +3 -4
- package/src/Strategy/SystemStatusModule.d.ts +2 -2
- package/src/Strategy/ToolPanelModule.js +1 -1
- package/src/Strategy/Utilities/getAlertBehaviourViewItems.d.ts +8 -0
- package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +15 -0
- package/src/Strategy/Utilities/getAlertPreviewViewItems.d.ts +4 -0
- package/src/Strategy/Utilities/getAlertPreviewViewItems.js +19 -0
- package/src/Strategy/Utilities/getCustomSortColumnViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getCustomSortColumnViewItems.js +9 -0
- package/src/Strategy/Utilities/getCustomSortSortOrderViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getCustomSortSortOrderViewItems.js +9 -0
- package/src/Strategy/Utilities/getExportColumnsViewItems.d.ts +3 -0
- package/src/Strategy/Utilities/getExportColumnsViewItems.js +22 -0
- package/src/Strategy/Utilities/getExportRowsViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getExportRowsViewItems.js +26 -0
- package/src/Strategy/Utilities/getExpressionViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getExpressionViewItems.js +9 -0
- package/src/Strategy/Utilities/getFlashingCellDurationViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getFlashingCellDurationViewItems.js +9 -0
- package/src/Strategy/Utilities/getFlashingCellStyleViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getFlashingCellStyleViewItems.js +10 -0
- package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +15 -0
- package/src/Strategy/Utilities/getRuleViewItems.d.ts +6 -0
- package/src/Strategy/Utilities/getRuleViewItems.js +15 -0
- package/src/Strategy/Utilities/getScopeViewItems.d.ts +3 -0
- package/src/Strategy/Utilities/getScopeViewItems.js +20 -0
- package/src/Strategy/Utilities/getShortcutSettingsViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getShortcutSettingsViewItems.js +15 -0
- package/src/Strategy/Utilities/getStyleViewItems.d.ts +2 -0
- package/src/Strategy/Utilities/getStyleViewItems.js +15 -0
- package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
- package/src/Utilities/Constants/GeneralConstants.js +2 -1
- package/src/Utilities/Constants/ModuleConstants.d.ts +8 -6
- package/src/Utilities/Constants/ModuleConstants.js +9 -7
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +19 -11
- package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +6 -0
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +35 -0
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +4 -1
- package/src/Utilities/Extensions/ArrayExtensions.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +2 -1
- package/src/Utilities/Helpers/PreviewHelper.js +2 -2
- package/src/Utilities/Helpers/StyleHelper.d.ts +4 -0
- package/src/Utilities/Helpers/StyleHelper.js +4 -1
- package/src/Utilities/Interface/Preview.d.ts +2 -1
- package/src/Utilities/MenuItem.d.ts +1 -1
- package/src/Utilities/MenuItem.js +2 -2
- package/src/Utilities/ObjectFactory.d.ts +7 -8
- package/src/Utilities/ObjectFactory.js +24 -31
- package/src/Utilities/Services/AlertService.d.ts +3 -3
- package/src/Utilities/Services/AlertService.js +11 -17
- package/src/Utilities/Services/EntitlementService.d.ts +1 -0
- package/src/Utilities/Services/EntitlementService.js +8 -0
- package/src/Utilities/Services/Interface/IAlertService.d.ts +3 -7
- package/src/Utilities/Services/Interface/IEntitlementService.d.ts +1 -0
- package/src/Utilities/Services/LicenseService.js +16 -2
- package/src/Utilities/Services/ModuleService.js +6 -6
- package/src/Utilities/Services/TeamSharingService.js +3 -4
- package/src/Utilities/Services/ValidationService.js +1 -1
- package/src/View/AdaptableView.js +3 -3
- package/src/View/AdaptableViewFactory.d.ts +2 -1
- package/src/View/AdaptableViewFactory.js +2 -26
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +16 -16
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +6 -6
- package/src/View/AdaptableWizardView/index.js +1 -1
- package/src/View/Alert/AlertEmptyView.d.ts +5 -0
- package/src/View/Alert/AlertEmptyView.js +16 -0
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.d.ts +2 -1
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +10 -5
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +8 -1
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +6 -7
- package/src/View/Alert/Wizard/AlertRulesWizardSection.js +4 -6
- package/src/View/Alert/Wizard/AlertWizard.js +17 -3
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +4 -2
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +1 -1
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.d.ts +5 -4
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +2 -2
- package/src/View/Alert/Wizard/isValidAlertRules.d.ts +2 -3
- package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
- package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.d.ts +2 -0
- package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.js +17 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +6 -16
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +18 -2
- package/src/View/CellSummary/CellSummaryPopup.js +2 -2
- package/src/View/CellSummary/CellSummaryViewPanel.js +2 -2
- package/src/View/ColorPicker.d.ts +1 -1
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.d.ts +14 -0
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +82 -0
- package/src/View/Components/AdaptableObjectList/index.d.ts +1 -0
- package/src/View/Components/AdaptableObjectList/index.js +5 -0
- package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonDelete.js +3 -2
- package/src/View/Components/Buttons/ButtonEdit.d.ts +1 -3
- package/src/View/Components/Buttons/ButtonEdit.js +4 -6
- package/src/View/Components/Buttons/ButtonShare.js +3 -2
- package/src/View/Components/Buttons/EntityListActionButtons.js +1 -1
- package/src/View/Components/Buttons/{SuspendToggleButton.d.ts → SuspendToggleButton/SuspendToggleButton.d.ts} +5 -3
- package/src/View/Components/Buttons/SuspendToggleButton/SuspendToggleButton.js +19 -0
- package/src/View/Components/Buttons/SuspendToggleButton/index.d.ts +1 -0
- package/src/View/Components/Buttons/SuspendToggleButton/index.js +4 -0
- package/src/View/Components/ExternalRenderer.d.ts +14 -0
- package/src/View/Components/ExternalRenderer.js +32 -0
- package/src/View/Components/FilterForm/FilterForm.js +9 -8
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +1 -1
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +7 -7
- package/src/View/Components/FilterForm/QuickFilterForm.js +5 -2
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +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/Panels/PanelWithImage.js +2 -2
- package/src/View/Components/Popups/AdaptableChart.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.d.ts +20 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +119 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.d.ts +15 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +35 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +9 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +67 -0
- package/src/View/Components/Popups/AdaptablePopup/CustomSettingsPanelView.d.ts +6 -0
- package/src/View/Components/Popups/AdaptablePopup/CustomSettingsPanelView.js +9 -0
- package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +13 -0
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +63 -0
- package/src/View/Components/Popups/{PopupContext.d.ts → AdaptablePopup/PopupContext.d.ts} +0 -0
- package/src/View/Components/Popups/{PopupContext.js → AdaptablePopup/PopupContext.js} +0 -0
- package/src/View/Components/Popups/AdaptablePopup/PopupPanel.d.ts +10 -0
- package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +22 -0
- package/src/View/Components/Popups/AdaptablePopup/TopBar.d.ts +7 -0
- package/src/View/Components/Popups/AdaptablePopup/TopBar.js +29 -0
- package/src/View/Components/Popups/AdaptablePopup/Utilities.d.ts +15 -0
- package/src/View/Components/Popups/AdaptablePopup/Utilities.js +28 -0
- package/src/View/Components/Popups/AdaptablePopup/index.d.ts +1 -0
- package/src/View/Components/Popups/AdaptablePopup/index.js +5 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.js +22 -9
- package/src/View/Components/Popups/AdaptableToaster.js +6 -6
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -4
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +3 -3
- package/src/View/Components/ValueSelector/index.js +4 -4
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.d.ts +2 -2
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +19 -5
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +4 -5
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +18 -3
- package/src/View/Dashboard/Dashboard.d.ts +0 -1
- package/src/View/Dashboard/Dashboard.js +20 -67
- package/src/View/Dashboard/DashboardPopup.d.ts +6 -2
- package/src/View/Dashboard/DashboardPopup.js +30 -8
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +6 -6
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +8 -8
- package/src/View/DataSource/Wizard/DataSourceSettingsSummary.js +3 -3
- package/src/View/DataSource/Wizard/DataSourceWizard.d.ts +1 -2
- package/src/View/DataSource/Wizard/DataSourceWizard.js +17 -2
- package/src/View/Export/ExportViewPanel.js +6 -6
- package/src/View/Export/ReportExportDropdown.d.ts +5 -0
- package/src/View/Export/ReportExportDropdown.js +37 -0
- package/src/View/Export/Wizard/NewReportWizard.js +15 -2
- package/src/View/Export/Wizard/ReportNameWizardSection.js +2 -1
- package/src/View/Export/Wizard/ReportRowsWizardSection.js +2 -2
- package/src/View/FlashingCell/FlashingCellStyle.d.ts +7 -0
- package/src/View/FlashingCell/FlashingCellStyle.js +20 -0
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertDurationWizardSection.d.ts → FlashingCell/Wizard/FlashingCellDurationWizardSection.d.ts} +4 -4
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertDurationWizardSection.js → FlashingCell/Wizard/FlashingCellDurationWizardSection.js} +6 -6
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertRulesWizardSection.d.ts → FlashingCell/Wizard/FlashingCellRulesWizardSection.d.ts} +3 -3
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertRulesWizardSection.js → FlashingCell/Wizard/FlashingCellRulesWizardSection.js} +10 -10
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertScopeWizardSection.d.ts → FlashingCell/Wizard/FlashingCellScopeWizardSection.d.ts} +1 -2
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertScopeWizardSection.js → FlashingCell/Wizard/FlashingCellScopeWizardSection.js} +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.d.ts +15 -0
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertStyleWizardSection.js → FlashingCell/Wizard/FlashingCellStyleWizardSection.js} +17 -16
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.d.ts +6 -0
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +99 -0
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.d.ts +3 -0
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +30 -0
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +1 -0
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +18 -14
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +4 -4
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +17 -2
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.d.ts +1 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +7 -7
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +18 -5
- package/src/View/GridInfo/AdaptableOptionsComponent.js +2 -2
- package/src/View/GridInfo/GridInfoPopup.d.ts +2 -1
- package/src/View/GridInfo/GridInfoPopup.js +21 -16
- package/src/View/GridInfo/GridOptionsComponent.js +2 -2
- package/src/View/Layout/LayoutPopup.js +4 -6
- package/src/View/Layout/LayoutViewPanel.js +2 -2
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +3 -1
- package/src/View/Layout/Wizard/LayoutEditor/index.js +5 -2
- package/src/View/License/LicenseWatermark.js +4 -0
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +2 -2
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.d.ts +1 -2
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +18 -4
- package/src/View/Query/QueryViewPanel.js +1 -1
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +2 -2
- package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +2 -2
- package/src/View/Query/Wizard/NamedQueryWizard.js +14 -2
- package/src/View/QuickSearch/QuickSearchPopup.js +2 -2
- package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -3
- package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +2 -2
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +7 -8
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +9 -9
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.d.ts +5 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +59 -48
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +9 -9
- package/src/View/Schedule/Wizard/ScheduleWizard.d.ts +1 -2
- package/src/View/Schedule/Wizard/ScheduleWizard.js +75 -2
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +6 -6
- package/src/View/Shortcut/Wizard/ShortcutWizard.d.ts +1 -2
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +31 -4
- package/src/View/SmartEdit/SmartEditPopup.js +3 -3
- package/src/View/StateManagement/StateManagementPopup.d.ts +2 -12
- package/src/View/StateManagement/StateManagementPopup.js +23 -115
- 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/SystemStatus/SystemStatusPopup.js +3 -3
- package/src/View/TeamSharing/TeamSharingPopup.js +2 -2
- package/src/View/Theme/ThemePopup.js +5 -7
- package/src/View/Theme/ThemeViewPanel.js +1 -1
- package/src/View/UIHelper.d.ts +3 -1
- package/src/View/UIHelper.js +35 -16
- package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +5 -0
- package/src/View/Wizard/OnePageAdaptableWizard.d.ts +2 -0
- package/src/View/Wizard/OnePageAdaptableWizard.js +10 -2
- package/src/agGrid/Adaptable.d.ts +24 -15
- package/src/agGrid/Adaptable.js +293 -132
- package/src/agGrid/agGridHelper.d.ts +5 -4
- package/src/agGrid/agGridHelper.js +26 -15
- package/src/agGrid/agGridMenuHelper.d.ts +15 -13
- package/src/agGrid/agGridMenuHelper.js +53 -45
- 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/ApplicationIcon.d.ts +5 -0
- package/src/components/ApplicationIcon.js +13 -0
- package/src/components/Dashboard/DashboardManager.js +1 -1
- package/src/components/Datepicker/Caption.d.ts +1 -1
- package/src/components/Datepicker/Caption.js +1 -4
- package/src/components/Datepicker/CaptionLabel.d.ts +1 -1
- package/src/components/Datepicker/CaptionLabel.js +1 -4
- package/src/components/Datepicker/DatepickerContext.d.ts +2 -2
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/Datepicker/index.js +10 -9
- package/src/components/Dialog/index.d.ts +4 -1
- package/src/components/Dialog/index.js +10 -3
- package/src/components/DropdownButton/index.d.ts +1 -0
- package/src/components/DropdownButton/index.js +2 -2
- package/src/components/EllipsisContainer/index.js +1 -1
- package/src/components/EmptyContent/index.js +2 -1
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- 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/PopupWithFooter.d.ts +1 -1
- package/src/components/PopupWithFooter.js +2 -7
- package/src/components/ProgressIndicator/ProgressIndicator.js +1 -1
- package/src/components/StylePreview.d.ts +8 -0
- package/src/components/StylePreview.js +11 -0
- package/src/components/Tag/Tag.d.ts +3 -0
- package/src/components/Tag/Tag.js +11 -0
- package/src/components/Tag/index.d.ts +1 -0
- package/src/components/Tag/index.js +5 -0
- package/src/components/Textarea/index.d.ts +1 -1
- package/src/components/ToggleButton/index.d.ts +1 -0
- package/src/components/ToggleButton/index.js +8 -4
- package/src/components/WindowModal/WindowModal.d.ts +23 -0
- package/src/components/WindowModal/WindowModal.js +87 -0
- package/src/components/WindowModal/index.d.ts +1 -0
- package/src/components/WindowModal/index.js +4 -0
- package/src/components/icons/index.js +6 -0
- package/src/components/icons/menu.d.ts +3 -0
- package/src/components/icons/menu.js +7 -0
- package/src/components/icons/state-management.js +1 -1
- package/src/components/icons/tool-panel.d.ts +3 -0
- package/src/components/icons/tool-panel.js +7 -0
- package/src/components/icons/upload.d.ts +3 -0
- package/src/components/icons/upload.js +8 -0
- package/src/components/utils/useDraggable.d.ts +3 -1
- package/src/components/utils/useDraggable.js +14 -2
- package/src/metamodel/adaptable.metamodel.d.ts +112 -78
- package/src/metamodel/adaptable.metamodel.js +477 -458
- package/src/types.d.ts +10 -8
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/Api/Events/FlashingAlertFired.d.ts +0 -11
- package/src/PredefinedConfig/DeprecatedState.d.ts +0 -82
- package/src/PredefinedConfig/DeprecatedState.js +0 -5
- package/src/View/Alert/AlertPopup.d.ts +0 -42
- package/src/View/Alert/AlertPopup.js +0 -205
- package/src/View/Alert/FlashingAlertEntityRow.d.ts +0 -7
- package/src/View/Alert/FlashingAlertEntityRow.js +0 -22
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertStyleWizardSection.d.ts +0 -10
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertWizard.d.ts +0 -6
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertWizard.js +0 -89
- package/src/View/CalculatedColumn/CalculatedColumnEntityRow.d.ts +0 -9
- package/src/View/CalculatedColumn/CalculatedColumnEntityRow.js +0 -28
- package/src/View/CalculatedColumn/CalculatedColumnPopup.d.ts +0 -25
- package/src/View/CalculatedColumn/CalculatedColumnPopup.js +0 -117
- package/src/View/Components/Buttons/SuspendToggleButton.js +0 -17
- package/src/View/Components/Popups/AdaptablePopup.d.ts +0 -23
- package/src/View/Components/Popups/AdaptablePopup.js +0 -59
- package/src/View/ConditionalStyle/ConditionalStyleEntityRow.d.ts +0 -5
- package/src/View/ConditionalStyle/ConditionalStyleEntityRow.js +0 -26
- package/src/View/ConditionalStyle/ConditionalStylePopup.d.ts +0 -30
- package/src/View/ConditionalStyle/ConditionalStylePopup.js +0 -144
- package/src/View/CustomSort/CustomSortEntityRow.d.ts +0 -10
- package/src/View/CustomSort/CustomSortEntityRow.js +0 -32
- package/src/View/CustomSort/CustomSortPopup.d.ts +0 -27
- package/src/View/CustomSort/CustomSortPopup.js +0 -138
- package/src/View/DataSource/DataSourceEntityRow.d.ts +0 -12
- package/src/View/DataSource/DataSourceEntityRow.js +0 -29
- package/src/View/DataSource/DataSourcePopup.d.ts +0 -28
- package/src/View/DataSource/DataSourcePopup.js +0 -97
- package/src/View/Export/ExportPopup.d.ts +0 -34
- package/src/View/Export/ExportPopup.js +0 -139
- package/src/View/Export/ReportEntityRow.d.ts +0 -10
- package/src/View/Export/ReportEntityRow.js +0 -49
- package/src/View/Export/Wizard/ReportWizard.d.ts +0 -7
- package/src/View/Export/Wizard/ReportWizard.js +0 -50
- package/src/View/Filter/FilterEntityRow.d.ts +0 -12
- package/src/View/Filter/FilterEntityRow.js +0 -20
- package/src/View/Filter/FilterPopup.d.ts +0 -20
- package/src/View/Filter/FilterPopup.js +0 -50
- package/src/View/FormatColumn/FormatColumnEntityRow.d.ts +0 -9
- package/src/View/FormatColumn/FormatColumnEntityRow.js +0 -103
- package/src/View/FormatColumn/FormatColumnPopup.d.ts +0 -27
- package/src/View/FormatColumn/FormatColumnPopup.js +0 -133
- package/src/View/FreeTextColumn/FreeTextColumnEntityRow.d.ts +0 -5
- package/src/View/FreeTextColumn/FreeTextColumnEntityRow.js +0 -31
- package/src/View/FreeTextColumn/FreeTextColumnPopup.d.ts +0 -25
- package/src/View/FreeTextColumn/FreeTextColumnPopup.js +0 -118
- package/src/View/PlusMinus/PlusMinusEntityRow.d.ts +0 -9
- package/src/View/PlusMinus/PlusMinusEntityRow.js +0 -24
- package/src/View/PlusMinus/PlusMinusPopup.d.ts +0 -30
- package/src/View/PlusMinus/PlusMinusPopup.js +0 -124
- package/src/View/Query/NamedQueryEntityRow.d.ts +0 -8
- package/src/View/Query/NamedQueryEntityRow.js +0 -21
- package/src/View/Query/QueryPopup.d.ts +0 -28
- package/src/View/Query/QueryPopup.js +0 -114
- package/src/View/Schedule/ScheduleEntityRow.d.ts +0 -5
- package/src/View/Schedule/ScheduleEntityRow.js +0 -58
- package/src/View/Schedule/SchedulePopup.d.ts +0 -58
- package/src/View/Schedule/SchedulePopup.js +0 -317
- package/src/View/Shortcut/ShortcutEntityRow.d.ts +0 -17
- package/src/View/Shortcut/ShortcutEntityRow.js +0 -47
- package/src/View/Shortcut/ShortcutPopup.d.ts +0 -30
- package/src/View/Shortcut/ShortcutPopup.js +0 -121
- package/src/bundle-dependencies/bundles/react-day-picker/DayPicker.d.ts +0 -88
- package/src/bundle-dependencies/bundles/react-day-picker/DayPicker.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/Button.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/Button.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/ButtonProps.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/Caption.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/Caption.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/CaptionProps.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabel.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabel.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabelProps.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/Day.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/Day.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/DayProps.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/useDay.d.ts +0 -51
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/useDayFocus.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/index.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContent.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContent.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContentProps.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/Dropdown.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/Dropdown.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/DropdownProps.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/Footer.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/Footer.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/Head.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/Head.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/getWeekdays.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/getWeekdays.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/IconDropdown.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/IconDropdown.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/IconNext.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/IconNext.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/IconPrevious.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/IconPrevious.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/MonthsDropdown.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/MonthsDropdownProps.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/Navigation.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/NavigationProps.d.ts +0 -18
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Root/Root.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/Root/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/Row.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/RowProps.d.ts +0 -11
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/Table.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getOutsideEndDays.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getOutsideStartDays.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getWeeks.d.ts +0 -15
- package/src/bundle-dependencies/bundles/react-day-picker/components/WeekNumber/WeekNumber.d.ts +0 -15
- package/src/bundle-dependencies/bundles/react-day-picker/components/WeekNumber/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/YearsDropdown/YearsDropdown.d.ts +0 -16
- package/src/bundle-dependencies/bundles/react-day-picker/components/YearsDropdown/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/index.d.ts +0 -18
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/ContextProvider.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerContext.d.ts +0 -78
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerContextValue.d.ts +0 -20
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerProvider.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/defaultClassNames.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatCaption.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatDay.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatMonthCaption.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatWeekNumber.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatWeekdayName.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatYearCaption.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/index.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/index.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelDay.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelMonthDropdown.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelNext.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelPrevious.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelWeekNumber.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelWeekday.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelYearDropdown.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/useDayPicker.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/parseFromToProps.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/parseModifierProps.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusContext.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusContextValue.d.ts +0 -19
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusProvider.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/index.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/useFocus.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationContext.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationContextValue.d.ts +0 -13
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationProvider.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/index.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/useNavigation.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/useNavigationState.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getDisplayMonths.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getInitialMonth.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getInitialMonth.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getNextMonth.d.ts +0 -18
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getNextMonth.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getPreviousMonth.d.ts +0 -19
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getPreviousMonth.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleContext.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleContextValue.d.ts +0 -13
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleModifiers.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleProvider.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/useSelectMultiple.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeContext.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeContextValue.d.ts +0 -13
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeModifiers.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeProvider.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/useSelectRange.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/utils/addToRange.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleContext.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleContextValue.d.ts +0 -11
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleModifiers.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleProvider.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/useSelectSingle.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/index.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInput.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputDayPickerProps.d.ts +0 -14
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputFieldProps.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputOptions.d.ts +0 -35
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/index.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/useInput.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/utils/isValidDate.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/types/UseModifiers.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/types/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/useModifiers.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/getModifierStatus.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/isDateInRange.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/isMatch.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/index.js +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/types/CaptionLayout.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/ClassNames.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/Components.d.ts +0 -33
- package/src/bundle-dependencies/bundles/react-day-picker/types/CustomModifiers.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateAfter.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateBefore.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateFormatter.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateInterval.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateRange.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayClickEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayFocusEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayKeyboardEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayLabelFormatter.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayMouseEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayOfWeekMatcher.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerBase.d.ts +0 -239
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerMultiple.d.ts +0 -15
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerProps.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerRange.d.ts +0 -16
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerSingle.d.ts +0 -13
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerUncontrolled.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayTouchEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/Formatters.d.ts +0 -19
- package/src/bundle-dependencies/bundles/react-day-picker/types/InternalModifier.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/types/Labels.d.ts +0 -17
- package/src/bundle-dependencies/bundles/react-day-picker/types/Matcher.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/types/Modifier.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierClassNames.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierStatus.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierStyles.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/Modifiers.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/MonthChangeEventHandler.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/NavButtonLabelFormatter.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectMultipleEventHandler.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectRangeEventHandler.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectSingleEventHandler.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/types/StyledComponentProps.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/types/StyledElement.d.ts +0 -76
- package/src/bundle-dependencies/bundles/react-day-picker/types/Styles.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberClickEventHandler.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberFormatter.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberLabelFormatter.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekdayLabelFormatter.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/index.d.ts +0 -54
- package/src/bundle-dependencies/bundles/react-day-picker/types/isArrayOfDates.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateAfterType.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateBeforeType.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateInterval.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateRange.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateType.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayOfWeekType.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerMultiple.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerRange.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerSingle.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerUncontrolled.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-toastify/components/CloseButton.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-toastify/components/ProgressBar.d.ts +0 -55
- package/src/bundle-dependencies/bundles/react-toastify/components/Toast.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-toastify/components/ToastContainer.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-toastify/components/Transitions.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-toastify/components/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-toastify/core/eventManager.d.ts +0 -39
- package/src/bundle-dependencies/bundles/react-toastify/core/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-toastify/core/toast.d.ts +0 -55
- package/src/bundle-dependencies/bundles/react-toastify/hooks/index.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-toastify/hooks/toastContainerReducer.d.ts +0 -15
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useKeeper.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useToast.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useToastContainer.d.ts +0 -16
- package/src/bundle-dependencies/bundles/react-toastify/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-toastify/index.js +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/inject-style.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-toastify/test/components/CloseButton.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/components/ProgressBar.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/components/Toast.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/components/ToastContainer.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/core/eventManager.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/core/toast.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/helpers.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/collapseToast.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/cssTransition.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/propValidator.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/types/index.d.ts +0 -240
- package/src/bundle-dependencies/bundles/react-toastify/utils/collapseToast.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-toastify/utils/constant.d.ts +0 -20
- package/src/bundle-dependencies/bundles/react-toastify/utils/cssTransition.d.ts +0 -42
- package/src/bundle-dependencies/bundles/react-toastify/utils/index.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-toastify/utils/propValidator.d.ts +0 -10
- package/src/components/OverlayTrigger/useVendorClassName.d.ts +0 -2
- package/src/components/Toastify/index.d.ts +0 -3
- package/src/components/Toastify/index.js +0 -10
|
@@ -69,7 +69,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
69
69
|
{
|
|
70
70
|
"name": "rowNode",
|
|
71
71
|
"kind": "REFERENCE",
|
|
72
|
-
"description": "Current Row Node",
|
|
72
|
+
"description": "Current AG Grid Row Node",
|
|
73
73
|
"uiLabel": "Row Node",
|
|
74
74
|
"reference": "unknown"
|
|
75
75
|
}
|
|
@@ -107,7 +107,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
107
107
|
{
|
|
108
108
|
"name": "width",
|
|
109
109
|
"kind": "number",
|
|
110
|
-
"description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by
|
|
110
|
+
"description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by AG Grid",
|
|
111
111
|
"uiLabel": "Width",
|
|
112
112
|
"isOptional": true
|
|
113
113
|
}
|
|
@@ -230,7 +230,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
230
230
|
{
|
|
231
231
|
"name": "dataChangeHistoryApi",
|
|
232
232
|
"kind": "REFERENCE",
|
|
233
|
-
"description": "Provides run-time access to the Data
|
|
233
|
+
"description": "Provides run-time access to the Data Changes Module",
|
|
234
234
|
"uiLabel": "Data Change History Api",
|
|
235
235
|
"reference": "DataChangeHistoryApi"
|
|
236
236
|
},
|
|
@@ -477,7 +477,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
477
477
|
"AdaptableColumn": {
|
|
478
478
|
"name": "AdaptableColumn",
|
|
479
479
|
"kind": "Interface",
|
|
480
|
-
"description": "Defines an Adaptable Column - created at run-time based on
|
|
480
|
+
"description": "Defines an Adaptable Column - created at run-time based on AG Grid column definition",
|
|
481
481
|
"properties": [
|
|
482
482
|
{
|
|
483
483
|
"name": "aggregatable",
|
|
@@ -568,6 +568,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
568
568
|
"description": "Can Column be moved at run-time to a new position",
|
|
569
569
|
"uiLabel": "Moveable"
|
|
570
570
|
},
|
|
571
|
+
{
|
|
572
|
+
"name": "pinned",
|
|
573
|
+
"kind": "unknown",
|
|
574
|
+
"description": "The pinned position of the column",
|
|
575
|
+
"uiLabel": "Pinned"
|
|
576
|
+
},
|
|
571
577
|
{
|
|
572
578
|
"name": "pivotable",
|
|
573
579
|
"kind": "boolean",
|
|
@@ -615,7 +621,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
615
621
|
{
|
|
616
622
|
"name": "columnId",
|
|
617
623
|
"kind": "string",
|
|
618
|
-
"description": "Name of Column in
|
|
624
|
+
"description": "Name of Column in AG Grid (e.g. field or colId)",
|
|
619
625
|
"uiLabel": "Column Id"
|
|
620
626
|
},
|
|
621
627
|
{
|
|
@@ -627,7 +633,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
627
633
|
{
|
|
628
634
|
"name": "friendlyName",
|
|
629
635
|
"kind": "string",
|
|
630
|
-
"description": "How Column is referred to in Adaptable UI;
|
|
636
|
+
"description": "How Column is referred to in Adaptable UI; `Caption` property in AG Grid",
|
|
631
637
|
"uiLabel": "Friendly Name"
|
|
632
638
|
}
|
|
633
639
|
]
|
|
@@ -664,7 +670,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
664
670
|
{
|
|
665
671
|
"name": "dataChangedInfo",
|
|
666
672
|
"kind": "REFERENCE",
|
|
667
|
-
"description": "Data change which triggered the
|
|
673
|
+
"description": "Data change which triggered the FlashingCell",
|
|
668
674
|
"uiLabel": "Data Changed Info",
|
|
669
675
|
"isOptional": true,
|
|
670
676
|
"reference": "DataChangedInfo"
|
|
@@ -682,11 +688,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
682
688
|
"uiLabel": "Flash Column Ids"
|
|
683
689
|
},
|
|
684
690
|
{
|
|
685
|
-
"name": "
|
|
691
|
+
"name": "flashingCellDefinition",
|
|
686
692
|
"kind": "REFERENCE",
|
|
687
|
-
"description": "Rule that caused the
|
|
688
|
-
"uiLabel": "Flashing
|
|
689
|
-
"reference": "
|
|
693
|
+
"description": "Rule that caused the FlashingCell to fire",
|
|
694
|
+
"uiLabel": "Flashing Cell Definition",
|
|
695
|
+
"reference": "FlashingCellDefinition"
|
|
690
696
|
},
|
|
691
697
|
{
|
|
692
698
|
"name": "flashTarget",
|
|
@@ -817,7 +823,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
817
823
|
"AdaptableMenuItem": {
|
|
818
824
|
"name": "AdaptableMenuItem",
|
|
819
825
|
"kind": "Interface",
|
|
820
|
-
"description": "Menu item used by Adaptable in
|
|
826
|
+
"description": "Menu item used by Adaptable in both Column and Context Menus",
|
|
821
827
|
"properties": [
|
|
822
828
|
{
|
|
823
829
|
"name": "icon",
|
|
@@ -841,21 +847,21 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
841
847
|
{
|
|
842
848
|
"name": "module",
|
|
843
849
|
"kind": "unknown",
|
|
844
|
-
"description": "Adaptable Module associated with (
|
|
850
|
+
"description": "Adaptable Module associated with (Adaptable) menu item.",
|
|
845
851
|
"uiLabel": "Module",
|
|
846
852
|
"isOptional": true
|
|
847
853
|
},
|
|
848
854
|
{
|
|
849
855
|
"name": "onClick",
|
|
850
856
|
"kind": "unknown",
|
|
851
|
-
"description": "Function to
|
|
857
|
+
"description": "Function to invoke when (custom) menu item is clicked",
|
|
852
858
|
"uiLabel": "On Click",
|
|
853
859
|
"isOptional": true
|
|
854
860
|
},
|
|
855
861
|
{
|
|
856
862
|
"name": "reduxAction",
|
|
857
863
|
"kind": "unknown",
|
|
858
|
-
"description": "Adaptable Redux Action to invoke when (
|
|
864
|
+
"description": "Adaptable Redux Action to invoke when (Adaptable) menu item is clicked",
|
|
859
865
|
"uiLabel": "Redux Action",
|
|
860
866
|
"isOptional": true
|
|
861
867
|
},
|
|
@@ -905,7 +911,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
905
911
|
"AdaptableOptions": {
|
|
906
912
|
"name": "AdaptableOptions",
|
|
907
913
|
"kind": "Interface",
|
|
908
|
-
"description": "Group of property options enabling developers to set up AdapTable at design time to fit precise requirements - provides
|
|
914
|
+
"description": "Group of property options enabling developers to set up AdapTable at design time to fit precise requirements - provides AG Grid, Predefined Config and other information required to ensure a full, rich user experience",
|
|
909
915
|
"properties": [
|
|
910
916
|
{
|
|
911
917
|
"name": "adaptableId",
|
|
@@ -925,6 +931,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
925
931
|
"gridInfo": "item",
|
|
926
932
|
"defaultValue": "`adaptableId` value"
|
|
927
933
|
},
|
|
934
|
+
{
|
|
935
|
+
"name": "agGridOptions",
|
|
936
|
+
"kind": "unknown",
|
|
937
|
+
"description": "The AG Grid object which AdapTable interacts with. Note: if using React or Angular Wrapper, no need to populate this property as AdapTable wires it up differently",
|
|
938
|
+
"uiLabel": "Ag Grid Options",
|
|
939
|
+
"isOptional": true,
|
|
940
|
+
"defaultValue": "n/a (Mandatory)"
|
|
941
|
+
},
|
|
928
942
|
{
|
|
929
943
|
"name": "autogeneratePrimaryKey",
|
|
930
944
|
"kind": "boolean",
|
|
@@ -937,7 +951,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
937
951
|
{
|
|
938
952
|
"name": "containerOptions",
|
|
939
953
|
"kind": "REFERENCE",
|
|
940
|
-
"description": "Options for setting the 'Div' elements in which AdapTable,
|
|
954
|
+
"description": "Options for setting the 'Div' elements in which AdapTable, AG Grid, popups and charts are placed",
|
|
941
955
|
"uiLabel": "Container Options",
|
|
942
956
|
"isOptional": true,
|
|
943
957
|
"reference": "ContainerOptions"
|
|
@@ -1087,6 +1101,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1087
1101
|
"gridInfo": "container",
|
|
1088
1102
|
"reference": "SearchOptions"
|
|
1089
1103
|
},
|
|
1104
|
+
{
|
|
1105
|
+
"name": "settingsPanelOptions",
|
|
1106
|
+
"kind": "REFERENCE",
|
|
1107
|
+
"description": "Setting panel options",
|
|
1108
|
+
"uiLabel": "Settings Panel Options",
|
|
1109
|
+
"isOptional": true,
|
|
1110
|
+
"reference": "unknown"
|
|
1111
|
+
},
|
|
1090
1112
|
{
|
|
1091
1113
|
"name": "stateOptions",
|
|
1092
1114
|
"kind": "REFERENCE",
|
|
@@ -1130,14 +1152,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1130
1152
|
"isOptional": true,
|
|
1131
1153
|
"gridInfo": "item",
|
|
1132
1154
|
"defaultValue": "'anonymous'"
|
|
1133
|
-
},
|
|
1134
|
-
{
|
|
1135
|
-
"name": "vendorGrid",
|
|
1136
|
-
"kind": "unknown",
|
|
1137
|
-
"description": "Underlying vendor grid or grid object which AdapTable interacts with. Note: if using React or Angular Wrapper, no need to populate this property (as `gridOptions` is a separate prop and AdapTable wires up everything)",
|
|
1138
|
-
"uiLabel": "Vendor Grid",
|
|
1139
|
-
"isOptional": true,
|
|
1140
|
-
"defaultValue": "n/a (Mandatory)"
|
|
1141
1155
|
}
|
|
1142
1156
|
]
|
|
1143
1157
|
},
|
|
@@ -1154,14 +1168,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1154
1168
|
{
|
|
1155
1169
|
"name": "Inputs",
|
|
1156
1170
|
"kind": "unknown",
|
|
1157
|
-
"description": "Optional
|
|
1171
|
+
"description": "Optional Inputs that might be needed for evaluation",
|
|
1158
1172
|
"uiLabel": "Inputs",
|
|
1159
1173
|
"isOptional": true
|
|
1160
1174
|
},
|
|
1161
1175
|
{
|
|
1162
1176
|
"name": "PredicateId",
|
|
1163
1177
|
"kind": "string",
|
|
1164
|
-
"description": "Id of Predicate (e.g.
|
|
1178
|
+
"description": "Id of Predicate (e.g. `Equals`, `GreaterThan`)",
|
|
1165
1179
|
"uiLabel": "Predicate Id"
|
|
1166
1180
|
}
|
|
1167
1181
|
]
|
|
@@ -1213,13 +1227,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1213
1227
|
{
|
|
1214
1228
|
"name": "moduleScope",
|
|
1215
1229
|
"kind": "unknown",
|
|
1216
|
-
"description": "
|
|
1230
|
+
"description": "Modules where Predicate can run: 'filter', 'alert', 'conditionalstyle'",
|
|
1217
1231
|
"uiLabel": "Module Scope"
|
|
1218
1232
|
},
|
|
1219
1233
|
{
|
|
1220
1234
|
"name": "onlyQuickFilter",
|
|
1221
1235
|
"kind": "boolean",
|
|
1222
|
-
"description": "
|
|
1236
|
+
"description": "Display this predicate only in Quick Filter Bar (and NOT in Filter Form)",
|
|
1223
1237
|
"uiLabel": "Only Quick Filter",
|
|
1224
1238
|
"isOptional": true
|
|
1225
1239
|
},
|
|
@@ -1245,10 +1259,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1245
1259
|
"description": "Object returned by `AdaptableReady` event - fired when AdapTable has loaded",
|
|
1246
1260
|
"properties": [
|
|
1247
1261
|
{
|
|
1248
|
-
"name": "
|
|
1249
|
-
"kind": "
|
|
1250
|
-
"description": "
|
|
1251
|
-
"uiLabel": "
|
|
1262
|
+
"name": "agGridOptions",
|
|
1263
|
+
"kind": "REFERENCE",
|
|
1264
|
+
"description": "Underlying AG Grid GridOptions object",
|
|
1265
|
+
"uiLabel": "Ag Grid Options",
|
|
1266
|
+
"reference": "unknown"
|
|
1252
1267
|
}
|
|
1253
1268
|
]
|
|
1254
1269
|
},
|
|
@@ -1377,49 +1392,49 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1377
1392
|
{
|
|
1378
1393
|
"name": "BackColor",
|
|
1379
1394
|
"kind": "string",
|
|
1380
|
-
"description": "Colour background of cell
|
|
1395
|
+
"description": "Colour background of cell: provide hex value or name",
|
|
1381
1396
|
"uiLabel": "Back Color",
|
|
1382
1397
|
"isOptional": true
|
|
1383
1398
|
},
|
|
1384
1399
|
{
|
|
1385
1400
|
"name": "BorderColor",
|
|
1386
1401
|
"kind": "string",
|
|
1387
|
-
"description": "Colour of cell border
|
|
1402
|
+
"description": "Colour of cell border: provide hex value or name",
|
|
1388
1403
|
"uiLabel": "Border Color",
|
|
1389
1404
|
"isOptional": true
|
|
1390
1405
|
},
|
|
1391
1406
|
{
|
|
1392
1407
|
"name": "ClassName",
|
|
1393
1408
|
"kind": "string",
|
|
1394
|
-
"description": "
|
|
1409
|
+
"description": "Existing CSS Class; use instead of setting other object properties",
|
|
1395
1410
|
"uiLabel": "Class Name",
|
|
1396
1411
|
"isOptional": true
|
|
1397
1412
|
},
|
|
1398
1413
|
{
|
|
1399
1414
|
"name": "FontSize",
|
|
1400
1415
|
"kind": "unknown",
|
|
1401
|
-
"description": "Size of font:
|
|
1416
|
+
"description": "Size of font: `XSmall`, `Small`, `Medium`, `Large` or `XLarge`",
|
|
1402
1417
|
"uiLabel": "Font Size",
|
|
1403
1418
|
"isOptional": true
|
|
1404
1419
|
},
|
|
1405
1420
|
{
|
|
1406
1421
|
"name": "FontStyle",
|
|
1407
1422
|
"kind": "unknown",
|
|
1408
|
-
"description": "Style of
|
|
1423
|
+
"description": "Style of font: `Normal` or `Italic`",
|
|
1409
1424
|
"uiLabel": "Font Style",
|
|
1410
1425
|
"isOptional": true
|
|
1411
1426
|
},
|
|
1412
1427
|
{
|
|
1413
1428
|
"name": "FontWeight",
|
|
1414
1429
|
"kind": "unknown",
|
|
1415
|
-
"description": "
|
|
1430
|
+
"description": "Weight of font: `Normal` or `Bold`",
|
|
1416
1431
|
"uiLabel": "Font Weight",
|
|
1417
1432
|
"isOptional": true
|
|
1418
1433
|
},
|
|
1419
1434
|
{
|
|
1420
1435
|
"name": "ForeColor",
|
|
1421
1436
|
"kind": "string",
|
|
1422
|
-
"description": "Font colour in cell
|
|
1437
|
+
"description": "Font colour in cell: provide hex value or name",
|
|
1423
1438
|
"uiLabel": "Fore Color",
|
|
1424
1439
|
"isOptional": true
|
|
1425
1440
|
}
|
|
@@ -1430,6 +1445,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1430
1445
|
"kind": "Interface",
|
|
1431
1446
|
"description": "Used for creating User (i.e. Custom) Themes",
|
|
1432
1447
|
"properties": [
|
|
1448
|
+
{
|
|
1449
|
+
"name": "AgGridClassName",
|
|
1450
|
+
"kind": "string",
|
|
1451
|
+
"description": "Ag Grid theme to apply when loading theme",
|
|
1452
|
+
"uiLabel": "Ag Grid Class Name",
|
|
1453
|
+
"isOptional": true
|
|
1454
|
+
},
|
|
1433
1455
|
{
|
|
1434
1456
|
"name": "Description",
|
|
1435
1457
|
"kind": "string",
|
|
@@ -1445,7 +1467,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1445
1467
|
{
|
|
1446
1468
|
"name": "VendorGridClassName",
|
|
1447
1469
|
"kind": "string",
|
|
1448
|
-
"description": "
|
|
1470
|
+
"description": "deprecated use `AgGridClassName` property instead",
|
|
1449
1471
|
"uiLabel": "Vendor Grid Class Name",
|
|
1450
1472
|
"isOptional": true
|
|
1451
1473
|
}
|
|
@@ -1483,18 +1505,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1483
1505
|
"description": "Adds new Alert Definition",
|
|
1484
1506
|
"uiLabel": "Add Alert Definition"
|
|
1485
1507
|
},
|
|
1486
|
-
{
|
|
1487
|
-
"name": "addFlashingAlertDefinition",
|
|
1488
|
-
"kind": "function",
|
|
1489
|
-
"description": "Adds a Flashing Alert Definition to State",
|
|
1490
|
-
"uiLabel": "Add Flashing Alert Definition"
|
|
1491
|
-
},
|
|
1492
|
-
{
|
|
1493
|
-
"name": "addFlashingAlertDefinitions",
|
|
1494
|
-
"kind": "function",
|
|
1495
|
-
"description": "Adds provided Flashing Alert Definitions",
|
|
1496
|
-
"uiLabel": "Add Flashing Alert Definitions"
|
|
1497
|
-
},
|
|
1498
1508
|
{
|
|
1499
1509
|
"name": "displayAlert",
|
|
1500
1510
|
"kind": "function",
|
|
@@ -1513,18 +1523,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1513
1523
|
"description": "Edits Alert in State with given one",
|
|
1514
1524
|
"uiLabel": "Edit Alert Definition"
|
|
1515
1525
|
},
|
|
1516
|
-
{
|
|
1517
|
-
"name": "editFlashingAlertDefinition",
|
|
1518
|
-
"kind": "function",
|
|
1519
|
-
"description": "Edits Flashing Alert in State with given one",
|
|
1520
|
-
"uiLabel": "Edit Flashing Alert Definition"
|
|
1521
|
-
},
|
|
1522
|
-
{
|
|
1523
|
-
"name": "editFlashingAlertDefinitions",
|
|
1524
|
-
"kind": "function",
|
|
1525
|
-
"description": "Edits provided Flashing Alert Definitions",
|
|
1526
|
-
"uiLabel": "Edit Flashing Alert Definitions"
|
|
1527
|
-
},
|
|
1528
1526
|
{
|
|
1529
1527
|
"name": "executeAlertAction",
|
|
1530
1528
|
"kind": "function",
|
|
@@ -1543,24 +1541,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1543
1541
|
"description": "Retrieves all active (non-suspended) Alert Definitions in Alert State which are NOT Reactive (BooleanQuery)",
|
|
1544
1542
|
"uiLabel": "Get Active Non Reactive Alert Definitions"
|
|
1545
1543
|
},
|
|
1546
|
-
{
|
|
1547
|
-
"name": "getActiveNonReactiveFlashingAlertDefinitions",
|
|
1548
|
-
"kind": "function",
|
|
1549
|
-
"description": "Retrieves all active (non-suspended) Alert Definitions in Alert State which are NOT Reactive (BooleanQuery)",
|
|
1550
|
-
"uiLabel": "Get Active Non Reactive Flashing Alert Definitions"
|
|
1551
|
-
},
|
|
1552
1544
|
{
|
|
1553
1545
|
"name": "getActiveReactiveAlertDefinitions",
|
|
1554
1546
|
"kind": "function",
|
|
1555
1547
|
"description": "Retrieves all active (non-suspended) Alert Definitions in Alert State which are reactive (ObservableQuery & AggregationQuery)",
|
|
1556
1548
|
"uiLabel": "Get Active Reactive Alert Definitions"
|
|
1557
1549
|
},
|
|
1558
|
-
{
|
|
1559
|
-
"name": "getActiveReactiveFlashingAlertDefinitions",
|
|
1560
|
-
"kind": "function",
|
|
1561
|
-
"description": "Retrieves all active (non-suspended) Flashing Alert Definitions in Alert State which are reactive (ObservableQuery & AggregationQuery)",
|
|
1562
|
-
"uiLabel": "Get Active Reactive Flashing Alert Definitions"
|
|
1563
|
-
},
|
|
1564
1550
|
{
|
|
1565
1551
|
"name": "getAdaptableFormByName",
|
|
1566
1552
|
"kind": "function",
|
|
@@ -1621,48 +1607,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1621
1607
|
"description": "Retrieves Alert section from Adaptable State",
|
|
1622
1608
|
"uiLabel": "Get Alert State"
|
|
1623
1609
|
},
|
|
1624
|
-
{
|
|
1625
|
-
"name": "getFlashingAlertDefinitionById",
|
|
1626
|
-
"kind": "function",
|
|
1627
|
-
"description": "Retrieves Flashing Alert Definition By Id",
|
|
1628
|
-
"uiLabel": "Get Flashing Alert Definition By Id"
|
|
1629
|
-
},
|
|
1630
|
-
{
|
|
1631
|
-
"name": "getFlashingAlertDefinitions",
|
|
1632
|
-
"kind": "function",
|
|
1633
|
-
"description": "Retrieves all Flashing Alert Definitions in Alert State",
|
|
1634
|
-
"uiLabel": "Get Flashing Alert Definitions"
|
|
1635
|
-
},
|
|
1636
|
-
{
|
|
1637
|
-
"name": "getFlashingAlertFlashTarget",
|
|
1638
|
-
"kind": "function",
|
|
1639
|
-
"description": "Returns where a Flashing Alert Definition will flash a single cell or a whole row",
|
|
1640
|
-
"uiLabel": "Get Flashing Alert Flash Target"
|
|
1641
|
-
},
|
|
1642
1610
|
{
|
|
1643
1611
|
"name": "getNonReactiveAlertDefinitions",
|
|
1644
1612
|
"kind": "function",
|
|
1645
1613
|
"description": "Retrieves all Alert Definitions in Alert State which are NOT Reactive (BooleanQuery)",
|
|
1646
1614
|
"uiLabel": "Get Non Reactive Alert Definitions"
|
|
1647
1615
|
},
|
|
1648
|
-
{
|
|
1649
|
-
"name": "getNonReactiveFlashingAlertDefinitions",
|
|
1650
|
-
"kind": "function",
|
|
1651
|
-
"description": "Retrieves all Alert Definitions in Alert State which are NOT Reactive (BooleanQuery)",
|
|
1652
|
-
"uiLabel": "Get Non Reactive Flashing Alert Definitions"
|
|
1653
|
-
},
|
|
1654
1616
|
{
|
|
1655
1617
|
"name": "getReactiveAlertDefinitions",
|
|
1656
1618
|
"kind": "function",
|
|
1657
1619
|
"description": "Retrieves all Alert Definitions in Alert State which are reactive (ObservableQuery & AggregationQuery)",
|
|
1658
1620
|
"uiLabel": "Get Reactive Alert Definitions"
|
|
1659
1621
|
},
|
|
1660
|
-
{
|
|
1661
|
-
"name": "getReactiveFlashingAlertDefinitions",
|
|
1662
|
-
"kind": "function",
|
|
1663
|
-
"description": "Retrieves all Flashing Alert Definitions in Alert State which are reactive (ObservableQuery & AggregationQuery)",
|
|
1664
|
-
"uiLabel": "Get Reactive Flashing Alert Definitions"
|
|
1665
|
-
},
|
|
1666
1622
|
{
|
|
1667
1623
|
"name": "publishAlertFiredEvent",
|
|
1668
1624
|
"kind": "function",
|
|
@@ -1705,35 +1661,17 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1705
1661
|
"description": "Creates Alert formed from inputted values and displays it as Warning Alert.",
|
|
1706
1662
|
"uiLabel": "Show Alert Warning"
|
|
1707
1663
|
},
|
|
1708
|
-
{
|
|
1709
|
-
"name": "showFlashingAlert",
|
|
1710
|
-
"kind": "function",
|
|
1711
|
-
"description": "Displays a Flashing Alert",
|
|
1712
|
-
"uiLabel": "Show Flashing Alert"
|
|
1713
|
-
},
|
|
1714
1664
|
{
|
|
1715
1665
|
"name": "suspendAlertDefinition",
|
|
1716
1666
|
"kind": "function",
|
|
1717
1667
|
"description": "Suspends Alert Definition",
|
|
1718
1668
|
"uiLabel": "Suspend Alert Definition"
|
|
1719
1669
|
},
|
|
1720
|
-
{
|
|
1721
|
-
"name": "suspendFlashingAlertDefinition",
|
|
1722
|
-
"kind": "function",
|
|
1723
|
-
"description": "Suspends a Flashing Alert Definition",
|
|
1724
|
-
"uiLabel": "Suspend Flashing Alert Definition"
|
|
1725
|
-
},
|
|
1726
1670
|
{
|
|
1727
1671
|
"name": "unSuspendAlertDefinition",
|
|
1728
1672
|
"kind": "function",
|
|
1729
1673
|
"description": "Activates a suspended Alert Definition",
|
|
1730
1674
|
"uiLabel": "Un Suspend Alert Definition"
|
|
1731
|
-
},
|
|
1732
|
-
{
|
|
1733
|
-
"name": "unSuspendFlashingAlertDefinition",
|
|
1734
|
-
"kind": "function",
|
|
1735
|
-
"description": "Activates a suspended Flashing Alert Definition",
|
|
1736
|
-
"uiLabel": "Un Suspend Flashing Alert Definition"
|
|
1737
1675
|
}
|
|
1738
1676
|
]
|
|
1739
1677
|
},
|
|
@@ -1827,6 +1765,20 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1827
1765
|
"description": "Type of Alert: 'Info', 'Success', 'Warning', 'Error'; influences Alert colour, icon and logging",
|
|
1828
1766
|
"uiLabel": "Message Type",
|
|
1829
1767
|
"reference": "AdaptableMessageType"
|
|
1768
|
+
},
|
|
1769
|
+
{
|
|
1770
|
+
"name": "Rule",
|
|
1771
|
+
"kind": "REFERENCE",
|
|
1772
|
+
"description": "When Alert should be triggered",
|
|
1773
|
+
"uiLabel": "Rule",
|
|
1774
|
+
"reference": "unknown"
|
|
1775
|
+
},
|
|
1776
|
+
{
|
|
1777
|
+
"name": "Scope",
|
|
1778
|
+
"kind": "REFERENCE",
|
|
1779
|
+
"description": "Where Alert can be triggered: one, some or all columns or DataTypes",
|
|
1780
|
+
"uiLabel": "Scope",
|
|
1781
|
+
"reference": "AdaptableScope"
|
|
1830
1782
|
}
|
|
1831
1783
|
]
|
|
1832
1784
|
},
|
|
@@ -1863,11 +1815,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1863
1815
|
},
|
|
1864
1816
|
{
|
|
1865
1817
|
"name": "HighlightCell",
|
|
1866
|
-
"kind": "
|
|
1818
|
+
"kind": "unknown",
|
|
1867
1819
|
"description": "Colours updated cell using `MessageType` property of triggering Alert Definition",
|
|
1868
1820
|
"uiLabel": "Highlight Cell",
|
|
1869
1821
|
"isOptional": true
|
|
1870
1822
|
},
|
|
1823
|
+
{
|
|
1824
|
+
"name": "HighlightRow",
|
|
1825
|
+
"kind": "unknown",
|
|
1826
|
+
"description": "Colours updated cell using `MessageType` property of triggering Alert Definition",
|
|
1827
|
+
"uiLabel": "Highlight Row",
|
|
1828
|
+
"isOptional": true
|
|
1829
|
+
},
|
|
1871
1830
|
{
|
|
1872
1831
|
"name": "JumpToCell",
|
|
1873
1832
|
"kind": "boolean",
|
|
@@ -1892,7 +1851,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1892
1851
|
{
|
|
1893
1852
|
"name": "ShowInDiv",
|
|
1894
1853
|
"kind": "boolean",
|
|
1895
|
-
"description": "Shows Alert text in the div specificed in `
|
|
1854
|
+
"description": "Shows Alert text in the div specificed in `alertContainer` property of Container Options",
|
|
1896
1855
|
"uiLabel": "Show In Div",
|
|
1897
1856
|
"isOptional": true
|
|
1898
1857
|
}
|
|
@@ -1901,7 +1860,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1901
1860
|
"AlertState": {
|
|
1902
1861
|
"name": "AlertState",
|
|
1903
1862
|
"kind": "Interface",
|
|
1904
|
-
"description": "Predefined Configuration for Alert
|
|
1863
|
+
"description": "Predefined Configuration for Alert Module",
|
|
1905
1864
|
"properties": [
|
|
1906
1865
|
{
|
|
1907
1866
|
"name": "AlertDefinitions",
|
|
@@ -1910,14 +1869,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1910
1869
|
"uiLabel": "Alert Definitions",
|
|
1911
1870
|
"isOptional": true,
|
|
1912
1871
|
"defaultValue": "null"
|
|
1913
|
-
},
|
|
1914
|
-
{
|
|
1915
|
-
"name": "FlashingAlertDefinitions",
|
|
1916
|
-
"kind": "unknown",
|
|
1917
|
-
"description": "Flashing Alert Definitions - will colour cells/rows when rule is met",
|
|
1918
|
-
"uiLabel": "Flashing Alert Definitions",
|
|
1919
|
-
"isOptional": true,
|
|
1920
|
-
"defaultValue": "null"
|
|
1921
1872
|
}
|
|
1922
1873
|
]
|
|
1923
1874
|
},
|
|
@@ -2023,7 +1974,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2023
1974
|
"ApplicationState": {
|
|
2024
1975
|
"name": "ApplicationState",
|
|
2025
1976
|
"kind": "Interface",
|
|
2026
|
-
"description": "Predefined Configuration for the Application
|
|
1977
|
+
"description": "Predefined Configuration for the Application Module",
|
|
2027
1978
|
"properties": [
|
|
2028
1979
|
{
|
|
2029
1980
|
"name": "ApplicationDataEntries",
|
|
@@ -2034,27 +1985,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2034
1985
|
}
|
|
2035
1986
|
]
|
|
2036
1987
|
},
|
|
2037
|
-
"BaseAlertDefinition": {
|
|
2038
|
-
"name": "BaseAlertDefinition",
|
|
2039
|
-
"kind": "Interface",
|
|
2040
|
-
"description": "Base object used in all Alert Definitions - contains `Scope` and a `Rule`",
|
|
2041
|
-
"properties": [
|
|
2042
|
-
{
|
|
2043
|
-
"name": "Rule",
|
|
2044
|
-
"kind": "REFERENCE",
|
|
2045
|
-
"description": "When Alert should be triggered",
|
|
2046
|
-
"uiLabel": "Rule",
|
|
2047
|
-
"reference": "unknown"
|
|
2048
|
-
},
|
|
2049
|
-
{
|
|
2050
|
-
"name": "Scope",
|
|
2051
|
-
"kind": "REFERENCE",
|
|
2052
|
-
"description": "Where Alert can be triggered: one, some or all columns or DataTypes",
|
|
2053
|
-
"uiLabel": "Scope",
|
|
2054
|
-
"reference": "AdaptableScope"
|
|
2055
|
-
}
|
|
2056
|
-
]
|
|
2057
|
-
},
|
|
2058
1988
|
"BulkUpdateApi": {
|
|
2059
1989
|
"name": "BulkUpdateApi",
|
|
2060
1990
|
"kind": "Interface",
|
|
@@ -2267,7 +2197,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2267
2197
|
"CalculatedColumnState": {
|
|
2268
2198
|
"name": "CalculatedColumnState",
|
|
2269
2199
|
"kind": "Interface",
|
|
2270
|
-
"description": "Predefined Configuration for Calculated Column
|
|
2200
|
+
"description": "Predefined Configuration for Calculated Column Module",
|
|
2271
2201
|
"properties": [
|
|
2272
2202
|
{
|
|
2273
2203
|
"name": "CalculatedColumns",
|
|
@@ -2304,14 +2234,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2304
2234
|
"description": "Id of Column containing Cell",
|
|
2305
2235
|
"uiLabel": "Column Id"
|
|
2306
2236
|
},
|
|
2307
|
-
{
|
|
2308
|
-
"name": "highlightType",
|
|
2309
|
-
"kind": "REFERENCE",
|
|
2310
|
-
"description": "Whether cell should show 'Info' (default), 'Success', 'Warning' or'Error' colour",
|
|
2311
|
-
"uiLabel": "Highlight Type",
|
|
2312
|
-
"isOptional": true,
|
|
2313
|
-
"reference": "AdaptableMessageType"
|
|
2314
|
-
},
|
|
2315
2237
|
{
|
|
2316
2238
|
"name": "primaryKeyValue",
|
|
2317
2239
|
"kind": "unknown",
|
|
@@ -2540,6 +2462,24 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2540
2462
|
"description": "Returns all Aggregatable Columns",
|
|
2541
2463
|
"uiLabel": "Get Aggregetable Columns"
|
|
2542
2464
|
},
|
|
2465
|
+
{
|
|
2466
|
+
"name": "getAgGridColumnFieldForAdaptableColumn",
|
|
2467
|
+
"kind": "function",
|
|
2468
|
+
"description": "Retrieves AG Grid's field property for the column",
|
|
2469
|
+
"uiLabel": "Get Ag Grid Column Field For Adaptable Column"
|
|
2470
|
+
},
|
|
2471
|
+
{
|
|
2472
|
+
"name": "getAgGridColumnForAdaptableColumn",
|
|
2473
|
+
"kind": "function",
|
|
2474
|
+
"description": "Retrieves AG Grid's column for an Adaptable column",
|
|
2475
|
+
"uiLabel": "Get Ag Grid Column For Adaptable Column"
|
|
2476
|
+
},
|
|
2477
|
+
{
|
|
2478
|
+
"name": "getAgGridColumnType",
|
|
2479
|
+
"kind": "function",
|
|
2480
|
+
"description": "Retrieves 'ColumnType' property for a given Column",
|
|
2481
|
+
"uiLabel": "Get Ag Grid Column Type"
|
|
2482
|
+
},
|
|
2543
2483
|
{
|
|
2544
2484
|
"name": "getAllColumnFriendlyNames",
|
|
2545
2485
|
"kind": "function",
|
|
@@ -2726,18 +2666,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2726
2666
|
"description": "Returns all string Columns",
|
|
2727
2667
|
"uiLabel": "Get String Columns"
|
|
2728
2668
|
},
|
|
2729
|
-
{
|
|
2730
|
-
"name": "getVendorColumnType",
|
|
2731
|
-
"kind": "function",
|
|
2732
|
-
"description": "Retrieves 'ColumnType' property for a given Column",
|
|
2733
|
-
"uiLabel": "Get Vendor Column Type"
|
|
2734
|
-
},
|
|
2735
|
-
{
|
|
2736
|
-
"name": "getVendorGridColumnFieldForColumn",
|
|
2737
|
-
"kind": "function",
|
|
2738
|
-
"description": "Retrieves the field property for the column",
|
|
2739
|
-
"uiLabel": "Get Vendor Grid Column Field For Column"
|
|
2740
|
-
},
|
|
2741
2669
|
{
|
|
2742
2670
|
"name": "getVisibleColumns",
|
|
2743
2671
|
"kind": "function",
|
|
@@ -2856,12 +2784,39 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2856
2784
|
{
|
|
2857
2785
|
"name": "Predicate",
|
|
2858
2786
|
"kind": "REFERENCE",
|
|
2859
|
-
"description": "
|
|
2787
|
+
"description": "`AdaptablePredicate` which AdaptableQL will evaluate when the Filter is run",
|
|
2860
2788
|
"uiLabel": "Predicate",
|
|
2861
2789
|
"reference": "unknown"
|
|
2862
2790
|
}
|
|
2863
2791
|
]
|
|
2864
2792
|
},
|
|
2793
|
+
"ColumnMenuContext": {
|
|
2794
|
+
"name": "ColumnMenuContext",
|
|
2795
|
+
"kind": "Interface",
|
|
2796
|
+
"description": "Provides full details about the Column where Column Menu will appear",
|
|
2797
|
+
"properties": [
|
|
2798
|
+
{
|
|
2799
|
+
"name": "adaptableColumn",
|
|
2800
|
+
"kind": "REFERENCE",
|
|
2801
|
+
"description": "Current Adaptable Column",
|
|
2802
|
+
"uiLabel": "Adaptable Column",
|
|
2803
|
+
"reference": "AdaptableColumn"
|
|
2804
|
+
},
|
|
2805
|
+
{
|
|
2806
|
+
"name": "agGridColumn",
|
|
2807
|
+
"kind": "REFERENCE",
|
|
2808
|
+
"description": "Current AG Grid Column",
|
|
2809
|
+
"uiLabel": "Ag Grid Column",
|
|
2810
|
+
"reference": "unknown"
|
|
2811
|
+
},
|
|
2812
|
+
{
|
|
2813
|
+
"name": "isRowGroupColumn",
|
|
2814
|
+
"kind": "boolean",
|
|
2815
|
+
"description": "Whether current Column is Row Group",
|
|
2816
|
+
"uiLabel": "Is Row Group Column"
|
|
2817
|
+
}
|
|
2818
|
+
]
|
|
2819
|
+
},
|
|
2865
2820
|
"ColumnSort": {
|
|
2866
2821
|
"name": "ColumnSort",
|
|
2867
2822
|
"kind": "Interface",
|
|
@@ -2886,18 +2841,19 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2886
2841
|
"kind": "Interface",
|
|
2887
2842
|
"description": "Comparer object for Column Values - used for custom sorting",
|
|
2888
2843
|
"properties": [
|
|
2889
|
-
{
|
|
2890
|
-
"name": "columnId",
|
|
2891
|
-
"kind": "string",
|
|
2892
|
-
"description": "Column for which to compare values",
|
|
2893
|
-
"uiLabel": "Column Id"
|
|
2894
|
-
},
|
|
2895
2844
|
{
|
|
2896
2845
|
"name": "comparer",
|
|
2897
2846
|
"kind": "REFERENCE",
|
|
2898
2847
|
"description": "Comparer function to use",
|
|
2899
2848
|
"uiLabel": "Comparer",
|
|
2900
2849
|
"reference": "AdaptableComparerFunction"
|
|
2850
|
+
},
|
|
2851
|
+
{
|
|
2852
|
+
"name": "scope",
|
|
2853
|
+
"kind": "REFERENCE",
|
|
2854
|
+
"description": "Column for which to compare values",
|
|
2855
|
+
"uiLabel": "Scope",
|
|
2856
|
+
"reference": "AdaptableScope"
|
|
2901
2857
|
}
|
|
2902
2858
|
]
|
|
2903
2859
|
},
|
|
@@ -3054,7 +3010,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3054
3010
|
"ConditionalStyleState": {
|
|
3055
3011
|
"name": "ConditionalStyleState",
|
|
3056
3012
|
"kind": "Interface",
|
|
3057
|
-
"description": "Predefined Configuration for the Conditional Style
|
|
3013
|
+
"description": "Predefined Configuration for the Conditional Style Module",
|
|
3058
3014
|
"properties": [
|
|
3059
3015
|
{
|
|
3060
3016
|
"name": "ConditionalStyles",
|
|
@@ -3322,6 +3278,24 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3322
3278
|
"gridInfo": "item",
|
|
3323
3279
|
"defaultValue": ""adaptable""
|
|
3324
3280
|
},
|
|
3281
|
+
{
|
|
3282
|
+
"name": "agGridContainer",
|
|
3283
|
+
"kind": "unknown",
|
|
3284
|
+
"description": "Div containing AG Grid instance - string Id or HTMLElement",
|
|
3285
|
+
"uiLabel": "Ag Grid Container",
|
|
3286
|
+
"isOptional": true,
|
|
3287
|
+
"gridInfo": "item",
|
|
3288
|
+
"defaultValue": ""grid""
|
|
3289
|
+
},
|
|
3290
|
+
{
|
|
3291
|
+
"name": "agGridContainerWaitTimeout",
|
|
3292
|
+
"kind": "number",
|
|
3293
|
+
"description": "how long AdapTable waits for AG Grid before giving up connecting to it; useful when AG Grid is instantiated separately (eg: by React or Angular Wrappers)",
|
|
3294
|
+
"uiLabel": "Ag Grid Container Wait Timeout",
|
|
3295
|
+
"isOptional": true,
|
|
3296
|
+
"gridInfo": "item",
|
|
3297
|
+
"defaultValue": "60s"
|
|
3298
|
+
},
|
|
3325
3299
|
{
|
|
3326
3300
|
"name": "alertContainer",
|
|
3327
3301
|
"kind": "unknown",
|
|
@@ -3357,24 +3331,92 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3357
3331
|
"isOptional": true,
|
|
3358
3332
|
"gridInfo": "item",
|
|
3359
3333
|
"defaultValue": "undefined"
|
|
3334
|
+
}
|
|
3335
|
+
]
|
|
3336
|
+
},
|
|
3337
|
+
"ContextMenuContext": {
|
|
3338
|
+
"name": "ContextMenuContext",
|
|
3339
|
+
"kind": "Interface",
|
|
3340
|
+
"description": "Provides full details about current cell (and selected cells) where Context Menu will appear",
|
|
3341
|
+
"properties": [
|
|
3342
|
+
{
|
|
3343
|
+
"name": "adaptableApi",
|
|
3344
|
+
"kind": "REFERENCE",
|
|
3345
|
+
"description": "The Adaptable Api - included as a convenience",
|
|
3346
|
+
"uiLabel": "Adaptable Api",
|
|
3347
|
+
"reference": "AdaptableApi"
|
|
3348
|
+
},
|
|
3349
|
+
{
|
|
3350
|
+
"name": "adaptableColumn",
|
|
3351
|
+
"kind": "REFERENCE",
|
|
3352
|
+
"description": "Current Adaptable Column",
|
|
3353
|
+
"uiLabel": "Adaptable Column",
|
|
3354
|
+
"reference": "AdaptableColumn"
|
|
3355
|
+
},
|
|
3356
|
+
{
|
|
3357
|
+
"name": "agGridColumn",
|
|
3358
|
+
"kind": "REFERENCE",
|
|
3359
|
+
"description": "Current AG Grid Column",
|
|
3360
|
+
"uiLabel": "Ag Grid Column",
|
|
3361
|
+
"reference": "unknown"
|
|
3362
|
+
},
|
|
3363
|
+
{
|
|
3364
|
+
"name": "gridCell",
|
|
3365
|
+
"kind": "REFERENCE",
|
|
3366
|
+
"description": "Cell that has been clicked; contains cell value",
|
|
3367
|
+
"uiLabel": "Grid Cell",
|
|
3368
|
+
"reference": "GridCell"
|
|
3369
|
+
},
|
|
3370
|
+
{
|
|
3371
|
+
"name": "isGroupedNode",
|
|
3372
|
+
"kind": "boolean",
|
|
3373
|
+
"description": "Whether current AG Grid row node is grouped",
|
|
3374
|
+
"uiLabel": "Is Grouped Node"
|
|
3375
|
+
},
|
|
3376
|
+
{
|
|
3377
|
+
"name": "isRowGroupColumn",
|
|
3378
|
+
"kind": "boolean",
|
|
3379
|
+
"description": "Whether current Column is Row Grouped",
|
|
3380
|
+
"uiLabel": "Is Row Group Column"
|
|
3360
3381
|
},
|
|
3361
3382
|
{
|
|
3362
|
-
"name": "
|
|
3383
|
+
"name": "isSelectedCell",
|
|
3384
|
+
"kind": "boolean",
|
|
3385
|
+
"description": "Whether cell that was clicked is also currently selected",
|
|
3386
|
+
"uiLabel": "Is Selected Cell"
|
|
3387
|
+
},
|
|
3388
|
+
{
|
|
3389
|
+
"name": "isSingleSelectedColumn",
|
|
3390
|
+
"kind": "boolean",
|
|
3391
|
+
"description": "Whether Column that was clicked is only column with selected cells",
|
|
3392
|
+
"uiLabel": "Is Single Selected Column"
|
|
3393
|
+
},
|
|
3394
|
+
{
|
|
3395
|
+
"name": "primaryKeyValue",
|
|
3363
3396
|
"kind": "unknown",
|
|
3364
|
-
"description": "
|
|
3365
|
-
"uiLabel": "
|
|
3366
|
-
"isOptional": true,
|
|
3367
|
-
"gridInfo": "item",
|
|
3368
|
-
"defaultValue": ""grid""
|
|
3397
|
+
"description": "Value of Primary Key column in current row",
|
|
3398
|
+
"uiLabel": "Primary Key Value"
|
|
3369
3399
|
},
|
|
3370
3400
|
{
|
|
3371
|
-
"name": "
|
|
3372
|
-
"kind": "
|
|
3373
|
-
"description": "
|
|
3374
|
-
"uiLabel": "
|
|
3375
|
-
"
|
|
3376
|
-
|
|
3377
|
-
|
|
3401
|
+
"name": "rowNode",
|
|
3402
|
+
"kind": "REFERENCE",
|
|
3403
|
+
"description": "Current AG Grid row node",
|
|
3404
|
+
"uiLabel": "Row Node",
|
|
3405
|
+
"reference": "unknown"
|
|
3406
|
+
},
|
|
3407
|
+
{
|
|
3408
|
+
"name": "selectedCellInfo",
|
|
3409
|
+
"kind": "REFERENCE",
|
|
3410
|
+
"description": "Currently selected cells in the grid",
|
|
3411
|
+
"uiLabel": "Selected Cell Info",
|
|
3412
|
+
"reference": "SelectedCellInfo"
|
|
3413
|
+
},
|
|
3414
|
+
{
|
|
3415
|
+
"name": "selectedRowInfo",
|
|
3416
|
+
"kind": "REFERENCE",
|
|
3417
|
+
"description": "Currently selected rows in the grid",
|
|
3418
|
+
"uiLabel": "Selected Row Info",
|
|
3419
|
+
"reference": "SelectedRowInfo"
|
|
3378
3420
|
}
|
|
3379
3421
|
]
|
|
3380
3422
|
},
|
|
@@ -3438,7 +3480,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3438
3480
|
{
|
|
3439
3481
|
"name": "SortedValues",
|
|
3440
3482
|
"kind": "unknown",
|
|
3441
|
-
"description": "Order of values by which Column will be sorted
|
|
3483
|
+
"description": "Order of values by which Column will be sorted",
|
|
3442
3484
|
"uiLabel": "Sorted Values",
|
|
3443
3485
|
"isOptional": true
|
|
3444
3486
|
}
|
|
@@ -3537,7 +3579,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3537
3579
|
"CustomSortState": {
|
|
3538
3580
|
"name": "CustomSortState",
|
|
3539
3581
|
"kind": "Interface",
|
|
3540
|
-
"description": "Predefined Configuration for Custom Sort
|
|
3582
|
+
"description": "Predefined Configuration for Custom Sort Module",
|
|
3541
3583
|
"properties": [
|
|
3542
3584
|
{
|
|
3543
3585
|
"name": "CustomSorts",
|
|
@@ -3963,19 +4005,19 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3963
4005
|
"isOptional": true
|
|
3964
4006
|
},
|
|
3965
4007
|
{
|
|
3966
|
-
"name": "
|
|
4008
|
+
"name": "showQuickSearchInHeader",
|
|
3967
4009
|
"kind": "boolean",
|
|
3968
|
-
"description": "Shows
|
|
3969
|
-
"uiLabel": "Show
|
|
4010
|
+
"description": "Shows Quick Search textbox in the Dashboard Header; the UI component is still subject to the QuickSearch Entitlements",
|
|
4011
|
+
"uiLabel": "Show Quick Search In Header",
|
|
3970
4012
|
"isOptional": true,
|
|
3971
4013
|
"gridInfo": "item",
|
|
3972
4014
|
"defaultValue": "true"
|
|
3973
4015
|
},
|
|
3974
4016
|
{
|
|
3975
|
-
"name": "
|
|
4017
|
+
"name": "showSettingsPanel",
|
|
3976
4018
|
"kind": "boolean",
|
|
3977
|
-
"description": "
|
|
3978
|
-
"uiLabel": "Show
|
|
4019
|
+
"description": "Displays a button which opens the Settings Panel",
|
|
4020
|
+
"uiLabel": "Show Settings Panel",
|
|
3979
4021
|
"isOptional": true,
|
|
3980
4022
|
"gridInfo": "item",
|
|
3981
4023
|
"defaultValue": "true"
|
|
@@ -4048,15 +4090,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4048
4090
|
"description": "Module Buttons visible in Dasbhoard Header when application loads - open popup screen for associated AdapTable Module",
|
|
4049
4091
|
"uiLabel": "Module Buttons",
|
|
4050
4092
|
"isOptional": true,
|
|
4051
|
-
"defaultValue": "
|
|
4093
|
+
"defaultValue": "Empty Array",
|
|
4052
4094
|
"reference": "unknown"
|
|
4053
4095
|
},
|
|
4054
4096
|
{
|
|
4055
4097
|
"name": "Tabs",
|
|
4056
4098
|
"kind": "unknown",
|
|
4057
|
-
"description": "Named group of Toolbars
|
|
4099
|
+
"description": "Named group of Toolbars",
|
|
4058
4100
|
"uiLabel": "Tabs",
|
|
4059
|
-
"isOptional": true
|
|
4101
|
+
"isOptional": true,
|
|
4102
|
+
"defaultValue": "Empty Array"
|
|
4060
4103
|
}
|
|
4061
4104
|
]
|
|
4062
4105
|
},
|
|
@@ -4125,7 +4168,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4125
4168
|
{
|
|
4126
4169
|
"name": "rowNode",
|
|
4127
4170
|
"kind": "REFERENCE",
|
|
4128
|
-
"description": "RowNode that contains the cell
|
|
4171
|
+
"description": "AG Grid RowNode that contains the cell",
|
|
4129
4172
|
"uiLabel": "Row Node",
|
|
4130
4173
|
"isOptional": true,
|
|
4131
4174
|
"reference": "unknown"
|
|
@@ -4168,6 +4211,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4168
4211
|
"description": "Retrieves current Data Change History mode: 'ACTIVE', 'INACTIVE', 'SUSPENDED'",
|
|
4169
4212
|
"uiLabel": "Get Data Change History Mode"
|
|
4170
4213
|
},
|
|
4214
|
+
{
|
|
4215
|
+
"name": "showDataChangeHistoryPopup",
|
|
4216
|
+
"kind": "function",
|
|
4217
|
+
"description": "Opens Data Change History screen",
|
|
4218
|
+
"uiLabel": "Show Data Change History Popup"
|
|
4219
|
+
},
|
|
4171
4220
|
{
|
|
4172
4221
|
"name": "suspendDataChangeHistory",
|
|
4173
4222
|
"kind": "function",
|
|
@@ -4190,17 +4239,17 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4190
4239
|
{
|
|
4191
4240
|
"name": "activeByDefault",
|
|
4192
4241
|
"kind": "boolean",
|
|
4193
|
-
"description": "Whether data change history should be active by default
|
|
4242
|
+
"description": "Whether data change history should be active by default",
|
|
4194
4243
|
"uiLabel": "Active By Default",
|
|
4195
4244
|
"isOptional": true,
|
|
4196
4245
|
"gridInfo": "item",
|
|
4197
4246
|
"defaultValue": "false"
|
|
4198
4247
|
},
|
|
4199
4248
|
{
|
|
4200
|
-
"name": "
|
|
4249
|
+
"name": "showDataChange",
|
|
4201
4250
|
"kind": "unknown",
|
|
4202
|
-
"description": "Function
|
|
4203
|
-
"uiLabel": "
|
|
4251
|
+
"description": "Function specifying which data changes to include in Data Change History",
|
|
4252
|
+
"uiLabel": "Show Data Change",
|
|
4204
4253
|
"isOptional": true,
|
|
4205
4254
|
"gridInfo": "item",
|
|
4206
4255
|
"defaultValue": "undefined (all data changes are logged)"
|
|
@@ -4303,7 +4352,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4303
4352
|
"DataSourceState": {
|
|
4304
4353
|
"name": "DataSourceState",
|
|
4305
4354
|
"kind": "Interface",
|
|
4306
|
-
"description": "Predefined Configuration for Data Source
|
|
4355
|
+
"description": "Predefined Configuration for Data Source Module",
|
|
4307
4356
|
"properties": [
|
|
4308
4357
|
{
|
|
4309
4358
|
"name": "CurrentDataSource",
|
|
@@ -4431,7 +4480,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4431
4480
|
{
|
|
4432
4481
|
"name": "displayServerValidationMessages",
|
|
4433
4482
|
"kind": "boolean",
|
|
4434
|
-
"description": "Displays message after Server Validation
|
|
4483
|
+
"description": "Displays message after Server Validation",
|
|
4435
4484
|
"uiLabel": "Display Server Validation Messages",
|
|
4436
4485
|
"isOptional": true,
|
|
4437
4486
|
"gridInfo": "item",
|
|
@@ -4440,7 +4489,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4440
4489
|
{
|
|
4441
4490
|
"name": "isCellEditable",
|
|
4442
4491
|
"kind": "unknown",
|
|
4443
|
-
"description": "Function which
|
|
4492
|
+
"description": "Function which checks if given Grid Cell is editable",
|
|
4444
4493
|
"uiLabel": "Is Cell Editable",
|
|
4445
4494
|
"isOptional": true
|
|
4446
4495
|
},
|
|
@@ -4575,7 +4624,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4575
4624
|
{
|
|
4576
4625
|
"name": "off",
|
|
4577
4626
|
"kind": "function",
|
|
4578
|
-
"description": "Unsubscribe from
|
|
4627
|
+
"description": "Unsubscribe from FlashingCellDisplayed",
|
|
4579
4628
|
"uiLabel": "Off"
|
|
4580
4629
|
},
|
|
4581
4630
|
{
|
|
@@ -4671,7 +4720,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4671
4720
|
{
|
|
4672
4721
|
"name": "on",
|
|
4673
4722
|
"kind": "function",
|
|
4674
|
-
"description": "Event fired whenever a **
|
|
4723
|
+
"description": "Event fired whenever a **FlashingCell is triggered** in AdapTable.",
|
|
4675
4724
|
"uiLabel": "On"
|
|
4676
4725
|
}
|
|
4677
4726
|
]
|
|
@@ -4858,7 +4907,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4858
4907
|
{
|
|
4859
4908
|
"name": "appendFileTimestamp",
|
|
4860
4909
|
"kind": "boolean",
|
|
4861
|
-
"description": "Whether to add a timestamp
|
|
4910
|
+
"description": "Whether to add a timestamp as a suffix to exported file name",
|
|
4862
4911
|
"uiLabel": "Append File Timestamp",
|
|
4863
4912
|
"isOptional": true,
|
|
4864
4913
|
"gridInfo": "item",
|
|
@@ -4920,7 +4969,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4920
4969
|
"ExportState": {
|
|
4921
4970
|
"name": "ExportState",
|
|
4922
4971
|
"kind": "Interface",
|
|
4923
|
-
"description": "Predefined Configuration for Export
|
|
4972
|
+
"description": "Predefined Configuration for Export Module",
|
|
4924
4973
|
"properties": [
|
|
4925
4974
|
{
|
|
4926
4975
|
"name": "CurrentDestination",
|
|
@@ -5261,7 +5310,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5261
5310
|
{
|
|
5262
5311
|
"name": "autoApplyFilter",
|
|
5263
5312
|
"kind": "boolean",
|
|
5264
|
-
"description": "Apply selected filters in Filter Form as soon as they are clicked; if false an Apply Filter button is displayed",
|
|
5313
|
+
"description": "Apply selected filters (in Filter Form or Quick Filter Bar) as soon as they are clicked; if false an Apply Filter button is displayed",
|
|
5265
5314
|
"uiLabel": "Auto Apply Filter",
|
|
5266
5315
|
"isOptional": true,
|
|
5267
5316
|
"gridInfo": "item",
|
|
@@ -5342,7 +5391,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5342
5391
|
{
|
|
5343
5392
|
"name": "hideQuickFilterDropdown",
|
|
5344
5393
|
"kind": "unknown",
|
|
5345
|
-
"description": "
|
|
5394
|
+
"description": "Hides the Dropdown in Quick Filter Bar for a given Column",
|
|
5346
5395
|
"uiLabel": "Hide Quick Filter Dropdown",
|
|
5347
5396
|
"isOptional": true,
|
|
5348
5397
|
"defaultValue": "undefined"
|
|
@@ -5350,7 +5399,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5350
5399
|
{
|
|
5351
5400
|
"name": "hideQuickFilterInput",
|
|
5352
5401
|
"kind": "unknown",
|
|
5353
|
-
"description": "
|
|
5402
|
+
"description": "Hides the Input in Quick Filter Bar for a given Column",
|
|
5354
5403
|
"uiLabel": "Hide Quick Filter Input",
|
|
5355
5404
|
"isOptional": true,
|
|
5356
5405
|
"defaultValue": "undefined"
|
|
@@ -5403,7 +5452,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5403
5452
|
{
|
|
5404
5453
|
"name": "systemFilters",
|
|
5405
5454
|
"kind": "REFERENCE",
|
|
5406
|
-
"description": "Which Adaptable System Filter Predicates are available
|
|
5455
|
+
"description": "Which Adaptable System Filter Predicates are available",
|
|
5407
5456
|
"uiLabel": "System Filters",
|
|
5408
5457
|
"isOptional": true,
|
|
5409
5458
|
"reference": "unknown"
|
|
@@ -5411,7 +5460,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5411
5460
|
{
|
|
5412
5461
|
"name": "useAdaptableFilterForm",
|
|
5413
5462
|
"kind": "unknown",
|
|
5414
|
-
"description": "Uses Adaptable's Filter Form in Column
|
|
5463
|
+
"description": "Uses Adaptable's Filter Form in Column Menu for all columns if 'true' (the default) or those listed, in preference to AG Grid's Filter Form",
|
|
5415
5464
|
"uiLabel": "Use Adaptable Filter Form",
|
|
5416
5465
|
"isOptional": true,
|
|
5417
5466
|
"defaultValue": "true"
|
|
@@ -5419,17 +5468,17 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5419
5468
|
{
|
|
5420
5469
|
"name": "useAdaptableQuickFilter",
|
|
5421
5470
|
"kind": "unknown",
|
|
5422
|
-
"description": "Use Adaptable's Quick Filter for all columns if 'true' (the default) or those listed
|
|
5471
|
+
"description": "Use Adaptable's Quick Filter Bar for all columns if 'true' (the default) or those listed, in preference to AG Grid's Floating Filter",
|
|
5423
5472
|
"uiLabel": "Use Adaptable Quick Filter",
|
|
5424
5473
|
"isOptional": true,
|
|
5425
5474
|
"gridInfo": "item",
|
|
5426
5475
|
"defaultValue": "true"
|
|
5427
5476
|
},
|
|
5428
5477
|
{
|
|
5429
|
-
"name": "
|
|
5478
|
+
"name": "useAgGridFilterFormStyle",
|
|
5430
5479
|
"kind": "boolean",
|
|
5431
|
-
"description": "Styles Adaptable Filter Form to match
|
|
5432
|
-
"uiLabel": "Use
|
|
5480
|
+
"description": "Styles Adaptable Filter Form to match AG Grid's current styling",
|
|
5481
|
+
"uiLabel": "Use Ag Grid Filter Form Style",
|
|
5433
5482
|
"isOptional": true,
|
|
5434
5483
|
"gridInfo": "item",
|
|
5435
5484
|
"defaultValue": "true"
|
|
@@ -5442,10 +5491,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5442
5491
|
"description": "Used to define values inside the floating filter and floating filter (quick filter)",
|
|
5443
5492
|
"properties": [
|
|
5444
5493
|
{
|
|
5445
|
-
"name": "
|
|
5494
|
+
"name": "suppressFilterSearchBar",
|
|
5446
5495
|
"kind": "boolean",
|
|
5447
5496
|
"description": "Prevents AdapTable from filtering the list of values client-side; When true, values is called each time the search bar is changed false",
|
|
5448
|
-
"uiLabel": "Suppress
|
|
5497
|
+
"uiLabel": "Suppress Filter Search Bar",
|
|
5449
5498
|
"isOptional": true
|
|
5450
5499
|
}
|
|
5451
5500
|
]
|
|
@@ -5465,7 +5514,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5465
5514
|
{
|
|
5466
5515
|
"name": "IsQuickFilterVisible",
|
|
5467
5516
|
"kind": "boolean",
|
|
5468
|
-
"description": "Whether to display Quick Filter Bar
|
|
5517
|
+
"description": "Whether to display Quick Filter Bar between Column Header and the Grid",
|
|
5469
5518
|
"uiLabel": "Is Quick Filter Visible",
|
|
5470
5519
|
"isOptional": true,
|
|
5471
5520
|
"defaultValue": "true"
|
|
@@ -5506,27 +5555,43 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5506
5555
|
}
|
|
5507
5556
|
]
|
|
5508
5557
|
},
|
|
5509
|
-
"
|
|
5510
|
-
"name": "
|
|
5558
|
+
"FlashingCellDefinition": {
|
|
5559
|
+
"name": "FlashingCellDefinition",
|
|
5511
5560
|
"kind": "Interface",
|
|
5512
|
-
"description": "The Flashing
|
|
5561
|
+
"description": "The Flashing Cell Definition",
|
|
5562
|
+
"properties": [
|
|
5563
|
+
{
|
|
5564
|
+
"name": "Rule",
|
|
5565
|
+
"kind": "REFERENCE",
|
|
5566
|
+
"description": "When Alert should be triggered",
|
|
5567
|
+
"uiLabel": "Rule",
|
|
5568
|
+
"reference": "unknown"
|
|
5569
|
+
},
|
|
5570
|
+
{
|
|
5571
|
+
"name": "Scope",
|
|
5572
|
+
"kind": "REFERENCE",
|
|
5573
|
+
"description": "Where Alert can be triggered: one, some or all columns or DataTypes",
|
|
5574
|
+
"uiLabel": "Scope",
|
|
5575
|
+
"reference": "AdaptableScope"
|
|
5576
|
+
}
|
|
5577
|
+
]
|
|
5513
5578
|
},
|
|
5514
|
-
"
|
|
5515
|
-
"name": "
|
|
5579
|
+
"FlashingCellDisplayedInfo": {
|
|
5580
|
+
"name": "FlashingCellDisplayedInfo",
|
|
5516
5581
|
"kind": "Interface",
|
|
5517
5582
|
"description": "Object returned by the `FlashingAlertFired` event",
|
|
5518
5583
|
"properties": [
|
|
5519
5584
|
{
|
|
5520
|
-
"name": "
|
|
5585
|
+
"name": "flashingCell",
|
|
5521
5586
|
"kind": "REFERENCE",
|
|
5522
5587
|
"description": "FlashingAlert which has been fired",
|
|
5523
|
-
"uiLabel": "Flashing
|
|
5524
|
-
"reference": "
|
|
5588
|
+
"uiLabel": "Flashing Cell",
|
|
5589
|
+
"reference": "unknown"
|
|
5525
5590
|
}
|
|
5526
5591
|
]
|
|
5527
5592
|
},
|
|
5528
|
-
"
|
|
5529
|
-
"name": "
|
|
5593
|
+
"FlashingCellProperties": {
|
|
5594
|
+
"name": "FlashingCellProperties",
|
|
5530
5595
|
"kind": "Interface",
|
|
5531
5596
|
"description": "Properties to use in Flashing Alerts",
|
|
5532
5597
|
"properties": [
|
|
@@ -5575,6 +5640,21 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5575
5640
|
}
|
|
5576
5641
|
]
|
|
5577
5642
|
},
|
|
5643
|
+
"FlashingCellState": {
|
|
5644
|
+
"name": "FlashingCellState",
|
|
5645
|
+
"kind": "Interface",
|
|
5646
|
+
"description": "Predefined Configuration for Flashing Cell module",
|
|
5647
|
+
"properties": [
|
|
5648
|
+
{
|
|
5649
|
+
"name": "FlashingCellDefinitions",
|
|
5650
|
+
"kind": "unknown",
|
|
5651
|
+
"description": "Flashing Alert Definitions - will colour cells/rows when rule is met",
|
|
5652
|
+
"uiLabel": "Flashing Cell Definitions",
|
|
5653
|
+
"isOptional": true,
|
|
5654
|
+
"defaultValue": "null"
|
|
5655
|
+
}
|
|
5656
|
+
]
|
|
5657
|
+
},
|
|
5578
5658
|
"FormatColumn": {
|
|
5579
5659
|
"name": "FormatColumn",
|
|
5580
5660
|
"kind": "Interface",
|
|
@@ -5831,7 +5911,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5831
5911
|
"FormatColumnState": {
|
|
5832
5912
|
"name": "FormatColumnState",
|
|
5833
5913
|
"kind": "Interface",
|
|
5834
|
-
"description": "Predefined Configuration for Format Column
|
|
5914
|
+
"description": "Predefined Configuration for Format Column Module",
|
|
5835
5915
|
"properties": [
|
|
5836
5916
|
{
|
|
5837
5917
|
"name": "FormatColumns",
|
|
@@ -5856,7 +5936,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5856
5936
|
{
|
|
5857
5937
|
"name": "DataType",
|
|
5858
5938
|
"kind": "unknown",
|
|
5859
|
-
"description": "Whether Column is String, Number, Boolean or Date
|
|
5939
|
+
"description": "Whether Column is String, Number, Boolean or Date",
|
|
5860
5940
|
"uiLabel": "Data Type",
|
|
5861
5941
|
"isOptional": true,
|
|
5862
5942
|
"defaultValue": "'String'"
|
|
@@ -5893,7 +5973,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5893
5973
|
{
|
|
5894
5974
|
"name": "TextEditor",
|
|
5895
5975
|
"kind": "unknown",
|
|
5896
|
-
"description": "Cell editor to use when editing a Free Text Column
|
|
5976
|
+
"description": "Cell editor to use when editing a string Free Text Column *",
|
|
5897
5977
|
"uiLabel": "Text Editor",
|
|
5898
5978
|
"isOptional": true,
|
|
5899
5979
|
"defaultValue": "'Inline'"
|
|
@@ -5993,7 +6073,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5993
6073
|
"FreeTextColumnState": {
|
|
5994
6074
|
"name": "FreeTextColumnState",
|
|
5995
6075
|
"kind": "Interface",
|
|
5996
|
-
"description": "Predefined Configuration for the Free Text Column
|
|
6076
|
+
"description": "Predefined Configuration for the Free Text Column Module",
|
|
5997
6077
|
"properties": [
|
|
5998
6078
|
{
|
|
5999
6079
|
"name": "FreeTextColumns",
|
|
@@ -6026,7 +6106,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6026
6106
|
"GeneralOptions": {
|
|
6027
6107
|
"name": "GeneralOptions",
|
|
6028
6108
|
"kind": "Interface",
|
|
6029
|
-
"description": "General options for configuring AdapTable including managing Primary Keys
|
|
6109
|
+
"description": "General options for configuring AdapTable including managing Primary Keys",
|
|
6030
6110
|
"properties": [
|
|
6031
6111
|
{
|
|
6032
6112
|
"name": "alternativeModuleNames",
|
|
@@ -6363,7 +6443,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6363
6443
|
{
|
|
6364
6444
|
"name": "addGridData",
|
|
6365
6445
|
"kind": "function",
|
|
6366
|
-
"description": "Adds rows to Adaptable (and
|
|
6446
|
+
"description": "Adds rows to Adaptable (and AG Grid)",
|
|
6367
6447
|
"uiLabel": "Add Grid Data"
|
|
6368
6448
|
},
|
|
6369
6449
|
{
|
|
@@ -6405,7 +6485,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6405
6485
|
{
|
|
6406
6486
|
"name": "deleteGridData",
|
|
6407
6487
|
"kind": "function",
|
|
6408
|
-
"description": "Deletes rows from Adaptable (and
|
|
6488
|
+
"description": "Deletes rows from Adaptable (and AG Grid)",
|
|
6409
6489
|
"uiLabel": "Delete Grid Data"
|
|
6410
6490
|
},
|
|
6411
6491
|
{
|
|
@@ -6459,13 +6539,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6459
6539
|
{
|
|
6460
6540
|
"name": "fireCellChangedEvent",
|
|
6461
6541
|
"kind": "function",
|
|
6462
|
-
"description": "Fires
|
|
6542
|
+
"description": "Fires Cell Changed Changed Event - when any data in AG Grid's dataset has changed",
|
|
6463
6543
|
"uiLabel": "Fire Cell Changed Event"
|
|
6464
6544
|
},
|
|
6465
6545
|
{
|
|
6466
6546
|
"name": "fireGridDataChangedEvent",
|
|
6467
6547
|
"kind": "function",
|
|
6468
|
-
"description": "Fires Grid Data Changed Event - when
|
|
6548
|
+
"description": "Fires Grid Data Changed Event - when a row has changed in AG Grid",
|
|
6469
6549
|
"uiLabel": "Fire Grid Data Changed Event"
|
|
6470
6550
|
},
|
|
6471
6551
|
{
|
|
@@ -6474,6 +6554,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6474
6554
|
"description": "Fires Search Changed Event - typically used to enable server searching and filtering",
|
|
6475
6555
|
"uiLabel": "Fire Search Changed Event"
|
|
6476
6556
|
},
|
|
6557
|
+
{
|
|
6558
|
+
"name": "getAgGridInstance",
|
|
6559
|
+
"kind": "function",
|
|
6560
|
+
"description": "Returns Ag Grid instance (passed into Adaptable Options at start-up)",
|
|
6561
|
+
"uiLabel": "Get Ag Grid Instance"
|
|
6562
|
+
},
|
|
6477
6563
|
{
|
|
6478
6564
|
"name": "getCellDisplayValue",
|
|
6479
6565
|
"kind": "function",
|
|
@@ -6618,12 +6704,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6618
6704
|
"description": "Returns all current Selected Rows in AdapTable",
|
|
6619
6705
|
"uiLabel": "Get Selected Row Info"
|
|
6620
6706
|
},
|
|
6621
|
-
{
|
|
6622
|
-
"name": "getVendorGrid",
|
|
6623
|
-
"kind": "function",
|
|
6624
|
-
"description": "Returns underlying Vendor Grid (object passed into Adaptable Options at start-up)",
|
|
6625
|
-
"uiLabel": "Get Vendor Grid"
|
|
6626
|
-
},
|
|
6627
6707
|
{
|
|
6628
6708
|
"name": "getVisibleColumnCount",
|
|
6629
6709
|
"kind": "function",
|
|
@@ -6654,6 +6734,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6654
6734
|
"description": "Highlights a Cell in AdapTable",
|
|
6655
6735
|
"uiLabel": "Highlight Cell"
|
|
6656
6736
|
},
|
|
6737
|
+
{
|
|
6738
|
+
"name": "highlightRow",
|
|
6739
|
+
"kind": "function",
|
|
6740
|
+
"description": "Highlight a row using an adaptable style",
|
|
6741
|
+
"uiLabel": "Highlight Row"
|
|
6742
|
+
},
|
|
6657
6743
|
{
|
|
6658
6744
|
"name": "isGridGroupable",
|
|
6659
6745
|
"kind": "function",
|
|
@@ -6727,10 +6813,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6727
6813
|
"uiLabel": "Refresh Cells"
|
|
6728
6814
|
},
|
|
6729
6815
|
{
|
|
6730
|
-
"name": "
|
|
6816
|
+
"name": "refreshRowByPrimaryKey",
|
|
6731
6817
|
"kind": "function",
|
|
6732
6818
|
"description": "Forces a render of a row",
|
|
6733
|
-
"uiLabel": "Refresh Row"
|
|
6819
|
+
"uiLabel": "Refresh Row By Primary Key"
|
|
6820
|
+
},
|
|
6821
|
+
{
|
|
6822
|
+
"name": "refreshRowNode",
|
|
6823
|
+
"kind": "function",
|
|
6824
|
+
"description": "",
|
|
6825
|
+
"uiLabel": "Refresh Row Node"
|
|
6734
6826
|
},
|
|
6735
6827
|
{
|
|
6736
6828
|
"name": "selectAll",
|
|
@@ -6804,6 +6896,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6804
6896
|
"description": "Sets the grid to Row Group",
|
|
6805
6897
|
"uiLabel": "Set Row Group Columns"
|
|
6806
6898
|
},
|
|
6899
|
+
{
|
|
6900
|
+
"name": "showGridInfoPopup",
|
|
6901
|
+
"kind": "function",
|
|
6902
|
+
"description": "Opens Grid Info popup screen",
|
|
6903
|
+
"uiLabel": "Show Grid Info Popup"
|
|
6904
|
+
},
|
|
6807
6905
|
{
|
|
6808
6906
|
"name": "undoCellEdit",
|
|
6809
6907
|
"kind": "function",
|
|
@@ -6811,21 +6909,33 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6811
6909
|
"uiLabel": "Undo Cell Edit"
|
|
6812
6910
|
},
|
|
6813
6911
|
{
|
|
6814
|
-
"name": "
|
|
6912
|
+
"name": "unHighlightAllCells",
|
|
6815
6913
|
"kind": "function",
|
|
6816
6914
|
"description": "Unhighlights all highlighted Cells in AdapTable",
|
|
6817
|
-
"uiLabel": "
|
|
6915
|
+
"uiLabel": "Un Highlight All Cells"
|
|
6916
|
+
},
|
|
6917
|
+
{
|
|
6918
|
+
"name": "unHighlightAllRows",
|
|
6919
|
+
"kind": "function",
|
|
6920
|
+
"description": "Remove all highlighted rows",
|
|
6921
|
+
"uiLabel": "Un Highlight All Rows"
|
|
6818
6922
|
},
|
|
6819
6923
|
{
|
|
6820
|
-
"name": "
|
|
6924
|
+
"name": "unHighlightCell",
|
|
6821
6925
|
"kind": "function",
|
|
6822
6926
|
"description": "Unhighlights a Cell in AdapTable",
|
|
6823
|
-
"uiLabel": "
|
|
6927
|
+
"uiLabel": "Un Highlight Cell"
|
|
6928
|
+
},
|
|
6929
|
+
{
|
|
6930
|
+
"name": "unHighlightRow",
|
|
6931
|
+
"kind": "function",
|
|
6932
|
+
"description": "Remove highlight from row",
|
|
6933
|
+
"uiLabel": "Un Highlight Row"
|
|
6824
6934
|
},
|
|
6825
6935
|
{
|
|
6826
6936
|
"name": "updateGridData",
|
|
6827
6937
|
"kind": "function",
|
|
6828
|
-
"description": "Updates Adaptable (and
|
|
6938
|
+
"description": "Updates Adaptable (and AG Grid) with rows that have changed",
|
|
6829
6939
|
"uiLabel": "Update Grid Data"
|
|
6830
6940
|
}
|
|
6831
6941
|
]
|
|
@@ -6888,10 +6998,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6888
6998
|
"uiLabel": "Data Rows"
|
|
6889
6999
|
},
|
|
6890
7000
|
{
|
|
6891
|
-
"name": "
|
|
7001
|
+
"name": "rowTrigger",
|
|
6892
7002
|
"kind": "unknown",
|
|
6893
7003
|
"description": "Trigger for row change: 'Add', 'Edit' or 'Delete'",
|
|
6894
|
-
"uiLabel": "Row
|
|
7004
|
+
"uiLabel": "Row Trigger"
|
|
6895
7005
|
}
|
|
6896
7006
|
]
|
|
6897
7007
|
},
|
|
@@ -6951,7 +7061,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6951
7061
|
{
|
|
6952
7062
|
"name": "columnId",
|
|
6953
7063
|
"kind": "string",
|
|
6954
|
-
"description": "Column
|
|
7064
|
+
"description": "Column defined as an Instrument - its value provides the `name` property in the FDC3 message",
|
|
6955
7065
|
"uiLabel": "Column Id"
|
|
6956
7066
|
},
|
|
6957
7067
|
{
|
|
@@ -7389,7 +7499,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7389
7499
|
{
|
|
7390
7500
|
"name": "ExpandedRowGroupValues",
|
|
7391
7501
|
"kind": "unknown",
|
|
7392
|
-
"description": "Values of opened row groups
|
|
7502
|
+
"description": "Values of opened row groups",
|
|
7393
7503
|
"uiLabel": "Expanded Row Group Values",
|
|
7394
7504
|
"isOptional": true
|
|
7395
7505
|
},
|
|
@@ -7548,6 +7658,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7548
7658
|
"description": "Saves given Layout into Adaptable State",
|
|
7549
7659
|
"uiLabel": "Save Layout"
|
|
7550
7660
|
},
|
|
7661
|
+
{
|
|
7662
|
+
"name": "setColumnCaption",
|
|
7663
|
+
"kind": "function",
|
|
7664
|
+
"description": "Sets a new Caption / Header for a Column (this Layout only)",
|
|
7665
|
+
"uiLabel": "Set Column Caption"
|
|
7666
|
+
},
|
|
7551
7667
|
{
|
|
7552
7668
|
"name": "setLayout",
|
|
7553
7669
|
"kind": "function",
|
|
@@ -7650,7 +7766,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7650
7766
|
"LayoutState": {
|
|
7651
7767
|
"name": "LayoutState",
|
|
7652
7768
|
"kind": "Interface",
|
|
7653
|
-
"description": "Predefined Configuration for the Layout
|
|
7769
|
+
"description": "Predefined Configuration for the Layout Module",
|
|
7654
7770
|
"properties": [
|
|
7655
7771
|
{
|
|
7656
7772
|
"name": "CurrentLayout",
|
|
@@ -7722,92 +7838,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7722
7838
|
}
|
|
7723
7839
|
]
|
|
7724
7840
|
},
|
|
7725
|
-
"MenuContext": {
|
|
7726
|
-
"name": "MenuContext",
|
|
7727
|
-
"kind": "Interface",
|
|
7728
|
-
"description": "Provides full details about current Menu; used for both Column and Context Menus",
|
|
7729
|
-
"properties": [
|
|
7730
|
-
{
|
|
7731
|
-
"name": "adaptableApi",
|
|
7732
|
-
"kind": "REFERENCE",
|
|
7733
|
-
"description": "The Adaptable Api - included as a convenience",
|
|
7734
|
-
"uiLabel": "Adaptable Api",
|
|
7735
|
-
"reference": "AdaptableApi"
|
|
7736
|
-
},
|
|
7737
|
-
{
|
|
7738
|
-
"name": "adaptableColumn",
|
|
7739
|
-
"kind": "REFERENCE",
|
|
7740
|
-
"description": "Current Adaptable Column",
|
|
7741
|
-
"uiLabel": "Adaptable Column",
|
|
7742
|
-
"reference": "AdaptableColumn"
|
|
7743
|
-
},
|
|
7744
|
-
{
|
|
7745
|
-
"name": "gridCell",
|
|
7746
|
-
"kind": "REFERENCE",
|
|
7747
|
-
"description": "Cell that has been clicked; contains cell value",
|
|
7748
|
-
"uiLabel": "Grid Cell",
|
|
7749
|
-
"reference": "GridCell"
|
|
7750
|
-
},
|
|
7751
|
-
{
|
|
7752
|
-
"name": "isGroupedNode",
|
|
7753
|
-
"kind": "boolean",
|
|
7754
|
-
"description": "Whether current row node is grouped",
|
|
7755
|
-
"uiLabel": "Is Grouped Node"
|
|
7756
|
-
},
|
|
7757
|
-
{
|
|
7758
|
-
"name": "isRowGroupColumn",
|
|
7759
|
-
"kind": "boolean",
|
|
7760
|
-
"description": "Whether current Column is Row Group",
|
|
7761
|
-
"uiLabel": "Is Row Group Column"
|
|
7762
|
-
},
|
|
7763
|
-
{
|
|
7764
|
-
"name": "isSelectedCell",
|
|
7765
|
-
"kind": "boolean",
|
|
7766
|
-
"description": "Whether cell that was clicked is also currently selected",
|
|
7767
|
-
"uiLabel": "Is Selected Cell"
|
|
7768
|
-
},
|
|
7769
|
-
{
|
|
7770
|
-
"name": "isSingleSelectedColumn",
|
|
7771
|
-
"kind": "boolean",
|
|
7772
|
-
"description": "Whether Column that was clicked is only column with selected cells",
|
|
7773
|
-
"uiLabel": "Is Single Selected Column"
|
|
7774
|
-
},
|
|
7775
|
-
{
|
|
7776
|
-
"name": "primaryKeyValue",
|
|
7777
|
-
"kind": "unknown",
|
|
7778
|
-
"description": "Value of Primary Key column in current row",
|
|
7779
|
-
"uiLabel": "Primary Key Value"
|
|
7780
|
-
},
|
|
7781
|
-
{
|
|
7782
|
-
"name": "rowNode",
|
|
7783
|
-
"kind": "REFERENCE",
|
|
7784
|
-
"description": "Current AG Grid row node",
|
|
7785
|
-
"uiLabel": "Row Node",
|
|
7786
|
-
"reference": "unknown"
|
|
7787
|
-
},
|
|
7788
|
-
{
|
|
7789
|
-
"name": "selectedCellInfo",
|
|
7790
|
-
"kind": "REFERENCE",
|
|
7791
|
-
"description": "Currently selected cells in the grid",
|
|
7792
|
-
"uiLabel": "Selected Cell Info",
|
|
7793
|
-
"reference": "SelectedCellInfo"
|
|
7794
|
-
},
|
|
7795
|
-
{
|
|
7796
|
-
"name": "selectedRowInfo",
|
|
7797
|
-
"kind": "REFERENCE",
|
|
7798
|
-
"description": "Currently selected rows in the grid",
|
|
7799
|
-
"uiLabel": "Selected Row Info",
|
|
7800
|
-
"reference": "SelectedRowInfo"
|
|
7801
|
-
},
|
|
7802
|
-
{
|
|
7803
|
-
"name": "vendorColumn",
|
|
7804
|
-
"kind": "REFERENCE",
|
|
7805
|
-
"description": "Current Vendor Grid Column",
|
|
7806
|
-
"uiLabel": "Vendor Column",
|
|
7807
|
-
"reference": "unknown"
|
|
7808
|
-
}
|
|
7809
|
-
]
|
|
7810
|
-
},
|
|
7811
7841
|
"MenuOptions": {
|
|
7812
7842
|
"name": "MenuOptions",
|
|
7813
7843
|
"kind": "Interface",
|
|
@@ -7816,18 +7846,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7816
7846
|
{
|
|
7817
7847
|
"name": "columnMenuItems",
|
|
7818
7848
|
"kind": "unknown",
|
|
7819
|
-
"description": "A collection of UserMenuItem objects to be added to the Column
|
|
7849
|
+
"description": "A collection of UserMenuItem objects to be added to the Column Menu (the one that appears as a dropdown in each Column Header).",
|
|
7820
7850
|
"uiLabel": "Column Menu Items",
|
|
7821
7851
|
"isOptional": true
|
|
7822
7852
|
},
|
|
7823
7853
|
{
|
|
7824
7854
|
"name": "columnMenuOrder",
|
|
7825
7855
|
"kind": "unknown",
|
|
7826
|
-
"description": "Order in which
|
|
7856
|
+
"description": "Order in which AG Grid, AdapTable and User Menu items will appear in Column Menu",
|
|
7827
7857
|
"uiLabel": "Column Menu Order",
|
|
7828
7858
|
"isOptional": true,
|
|
7829
7859
|
"gridInfo": "item",
|
|
7830
|
-
"defaultValue": "'
|
|
7860
|
+
"defaultValue": "'aggrid', 'adaptable', 'user'"
|
|
7831
7861
|
},
|
|
7832
7862
|
{
|
|
7833
7863
|
"name": "contextMenuItems",
|
|
@@ -7839,11 +7869,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7839
7869
|
{
|
|
7840
7870
|
"name": "contextMenuOrder",
|
|
7841
7871
|
"kind": "unknown",
|
|
7842
|
-
"description": "Order in which
|
|
7872
|
+
"description": "Order in which AG grid, AdapTable and User Menu items will appear in Context Menu",
|
|
7843
7873
|
"uiLabel": "Context Menu Order",
|
|
7844
7874
|
"isOptional": true,
|
|
7845
7875
|
"gridInfo": "item",
|
|
7846
|
-
"defaultValue": "'
|
|
7876
|
+
"defaultValue": "'aggrid', 'adaptable', 'user'"
|
|
7847
7877
|
},
|
|
7848
7878
|
{
|
|
7849
7879
|
"name": "showAdaptableColumnMenu",
|
|
@@ -7911,6 +7941,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7911
7941
|
"uiLabel": "Alert Forms",
|
|
7912
7942
|
"isOptional": true
|
|
7913
7943
|
},
|
|
7944
|
+
{
|
|
7945
|
+
"name": "alertMessageText",
|
|
7946
|
+
"kind": "unknown",
|
|
7947
|
+
"description": "Function providing Message to display in Alert; if empty, AdapTable provides dynamically",
|
|
7948
|
+
"uiLabel": "Alert Message Text",
|
|
7949
|
+
"isOptional": true
|
|
7950
|
+
},
|
|
7914
7951
|
{
|
|
7915
7952
|
"name": "cellHighlightDuration",
|
|
7916
7953
|
"kind": "number",
|
|
@@ -7948,13 +7985,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7948
7985
|
"defaultValue": "3000"
|
|
7949
7986
|
},
|
|
7950
7987
|
{
|
|
7951
|
-
"name": "
|
|
7988
|
+
"name": "flashingCellDefaultProperties",
|
|
7952
7989
|
"kind": "REFERENCE",
|
|
7953
7990
|
"description": "Flashing Alert Defaults",
|
|
7954
|
-
"uiLabel": "Flashing
|
|
7991
|
+
"uiLabel": "Flashing Cell Default Properties",
|
|
7955
7992
|
"isOptional": true,
|
|
7956
7993
|
"defaultValue": "BackColors: Green (up), Red (down), Gray (neutral), Duration: 500ms",
|
|
7957
|
-
"reference": "
|
|
7994
|
+
"reference": "FlashingCellProperties"
|
|
7958
7995
|
},
|
|
7959
7996
|
{
|
|
7960
7997
|
"name": "isDraggable",
|
|
@@ -8011,6 +8048,14 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8011
8048
|
"defaultValue": "'BottomRight'",
|
|
8012
8049
|
"reference": "unknown"
|
|
8013
8050
|
},
|
|
8051
|
+
{
|
|
8052
|
+
"name": "showApplicationIcon",
|
|
8053
|
+
"kind": "boolean",
|
|
8054
|
+
"description": "Displays the application icon in Notifications (if provided in `UserInterfaceOptions`)",
|
|
8055
|
+
"uiLabel": "Show Application Icon",
|
|
8056
|
+
"isOptional": true,
|
|
8057
|
+
"defaultValue": "false"
|
|
8058
|
+
},
|
|
8014
8059
|
{
|
|
8015
8060
|
"name": "showProgressBar",
|
|
8016
8061
|
"kind": "boolean",
|
|
@@ -8021,10 +8066,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8021
8066
|
"defaultValue": "false"
|
|
8022
8067
|
},
|
|
8023
8068
|
{
|
|
8024
|
-
"name": "
|
|
8069
|
+
"name": "showSystemStatusMessageNotifications",
|
|
8025
8070
|
"kind": "boolean",
|
|
8026
8071
|
"description": "Display an Alert when a System Status Message is set",
|
|
8027
|
-
"uiLabel": "Show System Status Message
|
|
8072
|
+
"uiLabel": "Show System Status Message Notifications",
|
|
8028
8073
|
"isOptional": true,
|
|
8029
8074
|
"gridInfo": "item",
|
|
8030
8075
|
"defaultValue": "false"
|
|
@@ -8445,13 +8490,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8445
8490
|
"kind": "Interface",
|
|
8446
8491
|
"description": "This is the main Predefined Config interface which developers will populate at design-time",
|
|
8447
8492
|
"properties": [
|
|
8448
|
-
{
|
|
8449
|
-
"name": "ActionColumn",
|
|
8450
|
-
"kind": "unknown",
|
|
8451
|
-
"description": "",
|
|
8452
|
-
"uiLabel": "Action Column",
|
|
8453
|
-
"isOptional": true
|
|
8454
|
-
},
|
|
8455
8493
|
{
|
|
8456
8494
|
"name": "Alert",
|
|
8457
8495
|
"kind": "REFERENCE",
|
|
@@ -8476,13 +8514,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8476
8514
|
"isOptional": true,
|
|
8477
8515
|
"reference": "CalculatedColumnState"
|
|
8478
8516
|
},
|
|
8479
|
-
{
|
|
8480
|
-
"name": "CellSummary",
|
|
8481
|
-
"kind": "unknown",
|
|
8482
|
-
"description": "",
|
|
8483
|
-
"uiLabel": "Cell Summary",
|
|
8484
|
-
"isOptional": true
|
|
8485
|
-
},
|
|
8486
8517
|
{
|
|
8487
8518
|
"name": "Chart",
|
|
8488
8519
|
"kind": "REFERENCE",
|
|
@@ -8523,13 +8554,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8523
8554
|
"isOptional": true,
|
|
8524
8555
|
"reference": "DataSourceState"
|
|
8525
8556
|
},
|
|
8526
|
-
{
|
|
8527
|
-
"name": "Entitlements",
|
|
8528
|
-
"kind": "unknown",
|
|
8529
|
-
"description": "",
|
|
8530
|
-
"uiLabel": "Entitlements",
|
|
8531
|
-
"isOptional": true
|
|
8532
|
-
},
|
|
8533
8557
|
{
|
|
8534
8558
|
"name": "Export",
|
|
8535
8559
|
"kind": "REFERENCE",
|
|
@@ -8546,14 +8570,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8546
8570
|
"isOptional": true,
|
|
8547
8571
|
"reference": "FilterState"
|
|
8548
8572
|
},
|
|
8549
|
-
{
|
|
8550
|
-
"name": "FlashingCell",
|
|
8551
|
-
"kind": "REFERENCE",
|
|
8552
|
-
"description": "",
|
|
8553
|
-
"uiLabel": "Flashing Cell",
|
|
8554
|
-
"isOptional": true,
|
|
8555
|
-
"reference": "unknown"
|
|
8556
|
-
},
|
|
8557
8573
|
{
|
|
8558
8574
|
"name": "FormatColumn",
|
|
8559
8575
|
"kind": "REFERENCE",
|
|
@@ -8570,14 +8586,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8570
8586
|
"isOptional": true,
|
|
8571
8587
|
"reference": "FreeTextColumnState"
|
|
8572
8588
|
},
|
|
8573
|
-
{
|
|
8574
|
-
"name": "GradientColumn",
|
|
8575
|
-
"kind": "REFERENCE",
|
|
8576
|
-
"description": "",
|
|
8577
|
-
"uiLabel": "Gradient Column",
|
|
8578
|
-
"isOptional": true,
|
|
8579
|
-
"reference": "unknown"
|
|
8580
|
-
},
|
|
8581
8589
|
{
|
|
8582
8590
|
"name": "Layout",
|
|
8583
8591
|
"kind": "REFERENCE",
|
|
@@ -8586,14 +8594,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8586
8594
|
"isOptional": true,
|
|
8587
8595
|
"reference": "LayoutState"
|
|
8588
8596
|
},
|
|
8589
|
-
{
|
|
8590
|
-
"name": "PercentBar",
|
|
8591
|
-
"kind": "REFERENCE",
|
|
8592
|
-
"description": "",
|
|
8593
|
-
"uiLabel": "Percent Bar",
|
|
8594
|
-
"isOptional": true,
|
|
8595
|
-
"reference": "unknown"
|
|
8596
|
-
},
|
|
8597
8597
|
{
|
|
8598
8598
|
"name": "PlusMinus",
|
|
8599
8599
|
"kind": "REFERENCE",
|
|
@@ -8642,13 +8642,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8642
8642
|
"isOptional": true,
|
|
8643
8643
|
"reference": "SparklineColumnState"
|
|
8644
8644
|
},
|
|
8645
|
-
{
|
|
8646
|
-
"name": "SystemStatus",
|
|
8647
|
-
"kind": "unknown",
|
|
8648
|
-
"description": "",
|
|
8649
|
-
"uiLabel": "System Status",
|
|
8650
|
-
"isOptional": true
|
|
8651
|
-
},
|
|
8652
8645
|
{
|
|
8653
8646
|
"name": "Theme",
|
|
8654
8647
|
"kind": "REFERENCE",
|
|
@@ -8664,21 +8657,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8664
8657
|
"uiLabel": "Tool Panel",
|
|
8665
8658
|
"isOptional": true,
|
|
8666
8659
|
"reference": "ToolPanelState"
|
|
8667
|
-
},
|
|
8668
|
-
{
|
|
8669
|
-
"name": "UpdatedRow",
|
|
8670
|
-
"kind": "REFERENCE",
|
|
8671
|
-
"description": "",
|
|
8672
|
-
"uiLabel": "Updated Row",
|
|
8673
|
-
"isOptional": true,
|
|
8674
|
-
"reference": "unknown"
|
|
8675
|
-
},
|
|
8676
|
-
{
|
|
8677
|
-
"name": "UserInterface",
|
|
8678
|
-
"kind": "unknown",
|
|
8679
|
-
"description": "Section (only populated at Design Time) that manages UI-related elements in AdapTable",
|
|
8680
|
-
"uiLabel": "User Interface",
|
|
8681
|
-
"isOptional": true
|
|
8682
8660
|
}
|
|
8683
8661
|
]
|
|
8684
8662
|
},
|
|
@@ -9079,19 +9057,19 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9079
9057
|
"QuickSearchState": {
|
|
9080
9058
|
"name": "QuickSearchState",
|
|
9081
9059
|
"kind": "Interface",
|
|
9082
|
-
"description": "Predefined Configuration for Quick Search
|
|
9060
|
+
"description": "Predefined Configuration for Quick Search Module",
|
|
9083
9061
|
"properties": [
|
|
9084
9062
|
{
|
|
9085
9063
|
"name": "QuickSearchText",
|
|
9086
9064
|
"kind": "string",
|
|
9087
|
-
"description": "Quick Search
|
|
9065
|
+
"description": "Last Quick Search that was run (and will run again at start up)",
|
|
9088
9066
|
"uiLabel": "Quick Search Text",
|
|
9089
9067
|
"isOptional": true
|
|
9090
9068
|
},
|
|
9091
9069
|
{
|
|
9092
9070
|
"name": "Style",
|
|
9093
9071
|
"kind": "REFERENCE",
|
|
9094
|
-
"description": "Style to use
|
|
9072
|
+
"description": "Style to use to highlight matching cells - uses common `AdaptableStyle` object",
|
|
9095
9073
|
"uiLabel": "Style",
|
|
9096
9074
|
"isOptional": true,
|
|
9097
9075
|
"reference": "AdaptableStyle"
|
|
@@ -9106,7 +9084,34 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9106
9084
|
"ReminderSchedule": {
|
|
9107
9085
|
"name": "ReminderSchedule",
|
|
9108
9086
|
"kind": "Interface",
|
|
9109
|
-
"description": "Schedules a Reminder
|
|
9087
|
+
"description": "Schedules a Reminder to appear at a given point in time",
|
|
9088
|
+
"properties": [
|
|
9089
|
+
{
|
|
9090
|
+
"name": "DisplayNotification",
|
|
9091
|
+
"kind": "boolean",
|
|
9092
|
+
"description": "Displays Reminder as a Toast Notification",
|
|
9093
|
+
"uiLabel": "Display Notification"
|
|
9094
|
+
},
|
|
9095
|
+
{
|
|
9096
|
+
"name": "Header",
|
|
9097
|
+
"kind": "string",
|
|
9098
|
+
"description": "Reminder header text",
|
|
9099
|
+
"uiLabel": "Header"
|
|
9100
|
+
},
|
|
9101
|
+
{
|
|
9102
|
+
"name": "Message",
|
|
9103
|
+
"kind": "string",
|
|
9104
|
+
"description": "Reminder body text",
|
|
9105
|
+
"uiLabel": "Message"
|
|
9106
|
+
},
|
|
9107
|
+
{
|
|
9108
|
+
"name": "MessageType",
|
|
9109
|
+
"kind": "REFERENCE",
|
|
9110
|
+
"description": "Type of Message - 'Success', 'Info', 'Warning' or 'Error'",
|
|
9111
|
+
"uiLabel": "Message Type",
|
|
9112
|
+
"reference": "AdaptableMessageType"
|
|
9113
|
+
}
|
|
9114
|
+
]
|
|
9110
9115
|
},
|
|
9111
9116
|
"ReportData": {
|
|
9112
9117
|
"name": "ReportData",
|
|
@@ -9210,10 +9215,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9210
9215
|
"properties": [
|
|
9211
9216
|
{
|
|
9212
9217
|
"name": "DaysOfWeek",
|
|
9213
|
-
"kind": "
|
|
9214
|
-
"description": "Days on which
|
|
9218
|
+
"kind": "REFERENCE",
|
|
9219
|
+
"description": "Days on which Schedule will run",
|
|
9215
9220
|
"uiLabel": "Days Of Week",
|
|
9216
|
-
"isOptional": true
|
|
9221
|
+
"isOptional": true,
|
|
9222
|
+
"reference": "unknown"
|
|
9217
9223
|
},
|
|
9218
9224
|
{
|
|
9219
9225
|
"name": "Hour",
|
|
@@ -9510,7 +9516,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9510
9516
|
"ScheduleState": {
|
|
9511
9517
|
"name": "ScheduleState",
|
|
9512
9518
|
"kind": "Interface",
|
|
9513
|
-
"description": "Predefined Configuration for the Schedule
|
|
9519
|
+
"description": "Predefined Configuration for the Schedule Module",
|
|
9514
9520
|
"properties": [
|
|
9515
9521
|
{
|
|
9516
9522
|
"name": "Glue42Schedules",
|
|
@@ -9891,10 +9897,9 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9891
9897
|
"properties": [
|
|
9892
9898
|
{
|
|
9893
9899
|
"name": "Scope",
|
|
9894
|
-
"kind": "
|
|
9895
|
-
"description": "
|
|
9896
|
-
"uiLabel": "Scope"
|
|
9897
|
-
"reference": "AdaptableScope"
|
|
9900
|
+
"kind": "unknown",
|
|
9901
|
+
"description": "Numeric Columns where Shortcut is applied",
|
|
9902
|
+
"uiLabel": "Scope"
|
|
9898
9903
|
},
|
|
9899
9904
|
{
|
|
9900
9905
|
"name": "ShortcutKey",
|
|
@@ -9989,6 +9994,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9989
9994
|
}
|
|
9990
9995
|
]
|
|
9991
9996
|
},
|
|
9997
|
+
"ShortcutScopeDataType": {
|
|
9998
|
+
"name": "ShortcutScopeDataType",
|
|
9999
|
+
"kind": "TypeAlias",
|
|
10000
|
+
"description": "Shortcut scope data type."
|
|
10001
|
+
},
|
|
9992
10002
|
"ShortcutState": {
|
|
9993
10003
|
"name": "ShortcutState",
|
|
9994
10004
|
"kind": "Interface",
|
|
@@ -10017,7 +10027,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10017
10027
|
{
|
|
10018
10028
|
"name": "getSmartEditOperation",
|
|
10019
10029
|
"kind": "function",
|
|
10020
|
-
"description": "Gets current Smart Edit Operation
|
|
10030
|
+
"description": "Gets current Smart Edit Operation",
|
|
10021
10031
|
"uiLabel": "Get Smart Edit Operation"
|
|
10022
10032
|
},
|
|
10023
10033
|
{
|
|
@@ -10029,13 +10039,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10029
10039
|
{
|
|
10030
10040
|
"name": "setSmartEditOperation",
|
|
10031
10041
|
"kind": "function",
|
|
10032
|
-
"description": "Sets
|
|
10042
|
+
"description": "Sets Smart Edit operation: ('Add','Subtract','Multiply','Divide'",
|
|
10033
10043
|
"uiLabel": "Set Smart Edit Operation"
|
|
10034
10044
|
},
|
|
10035
10045
|
{
|
|
10036
10046
|
"name": "setSmartEditValue",
|
|
10037
10047
|
"kind": "function",
|
|
10038
|
-
"description": "Sets Smart Edit Value
|
|
10048
|
+
"description": "Sets Smart Edit Value",
|
|
10039
10049
|
"uiLabel": "Set Smart Edit Value"
|
|
10040
10050
|
},
|
|
10041
10051
|
{
|
|
@@ -10211,7 +10221,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10211
10221
|
{
|
|
10212
10222
|
"name": "Width",
|
|
10213
10223
|
"kind": "number",
|
|
10214
|
-
"description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by
|
|
10224
|
+
"description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by AG Grid",
|
|
10215
10225
|
"uiLabel": "Width",
|
|
10216
10226
|
"isOptional": true
|
|
10217
10227
|
}
|
|
@@ -10408,7 +10418,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10408
10418
|
{
|
|
10409
10419
|
"name": "fireTeamSharingEntityChangedEvent",
|
|
10410
10420
|
"kind": "function",
|
|
10411
|
-
"description": "Fires the Team
|
|
10421
|
+
"description": "Fires the Team Sharing Entity Changed Event",
|
|
10412
10422
|
"uiLabel": "Fire Team Sharing Entity Changed Event"
|
|
10413
10423
|
},
|
|
10414
10424
|
{
|
|
@@ -10573,13 +10583,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10573
10583
|
{
|
|
10574
10584
|
"name": "loadDarkTheme",
|
|
10575
10585
|
"kind": "function",
|
|
10576
|
-
"description": "Sets AdapTable Dark Theme - updates
|
|
10586
|
+
"description": "Sets AdapTable Dark Theme - updates the AG Grid theme to match",
|
|
10577
10587
|
"uiLabel": "Load Dark Theme"
|
|
10578
10588
|
},
|
|
10579
10589
|
{
|
|
10580
10590
|
"name": "loadLightTheme",
|
|
10581
10591
|
"kind": "function",
|
|
10582
|
-
"description": "Sets AdapTable Light Theme - updates
|
|
10592
|
+
"description": "Sets AdapTable Light Theme - updates the AG Grid theme to match",
|
|
10583
10593
|
"uiLabel": "Load Light Theme"
|
|
10584
10594
|
},
|
|
10585
10595
|
{
|
|
@@ -10819,7 +10829,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
10819
10829
|
"description": "Order of displayed ToolPanels in Sidebar",
|
|
10820
10830
|
"uiLabel": "Tool Panel Order",
|
|
10821
10831
|
"isOptional": true,
|
|
10822
|
-
"defaultValue": "['filters', 'columns', '
|
|
10832
|
+
"defaultValue": "['filters', 'columns', 'adaptable']"
|
|
10823
10833
|
},
|
|
10824
10834
|
{
|
|
10825
10835
|
"name": "width",
|
|
@@ -11018,6 +11028,15 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11018
11028
|
"uiLabel": "Filter Permitted Values",
|
|
11019
11029
|
"isOptional": true
|
|
11020
11030
|
},
|
|
11031
|
+
{
|
|
11032
|
+
"name": "gridInfoSections",
|
|
11033
|
+
"kind": "REFERENCE",
|
|
11034
|
+
"description": "Which sections to show in the Grid Info Screen",
|
|
11035
|
+
"uiLabel": "Grid Info Sections",
|
|
11036
|
+
"isOptional": true,
|
|
11037
|
+
"defaultValue": "['GridSummary', 'AdaptableOptions','ColumnInfo']",
|
|
11038
|
+
"reference": "unknown"
|
|
11039
|
+
},
|
|
11021
11040
|
{
|
|
11022
11041
|
"name": "permittedValues",
|
|
11023
11042
|
"kind": "unknown",
|
|
@@ -11064,7 +11083,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11064
11083
|
"UserMenuItem": {
|
|
11065
11084
|
"name": "UserMenuItem",
|
|
11066
11085
|
"kind": "Interface",
|
|
11067
|
-
"description": "
|
|
11086
|
+
"description": "Menu Item created at design-time which is added to Column Header or Context Menu, and can contain sub items",
|
|
11068
11087
|
"properties": [
|
|
11069
11088
|
{
|
|
11070
11089
|
"name": "disabled",
|
|
@@ -11083,7 +11102,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11083
11102
|
{
|
|
11084
11103
|
"name": "icon",
|
|
11085
11104
|
"kind": "string",
|
|
11086
|
-
"description": "Optional icon to show in the Menu Item",
|
|
11105
|
+
"description": "Optional icon to show in the Column Menu Item",
|
|
11087
11106
|
"uiLabel": "Icon",
|
|
11088
11107
|
"isOptional": true
|
|
11089
11108
|
},
|
|
@@ -11117,7 +11136,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
11117
11136
|
{
|
|
11118
11137
|
"name": "NewValue",
|
|
11119
11138
|
"kind": "unknown",
|
|
11120
|
-
"description": "Value to use for
|
|
11139
|
+
"description": "Cell Value to use for after Server Validation",
|
|
11121
11140
|
"uiLabel": "New Value",
|
|
11122
11141
|
"isOptional": true
|
|
11123
11142
|
},
|