@adaptabletools/adaptable 10.0.4-canary.3 → 11.0.0-canary.1
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 +385 -95
- package/bundle.cjs.js +141 -136
- package/index.css +448 -104
- package/package.json +5 -4
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +12 -7
- package/src/AdaptableOptions/AdaptableOptions.d.ts +19 -3
- package/src/AdaptableOptions/ContainerOptions.d.ts +0 -7
- package/src/AdaptableOptions/DashboardOptions.d.ts +7 -9
- 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/TeamSharingOptions.d.ts +1 -1
- 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/Events/SearchChanged.d.ts +1 -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 -7
- package/src/Api/Implementation/InternalApiImpl.js +5 -18
- 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 -9
- 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 +6 -5
- 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.d.ts +0 -7
- package/src/Redux/ActionsReducers/DashboardRedux.js +3 -13
- 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 -66
- 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/ModuleService.js +13 -17
- package/src/Utilities/Services/TeamSharingService.js +3 -4
- package/src/View/AdaptableView.js +5 -11
- 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 +17 -40
- 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/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/FlashingCellSettingsWizardSection.d.ts +10 -0
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +66 -0
- 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 +15 -10
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +19 -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/SpecialColumnSettingsWizardStep.d.ts +9 -0
- package/src/View/SpecialColumnSettingsWizardStep.js +62 -0
- 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 -100
- 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/Dashboard.js +1 -1
- 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 +102 -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 +15 -2
- package/src/metamodel/adaptable.metamodel.d.ts +98 -112
- package/src/metamodel/adaptable.metamodel.js +432 -458
- 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/FlashingAlertDurationWizardSection.d.ts +0 -10
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertDurationWizardSection.js +0 -60
- 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/index.css
CHANGED
|
@@ -801,25 +801,33 @@ template {
|
|
|
801
801
|
--rdp-background-color-dark: #180270;
|
|
802
802
|
/* Outline border for focused elements */
|
|
803
803
|
--rdp-outline: 2px solid var(--rdp-accent-color);
|
|
804
|
+
/* Outline border for focused and selected elements */
|
|
805
|
+
--rdp-outline-selected: 2px solid rgba(0, 0, 0, 0.75);
|
|
804
806
|
}
|
|
805
807
|
|
|
806
808
|
.rdp {
|
|
807
|
-
display: inline-block;
|
|
808
|
-
font-size: 1rem;
|
|
809
809
|
margin: 1em;
|
|
810
810
|
}
|
|
811
811
|
|
|
812
812
|
/* Hide elements for devices that are not screen readers */
|
|
813
813
|
|
|
814
814
|
.rdp-vhidden {
|
|
815
|
-
|
|
816
|
-
clip: rect(1px, 1px, 1px, 1px);
|
|
817
|
-
height: 1px;
|
|
818
|
-
overflow: hidden;
|
|
815
|
+
box-sizing: border-box;
|
|
819
816
|
padding: 0;
|
|
820
|
-
|
|
817
|
+
margin: 0;
|
|
818
|
+
background: transparent;
|
|
819
|
+
border: 0;
|
|
820
|
+
-moz-appearance: none;
|
|
821
|
+
-webkit-appearance: none;
|
|
822
|
+
appearance: none;
|
|
823
|
+
position: absolute !important;
|
|
821
824
|
top: 0;
|
|
822
|
-
width: 1px;
|
|
825
|
+
width: 1px !important;
|
|
826
|
+
height: 1px !important;
|
|
827
|
+
padding: 0 !important;
|
|
828
|
+
overflow: hidden !important;
|
|
829
|
+
clip: rect(1px, 1px, 1px, 1px) !important;
|
|
830
|
+
border: 0 !important
|
|
823
831
|
}
|
|
824
832
|
|
|
825
833
|
/* Buttons */
|
|
@@ -928,14 +936,14 @@ template {
|
|
|
928
936
|
white-space: nowrap;
|
|
929
937
|
}
|
|
930
938
|
|
|
931
|
-
.rdp-multiple_months .rdp-
|
|
939
|
+
.rdp-multiple_months .rdp-caption_start .rdp-nav {
|
|
932
940
|
position: absolute;
|
|
933
941
|
top: 50%;
|
|
934
942
|
left: 0;
|
|
935
943
|
transform: translateY(-50%);
|
|
936
944
|
}
|
|
937
945
|
|
|
938
|
-
.rdp-multiple_months .rdp-
|
|
946
|
+
.rdp-multiple_months .rdp-caption_end .rdp-nav {
|
|
939
947
|
position: absolute;
|
|
940
948
|
top: 50%;
|
|
941
949
|
right: 0;
|
|
@@ -989,8 +997,8 @@ template {
|
|
|
989
997
|
color: unset;
|
|
990
998
|
}
|
|
991
999
|
|
|
992
|
-
.rdp-dropdown:focus:not([disabled])
|
|
993
|
-
.rdp-dropdown:active:not([disabled])
|
|
1000
|
+
.rdp-dropdown:focus:not([disabled])+.rdp-caption_label,
|
|
1001
|
+
.rdp-dropdown:active:not([disabled])+.rdp-caption_label {
|
|
994
1002
|
border: var(--rdp-outline);
|
|
995
1003
|
border-radius: 6px;
|
|
996
1004
|
background-color: var(--rdp-background-color);
|
|
@@ -1067,16 +1075,30 @@ template {
|
|
|
1067
1075
|
background-color: var(--rdp-accent-color);
|
|
1068
1076
|
}
|
|
1069
1077
|
|
|
1070
|
-
.rdp-
|
|
1078
|
+
.rdp-day_selected:focus:not([disabled]) {
|
|
1079
|
+
border: var(--rdp-outline-selected);
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
.rdp:not([dir='rtl']) .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
1071
1083
|
border-top-right-radius: 0;
|
|
1072
1084
|
border-bottom-right-radius: 0;
|
|
1073
1085
|
}
|
|
1074
1086
|
|
|
1075
|
-
.rdp-day_range_end {
|
|
1087
|
+
.rdp:not([dir='rtl']) .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
1088
|
+
border-top-left-radius: 0;
|
|
1089
|
+
border-bottom-left-radius: 0;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.rdp[dir='rtl'] .rdp-day_range_start:not(.rdp-day_range_end) {
|
|
1076
1093
|
border-top-left-radius: 0;
|
|
1077
1094
|
border-bottom-left-radius: 0;
|
|
1078
1095
|
}
|
|
1079
1096
|
|
|
1097
|
+
.rdp[dir='rtl'] .rdp-day_range_end:not(.rdp-day_range_start) {
|
|
1098
|
+
border-top-right-radius: 0;
|
|
1099
|
+
border-bottom-right-radius: 0;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1080
1102
|
.rdp-day_range_end.rdp-day_range_start {
|
|
1081
1103
|
border-radius: 100%;
|
|
1082
1104
|
}
|
|
@@ -1085,12 +1107,54 @@ template {
|
|
|
1085
1107
|
border-radius: 0;
|
|
1086
1108
|
}
|
|
1087
1109
|
|
|
1110
|
+
:root {
|
|
1111
|
+
--toastify-color-light: #fff;
|
|
1112
|
+
--toastify-color-dark: #121212;
|
|
1113
|
+
--toastify-color-info: #3498db;
|
|
1114
|
+
--toastify-color-success: #07bc0c;
|
|
1115
|
+
--toastify-color-warning: #f1c40f;
|
|
1116
|
+
--toastify-color-error: #e74c3c;
|
|
1117
|
+
--toastify-color-transparent: rgba(255, 255, 255, 0.7);
|
|
1118
|
+
--toastify-icon-color-info: var(--toastify-color-info);
|
|
1119
|
+
--toastify-icon-color-success: var(--toastify-color-success);
|
|
1120
|
+
--toastify-icon-color-warning: var(--toastify-color-warning);
|
|
1121
|
+
--toastify-icon-color-error: var(--toastify-color-error);
|
|
1122
|
+
--toastify-toast-width: 320px;
|
|
1123
|
+
--toastify-toast-background: #fff;
|
|
1124
|
+
--toastify-toast-min-height: 64px;
|
|
1125
|
+
--toastify-toast-max-height: 800px;
|
|
1126
|
+
--toastify-font-family: sans-serif;
|
|
1127
|
+
--toastify-z-index: 9999;
|
|
1128
|
+
--toastify-text-color-light: #757575;
|
|
1129
|
+
--toastify-text-color-dark: #fff;
|
|
1130
|
+
--toastify-text-color-info: #fff;
|
|
1131
|
+
--toastify-text-color-success: #fff;
|
|
1132
|
+
--toastify-text-color-warning: #fff;
|
|
1133
|
+
--toastify-text-color-error: #fff;
|
|
1134
|
+
--toastify-spinner-color: #616161;
|
|
1135
|
+
--toastify-spinner-color-empty-area: #e0e0e0;
|
|
1136
|
+
--toastify-color-progress-light: linear-gradient(
|
|
1137
|
+
to right,
|
|
1138
|
+
#4cd964,
|
|
1139
|
+
#5ac8fa,
|
|
1140
|
+
#007aff,
|
|
1141
|
+
#34aadc,
|
|
1142
|
+
#5856d6,
|
|
1143
|
+
#ff2d55
|
|
1144
|
+
);
|
|
1145
|
+
--toastify-color-progress-dark: #bb86fc;
|
|
1146
|
+
--toastify-color-progress-info: var(--toastify-color-info);
|
|
1147
|
+
--toastify-color-progress-success: var(--toastify-color-success);
|
|
1148
|
+
--toastify-color-progress-warning: var(--toastify-color-warning);
|
|
1149
|
+
--toastify-color-progress-error: var(--toastify-color-error);
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1088
1152
|
.Toastify__toast-container {
|
|
1089
|
-
z-index:
|
|
1090
|
-
-webkit-transform: translate3d(0, 0,
|
|
1153
|
+
z-index: var(--toastify-z-index);
|
|
1154
|
+
-webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
|
|
1091
1155
|
position: fixed;
|
|
1092
1156
|
padding: 4px;
|
|
1093
|
-
width:
|
|
1157
|
+
width: var(--toastify-toast-width);
|
|
1094
1158
|
box-sizing: border-box;
|
|
1095
1159
|
color: #fff;
|
|
1096
1160
|
}
|
|
@@ -1150,7 +1214,7 @@ template {
|
|
|
1150
1214
|
|
|
1151
1215
|
.Toastify__toast {
|
|
1152
1216
|
position: relative;
|
|
1153
|
-
min-height:
|
|
1217
|
+
min-height: var(--toastify-toast-min-height);
|
|
1154
1218
|
box-sizing: border-box;
|
|
1155
1219
|
margin-bottom: 1rem;
|
|
1156
1220
|
padding: 8px;
|
|
@@ -1160,9 +1224,9 @@ template {
|
|
|
1160
1224
|
display: flex;
|
|
1161
1225
|
-ms-flex-pack: justify;
|
|
1162
1226
|
justify-content: space-between;
|
|
1163
|
-
max-height:
|
|
1227
|
+
max-height: var(--toastify-toast-max-height);
|
|
1164
1228
|
overflow: hidden;
|
|
1165
|
-
font-family:
|
|
1229
|
+
font-family: var(--toastify-font-family);
|
|
1166
1230
|
cursor: pointer;
|
|
1167
1231
|
direction: ltr;
|
|
1168
1232
|
}
|
|
@@ -1171,37 +1235,30 @@ template {
|
|
|
1171
1235
|
direction: rtl;
|
|
1172
1236
|
}
|
|
1173
1237
|
|
|
1174
|
-
.Toastify__toast--dark {
|
|
1175
|
-
background: #121212;
|
|
1176
|
-
color: #fff;
|
|
1177
|
-
}
|
|
1178
|
-
|
|
1179
|
-
.Toastify__toast--default {
|
|
1180
|
-
background: #fff;
|
|
1181
|
-
color: #aaa;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
.Toastify__toast--info {
|
|
1185
|
-
background: #3498db;
|
|
1186
|
-
}
|
|
1187
|
-
|
|
1188
|
-
.Toastify__toast--success {
|
|
1189
|
-
background: #07bc0c;
|
|
1190
|
-
}
|
|
1191
|
-
|
|
1192
|
-
.Toastify__toast--warning {
|
|
1193
|
-
background: #f1c40f;
|
|
1194
|
-
}
|
|
1195
|
-
|
|
1196
|
-
.Toastify__toast--error {
|
|
1197
|
-
background: #e74c3c;
|
|
1198
|
-
}
|
|
1199
|
-
|
|
1200
1238
|
.Toastify__toast-body {
|
|
1201
1239
|
margin: auto 0;
|
|
1202
1240
|
-ms-flex: 1 1 auto;
|
|
1203
1241
|
flex: 1 1 auto;
|
|
1204
1242
|
padding: 6px;
|
|
1243
|
+
display: -ms-flexbox;
|
|
1244
|
+
display: flex;
|
|
1245
|
+
-ms-flex-align: center;
|
|
1246
|
+
align-items: center;
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
.Toastify__toast-body > div:last-child {
|
|
1250
|
+
-ms-flex: 1;
|
|
1251
|
+
flex: 1;
|
|
1252
|
+
}
|
|
1253
|
+
|
|
1254
|
+
.Toastify__toast-icon {
|
|
1255
|
+
-webkit-margin-end: 10px;
|
|
1256
|
+
margin-inline-end: 10px;
|
|
1257
|
+
width: 20px;
|
|
1258
|
+
-ms-flex-negative: 0;
|
|
1259
|
+
flex-shrink: 0;
|
|
1260
|
+
display: -ms-flexbox;
|
|
1261
|
+
display: flex;
|
|
1205
1262
|
}
|
|
1206
1263
|
|
|
1207
1264
|
.Toastify--animate {
|
|
@@ -1209,6 +1266,11 @@ template {
|
|
|
1209
1266
|
animation-duration: 0.7s;
|
|
1210
1267
|
}
|
|
1211
1268
|
|
|
1269
|
+
.Toastify--animate-icon {
|
|
1270
|
+
animation-fill-mode: both;
|
|
1271
|
+
animation-duration: 0.3s;
|
|
1272
|
+
}
|
|
1273
|
+
|
|
1212
1274
|
@media only screen and (max-width : 480px) {
|
|
1213
1275
|
.Toastify__toast {
|
|
1214
1276
|
margin-bottom: 0;
|
|
@@ -1216,6 +1278,69 @@ template {
|
|
|
1216
1278
|
}
|
|
1217
1279
|
}
|
|
1218
1280
|
|
|
1281
|
+
.Toastify__toast-theme--dark {
|
|
1282
|
+
background: var(--toastify-color-dark);
|
|
1283
|
+
color: var(--toastify-text-color-dark);
|
|
1284
|
+
}
|
|
1285
|
+
|
|
1286
|
+
.Toastify__toast-theme--light {
|
|
1287
|
+
background: var(--toastify-color-light);
|
|
1288
|
+
color: var(--toastify-text-color-light);
|
|
1289
|
+
}
|
|
1290
|
+
|
|
1291
|
+
.Toastify__toast-theme--colored.Toastify__toast--default {
|
|
1292
|
+
background: var(--toastify-color-light);
|
|
1293
|
+
color: var(--toastify-text-color-light);
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
.Toastify__toast-theme--colored.Toastify__toast--info {
|
|
1297
|
+
color: var(--toastify-text-color-info);
|
|
1298
|
+
background: var(--toastify-color-info);
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
.Toastify__toast-theme--colored.Toastify__toast--success {
|
|
1302
|
+
color: var(--toastify-text-color-success);
|
|
1303
|
+
background: var(--toastify-color-success);
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
.Toastify__toast-theme--colored.Toastify__toast--warning {
|
|
1307
|
+
color: var(--toastify-text-color-warning);
|
|
1308
|
+
background: var(--toastify-color-warning);
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1311
|
+
.Toastify__toast-theme--colored.Toastify__toast--error {
|
|
1312
|
+
color: var(--toastify-text-color-error);
|
|
1313
|
+
background: var(--toastify-color-error);
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
.Toastify__progress-bar-theme--light {
|
|
1317
|
+
background: var(--toastify-color-progress-light);
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
.Toastify__progress-bar-theme--dark {
|
|
1321
|
+
background: var(--toastify-color-progress-dark);
|
|
1322
|
+
}
|
|
1323
|
+
|
|
1324
|
+
.Toastify__progress-bar--info {
|
|
1325
|
+
background: var(--toastify-color-progress-info);
|
|
1326
|
+
}
|
|
1327
|
+
|
|
1328
|
+
.Toastify__progress-bar--success {
|
|
1329
|
+
background: var(--toastify-color-progress-success);
|
|
1330
|
+
}
|
|
1331
|
+
|
|
1332
|
+
.Toastify__progress-bar--warning {
|
|
1333
|
+
background: var(--toastify-color-progress-warning);
|
|
1334
|
+
}
|
|
1335
|
+
|
|
1336
|
+
.Toastify__progress-bar--error {
|
|
1337
|
+
background: var(--toastify-color-progress-error);
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
.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 {
|
|
1341
|
+
background: var(--toastify-color-transparent);
|
|
1342
|
+
}
|
|
1343
|
+
|
|
1219
1344
|
.Toastify__close-button {
|
|
1220
1345
|
color: #fff;
|
|
1221
1346
|
background: transparent;
|
|
@@ -1229,7 +1354,7 @@ template {
|
|
|
1229
1354
|
align-self: flex-start;
|
|
1230
1355
|
}
|
|
1231
1356
|
|
|
1232
|
-
.Toastify__close-button--
|
|
1357
|
+
.Toastify__close-button--light {
|
|
1233
1358
|
color: #000;
|
|
1234
1359
|
opacity: 0.3;
|
|
1235
1360
|
}
|
|
@@ -1259,9 +1384,8 @@ template {
|
|
|
1259
1384
|
left: 0;
|
|
1260
1385
|
width: 100%;
|
|
1261
1386
|
height: 5px;
|
|
1262
|
-
z-index:
|
|
1387
|
+
z-index: var(--toastify-z-index);
|
|
1263
1388
|
opacity: 0.7;
|
|
1264
|
-
background-color: rgba(255, 255, 255, 0.7);
|
|
1265
1389
|
transform-origin: left;
|
|
1266
1390
|
}
|
|
1267
1391
|
|
|
@@ -1279,12 +1403,15 @@ template {
|
|
|
1279
1403
|
transform-origin: right;
|
|
1280
1404
|
}
|
|
1281
1405
|
|
|
1282
|
-
.
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1406
|
+
.Toastify__spinner {
|
|
1407
|
+
width: 20px;
|
|
1408
|
+
height: 20px;
|
|
1409
|
+
box-sizing: border-box;
|
|
1410
|
+
border: 2px solid;
|
|
1411
|
+
border-radius: 100%;
|
|
1412
|
+
border-color: var(--toastify-spinner-color-empty-area);
|
|
1413
|
+
border-right-color: var(--toastify-spinner-color);
|
|
1414
|
+
animation: Toastify__spin 0.65s linear infinite;
|
|
1288
1415
|
}
|
|
1289
1416
|
|
|
1290
1417
|
@keyframes Toastify__bounceInRight {
|
|
@@ -1648,6 +1775,15 @@ template {
|
|
|
1648
1775
|
animation-name: Toastify__slideOutDown;
|
|
1649
1776
|
}
|
|
1650
1777
|
|
|
1778
|
+
@keyframes Toastify__spin {
|
|
1779
|
+
from {
|
|
1780
|
+
transform: rotate(0deg);
|
|
1781
|
+
}
|
|
1782
|
+
to {
|
|
1783
|
+
transform: rotate(360deg);
|
|
1784
|
+
}
|
|
1785
|
+
}
|
|
1786
|
+
|
|
1651
1787
|
:root {
|
|
1652
1788
|
--ab-space-0: 0px;
|
|
1653
1789
|
--ab-space-1: 4px;
|
|
@@ -1756,7 +1892,7 @@ template {
|
|
|
1756
1892
|
:root {
|
|
1757
1893
|
--ab-cmp-dialog__background: var(--ab-color-defaultbackground, white);
|
|
1758
1894
|
--ab-cmp-dialog__color: var(--ab-color-text-on-defaultbackground, white);
|
|
1759
|
-
--ab-cmp-dialog-close-button__color: var(--ab-color-
|
|
1895
|
+
--ab-cmp-dialog-close-button__color: var(--ab-color-accentlight);
|
|
1760
1896
|
--ab-cmp-dialog__border-radius: var(--ab__border-radius);
|
|
1761
1897
|
--ab-cmp-dialog__min-height: 60vh; }
|
|
1762
1898
|
|
|
@@ -1857,7 +1993,7 @@ template {
|
|
|
1857
1993
|
|
|
1858
1994
|
:root {
|
|
1859
1995
|
--ab-cmp-panel_header__background: var(--ab-color-primary);
|
|
1860
|
-
--ab-cmp-panel_header__font-size: var(--ab-font-size-
|
|
1996
|
+
--ab-cmp-panel_header__font-size: var(--ab-font-size-3);
|
|
1861
1997
|
--ab-cmp-panel__font-size: var(--ab-font-size-3);
|
|
1862
1998
|
--ab-cmp-panel__border-radius: var(--ab__border-radius);
|
|
1863
1999
|
--ab-cmp-panel__padding: var(--ab-space-2);
|
|
@@ -1871,6 +2007,7 @@ template {
|
|
|
1871
2007
|
--ab-cmp-panel_header--variant-primary__background: var(--ab-color-secondary);
|
|
1872
2008
|
--ab-cmp-panel_header--variant-primary__color: var(--ab-color-text-on-secondary);
|
|
1873
2009
|
--ab-cmp-panel_header--variant-modern__background: var(--ab-color-primary);
|
|
2010
|
+
--ab-cmp-panel_header--variant-minimal__background: var(--ab-color-defaultbackground);
|
|
1874
2011
|
--ab-cmp-panel_header--variant-modern__color: var(--ab-color-text-on-primary);
|
|
1875
2012
|
--ab-cmp-panel_body--variant-modern__background: var(--ab-color-primarylight); }
|
|
1876
2013
|
|
|
@@ -2090,6 +2227,59 @@ template {
|
|
|
2090
2227
|
:root {
|
|
2091
2228
|
--ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4); }
|
|
2092
2229
|
|
|
2230
|
+
:root {
|
|
2231
|
+
--ab-cmp-adaptable-popup__background: var(--ab-color-primarylight);
|
|
2232
|
+
--ab-cmp-adaptable-popup--settings__padding: 20px;
|
|
2233
|
+
--ab-cmp-adaptable-popup--settings__height: 90vh;
|
|
2234
|
+
--ab-cmp-adaptable-popup__height: 90vh;
|
|
2235
|
+
--ab-cmp-adaptable-popup__max-height: 1200px;
|
|
2236
|
+
--ab-cmp-adaptable-popup-navigation-list__padding: var(--ab-space-1) var(--ab-space-2);
|
|
2237
|
+
--ab-cmp-adaptable-popup-navigation-list__border-right: 2px solid var(--ab-color-defaultbackground);
|
|
2238
|
+
--ab-cmp-adaptable-popup-navigation-list__font-size: var(--ab-font-size-3);
|
|
2239
|
+
--ab-cmp-adaptable-popup-navigation-list-item__padding: var(--ab-space-0) var(--ab-space-1);
|
|
2240
|
+
--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom: var(--ab-space-2) var(--ab-space-2);
|
|
2241
|
+
--ab-cmp-adaptable-popup-navigation-list-item-separator__border: 1px solid var(--ab-color-primarydark);
|
|
2242
|
+
--ab-cmp-adaptable-popup-navigation-list-item-separator__margin: var(--ab-space-2) var(--ab-space-2);
|
|
2243
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__padding: var(--ab-space-2) var(--ab-space-2);
|
|
2244
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius: var(--ab__border-radius);
|
|
2245
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__color: var(--ab-color-text-on-primary);
|
|
2246
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__background--active: var(--ab-color-focus);
|
|
2247
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__background--color: var(--ab-color-accentlight);
|
|
2248
|
+
--ab-cmp-adaptable-popup-navigation-list-item-icon__margin-right: var(--ab-space-2);
|
|
2249
|
+
--ab-cmp-adaptable-popup-topbar__background: var(--ab-color-secondary);
|
|
2250
|
+
--ab-cmp-adaptable-popup-topbar__height: 45px;
|
|
2251
|
+
--ab-cmp-adaptable-popup-topbar__color: var(--ab-color-text-on-secondary);
|
|
2252
|
+
--ab-cmp-adaptable-popup-topbar__font-weight: 500;
|
|
2253
|
+
--ab-cmp-adaptable-popup-topbar__padding: var(--ab-space-3);
|
|
2254
|
+
--ab-cmp-adaptable-popup-topbar-icon__margin-right: var(--ab-space-2);
|
|
2255
|
+
--ab-cmp-adaptable-popup-topbar-icon__color: var(--ab-color-accentlight);
|
|
2256
|
+
--ab-cmp-adaptable-popup-panel__padding: 0 var(--ab-space-2);
|
|
2257
|
+
--ab-cmp-adaptable-popup-panel__margin-bottom: var(--ab-space-3);
|
|
2258
|
+
--ab-cmp-adaptable-popup-panel__margin-top: var(--ab-space-2);
|
|
2259
|
+
--ab-cmp-adaptable-popup-panel-title__font-size: var(--ab-font-size-5);
|
|
2260
|
+
--ab-cmp-adaptable-popup-panel-body__padding: var(--ab-space-2); }
|
|
2261
|
+
|
|
2262
|
+
:root {
|
|
2263
|
+
--ab-cmp-adaptable-object-list-tag__margin-right: var(--ab-space-2);
|
|
2264
|
+
--ab-cmp-adaptable-object-list-tag__margin-top: var(--ab-space-2);
|
|
2265
|
+
--ab-cmp-adaptable-object-list-item__background-color: var(--ab-color-defaultbackground);
|
|
2266
|
+
--ab-cmp-adaptable-object-list-item__padding: var(--ab-space-3) var(--ab-space-3);
|
|
2267
|
+
--ab-cmp-adaptable-object-list-item__margin-bottom: var(--ab-space-3);
|
|
2268
|
+
--ab-cmp-adaptable-object-list-item-label__padding-top: var(--ab-space-3);
|
|
2269
|
+
--ab-cmp-adaptable-object-list-item-label__width: 130px;
|
|
2270
|
+
--ab-cmp-adaptable-object-list-item-tag__padding: 6px 12px; }
|
|
2271
|
+
|
|
2272
|
+
:root {
|
|
2273
|
+
--ab-cmp-adaptable-options__background-color: var(--ab-color-defaultbackground);
|
|
2274
|
+
--ab-cmp-grid-options__background-color: var(--ab-color-defaultbackground);
|
|
2275
|
+
--ab-cmp-grid-summary__background-color: var(--ab-color-defaultbackground); }
|
|
2276
|
+
|
|
2277
|
+
:root {
|
|
2278
|
+
--ab-cmp-system-status-list__background-color: var(--ab-color-defaultbackground); }
|
|
2279
|
+
|
|
2280
|
+
:root {
|
|
2281
|
+
--ab-cmp-dashboard-module-selector-background: var(--ab-color-defaultbackground); }
|
|
2282
|
+
|
|
2093
2283
|
.ab-Radio-input:focus + svg rect {
|
|
2094
2284
|
stroke: var(--ab-color-accent);
|
|
2095
2285
|
stroke-width: 2; }
|
|
@@ -2205,7 +2395,6 @@ template {
|
|
|
2205
2395
|
fill: var(--ab-color-text-on-primary);
|
|
2206
2396
|
color: var(--ab-cmp-dialog__color);
|
|
2207
2397
|
border-radius: var(--ab-cmp-dialog__border-radius);
|
|
2208
|
-
min-height: var(--ab-cmp-dialog__min-height);
|
|
2209
2398
|
display: flex;
|
|
2210
2399
|
flex-flow: column; }
|
|
2211
2400
|
|
|
@@ -2213,13 +2402,10 @@ template {
|
|
|
2213
2402
|
box-shadow: var(--ab-focus__box-shadow);
|
|
2214
2403
|
outline: var(--ab-focus__outline); }
|
|
2215
2404
|
|
|
2216
|
-
.ab-Dialog > * {
|
|
2217
|
-
flex: 1; }
|
|
2218
|
-
|
|
2219
2405
|
.ab-Dialog__close-button {
|
|
2220
2406
|
position: absolute;
|
|
2221
|
-
right:
|
|
2222
|
-
top:
|
|
2407
|
+
right: 6px;
|
|
2408
|
+
top: 6px;
|
|
2223
2409
|
font-size: var(--ab-font-size-3);
|
|
2224
2410
|
font-weight: 700;
|
|
2225
2411
|
line-height: 1;
|
|
@@ -2457,6 +2643,9 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2457
2643
|
z-index: 1000;
|
|
2458
2644
|
font-family: var(--ab__font-family); }
|
|
2459
2645
|
|
|
2646
|
+
.ab-Modal.ab-Modal--resizable-and-movable {
|
|
2647
|
+
position: relative; }
|
|
2648
|
+
|
|
2460
2649
|
.ab-Modal-backdrop {
|
|
2461
2650
|
background: var(--ab-cmp-modal-backdrop__background);
|
|
2462
2651
|
z-index: 900;
|
|
@@ -2542,6 +2731,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2542
2731
|
display: flex;
|
|
2543
2732
|
flex-flow: column;
|
|
2544
2733
|
max-height: var(--ab-cmp-panel__max-height);
|
|
2734
|
+
overflow: auto;
|
|
2545
2735
|
font-size: var(--ab-cmp-panel__font-size); }
|
|
2546
2736
|
|
|
2547
2737
|
.ab-Panel .glyphicon {
|
|
@@ -2819,9 +3009,6 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2819
3009
|
.ab-FileDroppable, .ab-FileDroppable *, .ab-FileDroppable *:before, .ab-FileDroppable *:after {
|
|
2820
3010
|
box-sizing: border-box; }
|
|
2821
3011
|
|
|
2822
|
-
.ab-ChartContainer canvas {
|
|
2823
|
-
left: 0; }
|
|
2824
|
-
|
|
2825
3012
|
.ab-WizardPanel > .ab-Panel__body {
|
|
2826
3013
|
display: flex;
|
|
2827
3014
|
flex-flow: column; }
|
|
@@ -3025,57 +3212,70 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3025
3212
|
|
|
3026
3213
|
:root {
|
|
3027
3214
|
--ab-cmp-toggle-button__background: #ccc;
|
|
3028
|
-
--ab-cmp-toggle-button--active__background: var(--ab-color-success);
|
|
3215
|
+
--ab-cmp-toggle-button--active__background: var(--ab-color-success);
|
|
3216
|
+
--ab-cmp-toggle-button__font-size: var(--ab-font-size-1);
|
|
3217
|
+
--ab-cmp-toggle-button__color: var(--ab-color-text-on-primary);
|
|
3218
|
+
--ab-cmp-toggle-button--checked__color: var(--ab-color-accentlight); }
|
|
3029
3219
|
|
|
3030
3220
|
.ab-ToggleButton {
|
|
3031
3221
|
position: relative;
|
|
3032
3222
|
display: inline-block;
|
|
3033
3223
|
min-width: 40px;
|
|
3034
|
-
width:
|
|
3035
|
-
height:
|
|
3224
|
+
width: 87px;
|
|
3225
|
+
height: 32px; }
|
|
3036
3226
|
|
|
3037
3227
|
.ab-ToggleButton:hover:not(.ab-ToggleButton--disabled) {
|
|
3038
3228
|
cursor: pointer;
|
|
3039
3229
|
opacity: 0.85; }
|
|
3040
3230
|
|
|
3041
3231
|
.ab-ToggleButton__input {
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3232
|
+
opacity: 0;
|
|
3233
|
+
width: 0;
|
|
3234
|
+
height: 0; }
|
|
3045
3235
|
|
|
3046
3236
|
.ab-ToggleButton__slider {
|
|
3047
|
-
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3237
|
+
position: absolute;
|
|
3238
|
+
top: 0;
|
|
3239
|
+
left: 0;
|
|
3240
|
+
right: 0;
|
|
3241
|
+
bottom: 0;
|
|
3242
|
+
background-color: var(--ab-cmp-toggle-button__background);
|
|
3243
|
+
transition: 0.1s;
|
|
3244
|
+
border-radius: var(--ab__border-radius); }
|
|
3055
3245
|
|
|
3056
3246
|
.ab-ToggleButton__slider:before {
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
|
|
3247
|
+
position: absolute;
|
|
3248
|
+
content: "";
|
|
3249
|
+
width: 24px;
|
|
3250
|
+
height: 24px;
|
|
3251
|
+
left: 4px;
|
|
3252
|
+
top: 4px;
|
|
3253
|
+
border-radius: var(--ab__border-radius);
|
|
3254
|
+
background-color: #fff;
|
|
3255
|
+
-webkit-transition: 0.4s;
|
|
3256
|
+
transition: 0.2s; }
|
|
3067
3257
|
|
|
3068
3258
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider {
|
|
3069
|
-
|
|
3259
|
+
background-color: var(--ab-cmp-toggle-button--active__background); }
|
|
3070
3260
|
|
|
3071
3261
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider:before {
|
|
3072
|
-
|
|
3262
|
+
transform: translateX(54px); }
|
|
3073
3263
|
|
|
3074
3264
|
.ab-ToggleButton__input:focus + .ab-ToggleButton__slider {
|
|
3075
|
-
|
|
3265
|
+
box-shadow: var(--ab-focus__box-shadow); }
|
|
3076
3266
|
|
|
3077
3267
|
.ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
|
|
3078
|
-
|
|
3268
|
+
opacity: 0.5; }
|
|
3269
|
+
|
|
3270
|
+
.ab-ToggleButton .ab-ToggleButton__text {
|
|
3271
|
+
font-size: var(--ab-cmp-toggle-button__font-size);
|
|
3272
|
+
padding-right: var(--ab-space-2);
|
|
3273
|
+
color: var(--ab-cmp-toggle-button__color);
|
|
3274
|
+
font-weight: 600; }
|
|
3275
|
+
|
|
3276
|
+
.ab-ToggleButton--checked .ab-ToggleButton__text {
|
|
3277
|
+
padding-left: var(--ab-space-2);
|
|
3278
|
+
color: var(--ab-cmp-toggle-button--checked__color); }
|
|
3079
3279
|
|
|
3080
3280
|
.ab-Loader {
|
|
3081
3281
|
font-size: var(--ab-cmp-loader__font-size);
|
|
@@ -3134,6 +3334,25 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3134
3334
|
font-style: var(--ab-cmp-progress-indicator__font-style);
|
|
3135
3335
|
font-family: var(--ab-cmp-progress-indicator__font-family); }
|
|
3136
3336
|
|
|
3337
|
+
:root {
|
|
3338
|
+
--ab-cmp-Tag__font-size: var(--ab-font-size-3); }
|
|
3339
|
+
|
|
3340
|
+
.ab-Tag {
|
|
3341
|
+
display: inline-flex;
|
|
3342
|
+
font-size: var(--ab-cmp-Tag__font-size); }
|
|
3343
|
+
|
|
3344
|
+
.ab-AdaptableOptions {
|
|
3345
|
+
background: var(--ab-cmp-adaptable-options__background-color); }
|
|
3346
|
+
|
|
3347
|
+
.ab-GridOptions {
|
|
3348
|
+
background: var(--ab-cmp-grid-options__background-color); }
|
|
3349
|
+
|
|
3350
|
+
.ab-GridSummary {
|
|
3351
|
+
background: var(--ab-cmp-grid-summary__background-color); }
|
|
3352
|
+
|
|
3353
|
+
.ab-SystemStatus-Popup-List {
|
|
3354
|
+
background: var(--ab-cmp-system-status-list__background-color); }
|
|
3355
|
+
|
|
3137
3356
|
.ab-ObjectCollection__list > * {
|
|
3138
3357
|
background: var(--ab-cmp-listgroupitem__background);
|
|
3139
3358
|
color: var(--ab-cmp-listgroupitem__color); }
|
|
@@ -3254,6 +3473,9 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
3254
3473
|
.ab-Dashboard__application-icon {
|
|
3255
3474
|
margin-right: var(--ab-space-2); }
|
|
3256
3475
|
|
|
3476
|
+
.ab-Dashboard-Popup__Module-Selector {
|
|
3477
|
+
background: var(--ab-cmp-dashboard-module-selector-background); }
|
|
3478
|
+
|
|
3257
3479
|
.ab-ToolPanel {
|
|
3258
3480
|
flex: 1 1 0;
|
|
3259
3481
|
min-width: 0;
|
|
@@ -3283,6 +3505,124 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
3283
3505
|
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
3284
3506
|
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
|
|
3285
3507
|
|
|
3508
|
+
.ab-Adaptable-Popup {
|
|
3509
|
+
background: var(--ab-cmp-adaptable-popup__background);
|
|
3510
|
+
max-height: var(--ab-cmp-adaptable-popup__max-height); }
|
|
3511
|
+
|
|
3512
|
+
.ab-Adaptable-Popup__Navigation {
|
|
3513
|
+
padding-top: 10px;
|
|
3514
|
+
overflow: auto;
|
|
3515
|
+
border-right: var(--ab-cmp-adaptable-popup-navigation-list__border-right);
|
|
3516
|
+
font-family: var(--ab__font-family); }
|
|
3517
|
+
|
|
3518
|
+
.ab-Adaptable-Popup__Navigation__List {
|
|
3519
|
+
list-style: none;
|
|
3520
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list__padding);
|
|
3521
|
+
margin: 0;
|
|
3522
|
+
font-size: var(--ab-cmp-adaptable-popup-navigation-list__font-size); }
|
|
3523
|
+
|
|
3524
|
+
.ab-Adaptable-Popup__Navigation__List__Item {
|
|
3525
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item__padding);
|
|
3526
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom); }
|
|
3527
|
+
|
|
3528
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Separator {
|
|
3529
|
+
border-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__border);
|
|
3530
|
+
margin: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__margin); }
|
|
3531
|
+
|
|
3532
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
3533
|
+
background: none;
|
|
3534
|
+
border: none;
|
|
3535
|
+
width: 100%;
|
|
3536
|
+
text-align: left;
|
|
3537
|
+
cursor: pointer;
|
|
3538
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item-button__padding);
|
|
3539
|
+
border-radius: var(--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius);
|
|
3540
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__color); }
|
|
3541
|
+
|
|
3542
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Icon {
|
|
3543
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right); }
|
|
3544
|
+
|
|
3545
|
+
.ab-Adaptable-Popup__Navigation__List__Item--active .ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
3546
|
+
background: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--active);
|
|
3547
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--color); }
|
|
3548
|
+
|
|
3549
|
+
.ab-Adaptable-Popup__TopBar {
|
|
3550
|
+
display: flex;
|
|
3551
|
+
align-items: center;
|
|
3552
|
+
background: var(--ab-cmp-adaptable-popup-topbar__background);
|
|
3553
|
+
height: var(--ab-cmp-adaptable-popup-topbar__height);
|
|
3554
|
+
color: var(--ab-cmp-adaptable-popup-topbar__color);
|
|
3555
|
+
font-weight: var(--ab-cmp-adaptable-popup-topbar__font-weight);
|
|
3556
|
+
padding: var(--ab-cmp-adaptable-popup-topbar__padding);
|
|
3557
|
+
box-sizing: border-box; }
|
|
3558
|
+
|
|
3559
|
+
.ab-Adaptable-Popup__TopBar__Icon {
|
|
3560
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right); }
|
|
3561
|
+
|
|
3562
|
+
.ab-Adaptable-Popup__TopBar__Close .ab-Icon {
|
|
3563
|
+
color: var(--ab-cmp-adaptable-popup-topbar-icon__color); }
|
|
3564
|
+
|
|
3565
|
+
.ab-Adaptable-Popup--settings-popup {
|
|
3566
|
+
height: var(--ab-cmp-adaptable-popup--settings__height); }
|
|
3567
|
+
|
|
3568
|
+
.ab-Adaptable-Popup--settings-popup .ab-Dialog__close-button {
|
|
3569
|
+
top: 9px; }
|
|
3570
|
+
|
|
3571
|
+
.ab-Adaptable-Popup--settings-popup .ab-Adaptable-Popup__Body {
|
|
3572
|
+
padding: var(--ab-cmp-adaptable-popup--settings__padding);
|
|
3573
|
+
min-width: 0; }
|
|
3574
|
+
|
|
3575
|
+
.ab-Adaptable-Popup__Panel__Header {
|
|
3576
|
+
display: flex;
|
|
3577
|
+
padding: 0 var(--ab-cmp-adaptable-popup-panel__padding);
|
|
3578
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-panel__margin-bottom);
|
|
3579
|
+
margin-top: var(--ab-cmp-adaptable-popup-panel__margin-top); }
|
|
3580
|
+
|
|
3581
|
+
.ab-Adaptable-Popup__Panel__Header__Title {
|
|
3582
|
+
font-size: var(--ab-cmp-adaptable-popup-panel-title__font-size); }
|
|
3583
|
+
|
|
3584
|
+
.ab-Adaptable-Popup__Panel__Body {
|
|
3585
|
+
padding: var(--ab-cmp-adaptable-popup-panel-body__padding);
|
|
3586
|
+
flex: 1 1 0;
|
|
3587
|
+
min-height: 0;
|
|
3588
|
+
overflow: auto; }
|
|
3589
|
+
|
|
3590
|
+
.ab-Adaptable-Popup--window .ab-Adaptable-Popup__TopBar {
|
|
3591
|
+
cursor: move; }
|
|
3592
|
+
|
|
3593
|
+
.ab-Adaptable-Popup--window.ab-Adaptable-Popup--action-popup .ab-Panel__header {
|
|
3594
|
+
cursor: move; }
|
|
3595
|
+
|
|
3596
|
+
.ab-Adaptable-Object-List {
|
|
3597
|
+
list-style: none;
|
|
3598
|
+
padding: 0; }
|
|
3599
|
+
|
|
3600
|
+
.ab-Adaptable-Object-List .ab-Tag {
|
|
3601
|
+
margin-right: var(--ab-cmp-adaptable-object-list-tag__margin-right);
|
|
3602
|
+
margin-top: var(--ab-cmp-adaptable-object-list-tag__margin-top);
|
|
3603
|
+
padding: var(--ab-cmp-adaptable-object-list-item-tag__padding); }
|
|
3604
|
+
|
|
3605
|
+
.ab-Adaptable-Object-List__Item {
|
|
3606
|
+
background-color: var(--ab-cmp-adaptable-object-list-item__background-color);
|
|
3607
|
+
padding: var(--ab-cmp-adaptable-object-list-item__padding);
|
|
3608
|
+
margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom); }
|
|
3609
|
+
|
|
3610
|
+
.ab-Adaptable-Object-List__Item__edit-property {
|
|
3611
|
+
visibility: hidden; }
|
|
3612
|
+
|
|
3613
|
+
.ab-Adaptable-Object-List__Item__buttons {
|
|
3614
|
+
padding-left: var(--ab-space-2);
|
|
3615
|
+
min-width: 80px;
|
|
3616
|
+
text-align: right;
|
|
3617
|
+
margin-left: var(--ab-space-3); }
|
|
3618
|
+
|
|
3619
|
+
.ab-Adaptable-Object-List__Item__label {
|
|
3620
|
+
padding-top: var(--ab-cmp-adaptable-object-list-item-label__padding-top);
|
|
3621
|
+
width: var(--ab-cmp-adaptable-object-list-item-label__width); }
|
|
3622
|
+
|
|
3623
|
+
.ab-Adaptable-Object-List__Item__label:hover .ab-Adaptable-Object-List__Item__edit-property {
|
|
3624
|
+
visibility: visible; }
|
|
3625
|
+
|
|
3286
3626
|
.ab-alert--error {
|
|
3287
3627
|
background: var(--ab-color-error); }
|
|
3288
3628
|
|
|
@@ -3320,7 +3660,7 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
3320
3660
|
.ab_div-colour-render-text {
|
|
3321
3661
|
position: absolute;
|
|
3322
3662
|
font-weight: normal;
|
|
3323
|
-
font-size:
|
|
3663
|
+
font-size: 12px;
|
|
3324
3664
|
z-index: 100; }
|
|
3325
3665
|
|
|
3326
3666
|
.ab_div-colour-render-div {
|
|
@@ -3349,26 +3689,30 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
3349
3689
|
border-style: none;
|
|
3350
3690
|
--ab-toast-cmp__shadow-color: var(--ab-color-accent);
|
|
3351
3691
|
box-shadow: 0 0 7px 2px var(--ab-toast-cmp__shadow-color);
|
|
3352
|
-
background: var(--ab-toast-cmp__shadow-color);
|
|
3692
|
+
background: var(--ab-toast-cmp__shadow-color);
|
|
3693
|
+
--toastify-text-color-info: var(--ab-color-text-on-primary);
|
|
3694
|
+
--toastify-text-color-success: var(--ab-color-text-on-primary);
|
|
3695
|
+
--toastify-text-color-warning: var(--ab-color-text-on-primary);
|
|
3696
|
+
--toastify-text-color-error: var(--ab-color-text-on-primary);
|
|
3697
|
+
--toastify-color-info: var(--ab-color-info);
|
|
3698
|
+
--toastify-color-success: var(--ab-color-success);
|
|
3699
|
+
--toastify-color-warning: var(--ab-color-warn);
|
|
3700
|
+
--toastify-color-error: var(--ab-color-error); }
|
|
3353
3701
|
|
|
3354
3702
|
.Toastify__toast-body {
|
|
3355
3703
|
padding: 0; }
|
|
3356
3704
|
|
|
3357
3705
|
.Toastify__toast--info {
|
|
3358
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-info);
|
|
3359
|
-
color: var(--ab-color-text-on-primary); }
|
|
3706
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-info); }
|
|
3360
3707
|
|
|
3361
3708
|
.Toastify__toast--success {
|
|
3362
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-success);
|
|
3363
|
-
color: var(--ab-color-text-on-primary); }
|
|
3709
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-success); }
|
|
3364
3710
|
|
|
3365
3711
|
.Toastify__toast--warning {
|
|
3366
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-warn);
|
|
3367
|
-
color: var(--ab-color-text-on-primary); }
|
|
3712
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-warn); }
|
|
3368
3713
|
|
|
3369
3714
|
.Toastify__toast--error {
|
|
3370
|
-
--ab-toast-cmp__shadow-color: var(--ab-color-error);
|
|
3371
|
-
color: var(--ab-color-text-on-primary); }
|
|
3715
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-error); }
|
|
3372
3716
|
|
|
3373
3717
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar,
|
|
3374
3718
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar,
|