@adaptabletools/adaptable 10.0.4-canary.1 → 10.0.4-canary.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +2 -2
- package/README.md +1 -1
- package/agGrid.d.ts +2 -2
- package/base.css +387 -87
- package/bundle.cjs.js +353 -0
- package/index.css +454 -94
- package/package.json +5 -8
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +17 -15
- package/src/AdaptableOptions/AdaptableOptions.d.ts +9 -4
- package/src/AdaptableOptions/ContainerOptions.d.ts +4 -5
- package/src/AdaptableOptions/DashboardOptions.d.ts +2 -2
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +3 -3
- package/src/AdaptableOptions/DateInputOptions.d.ts +5 -1
- package/src/AdaptableOptions/EditOptions.d.ts +4 -5
- package/src/AdaptableOptions/ExportOptions.d.ts +1 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +8 -8
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +1 -1
- package/src/AdaptableOptions/GeneralOptions.d.ts +3 -2
- package/src/AdaptableOptions/MenuOptions.d.ts +12 -12
- package/src/AdaptableOptions/NotificationsOptions.d.ts +12 -3
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +75 -0
- package/src/{Api/Events/FlashingAlertFired.js → AdaptableOptions/SettingsPanelOptions.js} +0 -0
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +32 -3
- package/src/Api/AdaptableApi.d.ts +14 -12
- package/src/Api/AlertApi.d.ts +4 -79
- package/src/Api/ColumnApi.d.ts +10 -5
- package/src/Api/DataChangeHistoryApi.d.ts +4 -0
- package/src/Api/EventApi.d.ts +9 -9
- package/src/Api/Events/AdaptableReady.d.ts +3 -2
- package/src/Api/Events/FlashingCellDisplayed.d.ts +11 -0
- package/src/{PredefinedConfig/Common/AdaptableFlashingAlert.js → Api/Events/FlashingCellDisplayed.js} +0 -0
- package/src/Api/Events/GridDataChanged.d.ts +3 -1
- package/src/Api/FlashingCellApi.d.ts +78 -0
- package/src/Api/FlashingCellApi.js +2 -0
- package/src/Api/GridApi.d.ts +38 -15
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
- package/src/Api/Implementation/AlertApiImpl.d.ts +8 -22
- package/src/Api/Implementation/AlertApiImpl.js +40 -107
- package/src/Api/Implementation/ColumnApiImpl.d.ts +4 -3
- package/src/Api/Implementation/ColumnApiImpl.js +16 -14
- package/src/Api/Implementation/ConfigApiImpl.js +0 -29
- package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +1 -0
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +5 -0
- package/src/Api/Implementation/FilterApiImpl.js +1 -1
- package/src/Api/Implementation/FlashingCellApiImpl.d.ts +20 -0
- package/src/Api/Implementation/FlashingCellApiImpl.js +96 -0
- package/src/Api/Implementation/GridApiImpl.d.ts +15 -10
- package/src/Api/Implementation/GridApiImpl.js +42 -21
- package/src/Api/Implementation/InternalApiImpl.d.ts +3 -3
- package/src/Api/Implementation/InternalApiImpl.js +7 -6
- package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
- package/src/Api/Implementation/LayoutApiImpl.js +27 -0
- package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -2
- package/src/Api/Implementation/PluginsApiImpl.js +1 -1
- package/src/Api/Implementation/ScheduleApiImpl.js +11 -11
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +1 -1
- package/src/Api/Implementation/SystemStatusApiImpl.js +1 -1
- package/src/Api/Implementation/ToolPanelApiImpl.js +3 -3
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +3 -3
- package/src/Api/Implementation/UserInterfaceApiImpl.js +4 -4
- package/src/Api/InternalApi.d.ts +5 -5
- package/src/Api/LayoutApi.d.ts +7 -0
- package/src/Api/PluginsApi.d.ts +1 -7
- package/src/Api/SmartEditApi.d.ts +4 -4
- package/src/Api/TeamSharingApi.d.ts +1 -1
- package/src/Api/ThemeApi.d.ts +2 -2
- package/src/Api/UserInterfaceApi.d.ts +3 -3
- package/src/PredefinedConfig/AdaptableState.d.ts +4 -10
- package/src/PredefinedConfig/AlertState.d.ts +14 -55
- package/src/PredefinedConfig/ApplicationState.d.ts +1 -1
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +7 -3
- package/src/PredefinedConfig/Common/AdaptableComparerFunction.d.ts +2 -2
- package/src/PredefinedConfig/Common/{AdaptableFlashingAlert.d.ts → AdaptableFlashingCell.d.ts} +6 -6
- package/src/PredefinedConfig/Common/AdaptableFlashingCell.js +2 -0
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
- package/src/PredefinedConfig/Common/AdaptableScope.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +7 -7
- package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +14 -3
- package/src/PredefinedConfig/Common/CellSummary.d.ts +2 -2
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
- package/src/PredefinedConfig/Common/Menu.d.ts +41 -18
- package/src/PredefinedConfig/Common/Schedule.d.ts +4 -14
- package/src/PredefinedConfig/Common/Schedule.js +0 -14
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
- package/src/PredefinedConfig/Common/Types.d.ts +6 -5
- package/src/PredefinedConfig/Common/Types.js +9 -7
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +1 -1
- package/src/PredefinedConfig/CustomSortState.d.ts +2 -2
- package/src/PredefinedConfig/DashboardState.d.ts +3 -2
- package/src/PredefinedConfig/DataSourceState.d.ts +1 -1
- package/src/PredefinedConfig/ExportState.d.ts +3 -3
- package/src/PredefinedConfig/FilterState.d.ts +2 -2
- package/src/PredefinedConfig/FlashingCellState.d.ts +70 -0
- package/src/PredefinedConfig/FlashingCellState.js +2 -0
- package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +3 -3
- package/src/PredefinedConfig/LayoutState.d.ts +2 -2
- package/src/PredefinedConfig/PredefinedConfig.d.ts +1 -39
- package/src/PredefinedConfig/QuickSearchState.d.ts +3 -3
- package/src/PredefinedConfig/ScheduleState.d.ts +2 -6
- package/src/PredefinedConfig/ShortcutState.d.ts +6 -2
- package/src/PredefinedConfig/SystemState.d.ts +17 -4
- package/src/PredefinedConfig/ThemeState.d.ts +5 -1
- package/src/Redux/ActionsReducers/AlertRedux.d.ts +3 -38
- package/src/Redux/ActionsReducers/AlertRedux.js +9 -68
- package/src/Redux/ActionsReducers/DashboardRedux.js +3 -2
- package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +55 -0
- package/src/Redux/ActionsReducers/FlashingCellRedux.js +100 -0
- package/src/Redux/ActionsReducers/GridRedux.d.ts +3 -2
- package/src/Redux/ActionsReducers/GridRedux.js +2 -2
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +12 -2
- package/src/Redux/ActionsReducers/LayoutRedux.js +24 -1
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +34 -13
- package/src/Redux/ActionsReducers/SystemRedux.js +94 -40
- package/src/Redux/ActionsReducers/ToolPanelRedux.js +2 -1
- package/src/Redux/DeadRedux.d.ts +4 -8
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +6 -1
- package/src/Redux/Store/AdaptableStore.d.ts +3 -3
- package/src/Redux/Store/AdaptableStore.js +91 -51
- package/src/Strategy/AdaptableModuleBase.d.ts +2 -2
- package/src/Strategy/AlertModule.d.ts +16 -7
- package/src/Strategy/AlertModule.js +40 -216
- package/src/Strategy/BulkUpdateModule.d.ts +2 -2
- package/src/Strategy/BulkUpdateModule.js +4 -4
- package/src/Strategy/CalculatedColumnModule.d.ts +28 -0
- package/src/Strategy/CalculatedColumnModule.js +29 -0
- package/src/Strategy/CellSummaryModule.d.ts +2 -2
- package/src/Strategy/ConditionalStyleModule.d.ts +12 -0
- package/src/Strategy/ConditionalStyleModule.js +28 -0
- package/src/Strategy/CustomSortModule.d.ts +12 -1
- package/src/Strategy/CustomSortModule.js +26 -0
- package/src/Strategy/DashboardModule.d.ts +2 -3
- package/src/Strategy/DashboardModule.js +1 -7
- package/src/Strategy/DataChangeHistoryModule.js +3 -3
- package/src/Strategy/DataSourceModule.d.ts +9 -1
- package/src/Strategy/DataSourceModule.js +28 -0
- package/src/Strategy/ExportModule.d.ts +14 -2
- package/src/Strategy/ExportModule.js +43 -0
- package/src/Strategy/FilterModule.d.ts +10 -3
- package/src/Strategy/FilterModule.js +27 -0
- package/src/Strategy/FlashingCellModule.d.ts +33 -0
- package/src/Strategy/FlashingCellModule.js +219 -0
- package/src/Strategy/FormatColumnModule.d.ts +11 -1
- package/src/Strategy/FormatColumnModule.js +36 -1
- package/src/Strategy/FreeTextColumnModule.d.ts +9 -1
- package/src/Strategy/FreeTextColumnModule.js +45 -0
- package/src/Strategy/GridInfoModule.d.ts +2 -2
- package/src/Strategy/GridInfoModule.js +58 -36
- package/src/Strategy/Interface/IModule.d.ts +72 -2
- package/src/Strategy/LayoutModule.d.ts +2 -2
- package/src/Strategy/LayoutModule.js +21 -8
- package/src/Strategy/PlusMinusModule.d.ts +11 -0
- package/src/Strategy/PlusMinusModule.js +34 -0
- package/src/Strategy/QueryModule.d.ts +20 -0
- package/src/Strategy/QueryModule.js +27 -0
- package/src/Strategy/ScheduleModule.d.ts +17 -1
- package/src/Strategy/ScheduleModule.js +148 -2
- package/src/Strategy/SetingsPanelModule.d.ts +10 -0
- package/src/Strategy/SetingsPanelModule.js +24 -0
- package/src/Strategy/ShortcutModule.d.ts +11 -0
- package/src/Strategy/ShortcutModule.js +22 -0
- package/src/Strategy/SmartEditModule.d.ts +2 -2
- package/src/Strategy/SmartEditModule.js +3 -4
- package/src/Strategy/SystemStatusModule.d.ts +2 -2
- package/src/Strategy/ToolPanelModule.js +1 -1
- package/src/Strategy/Utilities/getAlertBehaviourViewItems.d.ts +8 -0
- package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +15 -0
- package/src/Strategy/Utilities/getAlertPreviewViewItems.d.ts +4 -0
- package/src/Strategy/Utilities/getAlertPreviewViewItems.js +19 -0
- package/src/Strategy/Utilities/getCustomSortColumnViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getCustomSortColumnViewItems.js +9 -0
- package/src/Strategy/Utilities/getCustomSortSortOrderViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getCustomSortSortOrderViewItems.js +9 -0
- package/src/Strategy/Utilities/getExportColumnsViewItems.d.ts +3 -0
- package/src/Strategy/Utilities/getExportColumnsViewItems.js +22 -0
- package/src/Strategy/Utilities/getExportRowsViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getExportRowsViewItems.js +26 -0
- package/src/Strategy/Utilities/getExpressionViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getExpressionViewItems.js +9 -0
- package/src/Strategy/Utilities/getFlashingCellDurationViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getFlashingCellDurationViewItems.js +9 -0
- package/src/Strategy/Utilities/getFlashingCellStyleViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getFlashingCellStyleViewItems.js +10 -0
- package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +15 -0
- package/src/Strategy/Utilities/getRuleViewItems.d.ts +6 -0
- package/src/Strategy/Utilities/getRuleViewItems.js +15 -0
- package/src/Strategy/Utilities/getScopeViewItems.d.ts +3 -0
- package/src/Strategy/Utilities/getScopeViewItems.js +20 -0
- package/src/Strategy/Utilities/getShortcutSettingsViewItems.d.ts +5 -0
- package/src/Strategy/Utilities/getShortcutSettingsViewItems.js +15 -0
- package/src/Strategy/Utilities/getStyleViewItems.d.ts +2 -0
- package/src/Strategy/Utilities/getStyleViewItems.js +15 -0
- package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
- package/src/Utilities/Constants/GeneralConstants.js +2 -1
- package/src/Utilities/Constants/ModuleConstants.d.ts +8 -6
- package/src/Utilities/Constants/ModuleConstants.js +9 -7
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +19 -11
- package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +6 -0
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +35 -0
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +4 -1
- package/src/Utilities/Extensions/ArrayExtensions.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +2 -1
- package/src/Utilities/Helpers/PreviewHelper.js +2 -2
- package/src/Utilities/Helpers/StyleHelper.d.ts +4 -0
- package/src/Utilities/Helpers/StyleHelper.js +4 -1
- package/src/Utilities/Interface/Preview.d.ts +2 -1
- package/src/Utilities/MenuItem.d.ts +1 -1
- package/src/Utilities/MenuItem.js +2 -2
- package/src/Utilities/ObjectFactory.d.ts +7 -8
- package/src/Utilities/ObjectFactory.js +24 -31
- package/src/Utilities/Services/AlertService.d.ts +3 -3
- package/src/Utilities/Services/AlertService.js +11 -17
- package/src/Utilities/Services/EntitlementService.d.ts +1 -0
- package/src/Utilities/Services/EntitlementService.js +8 -0
- package/src/Utilities/Services/Interface/IAlertService.d.ts +3 -7
- package/src/Utilities/Services/Interface/IEntitlementService.d.ts +1 -0
- package/src/Utilities/Services/LicenseService.js +16 -2
- package/src/Utilities/Services/ModuleService.js +6 -6
- package/src/Utilities/Services/TeamSharingService.js +3 -4
- package/src/Utilities/Services/ValidationService.js +1 -1
- package/src/View/AdaptableView.js +3 -3
- package/src/View/AdaptableViewFactory.d.ts +2 -1
- package/src/View/AdaptableViewFactory.js +2 -26
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +16 -16
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +6 -6
- package/src/View/AdaptableWizardView/index.js +1 -1
- package/src/View/Alert/AlertEmptyView.d.ts +5 -0
- package/src/View/Alert/AlertEmptyView.js +16 -0
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.d.ts +2 -1
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +10 -5
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +8 -1
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +6 -7
- package/src/View/Alert/Wizard/AlertRulesWizardSection.js +4 -6
- package/src/View/Alert/Wizard/AlertWizard.js +17 -3
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +4 -2
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +1 -1
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.d.ts +5 -4
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +2 -2
- package/src/View/Alert/Wizard/isValidAlertRules.d.ts +2 -3
- package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
- package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.d.ts +2 -0
- package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.js +17 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +6 -16
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +18 -2
- package/src/View/CellSummary/CellSummaryPopup.js +2 -2
- package/src/View/CellSummary/CellSummaryViewPanel.js +2 -2
- package/src/View/ColorPicker.d.ts +1 -1
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.d.ts +14 -0
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +82 -0
- package/src/View/Components/AdaptableObjectList/index.d.ts +1 -0
- package/src/View/Components/AdaptableObjectList/index.js +5 -0
- package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonDelete.js +3 -2
- package/src/View/Components/Buttons/ButtonEdit.d.ts +1 -3
- package/src/View/Components/Buttons/ButtonEdit.js +4 -6
- package/src/View/Components/Buttons/ButtonShare.js +3 -2
- package/src/View/Components/Buttons/EntityListActionButtons.js +1 -1
- package/src/View/Components/Buttons/{SuspendToggleButton.d.ts → SuspendToggleButton/SuspendToggleButton.d.ts} +5 -3
- package/src/View/Components/Buttons/SuspendToggleButton/SuspendToggleButton.js +19 -0
- package/src/View/Components/Buttons/SuspendToggleButton/index.d.ts +1 -0
- package/src/View/Components/Buttons/SuspendToggleButton/index.js +4 -0
- package/src/View/Components/ExternalRenderer.d.ts +14 -0
- package/src/View/Components/ExternalRenderer.js +32 -0
- package/src/View/Components/FilterForm/FilterForm.js +9 -8
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +1 -1
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +7 -7
- package/src/View/Components/FilterForm/QuickFilterForm.js +5 -2
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
- package/src/View/Components/Panels/FilterFormPanel.d.ts +1 -1
- package/src/View/Components/Panels/PanelWithImage.d.ts +423 -1
- package/src/View/Components/Panels/PanelWithImage.js +2 -2
- package/src/View/Components/Popups/AdaptableChart.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.d.ts +20 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +119 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.d.ts +15 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +35 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +9 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +67 -0
- package/src/View/Components/Popups/AdaptablePopup/CustomSettingsPanelView.d.ts +6 -0
- package/src/View/Components/Popups/AdaptablePopup/CustomSettingsPanelView.js +9 -0
- package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +13 -0
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +63 -0
- package/src/View/Components/Popups/{PopupContext.d.ts → AdaptablePopup/PopupContext.d.ts} +0 -0
- package/src/View/Components/Popups/{PopupContext.js → AdaptablePopup/PopupContext.js} +0 -0
- package/src/View/Components/Popups/AdaptablePopup/PopupPanel.d.ts +10 -0
- package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +22 -0
- package/src/View/Components/Popups/AdaptablePopup/TopBar.d.ts +7 -0
- package/src/View/Components/Popups/AdaptablePopup/TopBar.js +29 -0
- package/src/View/Components/Popups/AdaptablePopup/Utilities.d.ts +15 -0
- package/src/View/Components/Popups/AdaptablePopup/Utilities.js +28 -0
- package/src/View/Components/Popups/AdaptablePopup/index.d.ts +1 -0
- package/src/View/Components/Popups/AdaptablePopup/index.js +5 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.js +22 -9
- package/src/View/Components/Popups/AdaptableToaster.js +6 -6
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -4
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +3 -3
- package/src/View/Components/ValueSelector/index.js +4 -4
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.d.ts +2 -2
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +19 -5
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +4 -5
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +18 -3
- package/src/View/Dashboard/Dashboard.d.ts +0 -1
- package/src/View/Dashboard/Dashboard.js +20 -67
- package/src/View/Dashboard/DashboardPopup.d.ts +6 -2
- package/src/View/Dashboard/DashboardPopup.js +30 -8
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +6 -6
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +8 -8
- package/src/View/DataSource/Wizard/DataSourceSettingsSummary.js +3 -3
- package/src/View/DataSource/Wizard/DataSourceWizard.d.ts +1 -2
- package/src/View/DataSource/Wizard/DataSourceWizard.js +17 -2
- package/src/View/Export/ExportViewPanel.js +6 -6
- package/src/View/Export/ReportExportDropdown.d.ts +5 -0
- package/src/View/Export/ReportExportDropdown.js +37 -0
- package/src/View/Export/Wizard/NewReportWizard.js +15 -2
- package/src/View/Export/Wizard/ReportNameWizardSection.js +2 -1
- package/src/View/Export/Wizard/ReportRowsWizardSection.js +2 -2
- package/src/View/FlashingCell/FlashingCellStyle.d.ts +7 -0
- package/src/View/FlashingCell/FlashingCellStyle.js +20 -0
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertDurationWizardSection.d.ts → FlashingCell/Wizard/FlashingCellDurationWizardSection.d.ts} +4 -4
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertDurationWizardSection.js → FlashingCell/Wizard/FlashingCellDurationWizardSection.js} +6 -6
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertRulesWizardSection.d.ts → FlashingCell/Wizard/FlashingCellRulesWizardSection.d.ts} +3 -3
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertRulesWizardSection.js → FlashingCell/Wizard/FlashingCellRulesWizardSection.js} +10 -10
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertScopeWizardSection.d.ts → FlashingCell/Wizard/FlashingCellScopeWizardSection.d.ts} +1 -2
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertScopeWizardSection.js → FlashingCell/Wizard/FlashingCellScopeWizardSection.js} +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.d.ts +15 -0
- package/src/View/{Alert/Wizard/FlashingAlertWizard/FlashingAlertStyleWizardSection.js → FlashingCell/Wizard/FlashingCellStyleWizardSection.js} +17 -16
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.d.ts +6 -0
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +99 -0
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.d.ts +3 -0
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +30 -0
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +1 -0
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +18 -14
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +4 -4
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +17 -2
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.d.ts +1 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +7 -7
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +18 -5
- package/src/View/GridInfo/AdaptableOptionsComponent.js +2 -2
- package/src/View/GridInfo/GridInfoPopup.d.ts +2 -1
- package/src/View/GridInfo/GridInfoPopup.js +21 -16
- package/src/View/GridInfo/GridOptionsComponent.js +2 -2
- package/src/View/Layout/LayoutPopup.js +4 -6
- package/src/View/Layout/LayoutViewPanel.js +2 -2
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +3 -1
- package/src/View/Layout/Wizard/LayoutEditor/index.js +5 -2
- package/src/View/License/LicenseWatermark.js +4 -0
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +2 -2
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.d.ts +1 -2
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +18 -4
- package/src/View/Query/QueryViewPanel.js +1 -1
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +2 -2
- package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +2 -2
- package/src/View/Query/Wizard/NamedQueryWizard.js +14 -2
- package/src/View/QuickSearch/QuickSearchPopup.js +2 -2
- package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -3
- package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +2 -2
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +7 -8
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +9 -9
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.d.ts +5 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +59 -48
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +9 -9
- package/src/View/Schedule/Wizard/ScheduleWizard.d.ts +1 -2
- package/src/View/Schedule/Wizard/ScheduleWizard.js +75 -2
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +6 -6
- package/src/View/Shortcut/Wizard/ShortcutWizard.d.ts +1 -2
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +31 -4
- package/src/View/SmartEdit/SmartEditPopup.js +3 -3
- package/src/View/StateManagement/StateManagementPopup.d.ts +2 -12
- package/src/View/StateManagement/StateManagementPopup.js +23 -115
- package/src/View/StateManagement/StateManagementViewPanel.d.ts +5 -0
- package/src/View/StateManagement/StateManagementViewPanel.js +22 -0
- package/src/View/StateManagement/components/ClearButton.d.ts +6 -0
- package/src/View/StateManagement/components/ClearButton.js +9 -0
- package/src/View/StateManagement/components/ExportDropdown.d.ts +8 -0
- package/src/View/StateManagement/components/ExportDropdown.js +43 -0
- package/src/View/StateManagement/components/LoadButton.d.ts +7 -0
- package/src/View/StateManagement/components/LoadButton.js +38 -0
- package/src/View/StateManagement/handleExportState.d.ts +1 -0
- package/src/View/StateManagement/handleExportState.js +22 -0
- package/src/View/SystemStatus/SystemStatusPopup.js +3 -3
- package/src/View/TeamSharing/TeamSharingPopup.js +2 -2
- package/src/View/Theme/ThemePopup.js +5 -7
- package/src/View/Theme/ThemeViewPanel.js +1 -1
- package/src/View/UIHelper.d.ts +3 -1
- package/src/View/UIHelper.js +35 -16
- package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +5 -0
- package/src/View/Wizard/OnePageAdaptableWizard.d.ts +2 -0
- package/src/View/Wizard/OnePageAdaptableWizard.js +10 -2
- package/src/agGrid/Adaptable.d.ts +24 -15
- package/src/agGrid/Adaptable.js +293 -132
- package/src/agGrid/agGridHelper.d.ts +5 -4
- package/src/agGrid/agGridHelper.js +26 -15
- package/src/agGrid/agGridMenuHelper.d.ts +15 -13
- package/src/agGrid/agGridMenuHelper.js +53 -45
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +1 -1
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +11 -6
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +3 -2
- package/src/agGrid/editors/AdaptableDateEditor/index.js +16 -6
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +1 -0
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +7 -2
- package/src/components/ApplicationIcon.d.ts +5 -0
- package/src/components/ApplicationIcon.js +13 -0
- package/src/components/Dashboard/DashboardManager.js +1 -1
- package/src/components/Datepicker/Caption.d.ts +1 -1
- package/src/components/Datepicker/Caption.js +1 -4
- package/src/components/Datepicker/CaptionLabel.d.ts +1 -1
- package/src/components/Datepicker/CaptionLabel.js +1 -4
- package/src/components/Datepicker/DatepickerContext.d.ts +2 -2
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/Datepicker/index.js +10 -9
- package/src/components/Dialog/index.d.ts +4 -1
- package/src/components/Dialog/index.js +10 -3
- package/src/components/DropdownButton/index.d.ts +1 -0
- package/src/components/DropdownButton/index.js +2 -2
- package/src/components/EllipsisContainer/index.js +1 -1
- package/src/components/EmptyContent/index.js +2 -1
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- package/src/components/Modal/index.d.ts +1 -1
- package/src/components/OverlayTrigger/index.js +3 -3
- package/src/components/OverlayTrigger/useAgGridClassName.d.ts +2 -0
- package/src/components/OverlayTrigger/{useVendorClassName.js → useAgGridClassName.js} +3 -3
- package/src/components/PopupWithFooter.d.ts +1 -1
- package/src/components/PopupWithFooter.js +2 -7
- package/src/components/ProgressIndicator/ProgressIndicator.js +1 -1
- package/src/components/StylePreview.d.ts +8 -0
- package/src/components/StylePreview.js +11 -0
- package/src/components/Tag/Tag.d.ts +3 -0
- package/src/components/Tag/Tag.js +11 -0
- package/src/components/Tag/index.d.ts +1 -0
- package/src/components/Tag/index.js +5 -0
- package/src/components/Textarea/index.d.ts +1 -1
- package/src/components/ToggleButton/index.d.ts +1 -0
- package/src/components/ToggleButton/index.js +8 -4
- package/src/components/WindowModal/WindowModal.d.ts +23 -0
- package/src/components/WindowModal/WindowModal.js +87 -0
- package/src/components/WindowModal/index.d.ts +1 -0
- package/src/components/WindowModal/index.js +4 -0
- package/src/components/icons/index.js +6 -0
- package/src/components/icons/menu.d.ts +3 -0
- package/src/components/icons/menu.js +7 -0
- package/src/components/icons/state-management.js +1 -1
- package/src/components/icons/tool-panel.d.ts +3 -0
- package/src/components/icons/tool-panel.js +7 -0
- package/src/components/icons/upload.d.ts +3 -0
- package/src/components/icons/upload.js +8 -0
- package/src/components/utils/useDraggable.d.ts +3 -1
- package/src/components/utils/useDraggable.js +14 -2
- package/src/metamodel/adaptable.metamodel.d.ts +112 -78
- package/src/metamodel/adaptable.metamodel.js +477 -458
- package/src/types.d.ts +10 -8
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/Api/Events/FlashingAlertFired.d.ts +0 -11
- package/src/PredefinedConfig/DeprecatedState.d.ts +0 -82
- package/src/PredefinedConfig/DeprecatedState.js +0 -5
- package/src/View/Alert/AlertPopup.d.ts +0 -42
- package/src/View/Alert/AlertPopup.js +0 -205
- package/src/View/Alert/FlashingAlertEntityRow.d.ts +0 -7
- package/src/View/Alert/FlashingAlertEntityRow.js +0 -22
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertStyleWizardSection.d.ts +0 -10
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertWizard.d.ts +0 -6
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertWizard.js +0 -89
- package/src/View/CalculatedColumn/CalculatedColumnEntityRow.d.ts +0 -9
- package/src/View/CalculatedColumn/CalculatedColumnEntityRow.js +0 -28
- package/src/View/CalculatedColumn/CalculatedColumnPopup.d.ts +0 -25
- package/src/View/CalculatedColumn/CalculatedColumnPopup.js +0 -117
- package/src/View/Components/Buttons/SuspendToggleButton.js +0 -17
- package/src/View/Components/Popups/AdaptablePopup.d.ts +0 -23
- package/src/View/Components/Popups/AdaptablePopup.js +0 -59
- package/src/View/ConditionalStyle/ConditionalStyleEntityRow.d.ts +0 -5
- package/src/View/ConditionalStyle/ConditionalStyleEntityRow.js +0 -26
- package/src/View/ConditionalStyle/ConditionalStylePopup.d.ts +0 -30
- package/src/View/ConditionalStyle/ConditionalStylePopup.js +0 -144
- package/src/View/CustomSort/CustomSortEntityRow.d.ts +0 -10
- package/src/View/CustomSort/CustomSortEntityRow.js +0 -32
- package/src/View/CustomSort/CustomSortPopup.d.ts +0 -27
- package/src/View/CustomSort/CustomSortPopup.js +0 -138
- package/src/View/DataSource/DataSourceEntityRow.d.ts +0 -12
- package/src/View/DataSource/DataSourceEntityRow.js +0 -29
- package/src/View/DataSource/DataSourcePopup.d.ts +0 -28
- package/src/View/DataSource/DataSourcePopup.js +0 -97
- package/src/View/Export/ExportPopup.d.ts +0 -34
- package/src/View/Export/ExportPopup.js +0 -139
- package/src/View/Export/ReportEntityRow.d.ts +0 -10
- package/src/View/Export/ReportEntityRow.js +0 -49
- package/src/View/Export/Wizard/ReportWizard.d.ts +0 -7
- package/src/View/Export/Wizard/ReportWizard.js +0 -50
- package/src/View/Filter/FilterEntityRow.d.ts +0 -12
- package/src/View/Filter/FilterEntityRow.js +0 -20
- package/src/View/Filter/FilterPopup.d.ts +0 -20
- package/src/View/Filter/FilterPopup.js +0 -50
- package/src/View/FormatColumn/FormatColumnEntityRow.d.ts +0 -9
- package/src/View/FormatColumn/FormatColumnEntityRow.js +0 -103
- package/src/View/FormatColumn/FormatColumnPopup.d.ts +0 -27
- package/src/View/FormatColumn/FormatColumnPopup.js +0 -133
- package/src/View/FreeTextColumn/FreeTextColumnEntityRow.d.ts +0 -5
- package/src/View/FreeTextColumn/FreeTextColumnEntityRow.js +0 -31
- package/src/View/FreeTextColumn/FreeTextColumnPopup.d.ts +0 -25
- package/src/View/FreeTextColumn/FreeTextColumnPopup.js +0 -118
- package/src/View/PlusMinus/PlusMinusEntityRow.d.ts +0 -9
- package/src/View/PlusMinus/PlusMinusEntityRow.js +0 -24
- package/src/View/PlusMinus/PlusMinusPopup.d.ts +0 -30
- package/src/View/PlusMinus/PlusMinusPopup.js +0 -124
- package/src/View/Query/NamedQueryEntityRow.d.ts +0 -8
- package/src/View/Query/NamedQueryEntityRow.js +0 -21
- package/src/View/Query/QueryPopup.d.ts +0 -28
- package/src/View/Query/QueryPopup.js +0 -114
- package/src/View/Schedule/ScheduleEntityRow.d.ts +0 -5
- package/src/View/Schedule/ScheduleEntityRow.js +0 -58
- package/src/View/Schedule/SchedulePopup.d.ts +0 -58
- package/src/View/Schedule/SchedulePopup.js +0 -317
- package/src/View/Shortcut/ShortcutEntityRow.d.ts +0 -17
- package/src/View/Shortcut/ShortcutEntityRow.js +0 -47
- package/src/View/Shortcut/ShortcutPopup.d.ts +0 -30
- package/src/View/Shortcut/ShortcutPopup.js +0 -121
- package/src/bundle-dependencies/bundles/react-day-picker/DayPicker.d.ts +0 -88
- package/src/bundle-dependencies/bundles/react-day-picker/DayPicker.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/Button.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/Button.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/ButtonProps.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/Caption.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/Caption.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/CaptionProps.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabel.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabel.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabelProps.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/Day.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/Day.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/DayProps.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/useDay.d.ts +0 -51
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/useDayFocus.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/index.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContent.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContent.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContentProps.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/Dropdown.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/Dropdown.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/DropdownProps.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/Footer.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/Footer.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/Head.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/Head.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/getWeekdays.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/getWeekdays.test.d.ts +0 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/IconDropdown.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/IconDropdown.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/IconNext.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/IconNext.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/IconPrevious.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/IconPrevious.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/MonthsDropdown.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/MonthsDropdownProps.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/Navigation.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/NavigationProps.d.ts +0 -18
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Root/Root.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/Root/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/Row.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/RowProps.d.ts +0 -11
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/Table.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getOutsideEndDays.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getOutsideStartDays.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getWeeks.d.ts +0 -15
- package/src/bundle-dependencies/bundles/react-day-picker/components/WeekNumber/WeekNumber.d.ts +0 -15
- package/src/bundle-dependencies/bundles/react-day-picker/components/WeekNumber/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/YearsDropdown/YearsDropdown.d.ts +0 -16
- package/src/bundle-dependencies/bundles/react-day-picker/components/YearsDropdown/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/components/index.d.ts +0 -18
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/ContextProvider.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerContext.d.ts +0 -78
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerContextValue.d.ts +0 -20
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerProvider.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/defaultClassNames.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatCaption.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatDay.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatMonthCaption.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatWeekNumber.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatWeekdayName.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatYearCaption.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/index.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/index.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelDay.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelMonthDropdown.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelNext.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelPrevious.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelWeekNumber.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelWeekday.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelYearDropdown.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/useDayPicker.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/parseFromToProps.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/parseModifierProps.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusContext.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusContextValue.d.ts +0 -19
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusProvider.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/index.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/useFocus.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationContext.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationContextValue.d.ts +0 -13
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationProvider.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/index.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/useNavigation.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/useNavigationState.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getDisplayMonths.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getInitialMonth.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getInitialMonth.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getNextMonth.d.ts +0 -18
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getNextMonth.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getPreviousMonth.d.ts +0 -19
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getPreviousMonth.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleContext.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleContextValue.d.ts +0 -13
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleModifiers.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleProvider.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/useSelectMultiple.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeContext.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeContextValue.d.ts +0 -13
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeModifiers.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeProvider.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/useSelectRange.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/utils/addToRange.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleContext.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleContextValue.d.ts +0 -11
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleModifiers.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleProvider.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/useSelectSingle.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/index.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInput.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputDayPickerProps.d.ts +0 -14
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputFieldProps.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputOptions.d.ts +0 -35
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/index.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/useInput.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/utils/isValidDate.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/types/UseModifiers.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/types/index.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/useModifiers.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/getModifierStatus.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/isDateInRange.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/isMatch.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/index.js +0 -1
- package/src/bundle-dependencies/bundles/react-day-picker/types/CaptionLayout.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/ClassNames.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/Components.d.ts +0 -33
- package/src/bundle-dependencies/bundles/react-day-picker/types/CustomModifiers.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateAfter.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateBefore.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateFormatter.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateInterval.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateRange.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayClickEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayFocusEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayKeyboardEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayLabelFormatter.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayMouseEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayOfWeekMatcher.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerBase.d.ts +0 -239
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerMultiple.d.ts +0 -15
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerProps.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerRange.d.ts +0 -16
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerSingle.d.ts +0 -13
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerUncontrolled.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayTouchEventHandler.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/Formatters.d.ts +0 -19
- package/src/bundle-dependencies/bundles/react-day-picker/types/InternalModifier.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/types/Labels.d.ts +0 -17
- package/src/bundle-dependencies/bundles/react-day-picker/types/Matcher.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/types/Modifier.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierClassNames.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierStatus.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierStyles.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/Modifiers.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/MonthChangeEventHandler.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/NavButtonLabelFormatter.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectMultipleEventHandler.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectRangeEventHandler.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectSingleEventHandler.d.ts +0 -12
- package/src/bundle-dependencies/bundles/react-day-picker/types/StyledComponentProps.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-day-picker/types/StyledElement.d.ts +0 -76
- package/src/bundle-dependencies/bundles/react-day-picker/types/Styles.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberClickEventHandler.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberFormatter.d.ts +0 -6
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberLabelFormatter.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekdayLabelFormatter.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/index.d.ts +0 -54
- package/src/bundle-dependencies/bundles/react-day-picker/types/isArrayOfDates.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateAfterType.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateBeforeType.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateInterval.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateRange.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateType.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayOfWeekType.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerMultiple.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerRange.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerSingle.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerUncontrolled.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-toastify/components/CloseButton.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-toastify/components/ProgressBar.d.ts +0 -55
- package/src/bundle-dependencies/bundles/react-toastify/components/Toast.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-toastify/components/ToastContainer.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-toastify/components/Transitions.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-toastify/components/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-toastify/core/eventManager.d.ts +0 -39
- package/src/bundle-dependencies/bundles/react-toastify/core/index.d.ts +0 -2
- package/src/bundle-dependencies/bundles/react-toastify/core/toast.d.ts +0 -55
- package/src/bundle-dependencies/bundles/react-toastify/hooks/index.d.ts +0 -3
- package/src/bundle-dependencies/bundles/react-toastify/hooks/toastContainerReducer.d.ts +0 -15
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useKeeper.d.ts +0 -7
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useToast.d.ts +0 -10
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useToastContainer.d.ts +0 -16
- package/src/bundle-dependencies/bundles/react-toastify/index.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-toastify/index.js +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/inject-style.d.ts +0 -8
- package/src/bundle-dependencies/bundles/react-toastify/test/components/CloseButton.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/components/ProgressBar.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/components/Toast.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/components/ToastContainer.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/core/eventManager.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/core/toast.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/helpers.d.ts +0 -9
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/collapseToast.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/cssTransition.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/propValidator.test.d.ts +0 -1
- package/src/bundle-dependencies/bundles/react-toastify/types/index.d.ts +0 -240
- package/src/bundle-dependencies/bundles/react-toastify/utils/collapseToast.d.ts +0 -5
- package/src/bundle-dependencies/bundles/react-toastify/utils/constant.d.ts +0 -20
- package/src/bundle-dependencies/bundles/react-toastify/utils/cssTransition.d.ts +0 -42
- package/src/bundle-dependencies/bundles/react-toastify/utils/index.d.ts +0 -4
- package/src/bundle-dependencies/bundles/react-toastify/utils/propValidator.d.ts +0 -10
- package/src/components/OverlayTrigger/useVendorClassName.d.ts +0 -2
- package/src/components/Toastify/index.d.ts +0 -3
- package/src/components/Toastify/index.js +0 -10
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
|
|
|
@@ -2218,8 +2407,8 @@ template {
|
|
|
2218
2407
|
|
|
2219
2408
|
.ab-Dialog__close-button {
|
|
2220
2409
|
position: absolute;
|
|
2221
|
-
right:
|
|
2222
|
-
top:
|
|
2410
|
+
right: 6px;
|
|
2411
|
+
top: 6px;
|
|
2223
2412
|
font-size: var(--ab-font-size-3);
|
|
2224
2413
|
font-weight: 700;
|
|
2225
2414
|
line-height: 1;
|
|
@@ -2457,6 +2646,9 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2457
2646
|
z-index: 1000;
|
|
2458
2647
|
font-family: var(--ab__font-family); }
|
|
2459
2648
|
|
|
2649
|
+
.ab-Modal.ab-Modal--resizable-and-movable {
|
|
2650
|
+
position: relative; }
|
|
2651
|
+
|
|
2460
2652
|
.ab-Modal-backdrop {
|
|
2461
2653
|
background: var(--ab-cmp-modal-backdrop__background);
|
|
2462
2654
|
z-index: 900;
|
|
@@ -2542,6 +2734,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2542
2734
|
display: flex;
|
|
2543
2735
|
flex-flow: column;
|
|
2544
2736
|
max-height: var(--ab-cmp-panel__max-height);
|
|
2737
|
+
overflow: auto;
|
|
2545
2738
|
font-size: var(--ab-cmp-panel__font-size); }
|
|
2546
2739
|
|
|
2547
2740
|
.ab-Panel .glyphicon {
|
|
@@ -2932,9 +3125,15 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2932
3125
|
.ab-Dashboard .ab-Input {
|
|
2933
3126
|
border: none; }
|
|
2934
3127
|
|
|
3128
|
+
.ab-Dashboard .ab-DashboardToolbar__Export__wrap {
|
|
3129
|
+
white-space: nowrap; }
|
|
3130
|
+
|
|
2935
3131
|
.ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
|
|
2936
3132
|
padding: var(--ab-space-1); }
|
|
2937
3133
|
|
|
3134
|
+
.ab-Dashboard .ab-StateManagement__Clear-Button, .ab-Dashboard .ab-StateManagement__Load-Button, .ab-Dashboard .ab-StateManagement__Export-Dropdown {
|
|
3135
|
+
margin-left: var(--ab-space-1); }
|
|
3136
|
+
|
|
2938
3137
|
.ab-GridList {
|
|
2939
3138
|
--at-grid__background: transparent; }
|
|
2940
3139
|
|
|
@@ -3019,57 +3218,70 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3019
3218
|
|
|
3020
3219
|
:root {
|
|
3021
3220
|
--ab-cmp-toggle-button__background: #ccc;
|
|
3022
|
-
--ab-cmp-toggle-button--active__background: var(--ab-color-success);
|
|
3221
|
+
--ab-cmp-toggle-button--active__background: var(--ab-color-success);
|
|
3222
|
+
--ab-cmp-toggle-button__font-size: var(--ab-font-size-1);
|
|
3223
|
+
--ab-cmp-toggle-button__color: var(--ab-color-text-on-primary);
|
|
3224
|
+
--ab-cmp-toggle-button--checked__color: var(--ab-color-accentlight); }
|
|
3023
3225
|
|
|
3024
3226
|
.ab-ToggleButton {
|
|
3025
3227
|
position: relative;
|
|
3026
3228
|
display: inline-block;
|
|
3027
3229
|
min-width: 40px;
|
|
3028
|
-
width:
|
|
3029
|
-
height:
|
|
3230
|
+
width: 87px;
|
|
3231
|
+
height: 32px; }
|
|
3030
3232
|
|
|
3031
3233
|
.ab-ToggleButton:hover:not(.ab-ToggleButton--disabled) {
|
|
3032
3234
|
cursor: pointer;
|
|
3033
3235
|
opacity: 0.85; }
|
|
3034
3236
|
|
|
3035
3237
|
.ab-ToggleButton__input {
|
|
3036
|
-
|
|
3037
|
-
|
|
3038
|
-
|
|
3238
|
+
opacity: 0;
|
|
3239
|
+
width: 0;
|
|
3240
|
+
height: 0; }
|
|
3039
3241
|
|
|
3040
3242
|
.ab-ToggleButton__slider {
|
|
3041
|
-
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
|
|
3048
|
-
|
|
3243
|
+
position: absolute;
|
|
3244
|
+
top: 0;
|
|
3245
|
+
left: 0;
|
|
3246
|
+
right: 0;
|
|
3247
|
+
bottom: 0;
|
|
3248
|
+
background-color: var(--ab-cmp-toggle-button__background);
|
|
3249
|
+
transition: 0.1s;
|
|
3250
|
+
border-radius: var(--ab__border-radius); }
|
|
3049
3251
|
|
|
3050
3252
|
.ab-ToggleButton__slider:before {
|
|
3051
|
-
|
|
3052
|
-
|
|
3053
|
-
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3057
|
-
|
|
3058
|
-
|
|
3059
|
-
|
|
3060
|
-
|
|
3253
|
+
position: absolute;
|
|
3254
|
+
content: "";
|
|
3255
|
+
width: 24px;
|
|
3256
|
+
height: 24px;
|
|
3257
|
+
left: 4px;
|
|
3258
|
+
top: 4px;
|
|
3259
|
+
border-radius: var(--ab__border-radius);
|
|
3260
|
+
background-color: #fff;
|
|
3261
|
+
-webkit-transition: 0.4s;
|
|
3262
|
+
transition: 0.2s; }
|
|
3061
3263
|
|
|
3062
3264
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider {
|
|
3063
|
-
|
|
3265
|
+
background-color: var(--ab-cmp-toggle-button--active__background); }
|
|
3064
3266
|
|
|
3065
3267
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider:before {
|
|
3066
|
-
|
|
3268
|
+
transform: translateX(54px); }
|
|
3067
3269
|
|
|
3068
3270
|
.ab-ToggleButton__input:focus + .ab-ToggleButton__slider {
|
|
3069
|
-
|
|
3271
|
+
box-shadow: var(--ab-focus__box-shadow); }
|
|
3070
3272
|
|
|
3071
3273
|
.ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
|
|
3072
|
-
|
|
3274
|
+
opacity: 0.5; }
|
|
3275
|
+
|
|
3276
|
+
.ab-ToggleButton .ab-ToggleButton__text {
|
|
3277
|
+
font-size: var(--ab-cmp-toggle-button__font-size);
|
|
3278
|
+
padding-right: var(--ab-space-2);
|
|
3279
|
+
color: var(--ab-cmp-toggle-button__color);
|
|
3280
|
+
font-weight: 600; }
|
|
3281
|
+
|
|
3282
|
+
.ab-ToggleButton--checked .ab-ToggleButton__text {
|
|
3283
|
+
padding-left: var(--ab-space-2);
|
|
3284
|
+
color: var(--ab-cmp-toggle-button--checked__color); }
|
|
3073
3285
|
|
|
3074
3286
|
.ab-Loader {
|
|
3075
3287
|
font-size: var(--ab-cmp-loader__font-size);
|
|
@@ -3128,6 +3340,25 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3128
3340
|
font-style: var(--ab-cmp-progress-indicator__font-style);
|
|
3129
3341
|
font-family: var(--ab-cmp-progress-indicator__font-family); }
|
|
3130
3342
|
|
|
3343
|
+
:root {
|
|
3344
|
+
--ab-cmp-Tag__font-size: var(--ab-font-size-3); }
|
|
3345
|
+
|
|
3346
|
+
.ab-Tag {
|
|
3347
|
+
display: inline-flex;
|
|
3348
|
+
font-size: var(--ab-cmp-Tag__font-size); }
|
|
3349
|
+
|
|
3350
|
+
.ab-AdaptableOptions {
|
|
3351
|
+
background: var(--ab-cmp-adaptable-options__background-color); }
|
|
3352
|
+
|
|
3353
|
+
.ab-GridOptions {
|
|
3354
|
+
background: var(--ab-cmp-grid-options__background-color); }
|
|
3355
|
+
|
|
3356
|
+
.ab-GridSummary {
|
|
3357
|
+
background: var(--ab-cmp-grid-summary__background-color); }
|
|
3358
|
+
|
|
3359
|
+
.ab-SystemStatus-Popup-List {
|
|
3360
|
+
background: var(--ab-cmp-system-status-list__background-color); }
|
|
3361
|
+
|
|
3131
3362
|
.ab-ObjectCollection__list > * {
|
|
3132
3363
|
background: var(--ab-cmp-listgroupitem__background);
|
|
3133
3364
|
color: var(--ab-cmp-listgroupitem__color); }
|
|
@@ -3157,19 +3388,19 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3157
3388
|
.ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
|
|
3158
3389
|
overflow-x: hidden; }
|
|
3159
3390
|
|
|
3160
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
3161
|
-
.ag-theme-balham .ab-ListBoxFilterForm--
|
|
3391
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style,
|
|
3392
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style {
|
|
3162
3393
|
--ab-cmp-dropdown__border-radius: 0;
|
|
3163
3394
|
--ab-cmp-input__border-radius: 0;
|
|
3164
3395
|
--ab-cmp-input__padding: 0;
|
|
3165
3396
|
--ab-cmp-dropdown__padding: 3px;
|
|
3166
3397
|
--ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent); }
|
|
3167
3398
|
|
|
3168
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
3169
|
-
.ag-theme-balham .ab-ListBoxFilterForm--
|
|
3399
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap,
|
|
3400
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap {
|
|
3170
3401
|
border-radius: 0; }
|
|
3171
3402
|
|
|
3172
|
-
html.ab--theme-dark .ab-ListBoxFilterForm--
|
|
3403
|
+
html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
3173
3404
|
--ab-color-inputborder: white;
|
|
3174
3405
|
--ab-cmp-dropdown__border: 1px solid white; }
|
|
3175
3406
|
|
|
@@ -3248,8 +3479,12 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
3248
3479
|
.ab-Dashboard__application-icon {
|
|
3249
3480
|
margin-right: var(--ab-space-2); }
|
|
3250
3481
|
|
|
3482
|
+
.ab-Dashboard-Popup__Module-Selector {
|
|
3483
|
+
background: var(--ab-cmp-dashboard-module-selector-background); }
|
|
3484
|
+
|
|
3251
3485
|
.ab-ToolPanel {
|
|
3252
|
-
|
|
3486
|
+
flex: 1 1 0;
|
|
3487
|
+
min-width: 0;
|
|
3253
3488
|
color: var(--ab-cmp-toolpanel__color);
|
|
3254
3489
|
font-family: var(--ab-cmp-toolpanel__font-family); }
|
|
3255
3490
|
|
|
@@ -3266,9 +3501,134 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
3266
3501
|
flex-wrap: wrap;
|
|
3267
3502
|
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
|
|
3268
3503
|
|
|
3504
|
+
.ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button {
|
|
3505
|
+
justify-content: center;
|
|
3506
|
+
flex: 1; }
|
|
3507
|
+
|
|
3508
|
+
.ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button, .ab-ToolPanel .ab-StateManagement__Export-Dropdown {
|
|
3509
|
+
margin-bottom: var(--ab-space-1); }
|
|
3510
|
+
|
|
3269
3511
|
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
3270
3512
|
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
|
|
3271
3513
|
|
|
3514
|
+
.ab-Adaptable-Popup {
|
|
3515
|
+
background: var(--ab-cmp-adaptable-popup__background);
|
|
3516
|
+
max-height: var(--ab-cmp-adaptable-popup__max-height); }
|
|
3517
|
+
|
|
3518
|
+
.ab-Adaptable-Popup__Navigation {
|
|
3519
|
+
padding-top: 10px;
|
|
3520
|
+
overflow: auto;
|
|
3521
|
+
border-right: var(--ab-cmp-adaptable-popup-navigation-list__border-right);
|
|
3522
|
+
font-family: var(--ab__font-family); }
|
|
3523
|
+
|
|
3524
|
+
.ab-Adaptable-Popup__Navigation__List {
|
|
3525
|
+
list-style: none;
|
|
3526
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list__padding);
|
|
3527
|
+
margin: 0;
|
|
3528
|
+
font-size: var(--ab-cmp-adaptable-popup-navigation-list__font-size); }
|
|
3529
|
+
|
|
3530
|
+
.ab-Adaptable-Popup__Navigation__List__Item {
|
|
3531
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item__padding);
|
|
3532
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom); }
|
|
3533
|
+
|
|
3534
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Separator {
|
|
3535
|
+
border-bottom: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__border);
|
|
3536
|
+
margin: var(--ab-cmp-adaptable-popup-navigation-list-item-separator__margin); }
|
|
3537
|
+
|
|
3538
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
3539
|
+
background: none;
|
|
3540
|
+
border: none;
|
|
3541
|
+
width: 100%;
|
|
3542
|
+
text-align: left;
|
|
3543
|
+
cursor: pointer;
|
|
3544
|
+
padding: var(--ab-cmp-adaptable-popup-navigation-list-item-button__padding);
|
|
3545
|
+
border-radius: var(--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius);
|
|
3546
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__color); }
|
|
3547
|
+
|
|
3548
|
+
.ab-Adaptable-Popup__Navigation__List__Item__Icon {
|
|
3549
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right); }
|
|
3550
|
+
|
|
3551
|
+
.ab-Adaptable-Popup__Navigation__List__Item--active .ab-Adaptable-Popup__Navigation__List__Item__Button {
|
|
3552
|
+
background: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--active);
|
|
3553
|
+
color: var(--ab-cmp-adaptable-popup-navigation-list-item-button__background--color); }
|
|
3554
|
+
|
|
3555
|
+
.ab-Adaptable-Popup__TopBar {
|
|
3556
|
+
display: flex;
|
|
3557
|
+
align-items: center;
|
|
3558
|
+
background: var(--ab-cmp-adaptable-popup-topbar__background);
|
|
3559
|
+
height: var(--ab-cmp-adaptable-popup-topbar__height);
|
|
3560
|
+
color: var(--ab-cmp-adaptable-popup-topbar__color);
|
|
3561
|
+
font-weight: var(--ab-cmp-adaptable-popup-topbar__font-weight);
|
|
3562
|
+
padding: var(--ab-cmp-adaptable-popup-topbar__padding);
|
|
3563
|
+
box-sizing: border-box; }
|
|
3564
|
+
|
|
3565
|
+
.ab-Adaptable-Popup__TopBar__Icon {
|
|
3566
|
+
margin-right: var(--ab-cmp-adaptable-popup-topbar-icon__margin-right); }
|
|
3567
|
+
|
|
3568
|
+
.ab-Adaptable-Popup__TopBar__Close .ab-Icon {
|
|
3569
|
+
color: var(--ab-cmp-adaptable-popup-topbar-icon__color); }
|
|
3570
|
+
|
|
3571
|
+
.ab-Adaptable-Popup--settings-popup {
|
|
3572
|
+
height: var(--ab-cmp-adaptable-popup--settings__height); }
|
|
3573
|
+
|
|
3574
|
+
.ab-Adaptable-Popup--settings-popup .ab-Dialog__close-button {
|
|
3575
|
+
top: 9px; }
|
|
3576
|
+
|
|
3577
|
+
.ab-Adaptable-Popup--settings-popup .ab-Adaptable-Popup__Body {
|
|
3578
|
+
padding: var(--ab-cmp-adaptable-popup--settings__padding);
|
|
3579
|
+
min-width: 0; }
|
|
3580
|
+
|
|
3581
|
+
.ab-Adaptable-Popup__Panel__Header {
|
|
3582
|
+
display: flex;
|
|
3583
|
+
padding: 0 var(--ab-cmp-adaptable-popup-panel__padding);
|
|
3584
|
+
margin-bottom: var(--ab-cmp-adaptable-popup-panel__margin-bottom);
|
|
3585
|
+
margin-top: var(--ab-cmp-adaptable-popup-panel__margin-top); }
|
|
3586
|
+
|
|
3587
|
+
.ab-Adaptable-Popup__Panel__Header__Title {
|
|
3588
|
+
font-size: var(--ab-cmp-adaptable-popup-panel-title__font-size); }
|
|
3589
|
+
|
|
3590
|
+
.ab-Adaptable-Popup__Panel__Body {
|
|
3591
|
+
padding: var(--ab-cmp-adaptable-popup-panel-body__padding);
|
|
3592
|
+
flex: 1 1 0;
|
|
3593
|
+
min-height: 0;
|
|
3594
|
+
overflow: auto; }
|
|
3595
|
+
|
|
3596
|
+
.ab-Adaptable-Popup--window .ab-Adaptable-Popup__TopBar {
|
|
3597
|
+
cursor: move; }
|
|
3598
|
+
|
|
3599
|
+
.ab-Adaptable-Popup--window.ab-Adaptable-Popup--action-popup .ab-Panel__header {
|
|
3600
|
+
cursor: move; }
|
|
3601
|
+
|
|
3602
|
+
.ab-Adaptable-Object-List {
|
|
3603
|
+
list-style: none;
|
|
3604
|
+
padding: 0; }
|
|
3605
|
+
|
|
3606
|
+
.ab-Adaptable-Object-List .ab-Tag {
|
|
3607
|
+
margin-right: var(--ab-cmp-adaptable-object-list-tag__margin-right);
|
|
3608
|
+
margin-top: var(--ab-cmp-adaptable-object-list-tag__margin-top);
|
|
3609
|
+
padding: var(--ab-cmp-adaptable-object-list-item-tag__padding); }
|
|
3610
|
+
|
|
3611
|
+
.ab-Adaptable-Object-List__Item {
|
|
3612
|
+
background-color: var(--ab-cmp-adaptable-object-list-item__background-color);
|
|
3613
|
+
padding: var(--ab-cmp-adaptable-object-list-item__padding);
|
|
3614
|
+
margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom); }
|
|
3615
|
+
|
|
3616
|
+
.ab-Adaptable-Object-List__Item__edit-property {
|
|
3617
|
+
visibility: hidden; }
|
|
3618
|
+
|
|
3619
|
+
.ab-Adaptable-Object-List__Item__buttons {
|
|
3620
|
+
padding-left: var(--ab-space-2);
|
|
3621
|
+
min-width: 80px;
|
|
3622
|
+
text-align: right;
|
|
3623
|
+
margin-left: var(--ab-space-3); }
|
|
3624
|
+
|
|
3625
|
+
.ab-Adaptable-Object-List__Item__label {
|
|
3626
|
+
padding-top: var(--ab-cmp-adaptable-object-list-item-label__padding-top);
|
|
3627
|
+
width: var(--ab-cmp-adaptable-object-list-item-label__width); }
|
|
3628
|
+
|
|
3629
|
+
.ab-Adaptable-Object-List__Item__label:hover .ab-Adaptable-Object-List__Item__edit-property {
|
|
3630
|
+
visibility: visible; }
|
|
3631
|
+
|
|
3272
3632
|
.ab-alert--error {
|
|
3273
3633
|
background: var(--ab-color-error); }
|
|
3274
3634
|
|