@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
|
@@ -3,15 +3,19 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.ToggleButton = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const React = tslib_1.__importStar(require("react"));
|
|
6
|
+
const rebass_1 = require("rebass");
|
|
6
7
|
const join_1 = tslib_1.__importDefault(require("../utils/join"));
|
|
7
|
-
exports.ToggleButton = ({ checked, onChange, disabled, style = {}, 'data-name': dataName, }) => {
|
|
8
|
+
exports.ToggleButton = ({ checked, onChange, disabled, className, children, style = {}, 'data-name': dataName, }) => {
|
|
8
9
|
const handleChange = (event) => {
|
|
9
10
|
if (disabled) {
|
|
10
11
|
return;
|
|
11
12
|
}
|
|
12
13
|
onChange(Boolean(event.target.checked));
|
|
13
14
|
};
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
const baseClassName = 'ab-ToggleButton';
|
|
16
|
+
const preparedClassName = join_1.default(className, baseClassName, checked && `${baseClassName}--checked`, disabled && `${baseClassName}--disabled`);
|
|
17
|
+
return (React.createElement("label", { "data-name": dataName, style: style, className: preparedClassName },
|
|
18
|
+
React.createElement("input", { type: "checkbox", disabled: disabled, checked: Boolean(checked), className: `${baseClassName}__input`, onChange: handleChange }),
|
|
19
|
+
React.createElement(rebass_1.Flex, { alignItems: "center", justifyContent: checked ? 'start' : 'end', className: `${baseClassName}__slider` },
|
|
20
|
+
React.createElement("div", { className: `${baseClassName}__text` }, children))));
|
|
17
21
|
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export interface WindowModalProps {
|
|
3
|
+
handleSelector: string;
|
|
4
|
+
size: {
|
|
5
|
+
width: number;
|
|
6
|
+
height: number;
|
|
7
|
+
};
|
|
8
|
+
position?: {
|
|
9
|
+
x: number;
|
|
10
|
+
y: number;
|
|
11
|
+
};
|
|
12
|
+
onChange: (settings: {
|
|
13
|
+
size: {
|
|
14
|
+
width: number;
|
|
15
|
+
height: number;
|
|
16
|
+
};
|
|
17
|
+
position: {
|
|
18
|
+
x: number;
|
|
19
|
+
y: number;
|
|
20
|
+
};
|
|
21
|
+
}) => void;
|
|
22
|
+
}
|
|
23
|
+
export declare const WindowModal: React.FunctionComponent<WindowModalProps>;
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.WindowModal = void 0;
|
|
4
|
+
const tslib_1 = require("tslib");
|
|
5
|
+
const React = tslib_1.__importStar(require("react"));
|
|
6
|
+
const re_resizable_1 = require("re-resizable");
|
|
7
|
+
const useDraggable_1 = tslib_1.__importDefault(require("../utils/useDraggable"));
|
|
8
|
+
const getResizePositionDelta = (direction, delta) => {
|
|
9
|
+
const positionDelta = { x: 0, y: 0 };
|
|
10
|
+
const left = -delta.width;
|
|
11
|
+
const top = -delta.height;
|
|
12
|
+
const directions = ['top', 'left', 'topLeft', 'bottomLeft', 'topRight'];
|
|
13
|
+
if (directions.indexOf(direction) !== -1) {
|
|
14
|
+
if (direction === 'bottomLeft') {
|
|
15
|
+
positionDelta.x += left;
|
|
16
|
+
}
|
|
17
|
+
else if (direction === 'topRight') {
|
|
18
|
+
positionDelta.y += top;
|
|
19
|
+
}
|
|
20
|
+
else {
|
|
21
|
+
positionDelta.x += left;
|
|
22
|
+
positionDelta.y += top;
|
|
23
|
+
}
|
|
24
|
+
return positionDelta;
|
|
25
|
+
}
|
|
26
|
+
return null;
|
|
27
|
+
};
|
|
28
|
+
exports.WindowModal = (props) => {
|
|
29
|
+
const positionDeltaRef = React.useRef(null);
|
|
30
|
+
const positionRef = React.useRef(props.position);
|
|
31
|
+
/**
|
|
32
|
+
* This is needed because the function called in onDrop is saved when
|
|
33
|
+
* it gets attached to the DOM element event handler.
|
|
34
|
+
* This handler changes only when the underlying node changes.
|
|
35
|
+
*/
|
|
36
|
+
positionRef.current = props.position;
|
|
37
|
+
const style = {
|
|
38
|
+
zIndex: 1000,
|
|
39
|
+
position: 'absolute',
|
|
40
|
+
left: props.position.x,
|
|
41
|
+
top: props.position.y,
|
|
42
|
+
};
|
|
43
|
+
const handleDrop = (dx, dy) => {
|
|
44
|
+
const newPosition = { x: positionRef.current.x + dx, y: positionRef.current.y + dy };
|
|
45
|
+
props.onChange({
|
|
46
|
+
position: newPosition,
|
|
47
|
+
size: props.size,
|
|
48
|
+
});
|
|
49
|
+
};
|
|
50
|
+
const { targetRef, applyTransform } = useDraggable_1.default({
|
|
51
|
+
handleSelector: props.handleSelector,
|
|
52
|
+
onDrop: handleDrop,
|
|
53
|
+
});
|
|
54
|
+
const handleResizeStop = (event, direction, elementRef, delta) => {
|
|
55
|
+
let newPosition = props.position;
|
|
56
|
+
if (positionDeltaRef.current) {
|
|
57
|
+
newPosition = {
|
|
58
|
+
x: props.position.x + positionDeltaRef.current.x,
|
|
59
|
+
y: props.position.y + positionDeltaRef.current.y,
|
|
60
|
+
};
|
|
61
|
+
positionDeltaRef.current = null;
|
|
62
|
+
applyTransform(0, 0);
|
|
63
|
+
}
|
|
64
|
+
const newSize = {
|
|
65
|
+
width: props.size.width + delta.width,
|
|
66
|
+
height: props.size.height + delta.height,
|
|
67
|
+
};
|
|
68
|
+
props.onChange({
|
|
69
|
+
position: newPosition,
|
|
70
|
+
size: newSize,
|
|
71
|
+
});
|
|
72
|
+
};
|
|
73
|
+
const handleResize = React.useCallback((event, direction, elementRef, delta) => {
|
|
74
|
+
const positionDelta = getResizePositionDelta(direction, delta);
|
|
75
|
+
if (positionDelta) {
|
|
76
|
+
positionDeltaRef.current = positionDelta;
|
|
77
|
+
applyTransform(positionDelta.x, positionDelta.y);
|
|
78
|
+
}
|
|
79
|
+
}, []);
|
|
80
|
+
return (React.createElement("div", { style: style,
|
|
81
|
+
//@ts-ignore
|
|
82
|
+
ref: targetRef },
|
|
83
|
+
React.createElement(re_resizable_1.Resizable, { onResizeStop: handleResizeStop, onResize: handleResize, bounds: "window", defaultSize: {
|
|
84
|
+
width: props.size.width,
|
|
85
|
+
height: props.size.height,
|
|
86
|
+
} }, props.children)));
|
|
87
|
+
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './WindowModal';
|
|
@@ -62,6 +62,7 @@ const freetext_column_1 = tslib_1.__importDefault(require("./freetext-column"));
|
|
|
62
62
|
const comment_1 = tslib_1.__importDefault(require("./comment"));
|
|
63
63
|
const layout_1 = tslib_1.__importDefault(require("./layout"));
|
|
64
64
|
const state_management_1 = tslib_1.__importDefault(require("./state-management"));
|
|
65
|
+
const tool_panel_1 = tslib_1.__importDefault(require("./tool-panel"));
|
|
65
66
|
const percent_bar_1 = tslib_1.__importDefault(require("./percent-bar"));
|
|
66
67
|
const gradient_column_1 = tslib_1.__importDefault(require("./gradient-column"));
|
|
67
68
|
const spark_line_1 = tslib_1.__importDefault(require("./spark-line"));
|
|
@@ -125,6 +126,7 @@ const contains_1 = tslib_1.__importDefault(require("./contains"));
|
|
|
125
126
|
const not_contains_1 = tslib_1.__importDefault(require("./not-contains"));
|
|
126
127
|
const regex_1 = tslib_1.__importDefault(require("./regex"));
|
|
127
128
|
const track_changes_1 = tslib_1.__importDefault(require("./track-changes"));
|
|
129
|
+
const menu_1 = tslib_1.__importDefault(require("./menu"));
|
|
128
130
|
const LoggingHelper_1 = require("../../Utilities/Helpers/LoggingHelper");
|
|
129
131
|
const allIcons = {
|
|
130
132
|
// toolbars
|
|
@@ -165,6 +167,7 @@ const allIcons = {
|
|
|
165
167
|
schedule: schedule_1.default,
|
|
166
168
|
shortcut: shortcut_1.default,
|
|
167
169
|
'state-management': state_management_1.default,
|
|
170
|
+
'tool-panel': tool_panel_1.default,
|
|
168
171
|
'system-status': system_status_1.default,
|
|
169
172
|
'team-share': team_share_1.default,
|
|
170
173
|
'updated-row': updated_row_1.default,
|
|
@@ -263,6 +266,7 @@ const allIcons = {
|
|
|
263
266
|
contains: contains_1.default,
|
|
264
267
|
regex: regex_1.default,
|
|
265
268
|
'track-changes': track_changes_1.default,
|
|
269
|
+
menu: menu_1.default,
|
|
266
270
|
};
|
|
267
271
|
Object.keys(allIcons).forEach((name) => {
|
|
268
272
|
const ReactCmp = allIcons[name];
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
|
|
7
|
+
React.createElement("path", { d: "M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z" })));
|
|
@@ -4,4 +4,4 @@ const tslib_1 = require("tslib");
|
|
|
4
4
|
const React = tslib_1.__importStar(require("react"));
|
|
5
5
|
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
6
|
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
|
|
7
|
-
React.createElement("path", { d: "
|
|
7
|
+
React.createElement("path", { d: "M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V7c0-1.1-.9-2-2-2h-2V3h-2v2h-2V3H9v2H7c-1.1 0-2 .9-2 2v2H3v2h2v2H3v2h2v2c0 1.1.9 2 2 2h2v2h2v-2h2v2h2v-2h2c1.1 0 2-.9 2-2v-2h2v-2h-2v-2h2zm-4 6H7V7h10v10z" })));
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const React = tslib_1.__importStar(require("react"));
|
|
5
|
+
const DefaultIcon_1 = tslib_1.__importDefault(require("./DefaultIcon"));
|
|
6
|
+
exports.default = (props) => (React.createElement(DefaultIcon_1.default, Object.assign({}, props),
|
|
7
|
+
React.createElement("path", { d: "M19 3h-4.18C14.4 1.84 13.3 1 12 1c-1.3 0-2.4.84-2.82 2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-7 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2 14H7v-2h7v2zm3-4H7v-2h10v2zm0-4H7V7h10v2z" })));
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
export default function useDraggable({ onMove, onDrop, getBoundingRect, }: {
|
|
2
|
+
export default function useDraggable({ onMove, onDrop, getBoundingRect, handleSelector, }: {
|
|
3
3
|
onMove?: (event: MouseEvent) => void;
|
|
4
4
|
onDrop?: (dx: number, dy: number) => void;
|
|
5
5
|
getBoundingRect?: () => DOMRect;
|
|
6
|
+
handleSelector?: string;
|
|
6
7
|
}): {
|
|
7
8
|
handleRef: (newNode: HTMLElement) => void;
|
|
8
9
|
targetRef: import("react").MutableRefObject<HTMLElement>;
|
|
10
|
+
applyTransform: (dx: number, dy: number) => void;
|
|
9
11
|
};
|
|
@@ -4,7 +4,7 @@ const react_1 = require("react");
|
|
|
4
4
|
function clamp(num, min, max) {
|
|
5
5
|
return num <= min ? min : num >= max ? max : num;
|
|
6
6
|
}
|
|
7
|
-
function useDraggable({ onMove, onDrop, getBoundingRect = () => document.body.getBoundingClientRect(), }) {
|
|
7
|
+
function useDraggable({ onMove, onDrop, getBoundingRect = () => document.body.getBoundingClientRect(), handleSelector, }) {
|
|
8
8
|
const startRef = react_1.useRef();
|
|
9
9
|
const handleRef = react_1.useRef(null);
|
|
10
10
|
const targetRef = react_1.useRef(null);
|
|
@@ -19,6 +19,18 @@ function useDraggable({ onMove, onDrop, getBoundingRect = () => document.body.ge
|
|
|
19
19
|
}
|
|
20
20
|
handleRef.current = newNode;
|
|
21
21
|
}, []);
|
|
22
|
+
react_1.useEffect(() => {
|
|
23
|
+
if (handleSelector) {
|
|
24
|
+
/**
|
|
25
|
+
* Element may not be yet attached.
|
|
26
|
+
* This gives time react to render the node handle.
|
|
27
|
+
*/
|
|
28
|
+
setTimeout(() => {
|
|
29
|
+
const node = document.querySelector(handleSelector);
|
|
30
|
+
node && handleRefCallback(node);
|
|
31
|
+
}, 16);
|
|
32
|
+
}
|
|
33
|
+
}, [handleSelector]);
|
|
22
34
|
const applyTransform = (dx, dy) => {
|
|
23
35
|
if (!targetRef.current)
|
|
24
36
|
return;
|
|
@@ -79,6 +91,6 @@ function useDraggable({ onMove, onDrop, getBoundingRect = () => document.body.ge
|
|
|
79
91
|
if (onDrop && (dx !== 0 || dy !== 0))
|
|
80
92
|
onDrop(dx, dy);
|
|
81
93
|
};
|
|
82
|
-
return { handleRef: handleRefCallback, targetRef };
|
|
94
|
+
return { handleRef: handleRefCallback, targetRef, applyTransform };
|
|
83
95
|
}
|
|
84
96
|
exports.default = useDraggable;
|
|
@@ -349,36 +349,36 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
349
349
|
description: string;
|
|
350
350
|
uiLabel: string;
|
|
351
351
|
isOptional: boolean;
|
|
352
|
-
|
|
352
|
+
defaultValue: string;
|
|
353
353
|
gridInfo?: undefined;
|
|
354
|
-
|
|
354
|
+
reference?: undefined;
|
|
355
355
|
} | {
|
|
356
356
|
name: string;
|
|
357
357
|
kind: string;
|
|
358
358
|
description: string;
|
|
359
359
|
uiLabel: string;
|
|
360
360
|
isOptional: boolean;
|
|
361
|
+
reference: string;
|
|
361
362
|
gridInfo?: undefined;
|
|
362
363
|
defaultValue?: undefined;
|
|
363
|
-
reference?: undefined;
|
|
364
364
|
} | {
|
|
365
365
|
name: string;
|
|
366
366
|
kind: string;
|
|
367
367
|
description: string;
|
|
368
368
|
uiLabel: string;
|
|
369
369
|
isOptional: boolean;
|
|
370
|
-
gridInfo
|
|
371
|
-
reference: string;
|
|
370
|
+
gridInfo?: undefined;
|
|
372
371
|
defaultValue?: undefined;
|
|
372
|
+
reference?: undefined;
|
|
373
373
|
} | {
|
|
374
374
|
name: string;
|
|
375
375
|
kind: string;
|
|
376
376
|
description: string;
|
|
377
377
|
uiLabel: string;
|
|
378
378
|
isOptional: boolean;
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
379
|
+
gridInfo: string;
|
|
380
|
+
reference: string;
|
|
381
|
+
defaultValue?: undefined;
|
|
382
382
|
} | {
|
|
383
383
|
name: string;
|
|
384
384
|
kind: string;
|
|
@@ -736,18 +736,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
736
736
|
isOptional: boolean;
|
|
737
737
|
}[];
|
|
738
738
|
};
|
|
739
|
-
BaseAlertDefinition: {
|
|
740
|
-
name: string;
|
|
741
|
-
kind: string;
|
|
742
|
-
description: string;
|
|
743
|
-
properties: {
|
|
744
|
-
name: string;
|
|
745
|
-
kind: string;
|
|
746
|
-
description: string;
|
|
747
|
-
uiLabel: string;
|
|
748
|
-
reference: string;
|
|
749
|
-
}[];
|
|
750
|
-
};
|
|
751
739
|
BulkUpdateApi: {
|
|
752
740
|
name: string;
|
|
753
741
|
kind: string;
|
|
@@ -877,21 +865,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
877
865
|
description: string;
|
|
878
866
|
uiLabel: string;
|
|
879
867
|
isOptional?: undefined;
|
|
880
|
-
reference?: undefined;
|
|
881
868
|
} | {
|
|
882
869
|
name: string;
|
|
883
870
|
kind: string;
|
|
884
871
|
description: string;
|
|
885
872
|
uiLabel: string;
|
|
886
873
|
isOptional: boolean;
|
|
887
|
-
reference: string;
|
|
888
|
-
} | {
|
|
889
|
-
name: string;
|
|
890
|
-
kind: string;
|
|
891
|
-
description: string;
|
|
892
|
-
uiLabel: string;
|
|
893
|
-
isOptional: boolean;
|
|
894
|
-
reference?: undefined;
|
|
895
874
|
})[];
|
|
896
875
|
};
|
|
897
876
|
CellSummaryApi: {
|
|
@@ -1908,12 +1887,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1908
1887
|
isOptional: boolean;
|
|
1909
1888
|
}[];
|
|
1910
1889
|
};
|
|
1911
|
-
|
|
1890
|
+
FlashingCellDefinition: {
|
|
1912
1891
|
name: string;
|
|
1913
1892
|
kind: string;
|
|
1914
1893
|
description: string;
|
|
1894
|
+
properties: {
|
|
1895
|
+
name: string;
|
|
1896
|
+
kind: string;
|
|
1897
|
+
description: string;
|
|
1898
|
+
uiLabel: string;
|
|
1899
|
+
reference: string;
|
|
1900
|
+
}[];
|
|
1915
1901
|
};
|
|
1916
|
-
|
|
1902
|
+
FlashingCellDisplayedInfo: {
|
|
1917
1903
|
name: string;
|
|
1918
1904
|
kind: string;
|
|
1919
1905
|
description: string;
|
|
@@ -1925,7 +1911,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1925
1911
|
reference: string;
|
|
1926
1912
|
}[];
|
|
1927
1913
|
};
|
|
1928
|
-
|
|
1914
|
+
FlashingCellProperties: {
|
|
1929
1915
|
name: string;
|
|
1930
1916
|
kind: string;
|
|
1931
1917
|
description: string;
|
|
@@ -1947,6 +1933,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1947
1933
|
reference?: undefined;
|
|
1948
1934
|
})[];
|
|
1949
1935
|
};
|
|
1936
|
+
FlashingCellState: {
|
|
1937
|
+
name: string;
|
|
1938
|
+
kind: string;
|
|
1939
|
+
description: string;
|
|
1940
|
+
properties: {
|
|
1941
|
+
name: string;
|
|
1942
|
+
kind: string;
|
|
1943
|
+
description: string;
|
|
1944
|
+
uiLabel: string;
|
|
1945
|
+
isOptional: boolean;
|
|
1946
|
+
defaultValue: string;
|
|
1947
|
+
}[];
|
|
1948
|
+
};
|
|
1950
1949
|
FormatColumn: {
|
|
1951
1950
|
name: string;
|
|
1952
1951
|
kind: string;
|
|
@@ -2837,6 +2836,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2837
2836
|
name: string;
|
|
2838
2837
|
kind: string;
|
|
2839
2838
|
description: string;
|
|
2839
|
+
properties: ({
|
|
2840
|
+
name: string;
|
|
2841
|
+
kind: string;
|
|
2842
|
+
description: string;
|
|
2843
|
+
uiLabel: string;
|
|
2844
|
+
reference?: undefined;
|
|
2845
|
+
} | {
|
|
2846
|
+
name: string;
|
|
2847
|
+
kind: string;
|
|
2848
|
+
description: string;
|
|
2849
|
+
uiLabel: string;
|
|
2850
|
+
reference: string;
|
|
2851
|
+
})[];
|
|
2840
2852
|
};
|
|
2841
2853
|
ReportData: {
|
|
2842
2854
|
name: string;
|
|
@@ -2891,12 +2903,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2891
2903
|
description: string;
|
|
2892
2904
|
uiLabel: string;
|
|
2893
2905
|
isOptional: boolean;
|
|
2906
|
+
reference: string;
|
|
2894
2907
|
} | {
|
|
2895
2908
|
name: string;
|
|
2896
2909
|
kind: string;
|
|
2897
2910
|
description: string;
|
|
2898
2911
|
uiLabel: string;
|
|
2899
2912
|
isOptional?: undefined;
|
|
2913
|
+
reference?: undefined;
|
|
2914
|
+
} | {
|
|
2915
|
+
name: string;
|
|
2916
|
+
kind: string;
|
|
2917
|
+
description: string;
|
|
2918
|
+
uiLabel: string;
|
|
2919
|
+
isOptional: boolean;
|
|
2920
|
+
reference?: undefined;
|
|
2900
2921
|
})[];
|
|
2901
2922
|
};
|
|
2902
2923
|
ScheduleApi: {
|