@adaptabletools/adaptable 10.0.4-canary.4 → 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 +1 -1
- package/agGrid.d.ts +2 -2
- package/base.css +202 -33
- package/bundle.cjs.js +100 -97
- package/index.css +243 -33
- package/package.json +3 -2
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -3
- package/src/AdaptableOptions/AdaptableOptions.d.ts +7 -2
- package/src/AdaptableOptions/DashboardOptions.d.ts +2 -2
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +2 -2
- package/src/AdaptableOptions/EditOptions.d.ts +2 -2
- package/src/AdaptableOptions/ExportOptions.d.ts +1 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +2 -2
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +1 -1
- package/src/AdaptableOptions/NotificationsOptions.d.ts +4 -3
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +75 -0
- package/src/{Api/Events/FlashingAlertFired.js → AdaptableOptions/SettingsPanelOptions.js} +0 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +29 -0
- package/src/Api/AdaptableApi.d.ts +3 -1
- package/src/Api/AlertApi.d.ts +4 -79
- package/src/Api/DataChangeHistoryApi.d.ts +4 -0
- package/src/Api/EventApi.d.ts +8 -8
- package/src/Api/Events/AdaptableReady.d.ts +2 -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 +28 -5
- 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/ConfigApiImpl.js +0 -5
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +5 -0
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +20 -0
- package/src/Api/Implementation/FlashingCellApiImpl.js +96 -0
- package/src/Api/Implementation/GridApiImpl.d.ts +13 -8
- package/src/Api/Implementation/GridApiImpl.js +39 -17
- package/src/Api/Implementation/InternalApiImpl.d.ts +2 -2
- package/src/Api/Implementation/InternalApiImpl.js +5 -4
- package/src/Api/Implementation/LayoutApiImpl.js +12 -0
- package/src/Api/Implementation/ScheduleApiImpl.js +5 -5
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +1 -1
- package/src/Api/Implementation/SystemStatusApiImpl.js +1 -1
- package/src/Api/Implementation/ToolPanelApiImpl.js +2 -2
- package/src/Api/InternalApi.d.ts +4 -4
- package/src/Api/SmartEditApi.d.ts +4 -4
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
- package/src/PredefinedConfig/AlertState.d.ts +13 -54
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +4 -0
- 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/CellHighlightInfo.d.ts +14 -3
- package/src/PredefinedConfig/Common/CellSummary.d.ts +2 -2
- package/src/PredefinedConfig/Common/Menu.d.ts +2 -2
- package/src/PredefinedConfig/Common/Schedule.d.ts +4 -14
- package/src/PredefinedConfig/Common/Schedule.js +0 -14
- package/src/PredefinedConfig/Common/Types.d.ts +4 -3
- package/src/PredefinedConfig/CustomSortState.d.ts +1 -1
- package/src/PredefinedConfig/DashboardState.d.ts +3 -2
- package/src/PredefinedConfig/FlashingCellState.d.ts +70 -0
- package/src/PredefinedConfig/FlashingCellState.js +2 -0
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +2 -2
- package/src/PredefinedConfig/LayoutState.d.ts +1 -1
- package/src/PredefinedConfig/PredefinedConfig.d.ts +2 -0
- package/src/PredefinedConfig/ScheduleState.d.ts +1 -5
- package/src/PredefinedConfig/ShortcutState.d.ts +1 -1
- package/src/PredefinedConfig/SystemState.d.ts +17 -4
- package/src/Redux/ActionsReducers/AlertRedux.d.ts +3 -38
- package/src/Redux/ActionsReducers/AlertRedux.js +9 -68
- package/src/Redux/ActionsReducers/DashboardRedux.js +1 -1
- package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +55 -0
- package/src/Redux/ActionsReducers/FlashingCellRedux.js +100 -0
- 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/Store/AdaptableStore.js +80 -45
- package/src/Strategy/AlertModule.d.ts +14 -5
- package/src/Strategy/AlertModule.js +40 -123
- package/src/Strategy/CalculatedColumnModule.d.ts +28 -0
- package/src/Strategy/CalculatedColumnModule.js +29 -0
- 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 +0 -1
- package/src/Strategy/DashboardModule.js +1 -7
- package/src/Strategy/DataChangeHistoryModule.js +1 -1
- package/src/Strategy/DataSourceModule.d.ts +9 -1
- package/src/Strategy/DataSourceModule.js +28 -0
- package/src/Strategy/ExportModule.d.ts +12 -0
- package/src/Strategy/ExportModule.js +43 -0
- package/src/Strategy/FilterModule.d.ts +8 -1
- 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 +35 -0
- package/src/Strategy/FreeTextColumnModule.d.ts +9 -1
- package/src/Strategy/FreeTextColumnModule.js +45 -0
- package/src/Strategy/GridInfoModule.js +58 -36
- package/src/Strategy/Interface/IModule.d.ts +70 -0
- 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/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/ModuleConstants.d.ts +2 -0
- package/src/Utilities/Constants/ModuleConstants.js +3 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +11 -4
- package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +6 -0
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +35 -0
- package/src/Utilities/Extensions/ArrayExtensions.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +2 -1
- package/src/Utilities/Helpers/StyleHelper.d.ts +4 -0
- package/src/Utilities/Helpers/StyleHelper.js +4 -1
- package/src/Utilities/MenuItem.d.ts +1 -1
- package/src/Utilities/MenuItem.js +2 -2
- package/src/Utilities/ObjectFactory.d.ts +6 -7
- package/src/Utilities/ObjectFactory.js +13 -20
- 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/ModuleService.js +6 -6
- package/src/Utilities/Services/TeamSharingService.js +3 -4
- package/src/View/AdaptableView.js +2 -2
- package/src/View/AdaptableViewFactory.js +0 -26
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +10 -10
- 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/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/QuickFilterForm.js +8 -3
- 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/PanelWithImage.d.ts +4 -4
- 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/ToolPanel/ToolPanelPopup.js +4 -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 +3 -4
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +18 -3
- package/src/View/Dashboard/Dashboard.d.ts +0 -1
- package/src/View/Dashboard/Dashboard.js +21 -68
- package/src/View/Dashboard/DashboardPopup.d.ts +6 -2
- package/src/View/Dashboard/DashboardPopup.js +30 -8
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +3 -4
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +3 -3
- 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/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 +1 -1
- package/src/View/Layout/LayoutPopup.js +4 -6
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +3 -1
- package/src/View/Layout/Wizard/LayoutEditor/index.js +5 -2
- 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/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/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/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 +2 -2
- package/src/View/StateManagement/StateManagementPopup.js +16 -15
- 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/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 +14 -6
- package/src/agGrid/Adaptable.js +194 -57
- package/src/agGrid/agGridHelper.d.ts +1 -0
- package/src/agGrid/agGridHelper.js +14 -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/index.d.ts +1 -1
- 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/PopupWithFooter.d.ts +1 -1
- package/src/components/PopupWithFooter.js +2 -7
- 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 +4 -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/utils/useDraggable.d.ts +3 -1
- package/src/components/utils/useDraggable.js +14 -2
- package/src/metamodel/adaptable.metamodel.d.ts +53 -32
- package/src/metamodel/adaptable.metamodel.js +216 -197
- package/src/types.d.ts +8 -6
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/Api/Events/FlashingAlertFired.d.ts +0 -11
- 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 -12
- 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
|
@@ -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
|
},
|
|
@@ -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",
|
|
@@ -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",
|
|
@@ -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",
|
|
@@ -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": "The AG 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
|
},
|
|
@@ -1245,10 +1259,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1245
1259
|
"description": "Object returned by `AdaptableReady` event - fired when AdapTable has loaded",
|
|
1246
1260
|
"properties": [
|
|
1247
1261
|
{
|
|
1248
|
-
"name": "
|
|
1262
|
+
"name": "agGridOptions",
|
|
1249
1263
|
"kind": "REFERENCE",
|
|
1250
|
-
"description": "Underlying AG Grid
|
|
1251
|
-
"uiLabel": "Grid Options",
|
|
1264
|
+
"description": "Underlying AG Grid GridOptions object",
|
|
1265
|
+
"uiLabel": "Ag Grid Options",
|
|
1252
1266
|
"reference": "unknown"
|
|
1253
1267
|
}
|
|
1254
1268
|
]
|
|
@@ -1491,18 +1505,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1491
1505
|
"description": "Adds new Alert Definition",
|
|
1492
1506
|
"uiLabel": "Add Alert Definition"
|
|
1493
1507
|
},
|
|
1494
|
-
{
|
|
1495
|
-
"name": "addFlashingAlertDefinition",
|
|
1496
|
-
"kind": "function",
|
|
1497
|
-
"description": "Adds a Flashing Alert Definition to State",
|
|
1498
|
-
"uiLabel": "Add Flashing Alert Definition"
|
|
1499
|
-
},
|
|
1500
|
-
{
|
|
1501
|
-
"name": "addFlashingAlertDefinitions",
|
|
1502
|
-
"kind": "function",
|
|
1503
|
-
"description": "Adds provided Flashing Alert Definitions",
|
|
1504
|
-
"uiLabel": "Add Flashing Alert Definitions"
|
|
1505
|
-
},
|
|
1506
1508
|
{
|
|
1507
1509
|
"name": "displayAlert",
|
|
1508
1510
|
"kind": "function",
|
|
@@ -1521,18 +1523,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1521
1523
|
"description": "Edits Alert in State with given one",
|
|
1522
1524
|
"uiLabel": "Edit Alert Definition"
|
|
1523
1525
|
},
|
|
1524
|
-
{
|
|
1525
|
-
"name": "editFlashingAlertDefinition",
|
|
1526
|
-
"kind": "function",
|
|
1527
|
-
"description": "Edits Flashing Alert in State with given one",
|
|
1528
|
-
"uiLabel": "Edit Flashing Alert Definition"
|
|
1529
|
-
},
|
|
1530
|
-
{
|
|
1531
|
-
"name": "editFlashingAlertDefinitions",
|
|
1532
|
-
"kind": "function",
|
|
1533
|
-
"description": "Edits provided Flashing Alert Definitions",
|
|
1534
|
-
"uiLabel": "Edit Flashing Alert Definitions"
|
|
1535
|
-
},
|
|
1536
1526
|
{
|
|
1537
1527
|
"name": "executeAlertAction",
|
|
1538
1528
|
"kind": "function",
|
|
@@ -1551,24 +1541,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1551
1541
|
"description": "Retrieves all active (non-suspended) Alert Definitions in Alert State which are NOT Reactive (BooleanQuery)",
|
|
1552
1542
|
"uiLabel": "Get Active Non Reactive Alert Definitions"
|
|
1553
1543
|
},
|
|
1554
|
-
{
|
|
1555
|
-
"name": "getActiveNonReactiveFlashingAlertDefinitions",
|
|
1556
|
-
"kind": "function",
|
|
1557
|
-
"description": "Retrieves all active (non-suspended) Alert Definitions in Alert State which are NOT Reactive (BooleanQuery)",
|
|
1558
|
-
"uiLabel": "Get Active Non Reactive Flashing Alert Definitions"
|
|
1559
|
-
},
|
|
1560
1544
|
{
|
|
1561
1545
|
"name": "getActiveReactiveAlertDefinitions",
|
|
1562
1546
|
"kind": "function",
|
|
1563
1547
|
"description": "Retrieves all active (non-suspended) Alert Definitions in Alert State which are reactive (ObservableQuery & AggregationQuery)",
|
|
1564
1548
|
"uiLabel": "Get Active Reactive Alert Definitions"
|
|
1565
1549
|
},
|
|
1566
|
-
{
|
|
1567
|
-
"name": "getActiveReactiveFlashingAlertDefinitions",
|
|
1568
|
-
"kind": "function",
|
|
1569
|
-
"description": "Retrieves all active (non-suspended) Flashing Alert Definitions in Alert State which are reactive (ObservableQuery & AggregationQuery)",
|
|
1570
|
-
"uiLabel": "Get Active Reactive Flashing Alert Definitions"
|
|
1571
|
-
},
|
|
1572
1550
|
{
|
|
1573
1551
|
"name": "getAdaptableFormByName",
|
|
1574
1552
|
"kind": "function",
|
|
@@ -1629,48 +1607,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1629
1607
|
"description": "Retrieves Alert section from Adaptable State",
|
|
1630
1608
|
"uiLabel": "Get Alert State"
|
|
1631
1609
|
},
|
|
1632
|
-
{
|
|
1633
|
-
"name": "getFlashingAlertDefinitionById",
|
|
1634
|
-
"kind": "function",
|
|
1635
|
-
"description": "Retrieves Flashing Alert Definition By Id",
|
|
1636
|
-
"uiLabel": "Get Flashing Alert Definition By Id"
|
|
1637
|
-
},
|
|
1638
|
-
{
|
|
1639
|
-
"name": "getFlashingAlertDefinitions",
|
|
1640
|
-
"kind": "function",
|
|
1641
|
-
"description": "Retrieves all Flashing Alert Definitions in Alert State",
|
|
1642
|
-
"uiLabel": "Get Flashing Alert Definitions"
|
|
1643
|
-
},
|
|
1644
|
-
{
|
|
1645
|
-
"name": "getFlashingAlertFlashTarget",
|
|
1646
|
-
"kind": "function",
|
|
1647
|
-
"description": "Returns where a Flashing Alert Definition will flash a single cell or a whole row",
|
|
1648
|
-
"uiLabel": "Get Flashing Alert Flash Target"
|
|
1649
|
-
},
|
|
1650
1610
|
{
|
|
1651
1611
|
"name": "getNonReactiveAlertDefinitions",
|
|
1652
1612
|
"kind": "function",
|
|
1653
1613
|
"description": "Retrieves all Alert Definitions in Alert State which are NOT Reactive (BooleanQuery)",
|
|
1654
1614
|
"uiLabel": "Get Non Reactive Alert Definitions"
|
|
1655
1615
|
},
|
|
1656
|
-
{
|
|
1657
|
-
"name": "getNonReactiveFlashingAlertDefinitions",
|
|
1658
|
-
"kind": "function",
|
|
1659
|
-
"description": "Retrieves all Alert Definitions in Alert State which are NOT Reactive (BooleanQuery)",
|
|
1660
|
-
"uiLabel": "Get Non Reactive Flashing Alert Definitions"
|
|
1661
|
-
},
|
|
1662
1616
|
{
|
|
1663
1617
|
"name": "getReactiveAlertDefinitions",
|
|
1664
1618
|
"kind": "function",
|
|
1665
1619
|
"description": "Retrieves all Alert Definitions in Alert State which are reactive (ObservableQuery & AggregationQuery)",
|
|
1666
1620
|
"uiLabel": "Get Reactive Alert Definitions"
|
|
1667
1621
|
},
|
|
1668
|
-
{
|
|
1669
|
-
"name": "getReactiveFlashingAlertDefinitions",
|
|
1670
|
-
"kind": "function",
|
|
1671
|
-
"description": "Retrieves all Flashing Alert Definitions in Alert State which are reactive (ObservableQuery & AggregationQuery)",
|
|
1672
|
-
"uiLabel": "Get Reactive Flashing Alert Definitions"
|
|
1673
|
-
},
|
|
1674
1622
|
{
|
|
1675
1623
|
"name": "publishAlertFiredEvent",
|
|
1676
1624
|
"kind": "function",
|
|
@@ -1713,35 +1661,17 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1713
1661
|
"description": "Creates Alert formed from inputted values and displays it as Warning Alert.",
|
|
1714
1662
|
"uiLabel": "Show Alert Warning"
|
|
1715
1663
|
},
|
|
1716
|
-
{
|
|
1717
|
-
"name": "showFlashingAlert",
|
|
1718
|
-
"kind": "function",
|
|
1719
|
-
"description": "Displays a Flashing Alert",
|
|
1720
|
-
"uiLabel": "Show Flashing Alert"
|
|
1721
|
-
},
|
|
1722
1664
|
{
|
|
1723
1665
|
"name": "suspendAlertDefinition",
|
|
1724
1666
|
"kind": "function",
|
|
1725
1667
|
"description": "Suspends Alert Definition",
|
|
1726
1668
|
"uiLabel": "Suspend Alert Definition"
|
|
1727
1669
|
},
|
|
1728
|
-
{
|
|
1729
|
-
"name": "suspendFlashingAlertDefinition",
|
|
1730
|
-
"kind": "function",
|
|
1731
|
-
"description": "Suspends a Flashing Alert Definition",
|
|
1732
|
-
"uiLabel": "Suspend Flashing Alert Definition"
|
|
1733
|
-
},
|
|
1734
1670
|
{
|
|
1735
1671
|
"name": "unSuspendAlertDefinition",
|
|
1736
1672
|
"kind": "function",
|
|
1737
1673
|
"description": "Activates a suspended Alert Definition",
|
|
1738
1674
|
"uiLabel": "Un Suspend Alert Definition"
|
|
1739
|
-
},
|
|
1740
|
-
{
|
|
1741
|
-
"name": "unSuspendFlashingAlertDefinition",
|
|
1742
|
-
"kind": "function",
|
|
1743
|
-
"description": "Activates a suspended Flashing Alert Definition",
|
|
1744
|
-
"uiLabel": "Un Suspend Flashing Alert Definition"
|
|
1745
1675
|
}
|
|
1746
1676
|
]
|
|
1747
1677
|
},
|
|
@@ -1835,6 +1765,20 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1835
1765
|
"description": "Type of Alert: 'Info', 'Success', 'Warning', 'Error'; influences Alert colour, icon and logging",
|
|
1836
1766
|
"uiLabel": "Message Type",
|
|
1837
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"
|
|
1838
1782
|
}
|
|
1839
1783
|
]
|
|
1840
1784
|
},
|
|
@@ -1871,11 +1815,18 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1871
1815
|
},
|
|
1872
1816
|
{
|
|
1873
1817
|
"name": "HighlightCell",
|
|
1874
|
-
"kind": "
|
|
1818
|
+
"kind": "unknown",
|
|
1875
1819
|
"description": "Colours updated cell using `MessageType` property of triggering Alert Definition",
|
|
1876
1820
|
"uiLabel": "Highlight Cell",
|
|
1877
1821
|
"isOptional": true
|
|
1878
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
|
+
},
|
|
1879
1830
|
{
|
|
1880
1831
|
"name": "JumpToCell",
|
|
1881
1832
|
"kind": "boolean",
|
|
@@ -1900,7 +1851,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1900
1851
|
{
|
|
1901
1852
|
"name": "ShowInDiv",
|
|
1902
1853
|
"kind": "boolean",
|
|
1903
|
-
"description": "Shows Alert text in the div specificed in `
|
|
1854
|
+
"description": "Shows Alert text in the div specificed in `alertContainer` property of Container Options",
|
|
1904
1855
|
"uiLabel": "Show In Div",
|
|
1905
1856
|
"isOptional": true
|
|
1906
1857
|
}
|
|
@@ -1918,14 +1869,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
1918
1869
|
"uiLabel": "Alert Definitions",
|
|
1919
1870
|
"isOptional": true,
|
|
1920
1871
|
"defaultValue": "null"
|
|
1921
|
-
},
|
|
1922
|
-
{
|
|
1923
|
-
"name": "FlashingAlertDefinitions",
|
|
1924
|
-
"kind": "unknown",
|
|
1925
|
-
"description": "Flashing Alert Definitions - will colour cells/rows when rule is met",
|
|
1926
|
-
"uiLabel": "Flashing Alert Definitions",
|
|
1927
|
-
"isOptional": true,
|
|
1928
|
-
"defaultValue": "null"
|
|
1929
1872
|
}
|
|
1930
1873
|
]
|
|
1931
1874
|
},
|
|
@@ -2042,27 +1985,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2042
1985
|
}
|
|
2043
1986
|
]
|
|
2044
1987
|
},
|
|
2045
|
-
"BaseAlertDefinition": {
|
|
2046
|
-
"name": "BaseAlertDefinition",
|
|
2047
|
-
"kind": "Interface",
|
|
2048
|
-
"description": "Base object used in all Alert Definitions - contains `Scope` and a `Rule`",
|
|
2049
|
-
"properties": [
|
|
2050
|
-
{
|
|
2051
|
-
"name": "Rule",
|
|
2052
|
-
"kind": "REFERENCE",
|
|
2053
|
-
"description": "When Alert should be triggered",
|
|
2054
|
-
"uiLabel": "Rule",
|
|
2055
|
-
"reference": "unknown"
|
|
2056
|
-
},
|
|
2057
|
-
{
|
|
2058
|
-
"name": "Scope",
|
|
2059
|
-
"kind": "REFERENCE",
|
|
2060
|
-
"description": "Where Alert can be triggered: one, some or all columns or DataTypes",
|
|
2061
|
-
"uiLabel": "Scope",
|
|
2062
|
-
"reference": "AdaptableScope"
|
|
2063
|
-
}
|
|
2064
|
-
]
|
|
2065
|
-
},
|
|
2066
1988
|
"BulkUpdateApi": {
|
|
2067
1989
|
"name": "BulkUpdateApi",
|
|
2068
1990
|
"kind": "Interface",
|
|
@@ -2312,14 +2234,6 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2312
2234
|
"description": "Id of Column containing Cell",
|
|
2313
2235
|
"uiLabel": "Column Id"
|
|
2314
2236
|
},
|
|
2315
|
-
{
|
|
2316
|
-
"name": "highlightType",
|
|
2317
|
-
"kind": "REFERENCE",
|
|
2318
|
-
"description": "Whether cell should show 'Info' (default), 'Success', 'Warning' or'Error' colour",
|
|
2319
|
-
"uiLabel": "Highlight Type",
|
|
2320
|
-
"isOptional": true,
|
|
2321
|
-
"reference": "AdaptableMessageType"
|
|
2322
|
-
},
|
|
2323
2237
|
{
|
|
2324
2238
|
"name": "primaryKeyValue",
|
|
2325
2239
|
"kind": "unknown",
|
|
@@ -2879,7 +2793,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
2879
2793
|
"ColumnMenuContext": {
|
|
2880
2794
|
"name": "ColumnMenuContext",
|
|
2881
2795
|
"kind": "Interface",
|
|
2882
|
-
"description": "Provides full details about
|
|
2796
|
+
"description": "Provides full details about the Column where Column Menu will appear",
|
|
2883
2797
|
"properties": [
|
|
2884
2798
|
{
|
|
2885
2799
|
"name": "adaptableColumn",
|
|
@@ -3566,7 +3480,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
3566
3480
|
{
|
|
3567
3481
|
"name": "SortedValues",
|
|
3568
3482
|
"kind": "unknown",
|
|
3569
|
-
"description": "Order of values by which Column will be sorted
|
|
3483
|
+
"description": "Order of values by which Column will be sorted",
|
|
3570
3484
|
"uiLabel": "Sorted Values",
|
|
3571
3485
|
"isOptional": true
|
|
3572
3486
|
}
|
|
@@ -4091,19 +4005,19 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4091
4005
|
"isOptional": true
|
|
4092
4006
|
},
|
|
4093
4007
|
{
|
|
4094
|
-
"name": "
|
|
4008
|
+
"name": "showQuickSearchInHeader",
|
|
4095
4009
|
"kind": "boolean",
|
|
4096
|
-
"description": "Shows
|
|
4097
|
-
"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",
|
|
4098
4012
|
"isOptional": true,
|
|
4099
4013
|
"gridInfo": "item",
|
|
4100
4014
|
"defaultValue": "true"
|
|
4101
4015
|
},
|
|
4102
4016
|
{
|
|
4103
|
-
"name": "
|
|
4017
|
+
"name": "showSettingsPanel",
|
|
4104
4018
|
"kind": "boolean",
|
|
4105
|
-
"description": "
|
|
4106
|
-
"uiLabel": "Show
|
|
4019
|
+
"description": "Displays a button which opens the Settings Panel",
|
|
4020
|
+
"uiLabel": "Show Settings Panel",
|
|
4107
4021
|
"isOptional": true,
|
|
4108
4022
|
"gridInfo": "item",
|
|
4109
4023
|
"defaultValue": "true"
|
|
@@ -4176,15 +4090,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4176
4090
|
"description": "Module Buttons visible in Dasbhoard Header when application loads - open popup screen for associated AdapTable Module",
|
|
4177
4091
|
"uiLabel": "Module Buttons",
|
|
4178
4092
|
"isOptional": true,
|
|
4179
|
-
"defaultValue": "
|
|
4093
|
+
"defaultValue": "Empty Array",
|
|
4180
4094
|
"reference": "unknown"
|
|
4181
4095
|
},
|
|
4182
4096
|
{
|
|
4183
4097
|
"name": "Tabs",
|
|
4184
4098
|
"kind": "unknown",
|
|
4185
|
-
"description": "Named group of Toolbars
|
|
4099
|
+
"description": "Named group of Toolbars",
|
|
4186
4100
|
"uiLabel": "Tabs",
|
|
4187
|
-
"isOptional": true
|
|
4101
|
+
"isOptional": true,
|
|
4102
|
+
"defaultValue": "Empty Array"
|
|
4188
4103
|
}
|
|
4189
4104
|
]
|
|
4190
4105
|
},
|
|
@@ -4296,6 +4211,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4296
4211
|
"description": "Retrieves current Data Change History mode: 'ACTIVE', 'INACTIVE', 'SUSPENDED'",
|
|
4297
4212
|
"uiLabel": "Get Data Change History Mode"
|
|
4298
4213
|
},
|
|
4214
|
+
{
|
|
4215
|
+
"name": "showDataChangeHistoryPopup",
|
|
4216
|
+
"kind": "function",
|
|
4217
|
+
"description": "Opens Data Change History screen",
|
|
4218
|
+
"uiLabel": "Show Data Change History Popup"
|
|
4219
|
+
},
|
|
4299
4220
|
{
|
|
4300
4221
|
"name": "suspendDataChangeHistory",
|
|
4301
4222
|
"kind": "function",
|
|
@@ -4318,7 +4239,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4318
4239
|
{
|
|
4319
4240
|
"name": "activeByDefault",
|
|
4320
4241
|
"kind": "boolean",
|
|
4321
|
-
"description": "Whether data change history should be active by default
|
|
4242
|
+
"description": "Whether data change history should be active by default",
|
|
4322
4243
|
"uiLabel": "Active By Default",
|
|
4323
4244
|
"isOptional": true,
|
|
4324
4245
|
"gridInfo": "item",
|
|
@@ -4327,7 +4248,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4327
4248
|
{
|
|
4328
4249
|
"name": "showDataChange",
|
|
4329
4250
|
"kind": "unknown",
|
|
4330
|
-
"description": "Function
|
|
4251
|
+
"description": "Function specifying which data changes to include in Data Change History",
|
|
4331
4252
|
"uiLabel": "Show Data Change",
|
|
4332
4253
|
"isOptional": true,
|
|
4333
4254
|
"gridInfo": "item",
|
|
@@ -4559,7 +4480,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4559
4480
|
{
|
|
4560
4481
|
"name": "displayServerValidationMessages",
|
|
4561
4482
|
"kind": "boolean",
|
|
4562
|
-
"description": "Displays message after Server Validation
|
|
4483
|
+
"description": "Displays message after Server Validation",
|
|
4563
4484
|
"uiLabel": "Display Server Validation Messages",
|
|
4564
4485
|
"isOptional": true,
|
|
4565
4486
|
"gridInfo": "item",
|
|
@@ -4703,7 +4624,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4703
4624
|
{
|
|
4704
4625
|
"name": "off",
|
|
4705
4626
|
"kind": "function",
|
|
4706
|
-
"description": "Unsubscribe from
|
|
4627
|
+
"description": "Unsubscribe from FlashingCellDisplayed",
|
|
4707
4628
|
"uiLabel": "Off"
|
|
4708
4629
|
},
|
|
4709
4630
|
{
|
|
@@ -4799,7 +4720,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4799
4720
|
{
|
|
4800
4721
|
"name": "on",
|
|
4801
4722
|
"kind": "function",
|
|
4802
|
-
"description": "Event fired whenever a **
|
|
4723
|
+
"description": "Event fired whenever a **FlashingCell is triggered** in AdapTable.",
|
|
4803
4724
|
"uiLabel": "On"
|
|
4804
4725
|
}
|
|
4805
4726
|
]
|
|
@@ -4986,7 +4907,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
4986
4907
|
{
|
|
4987
4908
|
"name": "appendFileTimestamp",
|
|
4988
4909
|
"kind": "boolean",
|
|
4989
|
-
"description": "Whether to add a timestamp
|
|
4910
|
+
"description": "Whether to add a timestamp as a suffix to exported file name",
|
|
4990
4911
|
"uiLabel": "Append File Timestamp",
|
|
4991
4912
|
"isOptional": true,
|
|
4992
4913
|
"gridInfo": "item",
|
|
@@ -5539,7 +5460,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5539
5460
|
{
|
|
5540
5461
|
"name": "useAdaptableFilterForm",
|
|
5541
5462
|
"kind": "unknown",
|
|
5542
|
-
"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",
|
|
5543
5464
|
"uiLabel": "Use Adaptable Filter Form",
|
|
5544
5465
|
"isOptional": true,
|
|
5545
5466
|
"defaultValue": "true"
|
|
@@ -5547,7 +5468,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5547
5468
|
{
|
|
5548
5469
|
"name": "useAdaptableQuickFilter",
|
|
5549
5470
|
"kind": "unknown",
|
|
5550
|
-
"description": "Use Adaptable's Quick Filter for all columns if 'true' (the default) or those listed, in preference to AG Grid's Floating Filter",
|
|
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",
|
|
5551
5472
|
"uiLabel": "Use Adaptable Quick Filter",
|
|
5552
5473
|
"isOptional": true,
|
|
5553
5474
|
"gridInfo": "item",
|
|
@@ -5634,27 +5555,43 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5634
5555
|
}
|
|
5635
5556
|
]
|
|
5636
5557
|
},
|
|
5637
|
-
"
|
|
5638
|
-
"name": "
|
|
5558
|
+
"FlashingCellDefinition": {
|
|
5559
|
+
"name": "FlashingCellDefinition",
|
|
5639
5560
|
"kind": "Interface",
|
|
5640
|
-
"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
|
+
]
|
|
5641
5578
|
},
|
|
5642
|
-
"
|
|
5643
|
-
"name": "
|
|
5579
|
+
"FlashingCellDisplayedInfo": {
|
|
5580
|
+
"name": "FlashingCellDisplayedInfo",
|
|
5644
5581
|
"kind": "Interface",
|
|
5645
5582
|
"description": "Object returned by the `FlashingAlertFired` event",
|
|
5646
5583
|
"properties": [
|
|
5647
5584
|
{
|
|
5648
|
-
"name": "
|
|
5585
|
+
"name": "flashingCell",
|
|
5649
5586
|
"kind": "REFERENCE",
|
|
5650
5587
|
"description": "FlashingAlert which has been fired",
|
|
5651
|
-
"uiLabel": "Flashing
|
|
5652
|
-
"reference": "
|
|
5588
|
+
"uiLabel": "Flashing Cell",
|
|
5589
|
+
"reference": "unknown"
|
|
5653
5590
|
}
|
|
5654
5591
|
]
|
|
5655
5592
|
},
|
|
5656
|
-
"
|
|
5657
|
-
"name": "
|
|
5593
|
+
"FlashingCellProperties": {
|
|
5594
|
+
"name": "FlashingCellProperties",
|
|
5658
5595
|
"kind": "Interface",
|
|
5659
5596
|
"description": "Properties to use in Flashing Alerts",
|
|
5660
5597
|
"properties": [
|
|
@@ -5703,6 +5640,21 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5703
5640
|
}
|
|
5704
5641
|
]
|
|
5705
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
|
+
},
|
|
5706
5658
|
"FormatColumn": {
|
|
5707
5659
|
"name": "FormatColumn",
|
|
5708
5660
|
"kind": "Interface",
|
|
@@ -5984,7 +5936,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
5984
5936
|
{
|
|
5985
5937
|
"name": "DataType",
|
|
5986
5938
|
"kind": "unknown",
|
|
5987
|
-
"description": "Whether Column is String, Number, Boolean or Date
|
|
5939
|
+
"description": "Whether Column is String, Number, Boolean or Date",
|
|
5988
5940
|
"uiLabel": "Data Type",
|
|
5989
5941
|
"isOptional": true,
|
|
5990
5942
|
"defaultValue": "'String'"
|
|
@@ -6021,7 +5973,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6021
5973
|
{
|
|
6022
5974
|
"name": "TextEditor",
|
|
6023
5975
|
"kind": "unknown",
|
|
6024
|
-
"description": "Cell editor to use when editing a Free Text Column
|
|
5976
|
+
"description": "Cell editor to use when editing a string Free Text Column *",
|
|
6025
5977
|
"uiLabel": "Text Editor",
|
|
6026
5978
|
"isOptional": true,
|
|
6027
5979
|
"defaultValue": "'Inline'"
|
|
@@ -6782,6 +6734,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6782
6734
|
"description": "Highlights a Cell in AdapTable",
|
|
6783
6735
|
"uiLabel": "Highlight Cell"
|
|
6784
6736
|
},
|
|
6737
|
+
{
|
|
6738
|
+
"name": "highlightRow",
|
|
6739
|
+
"kind": "function",
|
|
6740
|
+
"description": "Highlight a row using an adaptable style",
|
|
6741
|
+
"uiLabel": "Highlight Row"
|
|
6742
|
+
},
|
|
6785
6743
|
{
|
|
6786
6744
|
"name": "isGridGroupable",
|
|
6787
6745
|
"kind": "function",
|
|
@@ -6855,10 +6813,16 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6855
6813
|
"uiLabel": "Refresh Cells"
|
|
6856
6814
|
},
|
|
6857
6815
|
{
|
|
6858
|
-
"name": "
|
|
6816
|
+
"name": "refreshRowByPrimaryKey",
|
|
6859
6817
|
"kind": "function",
|
|
6860
6818
|
"description": "Forces a render of a row",
|
|
6861
|
-
"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"
|
|
6862
6826
|
},
|
|
6863
6827
|
{
|
|
6864
6828
|
"name": "selectAll",
|
|
@@ -6932,6 +6896,12 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6932
6896
|
"description": "Sets the grid to Row Group",
|
|
6933
6897
|
"uiLabel": "Set Row Group Columns"
|
|
6934
6898
|
},
|
|
6899
|
+
{
|
|
6900
|
+
"name": "showGridInfoPopup",
|
|
6901
|
+
"kind": "function",
|
|
6902
|
+
"description": "Opens Grid Info popup screen",
|
|
6903
|
+
"uiLabel": "Show Grid Info Popup"
|
|
6904
|
+
},
|
|
6935
6905
|
{
|
|
6936
6906
|
"name": "undoCellEdit",
|
|
6937
6907
|
"kind": "function",
|
|
@@ -6939,16 +6909,28 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
6939
6909
|
"uiLabel": "Undo Cell Edit"
|
|
6940
6910
|
},
|
|
6941
6911
|
{
|
|
6942
|
-
"name": "
|
|
6912
|
+
"name": "unHighlightAllCells",
|
|
6943
6913
|
"kind": "function",
|
|
6944
6914
|
"description": "Unhighlights all highlighted Cells in AdapTable",
|
|
6945
|
-
"uiLabel": "
|
|
6915
|
+
"uiLabel": "Un Highlight All Cells"
|
|
6946
6916
|
},
|
|
6947
6917
|
{
|
|
6948
|
-
"name": "
|
|
6918
|
+
"name": "unHighlightAllRows",
|
|
6919
|
+
"kind": "function",
|
|
6920
|
+
"description": "Remove all highlighted rows",
|
|
6921
|
+
"uiLabel": "Un Highlight All Rows"
|
|
6922
|
+
},
|
|
6923
|
+
{
|
|
6924
|
+
"name": "unHighlightCell",
|
|
6949
6925
|
"kind": "function",
|
|
6950
6926
|
"description": "Unhighlights a Cell in AdapTable",
|
|
6951
|
-
"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"
|
|
6952
6934
|
},
|
|
6953
6935
|
{
|
|
6954
6936
|
"name": "updateGridData",
|
|
@@ -7016,10 +6998,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7016
6998
|
"uiLabel": "Data Rows"
|
|
7017
6999
|
},
|
|
7018
7000
|
{
|
|
7019
|
-
"name": "
|
|
7001
|
+
"name": "rowTrigger",
|
|
7020
7002
|
"kind": "unknown",
|
|
7021
7003
|
"description": "Trigger for row change: 'Add', 'Edit' or 'Delete'",
|
|
7022
|
-
"uiLabel": "Row
|
|
7004
|
+
"uiLabel": "Row Trigger"
|
|
7023
7005
|
}
|
|
7024
7006
|
]
|
|
7025
7007
|
},
|
|
@@ -7079,7 +7061,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7079
7061
|
{
|
|
7080
7062
|
"name": "columnId",
|
|
7081
7063
|
"kind": "string",
|
|
7082
|
-
"description": "Column
|
|
7064
|
+
"description": "Column defined as an Instrument - its value provides the `name` property in the FDC3 message",
|
|
7083
7065
|
"uiLabel": "Column Id"
|
|
7084
7066
|
},
|
|
7085
7067
|
{
|
|
@@ -7517,7 +7499,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7517
7499
|
{
|
|
7518
7500
|
"name": "ExpandedRowGroupValues",
|
|
7519
7501
|
"kind": "unknown",
|
|
7520
|
-
"description": "Values of opened row groups
|
|
7502
|
+
"description": "Values of opened row groups",
|
|
7521
7503
|
"uiLabel": "Expanded Row Group Values",
|
|
7522
7504
|
"isOptional": true
|
|
7523
7505
|
},
|
|
@@ -7864,7 +7846,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
7864
7846
|
{
|
|
7865
7847
|
"name": "columnMenuItems",
|
|
7866
7848
|
"kind": "unknown",
|
|
7867
|
-
"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).",
|
|
7868
7850
|
"uiLabel": "Column Menu Items",
|
|
7869
7851
|
"isOptional": true
|
|
7870
7852
|
},
|
|
@@ -8003,13 +7985,13 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8003
7985
|
"defaultValue": "3000"
|
|
8004
7986
|
},
|
|
8005
7987
|
{
|
|
8006
|
-
"name": "
|
|
7988
|
+
"name": "flashingCellDefaultProperties",
|
|
8007
7989
|
"kind": "REFERENCE",
|
|
8008
7990
|
"description": "Flashing Alert Defaults",
|
|
8009
|
-
"uiLabel": "Flashing
|
|
7991
|
+
"uiLabel": "Flashing Cell Default Properties",
|
|
8010
7992
|
"isOptional": true,
|
|
8011
7993
|
"defaultValue": "BackColors: Green (up), Red (down), Gray (neutral), Duration: 500ms",
|
|
8012
|
-
"reference": "
|
|
7994
|
+
"reference": "FlashingCellProperties"
|
|
8013
7995
|
},
|
|
8014
7996
|
{
|
|
8015
7997
|
"name": "isDraggable",
|
|
@@ -8084,10 +8066,10 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
8084
8066
|
"defaultValue": "false"
|
|
8085
8067
|
},
|
|
8086
8068
|
{
|
|
8087
|
-
"name": "
|
|
8069
|
+
"name": "showSystemStatusMessageNotifications",
|
|
8088
8070
|
"kind": "boolean",
|
|
8089
8071
|
"description": "Display an Alert when a System Status Message is set",
|
|
8090
|
-
"uiLabel": "Show System Status Message
|
|
8072
|
+
"uiLabel": "Show System Status Message Notifications",
|
|
8091
8073
|
"isOptional": true,
|
|
8092
8074
|
"gridInfo": "item",
|
|
8093
8075
|
"defaultValue": "false"
|
|
@@ -9102,7 +9084,34 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9102
9084
|
"ReminderSchedule": {
|
|
9103
9085
|
"name": "ReminderSchedule",
|
|
9104
9086
|
"kind": "Interface",
|
|
9105
|
-
"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
|
+
]
|
|
9106
9115
|
},
|
|
9107
9116
|
"ReportData": {
|
|
9108
9117
|
"name": "ReportData",
|
|
@@ -9206,10 +9215,11 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9206
9215
|
"properties": [
|
|
9207
9216
|
{
|
|
9208
9217
|
"name": "DaysOfWeek",
|
|
9209
|
-
"kind": "
|
|
9210
|
-
"description": "Days on which
|
|
9218
|
+
"kind": "REFERENCE",
|
|
9219
|
+
"description": "Days on which Schedule will run",
|
|
9211
9220
|
"uiLabel": "Days Of Week",
|
|
9212
|
-
"isOptional": true
|
|
9221
|
+
"isOptional": true,
|
|
9222
|
+
"reference": "unknown"
|
|
9213
9223
|
},
|
|
9214
9224
|
{
|
|
9215
9225
|
"name": "Hour",
|
|
@@ -9888,7 +9898,7 @@ exports.ADAPTABLE_METAMODEL = {
|
|
|
9888
9898
|
{
|
|
9889
9899
|
"name": "Scope",
|
|
9890
9900
|
"kind": "unknown",
|
|
9891
|
-
"description": "
|
|
9901
|
+
"description": "Numeric Columns where Shortcut is applied",
|
|
9892
9902
|
"uiLabel": "Scope"
|
|
9893
9903
|
},
|
|
9894
9904
|
{
|
|
@@ -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
|
{
|
|
@@ -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",
|
|
@@ -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
|
},
|