@adaptabletools/adaptable 10.0.0-canary.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +264 -0
- package/README.md +36 -0
- package/agGrid.d.ts +58 -0
- package/agGrid.js +14 -0
- package/base.css +2512 -0
- package/fonts/glyphicons-halflings-regular.eot +0 -0
- package/fonts/glyphicons-halflings-regular.svg +288 -0
- package/fonts/glyphicons-halflings-regular.ttf +0 -0
- package/fonts/glyphicons-halflings-regular.woff +0 -0
- package/fonts/glyphicons-halflings-regular.woff2 +0 -0
- package/index.css +3375 -0
- package/package.json +67 -0
- package/publishTimestamp.d.ts +2 -0
- package/publishTimestamp.js +3 -0
- package/src/AdaptableComponents.d.ts +1 -0
- package/src/AdaptableComponents.js +5 -0
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +91 -0
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.js +2 -0
- package/src/AdaptableInterfaces/IAdaptable.d.ts +214 -0
- package/src/AdaptableInterfaces/IAdaptable.js +2 -0
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +33 -0
- package/src/AdaptableOptions/AdaptableFrameworkComponent.js +2 -0
- package/src/AdaptableOptions/AdaptableOptions.d.ts +169 -0
- package/src/AdaptableOptions/AdaptableOptions.js +2 -0
- package/src/AdaptableOptions/AdaptablePlugin.d.ts +40 -0
- package/src/AdaptableOptions/AdaptablePlugin.js +36 -0
- package/src/AdaptableOptions/AlertOptions.d.ts +143 -0
- package/src/AdaptableOptions/AlertOptions.js +2 -0
- package/src/AdaptableOptions/ChartPluginOptions.d.ts +20 -0
- package/src/AdaptableOptions/ChartPluginOptions.js +2 -0
- package/src/AdaptableOptions/ContainerOptions.d.ts +55 -0
- package/src/AdaptableOptions/ContainerOptions.js +2 -0
- package/src/AdaptableOptions/DashboardOptions.d.ts +98 -0
- package/src/AdaptableOptions/DashboardOptions.js +2 -0
- package/src/AdaptableOptions/DataChangeTrackingOptions.d.ts +34 -0
- package/src/AdaptableOptions/DataChangeTrackingOptions.js +21 -0
- package/src/AdaptableOptions/DateInputOptions.d.ts +78 -0
- package/src/AdaptableOptions/DateInputOptions.js +2 -0
- package/src/AdaptableOptions/EditOptions.d.ts +38 -0
- package/src/AdaptableOptions/EditOptions.js +2 -0
- package/src/AdaptableOptions/EntitlementOptions.d.ts +20 -0
- package/src/AdaptableOptions/EntitlementOptions.js +2 -0
- package/src/AdaptableOptions/ExportOptions.d.ts +108 -0
- package/src/AdaptableOptions/ExportOptions.js +2 -0
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +66 -0
- package/src/AdaptableOptions/FinancePluginOptions.js +2 -0
- package/src/AdaptableOptions/GeneralOptions.d.ts +83 -0
- package/src/AdaptableOptions/GeneralOptions.js +2 -0
- package/src/AdaptableOptions/Glue42PluginOptions.d.ts +25 -0
- package/src/AdaptableOptions/Glue42PluginOptions.js +2 -0
- package/src/AdaptableOptions/IPushPullPluginOptions.d.ts +37 -0
- package/src/AdaptableOptions/IPushPullPluginOptions.js +2 -0
- package/src/AdaptableOptions/LayoutOptions.d.ts +41 -0
- package/src/AdaptableOptions/LayoutOptions.js +2 -0
- package/src/AdaptableOptions/MasterDetailAgGridPluginOptions.d.ts +16 -0
- package/src/AdaptableOptions/MasterDetailAgGridPluginOptions.js +2 -0
- package/src/AdaptableOptions/MenuOptions.d.ts +49 -0
- package/src/AdaptableOptions/MenuOptions.js +2 -0
- package/src/AdaptableOptions/OpenFinPluginOptions.d.ts +52 -0
- package/src/AdaptableOptions/OpenFinPluginOptions.js +2 -0
- package/src/AdaptableOptions/SearchOptions.d.ts +196 -0
- package/src/AdaptableOptions/SearchOptions.js +2 -0
- package/src/AdaptableOptions/StateOptions.d.ts +79 -0
- package/src/AdaptableOptions/StateOptions.js +2 -0
- package/src/AdaptableOptions/SystemStatusOptions.d.ts +19 -0
- package/src/AdaptableOptions/SystemStatusOptions.js +2 -0
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +39 -0
- package/src/AdaptableOptions/TeamSharingOptions.js +2 -0
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +132 -0
- package/src/AdaptableOptions/ToolPanelOptions.js +2 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +115 -0
- package/src/AdaptableOptions/UserInterfaceOptions.js +2 -0
- package/src/Api/AdaptableApi.d.ts +185 -0
- package/src/Api/AdaptableApi.js +2 -0
- package/src/Api/AlertApi.d.ts +246 -0
- package/src/Api/AlertApi.js +2 -0
- package/src/Api/ApplicationApi.d.ts +50 -0
- package/src/Api/ApplicationApi.js +2 -0
- package/src/Api/BulkUpdateApi.d.ts +19 -0
- package/src/Api/BulkUpdateApi.js +2 -0
- package/src/Api/CalculatedColumnApi.d.ts +66 -0
- package/src/Api/CalculatedColumnApi.js +2 -0
- package/src/Api/CellSummaryApi.d.ts +18 -0
- package/src/Api/CellSummaryApi.js +2 -0
- package/src/Api/ChartApi.d.ts +20 -0
- package/src/Api/ChartApi.js +2 -0
- package/src/Api/ColumnApi.d.ts +239 -0
- package/src/Api/ColumnApi.js +2 -0
- package/src/Api/ConditionalStyleApi.d.ts +96 -0
- package/src/Api/ConditionalStyleApi.js +2 -0
- package/src/Api/ConfigApi.d.ts +204 -0
- package/src/Api/ConfigApi.js +2 -0
- package/src/Api/CustomSortApi.d.ts +77 -0
- package/src/Api/CustomSortApi.js +2 -0
- package/src/Api/DashboardApi.d.ts +164 -0
- package/src/Api/DashboardApi.js +2 -0
- package/src/Api/DataSourceApi.d.ts +58 -0
- package/src/Api/DataSourceApi.js +2 -0
- package/src/Api/EventApi.d.ts +210 -0
- package/src/Api/EventApi.js +2 -0
- package/src/Api/Events/AdaptableReady.d.ts +14 -0
- package/src/Api/Events/AdaptableReady.js +2 -0
- package/src/Api/Events/AdaptableStateChanged.d.ts +39 -0
- package/src/Api/Events/AdaptableStateChanged.js +2 -0
- package/src/Api/Events/AlertFired.d.ts +10 -0
- package/src/Api/Events/AlertFired.js +2 -0
- package/src/Api/Events/CellChanged.d.ts +10 -0
- package/src/Api/Events/CellChanged.js +2 -0
- package/src/Api/Events/ChexboxColumnClicked.d.ts +22 -0
- package/src/Api/Events/ChexboxColumnClicked.js +2 -0
- package/src/Api/Events/CustomToolbarConfigured.d.ts +10 -0
- package/src/Api/Events/CustomToolbarConfigured.js +2 -0
- package/src/Api/Events/DashboardChanged.d.ts +18 -0
- package/src/Api/Events/DashboardChanged.js +2 -0
- package/src/Api/Events/FlashingAlertFired.d.ts +10 -0
- package/src/Api/Events/FlashingAlertFired.js +2 -0
- package/src/Api/Events/GridDataChanged.d.ts +14 -0
- package/src/Api/Events/GridDataChanged.js +2 -0
- package/src/Api/Events/LayoutChanged.d.ts +18 -0
- package/src/Api/Events/LayoutChanged.js +2 -0
- package/src/Api/Events/LiveDataChanged.d.ts +39 -0
- package/src/Api/Events/LiveDataChanged.js +2 -0
- package/src/Api/Events/SearchChanged.d.ts +55 -0
- package/src/Api/Events/SearchChanged.js +2 -0
- package/src/Api/Events/SelectionChanged.d.ts +15 -0
- package/src/Api/Events/SelectionChanged.js +2 -0
- package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +10 -0
- package/src/Api/Events/SystemStatusMessageDisplayed.js +2 -0
- package/src/Api/Events/TeamSharedEntityChanged.d.ts +10 -0
- package/src/Api/Events/TeamSharedEntityChanged.js +2 -0
- package/src/Api/Events/ThemeChanged.d.ts +10 -0
- package/src/Api/Events/ThemeChanged.js +2 -0
- package/src/Api/ExportApi.d.ts +125 -0
- package/src/Api/ExportApi.js +2 -0
- package/src/Api/FilterApi.d.ts +119 -0
- package/src/Api/FilterApi.js +2 -0
- package/src/Api/FinanceApi.d.ts +10 -0
- package/src/Api/FinanceApi.js +2 -0
- package/src/Api/FormatColumnApi.d.ts +173 -0
- package/src/Api/FormatColumnApi.js +2 -0
- package/src/Api/FreeTextColumnApi.d.ts +88 -0
- package/src/Api/FreeTextColumnApi.js +2 -0
- package/src/Api/Glue42Api.d.ts +113 -0
- package/src/Api/Glue42Api.js +2 -0
- package/src/Api/GridApi.d.ts +376 -0
- package/src/Api/GridApi.js +2 -0
- package/src/Api/IPushPullApi.d.ts +176 -0
- package/src/Api/IPushPullApi.js +2 -0
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +78 -0
- package/src/Api/Implementation/AdaptableApiImpl.js +81 -0
- package/src/Api/Implementation/AlertApiImpl.d.ts +59 -0
- package/src/Api/Implementation/AlertApiImpl.js +327 -0
- package/src/Api/Implementation/ApiBase.d.ts +62 -0
- package/src/Api/Implementation/ApiBase.js +120 -0
- package/src/Api/Implementation/ApplicationApiImpl.d.ts +13 -0
- package/src/Api/Implementation/ApplicationApiImpl.js +39 -0
- package/src/Api/Implementation/BulkUpdateApiImpl.d.ts +8 -0
- package/src/Api/Implementation/BulkUpdateApiImpl.js +19 -0
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +16 -0
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +64 -0
- package/src/Api/Implementation/CellSummaryApiImpl.d.ts +8 -0
- package/src/Api/Implementation/CellSummaryApiImpl.js +18 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +60 -0
- package/src/Api/Implementation/ColumnApiImpl.js +366 -0
- package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +27 -0
- package/src/Api/Implementation/ConditionalStyleApiImpl.js +90 -0
- package/src/Api/Implementation/ConfigApiImpl.d.ts +73 -0
- package/src/Api/Implementation/ConfigApiImpl.js +407 -0
- package/src/Api/Implementation/CustomSortApiImpl.d.ts +18 -0
- package/src/Api/Implementation/CustomSortApiImpl.js +62 -0
- package/src/Api/Implementation/DashboardApiImpl.d.ts +46 -0
- package/src/Api/Implementation/DashboardApiImpl.js +199 -0
- package/src/Api/Implementation/DataSourceApiImpl.d.ts +15 -0
- package/src/Api/Implementation/DataSourceApiImpl.js +51 -0
- package/src/Api/Implementation/EventApiImpl.d.ts +12 -0
- package/src/Api/Implementation/EventApiImpl.js +26 -0
- package/src/Api/Implementation/ExportApiImpl.d.ts +31 -0
- package/src/Api/Implementation/ExportApiImpl.js +168 -0
- package/src/Api/Implementation/FilterApiImpl.d.ts +31 -0
- package/src/Api/Implementation/FilterApiImpl.js +195 -0
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +45 -0
- package/src/Api/Implementation/FormatColumnApiImpl.js +267 -0
- package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +26 -0
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +128 -0
- package/src/Api/Implementation/GridApiImpl.d.ts +88 -0
- package/src/Api/Implementation/GridApiImpl.js +322 -0
- package/src/Api/Implementation/InternalApiImpl.d.ts +115 -0
- package/src/Api/Implementation/InternalApiImpl.js +390 -0
- package/src/Api/Implementation/LayoutApiImpl.d.ts +30 -0
- package/src/Api/Implementation/LayoutApiImpl.js +215 -0
- package/src/Api/Implementation/PluginsApiImpl.d.ts +20 -0
- package/src/Api/Implementation/PluginsApiImpl.js +60 -0
- package/src/Api/Implementation/PlusMinusApiImpl.d.ts +18 -0
- package/src/Api/Implementation/PlusMinusApiImpl.js +57 -0
- package/src/Api/Implementation/PredicateApiImpl.d.ts +15 -0
- package/src/Api/Implementation/PredicateApiImpl.js +82 -0
- package/src/Api/Implementation/QueryApiImpl.d.ts +25 -0
- package/src/Api/Implementation/QueryApiImpl.js +134 -0
- package/src/Api/Implementation/QuickSearchApiImpl.d.ts +13 -0
- package/src/Api/Implementation/QuickSearchApiImpl.js +31 -0
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +54 -0
- package/src/Api/Implementation/ScheduleApiImpl.js +214 -0
- package/src/Api/Implementation/ScopeApiImpl.d.ts +29 -0
- package/src/Api/Implementation/ScopeApiImpl.js +260 -0
- package/src/Api/Implementation/ShortcutApiImpl.d.ts +16 -0
- package/src/Api/Implementation/ShortcutApiImpl.js +50 -0
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +11 -0
- package/src/Api/Implementation/SmartEditApiImpl.js +29 -0
- package/src/Api/Implementation/SparklineColumnApiImpl.d.ts +9 -0
- package/src/Api/Implementation/SparklineColumnApiImpl.js +24 -0
- package/src/Api/Implementation/SystemStatusApiImpl.d.ts +18 -0
- package/src/Api/Implementation/SystemStatusApiImpl.js +96 -0
- package/src/Api/Implementation/TeamSharingApiImpl.d.ts +12 -0
- package/src/Api/Implementation/TeamSharingApiImpl.js +44 -0
- package/src/Api/Implementation/ThemeApiImpl.d.ts +17 -0
- package/src/Api/Implementation/ThemeApiImpl.js +65 -0
- package/src/Api/Implementation/ToolPanelApiImpl.d.ts +20 -0
- package/src/Api/Implementation/ToolPanelApiImpl.js +61 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +24 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.js +192 -0
- package/src/Api/InternalApi.d.ts +117 -0
- package/src/Api/InternalApi.js +2 -0
- package/src/Api/LayoutApi.d.ts +124 -0
- package/src/Api/LayoutApi.js +2 -0
- package/src/Api/OpenFinApi.d.ts +61 -0
- package/src/Api/OpenFinApi.js +2 -0
- package/src/Api/PluginsApi.d.ts +26 -0
- package/src/Api/PluginsApi.js +2 -0
- package/src/Api/PlusMinusApi.d.ts +72 -0
- package/src/Api/PlusMinusApi.js +2 -0
- package/src/Api/PredicateApi.d.ts +55 -0
- package/src/Api/PredicateApi.js +2 -0
- package/src/Api/QueryApi.d.ts +91 -0
- package/src/Api/QueryApi.js +2 -0
- package/src/Api/QuickSearchApi.d.ts +37 -0
- package/src/Api/QuickSearchApi.js +2 -0
- package/src/Api/ScheduleApi.d.ts +253 -0
- package/src/Api/ScheduleApi.js +2 -0
- package/src/Api/ScopeApi.d.ts +129 -0
- package/src/Api/ScopeApi.js +2 -0
- package/src/Api/ShortcutApi.d.ts +62 -0
- package/src/Api/ShortcutApi.js +2 -0
- package/src/Api/SmartEditApi.d.ts +33 -0
- package/src/Api/SmartEditApi.js +2 -0
- package/src/Api/SparklineColumnApi.d.ts +23 -0
- package/src/Api/SparklineColumnApi.js +2 -0
- package/src/Api/SystemStatusApi.d.ts +43 -0
- package/src/Api/SystemStatusApi.js +2 -0
- package/src/Api/TeamSharingApi.d.ts +31 -0
- package/src/Api/TeamSharingApi.js +2 -0
- package/src/Api/ThemeApi.d.ts +59 -0
- package/src/Api/ThemeApi.js +2 -0
- package/src/Api/ToolPanelApi.d.ts +51 -0
- package/src/Api/ToolPanelApi.js +2 -0
- package/src/Api/UserInterfaceApi.d.ts +63 -0
- package/src/Api/UserInterfaceApi.js +2 -0
- package/src/PredefinedConfig/AdaptableState.d.ts +68 -0
- package/src/PredefinedConfig/AdaptableState.js +2 -0
- package/src/PredefinedConfig/AlertState.d.ts +155 -0
- package/src/PredefinedConfig/AlertState.js +2 -0
- package/src/PredefinedConfig/ApplicationState.d.ts +23 -0
- package/src/PredefinedConfig/ApplicationState.js +2 -0
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +82 -0
- package/src/PredefinedConfig/CalculatedColumnState.js +2 -0
- package/src/PredefinedConfig/ChartState.d.ts +144 -0
- package/src/PredefinedConfig/ChartState.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableAlert.d.ts +23 -0
- package/src/PredefinedConfig/Common/AdaptableAlert.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableButton.d.ts +40 -0
- package/src/PredefinedConfig/Common/AdaptableButton.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +124 -0
- package/src/PredefinedConfig/Common/AdaptableColumn.js +26 -0
- package/src/PredefinedConfig/Common/AdaptableComparerFunction.d.ts +22 -0
- package/src/PredefinedConfig/Common/AdaptableComparerFunction.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableFlashingAlert.d.ts +32 -0
- package/src/PredefinedConfig/Common/AdaptableFlashingAlert.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableForm.d.ts +52 -0
- package/src/PredefinedConfig/Common/AdaptableForm.js +11 -0
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +73 -0
- package/src/PredefinedConfig/Common/AdaptableFormat.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +27 -0
- package/src/PredefinedConfig/Common/AdaptableIcon.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableMessageType.d.ts +20 -0
- package/src/PredefinedConfig/Common/AdaptableMessageType.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +18 -0
- package/src/PredefinedConfig/Common/AdaptableObject.js +2 -0
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +113 -0
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +500 -0
- package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +19 -0
- package/src/PredefinedConfig/Common/AdaptableQuery.js +10 -0
- package/src/PredefinedConfig/Common/AdaptableScope.d.ts +14 -0
- package/src/PredefinedConfig/Common/AdaptableScope.js +2 -0
- package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +33 -0
- package/src/PredefinedConfig/Common/AdaptableStyle.js +2 -0
- package/src/PredefinedConfig/Common/AlternativeModuleName.d.ts +14 -0
- package/src/PredefinedConfig/Common/AlternativeModuleName.js +2 -0
- package/src/PredefinedConfig/Common/ButtonStyle.d.ts +19 -0
- package/src/PredefinedConfig/Common/ButtonStyle.js +2 -0
- package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +22 -0
- package/src/PredefinedConfig/Common/CellHighlightInfo.js +2 -0
- package/src/PredefinedConfig/Common/CellSummary.d.ts +55 -0
- package/src/PredefinedConfig/Common/CellSummary.js +2 -0
- package/src/PredefinedConfig/Common/ChartEnums.d.ts +123 -0
- package/src/PredefinedConfig/Common/ChartEnums.js +152 -0
- package/src/PredefinedConfig/Common/ColumnSort.d.ts +13 -0
- package/src/PredefinedConfig/Common/ColumnSort.js +2 -0
- package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +42 -0
- package/src/PredefinedConfig/Common/DataChangedInfo.js +2 -0
- package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +13 -0
- package/src/PredefinedConfig/Common/DataUpdateConfig.js +2 -0
- package/src/PredefinedConfig/Common/Entitlement.d.ts +15 -0
- package/src/PredefinedConfig/Common/Entitlement.js +2 -0
- package/src/PredefinedConfig/Common/Enums.d.ts +97 -0
- package/src/PredefinedConfig/Common/Enums.js +118 -0
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +65 -0
- package/src/PredefinedConfig/Common/FDC3Context.js +2 -0
- package/src/PredefinedConfig/Common/FilterActionOnDataChange.d.ts +14 -0
- package/src/PredefinedConfig/Common/FilterActionOnDataChange.js +6 -0
- package/src/PredefinedConfig/Common/Menu.d.ts +123 -0
- package/src/PredefinedConfig/Common/Menu.js +2 -0
- package/src/PredefinedConfig/Common/Schedule.d.ts +48 -0
- package/src/PredefinedConfig/Common/Schedule.js +16 -0
- package/src/PredefinedConfig/Common/SuspendableObject.d.ts +10 -0
- package/src/PredefinedConfig/Common/SuspendableObject.js +2 -0
- package/src/PredefinedConfig/Common/SystemStatusMessageInfo.d.ts +23 -0
- package/src/PredefinedConfig/Common/SystemStatusMessageInfo.js +2 -0
- package/src/PredefinedConfig/Common/Types.d.ts +27 -0
- package/src/PredefinedConfig/Common/Types.js +23 -0
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +50 -0
- package/src/PredefinedConfig/ConditionalStyleState.js +2 -0
- package/src/PredefinedConfig/ConfigState.d.ts +9 -0
- package/src/PredefinedConfig/ConfigState.js +2 -0
- package/src/PredefinedConfig/CustomSortState.d.ts +26 -0
- package/src/PredefinedConfig/CustomSortState.js +2 -0
- package/src/PredefinedConfig/DashboardState.d.ts +76 -0
- package/src/PredefinedConfig/DashboardState.js +2 -0
- package/src/PredefinedConfig/DataSourceState.d.ts +34 -0
- package/src/PredefinedConfig/DataSourceState.js +2 -0
- package/src/PredefinedConfig/DeprecatedState.d.ts +82 -0
- package/src/PredefinedConfig/DeprecatedState.js +5 -0
- package/src/PredefinedConfig/ExportState.d.ts +84 -0
- package/src/PredefinedConfig/ExportState.js +2 -0
- package/src/PredefinedConfig/FilterState.d.ts +51 -0
- package/src/PredefinedConfig/FilterState.js +2 -0
- package/src/PredefinedConfig/FormatColumnState.d.ts +134 -0
- package/src/PredefinedConfig/FormatColumnState.js +2 -0
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +55 -0
- package/src/PredefinedConfig/FreeTextColumnState.js +2 -0
- package/src/PredefinedConfig/Glue42State.d.ts +46 -0
- package/src/PredefinedConfig/Glue42State.js +2 -0
- package/src/PredefinedConfig/GridState.d.ts +23 -0
- package/src/PredefinedConfig/GridState.js +2 -0
- package/src/PredefinedConfig/IPushPullState.d.ts +54 -0
- package/src/PredefinedConfig/IPushPullState.js +2 -0
- package/src/PredefinedConfig/InternalState.d.ts +10 -0
- package/src/PredefinedConfig/InternalState.js +2 -0
- package/src/PredefinedConfig/LayoutState.d.ts +81 -0
- package/src/PredefinedConfig/LayoutState.js +2 -0
- package/src/PredefinedConfig/OpenFinState.d.ts +32 -0
- package/src/PredefinedConfig/OpenFinState.js +2 -0
- package/src/PredefinedConfig/PlusMinusState.d.ts +30 -0
- package/src/PredefinedConfig/PlusMinusState.js +2 -0
- package/src/PredefinedConfig/PopupState.d.ts +12 -0
- package/src/PredefinedConfig/PopupState.js +2 -0
- package/src/PredefinedConfig/PredefinedConfig.d.ts +150 -0
- package/src/PredefinedConfig/PredefinedConfig.js +2 -0
- package/src/PredefinedConfig/QueryState.d.ts +29 -0
- package/src/PredefinedConfig/QueryState.js +2 -0
- package/src/PredefinedConfig/QuickSearchState.d.ts +15 -0
- package/src/PredefinedConfig/QuickSearchState.js +2 -0
- package/src/PredefinedConfig/ScheduleState.d.ts +57 -0
- package/src/PredefinedConfig/ScheduleState.js +2 -0
- package/src/PredefinedConfig/Selection/GridCell.d.ts +30 -0
- package/src/PredefinedConfig/Selection/GridCell.js +2 -0
- package/src/PredefinedConfig/Selection/GridCellRange.d.ts +5 -0
- package/src/PredefinedConfig/Selection/GridCellRange.js +2 -0
- package/src/PredefinedConfig/Selection/GridRow.d.ts +43 -0
- package/src/PredefinedConfig/Selection/GridRow.js +2 -0
- package/src/PredefinedConfig/Selection/SelectedCellInfo.d.ts +15 -0
- package/src/PredefinedConfig/Selection/SelectedCellInfo.js +2 -0
- package/src/PredefinedConfig/Selection/SelectedRowInfo.d.ts +10 -0
- package/src/PredefinedConfig/Selection/SelectedRowInfo.js +2 -0
- package/src/PredefinedConfig/ShortcutState.d.ts +33 -0
- package/src/PredefinedConfig/ShortcutState.js +2 -0
- package/src/PredefinedConfig/SparklineColumnState.d.ts +40 -0
- package/src/PredefinedConfig/SparklineColumnState.js +2 -0
- package/src/PredefinedConfig/SystemState.d.ts +59 -0
- package/src/PredefinedConfig/SystemState.js +2 -0
- package/src/PredefinedConfig/TeamSharingState.d.ts +88 -0
- package/src/PredefinedConfig/TeamSharingState.js +2 -0
- package/src/PredefinedConfig/ThemeState.d.ts +36 -0
- package/src/PredefinedConfig/ThemeState.js +2 -0
- package/src/PredefinedConfig/ToolPanelState.d.ts +32 -0
- package/src/PredefinedConfig/ToolPanelState.js +2 -0
- package/src/PredefinedConfig/Uuid.d.ts +2 -0
- package/src/PredefinedConfig/Uuid.js +5 -0
- package/src/Redux/ActionsReducers/AlertRedux.d.ts +88 -0
- package/src/Redux/ActionsReducers/AlertRedux.js +157 -0
- package/src/Redux/ActionsReducers/ApplicationRedux.d.ts +27 -0
- package/src/Redux/ActionsReducers/ApplicationRedux.js +56 -0
- package/src/Redux/ActionsReducers/BulkUpdateRedux.d.ts +25 -0
- package/src/Redux/ActionsReducers/BulkUpdateRedux.js +26 -0
- package/src/Redux/ActionsReducers/CalculatedColumnRedux.d.ts +35 -0
- package/src/Redux/ActionsReducers/CalculatedColumnRedux.js +72 -0
- package/src/Redux/ActionsReducers/CellSummaryRedux.d.ts +5 -0
- package/src/Redux/ActionsReducers/CellSummaryRedux.js +7 -0
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +88 -0
- package/src/Redux/ActionsReducers/CustomSortRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/CustomSortRedux.js +86 -0
- package/src/Redux/ActionsReducers/DashboardRedux.d.ts +116 -0
- package/src/Redux/ActionsReducers/DashboardRedux.js +173 -0
- package/src/Redux/ActionsReducers/DataSourceRedux.d.ts +42 -0
- package/src/Redux/ActionsReducers/DataSourceRedux.js +76 -0
- package/src/Redux/ActionsReducers/ExportRedux.d.ts +61 -0
- package/src/Redux/ActionsReducers/ExportRedux.js +97 -0
- package/src/Redux/ActionsReducers/FilterRedux.d.ts +70 -0
- package/src/Redux/ActionsReducers/FilterRedux.js +126 -0
- package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +85 -0
- package/src/Redux/ActionsReducers/FreeTextColumnRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/FreeTextColumnRedux.js +94 -0
- package/src/Redux/ActionsReducers/GridRedux.d.ts +171 -0
- package/src/Redux/ActionsReducers/GridRedux.js +227 -0
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +57 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +89 -0
- package/src/Redux/ActionsReducers/PluginsRedux.d.ts +188 -0
- package/src/Redux/ActionsReducers/PluginsRedux.js +194 -0
- package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +58 -0
- package/src/Redux/ActionsReducers/PlusMinusRedux.js +97 -0
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +73 -0
- package/src/Redux/ActionsReducers/PopupRedux.js +238 -0
- package/src/Redux/ActionsReducers/QueryRedux.d.ts +44 -0
- package/src/Redux/ActionsReducers/QueryRedux.js +76 -0
- package/src/Redux/ActionsReducers/QuickSearchRedux.d.ts +28 -0
- package/src/Redux/ActionsReducers/QuickSearchRedux.js +47 -0
- package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +216 -0
- package/src/Redux/ActionsReducers/ScheduleRedux.js +345 -0
- package/src/Redux/ActionsReducers/ShortcutRedux.d.ts +49 -0
- package/src/Redux/ActionsReducers/ShortcutRedux.js +86 -0
- package/src/Redux/ActionsReducers/SmartEditRedux.d.ts +25 -0
- package/src/Redux/ActionsReducers/SmartEditRedux.js +26 -0
- package/src/Redux/ActionsReducers/SparklineColumnRedux.d.ts +35 -0
- package/src/Redux/ActionsReducers/SparklineColumnRedux.js +70 -0
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +227 -0
- package/src/Redux/ActionsReducers/SystemRedux.js +470 -0
- package/src/Redux/ActionsReducers/SystemStatusRedux.d.ts +17 -0
- package/src/Redux/ActionsReducers/SystemStatusRedux.js +18 -0
- package/src/Redux/ActionsReducers/TeamSharingRedux.d.ts +55 -0
- package/src/Redux/ActionsReducers/TeamSharingRedux.js +100 -0
- package/src/Redux/ActionsReducers/ThemeRedux.d.ts +35 -0
- package/src/Redux/ActionsReducers/ThemeRedux.js +57 -0
- package/src/Redux/ActionsReducers/ToolPanelRedux.d.ts +60 -0
- package/src/Redux/ActionsReducers/ToolPanelRedux.js +110 -0
- package/src/Redux/ActionsReducers/utils.d.ts +8 -0
- package/src/Redux/ActionsReducers/utils.js +18 -0
- package/src/Redux/DeadRedux.d.ts +25 -0
- package/src/Redux/DeadRedux.js +59 -0
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.d.ts +12 -0
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +104 -0
- package/src/Redux/Store/AdaptableReduxMerger.d.ts +13 -0
- package/src/Redux/Store/AdaptableReduxMerger.js +118 -0
- package/src/Redux/Store/AdaptableStore.d.ts +46 -0
- package/src/Redux/Store/AdaptableStore.js +1258 -0
- package/src/Redux/Store/Interface/IAdaptableStore.d.ts +14 -0
- package/src/Redux/Store/Interface/IAdaptableStore.js +2 -0
- package/src/Redux/Store/Interface/IStorageEngine.d.ts +9 -0
- package/src/Redux/Store/Interface/IStorageEngine.js +2 -0
- package/src/Strategy/AdaptableModuleBase.d.ts +55 -0
- package/src/Strategy/AdaptableModuleBase.js +254 -0
- package/src/Strategy/AlertModule.d.ts +27 -0
- package/src/Strategy/AlertModule.js +367 -0
- package/src/Strategy/BulkUpdateModule.d.ts +12 -0
- package/src/Strategy/BulkUpdateModule.js +148 -0
- package/src/Strategy/CalculatedColumnModule.d.ts +17 -0
- package/src/Strategy/CalculatedColumnModule.js +63 -0
- package/src/Strategy/CellSummaryModule.d.ts +13 -0
- package/src/Strategy/CellSummaryModule.js +97 -0
- package/src/Strategy/ChangeHistoryModule.d.ts +8 -0
- package/src/Strategy/ChangeHistoryModule.js +24 -0
- package/src/Strategy/ConditionalStyleModule.d.ts +22 -0
- package/src/Strategy/ConditionalStyleModule.js +184 -0
- package/src/Strategy/CustomSortModule.d.ts +16 -0
- package/src/Strategy/CustomSortModule.js +50 -0
- package/src/Strategy/DashboardModule.d.ts +13 -0
- package/src/Strategy/DashboardModule.js +76 -0
- package/src/Strategy/DataSourceModule.d.ts +12 -0
- package/src/Strategy/DataSourceModule.js +26 -0
- package/src/Strategy/ExportModule.d.ts +29 -0
- package/src/Strategy/ExportModule.js +193 -0
- package/src/Strategy/FilterModule.d.ts +18 -0
- package/src/Strategy/FilterModule.js +80 -0
- package/src/Strategy/FormatColumnModule.d.ts +18 -0
- package/src/Strategy/FormatColumnModule.js +213 -0
- package/src/Strategy/FreeTextColumnModule.d.ts +16 -0
- package/src/Strategy/FreeTextColumnModule.js +47 -0
- package/src/Strategy/GridInfoModule.d.ts +12 -0
- package/src/Strategy/GridInfoModule.js +78 -0
- package/src/Strategy/Interface/IBulkUpdateModule.d.ts +13 -0
- package/src/Strategy/Interface/IBulkUpdateModule.js +2 -0
- package/src/Strategy/Interface/ICellSummaryModule.d.ts +6 -0
- package/src/Strategy/Interface/ICellSummaryModule.js +2 -0
- package/src/Strategy/Interface/IConditionalStyleModule.d.ts +6 -0
- package/src/Strategy/Interface/IConditionalStyleModule.js +2 -0
- package/src/Strategy/Interface/IExportModule.d.ts +6 -0
- package/src/Strategy/Interface/IExportModule.js +2 -0
- package/src/Strategy/Interface/IModule.d.ts +54 -0
- package/src/Strategy/Interface/IModule.js +2 -0
- package/src/Strategy/Interface/IModuleActionReturn.d.ts +5 -0
- package/src/Strategy/Interface/IModuleActionReturn.js +2 -0
- package/src/Strategy/Interface/IPlusMinusModule.d.ts +7 -0
- package/src/Strategy/Interface/IPlusMinusModule.js +2 -0
- package/src/Strategy/Interface/IScheduleModule.d.ts +4 -0
- package/src/Strategy/Interface/IScheduleModule.js +2 -0
- package/src/Strategy/Interface/IShortcutModule.d.ts +4 -0
- package/src/Strategy/Interface/IShortcutModule.js +2 -0
- package/src/Strategy/Interface/ISmartEditModule.d.ts +10 -0
- package/src/Strategy/Interface/ISmartEditModule.js +2 -0
- package/src/Strategy/LayoutModule.d.ts +19 -0
- package/src/Strategy/LayoutModule.js +112 -0
- package/src/Strategy/PlusMinusModule.d.ts +26 -0
- package/src/Strategy/PlusMinusModule.js +183 -0
- package/src/Strategy/QueryModule.d.ts +13 -0
- package/src/Strategy/QueryModule.js +29 -0
- package/src/Strategy/QuickSearchModule.d.ts +6 -0
- package/src/Strategy/QuickSearchModule.js +12 -0
- package/src/Strategy/ScheduleModule.d.ts +13 -0
- package/src/Strategy/ScheduleModule.js +120 -0
- package/src/Strategy/ShortcutModule.d.ts +18 -0
- package/src/Strategy/ShortcutModule.js +72 -0
- package/src/Strategy/SmartEditModule.d.ts +17 -0
- package/src/Strategy/SmartEditModule.js +168 -0
- package/src/Strategy/StateManagementModule.d.ts +6 -0
- package/src/Strategy/StateManagementModule.js +12 -0
- package/src/Strategy/SystemStatusModule.d.ts +10 -0
- package/src/Strategy/SystemStatusModule.js +34 -0
- package/src/Strategy/TeamSharingModule.d.ts +11 -0
- package/src/Strategy/TeamSharingModule.js +73 -0
- package/src/Strategy/ThemeModule.d.ts +9 -0
- package/src/Strategy/ThemeModule.js +18 -0
- package/src/Strategy/ToolPanelModule.d.ts +8 -0
- package/src/Strategy/ToolPanelModule.js +43 -0
- package/src/Utilities/Cancelable.d.ts +4 -0
- package/src/Utilities/Cancelable.js +2 -0
- package/src/Utilities/Constants/ConfigConstants.d.ts +10 -0
- package/src/Utilities/Constants/ConfigConstants.js +14 -0
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +9 -0
- package/src/Utilities/Constants/DocumentationLinkConstants.js +12 -0
- package/src/Utilities/Constants/GeneralConstants.d.ts +66 -0
- package/src/Utilities/Constants/GeneralConstants.js +92 -0
- package/src/Utilities/Constants/ModuleConstants.d.ts +32 -0
- package/src/Utilities/Constants/ModuleConstants.js +34 -0
- package/src/Utilities/Defaults/DefaultAdaptableOptions.d.ts +2 -0
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +213 -0
- package/src/Utilities/Defaults/DefaultCategoryChartProperties.d.ts +2 -0
- package/src/Utilities/Defaults/DefaultCategoryChartProperties.js +56 -0
- package/src/Utilities/Defaults/DefaultPieChartProperties.d.ts +2 -0
- package/src/Utilities/Defaults/DefaultPieChartProperties.js +13 -0
- package/src/Utilities/Defaults/DefaultSparklinesChartProperties.d.ts +2 -0
- package/src/Utilities/Defaults/DefaultSparklinesChartProperties.js +25 -0
- package/src/Utilities/Emitter.d.ts +21 -0
- package/src/Utilities/Emitter.js +232 -0
- package/src/Utilities/ExpressionFunctions/ExpressionEvaluationError.d.ts +4 -0
- package/src/Utilities/ExpressionFunctions/ExpressionEvaluationError.js +11 -0
- package/src/Utilities/ExpressionFunctions/aggregationExpressionFunctions.d.ts +6 -0
- package/src/Utilities/ExpressionFunctions/aggregationExpressionFunctions.js +211 -0
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +53 -0
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +601 -0
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +6 -0
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +421 -0
- package/src/Utilities/ExpressionFunctions/reactiveExpressionFunctionUtils.d.ts +12 -0
- package/src/Utilities/ExpressionFunctions/reactiveExpressionFunctionUtils.js +87 -0
- package/src/Utilities/ExpressionFunctions/types.d.ts +7 -0
- package/src/Utilities/ExpressionFunctions/types.js +2 -0
- package/src/Utilities/Extensions/ArrayExtensions.d.ts +67 -0
- package/src/Utilities/Extensions/ArrayExtensions.js +313 -0
- package/src/Utilities/Extensions/EnumExtensions.d.ts +11 -0
- package/src/Utilities/Extensions/EnumExtensions.js +41 -0
- package/src/Utilities/Extensions/NumberExtensions.d.ts +5 -0
- package/src/Utilities/Extensions/NumberExtensions.js +24 -0
- package/src/Utilities/Extensions/StringExtensions.d.ts +39 -0
- package/src/Utilities/Extensions/StringExtensions.js +111 -0
- package/src/Utilities/Extensions/TypeExtensions.d.ts +44 -0
- package/src/Utilities/Extensions/TypeExtensions.js +2 -0
- package/src/Utilities/Helpers/AdaptableHelper.d.ts +25 -0
- package/src/Utilities/Helpers/AdaptableHelper.js +156 -0
- package/src/Utilities/Helpers/CalendarHelper.d.ts +25 -0
- package/src/Utilities/Helpers/CalendarHelper.js +174 -0
- package/src/Utilities/Helpers/DateHelper.d.ts +4 -0
- package/src/Utilities/Helpers/DateHelper.js +38 -0
- package/src/Utilities/Helpers/FormatHelper.d.ts +11 -0
- package/src/Utilities/Helpers/FormatHelper.js +107 -0
- package/src/Utilities/Helpers/Helper.d.ts +38 -0
- package/src/Utilities/Helpers/Helper.js +264 -0
- package/src/Utilities/Helpers/LoggingHelper.d.ts +15 -0
- package/src/Utilities/Helpers/LoggingHelper.js +110 -0
- package/src/Utilities/Helpers/PreviewHelper.d.ts +11 -0
- package/src/Utilities/Helpers/PreviewHelper.js +73 -0
- package/src/Utilities/Helpers/StyleHelper.d.ts +5 -0
- package/src/Utilities/Helpers/StyleHelper.js +44 -0
- package/src/Utilities/Interface/AdaptableToolPanelContext.d.ts +4 -0
- package/src/Utilities/Interface/AdaptableToolPanelContext.js +2 -0
- package/src/Utilities/Interface/ColumnFilterContext.d.ts +7 -0
- package/src/Utilities/Interface/ColumnFilterContext.js +2 -0
- package/src/Utilities/Interface/IPPStyle.d.ts +31 -0
- package/src/Utilities/Interface/IPPStyle.js +2 -0
- package/src/Utilities/Interface/KeyValuePair.d.ts +7 -0
- package/src/Utilities/Interface/KeyValuePair.js +2 -0
- package/src/Utilities/Interface/MessagePopups.d.ts +59 -0
- package/src/Utilities/Interface/MessagePopups.js +2 -0
- package/src/Utilities/Interface/Preview.d.ts +17 -0
- package/src/Utilities/Interface/Preview.js +2 -0
- package/src/Utilities/Interface/ProgressIndicator.d.ts +4 -0
- package/src/Utilities/Interface/ProgressIndicator.js +2 -0
- package/src/Utilities/MenuItem.d.ts +28 -0
- package/src/Utilities/MenuItem.js +37 -0
- package/src/Utilities/ObjectFactory.d.ts +116 -0
- package/src/Utilities/ObjectFactory.js +491 -0
- package/src/Utilities/Services/AlertService.d.ts +15 -0
- package/src/Utilities/Services/AlertService.js +70 -0
- package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +11 -0
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +67 -0
- package/src/Utilities/Services/DataService.d.ts +27 -0
- package/src/Utilities/Services/DataService.js +96 -0
- package/src/Utilities/Services/EntitlementService.d.ts +14 -0
- package/src/Utilities/Services/EntitlementService.js +51 -0
- package/src/Utilities/Services/ExpressionService.d.ts +34 -0
- package/src/Utilities/Services/ExpressionService.js +195 -0
- package/src/Utilities/Services/Interface/IAdaptableService.d.ts +3 -0
- package/src/Utilities/Services/Interface/IAdaptableService.js +2 -0
- package/src/Utilities/Services/Interface/IAlertService.d.ts +16 -0
- package/src/Utilities/Services/Interface/IAlertService.js +2 -0
- package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +7 -0
- package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.js +2 -0
- package/src/Utilities/Services/Interface/IDataService.d.ts +12 -0
- package/src/Utilities/Services/Interface/IDataService.js +2 -0
- package/src/Utilities/Services/Interface/IEntitlementService.d.ts +10 -0
- package/src/Utilities/Services/Interface/IEntitlementService.js +2 -0
- package/src/Utilities/Services/Interface/IExpressionService.d.ts +26 -0
- package/src/Utilities/Services/Interface/IExpressionService.js +2 -0
- package/src/Utilities/Services/Interface/ILicenseService.d.ts +2 -0
- package/src/Utilities/Services/Interface/ILicenseService.js +2 -0
- package/src/Utilities/Services/Interface/IMetamodelService.d.ts +14 -0
- package/src/Utilities/Services/Interface/IMetamodelService.js +2 -0
- package/src/Utilities/Services/Interface/IModuleService.d.ts +16 -0
- package/src/Utilities/Services/Interface/IModuleService.js +2 -0
- package/src/Utilities/Services/Interface/IReportService.d.ts +22 -0
- package/src/Utilities/Services/Interface/IReportService.js +2 -0
- package/src/Utilities/Services/Interface/ITeamSharingService.d.ts +14 -0
- package/src/Utilities/Services/Interface/ITeamSharingService.js +2 -0
- package/src/Utilities/Services/Interface/IValidationService.d.ts +12 -0
- package/src/Utilities/Services/Interface/IValidationService.js +2 -0
- package/src/Utilities/Services/LicenseService.d.ts +27 -0
- package/src/Utilities/Services/LicenseService.js +145 -0
- package/src/Utilities/Services/MetamodelService.d.ts +11 -0
- package/src/Utilities/Services/MetamodelService.js +70 -0
- package/src/Utilities/Services/ModuleService.d.ts +20 -0
- package/src/Utilities/Services/ModuleService.js +147 -0
- package/src/Utilities/Services/ReportService.d.ts +30 -0
- package/src/Utilities/Services/ReportService.js +353 -0
- package/src/Utilities/Services/TeamSharingService.d.ts +22 -0
- package/src/Utilities/Services/TeamSharingService.js +183 -0
- package/src/Utilities/Services/ValidationService.d.ts +17 -0
- package/src/Utilities/Services/ValidationService.js +112 -0
- package/src/Utilities/getScrollbarSize.d.ts +2 -0
- package/src/Utilities/getScrollbarSize.js +30 -0
- package/src/Utilities/isAdaptableObject.d.ts +2 -0
- package/src/Utilities/isAdaptableObject.js +7 -0
- package/src/Utilities/isMacLike.d.ts +1 -0
- package/src/Utilities/isMacLike.js +7 -0
- package/src/Utilities/license/LicenseDetails.d.ts +10 -0
- package/src/Utilities/license/LicenseDetails.js +2 -0
- package/src/Utilities/license/crc32.d.ts +1 -0
- package/src/Utilities/license/crc32.js +47 -0
- package/src/Utilities/license/decode.d.ts +6 -0
- package/src/Utilities/license/decode.js +67 -0
- package/src/Utilities/reorder.d.ts +1 -0
- package/src/Utilities/reorder.js +16 -0
- package/src/Utilities/sortWithOrder.d.ts +11 -0
- package/src/Utilities/sortWithOrder.js +54 -0
- package/src/Utilities/waitForCondition.d.ts +1 -0
- package/src/Utilities/waitForCondition.js +28 -0
- package/src/View/AdaptableContext.d.ts +5 -0
- package/src/View/AdaptableContext.js +10 -0
- package/src/View/AdaptablePopover/index.d.ts +17 -0
- package/src/View/AdaptablePopover/index.js +37 -0
- package/src/View/AdaptableView.d.ts +5 -0
- package/src/View/AdaptableView.js +60 -0
- package/src/View/AdaptableViewFactory.d.ts +7 -0
- package/src/View/AdaptableViewFactory.js +89 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +12 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +274 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.d.ts +8 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +124 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.d.ts +9 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +74 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.d.ts +19 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.js +57 -0
- package/src/View/AdaptableWizardView/helper.d.ts +19 -0
- package/src/View/AdaptableWizardView/helper.js +91 -0
- package/src/View/AdaptableWizardView/index.d.ts +25 -0
- package/src/View/AdaptableWizardView/index.js +111 -0
- package/src/View/Alert/AlertEntityRow.d.ts +11 -0
- package/src/View/Alert/AlertEntityRow.js +33 -0
- package/src/View/Alert/AlertPopup.d.ts +42 -0
- package/src/View/Alert/AlertPopup.js +205 -0
- package/src/View/Alert/AlertSharedEntity.d.ts +5 -0
- package/src/View/Alert/AlertSharedEntity.js +19 -0
- package/src/View/Alert/AlertViewPanel.d.ts +22 -0
- package/src/View/Alert/AlertViewPanel.js +57 -0
- package/src/View/Alert/AlertsPanel.d.ts +14 -0
- package/src/View/Alert/AlertsPanel.js +43 -0
- package/src/View/Alert/FlashingAlertEntityRow.d.ts +7 -0
- package/src/View/Alert/FlashingAlertEntityRow.js +22 -0
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.d.ts +8 -0
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +67 -0
- package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +13 -0
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +142 -0
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +8 -0
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +93 -0
- package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +8 -0
- package/src/View/Alert/Wizard/AlertRulesWizardSection.js +24 -0
- package/src/View/Alert/Wizard/AlertScopeWizardSection.d.ts +7 -0
- package/src/View/Alert/Wizard/AlertScopeWizardSection.js +9 -0
- package/src/View/Alert/Wizard/AlertSelectQueryWizard.d.ts +19 -0
- package/src/View/Alert/Wizard/AlertSelectQueryWizard.js +59 -0
- package/src/View/Alert/Wizard/AlertWizard.d.ts +6 -0
- package/src/View/Alert/Wizard/AlertWizard.js +75 -0
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +7 -0
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +26 -0
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.d.ts +8 -0
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +56 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertDurationWizardSection.d.ts +10 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertDurationWizardSection.js +60 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertRulesWizardSection.d.ts +7 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertRulesWizardSection.js +57 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertScopeWizardSection.d.ts +7 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertScopeWizardSection.js +9 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertStyleWizardSection.d.ts +10 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertStyleWizardSection.js +48 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertWizard.d.ts +6 -0
- package/src/View/Alert/Wizard/FlashingAlertWizard/FlashingAlertWizard.js +89 -0
- package/src/View/Alert/Wizard/isValidAlertRules.d.ts +4 -0
- package/src/View/Alert/Wizard/isValidAlertRules.js +44 -0
- package/src/View/BulkUpdate/BulkUpdatePopup.d.ts +31 -0
- package/src/View/BulkUpdate/BulkUpdatePopup.js +112 -0
- package/src/View/BulkUpdate/BulkUpdateViewPanel.d.ts +29 -0
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +107 -0
- package/src/View/CalculatedColumn/CalculatedColumnEntityRow.d.ts +9 -0
- package/src/View/CalculatedColumn/CalculatedColumnEntityRow.js +28 -0
- package/src/View/CalculatedColumn/CalculatedColumnPopup.d.ts +25 -0
- package/src/View/CalculatedColumn/CalculatedColumnPopup.js +117 -0
- package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.d.ts +5 -0
- package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +20 -0
- package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +19 -0
- package/src/View/CalculatedColumn/CalculatedColumnSummary.js +72 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.d.ts +9 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +49 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.d.ts +9 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +143 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.d.ts +6 -0
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +45 -0
- package/src/View/CellSummary/CellSummaryDetails.d.ts +9 -0
- package/src/View/CellSummary/CellSummaryDetails.js +35 -0
- package/src/View/CellSummary/CellSummaryPopover.d.ts +8 -0
- package/src/View/CellSummary/CellSummaryPopover.js +12 -0
- package/src/View/CellSummary/CellSummaryPopup.d.ts +15 -0
- package/src/View/CellSummary/CellSummaryPopup.js +29 -0
- package/src/View/CellSummary/CellSummaryViewPanel.d.ts +25 -0
- package/src/View/CellSummary/CellSummaryViewPanel.js +112 -0
- package/src/View/ChangeHistory/ChangeHistoryGrid.d.ts +9 -0
- package/src/View/ChangeHistory/ChangeHistoryGrid.js +306 -0
- package/src/View/ChangeHistory/ChangeHistoryPopup.d.ts +12 -0
- package/src/View/ChangeHistory/ChangeHistoryPopup.js +40 -0
- package/src/View/ColorPicker.d.ts +8 -0
- package/src/View/ColorPicker.js +22 -0
- package/src/View/Components/AdaptableDateInput/index.d.ts +5 -0
- package/src/View/Components/AdaptableDateInput/index.js +37 -0
- package/src/View/Components/AdaptableInput/index.d.ts +5 -0
- package/src/View/Components/AdaptableInput/index.js +20 -0
- package/src/View/Components/AdaptableObjectCollection/index.d.ts +12 -0
- package/src/View/Components/AdaptableObjectCollection/index.js +16 -0
- package/src/View/Components/AdaptableObjectRow/index.d.ts +12 -0
- package/src/View/Components/AdaptableObjectRow/index.js +24 -0
- package/src/View/Components/Buttons/ButtonApply.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonApply.js +12 -0
- package/src/View/Components/Buttons/ButtonBase/index.d.ts +23 -0
- package/src/View/Components/Buttons/ButtonBase/index.js +74 -0
- package/src/View/Components/Buttons/ButtonClear.d.ts +9 -0
- package/src/View/Components/Buttons/ButtonClear.js +12 -0
- package/src/View/Components/Buttons/ButtonClone.d.ts +3 -0
- package/src/View/Components/Buttons/ButtonClone.js +9 -0
- package/src/View/Components/Buttons/ButtonClose.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonClose.js +12 -0
- package/src/View/Components/Buttons/ButtonConfigure.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonConfigure.js +12 -0
- package/src/View/Components/Buttons/ButtonDelete.d.ts +18 -0
- package/src/View/Components/Buttons/ButtonDelete.js +45 -0
- package/src/View/Components/Buttons/ButtonEdit.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonEdit.js +12 -0
- package/src/View/Components/Buttons/ButtonExpand.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonExpand.js +12 -0
- package/src/View/Components/Buttons/ButtonExport.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonExport.js +12 -0
- package/src/View/Components/Buttons/ButtonFunction.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonFunction.js +12 -0
- package/src/View/Components/Buttons/ButtonGeneral.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonGeneral.js +12 -0
- package/src/View/Components/Buttons/ButtonInfo.d.ts +9 -0
- package/src/View/Components/Buttons/ButtonInfo.js +12 -0
- package/src/View/Components/Buttons/ButtonInvalid.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonInvalid.js +12 -0
- package/src/View/Components/Buttons/ButtonLogin.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonLogin.js +12 -0
- package/src/View/Components/Buttons/ButtonLogout.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonLogout.js +12 -0
- package/src/View/Components/Buttons/ButtonMaximise.d.ts +8 -0
- package/src/View/Components/Buttons/ButtonMaximise.js +12 -0
- package/src/View/Components/Buttons/ButtonMinimise.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonMinimise.js +12 -0
- package/src/View/Components/Buttons/ButtonNew.d.ts +3 -0
- package/src/View/Components/Buttons/ButtonNew.js +9 -0
- package/src/View/Components/Buttons/ButtonNewPage.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonNewPage.js +13 -0
- package/src/View/Components/Buttons/ButtonPause.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonPause.js +12 -0
- package/src/View/Components/Buttons/ButtonPlay.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonPlay.js +13 -0
- package/src/View/Components/Buttons/ButtonPreviewDelete.d.ts +4 -0
- package/src/View/Components/Buttons/ButtonPreviewDelete.js +8 -0
- package/src/View/Components/Buttons/ButtonSave.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonSave.js +12 -0
- package/src/View/Components/Buttons/ButtonSchedule.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonSchedule.js +12 -0
- package/src/View/Components/Buttons/ButtonShare.d.ts +15 -0
- package/src/View/Components/Buttons/ButtonShare.js +23 -0
- package/src/View/Components/Buttons/ButtonShow.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonShow.js +12 -0
- package/src/View/Components/Buttons/ButtonShowChart.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonShowChart.js +12 -0
- package/src/View/Components/Buttons/ButtonStop.d.ts +7 -0
- package/src/View/Components/Buttons/ButtonStop.js +12 -0
- package/src/View/Components/Buttons/ButtonUndo.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonUndo.js +12 -0
- package/src/View/Components/Buttons/EntityListActionButtons.d.ts +39 -0
- package/src/View/Components/Buttons/EntityListActionButtons.js +79 -0
- package/src/View/Components/Buttons/SuspendToggleButton.d.ts +12 -0
- package/src/View/Components/Buttons/SuspendToggleButton.js +17 -0
- package/src/View/Components/ColumnSelector/index.d.ts +17 -0
- package/src/View/Components/ColumnSelector/index.js +28 -0
- package/src/View/Components/EntityRowItem.d.ts +7 -0
- package/src/View/Components/EntityRowItem.js +13 -0
- package/src/View/Components/EntityRulesEditor/index.d.ts +42 -0
- package/src/View/Components/EntityRulesEditor/index.js +174 -0
- package/src/View/Components/ExpressionWizard.d.ts +24 -0
- package/src/View/Components/ExpressionWizard.js +79 -0
- package/src/View/Components/FilterForm/FilterForm.d.ts +63 -0
- package/src/View/Components/FilterForm/FilterForm.js +262 -0
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +17 -0
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +68 -0
- package/src/View/Components/FilterForm/ListBoxMenu.d.ts +14 -0
- package/src/View/Components/FilterForm/ListBoxMenu.js +33 -0
- package/src/View/Components/FilterForm/QuickFilterForm.d.ts +50 -0
- package/src/View/Components/FilterForm/QuickFilterForm.js +283 -0
- package/src/View/Components/FilterForm/Waiting.d.ts +8 -0
- package/src/View/Components/FilterForm/Waiting.js +18 -0
- package/src/View/Components/Forms/AdaptableForm.d.ts +6 -0
- package/src/View/Components/Forms/AdaptableForm.js +21 -0
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +10 -0
- package/src/View/Components/Forms/AdaptableFormControlTextClear.js +39 -0
- package/src/View/Components/ListBox/DualListBoxEditor.d.ts +22 -0
- package/src/View/Components/ListBox/DualListBoxEditor.js +519 -0
- package/src/View/Components/ListBox/ListBoxFilterSortComponent.d.ts +13 -0
- package/src/View/Components/ListBox/ListBoxFilterSortComponent.js +31 -0
- package/src/View/Components/ModuleProfile.d.ts +8 -0
- package/src/View/Components/ModuleProfile.js +18 -0
- package/src/View/Components/ModuleSummary/ModuleDetail.d.ts +23 -0
- package/src/View/Components/ModuleSummary/ModuleDetail.js +19 -0
- package/src/View/Components/ModuleSummary/ModuleHeader.d.ts +15 -0
- package/src/View/Components/ModuleSummary/ModuleHeader.js +20 -0
- package/src/View/Components/ModuleSummary/SummaryRowItem.d.ts +7 -0
- package/src/View/Components/ModuleSummary/SummaryRowItem.js +17 -0
- package/src/View/Components/ModuleValueSelector/index.d.ts +5 -0
- package/src/View/Components/ModuleValueSelector/index.js +34 -0
- package/src/View/Components/NewScopeComponent.d.ts +24 -0
- package/src/View/Components/NewScopeComponent.js +146 -0
- package/src/View/Components/Panels/FilterFormPanel.d.ts +22 -0
- package/src/View/Components/Panels/FilterFormPanel.js +41 -0
- package/src/View/Components/Panels/PanelDashboard/index.d.ts +15 -0
- package/src/View/Components/Panels/PanelDashboard/index.js +21 -0
- package/src/View/Components/Panels/PanelToolPanel/index.d.ts +14 -0
- package/src/View/Components/Panels/PanelToolPanel/index.js +31 -0
- package/src/View/Components/Panels/PanelWithButton.d.ts +22 -0
- package/src/View/Components/Panels/PanelWithButton.js +36 -0
- package/src/View/Components/Panels/PanelWithIImageThreeButtons.d.ts +11 -0
- package/src/View/Components/Panels/PanelWithIImageThreeButtons.js +28 -0
- package/src/View/Components/Panels/PanelWithImage.d.ts +21 -0
- package/src/View/Components/Panels/PanelWithImage.js +40 -0
- package/src/View/Components/Panels/PanelWithRow.d.ts +10 -0
- package/src/View/Components/Panels/PanelWithRow.js +21 -0
- package/src/View/Components/Panels/PanelWithTwoButtons.d.ts +12 -0
- package/src/View/Components/Panels/PanelWithTwoButtons.js +20 -0
- package/src/View/Components/Panels/ToolPanelSettingsPanel.d.ts +8 -0
- package/src/View/Components/Panels/ToolPanelSettingsPanel.js +31 -0
- package/src/View/Components/Popups/AdaptableChart.d.ts +18 -0
- package/src/View/Components/Popups/AdaptableChart.js +40 -0
- package/src/View/Components/Popups/AdaptableLoadingScreen.d.ts +8 -0
- package/src/View/Components/Popups/AdaptableLoadingScreen.js +18 -0
- package/src/View/Components/Popups/AdaptablePopup.d.ts +23 -0
- package/src/View/Components/Popups/AdaptablePopup.js +59 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +10 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.js +73 -0
- package/src/View/Components/Popups/AdaptablePopupConfirmation.d.ts +29 -0
- package/src/View/Components/Popups/AdaptablePopupConfirmation.js +56 -0
- package/src/View/Components/Popups/AdaptablePopupPrompt.d.ts +18 -0
- package/src/View/Components/Popups/AdaptablePopupPrompt.js +47 -0
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.d.ts +9 -0
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +46 -0
- package/src/View/Components/Popups/AdaptableToaster.d.ts +7 -0
- package/src/View/Components/Popups/AdaptableToaster.js +33 -0
- package/src/View/Components/Popups/PopupContext.d.ts +7 -0
- package/src/View/Components/Popups/PopupContext.js +12 -0
- package/src/View/Components/PreviewResultsPanel.d.ts +16 -0
- package/src/View/Components/PreviewResultsPanel.js +61 -0
- package/src/View/Components/RangesComponent.d.ts +34 -0
- package/src/View/Components/RangesComponent.js +186 -0
- package/src/View/Components/ScopeComponent.d.ts +24 -0
- package/src/View/Components/ScopeComponent.js +135 -0
- package/src/View/Components/Selectors/ColumnSelector.d.ts +17 -0
- package/src/View/Components/Selectors/ColumnSelector.js +54 -0
- package/src/View/Components/Selectors/ColumnValueSelector.d.ts +31 -0
- package/src/View/Components/Selectors/ColumnValueSelector.js +106 -0
- package/src/View/Components/SharedProps/BaseProps.d.ts +8 -0
- package/src/View/Components/SharedProps/BaseProps.js +2 -0
- package/src/View/Components/SharedProps/ChartDisplayPopupPropsBase.d.ts +7 -0
- package/src/View/Components/SharedProps/ChartDisplayPopupPropsBase.js +2 -0
- package/src/View/Components/SharedProps/ConfigEntityRowProps.d.ts +30 -0
- package/src/View/Components/SharedProps/ConfigEntityRowProps.js +2 -0
- package/src/View/Components/SharedProps/EditableConfigEntityState.d.ts +14 -0
- package/src/View/Components/SharedProps/EditableConfigEntityState.js +10 -0
- package/src/View/Components/SharedProps/ModuleSummaryProps.d.ts +9 -0
- package/src/View/Components/SharedProps/ModuleSummaryProps.js +2 -0
- package/src/View/Components/SharedProps/ModuleViewPopupProps.d.ts +25 -0
- package/src/View/Components/SharedProps/ModuleViewPopupProps.js +2 -0
- package/src/View/Components/SharedProps/ToolPanelModuleViewPopupProps.d.ts +13 -0
- package/src/View/Components/SharedProps/ToolPanelModuleViewPopupProps.js +2 -0
- package/src/View/Components/SharedProps/ToolbarModuleViewPopupProps.d.ts +14 -0
- package/src/View/Components/SharedProps/ToolbarModuleViewPopupProps.js +2 -0
- package/src/View/Components/SharedProps/ViewPanelProps.d.ts +9 -0
- package/src/View/Components/SharedProps/ViewPanelProps.js +2 -0
- package/src/View/Components/SharedProps/WizardScopeState.d.ts +4 -0
- package/src/View/Components/SharedProps/WizardScopeState.js +2 -0
- package/src/View/Components/StyleComponent.d.ts +32 -0
- package/src/View/Components/StyleComponent.js +153 -0
- package/src/View/Components/StyleVisualItem.d.ts +9 -0
- package/src/View/Components/StyleVisualItem.js +45 -0
- package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +43 -0
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +296 -0
- package/src/View/Components/ToolPanel/CustomToolPanelContent.d.ts +6 -0
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +71 -0
- package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +27 -0
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +110 -0
- package/src/View/Components/ToolPanel/ToolPanelWrapper.d.ts +14 -0
- package/src/View/Components/ToolPanel/ToolPanelWrapper.js +61 -0
- package/src/View/Components/ValueSelector/index.d.ts +38 -0
- package/src/View/Components/ValueSelector/index.js +203 -0
- package/src/View/Components/WizardSummaryPage.d.ts +7 -0
- package/src/View/Components/WizardSummaryPage.js +23 -0
- package/src/View/Components/WizardSummaryRow.d.ts +9 -0
- package/src/View/Components/WizardSummaryRow.js +16 -0
- package/src/View/ConditionalStyle/ConditionalStyleEntityRow.d.ts +5 -0
- package/src/View/ConditionalStyle/ConditionalStyleEntityRow.js +26 -0
- package/src/View/ConditionalStyle/ConditionalStylePopup.d.ts +30 -0
- package/src/View/ConditionalStyle/ConditionalStylePopup.js +144 -0
- package/src/View/ConditionalStyle/ConditionalStyleSharedEntity.d.ts +5 -0
- package/src/View/ConditionalStyle/ConditionalStyleSharedEntity.js +23 -0
- package/src/View/ConditionalStyle/ConditionalStyleSummary.d.ts +25 -0
- package/src/View/ConditionalStyle/ConditionalStyleSummary.js +107 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.d.ts +9 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +42 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.d.ts +8 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +42 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.d.ts +8 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +22 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.d.ts +6 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +78 -0
- package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.d.ts +1 -0
- package/src/View/ConditionalStyle/Wizard/DEFAULT_PREDICATE_ID_FOR_CONDITIONAL_STYLE.js +4 -0
- package/src/View/CustomSort/CustomSortEntityRow.d.ts +10 -0
- package/src/View/CustomSort/CustomSortEntityRow.js +32 -0
- package/src/View/CustomSort/CustomSortPopup.d.ts +27 -0
- package/src/View/CustomSort/CustomSortPopup.js +138 -0
- package/src/View/CustomSort/CustomSortSharedEntity.d.ts +6 -0
- package/src/View/CustomSort/CustomSortSharedEntity.js +24 -0
- package/src/View/CustomSort/CustomSortSummary.d.ts +21 -0
- package/src/View/CustomSort/CustomSortSummary.js +110 -0
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.d.ts +9 -0
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +51 -0
- package/src/View/CustomSort/Wizard/CustomSortSummaryWizard.d.ts +15 -0
- package/src/View/CustomSort/Wizard/CustomSortSummaryWizard.js +36 -0
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.d.ts +8 -0
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +53 -0
- package/src/View/CustomSort/Wizard/CustomSortWizard.d.ts +7 -0
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +45 -0
- package/src/View/Dashboard/CustomToolbarWrapper.d.ts +7 -0
- package/src/View/Dashboard/CustomToolbarWrapper.js +67 -0
- package/src/View/Dashboard/Dashboard.d.ts +27 -0
- package/src/View/Dashboard/Dashboard.js +251 -0
- package/src/View/Dashboard/DashboardPopup.d.ts +27 -0
- package/src/View/Dashboard/DashboardPopup.js +101 -0
- package/src/View/Dashboard/DashboardViewPanel.d.ts +17 -0
- package/src/View/Dashboard/DashboardViewPanel.js +39 -0
- package/src/View/Dashboard/ModuleToolbarWrapper.d.ts +9 -0
- package/src/View/Dashboard/ModuleToolbarWrapper.js +16 -0
- package/src/View/DataSource/DataSourceEntityRow.d.ts +12 -0
- package/src/View/DataSource/DataSourceEntityRow.js +29 -0
- package/src/View/DataSource/DataSourcePopup.d.ts +28 -0
- package/src/View/DataSource/DataSourcePopup.js +97 -0
- package/src/View/DataSource/DataSourceViewPanel.d.ts +19 -0
- package/src/View/DataSource/DataSourceViewPanel.js +67 -0
- package/src/View/DataSource/Wizard/DataSourceSettingsSummary.d.ts +2 -0
- package/src/View/DataSource/Wizard/DataSourceSettingsSummary.js +17 -0
- package/src/View/DataSource/Wizard/DataSourceSettingsWizard.d.ts +8 -0
- package/src/View/DataSource/Wizard/DataSourceSettingsWizard.js +42 -0
- package/src/View/DataSource/Wizard/DataSourceWizard.d.ts +9 -0
- package/src/View/DataSource/Wizard/DataSourceWizard.js +28 -0
- package/src/View/Export/ExportCustomDestinationDialog.d.ts +11 -0
- package/src/View/Export/ExportCustomDestinationDialog.js +47 -0
- package/src/View/Export/ExportCustomDestinationFormPopups.d.ts +5 -0
- package/src/View/Export/ExportCustomDestinationFormPopups.js +15 -0
- package/src/View/Export/ExportPopup.d.ts +34 -0
- package/src/View/Export/ExportPopup.js +139 -0
- package/src/View/Export/ExportSharedEntity.d.ts +5 -0
- package/src/View/Export/ExportSharedEntity.js +16 -0
- package/src/View/Export/ExportViewPanel.d.ts +31 -0
- package/src/View/Export/ExportViewPanel.js +159 -0
- package/src/View/Export/ProgressIndicator.d.ts +6 -0
- package/src/View/Export/ProgressIndicator.js +25 -0
- package/src/View/Export/ReportEntityRow.d.ts +10 -0
- package/src/View/Export/ReportEntityRow.js +49 -0
- package/src/View/Export/Wizard/NewReportWizard.d.ts +6 -0
- package/src/View/Export/Wizard/NewReportWizard.js +48 -0
- package/src/View/Export/Wizard/ReportColumnTypeWizard.d.ts +20 -0
- package/src/View/Export/Wizard/ReportColumnTypeWizard.js +72 -0
- package/src/View/Export/Wizard/ReportColumnsWizardSection.d.ts +8 -0
- package/src/View/Export/Wizard/ReportColumnsWizardSection.js +70 -0
- package/src/View/Export/Wizard/ReportNameWizardSection.d.ts +9 -0
- package/src/View/Export/Wizard/ReportNameWizardSection.js +44 -0
- package/src/View/Export/Wizard/ReportRowTypeWizard.d.ts +20 -0
- package/src/View/Export/Wizard/ReportRowTypeWizard.js +72 -0
- package/src/View/Export/Wizard/ReportRowsWizardSection.d.ts +8 -0
- package/src/View/Export/Wizard/ReportRowsWizardSection.js +71 -0
- package/src/View/Export/Wizard/ReportScopeWizard.d.ts +17 -0
- package/src/View/Export/Wizard/ReportScopeWizard.js +52 -0
- package/src/View/Export/Wizard/ReportSettingsWizard.d.ts +21 -0
- package/src/View/Export/Wizard/ReportSettingsWizard.js +62 -0
- package/src/View/Export/Wizard/ReportSummaryWizard.d.ts +15 -0
- package/src/View/Export/Wizard/ReportSummaryWizard.js +44 -0
- package/src/View/Export/Wizard/ReportWizard.d.ts +7 -0
- package/src/View/Export/Wizard/ReportWizard.js +50 -0
- package/src/View/Filter/ActiveFiltersPanel.d.ts +16 -0
- package/src/View/Filter/ActiveFiltersPanel.js +37 -0
- package/src/View/Filter/FilterEntityRow.d.ts +12 -0
- package/src/View/Filter/FilterEntityRow.js +20 -0
- package/src/View/Filter/FilterPopup.d.ts +20 -0
- package/src/View/Filter/FilterPopup.js +50 -0
- package/src/View/Filter/FilterSharedEntity.d.ts +5 -0
- package/src/View/Filter/FilterSharedEntity.js +15 -0
- package/src/View/Filter/FilterSummary.d.ts +15 -0
- package/src/View/Filter/FilterSummary.js +52 -0
- package/src/View/Filter/FilterViewPanel.d.ts +25 -0
- package/src/View/Filter/FilterViewPanel.js +53 -0
- package/src/View/FormatColumn/FormatColumnEntityRow.d.ts +9 -0
- package/src/View/FormatColumn/FormatColumnEntityRow.js +103 -0
- package/src/View/FormatColumn/FormatColumnPopup.d.ts +27 -0
- package/src/View/FormatColumn/FormatColumnPopup.js +133 -0
- package/src/View/FormatColumn/FormatColumnSharedEntity.d.ts +5 -0
- package/src/View/FormatColumn/FormatColumnSharedEntity.js +18 -0
- package/src/View/FormatColumn/FormatColumnSummary.d.ts +20 -0
- package/src/View/FormatColumn/FormatColumnSummary.js +95 -0
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +15 -0
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +349 -0
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.d.ts +8 -0
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +23 -0
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.d.ts +8 -0
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +78 -0
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.d.ts +10 -0
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +317 -0
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.d.ts +6 -0
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +130 -0
- package/src/View/FreeTextColumn/FreeTextColumnEntityRow.d.ts +5 -0
- package/src/View/FreeTextColumn/FreeTextColumnEntityRow.js +31 -0
- package/src/View/FreeTextColumn/FreeTextColumnPopup.d.ts +25 -0
- package/src/View/FreeTextColumn/FreeTextColumnPopup.js +116 -0
- package/src/View/FreeTextColumn/FreeTextColumnSharedEntity.d.ts +5 -0
- package/src/View/FreeTextColumn/FreeTextColumnSharedEntity.js +24 -0
- package/src/View/FreeTextColumn/FreeTextColumnSummary.d.ts +20 -0
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +93 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.d.ts +18 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +131 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.d.ts +6 -0
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +38 -0
- package/src/View/GridInfo/AdaptableOptionsComponent.d.ts +7 -0
- package/src/View/GridInfo/AdaptableOptionsComponent.js +99 -0
- package/src/View/GridInfo/ColumnInfoComponent.d.ts +20 -0
- package/src/View/GridInfo/ColumnInfoComponent.js +168 -0
- package/src/View/GridInfo/GridInfoPopup.d.ts +16 -0
- package/src/View/GridInfo/GridInfoPopup.js +96 -0
- package/src/View/GridInfo/GridOptionsComponent.d.ts +17 -0
- package/src/View/GridInfo/GridOptionsComponent.js +37 -0
- package/src/View/KeyHint.d.ts +3 -0
- package/src/View/KeyHint.js +9 -0
- package/src/View/Layout/LayoutEntityRow.d.ts +13 -0
- package/src/View/Layout/LayoutEntityRow.js +23 -0
- package/src/View/Layout/LayoutPopup.d.ts +32 -0
- package/src/View/Layout/LayoutPopup.js +176 -0
- package/src/View/Layout/LayoutSharedEntity.d.ts +5 -0
- package/src/View/Layout/LayoutSharedEntity.js +15 -0
- package/src/View/Layout/LayoutViewPanel.d.ts +22 -0
- package/src/View/Layout/LayoutViewPanel.js +83 -0
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.d.ts +27 -0
- package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +83 -0
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.d.ts +16 -0
- package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +88 -0
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.d.ts +15 -0
- package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +69 -0
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.d.ts +15 -0
- package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +69 -0
- package/src/View/Layout/Wizard/LayoutEditor/droppableIds.d.ts +7 -0
- package/src/View/Layout/Wizard/LayoutEditor/droppableIds.js +11 -0
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.d.ts +6 -0
- package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +25 -0
- package/src/View/Layout/Wizard/LayoutEditor/index.d.ts +9 -0
- package/src/View/Layout/Wizard/LayoutEditor/index.js +428 -0
- package/src/View/Layout/Wizard/LayoutEditor/reducer.d.ts +28 -0
- package/src/View/Layout/Wizard/LayoutEditor/reducer.js +44 -0
- package/src/View/Layout/Wizard/LayoutEditor/utils.d.ts +10 -0
- package/src/View/Layout/Wizard/LayoutEditor/utils.js +13 -0
- package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +52 -0
- package/src/View/Layout/Wizard/LayoutEditorWizard.js +92 -0
- package/src/View/Layout/Wizard/LayoutWizard.d.ts +9 -0
- package/src/View/Layout/Wizard/LayoutWizard.js +20 -0
- package/src/View/License/LicenseWatermark.d.ts +2 -0
- package/src/View/License/LicenseWatermark.js +58 -0
- package/src/View/License/index.d.ts +1 -0
- package/src/View/License/index.js +5 -0
- package/src/View/PlusMinus/PlusMinusEntityRow.d.ts +9 -0
- package/src/View/PlusMinus/PlusMinusEntityRow.js +24 -0
- package/src/View/PlusMinus/PlusMinusPopup.d.ts +30 -0
- package/src/View/PlusMinus/PlusMinusPopup.js +124 -0
- package/src/View/PlusMinus/PlusMinusSharedEntity.d.ts +5 -0
- package/src/View/PlusMinus/PlusMinusSharedEntity.js +21 -0
- package/src/View/PlusMinus/PlusMinusSummary.d.ts +20 -0
- package/src/View/PlusMinus/PlusMinusSummary.js +101 -0
- package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.d.ts +9 -0
- package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +47 -0
- package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.d.ts +7 -0
- package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.js +22 -0
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +13 -0
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +57 -0
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.d.ts +7 -0
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +59 -0
- package/src/View/Query/ExpandedQueryPopup.d.ts +19 -0
- package/src/View/Query/ExpandedQueryPopup.js +62 -0
- package/src/View/Query/NamedQueryEntityRow.d.ts +8 -0
- package/src/View/Query/NamedQueryEntityRow.js +21 -0
- package/src/View/Query/NamedQuerySharedEntity.d.ts +5 -0
- package/src/View/Query/NamedQuerySharedEntity.js +19 -0
- package/src/View/Query/QueryPopup.d.ts +28 -0
- package/src/View/Query/QueryPopup.js +114 -0
- package/src/View/Query/QueryViewPanel.d.ts +31 -0
- package/src/View/Query/QueryViewPanel.js +162 -0
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.d.ts +9 -0
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +34 -0
- package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.d.ts +9 -0
- package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +41 -0
- package/src/View/Query/Wizard/NamedQueryWizard.d.ts +6 -0
- package/src/View/Query/Wizard/NamedQueryWizard.js +44 -0
- package/src/View/QuickSearch/QuickSearchPopup.d.ts +12 -0
- package/src/View/QuickSearch/QuickSearchPopup.js +58 -0
- package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +8 -0
- package/src/View/QuickSearch/QuickSearchViewPanel.js +25 -0
- package/src/View/QuickSearch/useQuickSearchDebounced.d.ts +7 -0
- package/src/View/QuickSearch/useQuickSearchDebounced.js +21 -0
- package/src/View/Schedule/ScheduleEntityRow.d.ts +5 -0
- package/src/View/Schedule/ScheduleEntityRow.js +58 -0
- package/src/View/Schedule/SchedulePopup.d.ts +58 -0
- package/src/View/Schedule/SchedulePopup.js +317 -0
- package/src/View/Schedule/Wizard/ScheduleScheduleSummary.d.ts +2 -0
- package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +14 -0
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.d.ts +10 -0
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +113 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.d.ts +9 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +24 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.d.ts +11 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +46 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.d.ts +9 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +24 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.d.ts +8 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +46 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.d.ts +11 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +35 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.d.ts +2 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +70 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.d.ts +7 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +37 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/index.d.ts +3 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/index.js +9 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.d.ts +2 -0
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +55 -0
- package/src/View/Schedule/Wizard/ScheduleWizard.d.ts +7 -0
- package/src/View/Schedule/Wizard/ScheduleWizard.js +39 -0
- package/src/View/Shortcut/ShortcutEntityRow.d.ts +17 -0
- package/src/View/Shortcut/ShortcutEntityRow.js +47 -0
- package/src/View/Shortcut/ShortcutPopup.d.ts +30 -0
- package/src/View/Shortcut/ShortcutPopup.js +121 -0
- package/src/View/Shortcut/ShortcutSharedEntity.d.ts +5 -0
- package/src/View/Shortcut/ShortcutSharedEntity.js +19 -0
- package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.d.ts +7 -0
- package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +22 -0
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.d.ts +10 -0
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +80 -0
- package/src/View/Shortcut/Wizard/ShortcutWizard.d.ts +8 -0
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +55 -0
- package/src/View/Shortcut/shortcutKeys.d.ts +1 -0
- package/src/View/Shortcut/shortcutKeys.js +31 -0
- package/src/View/Shortcut/shortcutOperations.d.ts +2 -0
- package/src/View/Shortcut/shortcutOperations.js +10 -0
- package/src/View/SmartEdit/SmartEditPopup.d.ts +26 -0
- package/src/View/SmartEdit/SmartEditPopup.js +102 -0
- package/src/View/SmartEdit/SmartEditViewPanel.d.ts +35 -0
- package/src/View/SmartEdit/SmartEditViewPanel.js +121 -0
- package/src/View/StateManagement/StateManagementPopup.d.ts +16 -0
- package/src/View/StateManagement/StateManagementPopup.js +122 -0
- package/src/View/SystemStatus/SystemStatusEntityRow.d.ts +7 -0
- package/src/View/SystemStatus/SystemStatusEntityRow.js +32 -0
- package/src/View/SystemStatus/SystemStatusPopup.d.ts +18 -0
- package/src/View/SystemStatus/SystemStatusPopup.js +49 -0
- package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +12 -0
- package/src/View/SystemStatus/SystemStatusViewPanel.js +34 -0
- package/src/View/TeamSharing/TeamSharingPopup.d.ts +23 -0
- package/src/View/TeamSharing/TeamSharingPopup.js +163 -0
- package/src/View/Theme/ThemePopup.d.ts +16 -0
- package/src/View/Theme/ThemePopup.js +61 -0
- package/src/View/Theme/ThemeViewPanel.d.ts +16 -0
- package/src/View/Theme/ThemeViewPanel.js +58 -0
- package/src/View/UIHelper.d.ts +85 -0
- package/src/View/UIHelper.js +495 -0
- package/src/View/UIInterfaces.d.ts +5 -0
- package/src/View/UIInterfaces.js +3 -0
- package/src/View/Wizard/AdaptableWizard.d.ts +56 -0
- package/src/View/Wizard/AdaptableWizard.js +159 -0
- package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +42 -0
- package/src/View/Wizard/Interface/IAdaptableWizard.js +2 -0
- package/src/View/Wizard/OnePageAdaptableWizard.d.ts +41 -0
- package/src/View/Wizard/OnePageAdaptableWizard.js +214 -0
- package/src/View/Wizard/WizardLegend.d.ts +12 -0
- package/src/View/Wizard/WizardLegend.js +29 -0
- package/src/View/Wizard/useKeyboardNavigation.d.ts +2 -0
- package/src/View/Wizard/useKeyboardNavigation.js +35 -0
- package/src/View/renderWithAdaptableContext.d.ts +3 -0
- package/src/View/renderWithAdaptableContext.js +14 -0
- package/src/agGrid/ActionColumnRenderer.d.ts +14 -0
- package/src/agGrid/ActionColumnRenderer.js +93 -0
- package/src/agGrid/Adaptable.d.ts +332 -0
- package/src/agGrid/Adaptable.js +3894 -0
- package/src/agGrid/CheckboxRenderer.d.ts +3 -0
- package/src/agGrid/CheckboxRenderer.js +35 -0
- package/src/agGrid/ColumnSetupInfo.d.ts +8 -0
- package/src/agGrid/ColumnSetupInfo.js +2 -0
- package/src/agGrid/FilterWrapper.d.ts +2 -0
- package/src/agGrid/FilterWrapper.js +54 -0
- package/src/agGrid/FloatingFilterWrapper.d.ts +2 -0
- package/src/agGrid/FloatingFilterWrapper.js +43 -0
- package/src/agGrid/GroupCellRenderer.d.ts +5 -0
- package/src/agGrid/GroupCellRenderer.js +82 -0
- package/src/agGrid/agGridHelper.d.ts +54 -0
- package/src/agGrid/agGridHelper.js +644 -0
- package/src/agGrid/agGridMenuHelper.d.ts +29 -0
- package/src/agGrid/agGridMenuHelper.js +371 -0
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +13 -0
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +61 -0
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +40 -0
- package/src/agGrid/editors/AdaptableDateEditor/index.js +113 -0
- package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.d.ts +23 -0
- package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +74 -0
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +54 -0
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +94 -0
- package/src/agGrid/index.d.ts +4 -0
- package/src/agGrid/index.js +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/DayPicker.d.ts +88 -0
- 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 +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/Button.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/ButtonProps.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Button/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/Caption.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/Caption.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/CaptionProps.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Caption/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabel.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabel.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/CaptionLabelProps.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/CaptionLabel/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/Day.d.ts +7 -0
- 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 +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/useDay.d.ts +51 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/hooks/useDayFocus.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Day/index.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/DayContent.d.ts +6 -0
- 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 +10 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/DayContent/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/Dropdown.d.ts +7 -0
- 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 +10 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Dropdown/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/Footer.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/Footer.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Footer/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/Head.d.ts +5 -0
- 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 +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Head/utils/getWeekdays.d.ts +6 -0
- 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 +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/IconDropdown.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/IconDropdown.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconDropdown/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/IconNext.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/IconNext.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconNext/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/IconPrevious.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/IconPrevious.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/IconPrevious/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/MonthsDropdown.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/MonthsDropdownProps.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/MonthsDropdown/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/Navigation.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/NavigationProps.d.ts +18 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Navigation/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Root/Root.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Root/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/Row.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/RowProps.d.ts +11 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Row/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/Table.d.ts +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getOutsideEndDays.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getOutsideStartDays.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/Table/utils/getWeeks.d.ts +15 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/WeekNumber/WeekNumber.d.ts +15 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/WeekNumber/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/YearsDropdown/YearsDropdown.d.ts +16 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/YearsDropdown/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/components/index.d.ts +18 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/ContextProvider.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerContext.d.ts +78 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerContextValue.d.ts +20 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/DayPickerProvider.d.ts +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/defaultClassNames.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatCaption.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatDay.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatMonthCaption.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatWeekNumber.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatWeekdayName.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/formatYearCaption.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/formatters/index.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/index.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelDay.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelMonthDropdown.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelNext.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelPrevious.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelWeekNumber.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelWeekday.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/labels/labelYearDropdown.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/useDayPicker.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/parseFromToProps.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/DayPickerContext/utils/parseModifierProps.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusContext.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusContextValue.d.ts +19 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/FocusProvider.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/index.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/FocusContext/useFocus.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationContext.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationContextValue.d.ts +13 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/NavigationProvider.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/index.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/useNavigation.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/useNavigationState.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getDisplayMonths.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getInitialMonth.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getInitialMonth.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getNextMonth.d.ts +18 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getNextMonth.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getPreviousMonth.d.ts +19 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/NavigationContext/utils/getPreviousMonth.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleContext.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleContextValue.d.ts +13 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleModifiers.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/SelectMultipleProvider.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectMultipleContext/useSelectMultiple.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeContext.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeContextValue.d.ts +13 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeModifiers.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/SelectRangeProvider.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/useSelectRange.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectRangeContext/utils/addToRange.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleContext.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleContextValue.d.ts +11 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleModifiers.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/SelectSingleProvider.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/SelectSingleContext/useSelectSingle.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/contexts/index.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInput.d.ts +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputDayPickerProps.d.ts +14 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputFieldProps.d.ts +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/UseInputOptions.d.ts +35 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/types/index.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/useInput.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useInput/utils/isValidDate.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/types/UseModifiers.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/types/index.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/useModifiers.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/getModifierStatus.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/isDateInRange.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/hooks/useModifiers/utils/isMatch.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/index.js +1 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/CaptionLayout.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/ClassNames.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Components.d.ts +33 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/CustomModifiers.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateAfter.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateBefore.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateFormatter.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateInterval.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DateRange.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayClickEventHandler.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayFocusEventHandler.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayKeyboardEventHandler.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayLabelFormatter.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayMouseEventHandler.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayOfWeekMatcher.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerBase.d.ts +239 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerMultiple.d.ts +15 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerProps.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerRange.d.ts +16 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerSingle.d.ts +13 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayPickerUncontrolled.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/DayTouchEventHandler.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Formatters.d.ts +19 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/InternalModifier.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Labels.d.ts +17 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Matcher.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Modifier.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierClassNames.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierStatus.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/ModifierStyles.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Modifiers.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/MonthChangeEventHandler.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/NavButtonLabelFormatter.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectMultipleEventHandler.d.ts +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectRangeEventHandler.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/SelectSingleEventHandler.d.ts +12 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/StyledComponentProps.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/StyledElement.d.ts +76 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/Styles.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberClickEventHandler.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberFormatter.d.ts +6 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekNumberLabelFormatter.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/WeekdayLabelFormatter.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/index.d.ts +54 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isArrayOfDates.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateAfterType.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateBeforeType.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateInterval.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateRange.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDateType.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayOfWeekType.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerMultiple.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerRange.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerSingle.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-day-picker/types/isDayPickerUncontrolled.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/CloseButton.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/ProgressBar.d.ts +55 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/Toast.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/ToastContainer.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/Transitions.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-toastify/components/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-toastify/core/eventManager.d.ts +39 -0
- package/src/bundle-dependencies/bundles/react-toastify/core/index.d.ts +2 -0
- package/src/bundle-dependencies/bundles/react-toastify/core/toast.d.ts +55 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/index.d.ts +3 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/toastContainerReducer.d.ts +15 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useKeeper.d.ts +7 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useToast.d.ts +10 -0
- package/src/bundle-dependencies/bundles/react-toastify/hooks/useToastContainer.d.ts +16 -0
- package/src/bundle-dependencies/bundles/react-toastify/index.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-toastify/index.js +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/inject-style.d.ts +8 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/components/CloseButton.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/components/ProgressBar.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/components/Toast.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/components/ToastContainer.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/core/eventManager.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/core/toast.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/helpers.d.ts +9 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/collapseToast.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/cssTransition.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/test/utils/propValidator.test.d.ts +1 -0
- package/src/bundle-dependencies/bundles/react-toastify/types/index.d.ts +240 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/collapseToast.d.ts +5 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/constant.d.ts +20 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/cssTransition.d.ts +42 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/index.d.ts +4 -0
- package/src/bundle-dependencies/bundles/react-toastify/utils/propValidator.d.ts +10 -0
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +24 -0
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +97 -0
- package/src/components/AdaptableFormComponent/index.d.ts +1 -0
- package/src/components/AdaptableFormComponent/index.js +4 -0
- package/src/components/ChartContainer/index.d.ts +15 -0
- package/src/components/ChartContainer/index.js +22 -0
- package/src/components/CheckBox/index.d.ts +24 -0
- package/src/components/CheckBox/index.js +61 -0
- package/src/components/CodeBlock/index.d.ts +4 -0
- package/src/components/CodeBlock/index.js +11 -0
- package/src/components/ContainerProps.d.ts +30 -0
- package/src/components/ContainerProps.js +2 -0
- package/src/components/Dashboard/Dashboard.d.ts +30 -0
- package/src/components/Dashboard/Dashboard.js +79 -0
- package/src/components/Dashboard/DashboardManager.d.ts +15 -0
- package/src/components/Dashboard/DashboardManager.js +165 -0
- package/src/components/Dashboard/DashboardTab.d.ts +6 -0
- package/src/components/Dashboard/DashboardTab.js +7 -0
- package/src/components/Dashboard/DashboardToolbar.d.ts +14 -0
- package/src/components/Dashboard/DashboardToolbar.js +18 -0
- package/src/components/Dashboard/index.d.ts +3 -0
- package/src/components/Dashboard/index.js +6 -0
- package/src/components/Datepicker/Caption.d.ts +7 -0
- package/src/components/Datepicker/Caption.js +50 -0
- package/src/components/Datepicker/CaptionLabel.d.ts +8 -0
- package/src/components/Datepicker/CaptionLabel.js +28 -0
- package/src/components/Datepicker/DatepickerContext.d.ts +11 -0
- package/src/components/Datepicker/DatepickerContext.js +12 -0
- package/src/components/Datepicker/index.d.ts +18 -0
- package/src/components/Datepicker/index.js +106 -0
- package/src/components/Dialog/index.d.ts +22 -0
- package/src/components/Dialog/index.js +118 -0
- package/src/components/Dialog/useIsOpen.d.ts +6 -0
- package/src/components/Dialog/useIsOpen.js +13 -0
- package/src/components/Dropdown/Arrows.d.ts +3 -0
- package/src/components/Dropdown/Arrows.js +21 -0
- package/src/components/Dropdown/index.d.ts +30 -0
- package/src/components/Dropdown/index.js +98 -0
- package/src/components/DropdownButton/DropdownButtonItem.d.ts +12 -0
- package/src/components/DropdownButton/DropdownButtonItem.js +2 -0
- package/src/components/DropdownButton/index.d.ts +28 -0
- package/src/components/DropdownButton/index.js +153 -0
- package/src/components/DropdownButton/renderItem.d.ts +14 -0
- package/src/components/DropdownButton/renderItem.js +15 -0
- package/src/components/DropdownButton/useExpanded.d.ts +24 -0
- package/src/components/DropdownButton/useExpanded.js +59 -0
- package/src/components/EllipsisContainer/index.d.ts +13 -0
- package/src/components/EllipsisContainer/index.js +106 -0
- package/src/components/EmptyContent/index.d.ts +5 -0
- package/src/components/EmptyContent/index.js +15 -0
- package/src/components/ErrorBox/index.d.ts +5 -0
- package/src/components/ErrorBox/index.js +12 -0
- package/src/components/ExpressionEditor/BaseEditorInput.d.ts +25 -0
- package/src/components/ExpressionEditor/BaseEditorInput.js +119 -0
- package/src/components/ExpressionEditor/EditorButton.d.ts +7 -0
- package/src/components/ExpressionEditor/EditorButton.js +43 -0
- package/src/components/ExpressionEditor/EditorContext.d.ts +12 -0
- package/src/components/ExpressionEditor/EditorContext.js +12 -0
- package/src/components/ExpressionEditor/EditorInput.d.ts +12 -0
- package/src/components/ExpressionEditor/EditorInput.js +16 -0
- package/src/components/ExpressionEditor/EditorInputReactive.d.ts +12 -0
- package/src/components/ExpressionEditor/EditorInputReactive.js +54 -0
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.d.ts +7 -0
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +18 -0
- package/src/components/ExpressionEditor/NamedQueryContext.d.ts +11 -0
- package/src/components/ExpressionEditor/NamedQueryContext.js +11 -0
- package/src/components/ExpressionEditor/editorButtonsReactive.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsReactive.js +80 -0
- package/src/components/ExpressionEditor/editorButtonsSearch.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsSearch.js +77 -0
- package/src/components/ExpressionEditor/index.d.ts +19 -0
- package/src/components/ExpressionEditor/index.js +184 -0
- package/src/components/FieldWrap/index.d.ts +10 -0
- package/src/components/FieldWrap/index.js +14 -0
- package/src/components/FileDroppable/FileDroppableState.d.ts +5 -0
- package/src/components/FileDroppable/FileDroppableState.js +2 -0
- package/src/components/FileDroppable/index.d.ts +21 -0
- package/src/components/FileDroppable/index.js +127 -0
- package/src/components/FileDroppable/reducer.d.ts +14 -0
- package/src/components/FileDroppable/reducer.js +26 -0
- package/src/components/FlexWithFooter.d.ts +8 -0
- package/src/components/FlexWithFooter.js +19 -0
- package/src/components/FormLayout/index.d.ts +30 -0
- package/src/components/FormLayout/index.js +82 -0
- package/src/components/HelpBlock/index.d.ts +5 -0
- package/src/components/HelpBlock/index.js +12 -0
- package/src/components/InfiniteTable/index.d.ts +3 -0
- package/src/components/InfiniteTable/index.js +13 -0
- package/src/components/Input/index.d.ts +12 -0
- package/src/components/Input/index.js +20 -0
- package/src/components/List/GridList/index.d.ts +9 -0
- package/src/components/List/GridList/index.js +27 -0
- package/src/components/List/ListGroup/index.d.ts +6 -0
- package/src/components/List/ListGroup/index.js +12 -0
- package/src/components/List/ListGroupItem/index.d.ts +12 -0
- package/src/components/List/ListGroupItem/index.js +19 -0
- package/src/components/Logo/index.d.ts +6 -0
- package/src/components/Logo/index.js +12 -0
- package/src/components/Modal/Backdrop.d.ts +19 -0
- package/src/components/Modal/Backdrop.js +51 -0
- package/src/components/Modal/index.d.ts +9 -0
- package/src/components/Modal/index.js +40 -0
- package/src/components/NotifyResize/index.d.ts +9 -0
- package/src/components/NotifyResize/index.js +37 -0
- package/src/components/OverlayTrigger/Overlay.d.ts +12 -0
- package/src/components/OverlayTrigger/Overlay.js +109 -0
- package/src/components/OverlayTrigger/getOverlayStyle.d.ts +13 -0
- package/src/components/OverlayTrigger/getOverlayStyle.js +56 -0
- package/src/components/OverlayTrigger/index.d.ts +30 -0
- package/src/components/OverlayTrigger/index.js +187 -0
- package/src/components/OverlayTrigger/useVendorClassName.d.ts +2 -0
- package/src/components/OverlayTrigger/useVendorClassName.js +14 -0
- package/src/components/OverlayTrigger/utils.d.ts +4 -0
- package/src/components/OverlayTrigger/utils.js +41 -0
- package/src/components/Panel/index.d.ts +16 -0
- package/src/components/Panel/index.js +40 -0
- package/src/components/PopupWithFooter.d.ts +14 -0
- package/src/components/PopupWithFooter.js +21 -0
- package/src/components/Radio/index.d.ts +28 -0
- package/src/components/Radio/index.js +66 -0
- package/src/components/ResizeObserver/getResizeObserverObject.d.ts +1 -0
- package/src/components/ResizeObserver/getResizeObserverObject.js +7 -0
- package/src/components/ResizeObserver/index.d.ts +37 -0
- package/src/components/ResizeObserver/index.js +104 -0
- package/src/components/SelectableList/index.d.ts +14 -0
- package/src/components/SelectableList/index.js +100 -0
- package/src/components/SimpleButton/index.d.ts +22 -0
- package/src/components/SimpleButton/index.js +73 -0
- package/src/components/SizedContainer/index.d.ts +14 -0
- package/src/components/SizedContainer/index.js +19 -0
- package/src/components/Table/index.d.ts +3 -0
- package/src/components/Table/index.js +9 -0
- package/src/components/Tabs/index.d.ts +47 -0
- package/src/components/Tabs/index.js +131 -0
- package/src/components/Textarea/index.d.ts +11 -0
- package/src/components/Textarea/index.js +20 -0
- package/src/components/Toastify/index.d.ts +3 -0
- package/src/components/Toastify/index.js +10 -0
- package/src/components/ToggleButton/index.d.ts +10 -0
- package/src/components/ToggleButton/index.js +17 -0
- package/src/components/Tooltip/index.d.ts +8 -0
- package/src/components/Tooltip/index.js +9 -0
- package/src/components/WizardPanel/index.d.ts +4 -0
- package/src/components/WizardPanel/index.js +10 -0
- package/src/components/icons/DefaultIcon.d.ts +12 -0
- package/src/components/icons/DefaultIcon.js +14 -0
- package/src/components/icons/alert.d.ts +3 -0
- package/src/components/icons/alert.js +7 -0
- package/src/components/icons/align-justify.d.ts +3 -0
- package/src/components/icons/align-justify.js +7 -0
- package/src/components/icons/application.d.ts +3 -0
- package/src/components/icons/application.js +7 -0
- package/src/components/icons/arrow-down.d.ts +3 -0
- package/src/components/icons/arrow-down.js +7 -0
- package/src/components/icons/arrow-expand.d.ts +3 -0
- package/src/components/icons/arrow-expand.js +7 -0
- package/src/components/icons/arrow-left.d.ts +3 -0
- package/src/components/icons/arrow-left.js +8 -0
- package/src/components/icons/arrow-right.d.ts +3 -0
- package/src/components/icons/arrow-right.js +7 -0
- package/src/components/icons/arrow-up.d.ts +3 -0
- package/src/components/icons/arrow-up.js +7 -0
- package/src/components/icons/attach-file.d.ts +3 -0
- package/src/components/icons/attach-file.js +8 -0
- package/src/components/icons/blanks.d.ts +3 -0
- package/src/components/icons/blanks.js +7 -0
- package/src/components/icons/boolean-list.d.ts +3 -0
- package/src/components/icons/boolean-list.js +7 -0
- package/src/components/icons/build.d.ts +3 -0
- package/src/components/icons/build.js +8 -0
- package/src/components/icons/bulk-update.d.ts +3 -0
- package/src/components/icons/bulk-update.js +11 -0
- package/src/components/icons/calculated-column.d.ts +3 -0
- package/src/components/icons/calculated-column.js +7 -0
- package/src/components/icons/calendar.d.ts +3 -0
- package/src/components/icons/calendar.js +7 -0
- package/src/components/icons/campaign.d.ts +3 -0
- package/src/components/icons/campaign.js +7 -0
- package/src/components/icons/cell-summary.d.ts +3 -0
- package/src/components/icons/cell-summary.js +7 -0
- package/src/components/icons/cell-validation.d.ts +3 -0
- package/src/components/icons/cell-validation.js +7 -0
- package/src/components/icons/chart.d.ts +3 -0
- package/src/components/icons/chart.js +7 -0
- package/src/components/icons/check-box-outline.d.ts +3 -0
- package/src/components/icons/check-box-outline.js +7 -0
- package/src/components/icons/check-box.d.ts +3 -0
- package/src/components/icons/check-box.js +7 -0
- package/src/components/icons/check-circle.d.ts +3 -0
- package/src/components/icons/check-circle.js +7 -0
- package/src/components/icons/check.d.ts +3 -0
- package/src/components/icons/check.js +7 -0
- package/src/components/icons/clear.d.ts +3 -0
- package/src/components/icons/clear.js +7 -0
- package/src/components/icons/clone.d.ts +3 -0
- package/src/components/icons/clone.js +7 -0
- package/src/components/icons/close.d.ts +3 -0
- package/src/components/icons/close.js +7 -0
- package/src/components/icons/cloud-upload.d.ts +3 -0
- package/src/components/icons/cloud-upload.js +7 -0
- package/src/components/icons/collapse.d.ts +3 -0
- package/src/components/icons/collapse.js +7 -0
- package/src/components/icons/color-drop.d.ts +3 -0
- package/src/components/icons/color-drop.js +7 -0
- package/src/components/icons/column-chooser.d.ts +3 -0
- package/src/components/icons/column-chooser.js +7 -0
- package/src/components/icons/column-filter.d.ts +3 -0
- package/src/components/icons/column-filter.js +7 -0
- package/src/components/icons/column-info.d.ts +3 -0
- package/src/components/icons/column-info.js +7 -0
- package/src/components/icons/comment.d.ts +3 -0
- package/src/components/icons/comment.js +7 -0
- package/src/components/icons/conditional-style.d.ts +3 -0
- package/src/components/icons/conditional-style.js +7 -0
- package/src/components/icons/contains.d.ts +3 -0
- package/src/components/icons/contains.js +7 -0
- package/src/components/icons/custom-sort.d.ts +3 -0
- package/src/components/icons/custom-sort.js +7 -0
- package/src/components/icons/dashboard.d.ts +3 -0
- package/src/components/icons/dashboard.js +7 -0
- package/src/components/icons/data-source.d.ts +3 -0
- package/src/components/icons/data-source.js +7 -0
- package/src/components/icons/date-range.d.ts +3 -0
- package/src/components/icons/date-range.js +8 -0
- package/src/components/icons/delete.d.ts +3 -0
- package/src/components/icons/delete.js +7 -0
- package/src/components/icons/division.d.ts +3 -0
- package/src/components/icons/division.js +7 -0
- package/src/components/icons/dock.d.ts +3 -0
- package/src/components/icons/dock.js +7 -0
- package/src/components/icons/drag.d.ts +3 -0
- package/src/components/icons/drag.js +7 -0
- package/src/components/icons/edit.d.ts +3 -0
- package/src/components/icons/edit.js +7 -0
- package/src/components/icons/equal.d.ts +3 -0
- package/src/components/icons/equal.js +7 -0
- package/src/components/icons/equation.d.ts +3 -0
- package/src/components/icons/equation.js +7 -0
- package/src/components/icons/error.d.ts +3 -0
- package/src/components/icons/error.js +7 -0
- package/src/components/icons/expand.d.ts +3 -0
- package/src/components/icons/expand.js +7 -0
- package/src/components/icons/exponent.d.ts +3 -0
- package/src/components/icons/exponent.js +7 -0
- package/src/components/icons/export.d.ts +3 -0
- package/src/components/icons/export.js +7 -0
- package/src/components/icons/fast-backward.d.ts +3 -0
- package/src/components/icons/fast-backward.js +7 -0
- package/src/components/icons/fast-forward.d.ts +3 -0
- package/src/components/icons/fast-forward.js +7 -0
- package/src/components/icons/filter-outline.d.ts +3 -0
- package/src/components/icons/filter-outline.js +7 -0
- package/src/components/icons/flashing-cell.d.ts +3 -0
- package/src/components/icons/flashing-cell.js +7 -0
- package/src/components/icons/folder-open.d.ts +3 -0
- package/src/components/icons/folder-open.js +7 -0
- package/src/components/icons/folder-shared.d.ts +3 -0
- package/src/components/icons/folder-shared.js +7 -0
- package/src/components/icons/folder.d.ts +3 -0
- package/src/components/icons/folder.js +7 -0
- package/src/components/icons/format-column.d.ts +3 -0
- package/src/components/icons/format-column.js +7 -0
- package/src/components/icons/format-letter-ends-with.d.ts +3 -0
- package/src/components/icons/format-letter-ends-with.js +7 -0
- package/src/components/icons/format-letter-starts-with.d.ts +3 -0
- package/src/components/icons/format-letter-starts-with.js +7 -0
- package/src/components/icons/freetext-column.d.ts +3 -0
- package/src/components/icons/freetext-column.js +11 -0
- package/src/components/icons/function.d.ts +3 -0
- package/src/components/icons/function.js +7 -0
- package/src/components/icons/gradient-column.d.ts +3 -0
- package/src/components/icons/gradient-column.js +7 -0
- package/src/components/icons/greater-than-or-equal.d.ts +3 -0
- package/src/components/icons/greater-than-or-equal.js +7 -0
- package/src/components/icons/greater-than.d.ts +3 -0
- package/src/components/icons/greater-than.js +7 -0
- package/src/components/icons/hide-column.d.ts +3 -0
- package/src/components/icons/hide-column.js +8 -0
- package/src/components/icons/history.d.ts +3 -0
- package/src/components/icons/history.js +7 -0
- package/src/components/icons/home.d.ts +3 -0
- package/src/components/icons/home.js +7 -0
- package/src/components/icons/import-export.d.ts +3 -0
- package/src/components/icons/import-export.js +7 -0
- package/src/components/icons/index.d.ts +14 -0
- package/src/components/icons/index.js +277 -0
- package/src/components/icons/info.d.ts +3 -0
- package/src/components/icons/info.js +7 -0
- package/src/components/icons/invalid.d.ts +3 -0
- package/src/components/icons/invalid.js +8 -0
- package/src/components/icons/ipushpull.d.ts +3 -0
- package/src/components/icons/ipushpull.js +8 -0
- package/src/components/icons/justify.d.ts +3 -0
- package/src/components/icons/justify.js +7 -0
- package/src/components/icons/layout.d.ts +3 -0
- package/src/components/icons/layout.js +7 -0
- package/src/components/icons/less-than-or-equal.d.ts +3 -0
- package/src/components/icons/less-than-or-equal.js +7 -0
- package/src/components/icons/less-than.d.ts +3 -0
- package/src/components/icons/less-than.js +7 -0
- package/src/components/icons/list.d.ts +3 -0
- package/src/components/icons/list.js +7 -0
- package/src/components/icons/login.d.ts +3 -0
- package/src/components/icons/login.js +7 -0
- package/src/components/icons/logout copy.d.ts +3 -0
- package/src/components/icons/logout copy.js +8 -0
- package/src/components/icons/logout.d.ts +3 -0
- package/src/components/icons/logout.js +8 -0
- package/src/components/icons/minus.d.ts +3 -0
- package/src/components/icons/minus.js +7 -0
- package/src/components/icons/multiplication.d.ts +3 -0
- package/src/components/icons/multiplication.js +7 -0
- package/src/components/icons/newpage.d.ts +3 -0
- package/src/components/icons/newpage.js +8 -0
- package/src/components/icons/non-blanks.d.ts +3 -0
- package/src/components/icons/non-blanks.js +7 -0
- package/src/components/icons/not-contains.d.ts +3 -0
- package/src/components/icons/not-contains.js +7 -0
- package/src/components/icons/not-equal.d.ts +3 -0
- package/src/components/icons/not-equal.js +7 -0
- package/src/components/icons/pause.d.ts +3 -0
- package/src/components/icons/pause.js +7 -0
- package/src/components/icons/percent-bar.d.ts +3 -0
- package/src/components/icons/percent-bar.js +12 -0
- package/src/components/icons/percent.d.ts +3 -0
- package/src/components/icons/percent.js +7 -0
- package/src/components/icons/pie-chart.d.ts +3 -0
- package/src/components/icons/pie-chart.js +7 -0
- package/src/components/icons/play.d.ts +3 -0
- package/src/components/icons/play.js +8 -0
- package/src/components/icons/plus-minus.d.ts +3 -0
- package/src/components/icons/plus-minus.js +7 -0
- package/src/components/icons/plus.d.ts +3 -0
- package/src/components/icons/plus.js +7 -0
- package/src/components/icons/query.d.ts +3 -0
- package/src/components/icons/query.js +7 -0
- package/src/components/icons/quick-search.d.ts +3 -0
- package/src/components/icons/quick-search.js +7 -0
- package/src/components/icons/refresh.d.ts +3 -0
- package/src/components/icons/refresh.js +7 -0
- package/src/components/icons/regex.d.ts +3 -0
- package/src/components/icons/regex.js +7 -0
- package/src/components/icons/reminder.d.ts +3 -0
- package/src/components/icons/reminder.js +7 -0
- package/src/components/icons/save.d.ts +3 -0
- package/src/components/icons/save.js +7 -0
- package/src/components/icons/schedule.d.ts +3 -0
- package/src/components/icons/schedule.js +10 -0
- package/src/components/icons/settings.d.ts +3 -0
- package/src/components/icons/settings.js +7 -0
- package/src/components/icons/shortcut.d.ts +3 -0
- package/src/components/icons/shortcut.js +7 -0
- package/src/components/icons/show-column.d.ts +3 -0
- package/src/components/icons/show-column.js +8 -0
- package/src/components/icons/smart-edit.d.ts +3 -0
- package/src/components/icons/smart-edit.js +7 -0
- package/src/components/icons/sort-asc.d.ts +3 -0
- package/src/components/icons/sort-asc.js +10 -0
- package/src/components/icons/sort-desc.d.ts +3 -0
- package/src/components/icons/sort-desc.js +10 -0
- package/src/components/icons/spark-line.d.ts +3 -0
- package/src/components/icons/spark-line.js +7 -0
- package/src/components/icons/state-management.d.ts +3 -0
- package/src/components/icons/state-management.js +7 -0
- package/src/components/icons/stop.d.ts +3 -0
- package/src/components/icons/stop.js +8 -0
- package/src/components/icons/system-status.d.ts +3 -0
- package/src/components/icons/system-status.js +7 -0
- package/src/components/icons/tab-unselected.d.ts +3 -0
- package/src/components/icons/tab-unselected.js +7 -0
- package/src/components/icons/table-arrow-right.d.ts +3 -0
- package/src/components/icons/table-arrow-right.js +7 -0
- package/src/components/icons/team-share.d.ts +3 -0
- package/src/components/icons/team-share.js +7 -0
- package/src/components/icons/theme.d.ts +3 -0
- package/src/components/icons/theme.js +8 -0
- package/src/components/icons/track-changes.d.ts +3 -0
- package/src/components/icons/track-changes.js +8 -0
- package/src/components/icons/triangle-down.d.ts +3 -0
- package/src/components/icons/triangle-down.js +7 -0
- package/src/components/icons/triangle-up.d.ts +3 -0
- package/src/components/icons/triangle-up.js +7 -0
- package/src/components/icons/unchecked.d.ts +3 -0
- package/src/components/icons/unchecked.js +7 -0
- package/src/components/icons/undo.d.ts +3 -0
- package/src/components/icons/undo.js +7 -0
- package/src/components/icons/updated-row.d.ts +3 -0
- package/src/components/icons/updated-row.js +7 -0
- package/src/components/icons/user-filter.d.ts +3 -0
- package/src/components/icons/user-filter.js +7 -0
- package/src/components/icons/warning.d.ts +3 -0
- package/src/components/icons/warning.js +7 -0
- package/src/components/utils/batchUpdate.d.ts +9 -0
- package/src/components/utils/batchUpdate.js +27 -0
- package/src/components/utils/captureTabNavigation/getFocusableChildren.d.ts +2 -0
- package/src/components/utils/captureTabNavigation/getFocusableChildren.js +16 -0
- package/src/components/utils/captureTabNavigation/index.d.ts +2 -0
- package/src/components/utils/captureTabNavigation/index.js +29 -0
- package/src/components/utils/contains.d.ts +1 -0
- package/src/components/utils/contains.js +14 -0
- package/src/components/utils/getAvailableSizeInfo.d.ts +21 -0
- package/src/components/utils/getAvailableSizeInfo.js +37 -0
- package/src/components/utils/join.d.ts +2 -0
- package/src/components/utils/join.js +4 -0
- package/src/components/utils/selectParent/index.d.ts +2 -0
- package/src/components/utils/selectParent/index.js +15 -0
- package/src/components/utils/selectParent/matches.d.ts +2 -0
- package/src/components/utils/selectParent/matches.js +9 -0
- package/src/components/utils/useAutoFocus.d.ts +12 -0
- package/src/components/utils/useAutoFocus.js +19 -0
- package/src/components/utils/useContainerScrollObserver/index.d.ts +6 -0
- package/src/components/utils/useContainerScrollObserver/index.js +80 -0
- package/src/components/utils/useDraggable.d.ts +9 -0
- package/src/components/utils/useDraggable.js +84 -0
- package/src/components/utils/useGlobalEvent.d.ts +1 -0
- package/src/components/utils/useGlobalEvent.js +11 -0
- package/src/components/utils/useLatest.d.ts +1 -0
- package/src/components/utils/useLatest.js +9 -0
- package/src/components/utils/usePrevious.d.ts +2 -0
- package/src/components/utils/usePrevious.js +11 -0
- package/src/components/utils/usePropState.d.ts +2 -0
- package/src/components/utils/usePropState.js +11 -0
- package/src/components/utils/useProperty.d.ts +22 -0
- package/src/components/utils/useProperty.js +49 -0
- package/src/components/utils/useRerender.d.ts +1 -0
- package/src/components/utils/useRerender.js +10 -0
- package/src/components/utils/useSelectionRange.d.ts +5 -0
- package/src/components/utils/useSelectionRange.js +24 -0
- package/src/components/utils/useTheme.d.ts +32 -0
- package/src/components/utils/useTheme.js +5 -0
- package/src/components/utils/uuid.d.ts +2 -0
- package/src/components/utils/uuid.js +5 -0
- package/src/env.d.ts +4 -0
- package/src/env.js +7 -0
- package/src/metamodel/adaptable-metamodel-model.d.ts +19 -0
- package/src/metamodel/adaptable-metamodel-model.js +2 -0
- package/src/metamodel/adaptable.metamodel.d.ts +3313 -0
- package/src/metamodel/adaptable.metamodel.js +10638 -0
- package/src/parser/src/evaluator.d.ts +2 -0
- package/src/parser/src/evaluator.js +25 -0
- package/src/parser/src/index.d.ts +8 -0
- package/src/parser/src/index.js +30 -0
- package/src/parser/src/parser.js +1653 -0
- package/src/parser/src/tokenizer.d.ts +2 -0
- package/src/parser/src/tokenizer.js +21 -0
- package/src/parser/src/types.d.ts +94 -0
- package/src/parser/src/types.js +2 -0
- package/src/parser/src/utils.d.ts +4 -0
- package/src/parser/src/utils.js +34 -0
- package/src/theme.d.ts +32 -0
- package/src/theme.js +51 -0
- package/src/themes/index.d.ts +2 -0
- package/src/themes/index.js +14 -0
- package/src/types.d.ts +142 -0
- package/src/types.js +5 -0
- package/themes/dark.css +16 -0
- package/themes/light.css +2 -0
- package/types.d.ts +1 -0
- package/types.js +4 -0
- package/version.d.ts +2 -0
- package/version.js +3 -0
package/base.css
ADDED
|
@@ -0,0 +1,2512 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* These variables are not component specific.
|
|
3
|
+
*/
|
|
4
|
+
:root {
|
|
5
|
+
--it-space-0: 0rem;
|
|
6
|
+
/* 0px when 1rem=16px */
|
|
7
|
+
--it-space-1: 0.125rem;
|
|
8
|
+
/* 2px when 1rem=16px */
|
|
9
|
+
--it-space-2: 0.25rem;
|
|
10
|
+
/* 4px when 1rem=16px */
|
|
11
|
+
--it-space-3: 0.5rem;
|
|
12
|
+
/* 8px when 1rem=16px */
|
|
13
|
+
--it-space-4: 0.75rem;
|
|
14
|
+
/* 12px when 1rem=16px */
|
|
15
|
+
--it-space-5: 1rem;
|
|
16
|
+
--it-space-6: 1.25rem;
|
|
17
|
+
/* 20px when 1rem=16px */
|
|
18
|
+
--it-space-7: 1.5rem;
|
|
19
|
+
/* 24px when 1rem=16px */
|
|
20
|
+
--it-space-8: 2.25rem;
|
|
21
|
+
/* 36px when 1rem=16px */
|
|
22
|
+
--it-space-9: 3rem;
|
|
23
|
+
/* 48px when 1rem=16px */
|
|
24
|
+
--it-space-10: 4rem;
|
|
25
|
+
/* 64px when 1rem=16px */
|
|
26
|
+
--it-font-size-0: 0.5rem;
|
|
27
|
+
/* 8px when 1rem=16px */
|
|
28
|
+
--it-font-size-1: 0.625rem;
|
|
29
|
+
/* 10px when 1rem=16px */
|
|
30
|
+
--it-font-size-2: 0.75rem;
|
|
31
|
+
/* 12px when 1rem=16px */
|
|
32
|
+
--it-font-size-3: 0.875rem;
|
|
33
|
+
/* 14px when 1rem=16px */
|
|
34
|
+
--it-font-size-4: 1rem;
|
|
35
|
+
--it-font-size-5: 1.25rem;
|
|
36
|
+
/* 20px when 1rem=16px */
|
|
37
|
+
--it-font-size-6: 1.5rem;
|
|
38
|
+
/* 24px when 1rem=16px */
|
|
39
|
+
--it-font-size-7: 2.25rem;
|
|
40
|
+
/* 36px when 1rem=16px */
|
|
41
|
+
--it__border-radius: var(--it-space-2);
|
|
42
|
+
--it-color-brand: #133048;
|
|
43
|
+
--it-color-neutral-100: #f7fafc;
|
|
44
|
+
--it-color-neutral-200: #edf2f7;
|
|
45
|
+
--it-color-neutral-300: #e2e8f0;
|
|
46
|
+
--it-color-neutral-400: #cbd5e0;
|
|
47
|
+
--it-color-neutral-500: #a0aec0;
|
|
48
|
+
--it-color-neutral-600: #718096;
|
|
49
|
+
--it-color-neutral-700: #4a5568;
|
|
50
|
+
--it-color-neutral-800: #2d3748;
|
|
51
|
+
--it-color-neutral-900: #1a202c;
|
|
52
|
+
}
|
|
53
|
+
.it__align-items\=center {
|
|
54
|
+
align-items: center;
|
|
55
|
+
}
|
|
56
|
+
.it__align-items\=stretch {
|
|
57
|
+
align-items: stretch;
|
|
58
|
+
}
|
|
59
|
+
.it__justify-content\=flex-start {
|
|
60
|
+
justify-content: flex-start;
|
|
61
|
+
}
|
|
62
|
+
.it__justify-content\=flex-end {
|
|
63
|
+
justify-content: flex-end;
|
|
64
|
+
}
|
|
65
|
+
.it__justify-content\=center {
|
|
66
|
+
justify-content: center;
|
|
67
|
+
}
|
|
68
|
+
.it__cursor\=pointer {
|
|
69
|
+
cursor: pointer;
|
|
70
|
+
}
|
|
71
|
+
.it__overflow\=hidden {
|
|
72
|
+
overflow: hidden;
|
|
73
|
+
}
|
|
74
|
+
.it__overflow\=visible {
|
|
75
|
+
overflow: visible;
|
|
76
|
+
}
|
|
77
|
+
.it__overflow\=auto {
|
|
78
|
+
overflow: auto;
|
|
79
|
+
}
|
|
80
|
+
.it__overflow-x\=hidden {
|
|
81
|
+
overflow-x: hidden;
|
|
82
|
+
}
|
|
83
|
+
.it__overflow-x\=visible {
|
|
84
|
+
overflow-x: visible;
|
|
85
|
+
}
|
|
86
|
+
.it__overflow-x\=auto {
|
|
87
|
+
overflow-x: auto;
|
|
88
|
+
}
|
|
89
|
+
.it__overflow-y\=hidden {
|
|
90
|
+
overflow-y: hidden;
|
|
91
|
+
}
|
|
92
|
+
.it__overflow-y\=visible {
|
|
93
|
+
overflow-y: visible;
|
|
94
|
+
}
|
|
95
|
+
.it__overflow-y\=auto {
|
|
96
|
+
overflow-y: auto;
|
|
97
|
+
}
|
|
98
|
+
.it__height\=0 {
|
|
99
|
+
height: 0;
|
|
100
|
+
}
|
|
101
|
+
.it__height\=100\% {
|
|
102
|
+
height: 100%;
|
|
103
|
+
}
|
|
104
|
+
.it__width\=0 {
|
|
105
|
+
width: 0;
|
|
106
|
+
}
|
|
107
|
+
.it__width\=100\% {
|
|
108
|
+
width: 100%;
|
|
109
|
+
}
|
|
110
|
+
.it__top\=0 {
|
|
111
|
+
top: 0;
|
|
112
|
+
}
|
|
113
|
+
.it__top\=100\% {
|
|
114
|
+
top: 100%;
|
|
115
|
+
}
|
|
116
|
+
.it__left\=0 {
|
|
117
|
+
left: 0;
|
|
118
|
+
}
|
|
119
|
+
.it__left\=100\% {
|
|
120
|
+
left: 100%;
|
|
121
|
+
}
|
|
122
|
+
.it__transform\=translate3D000 {
|
|
123
|
+
transform: translate3d(0, 0, 0);
|
|
124
|
+
}
|
|
125
|
+
.it__will-change\=transform {
|
|
126
|
+
will-change: transform;
|
|
127
|
+
}
|
|
128
|
+
.it__position\=relative {
|
|
129
|
+
position: relative;
|
|
130
|
+
}
|
|
131
|
+
.it__position\=absolute {
|
|
132
|
+
position: absolute;
|
|
133
|
+
}
|
|
134
|
+
.it__position\=fixed {
|
|
135
|
+
position: fixed;
|
|
136
|
+
}
|
|
137
|
+
.it__display\=flex {
|
|
138
|
+
display: flex;
|
|
139
|
+
}
|
|
140
|
+
.it__flex-flow\=row {
|
|
141
|
+
flex-flow: row;
|
|
142
|
+
}
|
|
143
|
+
.it__flex-flow\=column {
|
|
144
|
+
flex-flow: column;
|
|
145
|
+
}
|
|
146
|
+
.it__white-space\=nowrap {
|
|
147
|
+
white-space: nowrap;
|
|
148
|
+
}
|
|
149
|
+
.it__text-overflow\=ellipsis {
|
|
150
|
+
text-overflow: ellipsis;
|
|
151
|
+
}
|
|
152
|
+
.it__user-select\=none {
|
|
153
|
+
user-select: none;
|
|
154
|
+
}
|
|
155
|
+
.IT-VirtualScrollContainer {
|
|
156
|
+
backface-visibility: hidden;
|
|
157
|
+
-webkit-overflow-scrolling: touch;
|
|
158
|
+
}
|
|
159
|
+
.IT-VirtualScrollContainer, .IT-VirtualScrollContainer:before, .IT-VirtualScrollContainer:after, .IT-VirtualScrollContainer *, .IT-VirtualScrollContainer *:before, .IT-VirtualScrollContainer *:after {
|
|
160
|
+
box-sizing: border-box;
|
|
161
|
+
}
|
|
162
|
+
.IT-VirtualScrollContainer > :first-child {
|
|
163
|
+
position: -webkit-sticky;
|
|
164
|
+
position: sticky;
|
|
165
|
+
top: 0;
|
|
166
|
+
left: 0;
|
|
167
|
+
}
|
|
168
|
+
.IList, .IList:before, .IList:after, .IList *, .IList *:before, .IList *:after {
|
|
169
|
+
box-sizing: border-box;
|
|
170
|
+
}
|
|
171
|
+
.IList--vertical {
|
|
172
|
+
display: inline-block;
|
|
173
|
+
}
|
|
174
|
+
.IListItemRoot > :first-child {
|
|
175
|
+
height: inherit;
|
|
176
|
+
}
|
|
177
|
+
:root {
|
|
178
|
+
--ITable__font-family: inherit;
|
|
179
|
+
--ITable__color: #484848;
|
|
180
|
+
--ITable__background: white;
|
|
181
|
+
--ITable__min-height: 100px;
|
|
182
|
+
--ITableCell__border-radius: var(--it-space-2);
|
|
183
|
+
--ITableHeader__color: #6f6f6f;
|
|
184
|
+
--ITableHeaderCell__background: #ededed;
|
|
185
|
+
--ITableHeader__background: var(--ITableHeaderCell__background);
|
|
186
|
+
--ITableHeaderCell--dragging__background: #d4d3d3;
|
|
187
|
+
--ITableHeaderCell-icon-size: 16px;
|
|
188
|
+
--ITableCell__border-width: 1px;
|
|
189
|
+
--ITableCell__border: var(--ITableCell__border-width) solid #c6c6c6;
|
|
190
|
+
--ITableCell__padding: var(--it-space-2) var(--it-space-3);
|
|
191
|
+
--ITableHeaderCell__padding: var(--it-space-3) var(--it-space-3);
|
|
192
|
+
--ITableRow__color: inherit;
|
|
193
|
+
--ITableRow__background: var(--ITable__background, transparent);
|
|
194
|
+
--ITableRow--odd__background: #f6f6f6;
|
|
195
|
+
--ITableRow-group-row__background: #cbc5c5;
|
|
196
|
+
--ITableRow-group-column-nesting: 30px;
|
|
197
|
+
--ITableRow--hover__background: #dbdbdb;
|
|
198
|
+
--ITable--theme: light;
|
|
199
|
+
--ITableHeader__height: 30px;
|
|
200
|
+
--ITable-accent__color: #ff7043;
|
|
201
|
+
}
|
|
202
|
+
.it--theme-dark {
|
|
203
|
+
--ITable__background: #101419;
|
|
204
|
+
--ITableHeader__color: #c3c3c3;
|
|
205
|
+
--ITableHeaderCell__background: black;
|
|
206
|
+
--ITableHeader__background: var(--ITableHeaderCell__background);
|
|
207
|
+
--ITableRow--hover__background: #3b4754;
|
|
208
|
+
--ITableRow__background: var(--ITable__background, transparent);
|
|
209
|
+
--ITableRow--odd__background: #242a31;
|
|
210
|
+
--ITableRow__color: #c3c3c3;
|
|
211
|
+
}
|
|
212
|
+
.ITable {
|
|
213
|
+
position: relative;
|
|
214
|
+
font-family: var(--ITable__font-family);
|
|
215
|
+
color: var(--ITable__color);
|
|
216
|
+
background: var(--ITable__background);
|
|
217
|
+
min-height: var(--ITable__min-height);
|
|
218
|
+
display: flex;
|
|
219
|
+
flex-flow: column;
|
|
220
|
+
}
|
|
221
|
+
.ITable, .ITable:before, .ITable:after, .ITable *, .ITable *:before, .ITable *:after {
|
|
222
|
+
box-sizing: border-box;
|
|
223
|
+
}
|
|
224
|
+
.ITable--shifting {
|
|
225
|
+
user-select: none;
|
|
226
|
+
}
|
|
227
|
+
.ITable-Portal {
|
|
228
|
+
z-index: 1000;
|
|
229
|
+
position: absolute;
|
|
230
|
+
top: 0;
|
|
231
|
+
left: 0;
|
|
232
|
+
}
|
|
233
|
+
.ITableBody {
|
|
234
|
+
flex: 1;
|
|
235
|
+
}
|
|
236
|
+
.ITableFooter {
|
|
237
|
+
padding: var(--it-space-2);
|
|
238
|
+
}
|
|
239
|
+
.ITableCell {
|
|
240
|
+
padding: var(--ITableCell__padding);
|
|
241
|
+
white-space: nowrap;
|
|
242
|
+
will-change: transform;
|
|
243
|
+
position: absolute;
|
|
244
|
+
}
|
|
245
|
+
.ITableCell--shifting {
|
|
246
|
+
transition: left 300ms;
|
|
247
|
+
}
|
|
248
|
+
.ITableCell--dragging {
|
|
249
|
+
transition: none;
|
|
250
|
+
}
|
|
251
|
+
.ITableHeaderCell {
|
|
252
|
+
background: var(--ITableHeaderCell__background);
|
|
253
|
+
padding: var(--ITableHeaderCell__padding);
|
|
254
|
+
}
|
|
255
|
+
.ITableHeaderCell--first,
|
|
256
|
+
.ITableColumnCell--first {
|
|
257
|
+
border-top-left-radius: var(--ITableCell__border-radius);
|
|
258
|
+
border-bottom-left-radius: var(--ITableCell__border-radius);
|
|
259
|
+
}
|
|
260
|
+
.ITableHeaderCell--last,
|
|
261
|
+
.ITableColumnCell--last {
|
|
262
|
+
border-top-right-radius: var(--ITableCell__border-radius);
|
|
263
|
+
border-bottom-right-radius: var(--ITableCell__border-radius);
|
|
264
|
+
}
|
|
265
|
+
.ITableHeaderCell,
|
|
266
|
+
.ITableColumnCell {
|
|
267
|
+
border-left: var(--ITableCell__border-width) solid transparent;
|
|
268
|
+
border-right: var(--ITableCell__border-width) solid transparent;
|
|
269
|
+
}
|
|
270
|
+
.ITableHeaderCell--pinned-start.ITableCell--last-in-category,
|
|
271
|
+
.ITableColumnCell--pinned-start.ITableCell--last-in-category {
|
|
272
|
+
border-right: var(--ITableCell__border);
|
|
273
|
+
}
|
|
274
|
+
.ITableHeaderCell--pinned-end.ITableCell--first-in-category,
|
|
275
|
+
.ITableColumnCell--pinned-end.ITableCell--first-in-category {
|
|
276
|
+
border-left: var(--ITableCell__border);
|
|
277
|
+
}
|
|
278
|
+
.ITableRow--group-row.ITableRow--odd .ITableCell::before,
|
|
279
|
+
.ITableRow--group-row.ITableRow--even .ITableCell::before {
|
|
280
|
+
content: "";
|
|
281
|
+
background: var(--ITable-accent__color);
|
|
282
|
+
position: absolute;
|
|
283
|
+
top: 0;
|
|
284
|
+
left: calc(0px - var(--ITableCell__border-width));
|
|
285
|
+
right: calc(0px - var(--ITableCell__border-width));
|
|
286
|
+
bottom: 0;
|
|
287
|
+
z-index: -1;
|
|
288
|
+
opacity: 0.05;
|
|
289
|
+
pointer-events: none;
|
|
290
|
+
}
|
|
291
|
+
.ITableIcon {
|
|
292
|
+
fill: currentColor;
|
|
293
|
+
flex: none;
|
|
294
|
+
}
|
|
295
|
+
.ITableIcon-expander {
|
|
296
|
+
cursor: pointer;
|
|
297
|
+
user-select: none;
|
|
298
|
+
}
|
|
299
|
+
.ITableIcon-expander--expanded {
|
|
300
|
+
fill: var(--ITable-accent__color);
|
|
301
|
+
}
|
|
302
|
+
.ITableRow {
|
|
303
|
+
color: var(--ITableRow__color);
|
|
304
|
+
will-change: transform;
|
|
305
|
+
}
|
|
306
|
+
.ITableRow--hover {
|
|
307
|
+
--ITableRow__background: var(--ITableRow--hover__background);
|
|
308
|
+
--ITableRow--odd__background: var(--ITableRow--hover__background);
|
|
309
|
+
}
|
|
310
|
+
.ITable--scrolling .ITableRow {
|
|
311
|
+
pointer-events: none;
|
|
312
|
+
}
|
|
313
|
+
.ITableRow--even {
|
|
314
|
+
background: var(--ITableRow__background);
|
|
315
|
+
}
|
|
316
|
+
.ITableRow--odd {
|
|
317
|
+
background: var(--ITableRow--odd__background);
|
|
318
|
+
}
|
|
319
|
+
.ITableHeader {
|
|
320
|
+
background: var(--ITableHeader__background);
|
|
321
|
+
color: var(--ITableHeader__color);
|
|
322
|
+
}
|
|
323
|
+
.ITableHeader--unvirtualized {
|
|
324
|
+
position: relative;
|
|
325
|
+
align-items: stretch;
|
|
326
|
+
}
|
|
327
|
+
.ITableHeaderCell {
|
|
328
|
+
border-right: var(--ITableCell__border);
|
|
329
|
+
}
|
|
330
|
+
.ITableHeaderCell--dragging {
|
|
331
|
+
z-index: 100;
|
|
332
|
+
opacity: 0.8;
|
|
333
|
+
background: var(--ITableHeaderCell--dragging__background);
|
|
334
|
+
}
|
|
335
|
+
.ITableHeaderCell--pinned-start {
|
|
336
|
+
z-index: 10;
|
|
337
|
+
}
|
|
338
|
+
.ITableHeaderCellProxy {
|
|
339
|
+
background: var(--ITableHeader__background);
|
|
340
|
+
opacity: 0.9;
|
|
341
|
+
padding: var(--ITableCell__padding);
|
|
342
|
+
padding-left: 20px;
|
|
343
|
+
z-index: 200;
|
|
344
|
+
}
|
|
345
|
+
.ITableHeaderCell__sort-icon {
|
|
346
|
+
margin-left: 10px;
|
|
347
|
+
position: relative;
|
|
348
|
+
}
|
|
349
|
+
.ITableHeaderCell__sort-icon [data-name=index] {
|
|
350
|
+
line-height: 0;
|
|
351
|
+
font-size: 10px;
|
|
352
|
+
border-radius: 50%;
|
|
353
|
+
padding: 1px;
|
|
354
|
+
}
|
|
355
|
+
.ITableHeaderGroup__header {
|
|
356
|
+
padding: var(--ITableCell__padding);
|
|
357
|
+
border-bottom: var(--ITableCell__border);
|
|
358
|
+
border-right: var(--ITableCell__border);
|
|
359
|
+
}
|
|
360
|
+
.ITableHeaderGroup__children {
|
|
361
|
+
flex: 1;
|
|
362
|
+
}
|
|
363
|
+
/**********************************
|
|
364
|
+
** ADAPTABLE BASE STYLES **
|
|
365
|
+
**********************************/
|
|
366
|
+
:root {
|
|
367
|
+
--rdp-cell-size: 40px;
|
|
368
|
+
--rdp-accent-color: #0000ff;
|
|
369
|
+
--rdp-background-color: #e7edff;
|
|
370
|
+
/* Switch to dark colors for dark themes */
|
|
371
|
+
--rdp-accent-color-dark: #3003e1;
|
|
372
|
+
--rdp-background-color-dark: #180270;
|
|
373
|
+
/* Outline border for focused elements */
|
|
374
|
+
--rdp-outline: 2px solid var(--rdp-accent-color);
|
|
375
|
+
}
|
|
376
|
+
.rdp {
|
|
377
|
+
display: inline-block;
|
|
378
|
+
font-size: 1rem;
|
|
379
|
+
margin: 1em;
|
|
380
|
+
}
|
|
381
|
+
/* Hide elements for devices that are not screen readers */
|
|
382
|
+
.rdp-vhidden {
|
|
383
|
+
border: 0;
|
|
384
|
+
clip: rect(1px, 1px, 1px, 1px);
|
|
385
|
+
height: 1px;
|
|
386
|
+
overflow: hidden;
|
|
387
|
+
padding: 0;
|
|
388
|
+
position: absolute;
|
|
389
|
+
top: 0;
|
|
390
|
+
width: 1px;
|
|
391
|
+
}
|
|
392
|
+
/* Buttons */
|
|
393
|
+
.rdp-button_reset {
|
|
394
|
+
appearance: none;
|
|
395
|
+
position: relative;
|
|
396
|
+
margin: 0;
|
|
397
|
+
padding: 0;
|
|
398
|
+
cursor: default;
|
|
399
|
+
color: inherit;
|
|
400
|
+
outline: none;
|
|
401
|
+
background: none;
|
|
402
|
+
font: inherit;
|
|
403
|
+
|
|
404
|
+
-moz-appearance: none;
|
|
405
|
+
-webkit-appearance: none;
|
|
406
|
+
}
|
|
407
|
+
.rdp-button {
|
|
408
|
+
border: 2px solid transparent;
|
|
409
|
+
}
|
|
410
|
+
.rdp-button[disabled] {
|
|
411
|
+
opacity: 0.25;
|
|
412
|
+
}
|
|
413
|
+
.rdp-button:not([disabled]) {
|
|
414
|
+
cursor: pointer;
|
|
415
|
+
}
|
|
416
|
+
.rdp-button:focus:not([disabled]),
|
|
417
|
+
.rdp-button:active:not([disabled]) {
|
|
418
|
+
color: inherit;
|
|
419
|
+
border: var(--rdp-outline);
|
|
420
|
+
background-color: var(--rdp-background-color);
|
|
421
|
+
}
|
|
422
|
+
.rdp-button:hover:not([disabled]) {
|
|
423
|
+
background-color: var(--rdp-background-color);
|
|
424
|
+
}
|
|
425
|
+
.rdp-months {
|
|
426
|
+
display: flex;
|
|
427
|
+
}
|
|
428
|
+
.rdp-month {
|
|
429
|
+
margin: 0 1em;
|
|
430
|
+
}
|
|
431
|
+
.rdp-month:first-child {
|
|
432
|
+
margin-left: 0;
|
|
433
|
+
}
|
|
434
|
+
.rdp-month:last-child {
|
|
435
|
+
margin-right: 0;
|
|
436
|
+
}
|
|
437
|
+
.rdp-table {
|
|
438
|
+
margin: 0;
|
|
439
|
+
max-width: calc(var(--rdp-cell-size) * 7);
|
|
440
|
+
border-collapse: collapse;
|
|
441
|
+
}
|
|
442
|
+
.rdp-with_weeknumber .rdp-table {
|
|
443
|
+
max-width: calc(var(--rdp-cell-size) * 8);
|
|
444
|
+
border-collapse: collapse;
|
|
445
|
+
}
|
|
446
|
+
.rdp-caption {
|
|
447
|
+
display: flex;
|
|
448
|
+
align-items: center;
|
|
449
|
+
justify-content: space-between;
|
|
450
|
+
padding: 0;
|
|
451
|
+
text-align: left;
|
|
452
|
+
}
|
|
453
|
+
.rdp-multiple_months .rdp-caption {
|
|
454
|
+
position: relative;
|
|
455
|
+
display: block;
|
|
456
|
+
text-align: center;
|
|
457
|
+
}
|
|
458
|
+
.rdp-caption_dropdowns {
|
|
459
|
+
position: relative;
|
|
460
|
+
display: inline-flex;
|
|
461
|
+
}
|
|
462
|
+
.rdp-caption_label {
|
|
463
|
+
position: relative;
|
|
464
|
+
z-index: 1;
|
|
465
|
+
display: inline-flex;
|
|
466
|
+
align-items: center;
|
|
467
|
+
margin: 0;
|
|
468
|
+
padding: 0 0.25em;
|
|
469
|
+
white-space: nowrap;
|
|
470
|
+
color: currentColor;
|
|
471
|
+
border: 0;
|
|
472
|
+
border: 2px solid transparent;
|
|
473
|
+
font-family: inherit;
|
|
474
|
+
font-size: 140%;
|
|
475
|
+
font-weight: bold;
|
|
476
|
+
}
|
|
477
|
+
.rdp-nav {
|
|
478
|
+
white-space: nowrap;
|
|
479
|
+
}
|
|
480
|
+
.rdp-multiple_months .rdp-caption_first .rdp-nav {
|
|
481
|
+
position: absolute;
|
|
482
|
+
top: 50%;
|
|
483
|
+
left: 0;
|
|
484
|
+
transform: translateY(-50%);
|
|
485
|
+
}
|
|
486
|
+
.rdp-multiple_months .rdp-caption_last .rdp-nav {
|
|
487
|
+
position: absolute;
|
|
488
|
+
top: 50%;
|
|
489
|
+
right: 0;
|
|
490
|
+
transform: translateY(-50%);
|
|
491
|
+
}
|
|
492
|
+
.rdp-nav_button {
|
|
493
|
+
display: inline-flex;
|
|
494
|
+
align-items: center;
|
|
495
|
+
justify-content: center;
|
|
496
|
+
width: var(--rdp-cell-size);
|
|
497
|
+
height: var(--rdp-cell-size);
|
|
498
|
+
padding: 0.25em;
|
|
499
|
+
border-radius: 100%;
|
|
500
|
+
}
|
|
501
|
+
/* ---------- */
|
|
502
|
+
/* Dropdowns */
|
|
503
|
+
/* ---------- */
|
|
504
|
+
.rdp-dropdown_year,
|
|
505
|
+
.rdp-dropdown_month {
|
|
506
|
+
position: relative;
|
|
507
|
+
display: inline-flex;
|
|
508
|
+
align-items: center;
|
|
509
|
+
}
|
|
510
|
+
.rdp-dropdown {
|
|
511
|
+
appearance: none;
|
|
512
|
+
position: absolute;
|
|
513
|
+
z-index: 2;
|
|
514
|
+
top: 0;
|
|
515
|
+
bottom: 0;
|
|
516
|
+
left: 0;
|
|
517
|
+
width: 100%;
|
|
518
|
+
margin: 0;
|
|
519
|
+
padding: 0;
|
|
520
|
+
cursor: inherit;
|
|
521
|
+
opacity: 0;
|
|
522
|
+
border: none;
|
|
523
|
+
background-color: transparent;
|
|
524
|
+
font-family: inherit;
|
|
525
|
+
font-size: inherit;
|
|
526
|
+
line-height: inherit;
|
|
527
|
+
}
|
|
528
|
+
.rdp-dropdown[disabled] {
|
|
529
|
+
opacity: unset;
|
|
530
|
+
color: unset;
|
|
531
|
+
}
|
|
532
|
+
.rdp-dropdown:focus:not([disabled]) + .rdp-caption_label,
|
|
533
|
+
.rdp-dropdown:active:not([disabled]) + .rdp-caption_label {
|
|
534
|
+
border: var(--rdp-outline);
|
|
535
|
+
border-radius: 6px;
|
|
536
|
+
background-color: var(--rdp-background-color);
|
|
537
|
+
}
|
|
538
|
+
.rdp-dropdown_icon {
|
|
539
|
+
margin: 0 0 0 5px;
|
|
540
|
+
}
|
|
541
|
+
.rdp-head {
|
|
542
|
+
border: 0;
|
|
543
|
+
}
|
|
544
|
+
.rdp-head_row,
|
|
545
|
+
.rdp-row {
|
|
546
|
+
height: 100%;
|
|
547
|
+
}
|
|
548
|
+
.rdp-head_cell {
|
|
549
|
+
vertical-align: middle;
|
|
550
|
+
text-transform: uppercase;
|
|
551
|
+
font-size: 0.75em;
|
|
552
|
+
font-weight: 700;
|
|
553
|
+
text-align: center;
|
|
554
|
+
height: 100%;
|
|
555
|
+
height: var(--rdp-cell-size);
|
|
556
|
+
padding: 0;
|
|
557
|
+
}
|
|
558
|
+
.rdp-tbody {
|
|
559
|
+
border: 0;
|
|
560
|
+
}
|
|
561
|
+
.rdp-foot {
|
|
562
|
+
margin: 0.5em;
|
|
563
|
+
}
|
|
564
|
+
.rdp-cell {
|
|
565
|
+
width: var(--rdp-cell-size);
|
|
566
|
+
height: 100%;
|
|
567
|
+
height: var(--rdp-cell-size);
|
|
568
|
+
padding: 0;
|
|
569
|
+
text-align: center;
|
|
570
|
+
}
|
|
571
|
+
.rdp-weeknumber {
|
|
572
|
+
font-size: 0.75em;
|
|
573
|
+
}
|
|
574
|
+
.rdp-weeknumber,
|
|
575
|
+
.rdp-day {
|
|
576
|
+
display: flex;
|
|
577
|
+
overflow: hidden;
|
|
578
|
+
align-items: center;
|
|
579
|
+
justify-content: center;
|
|
580
|
+
box-sizing: border-box;
|
|
581
|
+
width: var(--rdp-cell-size);
|
|
582
|
+
max-width: var(--rdp-cell-size);
|
|
583
|
+
height: var(--rdp-cell-size);
|
|
584
|
+
margin: 0;
|
|
585
|
+
border: 2px solid transparent;
|
|
586
|
+
border-radius: 100%;
|
|
587
|
+
}
|
|
588
|
+
.rdp-day_today:not(.rdp-day_outside) {
|
|
589
|
+
font-weight: bold;
|
|
590
|
+
}
|
|
591
|
+
.rdp-day_selected:not([disabled]),
|
|
592
|
+
.rdp-day_selected:focus:not([disabled]),
|
|
593
|
+
.rdp-day_selected:active:not([disabled]),
|
|
594
|
+
.rdp-day_selected:hover:not([disabled]) {
|
|
595
|
+
color: white;
|
|
596
|
+
background-color: var(--rdp-accent-color);
|
|
597
|
+
}
|
|
598
|
+
.rdp-day_range_start {
|
|
599
|
+
border-top-right-radius: 0;
|
|
600
|
+
border-bottom-right-radius: 0;
|
|
601
|
+
}
|
|
602
|
+
.rdp-day_range_end {
|
|
603
|
+
border-top-left-radius: 0;
|
|
604
|
+
border-bottom-left-radius: 0;
|
|
605
|
+
}
|
|
606
|
+
.rdp-day_range_end.rdp-day_range_start {
|
|
607
|
+
border-radius: 100%;
|
|
608
|
+
}
|
|
609
|
+
.rdp-day_range_middle {
|
|
610
|
+
border-radius: 0;
|
|
611
|
+
}
|
|
612
|
+
.Toastify__toast-container {
|
|
613
|
+
z-index: 9999;
|
|
614
|
+
-webkit-transform: translate3d(0, 0, 9999px);
|
|
615
|
+
position: fixed;
|
|
616
|
+
padding: 4px;
|
|
617
|
+
width: 320px;
|
|
618
|
+
box-sizing: border-box;
|
|
619
|
+
color: #fff;
|
|
620
|
+
}
|
|
621
|
+
.Toastify__toast-container--top-left {
|
|
622
|
+
top: 1em;
|
|
623
|
+
left: 1em;
|
|
624
|
+
}
|
|
625
|
+
.Toastify__toast-container--top-center {
|
|
626
|
+
top: 1em;
|
|
627
|
+
left: 50%;
|
|
628
|
+
transform: translateX(-50%);
|
|
629
|
+
}
|
|
630
|
+
.Toastify__toast-container--top-right {
|
|
631
|
+
top: 1em;
|
|
632
|
+
right: 1em;
|
|
633
|
+
}
|
|
634
|
+
.Toastify__toast-container--bottom-left {
|
|
635
|
+
bottom: 1em;
|
|
636
|
+
left: 1em;
|
|
637
|
+
}
|
|
638
|
+
.Toastify__toast-container--bottom-center {
|
|
639
|
+
bottom: 1em;
|
|
640
|
+
left: 50%;
|
|
641
|
+
transform: translateX(-50%);
|
|
642
|
+
}
|
|
643
|
+
.Toastify__toast-container--bottom-right {
|
|
644
|
+
bottom: 1em;
|
|
645
|
+
right: 1em;
|
|
646
|
+
}
|
|
647
|
+
@media only screen and (max-width : 480px) {
|
|
648
|
+
.Toastify__toast-container {
|
|
649
|
+
width: 100vw;
|
|
650
|
+
padding: 0;
|
|
651
|
+
left: 0;
|
|
652
|
+
margin: 0;
|
|
653
|
+
}
|
|
654
|
+
.Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
|
|
655
|
+
top: 0;
|
|
656
|
+
transform: translateX(0);
|
|
657
|
+
}
|
|
658
|
+
.Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
|
|
659
|
+
bottom: 0;
|
|
660
|
+
transform: translateX(0);
|
|
661
|
+
}
|
|
662
|
+
.Toastify__toast-container--rtl {
|
|
663
|
+
right: 0;
|
|
664
|
+
left: initial;
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
.Toastify__toast {
|
|
668
|
+
position: relative;
|
|
669
|
+
min-height: 64px;
|
|
670
|
+
box-sizing: border-box;
|
|
671
|
+
margin-bottom: 1rem;
|
|
672
|
+
padding: 8px;
|
|
673
|
+
border-radius: 4px;
|
|
674
|
+
box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
|
|
675
|
+
display: -ms-flexbox;
|
|
676
|
+
display: flex;
|
|
677
|
+
-ms-flex-pack: justify;
|
|
678
|
+
justify-content: space-between;
|
|
679
|
+
max-height: 800px;
|
|
680
|
+
overflow: hidden;
|
|
681
|
+
font-family: sans-serif;
|
|
682
|
+
cursor: pointer;
|
|
683
|
+
direction: ltr;
|
|
684
|
+
}
|
|
685
|
+
.Toastify__toast--rtl {
|
|
686
|
+
direction: rtl;
|
|
687
|
+
}
|
|
688
|
+
.Toastify__toast--dark {
|
|
689
|
+
background: #121212;
|
|
690
|
+
color: #fff;
|
|
691
|
+
}
|
|
692
|
+
.Toastify__toast--default {
|
|
693
|
+
background: #fff;
|
|
694
|
+
color: #aaa;
|
|
695
|
+
}
|
|
696
|
+
.Toastify__toast--info {
|
|
697
|
+
background: #3498db;
|
|
698
|
+
}
|
|
699
|
+
.Toastify__toast--success {
|
|
700
|
+
background: #07bc0c;
|
|
701
|
+
}
|
|
702
|
+
.Toastify__toast--warning {
|
|
703
|
+
background: #f1c40f;
|
|
704
|
+
}
|
|
705
|
+
.Toastify__toast--error {
|
|
706
|
+
background: #e74c3c;
|
|
707
|
+
}
|
|
708
|
+
.Toastify__toast-body {
|
|
709
|
+
margin: auto 0;
|
|
710
|
+
-ms-flex: 1 1 auto;
|
|
711
|
+
flex: 1 1 auto;
|
|
712
|
+
padding: 6px;
|
|
713
|
+
}
|
|
714
|
+
.Toastify--animate {
|
|
715
|
+
animation-fill-mode: both;
|
|
716
|
+
animation-duration: 0.7s;
|
|
717
|
+
}
|
|
718
|
+
@media only screen and (max-width : 480px) {
|
|
719
|
+
.Toastify__toast {
|
|
720
|
+
margin-bottom: 0;
|
|
721
|
+
border-radius: 0;
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
.Toastify__close-button {
|
|
725
|
+
color: #fff;
|
|
726
|
+
background: transparent;
|
|
727
|
+
outline: none;
|
|
728
|
+
border: none;
|
|
729
|
+
padding: 0;
|
|
730
|
+
cursor: pointer;
|
|
731
|
+
opacity: 0.7;
|
|
732
|
+
transition: 0.3s ease;
|
|
733
|
+
-ms-flex-item-align: start;
|
|
734
|
+
align-self: flex-start;
|
|
735
|
+
}
|
|
736
|
+
.Toastify__close-button--default {
|
|
737
|
+
color: #000;
|
|
738
|
+
opacity: 0.3;
|
|
739
|
+
}
|
|
740
|
+
.Toastify__close-button > svg {
|
|
741
|
+
fill: currentColor;
|
|
742
|
+
height: 16px;
|
|
743
|
+
width: 14px;
|
|
744
|
+
}
|
|
745
|
+
.Toastify__close-button:hover, .Toastify__close-button:focus {
|
|
746
|
+
opacity: 1;
|
|
747
|
+
}
|
|
748
|
+
@keyframes Toastify__trackProgress {
|
|
749
|
+
0% {
|
|
750
|
+
transform: scaleX(1);
|
|
751
|
+
}
|
|
752
|
+
100% {
|
|
753
|
+
transform: scaleX(0);
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
.Toastify__progress-bar {
|
|
757
|
+
position: absolute;
|
|
758
|
+
bottom: 0;
|
|
759
|
+
left: 0;
|
|
760
|
+
width: 100%;
|
|
761
|
+
height: 5px;
|
|
762
|
+
z-index: 9999;
|
|
763
|
+
opacity: 0.7;
|
|
764
|
+
background-color: rgba(255, 255, 255, 0.7);
|
|
765
|
+
transform-origin: left;
|
|
766
|
+
}
|
|
767
|
+
.Toastify__progress-bar--animated {
|
|
768
|
+
animation: Toastify__trackProgress linear 1 forwards;
|
|
769
|
+
}
|
|
770
|
+
.Toastify__progress-bar--controlled {
|
|
771
|
+
transition: transform 0.2s;
|
|
772
|
+
}
|
|
773
|
+
.Toastify__progress-bar--rtl {
|
|
774
|
+
right: 0;
|
|
775
|
+
left: initial;
|
|
776
|
+
transform-origin: right;
|
|
777
|
+
}
|
|
778
|
+
.Toastify__progress-bar--default {
|
|
779
|
+
background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55);
|
|
780
|
+
}
|
|
781
|
+
.Toastify__progress-bar--dark {
|
|
782
|
+
background: #bb86fc;
|
|
783
|
+
}
|
|
784
|
+
@keyframes Toastify__bounceInRight {
|
|
785
|
+
from, 60%, 75%, 90%, to {
|
|
786
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
787
|
+
}
|
|
788
|
+
from {
|
|
789
|
+
opacity: 0;
|
|
790
|
+
transform: translate3d(3000px, 0, 0);
|
|
791
|
+
}
|
|
792
|
+
60% {
|
|
793
|
+
opacity: 1;
|
|
794
|
+
transform: translate3d(-25px, 0, 0);
|
|
795
|
+
}
|
|
796
|
+
75% {
|
|
797
|
+
transform: translate3d(10px, 0, 0);
|
|
798
|
+
}
|
|
799
|
+
90% {
|
|
800
|
+
transform: translate3d(-5px, 0, 0);
|
|
801
|
+
}
|
|
802
|
+
to {
|
|
803
|
+
transform: none;
|
|
804
|
+
}
|
|
805
|
+
}
|
|
806
|
+
@keyframes Toastify__bounceOutRight {
|
|
807
|
+
20% {
|
|
808
|
+
opacity: 1;
|
|
809
|
+
transform: translate3d(-20px, 0, 0);
|
|
810
|
+
}
|
|
811
|
+
to {
|
|
812
|
+
opacity: 0;
|
|
813
|
+
transform: translate3d(2000px, 0, 0);
|
|
814
|
+
}
|
|
815
|
+
}
|
|
816
|
+
@keyframes Toastify__bounceInLeft {
|
|
817
|
+
from, 60%, 75%, 90%, to {
|
|
818
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
819
|
+
}
|
|
820
|
+
0% {
|
|
821
|
+
opacity: 0;
|
|
822
|
+
transform: translate3d(-3000px, 0, 0);
|
|
823
|
+
}
|
|
824
|
+
60% {
|
|
825
|
+
opacity: 1;
|
|
826
|
+
transform: translate3d(25px, 0, 0);
|
|
827
|
+
}
|
|
828
|
+
75% {
|
|
829
|
+
transform: translate3d(-10px, 0, 0);
|
|
830
|
+
}
|
|
831
|
+
90% {
|
|
832
|
+
transform: translate3d(5px, 0, 0);
|
|
833
|
+
}
|
|
834
|
+
to {
|
|
835
|
+
transform: none;
|
|
836
|
+
}
|
|
837
|
+
}
|
|
838
|
+
@keyframes Toastify__bounceOutLeft {
|
|
839
|
+
20% {
|
|
840
|
+
opacity: 1;
|
|
841
|
+
transform: translate3d(20px, 0, 0);
|
|
842
|
+
}
|
|
843
|
+
to {
|
|
844
|
+
opacity: 0;
|
|
845
|
+
transform: translate3d(-2000px, 0, 0);
|
|
846
|
+
}
|
|
847
|
+
}
|
|
848
|
+
@keyframes Toastify__bounceInUp {
|
|
849
|
+
from, 60%, 75%, 90%, to {
|
|
850
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
851
|
+
}
|
|
852
|
+
from {
|
|
853
|
+
opacity: 0;
|
|
854
|
+
transform: translate3d(0, 3000px, 0);
|
|
855
|
+
}
|
|
856
|
+
60% {
|
|
857
|
+
opacity: 1;
|
|
858
|
+
transform: translate3d(0, -20px, 0);
|
|
859
|
+
}
|
|
860
|
+
75% {
|
|
861
|
+
transform: translate3d(0, 10px, 0);
|
|
862
|
+
}
|
|
863
|
+
90% {
|
|
864
|
+
transform: translate3d(0, -5px, 0);
|
|
865
|
+
}
|
|
866
|
+
to {
|
|
867
|
+
transform: translate3d(0, 0, 0);
|
|
868
|
+
}
|
|
869
|
+
}
|
|
870
|
+
@keyframes Toastify__bounceOutUp {
|
|
871
|
+
20% {
|
|
872
|
+
transform: translate3d(0, -10px, 0);
|
|
873
|
+
}
|
|
874
|
+
40%, 45% {
|
|
875
|
+
opacity: 1;
|
|
876
|
+
transform: translate3d(0, 20px, 0);
|
|
877
|
+
}
|
|
878
|
+
to {
|
|
879
|
+
opacity: 0;
|
|
880
|
+
transform: translate3d(0, -2000px, 0);
|
|
881
|
+
}
|
|
882
|
+
}
|
|
883
|
+
@keyframes Toastify__bounceInDown {
|
|
884
|
+
from, 60%, 75%, 90%, to {
|
|
885
|
+
animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
886
|
+
}
|
|
887
|
+
0% {
|
|
888
|
+
opacity: 0;
|
|
889
|
+
transform: translate3d(0, -3000px, 0);
|
|
890
|
+
}
|
|
891
|
+
60% {
|
|
892
|
+
opacity: 1;
|
|
893
|
+
transform: translate3d(0, 25px, 0);
|
|
894
|
+
}
|
|
895
|
+
75% {
|
|
896
|
+
transform: translate3d(0, -10px, 0);
|
|
897
|
+
}
|
|
898
|
+
90% {
|
|
899
|
+
transform: translate3d(0, 5px, 0);
|
|
900
|
+
}
|
|
901
|
+
to {
|
|
902
|
+
transform: none;
|
|
903
|
+
}
|
|
904
|
+
}
|
|
905
|
+
@keyframes Toastify__bounceOutDown {
|
|
906
|
+
20% {
|
|
907
|
+
transform: translate3d(0, 10px, 0);
|
|
908
|
+
}
|
|
909
|
+
40%, 45% {
|
|
910
|
+
opacity: 1;
|
|
911
|
+
transform: translate3d(0, -20px, 0);
|
|
912
|
+
}
|
|
913
|
+
to {
|
|
914
|
+
opacity: 0;
|
|
915
|
+
transform: translate3d(0, 2000px, 0);
|
|
916
|
+
}
|
|
917
|
+
}
|
|
918
|
+
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
|
|
919
|
+
animation-name: Toastify__bounceInLeft;
|
|
920
|
+
}
|
|
921
|
+
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
|
|
922
|
+
animation-name: Toastify__bounceInRight;
|
|
923
|
+
}
|
|
924
|
+
.Toastify__bounce-enter--top-center {
|
|
925
|
+
animation-name: Toastify__bounceInDown;
|
|
926
|
+
}
|
|
927
|
+
.Toastify__bounce-enter--bottom-center {
|
|
928
|
+
animation-name: Toastify__bounceInUp;
|
|
929
|
+
}
|
|
930
|
+
.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
|
|
931
|
+
animation-name: Toastify__bounceOutLeft;
|
|
932
|
+
}
|
|
933
|
+
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
|
|
934
|
+
animation-name: Toastify__bounceOutRight;
|
|
935
|
+
}
|
|
936
|
+
.Toastify__bounce-exit--top-center {
|
|
937
|
+
animation-name: Toastify__bounceOutUp;
|
|
938
|
+
}
|
|
939
|
+
.Toastify__bounce-exit--bottom-center {
|
|
940
|
+
animation-name: Toastify__bounceOutDown;
|
|
941
|
+
}
|
|
942
|
+
@keyframes Toastify__zoomIn {
|
|
943
|
+
from {
|
|
944
|
+
opacity: 0;
|
|
945
|
+
transform: scale3d(0.3, 0.3, 0.3);
|
|
946
|
+
}
|
|
947
|
+
50% {
|
|
948
|
+
opacity: 1;
|
|
949
|
+
}
|
|
950
|
+
}
|
|
951
|
+
@keyframes Toastify__zoomOut {
|
|
952
|
+
from {
|
|
953
|
+
opacity: 1;
|
|
954
|
+
}
|
|
955
|
+
50% {
|
|
956
|
+
opacity: 0;
|
|
957
|
+
transform: scale3d(0.3, 0.3, 0.3);
|
|
958
|
+
}
|
|
959
|
+
to {
|
|
960
|
+
opacity: 0;
|
|
961
|
+
}
|
|
962
|
+
}
|
|
963
|
+
.Toastify__zoom-enter {
|
|
964
|
+
animation-name: Toastify__zoomIn;
|
|
965
|
+
}
|
|
966
|
+
.Toastify__zoom-exit {
|
|
967
|
+
animation-name: Toastify__zoomOut;
|
|
968
|
+
}
|
|
969
|
+
@keyframes Toastify__flipIn {
|
|
970
|
+
from {
|
|
971
|
+
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
972
|
+
animation-timing-function: ease-in;
|
|
973
|
+
opacity: 0;
|
|
974
|
+
}
|
|
975
|
+
40% {
|
|
976
|
+
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
|
977
|
+
animation-timing-function: ease-in;
|
|
978
|
+
}
|
|
979
|
+
60% {
|
|
980
|
+
transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
|
|
981
|
+
opacity: 1;
|
|
982
|
+
}
|
|
983
|
+
80% {
|
|
984
|
+
transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
|
|
985
|
+
}
|
|
986
|
+
to {
|
|
987
|
+
transform: perspective(400px);
|
|
988
|
+
}
|
|
989
|
+
}
|
|
990
|
+
@keyframes Toastify__flipOut {
|
|
991
|
+
from {
|
|
992
|
+
transform: perspective(400px);
|
|
993
|
+
}
|
|
994
|
+
30% {
|
|
995
|
+
transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
|
|
996
|
+
opacity: 1;
|
|
997
|
+
}
|
|
998
|
+
to {
|
|
999
|
+
transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
|
|
1000
|
+
opacity: 0;
|
|
1001
|
+
}
|
|
1002
|
+
}
|
|
1003
|
+
.Toastify__flip-enter {
|
|
1004
|
+
animation-name: Toastify__flipIn;
|
|
1005
|
+
}
|
|
1006
|
+
.Toastify__flip-exit {
|
|
1007
|
+
animation-name: Toastify__flipOut;
|
|
1008
|
+
}
|
|
1009
|
+
@keyframes Toastify__slideInRight {
|
|
1010
|
+
from {
|
|
1011
|
+
transform: translate3d(110%, 0, 0);
|
|
1012
|
+
visibility: visible;
|
|
1013
|
+
}
|
|
1014
|
+
to {
|
|
1015
|
+
transform: translate3d(0, 0, 0);
|
|
1016
|
+
}
|
|
1017
|
+
}
|
|
1018
|
+
@keyframes Toastify__slideInLeft {
|
|
1019
|
+
from {
|
|
1020
|
+
transform: translate3d(-110%, 0, 0);
|
|
1021
|
+
visibility: visible;
|
|
1022
|
+
}
|
|
1023
|
+
to {
|
|
1024
|
+
transform: translate3d(0, 0, 0);
|
|
1025
|
+
}
|
|
1026
|
+
}
|
|
1027
|
+
@keyframes Toastify__slideInUp {
|
|
1028
|
+
from {
|
|
1029
|
+
transform: translate3d(0, 110%, 0);
|
|
1030
|
+
visibility: visible;
|
|
1031
|
+
}
|
|
1032
|
+
to {
|
|
1033
|
+
transform: translate3d(0, 0, 0);
|
|
1034
|
+
}
|
|
1035
|
+
}
|
|
1036
|
+
@keyframes Toastify__slideInDown {
|
|
1037
|
+
from {
|
|
1038
|
+
transform: translate3d(0, -110%, 0);
|
|
1039
|
+
visibility: visible;
|
|
1040
|
+
}
|
|
1041
|
+
to {
|
|
1042
|
+
transform: translate3d(0, 0, 0);
|
|
1043
|
+
}
|
|
1044
|
+
}
|
|
1045
|
+
@keyframes Toastify__slideOutRight {
|
|
1046
|
+
from {
|
|
1047
|
+
transform: translate3d(0, 0, 0);
|
|
1048
|
+
}
|
|
1049
|
+
to {
|
|
1050
|
+
visibility: hidden;
|
|
1051
|
+
transform: translate3d(110%, 0, 0);
|
|
1052
|
+
}
|
|
1053
|
+
}
|
|
1054
|
+
@keyframes Toastify__slideOutLeft {
|
|
1055
|
+
from {
|
|
1056
|
+
transform: translate3d(0, 0, 0);
|
|
1057
|
+
}
|
|
1058
|
+
to {
|
|
1059
|
+
visibility: hidden;
|
|
1060
|
+
transform: translate3d(-110%, 0, 0);
|
|
1061
|
+
}
|
|
1062
|
+
}
|
|
1063
|
+
@keyframes Toastify__slideOutDown {
|
|
1064
|
+
from {
|
|
1065
|
+
transform: translate3d(0, 0, 0);
|
|
1066
|
+
}
|
|
1067
|
+
to {
|
|
1068
|
+
visibility: hidden;
|
|
1069
|
+
transform: translate3d(0, 500px, 0);
|
|
1070
|
+
}
|
|
1071
|
+
}
|
|
1072
|
+
@keyframes Toastify__slideOutUp {
|
|
1073
|
+
from {
|
|
1074
|
+
transform: translate3d(0, 0, 0);
|
|
1075
|
+
}
|
|
1076
|
+
to {
|
|
1077
|
+
visibility: hidden;
|
|
1078
|
+
transform: translate3d(0, -500px, 0);
|
|
1079
|
+
}
|
|
1080
|
+
}
|
|
1081
|
+
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
|
|
1082
|
+
animation-name: Toastify__slideInLeft;
|
|
1083
|
+
}
|
|
1084
|
+
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
|
|
1085
|
+
animation-name: Toastify__slideInRight;
|
|
1086
|
+
}
|
|
1087
|
+
.Toastify__slide-enter--top-center {
|
|
1088
|
+
animation-name: Toastify__slideInDown;
|
|
1089
|
+
}
|
|
1090
|
+
.Toastify__slide-enter--bottom-center {
|
|
1091
|
+
animation-name: Toastify__slideInUp;
|
|
1092
|
+
}
|
|
1093
|
+
.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
|
|
1094
|
+
animation-name: Toastify__slideOutLeft;
|
|
1095
|
+
}
|
|
1096
|
+
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
|
|
1097
|
+
animation-name: Toastify__slideOutRight;
|
|
1098
|
+
}
|
|
1099
|
+
.Toastify__slide-exit--top-center {
|
|
1100
|
+
animation-name: Toastify__slideOutUp;
|
|
1101
|
+
}
|
|
1102
|
+
.Toastify__slide-exit--bottom-center {
|
|
1103
|
+
animation-name: Toastify__slideOutDown;
|
|
1104
|
+
}
|
|
1105
|
+
:root {
|
|
1106
|
+
--ab-space-0: 0px;
|
|
1107
|
+
--ab-space-1: 4px;
|
|
1108
|
+
--ab-space-2: 8px;
|
|
1109
|
+
--ab-space-3: 16px;
|
|
1110
|
+
--ab-space-4: 32px;
|
|
1111
|
+
--ab-space-5: 64px;
|
|
1112
|
+
--ab-space-6: 128px;
|
|
1113
|
+
--ab-space-7: 256px;
|
|
1114
|
+
--ab-font-size-0: 0.5rem;
|
|
1115
|
+
--ab-font-size-1: 0.625rem;
|
|
1116
|
+
--ab-font-size-2: 0.75rem;
|
|
1117
|
+
--ab-font-size-3: 0.875rem;
|
|
1118
|
+
--ab-font-size-4: 1rem;
|
|
1119
|
+
--ab-font-size-5: 1.25rem;
|
|
1120
|
+
--ab-font-size-6: 1.5rem;
|
|
1121
|
+
--ab-font-size-7: 2.25rem;
|
|
1122
|
+
--ab__font-family: inherit;
|
|
1123
|
+
--ab__border-radius: var(--ab-space-1);
|
|
1124
|
+
--ab-color-inputborder: var(--ab-color-primarydark);
|
|
1125
|
+
--ab-color-inputcolor: var(--ab-color-text-on-primary);
|
|
1126
|
+
--ab-color-error: #dc3545;
|
|
1127
|
+
--ab-color-errorlight: #ffd3d2;
|
|
1128
|
+
--ab-color-warn: #eb9316;
|
|
1129
|
+
--ab-color-info: #17a2b8;
|
|
1130
|
+
--ab-color-success: #419641;
|
|
1131
|
+
--ab-color-accent: #07c;
|
|
1132
|
+
--ab-color-accentlight: #dbf0ff;
|
|
1133
|
+
--ab-color-text-on-success: white;
|
|
1134
|
+
--ab-color-text-on-error: white;
|
|
1135
|
+
--ab-color-text-on-info: white;
|
|
1136
|
+
--ab-color-text-on-warn: white;
|
|
1137
|
+
--ab-color-action-add: #2966A8;
|
|
1138
|
+
--ab-color-action-edit: #17a2b8;
|
|
1139
|
+
--ab-color-action-share: #eb9316;
|
|
1140
|
+
--ab-color-action-delete: #dc3545;
|
|
1141
|
+
--ab-color-action-clone: #419641;
|
|
1142
|
+
--ab-color-text-on-add: white;
|
|
1143
|
+
--ab-color-text-on-edit: white;
|
|
1144
|
+
--ab-color-text-on-share: white;
|
|
1145
|
+
--ab-color-text-on-delete: white;
|
|
1146
|
+
--ab-color-text-on-clone: white;
|
|
1147
|
+
--ab-color-defaultbackground: white;
|
|
1148
|
+
--ab-color-text-on-defaultbackground: var(--ab-color-text-on-primary);
|
|
1149
|
+
--ab-color-primary: #e9e9e9;
|
|
1150
|
+
--ab-color-primarydark: #b7b7b7;
|
|
1151
|
+
--ab-color-primarylight: #f5f5f5;
|
|
1152
|
+
--ab-color-text-on-primary: #656565;
|
|
1153
|
+
--ab-color-text-on-primarydark: var(--ab-color-text-on-primary);
|
|
1154
|
+
--ab-color-secondary: #2966A8;
|
|
1155
|
+
--ab-color-secondarydark: #015a9a;
|
|
1156
|
+
--ab-color-secondarylight: #a9ddff;
|
|
1157
|
+
--ab-color-text-on-secondary: #E2E2E2;
|
|
1158
|
+
--ab-color-text-on-secondarylight: #000000;
|
|
1159
|
+
--ab-color-blue: #419641;
|
|
1160
|
+
--ab-color-focus: var(--ab-color-accent);
|
|
1161
|
+
--ab-gridheader--filtered__background: var(--ab-color-primary);
|
|
1162
|
+
--ab-focus__box-shadow: 0 0 5px 1px var(--ab-color-accent);
|
|
1163
|
+
--ab-focus-within__box-shadow: 0 0 5px 1px var(--ab-color-text-on-primary);
|
|
1164
|
+
--ab-focus__outline: none;
|
|
1165
|
+
--ab-icon-fill: currentColor;
|
|
1166
|
+
--ab-custom-scrollbar-size: 10px;
|
|
1167
|
+
--ab-grid-row-height: 40px;
|
|
1168
|
+
--ab-loaded: 777; }
|
|
1169
|
+
:root {
|
|
1170
|
+
--ITableHeader__color:var(--ab-color-text-on-primary);
|
|
1171
|
+
--ITableHeaderCell__background: var(--ab-color-primary);
|
|
1172
|
+
--ITableHeader__background: var(--ITableHeaderCell__background);
|
|
1173
|
+
--ITableRow__color:var(--ab-color-text-on-primary);
|
|
1174
|
+
--ITable__background: var(--ab-color-primarylight);
|
|
1175
|
+
--ITableRow__background: var(--ab-color-defaultbackground);
|
|
1176
|
+
--ITableRow--odd__background: var(--ab-color-primarylight); }
|
|
1177
|
+
.ab-style__list-group-item:nth-child(2n+1) {
|
|
1178
|
+
background: var(--ab-color-primarylight); }
|
|
1179
|
+
.ab-Grid .ag-header-cell input[type="date" i]::-webkit-calendar-picker-indicator {
|
|
1180
|
+
margin-inline-start: 0px; }
|
|
1181
|
+
.ab-Grid.ab-Grid--indicate-filtered-columns .ag-header-cell-filtered {
|
|
1182
|
+
font-weight: bolder;
|
|
1183
|
+
background: var(--ab-gridheader--filtered__background); }
|
|
1184
|
+
:root {
|
|
1185
|
+
--ab-cmp-checkbox__border-color: var(--ab-color-inputborder);
|
|
1186
|
+
--ab-cmp-checkbox__background: var(--ab-cmp-input__background);
|
|
1187
|
+
--ab-cmp-checkbox--checked__background: var(--ab-color-focus);
|
|
1188
|
+
--ab-cmp-checkbox--check-size: 16px;
|
|
1189
|
+
--ab-cmp-checkbox--check__color: white;
|
|
1190
|
+
--ab-cmp-checkbox--check-indeterminate__color: var(--ab-color-focus);
|
|
1191
|
+
--ab-cmp-checkbox--check-indeterminate-radius: 2px; }
|
|
1192
|
+
.ab-CheckBox--variant-agGrid {
|
|
1193
|
+
--ab-cmp-checkbox--check__color: var(--ag-checkbox-checked-color, var(--ag-balham-active-color, #0091ea));
|
|
1194
|
+
--ab-cmp-checkbox--checked__background: var(--ag-background-color);
|
|
1195
|
+
--ab-cmp-checkbox__border-color: var(--ab-cmp-checkbox--check__color);
|
|
1196
|
+
--ab-cmp-checkbox--check-indeterminate__color: var(--ab-cmp-checkbox__border-color); }
|
|
1197
|
+
.ab-CheckBox--variant-agGrid.ab-CheckBox--indeterminate {
|
|
1198
|
+
--ab-cmp-checkbox--check__color: var(--ag-checkbox-checked-color, var(--ag-balham-active-color, #0091ea)); }
|
|
1199
|
+
.ab-CheckBox--variant-agGrid.ab-CheckBox--unchecked {
|
|
1200
|
+
--ab-cmp-checkbox__border-color: var(--ag-checkbox-unchecked-color); }
|
|
1201
|
+
:root {
|
|
1202
|
+
--ab-cmp-dialog__background: var(--ab-color-defaultbackground, white);
|
|
1203
|
+
--ab-cmp-dialog__color: var(--ab-color-text-on-defaultbackground, white);
|
|
1204
|
+
--ab-cmp-dialog-close-button__color: var(--ab-color-text-on-primary);
|
|
1205
|
+
--ab-cmp-dialog__border-radius: var(--ab__border-radius);
|
|
1206
|
+
--ab-cmp-dialog__min-height: 60vh; }
|
|
1207
|
+
:root {
|
|
1208
|
+
--ab-cmp-dropdown__color: var(--ab-color-inputcolor);
|
|
1209
|
+
--ab-cmp-dropdown--empty__color: var(--ab-color-text-on-defaultbackground);
|
|
1210
|
+
--ab-cmp-dropdown__border: 1px solid var(--ab-color-inputborder);
|
|
1211
|
+
--ab-cmp-dropdown__border-radius: var(--ab__border-radius);
|
|
1212
|
+
--ab-cmp-dropdown__fill: var(--ab-color-text-on-defaultbackground);
|
|
1213
|
+
--ab-cmp-dropdown__font-size: var(--ab-font-size-2);
|
|
1214
|
+
--ab-cmp-dropdown__font-family: var(--ab__font-family);
|
|
1215
|
+
--ab-cmp-dropdown__padding: var(--ab-space-2); }
|
|
1216
|
+
:root {
|
|
1217
|
+
--ab-cmp-dropdownbutton-list__border: none;
|
|
1218
|
+
--ab-cmp-dropdownbutton-list__background: var(--ab-color-primarylight);
|
|
1219
|
+
--ab-cmp-dropdownbutton-list-item__padding: var(--ab-space-2);
|
|
1220
|
+
--ab-cmp-dropdownbutton-list-item-hover__background: var(--ab-color-primary);
|
|
1221
|
+
--ab-cmp-dropdownbutton-list-item-hover__color: var(--ab-color-text-on-primary);
|
|
1222
|
+
--ab-cmp-dropdownbutton-list-item__color: var(--ab-color-text-on-primary);
|
|
1223
|
+
--ab-cmp-dropdownbutton-list__z-index: 1000;
|
|
1224
|
+
--ab-cmp-dropdownbutton-list__border-radius: var(--ab__border-radius);
|
|
1225
|
+
--ab-cmp-dropdownbutton-list__box-shadow: 4px 5px 11px -5px rgba(0, 0, 0, .2), -4px 6px 5px 0 rgba(0, 0, 0, .14), 5px 3px 5px 0 rgba(0, 0, 0, .12);
|
|
1226
|
+
--ab-cmp-dropdownbutton-list-separator__border: 1px solid var(--ab-color-primarydark); }
|
|
1227
|
+
:root {
|
|
1228
|
+
--ab-cmp-error-box__padding: var(--ab-space-3);
|
|
1229
|
+
--ab-cmp-error-box__border-radius: var(--ab__border-radius);
|
|
1230
|
+
--ab-cmp-error-box__color: var(--ab-color-text-on-error);
|
|
1231
|
+
--ab-cmp-error-box__background: var(--ab-color-error); }
|
|
1232
|
+
:root {
|
|
1233
|
+
--ab-cmp-field-wrap__background: var(--ab-color-defaultbackground);
|
|
1234
|
+
--ab-cmp-field-wrap__fill: var(--ab-color-inputcolor);
|
|
1235
|
+
--ab-cmp-field-wrap__border-radius: var(--ab-cmp-input__border-radius); }
|
|
1236
|
+
:root {
|
|
1237
|
+
--ab-cmp-help-block__padding: var(--ab-space-2);
|
|
1238
|
+
--ab-cmp-help-block__border-radius: var(--ab__border-radius);
|
|
1239
|
+
--ab-cmp-help-block__color: var(--ab-color-text-on-primary);
|
|
1240
|
+
--ab-cmp-help-block__background: var(--ab-color-primarylight); }
|
|
1241
|
+
:root {
|
|
1242
|
+
--ab-cmp-code-block__padding: var(--ab-space-1);
|
|
1243
|
+
--ab-cmp-code-block__border-radius: var(--ab__border-radius);
|
|
1244
|
+
--ab-cmp-code-block__color: var(--ab-color-text-on-primary);
|
|
1245
|
+
--ab-cmp-code-block__background: var(--ab-color-primary); }
|
|
1246
|
+
:root {
|
|
1247
|
+
--ab-cmp-input__padding: var(--ab-space-2);
|
|
1248
|
+
--ab-cmp-input__color: var(--ab-color-inputcolor);
|
|
1249
|
+
--ab-cmp-input__background: var(--ab-color-defaultbackground);
|
|
1250
|
+
--ab-cmp-input__border-radius: var(--ab__border-radius);
|
|
1251
|
+
--ab-cmp-input__border: 1px solid var(--ab-color-inputborder);
|
|
1252
|
+
--ab-cmp-input--disabled__background: var(--ab-color-primarylight);
|
|
1253
|
+
--ab-cmp-input__font-size: var(--ab-font-size-2);
|
|
1254
|
+
--ab-cmp-input--placeholder__color: var(--ab-color-text-on-defaultbackground);
|
|
1255
|
+
--ab-cmp-input__font-family: var(--ab__font-family);
|
|
1256
|
+
--ab-cmp-input--placeholder__opacity: 0.6; }
|
|
1257
|
+
:root {
|
|
1258
|
+
--ab-cmp-listgroup: 1; }
|
|
1259
|
+
.ab-ListGroupItem {
|
|
1260
|
+
width: var(--ab-cmp-listgroupitem__width);
|
|
1261
|
+
vertical-align: middle;
|
|
1262
|
+
text-align: start;
|
|
1263
|
+
border: none;
|
|
1264
|
+
padding: var(--ab-space-2);
|
|
1265
|
+
display: flex;
|
|
1266
|
+
flex-flow: row;
|
|
1267
|
+
align-items: center;
|
|
1268
|
+
background: var(--ab-cmp-listgroupitem__background);
|
|
1269
|
+
color: var(--ab-cmp-listgroupitem__color);
|
|
1270
|
+
border-radius: var(--ab-cmp-listgroupitem__border-radius); }
|
|
1271
|
+
.ab-ListGroupItem:nth-child(2n+1) {
|
|
1272
|
+
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
1273
|
+
color: var(--ab-cmp-listgroupitem--odd__color); }
|
|
1274
|
+
.ab-ListGroupItem.ab-ListGroupItem--no-zebra {
|
|
1275
|
+
background: var(--ab-color-defaultbackground); }
|
|
1276
|
+
.ab-ListGroupItem--active.ab-ListGroupItem {
|
|
1277
|
+
background: var(--ab-cmp-listgroupitem--active__background);
|
|
1278
|
+
color: var(--ab-cmp-listgroupitem--active__color); }
|
|
1279
|
+
.ab-ListGroupItem:focus {
|
|
1280
|
+
z-index: 1; }
|
|
1281
|
+
:root {
|
|
1282
|
+
--ab-cmp-modal-backdrop__background: rgba(0, 0, 0, 0.44); }
|
|
1283
|
+
:root {
|
|
1284
|
+
--ab-cmp-tabs__padding: var(--ab-space-2);
|
|
1285
|
+
--ab-cmp-tabs-strip__background: var(--ab-color-defaultbackground);
|
|
1286
|
+
--ab-cmp-tabs-active__background: var(--ab-color-primarylight); }
|
|
1287
|
+
:root {
|
|
1288
|
+
--ab-cmp-panel_header__background: var(--ab-color-primary);
|
|
1289
|
+
--ab-cmp-panel_header__font-size: var(--ab-font-size-2);
|
|
1290
|
+
--ab-cmp-panel__font-size: var(--ab-font-size-3);
|
|
1291
|
+
--ab-cmp-panel__border-radius: var(--ab__border-radius);
|
|
1292
|
+
--ab-cmp-panel__padding: var(--ab-space-2);
|
|
1293
|
+
--ab-cmp-panel__max-height: 80vh;
|
|
1294
|
+
--ab-cmp-panel__border: 1px solid var(--ab-color-inputborder);
|
|
1295
|
+
--ab-cmp-panel-icon__fill: var(--ab-icon-fill);
|
|
1296
|
+
--ab-cmp-panel_body__background: var(--ab-color-defaultbackground);
|
|
1297
|
+
--ab-cmp-panel_body__color: inherit;
|
|
1298
|
+
--ab-cmp-panel_header__padding: var(--ab-space-2);
|
|
1299
|
+
--ab-cmp-panel_header__color: var(--ab-color-text-on-primary);
|
|
1300
|
+
--ab-cmp-panel_header--variant-primary__background: var(--ab-color-secondary);
|
|
1301
|
+
--ab-cmp-panel_header--variant-primary__color: var(--ab-color-text-on-secondary);
|
|
1302
|
+
--ab-cmp-panel_header--variant-modern__background: var(--ab-color-primary);
|
|
1303
|
+
--ab-cmp-panel_header--variant-modern__color: var(--ab-color-text-on-primary);
|
|
1304
|
+
--ab-cmp-panel_body--variant-modern__background: var(--ab-color-primarylight); }
|
|
1305
|
+
:root {
|
|
1306
|
+
--ab-cmp-simple-button__padding: var(--ab-space-1) var(--ab-space-1);
|
|
1307
|
+
--ab-cmp-simple-button__border-radius: var(--ab__border-radius);
|
|
1308
|
+
--ab-cmp-simple-button--outlined__background: var(--ab-color-defaultbackground);
|
|
1309
|
+
--ab-cmp-simple-button--outlined__border: 1px solid var(--ab-color-inputborder);
|
|
1310
|
+
--ab-cmp-simple-button__font-size: var(--ab-font-size-2);
|
|
1311
|
+
--ab-cmp-simple-button__font-family: var(--ab__font-family);
|
|
1312
|
+
--ab-cmp-simple-button__height: 20px;
|
|
1313
|
+
--ab-cmp-simple-button__width: 20px; }
|
|
1314
|
+
:root {
|
|
1315
|
+
--ab-cmp-textarea__padding: var(--ab-space-1) var(--ab-space-2);
|
|
1316
|
+
--ab-cmp-textarea__border-radius: var(--ab__border-radius);
|
|
1317
|
+
--ab-cmp-textarea__border: 1px solid var(--ab-color-inputborder);
|
|
1318
|
+
--ab-cmp-textarea__color: var(--ab-cmp-input__color);
|
|
1319
|
+
--ab-cmp-textarea__font-size: var(--ab-font-size-3);
|
|
1320
|
+
--ab-cmp-textarea__font-family: var(--ab__font-family);
|
|
1321
|
+
--ab-cmp-textarea__background: var(--ab-cmp-input__background);
|
|
1322
|
+
--ab-cmp-textarea--disabled__background: var(--ab-cmp-input--disabled__background); }
|
|
1323
|
+
:root {
|
|
1324
|
+
--ab-cmp-tooltip__opacity: 0.96;
|
|
1325
|
+
--ab-cmp-tooltip__background: var(--ab-color-primary);
|
|
1326
|
+
--ab-cmp-tooltip__color: var(--ab-color-text-on-primary);
|
|
1327
|
+
--ab-cmp-tooltip__border: solid 1px var(--ab-color-inputborder);
|
|
1328
|
+
--ab-cmp-tooltip__font-size: var(--ab-font-size-2); }
|
|
1329
|
+
:root {
|
|
1330
|
+
--ab-cmp-file-droppable__padding: var(--ab-space-5);
|
|
1331
|
+
--ab-cmp-file-droppable__margin: var(--ab-space-1);
|
|
1332
|
+
--ab-cmp-file-droppable__background: var(--ab-color-primary);
|
|
1333
|
+
--ab-cmp-file-droppable__color: var(--ab-color-text-on-primary);
|
|
1334
|
+
--ab-cmp-file-droppable__outline: 2px dashed var(--ab-cmp-file-droppable__color);
|
|
1335
|
+
--ab-cmp-file-droppable__outline-offset: -10px;
|
|
1336
|
+
--ab-cmp-file-droppable--drag-over__background: var(--ab-color-secondary);
|
|
1337
|
+
--ab-cmp-file-droppable--drag-over__color: var(--ab-color-text-on-secondary);
|
|
1338
|
+
--ab-cmp-file-droppable--drag-over__outline-offset: -20px;
|
|
1339
|
+
--ab-cmp-file-droppable--drag-over__outline: 2px dashed var(--ab-cmp-file-droppable--drag-over__color); }
|
|
1340
|
+
:root {
|
|
1341
|
+
--ab-dashboard__background: var(--ab-color-primary);
|
|
1342
|
+
--ab-dashboard-wrap: nowrap;
|
|
1343
|
+
--ab-dashboard-gap-size: 3px;
|
|
1344
|
+
--ab-dashboard-gap__background: var(--ab-color-primarylight);
|
|
1345
|
+
--ab-dashboard__color: var(--ab-color-text-on-primary);
|
|
1346
|
+
--ab-dashboard__border: var(--ab-color-primarydark);
|
|
1347
|
+
--ab-dashboard-header__background: var(--ab-color-secondary);
|
|
1348
|
+
--ab-dashboard-header__color: var(--ab-color-text-on-secondary);
|
|
1349
|
+
--ab-dashboard-tab-drop-target__background: skyblue;
|
|
1350
|
+
--ab-dashboard-toolbar-drag__background: lightgreen; }
|
|
1351
|
+
:root {
|
|
1352
|
+
--ab-cmp-listgroup: 1; }
|
|
1353
|
+
:root {
|
|
1354
|
+
--ab-cmp-datepicker__background: var(--ab-color-defaultbackground);
|
|
1355
|
+
--ab-cmp-datepicker__selected-color: var(--ab-color-primarydark);
|
|
1356
|
+
--ab-cmp-datepicker__selected-text-color: var(--ab-color-text-on-primarydark);
|
|
1357
|
+
--ab-cmp-datepicker__selected-border-radius: 50%;
|
|
1358
|
+
--ab-cmp-datepicker__day-border-radius: 50%;
|
|
1359
|
+
--ab-cmp-datepicker__hover-color: var(--ab-color-primarylight);
|
|
1360
|
+
--ab-cmp-datepicker__border: 1px solid var(--ab-color-primarydark);
|
|
1361
|
+
--ab-cmp-datepicker__font-size: var(--ab-font-size-2);
|
|
1362
|
+
--ab-cmp-datepicker__font-family: var(--ab__font-family);
|
|
1363
|
+
--ab-cmp-datepicker__cell-size: 30px; }
|
|
1364
|
+
:root {
|
|
1365
|
+
--ab-cmp-wizard__padding: var(--ab-space-5);
|
|
1366
|
+
--ab-cmp-wizard__margin: var(--ab-space-1);
|
|
1367
|
+
--ab-cmp-wizard__background: var(--ab-color-primary);
|
|
1368
|
+
--ab-cmp-wizard__color: var(--ab-color-text-on-primary); }
|
|
1369
|
+
:root {
|
|
1370
|
+
--ab-cmp-button-border-radius: 0px;
|
|
1371
|
+
--ab-cmp-button-disabled-opacity: 0.5;
|
|
1372
|
+
--ab-cmp-button-background: var(--ab-color-primary);
|
|
1373
|
+
--ab-cmp-button-disabled-background:var(--ab-color-primarydark); }
|
|
1374
|
+
:root {
|
|
1375
|
+
--ab-cmp-dashboardpanel_body__background: var(--ab-color-primarylight);
|
|
1376
|
+
--ab-cmp-dashboardpanel_header__background: var(--ab-color-primary);
|
|
1377
|
+
--ab-cmp-dashboardpanel_header__fill: currentColor;
|
|
1378
|
+
--ab-cmp-dashboardpanel_header__color: var(--ab-color-text-on-primarydark);
|
|
1379
|
+
--ab-cmp-dashboardpanel__fill: var(--ab-color-text-on-primary);
|
|
1380
|
+
--ab-cmp-dashboardpanel__color: currentColor;
|
|
1381
|
+
--ab-cmp-dashboardpanel_header__padding: var(--ab-space-0);
|
|
1382
|
+
--ab-cmp-dashboardpanel_body__padding: var(--ab-space-1);
|
|
1383
|
+
--ab-cmp-dashboardpanel__border: none; }
|
|
1384
|
+
:root {
|
|
1385
|
+
--ab-cmp-toolpanelpanel__color: var(--ab-cmp-dashboardpanel__color);
|
|
1386
|
+
--ab-cmp-toolpanelpanel__fill: var(--ab-cmp-dashboardpanel__fill);
|
|
1387
|
+
--ab-cmp-toolpanelpanel__border: var(--ab-cmp-dashboardpanel__border);
|
|
1388
|
+
--ab-cmp-toolpanelpanel_header__background: var(--ab-cmp-dashboardpanel_header__background);
|
|
1389
|
+
--ab-cmp-toolpanelpanel_header__fill: var(--ab-cmp-dashboardpanel_header__fill);
|
|
1390
|
+
--ab-cmp-toolpanelpanel_header__color: var(--ab-cmp-dashboardpanel_header__color);
|
|
1391
|
+
--ab-cmp-toolpanelpanel_header__padding: var(--ab-cmp-dashboardpanel_header__padding);
|
|
1392
|
+
--ab-cmp-toolpanelpanel_body__background: var(--ab-cmp-dashboardpanel_body__background);
|
|
1393
|
+
--ab-cmp-toolpanelpanel_body__padding: var(--ab-cmp-dashboardpanel_body__padding); }
|
|
1394
|
+
.ab-LayoutEditor {
|
|
1395
|
+
overflow: auto;
|
|
1396
|
+
display: grid;
|
|
1397
|
+
padding: var(--ab-space-2);
|
|
1398
|
+
grid-template-rows: 1fr 1fr;
|
|
1399
|
+
grid-template-columns: 28rem 1fr 1fr;
|
|
1400
|
+
row-gap: var(--ab-space-2);
|
|
1401
|
+
column-gap: var(--ab-space-2);
|
|
1402
|
+
grid-gap: var(--ab-space-2); }
|
|
1403
|
+
.ab-LayoutEditor, .ab-LayoutEditor * {
|
|
1404
|
+
box-sizing: border-box; }
|
|
1405
|
+
.ab-LayoutEditor__ColumnList {
|
|
1406
|
+
overflow: auto; }
|
|
1407
|
+
.ab-LayoutEditor__ColumnListPanel {
|
|
1408
|
+
grid-row: 1 /3;
|
|
1409
|
+
grid-column: 1 /1;
|
|
1410
|
+
max-height: initial; }
|
|
1411
|
+
.ab-LayoutEditor__ColumnSortListPanel {
|
|
1412
|
+
grid-row: 1 /1;
|
|
1413
|
+
grid-column: 2 /2; }
|
|
1414
|
+
.ab-LayoutEditor__RowGroupsListPanel {
|
|
1415
|
+
grid-row: 2 / 2;
|
|
1416
|
+
grid-column: 2 /2; }
|
|
1417
|
+
.ab-LayoutEditor__PivotListPanel {
|
|
1418
|
+
grid-row: 2 / 2;
|
|
1419
|
+
grid-column: 3 /3; }
|
|
1420
|
+
.ab-LayoutEditor__PivotList--empty,
|
|
1421
|
+
.ab-LayoutEditor__RowGroupsList--empty,
|
|
1422
|
+
.ab-LayoutEditor__ColumnSortList--empty {
|
|
1423
|
+
display: flex;
|
|
1424
|
+
flex-flow: column;
|
|
1425
|
+
align-items: center;
|
|
1426
|
+
justify-content: center; }
|
|
1427
|
+
.ab-LayoutEditor__PivotList,
|
|
1428
|
+
.ab-LayoutEditor__RowGroupsList,
|
|
1429
|
+
.ab-LayoutEditor__ColumnSortList {
|
|
1430
|
+
padding-top: var(--ab-space-2); }
|
|
1431
|
+
.ab-LayoutEditor__PivotList__column,
|
|
1432
|
+
.ab-LayoutEditor__RowGroupsList__column,
|
|
1433
|
+
.ab-LayoutEditor__ColumnSortList__column,
|
|
1434
|
+
.ab-LayoutEditor__ColumnList__column {
|
|
1435
|
+
background: var(--ab-color-primary);
|
|
1436
|
+
color: var(--ab-color-text-on-primary);
|
|
1437
|
+
margin: 0 0 var(--ab-space-2) 0; }
|
|
1438
|
+
.ab-LayoutEditor__PivotList__column,
|
|
1439
|
+
.ab-LayoutEditor__RowGroupsList__column,
|
|
1440
|
+
.ab-LayoutEditor__ColumnSortList__column {
|
|
1441
|
+
padding-top: var(--ab-space-2);
|
|
1442
|
+
padding-bottom: var(--ab-space-2); }
|
|
1443
|
+
:root {
|
|
1444
|
+
--ab-cmp-popover__border-radius: var(--ab__border-radius);
|
|
1445
|
+
--ab-cmp-popover__background: var(--ab-color-defaultbackground);
|
|
1446
|
+
--ab-cmp-popover__color: var(--ab-color-text-on-defaultbackground);
|
|
1447
|
+
--ab-cmp-popover__box-shadow: var(--ab-cmp-dropdownbutton-list__box-shadow);
|
|
1448
|
+
--ab-cmp-popover__border: 1px solid var(--ab-color-primarydark); }
|
|
1449
|
+
:root {
|
|
1450
|
+
--ab-cmp-one-page-wizard__background: var(--ab-color-primary);
|
|
1451
|
+
--ab-cmp-one-page-wizard-content__background: var(--ab-color-defaultbackground);
|
|
1452
|
+
--ab-cmp-one-page-wizard-section-title__color: var(--ab-color-text-on-secondary);
|
|
1453
|
+
--ab-cmp-one-page-wizard-selected-title__background: var(--ab-color-secondary); }
|
|
1454
|
+
.ab-OnePageWizard__section {
|
|
1455
|
+
background: var(--ab-cmp-one-page-wizard-content__background);
|
|
1456
|
+
overflow: auto;
|
|
1457
|
+
border-radius: var(--ab__border-radius); }
|
|
1458
|
+
.ab-OnePageWizard__section-title-container {
|
|
1459
|
+
background: var(--ab-cmp-one-page-wizard__background); }
|
|
1460
|
+
.ab-OnePageWizard__section-container {
|
|
1461
|
+
background: var(--ab-cmp-one-page-wizard__background);
|
|
1462
|
+
min-height: 100%;
|
|
1463
|
+
overflow: hidden; }
|
|
1464
|
+
.ab-OnePageWizard__footer {
|
|
1465
|
+
background: var(--ab-cmp-one-page-wizard__background); }
|
|
1466
|
+
:root {
|
|
1467
|
+
--ab-cmp-toolpanel__width: 200px;
|
|
1468
|
+
--ab-cmp-toolpanel-header__background: var(--ab-dashboard-header__background);
|
|
1469
|
+
--ab-cmp-toolpanel-header__color: var(--ab-dashboard-header__color);
|
|
1470
|
+
--ab-cmp-toolpanel-header__grid-gap: 3px; }
|
|
1471
|
+
.ab-Radio-input:focus + svg rect {
|
|
1472
|
+
stroke: var(--ab-color-accent);
|
|
1473
|
+
stroke-width: 2; }
|
|
1474
|
+
.ab-Radio-input:focus + svg {
|
|
1475
|
+
outline: 2px solid var(--ab-color-accent); }
|
|
1476
|
+
.ab-Radio-input:checked + svg rect,
|
|
1477
|
+
.ab-Radio-input:checked + svg polyline {
|
|
1478
|
+
stroke: currentColor; }
|
|
1479
|
+
.ab-Radio-input:checked + svg polyline {
|
|
1480
|
+
animation: abRadioCheckAnimation 0.5s ease forwards;
|
|
1481
|
+
stroke-dasharray: 50;
|
|
1482
|
+
stroke-dashoffset: 50; }
|
|
1483
|
+
.ab-Radio-input input:focus {
|
|
1484
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1485
|
+
outline: var(--ab-focus__outline); }
|
|
1486
|
+
@keyframes abRadioCheckAnimation {
|
|
1487
|
+
100% {
|
|
1488
|
+
stroke-dashoffset: 0; } }
|
|
1489
|
+
.ab-Table td,
|
|
1490
|
+
.ab-Table th {
|
|
1491
|
+
padding: var(--ab-space-2); }
|
|
1492
|
+
.ab-Table th {
|
|
1493
|
+
border-bottom: 2px solid var(--ab-color-primarydark); }
|
|
1494
|
+
.ab-Table tr:not(last-child) td {
|
|
1495
|
+
border-bottom: 1px solid var(--ab-color-primarylight); }
|
|
1496
|
+
.ab-CheckBox, .ab-CheckBox *, .ab-CheckBox *:before, .ab-CheckBox *:after {
|
|
1497
|
+
box-sizing: border-box; }
|
|
1498
|
+
.ab-CheckBox--checked {
|
|
1499
|
+
--ab-cmp-checkbox__background: var(--ab-cmp-checkbox--checked__background); }
|
|
1500
|
+
.ab-CheckBox--indeterminate {
|
|
1501
|
+
--ab-cmp-checkbox--check__color: var(--ab-cmp-checkbox--check-indeterminate__color); }
|
|
1502
|
+
.ab-CheckBox:focus-within .ab-CheckBox__square,
|
|
1503
|
+
.ab-CheckBox:active .ab-CheckBox__square,
|
|
1504
|
+
.ab-CheckBox input.ab-CheckBox-input:active + .ab-CheckBox__square,
|
|
1505
|
+
.ab-CheckBox input.ab-CheckBox-input:focus + .ab-CheckBox__square {
|
|
1506
|
+
box-shadow: var(--ab-focus__box-shadow); }
|
|
1507
|
+
.ab-CheckBox__square {
|
|
1508
|
+
border-radius: var(--ab__border-radius);
|
|
1509
|
+
border-width: 1px;
|
|
1510
|
+
border-style: solid;
|
|
1511
|
+
border-color: var(--ab-cmp-checkbox__border-color);
|
|
1512
|
+
background: var(--ab-cmp-checkbox__background);
|
|
1513
|
+
height: var(--ab-cmp-checkbox--check-size);
|
|
1514
|
+
width: var(--ab-cmp-checkbox--check-size);
|
|
1515
|
+
line-height: 0;
|
|
1516
|
+
font-size: 0;
|
|
1517
|
+
position: relative;
|
|
1518
|
+
pointer-events: none; }
|
|
1519
|
+
.ab-CheckBox__square:after {
|
|
1520
|
+
opacity: 1;
|
|
1521
|
+
transition-duration: 0.1s;
|
|
1522
|
+
transition-timing-function: ease-in;
|
|
1523
|
+
transition-property: opacity;
|
|
1524
|
+
content: '';
|
|
1525
|
+
display: block;
|
|
1526
|
+
margin: auto;
|
|
1527
|
+
width: calc((var(--ab-cmp-checkbox--check-size) - 4px) / 2);
|
|
1528
|
+
height: calc(var(--ab-cmp-checkbox--check-size) - 4px);
|
|
1529
|
+
border: solid var(--ab-cmp-checkbox--check__color);
|
|
1530
|
+
border-width: 0 2px 2px 0;
|
|
1531
|
+
transform: rotate(45deg);
|
|
1532
|
+
border-radius: 1px; }
|
|
1533
|
+
.ab-CheckBox__square--unchecked::after {
|
|
1534
|
+
opacity: 0; }
|
|
1535
|
+
.ab-CheckBox__square--indeterminate:after {
|
|
1536
|
+
transform: rotate(0deg);
|
|
1537
|
+
position: absolute;
|
|
1538
|
+
top: 2px;
|
|
1539
|
+
bottom: 2px;
|
|
1540
|
+
right: 2px;
|
|
1541
|
+
left: 2px;
|
|
1542
|
+
border: none;
|
|
1543
|
+
width: auto;
|
|
1544
|
+
height: auto;
|
|
1545
|
+
background: var(--ab-cmp-checkbox--check__color);
|
|
1546
|
+
border-radius: var(--ab-cmp-checkbox--check-indeterminate-radius); }
|
|
1547
|
+
.ab-CheckBox--disabled {
|
|
1548
|
+
opacity: 0.5; }
|
|
1549
|
+
.ab-CheckBox--readonly .ab-CheckBox__square {
|
|
1550
|
+
opacity: 0.5; }
|
|
1551
|
+
.ab-CheckBox-input:not(.ag-checkbox-input) {
|
|
1552
|
+
width: 100%;
|
|
1553
|
+
height: 100%;
|
|
1554
|
+
line-height: 0;
|
|
1555
|
+
font-size: 0;
|
|
1556
|
+
left: 0;
|
|
1557
|
+
top: 0;
|
|
1558
|
+
z-index: 1;
|
|
1559
|
+
position: absolute; }
|
|
1560
|
+
.ab-Dialog {
|
|
1561
|
+
position: relative;
|
|
1562
|
+
background: var(--ab-cmp-dialog__background);
|
|
1563
|
+
fill: var(--ab-color-text-on-primary);
|
|
1564
|
+
color: var(--ab-cmp-dialog__color);
|
|
1565
|
+
border-radius: var(--ab-cmp-dialog__border-radius);
|
|
1566
|
+
min-height: var(--ab-cmp-dialog__min-height);
|
|
1567
|
+
display: flex;
|
|
1568
|
+
flex-flow: column; }
|
|
1569
|
+
.ab-Dialog:focus-within, .ab-Dialog:focus {
|
|
1570
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1571
|
+
outline: var(--ab-focus__outline); }
|
|
1572
|
+
.ab-Dialog > * {
|
|
1573
|
+
flex: 1; }
|
|
1574
|
+
.ab-Dialog__close-button {
|
|
1575
|
+
position: absolute;
|
|
1576
|
+
right: 0.7rem;
|
|
1577
|
+
top: 0;
|
|
1578
|
+
font-size: var(--ab-font-size-3);
|
|
1579
|
+
font-weight: 700;
|
|
1580
|
+
line-height: 1;
|
|
1581
|
+
color: var(--ab-cmp-dialog-close-button__color);
|
|
1582
|
+
text-shadow: 0 1px 0 #fff;
|
|
1583
|
+
cursor: pointer; }
|
|
1584
|
+
.ab-Dialog-fixed-wrapper {
|
|
1585
|
+
position: fixed;
|
|
1586
|
+
margin: auto;
|
|
1587
|
+
left: 0;
|
|
1588
|
+
top: 0;
|
|
1589
|
+
right: 0;
|
|
1590
|
+
bottom: 0;
|
|
1591
|
+
display: flex;
|
|
1592
|
+
align-items: center;
|
|
1593
|
+
justify-content: center; }
|
|
1594
|
+
.ab-Dropdown {
|
|
1595
|
+
background: var(--ab-color-defaultbackground);
|
|
1596
|
+
border: var(--ab-cmp-dropdown__border);
|
|
1597
|
+
border-radius: var(--ab-cmp-dropdown__border-radius);
|
|
1598
|
+
position: relative;
|
|
1599
|
+
min-width: 120px;
|
|
1600
|
+
max-width: 300px;
|
|
1601
|
+
font-family: var(--ab-cmp-dropdown__font-family);
|
|
1602
|
+
font-size: var(--ab-cmp-dropdown__font-size); }
|
|
1603
|
+
.ab-Dropdown--disabled {
|
|
1604
|
+
opacity: 0.5; }
|
|
1605
|
+
.ab-Dropdown--focused {
|
|
1606
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1607
|
+
outline: var(--ab-focus__outline); }
|
|
1608
|
+
.ab-Dropdown__text {
|
|
1609
|
+
color: var(--ab-cmp-dropdown__color);
|
|
1610
|
+
padding: var(--ab-cmp-dropdown__padding);
|
|
1611
|
+
pointer-events: none;
|
|
1612
|
+
position: relative;
|
|
1613
|
+
cursor: pointer;
|
|
1614
|
+
overflow: hidden;
|
|
1615
|
+
text-overflow: ellipsis;
|
|
1616
|
+
white-space: nowrap;
|
|
1617
|
+
flex: 1; }
|
|
1618
|
+
.ab-Dropdown--empty .ab-Dropdown__text {
|
|
1619
|
+
color: var(--ab-color-text-on-defaultbackground); }
|
|
1620
|
+
.ab-Dropdown select {
|
|
1621
|
+
font-family: inherit;
|
|
1622
|
+
font-size: inherit;
|
|
1623
|
+
position: absolute;
|
|
1624
|
+
cursor: pointer; }
|
|
1625
|
+
.ab-Dropdown .ab-SimpleButton {
|
|
1626
|
+
color: var(--ab-cmp-dropdown__color) !important; }
|
|
1627
|
+
.ab-DropdownButton {
|
|
1628
|
+
position: relative;
|
|
1629
|
+
--ab-overlay-horizontal-align: left; }
|
|
1630
|
+
.ab-DropdownButton__list {
|
|
1631
|
+
text-align: start;
|
|
1632
|
+
padding: var(--ab-space-1) 0;
|
|
1633
|
+
box-shadow: var(--ab-cmp-dropdownbutton-list__box-shadow); }
|
|
1634
|
+
.ab-DropdownButton__content {
|
|
1635
|
+
font-family: var(--ab__font-family);
|
|
1636
|
+
font-size: var(--ab-font-size-2);
|
|
1637
|
+
max-width: 100%;
|
|
1638
|
+
width: 100%;
|
|
1639
|
+
border-spacing: 0; }
|
|
1640
|
+
.ab-DropdownButton__list-item {
|
|
1641
|
+
fill: currentColor;
|
|
1642
|
+
color: var(--ab-cmp-dropdownbutton-list-item__color); }
|
|
1643
|
+
.ab-DropdownButton__list-item--disabled {
|
|
1644
|
+
opacity: 0.5; }
|
|
1645
|
+
.ab-DropdownButton__list-item--not-clickable {
|
|
1646
|
+
cursor: auto; }
|
|
1647
|
+
.ab-DropdownButton__list-item--clickable:hover {
|
|
1648
|
+
background: var(--ab-cmp-dropdownbutton-list-item-hover__background);
|
|
1649
|
+
color: var(--ab-cmp-dropdownbutton-list-item-hover__color);
|
|
1650
|
+
fill: currentColor;
|
|
1651
|
+
cursor: pointer; }
|
|
1652
|
+
.ab-DropdownButton__list-item--clickable:hover .glyphicon.glyphicon {
|
|
1653
|
+
color: inherit; }
|
|
1654
|
+
.ab-DropdownButton__separator td {
|
|
1655
|
+
border-bottom: var(--ab-cmp-dropdownbutton-list-separator__border); }
|
|
1656
|
+
.ab-EmptyContent {
|
|
1657
|
+
text-align: center; }
|
|
1658
|
+
.ab-EmptyContent p {
|
|
1659
|
+
color: var(--ab-color-text-on-primary); }
|
|
1660
|
+
.ab-ErrorBox {
|
|
1661
|
+
padding: var(--ab-cmp-error-box__padding);
|
|
1662
|
+
border-radius: var(--ab-cmp-error-box__border-radius);
|
|
1663
|
+
background: var(--ab-cmp-error-box__background);
|
|
1664
|
+
color: var(--ab-cmp-error-box__color); }
|
|
1665
|
+
.ab-FieldWrap {
|
|
1666
|
+
border: 1px solid var(--ab-color-inputborder);
|
|
1667
|
+
color: 1px solid var(--ab-color-inputcolor);
|
|
1668
|
+
border-radius: var(--ab-cmp-field-wrap__border-radius);
|
|
1669
|
+
background: var(--ab-cmp-field-wrap__background);
|
|
1670
|
+
overflow: hidden;
|
|
1671
|
+
fill: var(--ab-cmp-field-wrap__fill); }
|
|
1672
|
+
.ab-FieldWrap:focus-within {
|
|
1673
|
+
box-shadow: var(--ab-focus__box-shadow); }
|
|
1674
|
+
.ab-FieldWrap input, .ab-FieldWrap select, .ab-FieldWrap > * {
|
|
1675
|
+
border: none;
|
|
1676
|
+
flex: 1; }
|
|
1677
|
+
.ab-FieldWrap input, .ab-FieldWrap select, .ab-FieldWrap .ab-Dropdown {
|
|
1678
|
+
outline: none !important;
|
|
1679
|
+
box-shadow: none !important; }
|
|
1680
|
+
.ab-FormLayout {
|
|
1681
|
+
display: grid;
|
|
1682
|
+
align-items: center; }
|
|
1683
|
+
.ab-FormLayout_column--label {
|
|
1684
|
+
text-align: end; }
|
|
1685
|
+
.ab-HelpBlock {
|
|
1686
|
+
padding: var(--ab-cmp-help-block__padding);
|
|
1687
|
+
background: var(--ab-cmp-help-block__background);
|
|
1688
|
+
border-radius: var(--ab-cmp-help-block__border-radius);
|
|
1689
|
+
color: var(--ab-cmp-help-block__color); }
|
|
1690
|
+
.ab-CodeBlock {
|
|
1691
|
+
padding: var(--ab-cmp-code-block__padding);
|
|
1692
|
+
background: var(--ab-cmp-code-block__background);
|
|
1693
|
+
border-radius: var(--ab-cmp-code-block__border-radius);
|
|
1694
|
+
color: var(--ab-cmp-code-block__color); }
|
|
1695
|
+
input.ab-Input {
|
|
1696
|
+
background: var(--ab-cmp-input__background); }
|
|
1697
|
+
input.ab-Input[disabled] {
|
|
1698
|
+
background: var(--ab-cmp-input--disabled__background); }
|
|
1699
|
+
.ab-Input {
|
|
1700
|
+
position: relative;
|
|
1701
|
+
padding: var(--ab-cmp-input__padding);
|
|
1702
|
+
color: var(--ab-cmp-input__color);
|
|
1703
|
+
border-radius: var(--ab-cmp-input__border-radius);
|
|
1704
|
+
border: var(--ab-cmp-input__border);
|
|
1705
|
+
font-family: var(--ab-cmp-input__font-family);
|
|
1706
|
+
font-size: var(--ab-cmp-input__font-size);
|
|
1707
|
+
/* WebKit, Edge */
|
|
1708
|
+
/* Firefox 4-18 */
|
|
1709
|
+
/* Firefox 19+ */
|
|
1710
|
+
/* IE 10-11 */
|
|
1711
|
+
/* Edge */
|
|
1712
|
+
/* MODERN BROWSER */ }
|
|
1713
|
+
.ab-Input:focus {
|
|
1714
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1715
|
+
outline: var(--ab-focus__outline); }
|
|
1716
|
+
.ab-Input::-webkit-input-placeholder {
|
|
1717
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
1718
|
+
opacity: var(--ab-cmp-input--placeholder__opacity); }
|
|
1719
|
+
.ab-Input:-moz-placeholder {
|
|
1720
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
1721
|
+
opacity: var(--ab-cmp-input--placeholder__opacity); }
|
|
1722
|
+
.ab-Input::-moz-placeholder {
|
|
1723
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
1724
|
+
opacity: var(--ab-cmp-input--placeholder__opacity); }
|
|
1725
|
+
.ab-Input:-ms-input-placeholder {
|
|
1726
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
1727
|
+
opacity: var(--ab-cmp-input--placeholder__opacity); }
|
|
1728
|
+
.ab-Input::-ms-input-placeholder {
|
|
1729
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
1730
|
+
opacity: var(--ab-cmp-input--placeholder__opacity); }
|
|
1731
|
+
.ab-Input::placeholder {
|
|
1732
|
+
color: var(--ab-cmp-input--placeholder__color);
|
|
1733
|
+
opacity: var(--ab-cmp-input--placeholder__opacity); }
|
|
1734
|
+
/* Spin Buttons modified */
|
|
1735
|
+
input[type="number"].ab-Input::-webkit-outer-spin-button,
|
|
1736
|
+
input[type="number"].ab-Input::-webkit-inner-spin-button {
|
|
1737
|
+
-webkit-appearance: none;
|
|
1738
|
+
width: 1em;
|
|
1739
|
+
opacity: 0;
|
|
1740
|
+
position: absolute;
|
|
1741
|
+
top: 0;
|
|
1742
|
+
right: 0;
|
|
1743
|
+
bottom: 0;
|
|
1744
|
+
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="20" viewBox="4 0 18 18" version="1.1"><path fill="%23656565" d="M7 10l5 5 5-5z" transform="translate(0, 2)"/><path fill="%23656565" d="M7 14l5-5 5 5z" transform="translate(0, -6)"/></svg>') no-repeat center center; }
|
|
1745
|
+
input[type="number"].ab-Input:focus::-webkit-inner-spin-button, input[type="number"].ab-Input:focus::-webkit-inner-spin-button:active,
|
|
1746
|
+
input[type="number"].ab-Input:hover::-webkit-inner-spin-button,
|
|
1747
|
+
input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
1748
|
+
opacity: 1; }
|
|
1749
|
+
.ab-ListGroup {
|
|
1750
|
+
display: flex;
|
|
1751
|
+
flex-flow: column;
|
|
1752
|
+
align-items: flex-start; }
|
|
1753
|
+
:root {
|
|
1754
|
+
--ab-cmp-listgroupitem__width: 100%;
|
|
1755
|
+
--ab-cmp-listgroupitem__background: var(--ab-color-primary);
|
|
1756
|
+
--ab-cmp-listgroupitem__color: var(--ab-color-text-on-primary);
|
|
1757
|
+
--ab-cmp-listgroupitem__border-radius: 0px;
|
|
1758
|
+
--ab-cmp-listgroupitem--odd__background: var(--ab-color-primarylight);
|
|
1759
|
+
--ab-cmp-listgroupitem--odd__color: var(--ab-color-text-on-primary);
|
|
1760
|
+
--ab-cmp-listgroupitem--active__background: var(--ab-color-secondarylight);
|
|
1761
|
+
--ab-cmp-listgroupitem--active__color: var(--ab-color-text-on-secondarylight); }
|
|
1762
|
+
.ab-Modal {
|
|
1763
|
+
position: fixed;
|
|
1764
|
+
top: 0;
|
|
1765
|
+
left: 0;
|
|
1766
|
+
right: 0;
|
|
1767
|
+
bottom: 0;
|
|
1768
|
+
z-index: 1000;
|
|
1769
|
+
font-family: var(--ab__font-family); }
|
|
1770
|
+
.ab-Modal-backdrop {
|
|
1771
|
+
background: var(--ab-cmp-modal-backdrop__background);
|
|
1772
|
+
z-index: 900;
|
|
1773
|
+
position: fixed;
|
|
1774
|
+
left: 0;
|
|
1775
|
+
right: 0;
|
|
1776
|
+
top: 0;
|
|
1777
|
+
bottom: 0; }
|
|
1778
|
+
.ab-Tabs {
|
|
1779
|
+
display: flex;
|
|
1780
|
+
flex-direction: column; }
|
|
1781
|
+
.ab-Tabs[data-selected-index="0"] .ab-Tabs__Filler:first-child,
|
|
1782
|
+
.ab-Tabs__Tab--before-active {
|
|
1783
|
+
border-bottom-right-radius: var(--ab__border-radius); }
|
|
1784
|
+
.ab-Tabs__Strip {
|
|
1785
|
+
z-index: 10;
|
|
1786
|
+
overflow: visible; }
|
|
1787
|
+
.ab-Tabs__Tab {
|
|
1788
|
+
cursor: pointer;
|
|
1789
|
+
background: var(--ab-cmp-tabs-strip__background); }
|
|
1790
|
+
.ab-Tabs__Tab:focus {
|
|
1791
|
+
outline: none; }
|
|
1792
|
+
.ab-Tabs__Tab:focus:after {
|
|
1793
|
+
box-shadow: var(--ab-focus__box-shadow); }
|
|
1794
|
+
.ab-Tabs__Filler {
|
|
1795
|
+
background: var(--ab-cmp-tabs-strip__background); }
|
|
1796
|
+
.ab-Tabs__Tab--active + .ab-Tabs__Filler,
|
|
1797
|
+
.ab-Tabs__Tab--active + .ab-Tabs__Tab {
|
|
1798
|
+
border-bottom-left-radius: var(--ab__border-radius); }
|
|
1799
|
+
.ab-Tabs__Tab--active {
|
|
1800
|
+
position: relative;
|
|
1801
|
+
z-index: 30; }
|
|
1802
|
+
.ab-Tabs__Tab--active:after {
|
|
1803
|
+
content: '';
|
|
1804
|
+
pointer-events: none;
|
|
1805
|
+
position: absolute;
|
|
1806
|
+
top: 0;
|
|
1807
|
+
bottom: 5px;
|
|
1808
|
+
right: 0;
|
|
1809
|
+
left: 0;
|
|
1810
|
+
z-index: -2;
|
|
1811
|
+
border-top-left-radius: var(--ab__border-radius);
|
|
1812
|
+
border-top-right-radius: var(--ab__border-radius); }
|
|
1813
|
+
.ab-Tabs__Tab--active:before {
|
|
1814
|
+
content: '';
|
|
1815
|
+
position: absolute;
|
|
1816
|
+
pointer-events: none;
|
|
1817
|
+
border-top-left-radius: var(--ab__border-radius);
|
|
1818
|
+
border-top-right-radius: var(--ab__border-radius);
|
|
1819
|
+
z-index: -1;
|
|
1820
|
+
left: 0;
|
|
1821
|
+
top: 0;
|
|
1822
|
+
width: 100%;
|
|
1823
|
+
height: 100%;
|
|
1824
|
+
background: var(--ab-cmp-tabs-active__background); }
|
|
1825
|
+
.ab-Tabs__Strip {
|
|
1826
|
+
background: var(--ab-cmp-tabs-active__background); }
|
|
1827
|
+
.ab-Tabs__Body {
|
|
1828
|
+
background: var(--ab-cmp-tabs-active__background);
|
|
1829
|
+
border-radius: var(--ab__border-radius);
|
|
1830
|
+
flex: 1;
|
|
1831
|
+
overflow: auto;
|
|
1832
|
+
display: flex;
|
|
1833
|
+
flex-flow: column; }
|
|
1834
|
+
.ab-Tabs[data-selected-index="0"] .ab-Tabs__Body {
|
|
1835
|
+
border-top-left-radius: 0; }
|
|
1836
|
+
.ab-Panel {
|
|
1837
|
+
display: flex;
|
|
1838
|
+
flex-flow: column;
|
|
1839
|
+
max-height: var(--ab-cmp-panel__max-height);
|
|
1840
|
+
font-size: var(--ab-cmp-panel__font-size); }
|
|
1841
|
+
.ab-Panel .glyphicon {
|
|
1842
|
+
-webkit-text-fill-color: var(--ab-cmp-panel-icon__fill);
|
|
1843
|
+
fill: var(--ab-cmp-panel-icon__fill); }
|
|
1844
|
+
.ab-Panel--variant-modern {
|
|
1845
|
+
--ab-cmp-panel__border-radius: var(--ab-space-1)
|
|
1846
|
+
; }
|
|
1847
|
+
.ab-Panel__header {
|
|
1848
|
+
flex: none;
|
|
1849
|
+
background: var(--ab-cmp-panel_header__background);
|
|
1850
|
+
color: var(--ab-cmp-panel_header__color);
|
|
1851
|
+
font-size: var(--ab-cmp-panel_header__font-size);
|
|
1852
|
+
padding: var(--ab-cmp-panel_header__padding);
|
|
1853
|
+
border-top-left-radius: var(--ab-cmp-panel__border-radius);
|
|
1854
|
+
border-top-right-radius: var(--ab-cmp-panel__border-radius);
|
|
1855
|
+
border: var(--ab-cmp-panel__border); }
|
|
1856
|
+
.ab-Panel__header--variant-primary {
|
|
1857
|
+
background: var(--ab-cmp-panel_header--variant-primary__background);
|
|
1858
|
+
color: var(--ab-cmp-panel_header--variant-primary__color);
|
|
1859
|
+
fill: currentColor; }
|
|
1860
|
+
.ab-Panel__header--variant-modern {
|
|
1861
|
+
border: none;
|
|
1862
|
+
background: var(--ab-cmp-panel_header--variant-modern__background); }
|
|
1863
|
+
.ab-Panel__body {
|
|
1864
|
+
position: relative;
|
|
1865
|
+
padding: var(--ab-cmp-panel__padding);
|
|
1866
|
+
border: var(--ab-cmp-panel__border);
|
|
1867
|
+
background: var(--ab-cmp-panel_body__background);
|
|
1868
|
+
color: var(--ab-cmp-panel_body__color);
|
|
1869
|
+
flex: 1;
|
|
1870
|
+
border-bottom-left-radius: var(--ab-cmp-panel__border-radius);
|
|
1871
|
+
border-bottom-right-radius: var(--ab-cmp-panel__border-radius); }
|
|
1872
|
+
.ab-Panel__body--scroll-auto {
|
|
1873
|
+
overflow: auto; }
|
|
1874
|
+
.ab-Panel__body--variant-modern {
|
|
1875
|
+
border: none;
|
|
1876
|
+
background: var(--ab-cmp-panel_body--variant-modern__background); }
|
|
1877
|
+
.ab-Panel--with-header > .ab-Panel__body {
|
|
1878
|
+
border-top: none; }
|
|
1879
|
+
.ab-Panel--no-header > .ab-Panel__body {
|
|
1880
|
+
border-top-left-radius: var(--ab-cmp-panel__border-radius);
|
|
1881
|
+
border-top-right-radius: var(--ab-cmp-panel__border-radius); }
|
|
1882
|
+
.ab-SimpleButton {
|
|
1883
|
+
padding: var(--ab-cmp-simple-button__padding);
|
|
1884
|
+
font-family: var(--ab-cmp-simple-button__font-family);
|
|
1885
|
+
font-size: var(--ab-cmp-simple-button__font-size); }
|
|
1886
|
+
.ab-SimpleButton:focus {
|
|
1887
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
1888
|
+
outline: var(--ab-focus__outline); }
|
|
1889
|
+
.ab-SimpleButton.ab-SimpleButton {
|
|
1890
|
+
vertical-align: middle;
|
|
1891
|
+
border-radius: var(--ab-cmp-simple-button__border-radius);
|
|
1892
|
+
color: var(--ab-color-text-on-primary);
|
|
1893
|
+
position: relative;
|
|
1894
|
+
overflow: hidden;
|
|
1895
|
+
display: inline-flex;
|
|
1896
|
+
flex-flow: row;
|
|
1897
|
+
flex: none;
|
|
1898
|
+
align-items: center;
|
|
1899
|
+
fill: currentColor; }
|
|
1900
|
+
.ab-SimpleButton.ab-SimpleButton > * {
|
|
1901
|
+
z-index: 1; }
|
|
1902
|
+
.ab-SimpleButton.ab-SimpleButton svg {
|
|
1903
|
+
vertical-align: middle; }
|
|
1904
|
+
.ab-SimpleButton.ab-SimpleButton--tone-neutral {
|
|
1905
|
+
color: var(--ab-color-text-on-primary); }
|
|
1906
|
+
.ab-SimpleButton.ab-SimpleButton--tone-none {
|
|
1907
|
+
color: inherit; }
|
|
1908
|
+
.ab-SimpleButton.ab-SimpleButton--tone-success {
|
|
1909
|
+
color: var(--ab-color-success); }
|
|
1910
|
+
.ab-SimpleButton.ab-SimpleButton--tone-accent {
|
|
1911
|
+
color: var(--ab-color-text-on-secondary); }
|
|
1912
|
+
.ab-SimpleButton.ab-SimpleButton--tone-error {
|
|
1913
|
+
color: var(--ab-color-error); }
|
|
1914
|
+
.ab-SimpleButton.ab-SimpleButton--tone-warning {
|
|
1915
|
+
color: var(--ab-color-warn); }
|
|
1916
|
+
.ab-SimpleButton.ab-SimpleButton--tone-info {
|
|
1917
|
+
color: var(--ab-color-info); }
|
|
1918
|
+
.ab-SimpleButton.ab-SimpleButton--disabled {
|
|
1919
|
+
opacity: 0.5; }
|
|
1920
|
+
.ab-SimpleButton.ab-SimpleButton:before {
|
|
1921
|
+
content: '';
|
|
1922
|
+
position: absolute;
|
|
1923
|
+
display: block;
|
|
1924
|
+
left: 0;
|
|
1925
|
+
right: 0;
|
|
1926
|
+
top: 0;
|
|
1927
|
+
bottom: 0;
|
|
1928
|
+
pointer-events: none;
|
|
1929
|
+
z-index: 0;
|
|
1930
|
+
border-radius: inherit; }
|
|
1931
|
+
.ab-SimpleButton.ab-SimpleButton--variant-outlined, .ab-SimpleButton.ab-SimpleButton--variant-text {
|
|
1932
|
+
transition: opacity 0.2s; }
|
|
1933
|
+
.ab-SimpleButton.ab-SimpleButton--variant-outlined:before, .ab-SimpleButton.ab-SimpleButton--variant-text:before {
|
|
1934
|
+
content: '';
|
|
1935
|
+
opacity: 0;
|
|
1936
|
+
transition: opacity 0.2s; }
|
|
1937
|
+
.ab-SimpleButton.ab-SimpleButton--variant-outlined:hover:not(.ab-SimpleButton--disabled), .ab-SimpleButton.ab-SimpleButton--variant-text:hover:not(.ab-SimpleButton--disabled) {
|
|
1938
|
+
cursor: pointer; }
|
|
1939
|
+
.ab-SimpleButton.ab-SimpleButton--variant-outlined:hover:not(.ab-SimpleButton--disabled):before, .ab-SimpleButton.ab-SimpleButton--variant-text:hover:not(.ab-SimpleButton--disabled):before {
|
|
1940
|
+
opacity: 0.15;
|
|
1941
|
+
background-color: currentColor; }
|
|
1942
|
+
.ab-SimpleButton.ab-SimpleButton--variant-text {
|
|
1943
|
+
background: transparent; }
|
|
1944
|
+
.ab-SimpleButton.ab-SimpleButton--variant-outlined {
|
|
1945
|
+
background: var(--ab-cmp-simple-button--outlined__background);
|
|
1946
|
+
border: var(--ab-cmp-simple-button--outlined__border); }
|
|
1947
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised {
|
|
1948
|
+
color: var(--ab-color-text-on-primary);
|
|
1949
|
+
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
1950
|
+
transition: box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1); }
|
|
1951
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised:focus {
|
|
1952
|
+
box-shadow: var(--ab-focus__box-shadow); }
|
|
1953
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised:hover {
|
|
1954
|
+
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12); }
|
|
1955
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised:hover:not(.ab-SimpleButton--disabled) {
|
|
1956
|
+
cursor: pointer; }
|
|
1957
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-success {
|
|
1958
|
+
background: var(--ab-color-success);
|
|
1959
|
+
color: var(--ab-color-text-on-success); }
|
|
1960
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-success:not(.ab-SimpleButton--disabled) {
|
|
1961
|
+
opacity: 1; }
|
|
1962
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-accent {
|
|
1963
|
+
background: var(--ab-color-secondary);
|
|
1964
|
+
color: var(--ab-color-text-on-secondary); }
|
|
1965
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-accent:not(.ab-SimpleButton--disabled) {
|
|
1966
|
+
opacity: 1; }
|
|
1967
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-none {
|
|
1968
|
+
background: transparent; }
|
|
1969
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-none:not(.ab-SimpleButton--disabled) {
|
|
1970
|
+
opacity: 1; }
|
|
1971
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-neutral {
|
|
1972
|
+
background: var(--ab-color-primary);
|
|
1973
|
+
color: var(--ab-color-text-on-primary); }
|
|
1974
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-neutral:not(.ab-SimpleButton--disabled) {
|
|
1975
|
+
opacity: 1; }
|
|
1976
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-error {
|
|
1977
|
+
background: var(--ab-color-error);
|
|
1978
|
+
color: var(--ab-color-text-on-error); }
|
|
1979
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-error:not(.ab-SimpleButton--disabled) {
|
|
1980
|
+
opacity: 1; }
|
|
1981
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-warning {
|
|
1982
|
+
background: var(--ab-color-warn);
|
|
1983
|
+
color: var(--ab-color-text-on-warn); }
|
|
1984
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-warning:not(.ab-SimpleButton--disabled) {
|
|
1985
|
+
opacity: 1; }
|
|
1986
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-info {
|
|
1987
|
+
background: var(--ab-color-info);
|
|
1988
|
+
color: var(--ab-color-text-on-info); }
|
|
1989
|
+
.ab-SimpleButton.ab-SimpleButton--variant-raised.ab-SimpleButton--tone-info:not(.ab-SimpleButton--disabled) {
|
|
1990
|
+
opacity: 1; }
|
|
1991
|
+
.ab-SimpleButton.ab-SimpleButton--font-weight\=normal {
|
|
1992
|
+
font-weight: normal; }
|
|
1993
|
+
.ab-SimpleButton.ab-SimpleButton--font-weight\=bold,
|
|
1994
|
+
.ab-SimpleButton.ab-SimpleButton--font-weight\=700 {
|
|
1995
|
+
font-weight: 700; }
|
|
1996
|
+
.ab-SimpleButton.ab-SimpleButton--font-weight\=bolder {
|
|
1997
|
+
font-weight: 800; }
|
|
1998
|
+
.ab-Textarea {
|
|
1999
|
+
padding: var(--ab-cmp-textarea__padding);
|
|
2000
|
+
border-radius: var(--ab-cmp-textarea__border-radius);
|
|
2001
|
+
border: var(--ab-cmp-textarea__border);
|
|
2002
|
+
color: var(--ab-cmp-textarea__color);
|
|
2003
|
+
font-family: var(--ab-cmp-textarea__font-family);
|
|
2004
|
+
font-size: var(--ab-cmp-textarea__font-size);
|
|
2005
|
+
background: var(--ab-cmp-textarea__background); }
|
|
2006
|
+
.ab-Textarea[disabled] {
|
|
2007
|
+
background: var(--ab-cmp-textarea--disabled__background); }
|
|
2008
|
+
.ab-Textarea:focus {
|
|
2009
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2010
|
+
outline: var(--ab-focus__outline); }
|
|
2011
|
+
.ab-Tooltip {
|
|
2012
|
+
pointer-events: none;
|
|
2013
|
+
padding: var(--ab-space-1) var(--ab-space-2);
|
|
2014
|
+
box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
|
|
2015
|
+
white-space: nowrap;
|
|
2016
|
+
font-size: var(--ab-cmp-tooltip__font-size);
|
|
2017
|
+
color: var(--ab-cmp-tooltip__color); }
|
|
2018
|
+
.ab-Tooltip:before {
|
|
2019
|
+
border: var(--ab-cmp-tooltip__border);
|
|
2020
|
+
content: '';
|
|
2021
|
+
position: absolute;
|
|
2022
|
+
border-radius: var(--ab__border-radius);
|
|
2023
|
+
width: 100%;
|
|
2024
|
+
height: 100%;
|
|
2025
|
+
left: 0;
|
|
2026
|
+
top: 0;
|
|
2027
|
+
opacity: var(--ab-cmp-tooltip__opacity);
|
|
2028
|
+
background: var(--ab-cmp-tooltip__background);
|
|
2029
|
+
z-index: -1; }
|
|
2030
|
+
.ab-FileDroppable {
|
|
2031
|
+
align-items: center;
|
|
2032
|
+
justify-content: center;
|
|
2033
|
+
position: relative;
|
|
2034
|
+
padding: var(--ab-cmp-file-droppable__padding);
|
|
2035
|
+
margin: var(--ab-cmp-file-droppable__margin);
|
|
2036
|
+
transition: fill 0.15s ease-in-out, color 0.15s ease-in-out, outline-offset 0.15s ease-in-out, background-color 0.15s linear;
|
|
2037
|
+
outline: var(--ab-cmp-file-droppable__outline);
|
|
2038
|
+
outline-offset: var(--ab-cmp-file-droppable__outline-offset);
|
|
2039
|
+
background: var(--ab-cmp-file-droppable__background); }
|
|
2040
|
+
.ab-FileDroppable, .ab-FileDroppable input, .ab-FileDroppable button, .ab-FileDroppable .ab-SimpleButton {
|
|
2041
|
+
transition: fill 0.15s ease-in-out, color 0.15s ease-in-out, outline-offset 0.15s ease-in-out, background-color 0.15s linear;
|
|
2042
|
+
fill: currentColor; }
|
|
2043
|
+
.ab-FileDroppable, .ab-FileDroppable input, .ab-FileDroppable button {
|
|
2044
|
+
color: var(--ab-cmp-file-droppable__color); }
|
|
2045
|
+
.ab-FileDroppable.ab-FileDroppable--drag-over {
|
|
2046
|
+
outline-offset: var(--ab-cmp-file-droppable--drag-over__outline-offset);
|
|
2047
|
+
outline: var(--ab-cmp-file-droppable--drag-over__outline);
|
|
2048
|
+
background: var(--ab-cmp-file-droppable--drag-over__background);
|
|
2049
|
+
color: var(--ab-cmp-file-droppable--drag-over__color); }
|
|
2050
|
+
.ab-FileDroppable.ab-FileDroppable--drag-over * {
|
|
2051
|
+
pointer-events: none; }
|
|
2052
|
+
.ab-FileDroppable, .ab-FileDroppable *, .ab-FileDroppable *:before, .ab-FileDroppable *:after {
|
|
2053
|
+
box-sizing: border-box; }
|
|
2054
|
+
.ab-ChartContainer canvas {
|
|
2055
|
+
left: 0; }
|
|
2056
|
+
.ab-WizardPanel > .ab-Panel__body {
|
|
2057
|
+
display: flex;
|
|
2058
|
+
flex-flow: column; }
|
|
2059
|
+
.ab-Dashboard {
|
|
2060
|
+
z-index: 1000;
|
|
2061
|
+
user-select: none;
|
|
2062
|
+
background: var(--ab-dashboard-gap__background);
|
|
2063
|
+
color: var(--ab-dashboard__color); }
|
|
2064
|
+
.ab-Dashboard--inline:not(.ab-Dashboard--collapsed) {
|
|
2065
|
+
display: flex; }
|
|
2066
|
+
.ab-Dashboard__header {
|
|
2067
|
+
display: flex;
|
|
2068
|
+
align-items: stretch;
|
|
2069
|
+
background: var(--ab-dashboard-header__background);
|
|
2070
|
+
color: var(--ab-dashboard-header__color);
|
|
2071
|
+
height: 40px;
|
|
2072
|
+
padding: 0 var(--ab-space-2); }
|
|
2073
|
+
.ab-Dashboard__header-left, .ab-Dashboard__header-right {
|
|
2074
|
+
display: flex;
|
|
2075
|
+
align-items: center;
|
|
2076
|
+
flex: 1; }
|
|
2077
|
+
.ab-Dashboard__header-left {
|
|
2078
|
+
justify-content: flex-start; }
|
|
2079
|
+
.ab-Dashboard__header-right {
|
|
2080
|
+
justify-content: flex-end; }
|
|
2081
|
+
.ab-Dashboard__title {
|
|
2082
|
+
display: flex;
|
|
2083
|
+
align-items: center;
|
|
2084
|
+
padding: 0 var(--ab-space-3);
|
|
2085
|
+
font-weight: bold;
|
|
2086
|
+
font-size: var(--ab-font-size-4); }
|
|
2087
|
+
.ab-Dashboard__tabs {
|
|
2088
|
+
align-self: flex-end;
|
|
2089
|
+
margin-left: var(--ab-space-2); }
|
|
2090
|
+
.ab-Dashboard__tab {
|
|
2091
|
+
border: none;
|
|
2092
|
+
outline: none;
|
|
2093
|
+
cursor: pointer;
|
|
2094
|
+
font-size: var(--ab-font-size-3);
|
|
2095
|
+
border-radius: var(--ab__border-radius) var(--ab__border-radius) 0 0;
|
|
2096
|
+
padding: 8px 12px 12px 12px;
|
|
2097
|
+
color: var(--ab-dashboard-header__color);
|
|
2098
|
+
background: var(--ab-dashboard-header__background); }
|
|
2099
|
+
.ab-Dashboard__tab--active {
|
|
2100
|
+
color: var(--ab-dashboard__color);
|
|
2101
|
+
background: var(--ab-dashboard__background); }
|
|
2102
|
+
.ab-Dashboard__content {
|
|
2103
|
+
display: flex;
|
|
2104
|
+
grid-gap: var(--ab-dashboard-gap-size);
|
|
2105
|
+
flex-flow: var(--ab-dashboard-wrap);
|
|
2106
|
+
align-items: stretch;
|
|
2107
|
+
flex: 1;
|
|
2108
|
+
overflow-x: auto;
|
|
2109
|
+
padding-top: var(--ab-dashboard-gap-size);
|
|
2110
|
+
padding-bottom: var(--ab-dashboard-gap-size); }
|
|
2111
|
+
.ab-Dashboard__container {
|
|
2112
|
+
display: flex;
|
|
2113
|
+
flex-shrink: 0;
|
|
2114
|
+
background: var(--ab-dashboard__background); }
|
|
2115
|
+
.ab-Dashboard__content-buttons {
|
|
2116
|
+
display: flex;
|
|
2117
|
+
flex-direction: column;
|
|
2118
|
+
align-self: stretch;
|
|
2119
|
+
padding: var(--ab-space-2);
|
|
2120
|
+
border-left: 1px solid var(--ab-dashboard__border); }
|
|
2121
|
+
.ab-Dashboard__toolbar {
|
|
2122
|
+
display: flex;
|
|
2123
|
+
flex-direction: column;
|
|
2124
|
+
justify-content: space-between;
|
|
2125
|
+
font-size: var(--ab-font-size-3); }
|
|
2126
|
+
.ab-Dashboard__toolbar-content {
|
|
2127
|
+
padding: var(--ab-space-2) var(--ab-space-2) var(--ab-space-1) var(--ab-space-2);
|
|
2128
|
+
display: flex; }
|
|
2129
|
+
.ab-Dashboard__toolbar-title {
|
|
2130
|
+
display: flex;
|
|
2131
|
+
align-items: center;
|
|
2132
|
+
justify-content: center;
|
|
2133
|
+
font-size: var(--ab-font-size-2);
|
|
2134
|
+
padding: 0 var(--ab-space-1) 2px var(--ab-space-2);
|
|
2135
|
+
opacity: 0.7; }
|
|
2136
|
+
.ab-Dashboard__toolbar.ab-Dashboard__home-toolbar {
|
|
2137
|
+
color: var(--ab-dashboard-header__color);
|
|
2138
|
+
background: var(--ab-dashboard-header__background);
|
|
2139
|
+
padding-top: var(--ab-dashboard-gap-size);
|
|
2140
|
+
padding-bottom: var(--ab-dashboard-gap-size); }
|
|
2141
|
+
.ab-Dashboard__toolbar.ab-Dashboard__home-toolbar .ab-Dashboard__toolbar-title {
|
|
2142
|
+
opacity: 1; }
|
|
2143
|
+
.ab-Dashboard .ab-Input {
|
|
2144
|
+
border: none; }
|
|
2145
|
+
.ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
|
|
2146
|
+
padding: var(--ab-space-1); }
|
|
2147
|
+
.ab-GridList {
|
|
2148
|
+
--at-grid__background: transparent; }
|
|
2149
|
+
.ab-GridList .AT-GridCell_content, .ab-GridList .ab-ListGroupItem, .ab-GridList .AT-GridColumnCell {
|
|
2150
|
+
width: 100%; }
|
|
2151
|
+
.ab-GridList .AT-GridHeader {
|
|
2152
|
+
display: none; }
|
|
2153
|
+
.ab-GridList.ab-padding-horizontal-0 .AT-GridColumnCell {
|
|
2154
|
+
padding-left: 0;
|
|
2155
|
+
padding-right: 0; }
|
|
2156
|
+
.ab-GridList .AT-GridRow--odd {
|
|
2157
|
+
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
2158
|
+
color: var(--ab-cmp-listgroupitem--odd__color); }
|
|
2159
|
+
.ab-GridList .AT-GridRow--even {
|
|
2160
|
+
background: var(--ab-cmp-listgroupitem__background);
|
|
2161
|
+
color: var(--ab-cmp-listgroupitem__color); }
|
|
2162
|
+
.ab-GridList .ab-ListGroupItem {
|
|
2163
|
+
--ab-cmp-listgroupitem__background: transparent;
|
|
2164
|
+
--ab-cmp-listgroupitem--odd__background: transparent; }
|
|
2165
|
+
:root {
|
|
2166
|
+
--rdp-cell-size: var(--ab-cmp-datepicker__cell-size);
|
|
2167
|
+
--rdp-accent-color: var(--ab-cmp-datepicker__selected-color);
|
|
2168
|
+
--rdp-background-color: var(--ab-cmp-datepicker__hover-color);
|
|
2169
|
+
--rdp-outline: 2px solid var(--ab-cmp-datepicker__selected-color); }
|
|
2170
|
+
.ab-Datepicker-Overlay {
|
|
2171
|
+
border: var(--ab-cmp-datepicker__border);
|
|
2172
|
+
background: var(--ab-cmp-datepicker__background);
|
|
2173
|
+
z-index: 1000;
|
|
2174
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2175
|
+
outline: var(--ab-focus__outline);
|
|
2176
|
+
border-radius: var(--ab__border-radius); }
|
|
2177
|
+
.ab-Datepicker-Overlay .rdp {
|
|
2178
|
+
font-size: var(--ab-cmp-datepicker__font-size);
|
|
2179
|
+
font-family: var(--ab-cmp-datepicker__font-family); }
|
|
2180
|
+
.ab-Datepicker-Overlay .rdp .rdp-weeknumber,
|
|
2181
|
+
.ab-Datepicker-Overlay .rdp .rdp-day {
|
|
2182
|
+
border-radius: var(--ab-cmp-datepicker__day-border-radius); }
|
|
2183
|
+
.ab-Datepicker-Overlay .rdp .rdp-day_selected:not([disabled]),
|
|
2184
|
+
.ab-Datepicker-Overlay .rdp .rdp-day_selected:focus:not([disabled]),
|
|
2185
|
+
.ab-Datepicker-Overlay .rdp .rdp-day_selected:active:not([disabled]),
|
|
2186
|
+
.ab-Datepicker-Overlay .rdp .rdp-day_selected:hover:not([disabled]) {
|
|
2187
|
+
color: var(--ab-cmp-datepicker__selected-text-color);
|
|
2188
|
+
border-radius: var(--ab-cmp-datepicker__selected-border-radius); }
|
|
2189
|
+
.ab-Datepicker-Overlay .rdp .rdp-caption_label {
|
|
2190
|
+
font-size: 120%; }
|
|
2191
|
+
.ab-Datepicker-Overlay .rdp .rdp-nav_button {
|
|
2192
|
+
color: var(--ab-color-text-on-primary); }
|
|
2193
|
+
.ab-Datepicker-Overlay .rdp .rdp-table {
|
|
2194
|
+
width: 100%;
|
|
2195
|
+
max-width: none; }
|
|
2196
|
+
.ab-Datepicker-Overlay .rdp .rdp-day_outside {
|
|
2197
|
+
opacity: 0.4; }
|
|
2198
|
+
.ab-Datepicker-Overlay .rdp .rdp-day_today {
|
|
2199
|
+
border: var(--rdp-outline); }
|
|
2200
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(8),
|
|
2201
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(9),
|
|
2202
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(10),
|
|
2203
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(11),
|
|
2204
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(12),
|
|
2205
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(13),
|
|
2206
|
+
.ab-Datepicker-Overlay .rdp .rdp-row td:nth-child(14) {
|
|
2207
|
+
display: none; }
|
|
2208
|
+
.ab-Datepicker-Overlay .rdp.rdp-with_weeknumber .rdp-row td:nth-child(8) {
|
|
2209
|
+
display: table-cell; }
|
|
2210
|
+
:root {
|
|
2211
|
+
--ab-cmp-toggle-button__background: #ccc;
|
|
2212
|
+
--ab-cmp-toggle-button--active__background: var(--ab-color-success); }
|
|
2213
|
+
.ab-ToggleButton {
|
|
2214
|
+
position: relative;
|
|
2215
|
+
display: inline-block;
|
|
2216
|
+
min-width: 40px;
|
|
2217
|
+
width: 40px;
|
|
2218
|
+
height: 25px; }
|
|
2219
|
+
.ab-ToggleButton:hover:not(.ab-ToggleButton--disabled) {
|
|
2220
|
+
cursor: pointer;
|
|
2221
|
+
opacity: 0.85; }
|
|
2222
|
+
.ab-ToggleButton__input {
|
|
2223
|
+
opacity: 0;
|
|
2224
|
+
width: 0;
|
|
2225
|
+
height: 0; }
|
|
2226
|
+
.ab-ToggleButton__slider {
|
|
2227
|
+
position: absolute;
|
|
2228
|
+
top: 0;
|
|
2229
|
+
left: 0;
|
|
2230
|
+
right: 0;
|
|
2231
|
+
bottom: 0;
|
|
2232
|
+
background-color: var(--ab-cmp-toggle-button__background);
|
|
2233
|
+
transition: 0.1s;
|
|
2234
|
+
border-radius: var(--ab__border-radius); }
|
|
2235
|
+
.ab-ToggleButton__slider:before {
|
|
2236
|
+
position: absolute;
|
|
2237
|
+
content: "";
|
|
2238
|
+
width: 19px;
|
|
2239
|
+
height: 19px;
|
|
2240
|
+
left: 3px;
|
|
2241
|
+
top: 3px;
|
|
2242
|
+
border-radius: var(--ab__border-radius);
|
|
2243
|
+
background-color: #fff;
|
|
2244
|
+
-webkit-transition: 0.4s;
|
|
2245
|
+
transition: 0.2s; }
|
|
2246
|
+
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider {
|
|
2247
|
+
background-color: var(--ab-cmp-toggle-button--active__background); }
|
|
2248
|
+
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider:before {
|
|
2249
|
+
transform: translateX(15px); }
|
|
2250
|
+
.ab-ToggleButton__input:focus + .ab-ToggleButton__slider {
|
|
2251
|
+
box-shadow: var(--ab-focus__box-shadow); }
|
|
2252
|
+
.ab-ToggleButton__input:disabled + .ab-ToggleButton__slider {
|
|
2253
|
+
opacity: 0.5; }
|
|
2254
|
+
.ab-ObjectCollection__list > * {
|
|
2255
|
+
background: var(--ab-cmp-listgroupitem__background);
|
|
2256
|
+
color: var(--ab-cmp-listgroupitem__color); }
|
|
2257
|
+
.ab-ObjectCollection__list > *:nth-child(2n + 1) {
|
|
2258
|
+
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
2259
|
+
color: var(--ab-cmp-listgroupitem--odd__color); }
|
|
2260
|
+
.ab-AdaptableObjectRow {
|
|
2261
|
+
background: var(--ab-cmp-listgroupitem__background);
|
|
2262
|
+
color: var(--ab-cmp-listgroupitem__color);
|
|
2263
|
+
border-radius: var(--ab-cmp-listgroupitem__border-radius); }
|
|
2264
|
+
.ab-AdaptableObjectRow:nth-child(2n + 1) {
|
|
2265
|
+
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
2266
|
+
color: var(--ab-cmp-listgroupitem--odd__color); }
|
|
2267
|
+
.ab-AdaptableObjectRow--is-suspended {
|
|
2268
|
+
text-decoration: line-through; }
|
|
2269
|
+
.ab-ListBoxFilterForm {
|
|
2270
|
+
overflow-y: auto;
|
|
2271
|
+
overflow-x: hidden;
|
|
2272
|
+
--ab-grid-row-height: 26px;
|
|
2273
|
+
margin-Bottom: 0; }
|
|
2274
|
+
.ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
|
|
2275
|
+
overflow-x: hidden; }
|
|
2276
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--vendor-style,
|
|
2277
|
+
.ag-theme-balham .ab-ListBoxFilterForm--vendor-style {
|
|
2278
|
+
--ab-cmp-dropdown__border-radius: 0;
|
|
2279
|
+
--ab-cmp-input__border-radius: 0;
|
|
2280
|
+
--ab-cmp-input__padding: 0;
|
|
2281
|
+
--ab-cmp-dropdown__padding: 3px;
|
|
2282
|
+
--ab-focus__box-shadow: 0 0 3px 0px var(--ab-color-accent); }
|
|
2283
|
+
.ag-theme-balham-dark .ab-ListBoxFilterForm--vendor-style .ab-FieldWrap,
|
|
2284
|
+
.ag-theme-balham .ab-ListBoxFilterForm--vendor-style .ab-FieldWrap {
|
|
2285
|
+
border-radius: 0; }
|
|
2286
|
+
html.ab--theme-dark .ab-ListBoxFilterForm--vendor-style {
|
|
2287
|
+
--ab-color-inputborder: white;
|
|
2288
|
+
--ab-cmp-dropdown__border: 1px solid white; }
|
|
2289
|
+
.ab-Popover {
|
|
2290
|
+
border-radius: var(--ab-cmp-popover__border-radius);
|
|
2291
|
+
border: var(--ab-cmp-popover__border);
|
|
2292
|
+
background: var(--ab-cmp-popover__background);
|
|
2293
|
+
color: var(--ab-cmp-popover__color);
|
|
2294
|
+
box-shadow: var(--ab-cmp-popover__box-shadow);
|
|
2295
|
+
font-size: var(--ab-font-size-2);
|
|
2296
|
+
font-family: var(--ab__font-family); }
|
|
2297
|
+
.ab-Overlay--show-triangle > .ab-Popover:before {
|
|
2298
|
+
content: '';
|
|
2299
|
+
position: absolute;
|
|
2300
|
+
width: 0;
|
|
2301
|
+
height: 0;
|
|
2302
|
+
border-style: solid; }
|
|
2303
|
+
.ab-Overlay--position-bottom.ab-Overlay--show-triangle > .ab-Popover:before {
|
|
2304
|
+
border-width: 0 5px 10px 5px;
|
|
2305
|
+
border-color: transparent transparent var(--ab-cmp-popover__background) transparent;
|
|
2306
|
+
left: 50%;
|
|
2307
|
+
top: -10px;
|
|
2308
|
+
transform: translate3d(-5px, 0px, 0px); }
|
|
2309
|
+
.ab-Overlay--position-top.ab-Overlay--show-triangle > .ab-Popover:before {
|
|
2310
|
+
border-width: 10px 5px 0 5px;
|
|
2311
|
+
border-color: var(--ab-cmp-popover__background) transparent transparent transparent;
|
|
2312
|
+
left: 50%;
|
|
2313
|
+
bottom: -10px;
|
|
2314
|
+
transform: translate3d(-5px, 0px, 0px); }
|
|
2315
|
+
.ab-nocode-wizard {
|
|
2316
|
+
padding: var(--ab-cmp-wizard__padding);
|
|
2317
|
+
margin: var(--ab-cmp-wizard__margin);
|
|
2318
|
+
background: var(--ab-cmp-wizard__background);
|
|
2319
|
+
color: var(--ab-cmp-wizard__color);
|
|
2320
|
+
height: 100%; }
|
|
2321
|
+
.ab-nocode-wizard, .ab-nocode-wizard *, .ab-nocode-wizard *:before, .ab-nocode-wizard *:after {
|
|
2322
|
+
box-sizing: border-box; }
|
|
2323
|
+
.ab-AvailableDropZone .placeholder,
|
|
2324
|
+
.ab-SelectedDropZone .placeholder {
|
|
2325
|
+
width: 100%; }
|
|
2326
|
+
.ab-AvailableDropZone .placeholder:before,
|
|
2327
|
+
.ab-SelectedDropZone .placeholder:before {
|
|
2328
|
+
content: 'DROPS HERE'; }
|
|
2329
|
+
.ab-Button.ab-Button {
|
|
2330
|
+
border-radius: var(--ab-cmp-button-border-radius);
|
|
2331
|
+
padding: var(--ab-space-2); }
|
|
2332
|
+
.ab-Button.ab-Button--enabled {
|
|
2333
|
+
cursor: pointer;
|
|
2334
|
+
background: var(--ab-cmp-button-background); }
|
|
2335
|
+
.ab-Button.ab-Button--disabled {
|
|
2336
|
+
opacity: var(--ab-cmp-button-disabled-opacity);
|
|
2337
|
+
background: var(--ab-cmp-button-disabled-background); }
|
|
2338
|
+
.ab-DashboardPanel .ab-CheckBox:not(.ab-dd-checkbox),
|
|
2339
|
+
.ab-DashboardPanel .ab-SimpleButton.ab-SimpleButton--tone-neutral:not(.ab-DropdownButton) {
|
|
2340
|
+
fill: currentColor;
|
|
2341
|
+
color: var(--ab-cmp-dashboardpanel_header__color);
|
|
2342
|
+
border-color: currentColor; }
|
|
2343
|
+
.ab-DashboardPanel .glyphicon.glyphicon {
|
|
2344
|
+
color: var(--ab-cmp-dashboardpanel__fill); }
|
|
2345
|
+
.ab-FilterFormPanel {
|
|
2346
|
+
--ab-cmp-panel_body__background: var(--ag-control-panel-background-color); }
|
|
2347
|
+
.ab-Dashboard__application-icon {
|
|
2348
|
+
margin-right: var(--ab-space-2); }
|
|
2349
|
+
.ab-ToolPanel {
|
|
2350
|
+
min-width: calc(var(--ab-cmp-toolpanel__width) - 1px); }
|
|
2351
|
+
.ab-ToolPanel .ab-ToolPanel__header {
|
|
2352
|
+
background: var(--ab-cmp-toolpanel-header__background);
|
|
2353
|
+
color: var(--ab-cmp-toolpanel-header__color); }
|
|
2354
|
+
.ab-ToolPanel .ab-ToolPanel__header__buttons {
|
|
2355
|
+
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
|
|
2356
|
+
.ab-ToolPanel .ab-ToolPanel__custom-content__buttons {
|
|
2357
|
+
display: flex;
|
|
2358
|
+
flex-direction: row;
|
|
2359
|
+
flex-wrap: wrap;
|
|
2360
|
+
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
|
|
2361
|
+
.ab-alert--error {
|
|
2362
|
+
background: var(--ab-color-error); }
|
|
2363
|
+
.ab-alert--success {
|
|
2364
|
+
background: var(--ab-color-success); }
|
|
2365
|
+
.ab-alert--warn,
|
|
2366
|
+
.ab-alert--warning {
|
|
2367
|
+
background: var(--ab-color-warn); }
|
|
2368
|
+
.ab-alert--info {
|
|
2369
|
+
background: var(--ab-color-info); }
|
|
2370
|
+
.ab-cell--align-left {
|
|
2371
|
+
text-align: left; }
|
|
2372
|
+
.ab-cell--align-right {
|
|
2373
|
+
text-align: right; }
|
|
2374
|
+
.ab-cell--align-center {
|
|
2375
|
+
text-align: center; }
|
|
2376
|
+
.popover-content {
|
|
2377
|
+
padding: 1px; }
|
|
2378
|
+
/* Styles for the coloured cell render
|
|
2379
|
+
*/
|
|
2380
|
+
.ab_div-colour-render-bar {
|
|
2381
|
+
display: inline-block;
|
|
2382
|
+
height: 100%;
|
|
2383
|
+
position: relative;
|
|
2384
|
+
z-index: 0; }
|
|
2385
|
+
.ab_div-colour-render-text {
|
|
2386
|
+
position: absolute;
|
|
2387
|
+
font-weight: normal;
|
|
2388
|
+
font-size: 12p;
|
|
2389
|
+
z-index: 100; }
|
|
2390
|
+
.ab_div-colour-render-div {
|
|
2391
|
+
display: inline-block;
|
|
2392
|
+
height: 100%;
|
|
2393
|
+
width: 100%; }
|
|
2394
|
+
.ab-ActionColumn {
|
|
2395
|
+
position: relative;
|
|
2396
|
+
height: 100%; }
|
|
2397
|
+
.ab-ActionColumn > button.ab-SimpleButton {
|
|
2398
|
+
height: 100%;
|
|
2399
|
+
position: absolute;
|
|
2400
|
+
top: 0;
|
|
2401
|
+
left: 0; }
|
|
2402
|
+
.Toastify__toast-container {
|
|
2403
|
+
border-style: none;
|
|
2404
|
+
border-width: 0px; }
|
|
2405
|
+
.Toastify__toast {
|
|
2406
|
+
padding: 0;
|
|
2407
|
+
padding-bottom: 5px;
|
|
2408
|
+
color: var(--ab-color-text-on-primary);
|
|
2409
|
+
border-style: none;
|
|
2410
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-accent);
|
|
2411
|
+
box-shadow: 0 0 7px 2px var(--ab-toast-cmp__shadow-color);
|
|
2412
|
+
background: var(--ab-toast-cmp__shadow-color); }
|
|
2413
|
+
.Toastify__toast-body {
|
|
2414
|
+
padding: 0; }
|
|
2415
|
+
.Toastify__toast--info {
|
|
2416
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-info);
|
|
2417
|
+
color: var(--ab-color-text-on-primary); }
|
|
2418
|
+
.Toastify__toast--success {
|
|
2419
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-success);
|
|
2420
|
+
color: var(--ab-color-text-on-primary); }
|
|
2421
|
+
.Toastify__toast--warning {
|
|
2422
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-warn);
|
|
2423
|
+
color: var(--ab-color-text-on-primary); }
|
|
2424
|
+
.Toastify__toast--error {
|
|
2425
|
+
--ab-toast-cmp__shadow-color: var(--ab-color-error);
|
|
2426
|
+
color: var(--ab-color-text-on-primary); }
|
|
2427
|
+
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar,
|
|
2428
|
+
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar,
|
|
2429
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar,
|
|
2430
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar,
|
|
2431
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar {
|
|
2432
|
+
background-color: rgba(0, 0, 0, 0);
|
|
2433
|
+
border-radius: 100px; }
|
|
2434
|
+
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:vertical,
|
|
2435
|
+
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:vertical,
|
|
2436
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:vertical, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:vertical,
|
|
2437
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar:vertical, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:vertical,
|
|
2438
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:vertical, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:vertical {
|
|
2439
|
+
width: var(--ab-custom-scrollbar-size); }
|
|
2440
|
+
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:horizontal,
|
|
2441
|
+
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:horizontal,
|
|
2442
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:horizontal, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:horizontal,
|
|
2443
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar:horizontal, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:horizontal,
|
|
2444
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:horizontal, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:horizontal {
|
|
2445
|
+
height: var(--ab-custom-scrollbar-size); }
|
|
2446
|
+
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:hover,
|
|
2447
|
+
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:hover,
|
|
2448
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:hover, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:hover,
|
|
2449
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar:hover, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:hover,
|
|
2450
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:hover, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:hover {
|
|
2451
|
+
background-color: rgba(0, 0, 0, 0.09); }
|
|
2452
|
+
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb,
|
|
2453
|
+
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb,
|
|
2454
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb,
|
|
2455
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb,
|
|
2456
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb {
|
|
2457
|
+
background: rgba(0, 0, 0, 0.5);
|
|
2458
|
+
border-radius: 100px;
|
|
2459
|
+
background-clip: padding-box;
|
|
2460
|
+
border: 2px solid rgba(0, 0, 0, 0); }
|
|
2461
|
+
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:vertical,
|
|
2462
|
+
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:vertical,
|
|
2463
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:vertical, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:vertical,
|
|
2464
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb:vertical, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:vertical,
|
|
2465
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:vertical, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:vertical {
|
|
2466
|
+
min-height: var(--ab-custom-scrollbar-size); }
|
|
2467
|
+
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:horizontal,
|
|
2468
|
+
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:horizontal,
|
|
2469
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:horizontal, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:horizontal,
|
|
2470
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb:horizontal, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:horizontal,
|
|
2471
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:horizontal, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:horizontal {
|
|
2472
|
+
min-width: var(--ab-custom-scrollbar-size); }
|
|
2473
|
+
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:active,
|
|
2474
|
+
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:active,
|
|
2475
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:active, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:active,
|
|
2476
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb:active, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:active,
|
|
2477
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:active, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:active {
|
|
2478
|
+
background: rgba(0, 0, 0, 0.61);
|
|
2479
|
+
border-radius: 100px; }
|
|
2480
|
+
.ag-details-row {
|
|
2481
|
+
display: flex;
|
|
2482
|
+
flex-flow: column; }
|
|
2483
|
+
.ag-details-row .ag-details-grid {
|
|
2484
|
+
flex: 1; }
|
|
2485
|
+
div.ab-progress-indicator-wrapper {
|
|
2486
|
+
align-items: center;
|
|
2487
|
+
display: flex;
|
|
2488
|
+
height: 100vh;
|
|
2489
|
+
justify-content: center;
|
|
2490
|
+
left: 0;
|
|
2491
|
+
position: fixed;
|
|
2492
|
+
top: 0;
|
|
2493
|
+
width: 100%;
|
|
2494
|
+
z-index: 9999;
|
|
2495
|
+
opacity: 0;
|
|
2496
|
+
transition-delay: 0.5s;
|
|
2497
|
+
transition-property: opacity;
|
|
2498
|
+
transition-duration: 0.3s; }
|
|
2499
|
+
div.ab-progress-indicator-wrapper--visible {
|
|
2500
|
+
opacity: 1; }
|
|
2501
|
+
div.ab-progress-indicator-wrapper .ab-progress-indicator-text {
|
|
2502
|
+
padding: var(--ab-space-3);
|
|
2503
|
+
background: var(--ab-color-primary);
|
|
2504
|
+
color: var(--ab-color-text-on-primary);
|
|
2505
|
+
border-style: none;
|
|
2506
|
+
border-width: 0px;
|
|
2507
|
+
border-radius: var(--ab__border-radius);
|
|
2508
|
+
box-shadow: var(--ab-focus__box-shadow);
|
|
2509
|
+
font-size: var(--ab-font-size-3);
|
|
2510
|
+
font-family: var(--ab__font-family); }
|
|
2511
|
+
|
|
2512
|
+
/*# sourceMappingURL=base.css.map */
|