@adaptabletools/adaptable 10.0.4-canary.2 → 11.0.0-canary.0
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 +372 -86
- package/bundle.cjs.js +141 -136
- package/index.css +435 -95
- package/package.json +5 -4
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +12 -6
- package/src/AdaptableOptions/AdaptableOptions.d.ts +19 -3
- package/src/AdaptableOptions/ContainerOptions.d.ts +0 -7
- package/src/AdaptableOptions/DashboardOptions.d.ts +4 -7
- 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/FlashingCellOptions.d.ts +31 -0
- package/src/AdaptableOptions/{ChartPluginOptions.js → FlashingCellOptions.js} +0 -0
- package/src/AdaptableOptions/GeneralOptions.d.ts +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +2 -2
- package/src/AdaptableOptions/NotificationsOptions.d.ts +2 -8
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +87 -0
- package/src/{Api/ChartApi.js → AdaptableOptions/SettingsPanelOptions.js} +0 -0
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -14
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +34 -0
- package/src/Api/AdaptableApi.d.ts +9 -7
- package/src/Api/AlertApi.d.ts +4 -79
- package/src/Api/ChartingApi.d.ts +9 -0
- package/src/Api/{Events/FlashingAlertFired.js → ChartingApi.js} +0 -0
- package/src/Api/ColumnApi.d.ts +11 -1
- package/src/Api/ConfigApi.d.ts +0 -12
- package/src/Api/DataChangeHistoryApi.d.ts +4 -0
- package/src/Api/EventApi.d.ts +8 -8
- package/src/Api/Events/AdaptableReady.d.ts +1 -1
- package/src/Api/Events/FlashingCellDisplayed.d.ts +11 -0
- package/src/Api/{SparklineColumnApi.js → Events/FlashingCellDisplayed.js} +0 -0
- package/src/Api/Events/GridDataChanged.d.ts +3 -1
- package/src/Api/FlashingCellApi.d.ts +89 -0
- package/src/{PredefinedConfig/ChartState.js → Api/FlashingCellApi.js} +0 -0
- package/src/Api/GridApi.d.ts +28 -5
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +4 -2
- package/src/Api/Implementation/AdaptableApiImpl.js +4 -2
- package/src/Api/Implementation/AlertApiImpl.d.ts +8 -22
- package/src/Api/Implementation/AlertApiImpl.js +40 -107
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +1 -1
- package/src/Api/Implementation/ChartingApiImpl.d.ts +5 -0
- package/src/Api/Implementation/ChartingApiImpl.js +10 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +3 -1
- package/src/Api/Implementation/ColumnApiImpl.js +14 -8
- package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -4
- package/src/Api/Implementation/ConfigApiImpl.js +0 -21
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +5 -0
- package/src/Api/Implementation/FilterApiImpl.js +1 -1
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +24 -0
- package/src/Api/Implementation/FlashingCellApiImpl.js +111 -0
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +1 -1
- 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 -6
- package/src/Api/Implementation/InternalApiImpl.js +5 -10
- package/src/Api/Implementation/LayoutApiImpl.js +12 -0
- package/src/Api/Implementation/PluginsApiImpl.d.ts +0 -2
- package/src/Api/Implementation/PluginsApiImpl.js +0 -6
- package/src/Api/Implementation/PlusMinusApiImpl.js +1 -1
- package/src/Api/Implementation/QueryApiImpl.js +1 -1
- 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 -8
- package/src/Api/PluginsApi.d.ts +0 -2
- package/src/Api/SmartEditApi.d.ts +4 -4
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -4
- 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/{AdaptableFlashingAlert.js → AdaptableFlashingCell.js} +0 -0
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +38 -38
- package/src/PredefinedConfig/Common/AdaptableScope.d.ts +3 -3
- package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +14 -3
- package/src/PredefinedConfig/Common/CellSummary.d.ts +2 -2
- package/src/PredefinedConfig/Common/Enums.js +1 -0
- package/src/PredefinedConfig/Common/Menu.d.ts +16 -20
- package/src/PredefinedConfig/Common/Schedule.d.ts +4 -14
- package/src/PredefinedConfig/Common/Schedule.js +0 -14
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +4 -0
- package/src/PredefinedConfig/Common/Types.d.ts +6 -5
- package/src/PredefinedConfig/Common/Types.js +0 -2
- package/src/PredefinedConfig/CustomSortState.d.ts +1 -1
- package/src/PredefinedConfig/DashboardState.d.ts +3 -2
- package/src/PredefinedConfig/FlashingCellState.d.ts +65 -0
- package/src/PredefinedConfig/{SparklineColumnState.js → FlashingCellState.js} +0 -0
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +2 -2
- package/src/PredefinedConfig/LayoutState.d.ts +1 -1
- package/src/PredefinedConfig/PredefinedConfig.d.ts +2 -10
- package/src/PredefinedConfig/ScheduleState.d.ts +1 -5
- package/src/PredefinedConfig/ShortcutState.d.ts +6 -2
- package/src/PredefinedConfig/SystemState.d.ts +17 -8
- package/src/PredefinedConfig/ThemeState.d.ts +2 -1
- package/src/Redux/ActionsReducers/AlertRedux.d.ts +3 -38
- package/src/Redux/ActionsReducers/AlertRedux.js +9 -68
- package/src/Redux/ActionsReducers/DashboardRedux.js +2 -2
- 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 -3
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +34 -25
- package/src/Redux/ActionsReducers/SystemRedux.js +94 -60
- package/src/Redux/ActionsReducers/ToolPanelRedux.js +1 -1
- package/src/Redux/Store/AdaptableStore.js +90 -65
- package/src/Strategy/AdaptableModuleBase.d.ts +1 -1
- package/src/Strategy/AdaptableModuleBase.js +0 -3
- 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 +34 -0
- package/src/Strategy/ChartingModule.d.ts +7 -0
- package/src/Strategy/ChartingModule.js +15 -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 +28 -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 -1
- package/src/Strategy/LayoutModule.js +15 -3
- 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 +25 -0
- package/src/Strategy/ScheduleModule.d.ts +17 -1
- package/src/Strategy/ScheduleModule.js +148 -2
- package/src/Strategy/SetingsPanelModule.d.ts +11 -0
- package/src/Strategy/SetingsPanelModule.js +30 -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/getFlashingTargetViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getFlashingTargetViewItems.js +9 -0
- package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +15 -0
- package/src/Strategy/Utilities/getFormatColumnStyleViewItems.d.ts +3 -0
- package/src/Strategy/Utilities/getFormatColumnStyleViewItems.js +10 -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/ConfigConstants.d.ts +0 -1
- package/src/Utilities/Constants/ConfigConstants.js +1 -2
- package/src/Utilities/Constants/GeneralConstants.d.ts +0 -9
- package/src/Utilities/Constants/GeneralConstants.js +1 -12
- package/src/Utilities/Constants/ModuleConstants.d.ts +3 -2
- package/src/Utilities/Constants/ModuleConstants.js +4 -3
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +26 -18
- package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +7 -0
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +35 -0
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +4 -1
- package/src/Utilities/Extensions/ArrayExtensions.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +3 -2
- package/src/Utilities/Helpers/StyleHelper.d.ts +4 -0
- package/src/Utilities/Helpers/StyleHelper.js +4 -1
- package/src/Utilities/Interface/MessagePopups.d.ts +0 -3
- package/src/Utilities/MenuItem.d.ts +1 -1
- package/src/Utilities/MenuItem.js +2 -2
- package/src/Utilities/ObjectFactory.d.ts +7 -18
- package/src/Utilities/ObjectFactory.js +25 -95
- 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 +9 -1
- package/src/Utilities/Services/Interface/IAlertService.d.ts +3 -7
- package/src/Utilities/Services/Interface/IEntitlementService.d.ts +1 -0
- package/src/Utilities/Services/LicenseService.js +2 -2
- package/src/Utilities/Services/ModuleService.js +13 -17
- package/src/Utilities/Services/TeamSharingService.js +3 -4
- package/src/View/AdaptableView.js +4 -10
- package/src/View/AdaptableViewFactory.js +0 -26
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +4 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +2 -1
- 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.d.ts +1 -0
- package/src/View/Alert/Wizard/AlertRulesWizardSection.js +4 -6
- package/src/View/Alert/Wizard/AlertWizard.js +20 -6
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +5 -2
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +5 -2
- 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 +16 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.d.ts +1 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +7 -17
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +20 -3
- 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/FilterForm.js +4 -1
- 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/ModuleValueSelector/index.d.ts +3 -1
- package/src/View/Components/ModuleValueSelector/index.js +1 -1
- package/src/View/Components/NewScopeComponent.js +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/AdaptablePopup/AdaptablePopup.d.ts +20 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +120 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.d.ts +15 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +35 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +9 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +67 -0
- package/src/View/Components/Popups/AdaptablePopup/CustomSettingsPanelView.d.ts +6 -0
- package/src/View/Components/Popups/AdaptablePopup/CustomSettingsPanelView.js +9 -0
- package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +13 -0
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +63 -0
- package/src/View/Components/Popups/{PopupContext.d.ts → AdaptablePopup/PopupContext.d.ts} +0 -0
- package/src/View/Components/Popups/{PopupContext.js → AdaptablePopup/PopupContext.js} +0 -0
- package/src/View/Components/Popups/AdaptablePopup/PopupPanel.d.ts +10 -0
- package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +22 -0
- package/src/View/Components/Popups/AdaptablePopup/TopBar.d.ts +7 -0
- package/src/View/Components/Popups/AdaptablePopup/TopBar.js +29 -0
- package/src/View/Components/Popups/AdaptablePopup/Utilities.d.ts +15 -0
- package/src/View/Components/Popups/AdaptablePopup/Utilities.js +28 -0
- package/src/View/Components/Popups/AdaptablePopup/index.d.ts +1 -0
- package/src/View/Components/Popups/AdaptablePopup/index.js +5 -0
- package/src/View/Components/Popups/AdaptableToaster.js +6 -6
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +45 -80
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +12 -4
- package/src/View/Components/ValueSelector/index.d.ts +1 -0
- package/src/View/Components/ValueSelector/index.js +6 -6
- 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 +13 -83
- package/src/View/Dashboard/DashboardPopup.d.ts +6 -2
- package/src/View/Dashboard/DashboardPopup.js +38 -8
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +4 -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} +7 -7
- 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} +14 -14
- 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 +97 -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 +22 -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/License/LicenseWatermark.js +4 -0
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +2 -2
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.d.ts +1 -2
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +18 -4
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +2 -2
- package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +2 -2
- package/src/View/Query/Wizard/NamedQueryWizard.js +17 -2
- package/src/View/QuickSearch/QuickSearchPopup.js +3 -3
- package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +2 -2
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +7 -8
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +9 -9
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.d.ts +5 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +59 -48
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/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/Shortcut/shortcutKeys.js +0 -1
- 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 -5
- package/src/View/UIHelper.js +35 -49
- 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 +25 -12
- package/src/agGrid/Adaptable.js +249 -99
- package/src/agGrid/agGridHelper.d.ts +2 -2
- package/src/agGrid/agGridHelper.js +21 -6
- package/src/agGrid/agGridMenuHelper.js +11 -7
- package/src/components/ApplicationIcon.d.ts +5 -0
- package/src/components/ApplicationIcon.js +13 -0
- package/src/components/Dashboard/DashboardManager.js +1 -1
- package/src/components/Datepicker/Caption.d.ts +1 -1
- package/src/components/Datepicker/Caption.js +1 -4
- package/src/components/Datepicker/CaptionLabel.d.ts +1 -1
- package/src/components/Datepicker/CaptionLabel.js +1 -4
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/Datepicker/index.js +1 -4
- 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/column-add.d.ts +3 -0
- package/src/components/icons/column-add.js +10 -0
- package/src/components/icons/index.js +6 -0
- package/src/components/icons/menu.d.ts +3 -0
- package/src/components/icons/menu.js +7 -0
- package/src/components/icons/state-management.js +1 -1
- package/src/components/icons/tool-panel.d.ts +3 -0
- package/src/components/icons/tool-panel.js +7 -0
- package/src/components/utils/useDraggable.d.ts +3 -1
- package/src/components/utils/useDraggable.js +14 -2
- package/src/metamodel/adaptable.metamodel.d.ts +98 -112
- package/src/metamodel/adaptable.metamodel.js +425 -451
- package/src/types.d.ts +11 -12
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/ChartPluginOptions.d.ts +0 -20
- package/src/Api/ChartApi.d.ts +0 -20
- package/src/Api/Events/FlashingAlertFired.d.ts +0 -11
- package/src/Api/Implementation/SparklineColumnApiImpl.d.ts +0 -9
- package/src/Api/Implementation/SparklineColumnApiImpl.js +0 -24
- package/src/Api/SparklineColumnApi.d.ts +0 -23
- package/src/PredefinedConfig/ChartState.d.ts +0 -144
- package/src/PredefinedConfig/Common/ChartEnums.d.ts +0 -123
- package/src/PredefinedConfig/Common/ChartEnums.js +0 -152
- package/src/PredefinedConfig/SparklineColumnState.d.ts +0 -40
- package/src/Redux/ActionsReducers/SparklineColumnRedux.d.ts +0 -35
- package/src/Redux/ActionsReducers/SparklineColumnRedux.js +0 -70
- package/src/Utilities/Defaults/DefaultCategoryChartProperties.d.ts +0 -2
- package/src/Utilities/Defaults/DefaultCategoryChartProperties.js +0 -56
- package/src/Utilities/Defaults/DefaultPieChartProperties.d.ts +0 -2
- package/src/Utilities/Defaults/DefaultPieChartProperties.js +0 -13
- package/src/Utilities/Defaults/DefaultSparklinesChartProperties.d.ts +0 -2
- package/src/Utilities/Defaults/DefaultSparklinesChartProperties.js +0 -25
- 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/Panels/PanelWithIImageThreeButtons.d.ts +0 -11
- package/src/View/Components/Panels/PanelWithIImageThreeButtons.js +0 -28
- package/src/View/Components/Popups/AdaptableChart.d.ts +0 -18
- package/src/View/Components/Popups/AdaptableChart.js +0 -40
- package/src/View/Components/Popups/AdaptablePopup.d.ts +0 -23
- package/src/View/Components/Popups/AdaptablePopup.js +0 -59
- package/src/View/Components/SharedProps/ChartDisplayPopupPropsBase.d.ts +0 -7
- package/src/View/Components/SharedProps/ChartDisplayPopupPropsBase.js +0 -2
- 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
- package/src/bundle-dependencies/bundles/react-day-picker/DayPicker.d.ts +0 -88
- package/src/bundle-dependencies/bundles/react-day-picker/DayPicker.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/Button.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/Button.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/ButtonProps.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/Caption.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/Caption.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/CaptionProps.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabel.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabel.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabelProps.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/Day.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/Day.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/DayProps.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/useDay.d.ts +0 -51
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/useDayFocus.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/index.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContent.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContent.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContentProps.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/Dropdown.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/Dropdown.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/DropdownProps.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/Footer.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/Footer.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/Head.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/Head.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/getWeekdays.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/getWeekdays.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/IconDropdown.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/IconDropdown.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/IconNext.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/IconNext.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/IconPrevious.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/IconPrevious.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/MonthsDropdown.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/MonthsDropdownProps.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/Navigation.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/NavigationProps.d.ts +0 -18
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Root/Root.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/Root/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/Row.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/RowProps.d.ts +0 -11
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/Table.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getOutsideEndDays.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getOutsideStartDays.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getWeeks.d.ts +0 -15
- package/src/bundle-dependencies/bundles/react-day-picker/components/WeekNumber/WeekNumber.d.ts +0 -15
- package/src/bundle-dependencies/bundles/react-day-picker/components/WeekNumber/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/YearsDropdown/YearsDropdown.d.ts +0 -16
- package/src/bundle-dependencies/bundles/react-day-picker/components/YearsDropdown/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/index.d.ts +0 -18
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/ContextProvider.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerContext.d.ts +0 -78
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerContextValue.d.ts +0 -20
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerProvider.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/defaultClassNames.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatCaption.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatDay.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatMonthCaption.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatWeekNumber.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatWeekdayName.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatYearCaption.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/index.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/index.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelDay.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelMonthDropdown.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelNext.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelPrevious.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelWeekNumber.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelWeekday.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelYearDropdown.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/useDayPicker.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/parseFromToProps.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/parseModifierProps.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusContext.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusContextValue.d.ts +0 -19
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusProvider.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/index.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/useFocus.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationContext.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationContextValue.d.ts +0 -13
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationProvider.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/index.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/useNavigation.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/useNavigationState.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getDisplayMonths.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getInitialMonth.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getInitialMonth.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getNextMonth.d.ts +0 -18
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getNextMonth.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getPreviousMonth.d.ts +0 -19
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getPreviousMonth.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleContext.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleContextValue.d.ts +0 -13
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleModifiers.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleProvider.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/useSelectMultiple.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeContext.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeContextValue.d.ts +0 -13
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeModifiers.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeProvider.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/useSelectRange.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/utils/addToRange.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleContext.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleContextValue.d.ts +0 -11
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleModifiers.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleProvider.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/useSelectSingle.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/index.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInput.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputDayPickerProps.d.ts +0 -14
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputFieldProps.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputOptions.d.ts +0 -35
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/index.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/useInput.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/utils/isValidDate.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/types/UseModifiers.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/types/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/useModifiers.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/getModifierStatus.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/isDateInRange.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/isMatch.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/index.js +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/types/CaptionLayout.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/ClassNames.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/Components.d.ts +0 -33
- package/src/bundle-dependencies/bundles/react-day-picker/types/CustomModifiers.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateAfter.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateBefore.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateFormatter.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateInterval.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateRange.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayClickEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayFocusEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayKeyboardEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayLabelFormatter.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayMouseEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayOfWeekMatcher.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerBase.d.ts +0 -239
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerMultiple.d.ts +0 -15
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerProps.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerRange.d.ts +0 -16
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerSingle.d.ts +0 -13
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerUncontrolled.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayTouchEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/Formatters.d.ts +0 -19
- package/src/bundle-dependencies/bundles/react-day-picker/types/InternalModifier.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/types/Labels.d.ts +0 -17
- package/src/bundle-dependencies/bundles/react-day-picker/types/Matcher.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/types/Modifier.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierClassNames.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierStatus.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierStyles.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/Modifiers.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/MonthChangeEventHandler.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/NavButtonLabelFormatter.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectMultipleEventHandler.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectRangeEventHandler.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectSingleEventHandler.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/types/StyledComponentProps.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/types/StyledElement.d.ts +0 -76
- package/src/bundle-dependencies/bundles/react-day-picker/types/Styles.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberClickEventHandler.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberFormatter.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberLabelFormatter.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekdayLabelFormatter.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/index.d.ts +0 -54
- package/src/bundle-dependencies/bundles/react-day-picker/types/isArrayOfDates.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateAfterType.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateBeforeType.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateInterval.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateRange.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateType.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayOfWeekType.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerMultiple.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerRange.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerSingle.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerUncontrolled.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-toastify/components/CloseButton.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-toastify/components/ProgressBar.d.ts +0 -55
- package/src/bundle-dependencies/bundles/react-toastify/components/Toast.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-toastify/components/ToastContainer.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-toastify/components/Transitions.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-toastify/components/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-toastify/core/eventManager.d.ts +0 -39
- package/src/bundle-dependencies/bundles/react-toastify/core/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-toastify/core/toast.d.ts +0 -55
- package/src/bundle-dependencies/bundles/react-toastify/hooks/index.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-toastify/hooks/toastContainerReducer.d.ts +0 -15
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useKeeper.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useToast.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useToastContainer.d.ts +0 -16
- package/src/bundle-dependencies/bundles/react-toastify/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-toastify/index.js +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/inject-style.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-toastify/test/components/CloseButton.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/components/ProgressBar.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/components/Toast.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/components/ToastContainer.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/core/eventManager.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/core/toast.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/helpers.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/collapseToast.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/cssTransition.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/propValidator.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/types/index.d.ts +0 -240
- package/src/bundle-dependencies/bundles/react-toastify/utils/collapseToast.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-toastify/utils/constant.d.ts +0 -20
- package/src/bundle-dependencies/bundles/react-toastify/utils/cssTransition.d.ts +0 -42
- package/src/bundle-dependencies/bundles/react-toastify/utils/index.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-toastify/utils/propValidator.d.ts +0 -10
- package/src/components/ChartContainer/index.d.ts +0 -15
- package/src/components/ChartContainer/index.js +0 -22
- package/src/components/Toastify/index.d.ts +0 -3
- package/src/components/Toastify/index.js +0 -10
package/base.css
CHANGED
|
@@ -372,22 +372,30 @@
|
|
|
372
372
|
--rdp-background-color-dark: #180270;
|
|
373
373
|
/* Outline border for focused elements */
|
|
374
374
|
--rdp-outline: 2px solid var(--rdp-accent-color);
|
|
375
|
+
/* Outline border for focused and selected elements */
|
|
376
|
+
--rdp-outline-selected: 2px solid rgba(0, 0, 0, 0.75);
|
|
375
377
|
}
|
|
376
378
|
.rdp {
|
|
377
|
-
display: inline-block;
|
|
378
|
-
font-size: 1rem;
|
|
379
379
|
margin: 1em;
|
|
380
380
|
}
|
|
381
381
|
/* Hide elements for devices that are not screen readers */
|
|
382
382
|
.rdp-vhidden {
|
|
383
|
-
|
|
384
|
-
clip: rect(1px, 1px, 1px, 1px);
|
|
385
|
-
height: 1px;
|
|
386
|
-
overflow: hidden;
|
|
383
|
+
box-sizing: border-box;
|
|
387
384
|
padding: 0;
|
|
388
|
-
|
|
385
|
+
margin: 0;
|
|
386
|
+
background: transparent;
|
|
387
|
+
border: 0;
|
|
388
|
+
-moz-appearance: none;
|
|
389
|
+
-webkit-appearance: none;
|
|
390
|
+
appearance: none;
|
|
391
|
+
position: absolute !important;
|
|
389
392
|
top: 0;
|
|
390
|
-
width: 1px;
|
|
393
|
+
width: 1px !important;
|
|
394
|
+
height: 1px !important;
|
|
395
|
+
padding: 0 !important;
|
|
396
|
+
overflow: hidden !important;
|
|
397
|
+
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
398
|
+
border: 0 !important
|
|
391
399
|
}
|
|
392
400
|
/* Buttons */
|
|
393
401
|
.rdp-button_reset {
|
|
@@ -477,13 +485,13 @@
|
|
|
477
485
|
.rdp-nav {
|
|
478
486
|
white-space: nowrap;
|
|
479
487
|
}
|
|
480
|
-
.rdp-multiple_months .rdp-
|
|
488
|
+
.rdp-multiple_months .rdp-caption_start .rdp-nav {
|
|
481
489
|
position: absolute;
|
|
482
490
|
top: 50%;
|
|
483
491
|
left: 0;
|
|
484
492
|
transform: translateY(-50%);
|
|
485
493
|
}
|
|
486
|
-
.rdp-multiple_months .rdp-
|
|
494
|
+
.rdp-multiple_months .rdp-caption_end .rdp-nav {
|
|
487
495
|
position: absolute;
|
|
488
496
|
top: 50%;
|
|
489
497
|
right: 0;
|
|
@@ -529,8 +537,8 @@
|
|
|
529
537
|
opacity: unset;
|
|
530
538
|
color: unset;
|
|
531
539
|
}
|
|
532
|
-
.rdp-dropdown:focus:not([disabled])
|
|
533
|
-
.rdp-dropdown:active:not([disabled])
|
|
540
|
+
.rdp-dropdown:focus:not([disabled])+.rdp-caption_label,
|
|
541
|
+
.rdp-dropdown:active:not([disabled])+.rdp-caption_label {
|
|
534
542
|
border: var(--rdp-outline);
|
|
535
543
|
border-radius: 6px;
|
|
536
544
|
background-color: var(--rdp-background-color);
|
|
@@ -595,26 +603,78 @@
|
|
|
595
603
|
color: white;
|
|
596
604
|
background-color: var(--rdp-accent-color);
|
|
597
605
|
}
|
|
598
|
-
.rdp-
|
|
606
|
+
.rdp-day_selected:focus:not([disabled]) {
|
|
607
|
+
border: var(--rdp-outline-selected);
|
|
608
|
+
}
|
|
609
|
+
.rdp:not([dir='rtl']) .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
599
610
|
border-top-right-radius: 0;
|
|
600
611
|
border-bottom-right-radius: 0;
|
|
601
612
|
}
|
|
602
|
-
.rdp-day_range_end {
|
|
613
|
+
.rdp:not([dir='rtl']) .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
614
|
+
border-top-left-radius: 0;
|
|
615
|
+
border-bottom-left-radius: 0;
|
|
616
|
+
}
|
|
617
|
+
.rdp[dir='rtl'] .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
603
618
|
border-top-left-radius: 0;
|
|
604
619
|
border-bottom-left-radius: 0;
|
|
605
620
|
}
|
|
621
|
+
.rdp[dir='rtl'] .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
622
|
+
border-top-right-radius: 0;
|
|
623
|
+
border-bottom-right-radius: 0;
|
|
624
|
+
}
|
|
606
625
|
.rdp-day_range_end.rdp-day_range_start {
|
|
607
626
|
border-radius: 100%;
|
|
608
627
|
}
|
|
609
628
|
.rdp-day_range_middle {
|
|
610
629
|
border-radius: 0;
|
|
611
630
|
}
|
|
631
|
+
:root {
|
|
632
|
+
--toastify-color-light: #fff;
|
|
633
|
+
--toastify-color-dark: #121212;
|
|
634
|
+
--toastify-color-info: #3498db;
|
|
635
|
+
--toastify-color-success: #07bc0c;
|
|
636
|
+
--toastify-color-warning: #f1c40f;
|
|
637
|
+
--toastify-color-error: #e74c3c;
|
|
638
|
+
--toastify-color-transparent: rgba(255, 255, 255, 0.7);
|
|
639
|
+
--toastify-icon-color-info: var(--toastify-color-info);
|
|
640
|
+
--toastify-icon-color-success: var(--toastify-color-success);
|
|
641
|
+
--toastify-icon-color-warning: var(--toastify-color-warning);
|
|
642
|
+
--toastify-icon-color-error: var(--toastify-color-error);
|
|
643
|
+
--toastify-toast-width: 320px;
|
|
644
|
+
--toastify-toast-background: #fff;
|
|
645
|
+
--toastify-toast-min-height: 64px;
|
|
646
|
+
--toastify-toast-max-height: 800px;
|
|
647
|
+
--toastify-font-family: sans-serif;
|
|
648
|
+
--toastify-z-index: 9999;
|
|
649
|
+
--toastify-text-color-light: #757575;
|
|
650
|
+
--toastify-text-color-dark: #fff;
|
|
651
|
+
--toastify-text-color-info: #fff;
|
|
652
|
+
--toastify-text-color-success: #fff;
|
|
653
|
+
--toastify-text-color-warning: #fff;
|
|
654
|
+
--toastify-text-color-error: #fff;
|
|
655
|
+
--toastify-spinner-color: #616161;
|
|
656
|
+
--toastify-spinner-color-empty-area: #e0e0e0;
|
|
657
|
+
--toastify-color-progress-light: linear-gradient(
|
|
658
|
+
to right,
|
|
659
|
+
#4cd964,
|
|
660
|
+
#5ac8fa,
|
|
661
|
+
#007aff,
|
|
662
|
+
#34aadc,
|
|
663
|
+
#5856d6,
|
|
664
|
+
#ff2d55
|
|
665
|
+
);
|
|
666
|
+
--toastify-color-progress-dark: #bb86fc;
|
|
667
|
+
--toastify-color-progress-info: var(--toastify-color-info);
|
|
668
|
+
--toastify-color-progress-success: var(--toastify-color-success);
|
|
669
|
+
--toastify-color-progress-warning: var(--toastify-color-warning);
|
|
670
|
+
--toastify-color-progress-error: var(--toastify-color-error);
|
|
671
|
+
}
|
|
612
672
|
.Toastify__toast-container {
|
|
613
|
-
z-index:
|
|
614
|
-
-webkit-transform: translate3d(0, 0,
|
|
673
|
+
z-index: var(--toastify-z-index);
|
|
674
|
+
-webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
|
|
615
675
|
position: fixed;
|
|
616
676
|
padding: 4px;
|
|
617
|
-
width:
|
|
677
|
+
width: var(--toastify-toast-width);
|
|
618
678
|
box-sizing: border-box;
|
|
619
679
|
color: #fff;
|
|
620
680
|
}
|
|
@@ -666,7 +726,7 @@
|
|
|
666
726
|
}
|
|
667
727
|
.Toastify__toast {
|
|
668
728
|
position: relative;
|
|
669
|
-
min-height:
|
|
729
|
+
min-height: var(--toastify-toast-min-height);
|
|
670
730
|
box-sizing: border-box;
|
|
671
731
|
margin-bottom: 1rem;
|
|
672
732
|
padding: 8px;
|
|
@@ -676,51 +736,101 @@
|
|
|
676
736
|
display: flex;
|
|
677
737
|
-ms-flex-pack: justify;
|
|
678
738
|
justify-content: space-between;
|
|
679
|
-
max-height:
|
|
739
|
+
max-height: var(--toastify-toast-max-height);
|
|
680
740
|
overflow: hidden;
|
|
681
|
-
font-family:
|
|
741
|
+
font-family: var(--toastify-font-family);
|
|
682
742
|
cursor: pointer;
|
|
683
743
|
direction: ltr;
|
|
684
744
|
}
|
|
685
745
|
.Toastify__toast--rtl {
|
|
686
746
|
direction: rtl;
|
|
687
747
|
}
|
|
688
|
-
.Toastify__toast--dark {
|
|
689
|
-
background: #121212;
|
|
690
|
-
color: #fff;
|
|
691
|
-
}
|
|
692
|
-
.Toastify__toast--default {
|
|
693
|
-
background: #fff;
|
|
694
|
-
color: #aaa;
|
|
695
|
-
}
|
|
696
|
-
.Toastify__toast--info {
|
|
697
|
-
background: #3498db;
|
|
698
|
-
}
|
|
699
|
-
.Toastify__toast--success {
|
|
700
|
-
background: #07bc0c;
|
|
701
|
-
}
|
|
702
|
-
.Toastify__toast--warning {
|
|
703
|
-
background: #f1c40f;
|
|
704
|
-
}
|
|
705
|
-
.Toastify__toast--error {
|
|
706
|
-
background: #e74c3c;
|
|
707
|
-
}
|
|
708
748
|
.Toastify__toast-body {
|
|
709
749
|
margin: auto 0;
|
|
710
750
|
-ms-flex: 1 1 auto;
|
|
711
751
|
flex: 1 1 auto;
|
|
712
752
|
padding: 6px;
|
|
753
|
+
display: -ms-flexbox;
|
|
754
|
+
display: flex;
|
|
755
|
+
-ms-flex-align: center;
|
|
756
|
+
align-items: center;
|
|
757
|
+
}
|
|
758
|
+
.Toastify__toast-body > div:last-child {
|
|
759
|
+
-ms-flex: 1;
|
|
760
|
+
flex: 1;
|
|
761
|
+
}
|
|
762
|
+
.Toastify__toast-icon {
|
|
763
|
+
-webkit-margin-end: 10px;
|
|
764
|
+
margin-inline-end: 10px;
|
|
765
|
+
width: 20px;
|
|
766
|
+
-ms-flex-negative: 0;
|
|
767
|
+
flex-shrink: 0;
|
|
768
|
+
display: -ms-flexbox;
|
|
769
|
+
display: flex;
|
|
713
770
|
}
|
|
714
771
|
.Toastify--animate {
|
|
715
772
|
animation-fill-mode: both;
|
|
716
773
|
animation-duration: 0.7s;
|
|
717
774
|
}
|
|
775
|
+
.Toastify--animate-icon {
|
|
776
|
+
animation-fill-mode: both;
|
|
777
|
+
animation-duration: 0.3s;
|
|
778
|
+
}
|
|
718
779
|
@media only screen and (max-width : 480px) {
|
|
719
780
|
.Toastify__toast {
|
|
720
781
|
margin-bottom: 0;
|
|
721
782
|
border-radius: 0;
|
|
722
783
|
}
|
|
723
784
|
}
|
|
785
|
+
.Toastify__toast-theme--dark {
|
|
786
|
+
background: var(--toastify-color-dark);
|
|
787
|
+
color: var(--toastify-text-color-dark);
|
|
788
|
+
}
|
|
789
|
+
.Toastify__toast-theme--light {
|
|
790
|
+
background: var(--toastify-color-light);
|
|
791
|
+
color: var(--toastify-text-color-light);
|
|
792
|
+
}
|
|
793
|
+
.Toastify__toast-theme--colored.Toastify__toast--default {
|
|
794
|
+
background: var(--toastify-color-light);
|
|
795
|
+
color: var(--toastify-text-color-light);
|
|
796
|
+
}
|
|
797
|
+
.Toastify__toast-theme--colored.Toastify__toast--info {
|
|
798
|
+
color: var(--toastify-text-color-info);
|
|
799
|
+
background: var(--toastify-color-info);
|
|
800
|
+
}
|
|
801
|
+
.Toastify__toast-theme--colored.Toastify__toast--success {
|
|
802
|
+
color: var(--toastify-text-color-success);
|
|
803
|
+
background: var(--toastify-color-success);
|
|
804
|
+
}
|
|
805
|
+
.Toastify__toast-theme--colored.Toastify__toast--warning {
|
|
806
|
+
color: var(--toastify-text-color-warning);
|
|
807
|
+
background: var(--toastify-color-warning);
|
|
808
|
+
}
|
|
809
|
+
.Toastify__toast-theme--colored.Toastify__toast--error {
|
|
810
|
+
color: var(--toastify-text-color-error);
|
|
811
|
+
background: var(--toastify-color-error);
|
|
812
|
+
}
|
|
813
|
+
.Toastify__progress-bar-theme--light {
|
|
814
|
+
background: var(--toastify-color-progress-light);
|
|
815
|
+
}
|
|
816
|
+
.Toastify__progress-bar-theme--dark {
|
|
817
|
+
background: var(--toastify-color-progress-dark);
|
|
818
|
+
}
|
|
819
|
+
.Toastify__progress-bar--info {
|
|
820
|
+
background: var(--toastify-color-progress-info);
|
|
821
|
+
}
|
|
822
|
+
.Toastify__progress-bar--success {
|
|
823
|
+
background: var(--toastify-color-progress-success);
|
|
824
|
+
}
|
|
825
|
+
.Toastify__progress-bar--warning {
|
|
826
|
+
background: var(--toastify-color-progress-warning);
|
|
827
|
+
}
|
|
828
|
+
.Toastify__progress-bar--error {
|
|
829
|
+
background: var(--toastify-color-progress-error);
|
|
830
|
+
}
|
|
831
|
+
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
|
|
832
|
+
background: var(--toastify-color-transparent);
|
|
833
|
+
}
|
|
724
834
|
.Toastify__close-button {
|
|
725
835
|
color: #fff;
|
|
726
836
|
background: transparent;
|
|
@@ -733,7 +843,7 @@
|
|
|
733
843
|
-ms-flex-item-align: start;
|
|
734
844
|
align-self: flex-start;
|
|
735
845
|
}
|
|
736
|
-
.Toastify__close-button--
|
|
846
|
+
.Toastify__close-button--light {
|
|
737
847
|
color: #000;
|
|
738
848
|
opacity: 0.3;
|
|
739
849
|
}
|
|
@@ -759,9 +869,8 @@
|
|
|
759
869
|
left: 0;
|
|
760
870
|
width: 100%;
|
|
761
871
|
height: 5px;
|
|
762
|
-
z-index:
|
|
872
|
+
z-index: var(--toastify-z-index);
|
|
763
873
|
opacity: 0.7;
|
|
764
|
-
background-color: rgba(255, 255, 255, 0.7);
|
|
765
874
|
transform-origin: left;
|
|
766
875
|
}
|
|
767
876
|
.Toastify__progress-bar--animated {
|
|
@@ -775,11 +884,15 @@
|
|
|
775
884
|
left: initial;
|
|
776
885
|
transform-origin: right;
|
|
777
886
|
}
|
|
778
|
-
.
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
887
|
+
.Toastify__spinner {
|
|
888
|
+
width: 20px;
|
|
889
|
+
height: 20px;
|
|
890
|
+
box-sizing: border-box;
|
|
891
|
+
border: 2px solid;
|
|
892
|
+
border-radius: 100%;
|
|
893
|
+
border-color: var(--toastify-spinner-color-empty-area);
|
|
894
|
+
border-right-color: var(--toastify-spinner-color);
|
|
895
|
+
animation: Toastify__spin 0.65s linear infinite;
|
|
783
896
|
}
|
|
784
897
|
@keyframes Toastify__bounceInRight {
|
|
785
898
|
from, 60%, 75%, 90%, to {
|
|
@@ -1102,6 +1215,14 @@
|
|
|
1102
1215
|
.Toastify__slide-exit--bottom-center {
|
|
1103
1216
|
animation-name: Toastify__slideOutDown;
|
|
1104
1217
|
}
|
|
1218
|
+
@keyframes Toastify__spin {
|
|
1219
|
+
from {
|
|
1220
|
+
transform: rotate(0deg);
|
|
1221
|
+
}
|
|
1222
|
+
to {
|
|
1223
|
+
transform: rotate(360deg);
|
|
1224
|
+
}
|
|
1225
|
+
}
|
|
1105
1226
|
:root {
|
|
1106
1227
|
--ab-space-0: 0px;
|
|
1107
1228
|
--ab-space-1: 4px;
|
|
@@ -1201,7 +1322,7 @@
|
|
|
1201
1322
|
:root {
|
|
1202
1323
|
--ab-cmp-dialog__background: var(--ab-color-defaultbackground, white);
|
|
1203
1324
|
--ab-cmp-dialog__color: var(--ab-color-text-on-defaultbackground, white);
|
|
1204
|
-
--ab-cmp-dialog-close-button__color: var(--ab-color-
|
|
1325
|
+
--ab-cmp-dialog-close-button__color: var(--ab-color-accentlight);
|
|
1205
1326
|
--ab-cmp-dialog__border-radius: var(--ab__border-radius);
|
|
1206
1327
|
--ab-cmp-dialog__min-height: 60vh; }
|
|
1207
1328
|
:root {
|
|
@@ -1286,7 +1407,7 @@
|
|
|
1286
1407
|
--ab-cmp-tabs-active__background: var(--ab-color-primarylight); }
|
|
1287
1408
|
:root {
|
|
1288
1409
|
--ab-cmp-panel_header__background: var(--ab-color-primary);
|
|
1289
|
-
--ab-cmp-panel_header__font-size: var(--ab-font-size-
|
|
1410
|
+
--ab-cmp-panel_header__font-size: var(--ab-font-size-3);
|
|
1290
1411
|
--ab-cmp-panel__font-size: var(--ab-font-size-3);
|
|
1291
1412
|
--ab-cmp-panel__border-radius: var(--ab__border-radius);
|
|
1292
1413
|
--ab-cmp-panel__padding: var(--ab-space-2);
|
|
@@ -1300,6 +1421,7 @@
|
|
|
1300
1421
|
--ab-cmp-panel_header--variant-primary__background: var(--ab-color-secondary);
|
|
1301
1422
|
--ab-cmp-panel_header--variant-primary__color: var(--ab-color-text-on-secondary);
|
|
1302
1423
|
--ab-cmp-panel_header--variant-modern__background: var(--ab-color-primary);
|
|
1424
|
+
--ab-cmp-panel_header--variant-minimal__background: var(--ab-color-defaultbackground);
|
|
1303
1425
|
--ab-cmp-panel_header--variant-modern__color: var(--ab-color-text-on-primary);
|
|
1304
1426
|
--ab-cmp-panel_body--variant-modern__background: var(--ab-color-primarylight); }
|
|
1305
1427
|
:root {
|
|
@@ -1486,6 +1608,54 @@
|
|
|
1486
1608
|
--ab-cmp-toolpanel__font-family: var(--ab__font-family); }
|
|
1487
1609
|
:root {
|
|
1488
1610
|
--ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4); }
|
|
1611
|
+
:root {
|
|
1612
|
+
--ab-cmp-adaptable-popup__background: var(--ab-color-primarylight);
|
|
1613
|
+
--ab-cmp-adaptable-popup--settings__padding: 20px;
|
|
1614
|
+
--ab-cmp-adaptable-popup--settings__height: 90vh;
|
|
1615
|
+
--ab-cmp-adaptable-popup__height: 90vh;
|
|
1616
|
+
--ab-cmp-adaptable-popup__max-height: 1200px;
|
|
1617
|
+
--ab-cmp-adaptable-popup-navigation-list__padding: var(--ab-space-1) var(--ab-space-2);
|
|
1618
|
+
--ab-cmp-adaptable-popup-navigation-list__border-right: 2px solid var(--ab-color-defaultbackground);
|
|
1619
|
+
--ab-cmp-adaptable-popup-navigation-list__font-size: var(--ab-font-size-3);
|
|
1620
|
+
--ab-cmp-adaptable-popup-navigation-list-item__padding: var(--ab-space-0) var(--ab-space-1);
|
|
1621
|
+
--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom: var(--ab-space-2) var(--ab-space-2);
|
|
1622
|
+
--ab-cmp-adaptable-popup-navigation-list-item-separator__border: 1px solid var(--ab-color-primarydark);
|
|
1623
|
+
--ab-cmp-adaptable-popup-navigation-list-item-separator__margin: var(--ab-space-2) var(--ab-space-2);
|
|
1624
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__padding: var(--ab-space-2) var(--ab-space-2);
|
|
1625
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius: var(--ab__border-radius);
|
|
1626
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__color: var(--ab-color-text-on-primary);
|
|
1627
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__background--active: var(--ab-color-focus);
|
|
1628
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__background--color: var(--ab-color-accentlight);
|
|
1629
|
+
--ab-cmp-adaptable-popup-navigation-list-item-icon__margin-right: var(--ab-space-2);
|
|
1630
|
+
--ab-cmp-adaptable-popup-topbar__background: var(--ab-color-secondary);
|
|
1631
|
+
--ab-cmp-adaptable-popup-topbar__height: 45px;
|
|
1632
|
+
--ab-cmp-adaptable-popup-topbar__color: var(--ab-color-text-on-secondary);
|
|
1633
|
+
--ab-cmp-adaptable-popup-topbar__font-weight: 500;
|
|
1634
|
+
--ab-cmp-adaptable-popup-topbar__padding: var(--ab-space-3);
|
|
1635
|
+
--ab-cmp-adaptable-popup-topbar-icon__margin-right: var(--ab-space-2);
|
|
1636
|
+
--ab-cmp-adaptable-popup-topbar-icon__color: var(--ab-color-accentlight);
|
|
1637
|
+
--ab-cmp-adaptable-popup-panel__padding: 0 var(--ab-space-2);
|
|
1638
|
+
--ab-cmp-adaptable-popup-panel__margin-bottom: var(--ab-space-3);
|
|
1639
|
+
--ab-cmp-adaptable-popup-panel__margin-top: var(--ab-space-2);
|
|
1640
|
+
--ab-cmp-adaptable-popup-panel-title__font-size: var(--ab-font-size-5);
|
|
1641
|
+
--ab-cmp-adaptable-popup-panel-body__padding: var(--ab-space-2); }
|
|
1642
|
+
:root {
|
|
1643
|
+
--ab-cmp-adaptable-object-list-tag__margin-right: var(--ab-space-2);
|
|
1644
|
+
--ab-cmp-adaptable-object-list-tag__margin-top: var(--ab-space-2);
|
|
1645
|
+
--ab-cmp-adaptable-object-list-item__background-color: var(--ab-color-defaultbackground);
|
|
1646
|
+
--ab-cmp-adaptable-object-list-item__padding: var(--ab-space-3) var(--ab-space-3);
|
|
1647
|
+
--ab-cmp-adaptable-object-list-item__margin-bottom: var(--ab-space-3);
|
|
1648
|
+
--ab-cmp-adaptable-object-list-item-label__padding-top: var(--ab-space-3);
|
|
1649
|
+
--ab-cmp-adaptable-object-list-item-label__width: 130px;
|
|
1650
|
+
--ab-cmp-adaptable-object-list-item-tag__padding: 6px 12px; }
|
|
1651
|
+
:root {
|
|
1652
|
+
--ab-cmp-adaptable-options__background-color: var(--ab-color-defaultbackground);
|
|
1653
|
+
--ab-cmp-grid-options__background-color: var(--ab-color-defaultbackground);
|
|
1654
|
+
--ab-cmp-grid-summary__background-color: var(--ab-color-defaultbackground); }
|
|
1655
|
+
:root {
|
|
1656
|
+
--ab-cmp-system-status-list__background-color: var(--ab-color-defaultbackground); }
|
|
1657
|
+
:root {
|
|
1658
|
+
--ab-cmp-dashboard-module-selector-background: var(--ab-color-defaultbackground); }
|
|
1489
1659
|
.ab-Radio-input:focus + svg rect {
|
|
1490
1660
|
stroke: var(--ab-color-accent);
|
|
1491
1661
|
stroke-width: 2; }
|
|
@@ -1581,18 +1751,15 @@
|
|
|
1581
1751
|
fill: var(--ab-color-text-on-primary);
|
|
1582
1752
|
color: var(--ab-cmp-dialog__color);
|
|
1583
1753
|
border-radius: var(--ab-cmp-dialog__border-radius);
|
|
1584
|
-
min-height: var(--ab-cmp-dialog__min-height);
|
|
1585
1754
|
display: flex;
|
|
1586
1755
|
flex-flow: column; }
|
|
1587
1756
|
.ab-Dialog:focus-within, .ab-Dialog:focus {
|
|
1588
1757
|
box-shadow: var(--ab-focus__box-shadow);
|
|
1589
1758
|
outline: var(--ab-focus__outline); }
|
|
1590
|
-
.ab-Dialog > * {
|
|
1591
|
-
flex: 1; }
|
|
1592
1759
|
.ab-Dialog__close-button {
|
|
1593
1760
|
position: absolute;
|
|
1594
|
-
right:
|
|
1595
|
-
top:
|
|
1761
|
+
right: 6px;
|
|
1762
|
+
top: 6px;
|
|
1596
1763
|
font-size: var(--ab-font-size-3);
|
|
1597
1764
|
font-weight: 700;
|
|
1598
1765
|
line-height: 1;
|
|
@@ -1785,6 +1952,8 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
1785
1952
|
bottom: 0;
|
|
1786
1953
|
z-index: 1000;
|
|
1787
1954
|
font-family: var(--ab__font-family); }
|
|
1955
|
+
.ab-Modal.ab-Modal--resizable-and-movable {
|
|
1956
|
+
position: relative; }
|
|
1788
1957
|
.ab-Modal-backdrop {
|
|
1789
1958
|
background: var(--ab-cmp-modal-backdrop__background);
|
|
1790
1959
|
z-index: 900;
|
|
@@ -1855,6 +2024,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
1855
2024
|
display: flex;
|
|
1856
2025
|
flex-flow: column;
|
|
1857
2026
|
max-height: var(--ab-cmp-panel__max-height);
|
|
2027
|
+
overflow: auto;
|
|
1858
2028
|
font-size: var(--ab-cmp-panel__font-size); }
|
|
1859
2029
|
.ab-Panel .glyphicon {
|
|
1860
2030
|
-webkit-text-fill-color: var(--ab-cmp-panel-icon__fill);
|
|
@@ -2069,8 +2239,6 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2069
2239
|
pointer-events: none; }
|
|
2070
2240
|
.ab-FileDroppable, .ab-FileDroppable *, .ab-FileDroppable *:before, .ab-FileDroppable *:after {
|
|
2071
2241
|
box-sizing: border-box; }
|
|
2072
|
-
.ab-ChartContainer canvas {
|
|
2073
|
-
left: 0; }
|
|
2074
2242
|
.ab-WizardPanel > .ab-Panel__body {
|
|
2075
2243
|
display: flex;
|
|
2076
2244
|
flex-flow: column; }
|
|
@@ -2232,48 +2400,59 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2232
2400
|
display: table-cell; }
|
|
2233
2401
|
:root {
|
|
2234
2402
|
--ab-cmp-toggle-button__background: #ccc;
|
|
2235
|
-
--ab-cmp-toggle-button--active__background: var(--ab-color-success);
|
|
2403
|
+
--ab-cmp-toggle-button--active__background: var(--ab-color-success);
|
|
2404
|
+
--ab-cmp-toggle-button__font-size: var(--ab-font-size-1);
|
|
2405
|
+
--ab-cmp-toggle-button__color: var(--ab-color-text-on-primary);
|
|
2406
|
+
--ab-cmp-toggle-button--checked__color: var(--ab-color-accentlight); }
|
|
2236
2407
|
.ab-ToggleButton {
|
|
2237
2408
|
position: relative;
|
|
2238
2409
|
display: inline-block;
|
|
2239
2410
|
min-width: 40px;
|
|
2240
|
-
width:
|
|
2241
|
-
height:
|
|
2411
|
+
width: 87px;
|
|
2412
|
+
height: 32px; }
|
|
2242
2413
|
.ab-ToggleButton:hover:not(.ab-ToggleButton--disabled) {
|
|
2243
2414
|
cursor: pointer;
|
|
2244
2415
|
opacity: 0.85; }
|
|
2245
2416
|
.ab-ToggleButton__input {
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2417
|
+
opacity: 0;
|
|
2418
|
+
width: 0;
|
|
2419
|
+
height: 0; }
|
|
2249
2420
|
.ab-ToggleButton__slider {
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2421
|
+
position: absolute;
|
|
2422
|
+
top: 0;
|
|
2423
|
+
left: 0;
|
|
2424
|
+
right: 0;
|
|
2425
|
+
bottom: 0;
|
|
2426
|
+
background-color: var(--ab-cmp-toggle-button__background);
|
|
2427
|
+
transition: 0.1s;
|
|
2428
|
+
border-radius: var(--ab__border-radius); }
|
|
2258
2429
|
.ab-ToggleButton__slider:before {
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2430
|
+
position: absolute;
|
|
2431
|
+
content: "";
|
|
2432
|
+
width: 24px;
|
|
2433
|
+
height: 24px;
|
|
2434
|
+
left: 4px;
|
|
2435
|
+
top: 4px;
|
|
2436
|
+
border-radius: var(--ab__border-radius);
|
|
2437
|
+
background-color: #fff;
|
|
2438
|
+
-webkit-transition: 0.4s;
|
|
2439
|
+
transition: 0.2s; }
|
|
2269
2440
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider {
|
|
2270
|
-
|
|
2441
|
+
background-color: var(--ab-cmp-toggle-button--active__background); }
|
|
2271
2442
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider:before {
|
|
2272
|
-
|
|
2443
|
+
transform: translateX(54px); }
|
|
2273
2444
|
.ab-ToggleButton__input:focus + .ab-ToggleButton__slider {
|
|
2274
|
-
|
|
2445
|
+
box-shadow: var(--ab-focus__box-shadow); }
|
|
2275
2446
|
.ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
|
|
2276
|
-
|
|
2447
|
+
opacity: 0.5; }
|
|
2448
|
+
.ab-ToggleButton .ab-ToggleButton__text {
|
|
2449
|
+
font-size: var(--ab-cmp-toggle-button__font-size);
|
|
2450
|
+
padding-right: var(--ab-space-2);
|
|
2451
|
+
color: var(--ab-cmp-toggle-button__color);
|
|
2452
|
+
font-weight: 600; }
|
|
2453
|
+
.ab-ToggleButton--checked .ab-ToggleButton__text {
|
|
2454
|
+
padding-left: var(--ab-space-2);
|
|
2455
|
+
color: var(--ab-cmp-toggle-button--checked__color); }
|
|
2277
2456
|
.ab-Loader {
|
|
2278
2457
|
font-size: var(--ab-cmp-loader__font-size);
|
|
2279
2458
|
margin-top: 8px;
|
|
@@ -2323,6 +2502,19 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2323
2502
|
font-size: var(--ab-cmp-progress-indicator__font-size);
|
|
2324
2503
|
font-style: var(--ab-cmp-progress-indicator__font-style);
|
|
2325
2504
|
font-family: var(--ab-cmp-progress-indicator__font-family); }
|
|
2505
|
+
:root {
|
|
2506
|
+
--ab-cmp-Tag__font-size: var(--ab-font-size-3); }
|
|
2507
|
+
.ab-Tag {
|
|
2508
|
+
display: inline-flex;
|
|
2509
|
+
font-size: var(--ab-cmp-Tag__font-size); }
|
|
2510
|
+
.ab-AdaptableOptions {
|
|
2511
|
+
background: var(--ab-cmp-adaptable-options__background-color); }
|
|
2512
|
+
.ab-GridOptions {
|
|
2513
|
+
background: var(--ab-cmp-grid-options__background-color); }
|
|
2514
|
+
.ab-GridSummary {
|
|
2515
|
+
background: var(--ab-cmp-grid-summary__background-color); }
|
|
2516
|
+
.ab-SystemStatus-Popup-List {
|
|
2517
|
+
background: var(--ab-cmp-system-status-list__background-color); }
|
|
2326
2518
|
.ab-ObjectCollection__list > * {
|
|
2327
2519
|
background: var(--ab-cmp-listgroupitem__background);
|
|
2328
2520
|
color: var(--ab-cmp-listgroupitem__color); }
|
|
@@ -2418,6 +2610,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
2418
2610
|
--ab-cmp-panel_body__background: var(--ag-control-panel-background-color); }
|
|
2419
2611
|
.ab-Dashboard__application-icon {
|
|
2420
2612
|
margin-right: var(--ab-space-2); }
|
|
2613
|
+
.ab-Dashboard-Popup__Module-Selector {
|
|
2614
|
+
background: var(--ab-cmp-dashboard-module-selector-background); }
|
|
2421
2615
|
.ab-ToolPanel {
|
|
2422
2616
|
flex: 1 1 0;
|
|
2423
2617
|
min-width: 0;
|
|
@@ -2440,6 +2634,98 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
2440
2634
|
margin-bottom: var(--ab-space-1); }
|
|
2441
2635
|
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
2442
2636
|
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
|
|
2637
|
+
.ab-Adaptable-Popup {
|
|
2638
|
+
background: var(--ab-cmp-adaptable-popup__background);
|
|
2639
|
+
max-height: var(--ab-cmp-adaptable-popup__max-height); }
|
|
2640
|
+
.ab-Adaptable-Popup__Navigation {
|
|
2641
|
+
padding-top: 10px;
|
|
2642
|
+
overflow: auto;
|
|
2643
|
+
border-right: var(--ab-cmp-adaptable-popup-navigation-list__border-right);
|
|
2644
|
+
font-family: var(--ab__font-family); }
|
|
2645
|
+
.ab-Adaptable-Popup__Navigation__List {
|
|
2646
|
+
list-style: none;
|
|
2647
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list__padding);
|
|
2648
|
+
margin: 0;
|
|
2649
|
+
font-size: var(--ab-cmp-adaptable-popup-navigation-list__font-size); }
|
|
2650
|
+
.ab-Adaptable-Popup__Navigation__List__Item {
|
|
2651
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item__padding);
|
|
2652
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom); }
|
|
2653
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Separator {
|
|
2654
|
+
border-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__border);
|
|
2655
|
+
margin: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__margin); }
|
|
2656
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
2657
|
+
background: none;
|
|
2658
|
+
border: none;
|
|
2659
|
+
width: 100%;
|
|
2660
|
+
text-align: left;
|
|
2661
|
+
cursor: pointer;
|
|
2662
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item-button__padding);
|
|
2663
|
+
border-radius: var(--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius);
|
|
2664
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__color); }
|
|
2665
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Icon {
|
|
2666
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right); }
|
|
2667
|
+
.ab-Adaptable-Popup__Navigation__List__Item--active .ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
2668
|
+
background: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--active);
|
|
2669
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--color); }
|
|
2670
|
+
.ab-Adaptable-Popup__TopBar {
|
|
2671
|
+
display: flex;
|
|
2672
|
+
align-items: center;
|
|
2673
|
+
background: var(--ab-cmp-adaptable-popup-topbar__background);
|
|
2674
|
+
height: var(--ab-cmp-adaptable-popup-topbar__height);
|
|
2675
|
+
color: var(--ab-cmp-adaptable-popup-topbar__color);
|
|
2676
|
+
font-weight: var(--ab-cmp-adaptable-popup-topbar__font-weight);
|
|
2677
|
+
padding: var(--ab-cmp-adaptable-popup-topbar__padding);
|
|
2678
|
+
box-sizing: border-box; }
|
|
2679
|
+
.ab-Adaptable-Popup__TopBar__Icon {
|
|
2680
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right); }
|
|
2681
|
+
.ab-Adaptable-Popup__TopBar__Close .ab-Icon {
|
|
2682
|
+
color: var(--ab-cmp-adaptable-popup-topbar-icon__color); }
|
|
2683
|
+
.ab-Adaptable-Popup--settings-popup {
|
|
2684
|
+
height: var(--ab-cmp-adaptable-popup--settings__height); }
|
|
2685
|
+
.ab-Adaptable-Popup--settings-popup .ab-Dialog__close-button {
|
|
2686
|
+
top: 9px; }
|
|
2687
|
+
.ab-Adaptable-Popup--settings-popup .ab-Adaptable-Popup__Body {
|
|
2688
|
+
padding: var(--ab-cmp-adaptable-popup--settings__padding);
|
|
2689
|
+
min-width: 0; }
|
|
2690
|
+
.ab-Adaptable-Popup__Panel__Header {
|
|
2691
|
+
display: flex;
|
|
2692
|
+
padding: 0 var(--ab-cmp-adaptable-popup-panel__padding);
|
|
2693
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-panel__margin-bottom);
|
|
2694
|
+
margin-top: var(--ab-cmp-adaptable-popup-panel__margin-top); }
|
|
2695
|
+
.ab-Adaptable-Popup__Panel__Header__Title {
|
|
2696
|
+
font-size: var(--ab-cmp-adaptable-popup-panel-title__font-size); }
|
|
2697
|
+
.ab-Adaptable-Popup__Panel__Body {
|
|
2698
|
+
padding: var(--ab-cmp-adaptable-popup-panel-body__padding);
|
|
2699
|
+
flex: 1 1 0;
|
|
2700
|
+
min-height: 0;
|
|
2701
|
+
overflow: auto; }
|
|
2702
|
+
.ab-Adaptable-Popup--window .ab-Adaptable-Popup__TopBar {
|
|
2703
|
+
cursor: move; }
|
|
2704
|
+
.ab-Adaptable-Popup--window.ab-Adaptable-Popup--action-popup .ab-Panel__header {
|
|
2705
|
+
cursor: move; }
|
|
2706
|
+
.ab-Adaptable-Object-List {
|
|
2707
|
+
list-style: none;
|
|
2708
|
+
padding: 0; }
|
|
2709
|
+
.ab-Adaptable-Object-List .ab-Tag {
|
|
2710
|
+
margin-right: var(--ab-cmp-adaptable-object-list-tag__margin-right);
|
|
2711
|
+
margin-top: var(--ab-cmp-adaptable-object-list-tag__margin-top);
|
|
2712
|
+
padding: var(--ab-cmp-adaptable-object-list-item-tag__padding); }
|
|
2713
|
+
.ab-Adaptable-Object-List__Item {
|
|
2714
|
+
background-color: var(--ab-cmp-adaptable-object-list-item__background-color);
|
|
2715
|
+
padding: var(--ab-cmp-adaptable-object-list-item__padding);
|
|
2716
|
+
margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom); }
|
|
2717
|
+
.ab-Adaptable-Object-List__Item__edit-property {
|
|
2718
|
+
visibility: hidden; }
|
|
2719
|
+
.ab-Adaptable-Object-List__Item__buttons {
|
|
2720
|
+
padding-left: var(--ab-space-2);
|
|
2721
|
+
min-width: 80px;
|
|
2722
|
+
text-align: right;
|
|
2723
|
+
margin-left: var(--ab-space-3); }
|
|
2724
|
+
.ab-Adaptable-Object-List__Item__label {
|
|
2725
|
+
padding-top: var(--ab-cmp-adaptable-object-list-item-label__padding-top);
|
|
2726
|
+
width: var(--ab-cmp-adaptable-object-list-item-label__width); }
|
|
2727
|
+
.ab-Adaptable-Object-List__Item__label:hover .ab-Adaptable-Object-List__Item__edit-property {
|
|
2728
|
+
visibility: visible; }
|
|
2443
2729
|
.ab-alert--error {
|
|
2444
2730
|
background: var(--ab-color-error); }
|
|
2445
2731
|
.ab-alert--success {
|
|
@@ -2467,7 +2753,7 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
2467
2753
|
.ab_div-colour-render-text {
|
|
2468
2754
|
position: absolute;
|
|
2469
2755
|
font-weight: normal;
|
|
2470
|
-
font-size:
|
|
2756
|
+
font-size: 12px;
|
|
2471
2757
|
z-index: 100; }
|
|
2472
2758
|
.ab_div-colour-render-div {
|
|
2473
2759
|
display: inline-block;
|