@adaptabletools/adaptable 10.0.2 → 10.0.4-canary.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +1 -1
- package/README.md +1 -1
- package/base.css +84 -32
- package/bundle.cjs.js +350 -0
- package/index.css +100 -34
- package/package.json +1 -5
- 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 +24 -12
- package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -3
- package/src/AdaptableOptions/ContainerOptions.d.ts +4 -5
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
- package/src/AdaptableOptions/DateInputOptions.d.ts +5 -1
- package/src/AdaptableOptions/EditOptions.d.ts +2 -3
- package/src/AdaptableOptions/FilterOptions.d.ts +22 -15
- package/src/AdaptableOptions/GeneralOptions.d.ts +3 -2
- package/src/AdaptableOptions/LayoutOptions.d.ts +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +11 -11
- package/src/AdaptableOptions/NotificationsOptions.d.ts +11 -1
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +108 -6
- package/src/Api/AdaptableApi.d.ts +12 -12
- package/src/Api/AlertApi.d.ts +1 -1
- package/src/Api/CalculatedColumnApi.d.ts +15 -0
- package/src/Api/ColumnApi.d.ts +49 -5
- package/src/Api/ConfigApi.d.ts +8 -0
- package/src/Api/EventApi.d.ts +1 -1
- package/src/Api/Events/AdaptableReady.d.ts +5 -8
- package/src/Api/Events/AdaptableStateChanged.d.ts +2 -1
- package/src/Api/Events/AlertFired.d.ts +2 -1
- package/src/Api/Events/BaseEventInfo.d.ts +10 -0
- package/src/{Utilities/Interface/ProgressIndicator.js → Api/Events/BaseEventInfo.js} +0 -0
- package/src/Api/Events/CellChanged.d.ts +2 -1
- package/src/Api/Events/ChexboxColumnClicked.d.ts +2 -1
- package/src/Api/Events/CustomToolbarConfigured.d.ts +2 -1
- package/src/Api/Events/DashboardChanged.d.ts +2 -1
- package/src/Api/Events/FlashingAlertFired.d.ts +2 -1
- package/src/Api/Events/GridDataChanged.d.ts +2 -1
- package/src/Api/Events/LayoutChanged.d.ts +2 -1
- package/src/Api/Events/LiveDataChanged.d.ts +2 -1
- package/src/Api/Events/SearchChanged.d.ts +2 -1
- package/src/Api/Events/SelectionChanged.d.ts +2 -1
- package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +2 -1
- package/src/Api/Events/TeamSharingEntityChanged.d.ts +2 -1
- package/src/Api/Events/ThemeChanged.d.ts +2 -1
- package/src/Api/GridApi.d.ts +44 -18
- package/src/Api/Implementation/AlertApiImpl.d.ts +1 -1
- package/src/Api/Implementation/AlertApiImpl.js +22 -15
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +3 -0
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +23 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +12 -3
- package/src/Api/Implementation/ColumnApiImpl.js +79 -44
- package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
- package/src/Api/Implementation/ConfigApiImpl.js +28 -41
- package/src/Api/Implementation/DashboardApiImpl.js +2 -1
- package/src/Api/Implementation/ExportApiImpl.js +4 -4
- package/src/Api/Implementation/FormatColumnApiImpl.js +2 -1
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +9 -3
- package/src/Api/Implementation/GridApiImpl.d.ts +11 -2
- package/src/Api/Implementation/GridApiImpl.js +30 -13
- package/src/Api/Implementation/InternalApiImpl.d.ts +4 -2
- package/src/Api/Implementation/InternalApiImpl.js +21 -5
- package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
- package/src/Api/Implementation/LayoutApiImpl.js +19 -3
- package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -2
- package/src/Api/Implementation/PluginsApiImpl.js +1 -1
- package/src/Api/Implementation/ScheduleApiImpl.js +6 -6
- package/src/Api/Implementation/ScopeApiImpl.js +11 -11
- package/src/Api/Implementation/SystemStatusApiImpl.js +1 -0
- package/src/Api/Implementation/TeamSharingApiImpl.js +1 -0
- package/src/Api/Implementation/ThemeApiImpl.js +1 -0
- package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +15 -11
- package/src/Api/Implementation/UserInterfaceApiImpl.js +73 -91
- package/src/Api/InternalApi.d.ts +4 -2
- package/src/Api/LayoutApi.d.ts +7 -0
- package/src/Api/PluginsApi.d.ts +1 -7
- package/src/Api/TeamSharingApi.d.ts +1 -1
- package/src/Api/ThemeApi.d.ts +2 -2
- package/src/Api/UserInterfaceApi.d.ts +19 -9
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -10
- package/src/PredefinedConfig/AlertState.d.ts +5 -1
- package/src/PredefinedConfig/ApplicationState.d.ts +1 -1
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +5 -38
- package/src/PredefinedConfig/Common/AdaptableButton.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +36 -36
- package/src/PredefinedConfig/Common/AdaptableColumn.js +5 -5
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +19 -18
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +7 -7
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +4 -3
- package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +5 -1
- package/src/PredefinedConfig/Common/Menu.d.ts +40 -17
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +49 -0
- package/src/PredefinedConfig/Common/SpecialColumnSettings.js +2 -0
- package/src/PredefinedConfig/Common/Types.d.ts +5 -5
- package/src/PredefinedConfig/Common/Types.js +9 -7
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +1 -1
- package/src/PredefinedConfig/CustomSortState.d.ts +1 -1
- package/src/PredefinedConfig/DataSourceState.d.ts +1 -1
- package/src/PredefinedConfig/ExportState.d.ts +3 -3
- package/src/PredefinedConfig/FilterState.d.ts +3 -3
- package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +11 -1
- package/src/PredefinedConfig/LayoutState.d.ts +1 -1
- package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -40
- package/src/PredefinedConfig/QuickSearchState.d.ts +3 -3
- package/src/PredefinedConfig/ScheduleState.d.ts +1 -1
- package/src/PredefinedConfig/Selection/GridCell.d.ts +2 -1
- package/src/PredefinedConfig/Selection/GridRow.d.ts +12 -4
- package/src/PredefinedConfig/SystemState.d.ts +4 -1
- package/src/PredefinedConfig/ThemeState.d.ts +5 -1
- package/src/Redux/ActionsReducers/DashboardRedux.js +2 -1
- 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/SystemRedux.js +1 -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 +25 -16
- package/src/Strategy/AdaptableModuleBase.d.ts +2 -2
- package/src/Strategy/AdaptableModuleBase.js +8 -8
- package/src/Strategy/AlertModule.d.ts +2 -2
- package/src/Strategy/AlertModule.js +13 -105
- package/src/Strategy/BulkUpdateModule.d.ts +2 -2
- package/src/Strategy/BulkUpdateModule.js +7 -7
- package/src/Strategy/CalculatedColumnModule.js +1 -1
- package/src/Strategy/CellSummaryModule.d.ts +2 -2
- package/src/Strategy/CellSummaryModule.js +3 -3
- package/src/Strategy/ConditionalStyleModule.js +3 -3
- package/src/Strategy/CustomSortModule.js +2 -2
- package/src/Strategy/DashboardModule.d.ts +2 -2
- package/src/Strategy/DataChangeHistoryModule.js +2 -2
- package/src/Strategy/ExportModule.d.ts +2 -4
- package/src/Strategy/ExportModule.js +59 -62
- package/src/Strategy/FilterModule.d.ts +2 -2
- package/src/Strategy/FilterModule.js +4 -4
- package/src/Strategy/FormatColumnModule.js +6 -6
- package/src/Strategy/FreeTextColumnModule.js +1 -1
- package/src/Strategy/GridInfoModule.d.ts +2 -2
- package/src/Strategy/Interface/IModule.d.ts +2 -2
- package/src/Strategy/LayoutModule.d.ts +2 -2
- package/src/Strategy/LayoutModule.js +22 -9
- package/src/Strategy/PlusMinusModule.js +8 -9
- package/src/Strategy/SmartEditModule.d.ts +2 -2
- package/src/Strategy/SmartEditModule.js +8 -9
- package/src/Strategy/SystemStatusModule.d.ts +2 -2
- package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
- package/src/Utilities/Constants/GeneralConstants.js +2 -1
- package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
- package/src/Utilities/Constants/ModuleConstants.js +7 -7
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +9 -7
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +1 -1
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +2 -2
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +1 -1
- package/src/Utilities/Helpers/DateHelper.d.ts +2 -2
- package/src/Utilities/Helpers/DateHelper.js +30 -20
- package/src/Utilities/Helpers/PreviewHelper.js +2 -2
- package/src/Utilities/Interface/Preview.d.ts +2 -1
- package/src/Utilities/ObjectFactory.d.ts +1 -1
- package/src/Utilities/ObjectFactory.js +14 -2
- package/src/Utilities/Services/DataService.js +5 -5
- package/src/Utilities/Services/LicenseService.js +16 -2
- package/src/Utilities/Services/ReportService.js +13 -12
- package/src/Utilities/Services/ValidationService.js +4 -5
- package/src/Utilities/runIfNotResolvedIn.d.ts +8 -0
- package/src/Utilities/runIfNotResolvedIn.js +23 -0
- package/src/View/AdaptableView.js +1 -1
- package/src/View/AdaptableViewFactory.d.ts +2 -1
- package/src/View/AdaptableViewFactory.js +2 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +7 -7
- package/src/View/Alert/AlertPopup.js +1 -1
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +19 -5
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +1 -1
- package/src/View/BulkUpdate/BulkUpdatePopup.d.ts +2 -0
- package/src/View/BulkUpdate/BulkUpdatePopup.js +6 -4
- package/src/View/BulkUpdate/BulkUpdateViewPanel.d.ts +2 -0
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +3 -1
- package/src/View/CalculatedColumn/CalculatedColumnPopup.js +1 -1
- package/src/View/CalculatedColumn/CalculatedColumnSummary.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -1
- package/src/View/CellSummary/CellSummaryViewPanel.js +2 -2
- package/src/View/Components/ColumnSelector/index.js +2 -2
- package/src/View/Components/FilterForm/FilterForm.d.ts +3 -51
- package/src/View/Components/FilterForm/FilterForm.js +57 -38
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +4 -1
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +18 -9
- package/src/View/Components/FilterForm/QuickFilterForm.d.ts +3 -43
- package/src/View/Components/FilterForm/QuickFilterForm.js +74 -35
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +3 -0
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +8 -0
- package/src/View/Components/NewScopeComponent.js +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/Popups/AdaptablePopup.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopupAlert.js +23 -10
- package/src/View/Components/PreviewResultsPanel.js +1 -1
- package/src/View/Components/RangesComponent.js +2 -2
- package/src/View/Components/Selectors/ColumnSelector.js +5 -5
- package/src/View/Components/Selectors/ColumnValueSelector.d.ts +10 -2
- package/src/View/Components/Selectors/ColumnValueSelector.js +47 -15
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +10 -11
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +2 -3
- package/src/View/ConditionalStyle/ConditionalStylePopup.js +1 -1
- package/src/View/ConditionalStyle/ConditionalStyleSummary.js +1 -1
- package/src/View/CustomSort/CustomSortEntityRow.d.ts +3 -1
- package/src/View/CustomSort/CustomSortEntityRow.js +3 -3
- package/src/View/CustomSort/CustomSortPopup.js +2 -2
- package/src/View/CustomSort/CustomSortSummary.js +3 -3
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +4 -4
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +24 -6
- package/src/View/Dashboard/CustomToolbarWrapper.js +2 -1
- package/src/View/Dashboard/Dashboard.js +2 -3
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +11 -10
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +6 -6
- package/src/View/Export/ExportCustomDestinationDialog.js +1 -1
- package/src/View/Export/ExportViewPanel.js +6 -6
- package/src/View/Filter/FilterSummary.js +2 -2
- package/src/View/FormatColumn/FormatColumnPopup.js +1 -1
- package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
- package/src/View/FreeTextColumn/FreeTextColumnPopup.js +4 -2
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +5 -3
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +1 -1
- package/src/View/GridInfo/ColumnInfoComponent.js +16 -16
- package/src/View/GridInfo/GridInfoPopup.js +4 -1
- package/src/View/GridInfo/GridOptionsComponent.js +1 -1
- package/src/View/Layout/LayoutViewPanel.js +2 -2
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +6 -6
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +2 -2
- package/src/View/Layout/Wizard/LayoutEditor/index.js +41 -41
- package/src/View/PlusMinus/PlusMinusPopup.js +1 -1
- package/src/View/PlusMinus/PlusMinusSummary.js +1 -1
- package/src/View/Query/QueryViewPanel.js +3 -3
- package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -3
- package/src/View/Schedule/SchedulePopup.js +3 -3
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +1 -1
- package/src/View/SmartEdit/SmartEditPopup.js +1 -1
- package/src/View/StateManagement/StateManagementPopup.d.ts +2 -12
- package/src/View/StateManagement/StateManagementPopup.js +21 -114
- 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/Theme/ThemeViewPanel.js +1 -1
- package/src/View/UIHelper.d.ts +2 -0
- package/src/View/UIHelper.js +10 -1
- package/src/agGrid/ActionColumnRenderer.d.ts +2 -1
- package/src/agGrid/ActionColumnRenderer.js +21 -4
- package/src/agGrid/Adaptable.d.ts +28 -11
- package/src/agGrid/Adaptable.js +326 -168
- package/src/agGrid/agGridHelper.d.ts +4 -4
- package/src/agGrid/agGridHelper.js +46 -46
- package/src/agGrid/agGridMenuHelper.d.ts +15 -13
- package/src/agGrid/agGridMenuHelper.js +55 -47
- 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/AdaptableFormComponent/AdaptableFormComponent.js +3 -3
- package/src/components/Dashboard/Dashboard.js +1 -1
- package/src/components/Datepicker/DatepickerContext.d.ts +2 -2
- package/src/components/Datepicker/index.js +9 -5
- package/src/components/DropdownButton/index.js +1 -1
- package/src/components/ExpressionEditor/index.js +7 -7
- package/src/components/Loader/Loader.d.ts +7 -0
- package/src/components/Loader/Loader.js +13 -0
- package/src/components/Loader/index.d.ts +2 -0
- package/src/components/Loader/index.js +7 -0
- 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/ProgressIndicator/ProgressIndicator.d.ts +2 -0
- package/src/components/ProgressIndicator/ProgressIndicator.js +54 -0
- package/src/components/icons/index.js +2 -0
- package/src/components/icons/upload.d.ts +3 -0
- package/src/components/icons/upload.js +8 -0
- package/src/metamodel/adaptable.metamodel.d.ts +176 -52
- package/src/metamodel/adaptable.metamodel.js +659 -366
- package/src/types.d.ts +5 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/PredefinedConfig/DeprecatedState.d.ts +0 -82
- package/src/PredefinedConfig/DeprecatedState.js +0 -5
- package/src/Utilities/Interface/ProgressIndicator.d.ts +0 -4
- package/src/View/Export/ProgressIndicator.d.ts +0 -6
- package/src/View/Export/ProgressIndicator.js +0 -25
- package/src/components/OverlayTrigger/useVendorClassName.d.ts +0 -2
package/LICENSE.md
CHANGED
|
@@ -18,7 +18,7 @@ TTL provides the following:
|
|
|
18
18
|
|
|
19
19
|
1.2 User Licence: In consideration of Client paying the applicable annual licence fees to TTL and agreeing to and complying with the terms of this Licence TTL hereby grants to Client, for the user licence term as set out in the Sales Order, a non-exclusive, non-transferable licence to use the object code version of the Software at the Client’s site(s) set out in the Sales Order.
|
|
20
20
|
|
|
21
|
-
1.3 The annual licence fee includes unlimited use of both versions of the Software. However, the annual licence fee does not include any
|
|
21
|
+
1.3 The annual licence fee includes unlimited use of both versions of the Software. However, the annual licence fee does not include any AG Grid licences which will need to be purchased separately from AG Grid.
|
|
22
22
|
|
|
23
23
|
1.4 The user licence shall be effective upon its first installation or use of the Software, and shall continue for the licence term set out in the Sales Order subject to termination under clause 14.1.
|
|
24
24
|
|
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ There are a number of different license options available.
|
|
|
17
17
|
|
|
18
18
|
We can also make a trial license available for a short period of time to allow you to try out AdapTable for yourself.
|
|
19
19
|
|
|
20
|
-
**Note: The AdapTable license does not include
|
|
20
|
+
**Note: The AdapTable license does not include an AG Grid license, so if you plan to use AdapTable with a Grid that requires a commercial license, you must pay for that separately**.
|
|
21
21
|
|
|
22
22
|
Please contact [`sales@adaptabletools.com`](mailto:sales@adaptabletools.com) or see our [License Help Page](https://docs.adaptabletools.com/docs/getting-started/licence) for more information.
|
|
23
23
|
|
package/base.css
CHANGED
|
@@ -1362,6 +1362,19 @@
|
|
|
1362
1362
|
--ab-cmp-datepicker__font-size: var(--ab-font-size-2);
|
|
1363
1363
|
--ab-cmp-datepicker__font-family: var(--ab__font-family);
|
|
1364
1364
|
--ab-cmp-datepicker__cell-size: 30px; }
|
|
1365
|
+
:root {
|
|
1366
|
+
--ab-cmp-loader__background: var(--ab-color-primarydark);
|
|
1367
|
+
--ab-cmp-loader__border: var(--ab-color-text-on-primary);
|
|
1368
|
+
--ab-cmp-loader__font-size: var(--ab-font-size-2); }
|
|
1369
|
+
:root {
|
|
1370
|
+
--ab-cmp-progress-indicator__delay: 1s;
|
|
1371
|
+
--ab-cmp-progress-indicator__z-index: 9999;
|
|
1372
|
+
--ab-cmp-progress-indicator__font-size: var(--ab-font-size-4);
|
|
1373
|
+
--ab-cmp-progress-indicator__font-style: italic;
|
|
1374
|
+
--ab-cmp-progress-indicator__font-family: var(--ab__font-family);
|
|
1375
|
+
--ab-cmp-progress-indicator__padding: var(--ab-space-3);
|
|
1376
|
+
--ab-cmp-progress-indicator__background: var(--ab-color-primary);
|
|
1377
|
+
--ab-cmp-progress-indicator__color: var(--ab-color-text-on-primary); }
|
|
1365
1378
|
:root {
|
|
1366
1379
|
--ab-cmp-wizard__padding: var(--ab-space-5);
|
|
1367
1380
|
--ab-cmp-wizard__margin: var(--ab-space-1);
|
|
@@ -1471,6 +1484,8 @@
|
|
|
1471
1484
|
--ab-cmp-toolpanel-header__grid-gap: 3px;
|
|
1472
1485
|
--ab-cmp-toolpanel__color: var(--ab-dashboard__color);
|
|
1473
1486
|
--ab-cmp-toolpanel__font-family: var(--ab__font-family); }
|
|
1487
|
+
:root {
|
|
1488
|
+
--ab-cmp-custom-sort-wizard-loader__font-size: var(--ab-font-size-4); }
|
|
1474
1489
|
.ab-Radio-input:focus + svg rect {
|
|
1475
1490
|
stroke: var(--ab-color-accent);
|
|
1476
1491
|
stroke-width: 2; }
|
|
@@ -2146,8 +2161,12 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2146
2161
|
opacity: 1; }
|
|
2147
2162
|
.ab-Dashboard .ab-Input {
|
|
2148
2163
|
border: none; }
|
|
2164
|
+
.ab-Dashboard .ab-DashboardToolbar__Export__wrap {
|
|
2165
|
+
white-space: nowrap; }
|
|
2149
2166
|
.ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
|
|
2150
2167
|
padding: var(--ab-space-1); }
|
|
2168
|
+
.ab-Dashboard .ab-StateManagement__Clear-Button, .ab-Dashboard .ab-StateManagement__Load-Button, .ab-Dashboard .ab-StateManagement__Export-Dropdown {
|
|
2169
|
+
margin-left: var(--ab-space-1); }
|
|
2151
2170
|
.ab-GridList {
|
|
2152
2171
|
--at-grid__background: transparent; }
|
|
2153
2172
|
.ab-GridList .AT-GridCell_content, .ab-GridList .ab-ListGroupItem, .ab-GridList .AT-GridColumnCell {
|
|
@@ -2255,6 +2274,55 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2255
2274
|
box-shadow: var(--ab-focus__box-shadow); }
|
|
2256
2275
|
.ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
|
|
2257
2276
|
opacity: 0.5; }
|
|
2277
|
+
.ab-Loader {
|
|
2278
|
+
font-size: var(--ab-cmp-loader__font-size);
|
|
2279
|
+
margin-top: 8px;
|
|
2280
|
+
font-style: italic; }
|
|
2281
|
+
.ab-Loader__text, .ab-Loader__Spinner {
|
|
2282
|
+
vertical-align: middle; }
|
|
2283
|
+
.ab-Loader .ab-Loader__Spinner {
|
|
2284
|
+
margin-right: 5px; }
|
|
2285
|
+
.ab-Loader__Spinner {
|
|
2286
|
+
display: inline-block;
|
|
2287
|
+
border-radius: 50%;
|
|
2288
|
+
border: 2px solid var(--ab-cmp-loader__background);
|
|
2289
|
+
border-top: 2px solid var(--ab-cmp-loader__border);
|
|
2290
|
+
width: 10px;
|
|
2291
|
+
height: 10px;
|
|
2292
|
+
bottom: 0;
|
|
2293
|
+
animation: spin 1.5s linear infinite; }
|
|
2294
|
+
@keyframes spin {
|
|
2295
|
+
0% {
|
|
2296
|
+
transform: rotate(0deg); }
|
|
2297
|
+
100% {
|
|
2298
|
+
transform: rotate(360deg); } }
|
|
2299
|
+
.ab-progress-indicator-wrapper {
|
|
2300
|
+
align-items: center;
|
|
2301
|
+
display: flex;
|
|
2302
|
+
justify-content: center;
|
|
2303
|
+
position: fixed;
|
|
2304
|
+
top: 0;
|
|
2305
|
+
left: 0;
|
|
2306
|
+
height: 0;
|
|
2307
|
+
width: 0;
|
|
2308
|
+
z-index: var(--ab-cmp-progress-indicator__z-index);
|
|
2309
|
+
opacity: 0;
|
|
2310
|
+
transition-delay: var(--ab-cmp-progress-indicator__delay);
|
|
2311
|
+
transition-property: opacity;
|
|
2312
|
+
transition-duration: 0.3s; }
|
|
2313
|
+
.ab-progress-indicator-wrapper--visible {
|
|
2314
|
+
opacity: 1; }
|
|
2315
|
+
.ab-progress-indicator-wrapper .ab-progress-indicator-body {
|
|
2316
|
+
padding: var(--ab-cmp-progress-indicator__padding);
|
|
2317
|
+
background: var(--ab-cmp-progress-indicator__background);
|
|
2318
|
+
color: var(--ab-cmp-progress-indicator__color);
|
|
2319
|
+
border-style: none;
|
|
2320
|
+
border-width: 0px;
|
|
2321
|
+
border-radius: var(--ab__border-radius);
|
|
2322
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2323
|
+
font-size: var(--ab-cmp-progress-indicator__font-size);
|
|
2324
|
+
font-style: var(--ab-cmp-progress-indicator__font-style);
|
|
2325
|
+
font-family: var(--ab-cmp-progress-indicator__font-family); }
|
|
2258
2326
|
.ab-ObjectCollection__list > * {
|
|
2259
2327
|
background: var(--ab-cmp-listgroupitem__background);
|
|
2260
2328
|
color: var(--ab-cmp-listgroupitem__color); }
|
|
@@ -2277,17 +2345,17 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2277
2345
|
margin-Bottom: 0; }
|
|
2278
2346
|
.ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
|
|
2279
2347
|
overflow-x: hidden; }
|
|
2280
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
2281
|
-
.ag-theme-balham .ab-ListBoxFilterForm--
|
|
2348
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style,
|
|
2349
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style {
|
|
2282
2350
|
--ab-cmp-dropdown__border-radius: 0;
|
|
2283
2351
|
--ab-cmp-input__border-radius: 0;
|
|
2284
2352
|
--ab-cmp-input__padding: 0;
|
|
2285
2353
|
--ab-cmp-dropdown__padding: 3px;
|
|
2286
2354
|
--ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent); }
|
|
2287
|
-
.ag-theme-balham-dark .ab-ListBoxFilterForm--
|
|
2288
|
-
.ag-theme-balham .ab-ListBoxFilterForm--
|
|
2355
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap,
|
|
2356
|
+
.ag-theme-balham .ab-ListBoxFilterForm--aggrid-style .ab-FieldWrap {
|
|
2289
2357
|
border-radius: 0; }
|
|
2290
|
-
html.ab--theme-dark .ab-ListBoxFilterForm--
|
|
2358
|
+
html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
2291
2359
|
--ab-color-inputborder: white;
|
|
2292
2360
|
--ab-cmp-dropdown__border: 1px solid white; }
|
|
2293
2361
|
.ab-Popover {
|
|
@@ -2351,7 +2419,8 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
2351
2419
|
.ab-Dashboard__application-icon {
|
|
2352
2420
|
margin-right: var(--ab-space-2); }
|
|
2353
2421
|
.ab-ToolPanel {
|
|
2354
|
-
|
|
2422
|
+
flex: 1 1 0;
|
|
2423
|
+
min-width: 0;
|
|
2355
2424
|
color: var(--ab-cmp-toolpanel__color);
|
|
2356
2425
|
font-family: var(--ab-cmp-toolpanel__font-family); }
|
|
2357
2426
|
.ab-ToolPanel .ab-ToolPanel__header {
|
|
@@ -2364,6 +2433,13 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
2364
2433
|
flex-direction: row;
|
|
2365
2434
|
flex-wrap: wrap;
|
|
2366
2435
|
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
|
|
2436
|
+
.ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button {
|
|
2437
|
+
justify-content: center;
|
|
2438
|
+
flex: 1; }
|
|
2439
|
+
.ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button, .ab-ToolPanel .ab-StateManagement__Export-Dropdown {
|
|
2440
|
+
margin-bottom: var(--ab-space-1); }
|
|
2441
|
+
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
2442
|
+
font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
|
|
2367
2443
|
.ab-alert--error {
|
|
2368
2444
|
background: var(--ab-color-error); }
|
|
2369
2445
|
.ab-alert--success {
|
|
@@ -2488,31 +2564,7 @@ html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
|
2488
2564
|
flex-flow: column; }
|
|
2489
2565
|
.ag-details-row .ag-details-grid {
|
|
2490
2566
|
flex: 1; }
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
display: flex;
|
|
2494
|
-
height: 100vh;
|
|
2495
|
-
justify-content: center;
|
|
2496
|
-
left: 0;
|
|
2497
|
-
position: fixed;
|
|
2498
|
-
top: 0;
|
|
2499
|
-
width: 100%;
|
|
2500
|
-
z-index: 9999;
|
|
2501
|
-
opacity: 0;
|
|
2502
|
-
transition-delay: 0.5s;
|
|
2503
|
-
transition-property: opacity;
|
|
2504
|
-
transition-duration: 0.3s; }
|
|
2505
|
-
div.ab-progress-indicator-wrapper--visible {
|
|
2506
|
-
opacity: 1; }
|
|
2507
|
-
div.ab-progress-indicator-wrapper .ab-progress-indicator-text {
|
|
2508
|
-
padding: var(--ab-space-3);
|
|
2509
|
-
background: var(--ab-color-primary);
|
|
2510
|
-
color: var(--ab-color-text-on-primary);
|
|
2511
|
-
border-style: none;
|
|
2512
|
-
border-width: 0px;
|
|
2513
|
-
border-radius: var(--ab__border-radius);
|
|
2514
|
-
box-shadow: var(--ab-focus__box-shadow);
|
|
2515
|
-
font-size: var(--ab-font-size-3);
|
|
2516
|
-
font-family: var(--ab__font-family); }
|
|
2567
|
+
.ab-wait-for-progress-indicator.ab-Grid {
|
|
2568
|
+
pointer-events: none; }
|
|
2517
2569
|
|
|
2518
2570
|
/*# sourceMappingURL=base.css.map */
|