@adaptabletools/adaptable 11.0.0-canary.3 → 11.0.0-canary.7
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/agGrid.d.ts +5 -4
- package/agGrid.js +9 -7
- package/base.css +135 -69
- package/bundle.cjs.js +104 -99
- package/index.css +136 -69
- package/package.json +3 -3
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +7 -5
- package/src/AdaptableInterfaces/IAdaptable.d.ts +1 -0
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +1 -3
- package/src/AdaptableOptions/AdaptableOptions.d.ts +14 -7
- package/src/AdaptableOptions/{QueryLanguageOptions.d.ts → AdaptableQLOptions.d.ts} +34 -9
- package/src/AdaptableOptions/{QueryLanguageOptions.js → AdaptableQLOptions.js} +0 -0
- package/src/AdaptableOptions/AlertOptions.d.ts +82 -0
- package/src/AdaptableOptions/AlertOptions.js +2 -0
- package/src/AdaptableOptions/ContainerOptions.d.ts +2 -2
- package/src/AdaptableOptions/FilterOptions.d.ts +1 -1
- package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
- package/src/AdaptableOptions/NotificationsOptions.d.ts +1 -78
- package/src/AdaptableOptions/SearchOptions.d.ts +0 -9
- package/src/AdaptableOptions/StateOptions.d.ts +9 -8
- package/src/AdaptableOptions/TeamSharingOptions.d.ts +2 -2
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -2
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +3 -3
- package/src/Api/AdaptableApi.d.ts +6 -0
- package/src/Api/AlertApi.d.ts +2 -3
- package/src/Api/CalculatedColumnApi.d.ts +2 -9
- package/src/Api/ColumnApi.d.ts +0 -4
- package/src/Api/EventApi.d.ts +8 -3
- package/src/Api/Events/GridDataChanged.d.ts +4 -2
- package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +1 -1
- package/src/Api/FreeTextColumnApi.d.ts +0 -12
- package/src/Api/GridApi.d.ts +13 -2
- package/src/Api/IPushPullApi.d.ts +1 -1
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -1
- package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
- package/src/Api/Implementation/AlertApiImpl.d.ts +1 -2
- package/src/Api/Implementation/AlertApiImpl.js +19 -10
- package/src/Api/Implementation/ApiBase.d.ts +5 -2
- package/src/Api/Implementation/ApiBase.js +8 -2
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +3 -4
- package/src/Api/Implementation/ColumnApiImpl.d.ts +0 -1
- package/src/Api/Implementation/ColumnApiImpl.js +0 -5
- package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +0 -5
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +0 -9
- package/src/Api/Implementation/GridApiImpl.d.ts +4 -1
- package/src/Api/Implementation/GridApiImpl.js +27 -4
- package/src/Api/Implementation/InternalApiImpl.d.ts +2 -3
- package/src/Api/Implementation/InternalApiImpl.js +7 -6
- package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
- package/src/Api/Implementation/LayoutApiImpl.js +11 -0
- package/src/Api/Implementation/QueryApiImpl.js +4 -1
- package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +4 -1
- package/src/Api/Implementation/QueryLanguageApiImpl.js +20 -8
- package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +7 -0
- package/src/Api/Implementation/SettingsPanelApiImpl.js +15 -0
- package/src/Api/InternalApi.d.ts +2 -3
- package/src/Api/LayoutApi.d.ts +7 -0
- package/src/Api/OpenFinApi.d.ts +5 -0
- package/src/Api/PluginsApi.d.ts +29 -0
- package/src/Api/QueryApi.d.ts +2 -2
- package/src/Api/QueryLanguageApi.d.ts +23 -10
- package/src/Api/SettingsPanelApi.d.ts +16 -0
- package/src/Api/SettingsPanelApi.js +2 -0
- package/src/Api/UserInterfaceApi.d.ts +5 -2
- package/src/PredefinedConfig/AlertState.d.ts +8 -6
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +8 -4
- package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +7 -5
- package/src/PredefinedConfig/Common/AdaptableQuery.js +2 -6
- package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +1 -12
- package/src/PredefinedConfig/Common/Enums.d.ts +0 -1
- package/src/PredefinedConfig/Common/Enums.js +0 -2
- package/src/PredefinedConfig/Common/FDC3Context.d.ts +4 -12
- package/src/PredefinedConfig/Common/RowHighlightInfo.d.ts +15 -0
- package/src/PredefinedConfig/Common/RowHighlightInfo.js +2 -0
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
- package/src/PredefinedConfig/Common/Types.d.ts +3 -1
- package/src/PredefinedConfig/Common/Types.js +1 -0
- package/src/PredefinedConfig/CustomSortState.d.ts +0 -1
- package/src/PredefinedConfig/FlashingCellState.d.ts +3 -1
- package/src/PredefinedConfig/FreeTextColumnState.d.ts +1 -1
- package/src/PredefinedConfig/LayoutState.d.ts +0 -2
- package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -2
- package/src/PredefinedConfig/Selection/GridCellRange.d.ts +3 -1
- package/src/PredefinedConfig/SystemState.d.ts +2 -1
- package/src/Redux/ActionsReducers/ApplicationRedux.js +9 -3
- package/src/Redux/ActionsReducers/FlashingCellRedux.js +4 -8
- package/src/Redux/ActionsReducers/GridRedux.js +3 -1
- package/src/Redux/ActionsReducers/PopupRedux.js +13 -3
- package/src/Redux/ActionsReducers/QuickSearchRedux.js +3 -1
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +6 -5
- package/src/Redux/ActionsReducers/SystemRedux.js +16 -14
- package/src/Redux/ActionsReducers/ThemeRedux.js +3 -1
- package/src/Redux/Store/AdaptableReduxMerger.js +1 -1
- package/src/Redux/Store/AdaptableStore.js +34 -8
- package/src/Strategy/AlertModule.js +16 -6
- package/src/Strategy/CalculatedColumnModule.js +4 -4
- package/src/Strategy/ChartingModule.d.ts +3 -3
- package/src/Strategy/ChartingModule.js +2 -2
- package/src/Strategy/ConditionalStyleModule.js +4 -0
- package/src/Strategy/FlashingCellModule.js +4 -4
- package/src/Strategy/FreeTextColumnModule.d.ts +2 -2
- package/src/Strategy/FreeTextColumnModule.js +11 -0
- package/src/Strategy/LayoutModule.js +1 -6
- package/src/Strategy/{SetingsPanelModule.d.ts → SettingsPanelModule.d.ts} +0 -0
- package/src/Strategy/{SetingsPanelModule.js → SettingsPanelModule.js} +0 -0
- package/src/Strategy/ToolPanelModule.js +5 -3
- package/src/Strategy/Utilities/getAlertPreviewViewItems.js +1 -1
- package/src/Strategy/Utilities/getExpressionViewItems.d.ts +2 -2
- package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
- package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +1 -1
- package/src/Strategy/Utilities/getRuleViewItems.d.ts +0 -1
- package/src/Strategy/Utilities/getRuleViewItems.js +1 -3
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +2 -1
- package/src/Utilities/Constants/DocumentationLinkConstants.js +3 -2
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +23 -17
- package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.d.ts → aggregatedBooleanExpressionFunctions.d.ts} +1 -1
- package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.js → aggregatedBooleanExpressionFunctions.js} +4 -4
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +24 -0
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +339 -0
- package/src/Utilities/ExpressionFunctions/dateUtils.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/dateUtils.js +13 -0
- package/src/Utilities/ExpressionFunctions/deepMap.d.ts +35 -0
- package/src/Utilities/ExpressionFunctions/deepMap.js +283 -0
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -2
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +8 -8
- package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +35 -0
- package/src/Utilities/ExpressionFunctions/groupingMap.js +105 -0
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +2 -2
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +33 -0
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +154 -0
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +13 -4
- package/src/Utilities/Helpers/AdaptableHelper.js +3 -1
- package/src/Utilities/Helpers/CalendarHelper.js +220 -55
- package/src/Utilities/Interface/MessagePopups.d.ts +6 -2
- package/src/Utilities/ObjectFactory.js +1 -0
- package/src/Utilities/Services/AlertService.js +8 -4
- package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +7 -3
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +143 -18
- package/src/Utilities/Services/DataService.js +6 -1
- package/src/Utilities/Services/Interface/IAdaptableService.d.ts +1 -1
- package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +6 -3
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +9 -3
- package/src/Utilities/Services/LicenseService.js +1 -1
- package/src/Utilities/Services/QueryLanguageService.d.ts +11 -4
- package/src/Utilities/Services/QueryLanguageService.js +92 -28
- package/src/Utilities/Services/ReportService.js +6 -2
- package/src/Utilities/Services/TeamSharingService.js +5 -3
- package/src/View/AdaptablePopover/index.js +6 -1
- package/src/View/AdaptableView.js +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +5 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +10 -5
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +4 -1
- package/src/View/AdaptableWizardView/helper.js +5 -3
- package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +1 -1
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +5 -1
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +1 -0
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -2
- package/src/View/Alert/Wizard/AlertWizard.js +2 -2
- package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +2 -2
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +3 -2
- package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
- package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +3 -3
- package/src/View/CalculatedColumn/CalculatedColumnSummary.js +2 -4
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +43 -12
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -2
- package/src/View/CellSummary/CellSummaryViewPanel.js +1 -2
- package/src/View/ColorPicker.d.ts +1 -1
- package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +5 -2
- package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
- package/src/View/Components/EntityRulesEditor/index.js +11 -12
- package/src/View/Components/FilterForm/FilterForm.js +0 -2
- package/src/View/Components/FilterForm/QuickFilterForm.js +6 -5
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
- package/src/View/Components/Panels/PanelWithImage.d.ts +2 -2
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.d.ts +0 -3
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +45 -88
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +11 -0
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +78 -0
- package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +1 -3
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +5 -13
- package/src/View/Components/Popups/AdaptablePopup/TopBar.js +5 -4
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.d.ts +2 -0
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +44 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +1 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
- package/src/View/Components/Popups/AdaptablePopupConfirmation.js +3 -1
- package/src/View/Components/Popups/AdaptablePopupPrompt.d.ts +5 -12
- package/src/View/Components/Popups/AdaptablePopupPrompt.js +38 -37
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +4 -1
- package/src/View/Components/ScopeComponent.js +4 -1
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +5 -1
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +3 -1
- package/src/View/Components/ToolPanel/ToolPanelWrapper.js +1 -1
- package/src/View/Components/ValueSelector/index.js +1 -1
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +2 -2
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.d.ts +8 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +27 -0
- package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +7 -0
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +3 -1
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +1 -1
- package/src/View/Dashboard/CustomToolbarWrapper.js +5 -1
- package/src/View/Dashboard/Dashboard.js +2 -3
- package/src/View/Dashboard/DashboardPopup.js +3 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +2 -1
- package/src/View/Export/Wizard/ReportColumnTypeWizard.js +3 -1
- package/src/View/Export/Wizard/ReportRowTypeWizard.js +3 -1
- package/src/View/Filter/FilterViewPanel.d.ts +1 -4
- package/src/View/Filter/FilterViewPanel.js +1 -3
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +2 -2
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +1 -1
- package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -2
- package/src/View/GridInfo/AdaptableOptionsComponent.js +4 -1
- package/src/View/Layout/Wizard/LayoutEditor/index.js +6 -2
- package/src/View/Layout/Wizard/LayoutEditorWizard.js +7 -1
- package/src/View/License/LicenseWatermark.js +1 -1
- package/src/View/Query/ExpandedQueryPopup.js +9 -2
- package/src/View/Query/QueryViewPanel.js +3 -1
- package/src/View/Query/Wizard/NamedQueryWizard.js +3 -3
- package/src/View/QuickSearch/QuickSearchPopup.js +3 -3
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +12 -2
- package/src/View/SpecialColumnSettingsWizardStep.js +1 -2
- package/src/View/UIHelper.js +4 -1
- package/src/View/Wizard/AdaptableWizard.js +12 -3
- package/src/View/Wizard/OnePageAdaptableWizard.js +5 -1
- package/src/agGrid/Adaptable.d.ts +3 -3
- package/src/agGrid/Adaptable.js +117 -77
- package/src/agGrid/agGridHelper.js +4 -9
- package/src/agGrid/agGridMenuHelper.js +4 -8
- package/src/agGrid/editors/AdaptableDateEditor/index.js +1 -1
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +1 -1
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +4 -2
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +4 -4
- package/src/components/ApplicationIcon.d.ts +1 -0
- package/src/components/ApplicationIcon.js +2 -2
- package/src/components/Dashboard/Dashboard.js +4 -1
- package/src/components/Datepicker/index.d.ts +1 -1
- package/src/components/Dropdown/index.js +8 -1
- package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInput.js +5 -2
- package/src/components/ExpressionEditor/EditorInputReactive.d.ts +1 -1
- package/src/components/ExpressionEditor/EditorInputReactive.js +4 -2
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +5 -2
- package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.d.ts +2 -0
- package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +45 -0
- package/src/components/ExpressionEditor/editorButtonsReactive.js +8 -13
- package/src/components/ExpressionEditor/index.d.ts +2 -1
- package/src/components/ExpressionEditor/index.js +20 -6
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/List/ListGroupItem/index.d.ts +1 -1
- package/src/components/Logo/index.js +8 -7
- package/src/components/PopupWithFooter.d.ts +1 -1
- package/src/components/SizedContainer/index.js +7 -1
- package/src/components/Textarea/index.d.ts +1 -1
- package/src/components/WindowModal/WindowModal.js +4 -1
- package/src/metamodel/adaptable.metamodel.d.ts +114 -59
- package/src/metamodel/adaptable.metamodel.js +373 -242
- package/src/types.d.ts +9 -6
- package/themes/dark.css +4 -4
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/index.css
CHANGED
|
@@ -1816,7 +1816,7 @@ template {
|
|
|
1816
1816
|
--ab-color-text-on-error: white;
|
|
1817
1817
|
--ab-color-text-on-info: white;
|
|
1818
1818
|
--ab-color-text-on-warn: white;
|
|
1819
|
-
--ab-color-action-add: #
|
|
1819
|
+
--ab-color-action-add: #2966a8;
|
|
1820
1820
|
--ab-color-action-edit: #17a2b8;
|
|
1821
1821
|
--ab-color-action-share: #eb9316;
|
|
1822
1822
|
--ab-color-action-delete: #dc3545;
|
|
@@ -1833,12 +1833,12 @@ template {
|
|
|
1833
1833
|
--ab-color-primarylight: #f5f5f5;
|
|
1834
1834
|
--ab-color-text-on-primary: #656565;
|
|
1835
1835
|
--ab-color-text-on-primarydark: var(--ab-color-text-on-primary);
|
|
1836
|
-
--ab-color-secondary: #
|
|
1836
|
+
--ab-color-secondary: #2966a8;
|
|
1837
1837
|
--ab-color-secondarydark: #015a9a;
|
|
1838
1838
|
--ab-color-secondarylight: #a9ddff;
|
|
1839
|
-
--ab-color-text-on-secondary: #
|
|
1839
|
+
--ab-color-text-on-secondary: #e2e2e2;
|
|
1840
1840
|
--ab-color-text-on-secondarylight: #000000;
|
|
1841
|
-
--ab-color-blue:
|
|
1841
|
+
--ab-color-blue: #419641;
|
|
1842
1842
|
--ab-color-focus: var(--ab-color-accent);
|
|
1843
1843
|
--ab-gridheader--filtered__background: var(--ab-color-primary);
|
|
1844
1844
|
--ab-focus__box-shadow: 0 0 5px 1px var(--ab-color-accent);
|
|
@@ -1850,18 +1850,18 @@ template {
|
|
|
1850
1850
|
--ab-loaded: 777; }
|
|
1851
1851
|
|
|
1852
1852
|
:root {
|
|
1853
|
-
--ITableHeader__color:var(--ab-color-text-on-primary);
|
|
1853
|
+
--ITableHeader__color: var(--ab-color-text-on-primary);
|
|
1854
1854
|
--ITableHeaderCell__background: var(--ab-color-primary);
|
|
1855
1855
|
--ITableHeader__background: var(--ITableHeaderCell__background);
|
|
1856
|
-
--ITableRow__color:var(--ab-color-text-on-primary);
|
|
1856
|
+
--ITableRow__color: var(--ab-color-text-on-primary);
|
|
1857
1857
|
--ITable__background: var(--ab-color-primarylight);
|
|
1858
1858
|
--ITableRow__background: var(--ab-color-defaultbackground);
|
|
1859
1859
|
--ITableRow--odd__background: var(--ab-color-primarylight); }
|
|
1860
1860
|
|
|
1861
|
-
.ab-style__list-group-item:nth-child(2n+1) {
|
|
1861
|
+
.ab-style__list-group-item:nth-child(2n + 1) {
|
|
1862
1862
|
background: var(--ab-color-primarylight); }
|
|
1863
1863
|
|
|
1864
|
-
.ab-Grid .ag-header-cell input[type=
|
|
1864
|
+
.ab-Grid .ag-header-cell input[type='date' i]::-webkit-calendar-picker-indicator {
|
|
1865
1865
|
margin-inline-start: 0px; }
|
|
1866
1866
|
|
|
1867
1867
|
.ab-Grid.ab-Grid--indicate-filtered-columns .ag-header-cell-filtered {
|
|
@@ -1878,13 +1878,19 @@ template {
|
|
|
1878
1878
|
--ab-cmp-checkbox--check-indeterminate-radius: 2px; }
|
|
1879
1879
|
|
|
1880
1880
|
.ab-CheckBox--variant-agGrid {
|
|
1881
|
-
--ab-cmp-checkbox--check__color: var(
|
|
1881
|
+
--ab-cmp-checkbox--check__color: var(
|
|
1882
|
+
--ag-checkbox-checked-color,
|
|
1883
|
+
var(--ag-balham-active-color, #0091ea)
|
|
1884
|
+
);
|
|
1882
1885
|
--ab-cmp-checkbox--checked__background: var(--ag-background-color);
|
|
1883
1886
|
--ab-cmp-checkbox__border-color: var(--ab-cmp-checkbox--check__color);
|
|
1884
1887
|
--ab-cmp-checkbox--check-indeterminate__color: var(--ab-cmp-checkbox__border-color); }
|
|
1885
1888
|
|
|
1886
1889
|
.ab-CheckBox--variant-agGrid.ab-CheckBox--indeterminate {
|
|
1887
|
-
--ab-cmp-checkbox--check__color: var(
|
|
1890
|
+
--ab-cmp-checkbox--check__color: var(
|
|
1891
|
+
--ag-checkbox-checked-color,
|
|
1892
|
+
var(--ag-balham-active-color, #0091ea)
|
|
1893
|
+
); }
|
|
1888
1894
|
|
|
1889
1895
|
.ab-CheckBox--variant-agGrid.ab-CheckBox--unchecked {
|
|
1890
1896
|
--ab-cmp-checkbox__border-color: var(--ag-checkbox-unchecked-color); }
|
|
@@ -1915,7 +1921,8 @@ template {
|
|
|
1915
1921
|
--ab-cmp-dropdownbutton-list-item__color: var(--ab-color-text-on-primary);
|
|
1916
1922
|
--ab-cmp-dropdownbutton-list__z-index: 1000;
|
|
1917
1923
|
--ab-cmp-dropdownbutton-list__border-radius: var(--ab__border-radius);
|
|
1918
|
-
--ab-cmp-dropdownbutton-list__box-shadow: 4px 5px 11px -5px rgba(0, 0, 0, .2),
|
|
1924
|
+
--ab-cmp-dropdownbutton-list__box-shadow: 4px 5px 11px -5px rgba(0, 0, 0, 0.2),
|
|
1925
|
+
-4px 6px 5px 0 rgba(0, 0, 0, 0.14), 5px 3px 5px 0 rgba(0, 0, 0, 0.12);
|
|
1919
1926
|
--ab-cmp-dropdownbutton-list-separator__border: 1px solid var(--ab-color-primarydark); }
|
|
1920
1927
|
|
|
1921
1928
|
:root {
|
|
@@ -1969,7 +1976,7 @@ template {
|
|
|
1969
1976
|
color: var(--ab-cmp-listgroupitem__color);
|
|
1970
1977
|
border-radius: var(--ab-cmp-listgroupitem__border-radius); }
|
|
1971
1978
|
|
|
1972
|
-
.ab-ListGroupItem:nth-child(2n+1) {
|
|
1979
|
+
.ab-ListGroupItem:nth-child(2n + 1) {
|
|
1973
1980
|
background: var(--ab-cmp-listgroupitem--odd__background);
|
|
1974
1981
|
color: var(--ab-cmp-listgroupitem--odd__color); }
|
|
1975
1982
|
|
|
@@ -2048,7 +2055,8 @@ template {
|
|
|
2048
2055
|
--ab-cmp-file-droppable--drag-over__background: var(--ab-color-secondary);
|
|
2049
2056
|
--ab-cmp-file-droppable--drag-over__color: var(--ab-color-text-on-secondary);
|
|
2050
2057
|
--ab-cmp-file-droppable--drag-over__outline-offset: -20px;
|
|
2051
|
-
--ab-cmp-file-droppable--drag-over__outline: 2px dashed
|
|
2058
|
+
--ab-cmp-file-droppable--drag-over__outline: 2px dashed
|
|
2059
|
+
var(--ab-cmp-file-droppable--drag-over__color); }
|
|
2052
2060
|
|
|
2053
2061
|
:root {
|
|
2054
2062
|
--ab-dashboard__background: var(--ab-color-primary);
|
|
@@ -2103,7 +2111,7 @@ template {
|
|
|
2103
2111
|
--ab-cmp-button-border-radius: 0px;
|
|
2104
2112
|
--ab-cmp-button-disabled-opacity: 0.5;
|
|
2105
2113
|
--ab-cmp-button-background: var(--ab-color-primary);
|
|
2106
|
-
--ab-cmp-button-disabled-background:var(--ab-color-primarydark); }
|
|
2114
|
+
--ab-cmp-button-disabled-background: var(--ab-color-primarydark); }
|
|
2107
2115
|
|
|
2108
2116
|
:root {
|
|
2109
2117
|
--ab-cmp-dashboardpanel_body__background: var(--ab-color-primarylight);
|
|
@@ -2131,13 +2139,14 @@ template {
|
|
|
2131
2139
|
overflow: auto;
|
|
2132
2140
|
display: grid;
|
|
2133
2141
|
padding: var(--ab-space-2);
|
|
2134
|
-
grid-template-rows: 1fr
|
|
2142
|
+
grid-template-rows: 1fr 1fr;
|
|
2135
2143
|
grid-template-columns: 28rem 1fr 1fr;
|
|
2136
2144
|
row-gap: var(--ab-space-2);
|
|
2137
2145
|
column-gap: var(--ab-space-2);
|
|
2138
2146
|
grid-gap: var(--ab-space-2); }
|
|
2139
2147
|
|
|
2140
|
-
.ab-LayoutEditor,
|
|
2148
|
+
.ab-LayoutEditor,
|
|
2149
|
+
.ab-LayoutEditor * {
|
|
2141
2150
|
box-sizing: border-box; }
|
|
2142
2151
|
|
|
2143
2152
|
.ab-LayoutEditor__ColumnList {
|
|
@@ -2233,18 +2242,24 @@ template {
|
|
|
2233
2242
|
--ab-cmp-adaptable-popup--settings__height: 90vh;
|
|
2234
2243
|
--ab-cmp-adaptable-popup__height: 90vh;
|
|
2235
2244
|
--ab-cmp-adaptable-popup__max-height: 1200px;
|
|
2245
|
+
--ab-cmp-adaptable-popup__box-shadow: 2px 2px 14px 0px rgb(0 0 0 / 26%);
|
|
2236
2246
|
--ab-cmp-adaptable-popup-navigation-list__padding: var(--ab-space-1) var(--ab-space-2);
|
|
2237
|
-
--ab-cmp-adaptable-popup-navigation-list__border-right: 2px solid
|
|
2247
|
+
--ab-cmp-adaptable-popup-navigation-list__border-right: 2px solid
|
|
2248
|
+
var(--ab-color-defaultbackground);
|
|
2238
2249
|
--ab-cmp-adaptable-popup-navigation-list__font-size: var(--ab-font-size-3);
|
|
2239
2250
|
--ab-cmp-adaptable-popup-navigation-list-item__padding: var(--ab-space-0) var(--ab-space-1);
|
|
2240
2251
|
--ab-cmp-adaptable-popup-navigation-list-item__margin-bottom: var(--ab-space-2) var(--ab-space-2);
|
|
2241
|
-
--ab-cmp-adaptable-popup-navigation-list-item-separator__border: 1px solid
|
|
2242
|
-
|
|
2252
|
+
--ab-cmp-adaptable-popup-navigation-list-item-separator__border: 1px solid
|
|
2253
|
+
var(--ab-color-primarydark);
|
|
2254
|
+
--ab-cmp-adaptable-popup-navigation-list-item-separator__margin: var(--ab-space-2)
|
|
2255
|
+
var(--ab-space-2);
|
|
2243
2256
|
--ab-cmp-adaptable-popup-navigation-list-item-button__padding: var(--ab-space-2) var(--ab-space-2);
|
|
2244
2257
|
--ab-cmp-adaptable-popup-navigation-list-item-button__border-radius: var(--ab__border-radius);
|
|
2245
2258
|
--ab-cmp-adaptable-popup-navigation-list-item-button__color: var(--ab-color-text-on-primary);
|
|
2246
2259
|
--ab-cmp-adaptable-popup-navigation-list-item-button__background--active: var(--ab-color-focus);
|
|
2247
|
-
--ab-cmp-adaptable-popup-navigation-list-item-button__background--color: var(
|
|
2260
|
+
--ab-cmp-adaptable-popup-navigation-list-item-button__background--color: var(
|
|
2261
|
+
--ab-color-accentlight
|
|
2262
|
+
);
|
|
2248
2263
|
--ab-cmp-adaptable-popup-navigation-list-item-icon__margin-right: var(--ab-space-2);
|
|
2249
2264
|
--ab-cmp-adaptable-popup-topbar__background: var(--ab-color-secondary);
|
|
2250
2265
|
--ab-cmp-adaptable-popup-topbar__height: 45px;
|
|
@@ -2314,7 +2329,10 @@ template {
|
|
|
2314
2329
|
.ab-Table tr:not(last-child) td {
|
|
2315
2330
|
border-bottom: 1px solid var(--ab-color-primarylight); }
|
|
2316
2331
|
|
|
2317
|
-
.ab-CheckBox,
|
|
2332
|
+
.ab-CheckBox,
|
|
2333
|
+
.ab-CheckBox *,
|
|
2334
|
+
.ab-CheckBox *:before,
|
|
2335
|
+
.ab-CheckBox *:after {
|
|
2318
2336
|
box-sizing: border-box; }
|
|
2319
2337
|
|
|
2320
2338
|
.ab-CheckBox--checked {
|
|
@@ -2525,11 +2543,15 @@ template {
|
|
|
2525
2543
|
.ab-FieldWrap:focus-within {
|
|
2526
2544
|
box-shadow: var(--ab-focus__box-shadow); }
|
|
2527
2545
|
|
|
2528
|
-
.ab-FieldWrap input,
|
|
2546
|
+
.ab-FieldWrap input,
|
|
2547
|
+
.ab-FieldWrap select,
|
|
2548
|
+
.ab-FieldWrap > * {
|
|
2529
2549
|
border: none;
|
|
2530
2550
|
flex: 1; }
|
|
2531
2551
|
|
|
2532
|
-
.ab-FieldWrap input,
|
|
2552
|
+
.ab-FieldWrap input,
|
|
2553
|
+
.ab-FieldWrap select,
|
|
2554
|
+
.ab-FieldWrap .ab-Dropdown {
|
|
2533
2555
|
outline: none !important;
|
|
2534
2556
|
box-shadow: none !important; }
|
|
2535
2557
|
|
|
@@ -2603,8 +2625,8 @@ input.ab-Input[disabled] {
|
|
|
2603
2625
|
|
|
2604
2626
|
/* Spin Buttons modified */
|
|
2605
2627
|
|
|
2606
|
-
input[type=
|
|
2607
|
-
input[type=
|
|
2628
|
+
input[type='number'].ab-Input::-webkit-outer-spin-button,
|
|
2629
|
+
input[type='number'].ab-Input::-webkit-inner-spin-button {
|
|
2608
2630
|
-webkit-appearance: none;
|
|
2609
2631
|
width: 1em;
|
|
2610
2632
|
opacity: 0;
|
|
@@ -2614,9 +2636,9 @@ input[type="number"].ab-Input::-webkit-inner-spin-button {
|
|
|
2614
2636
|
bottom: 0;
|
|
2615
2637
|
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; }
|
|
2616
2638
|
|
|
2617
|
-
input[type=
|
|
2618
|
-
input[type=
|
|
2619
|
-
input[type=
|
|
2639
|
+
input[type='number'].ab-Input:focus::-webkit-inner-spin-button, input[type='number'].ab-Input:focus::-webkit-inner-spin-button:active,
|
|
2640
|
+
input[type='number'].ab-Input:hover::-webkit-inner-spin-button,
|
|
2641
|
+
input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
2620
2642
|
opacity: 1; }
|
|
2621
2643
|
|
|
2622
2644
|
.ab-ListGroup {
|
|
@@ -2659,7 +2681,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2659
2681
|
display: flex;
|
|
2660
2682
|
flex-direction: column; }
|
|
2661
2683
|
|
|
2662
|
-
.ab-Tabs[data-selected-index=
|
|
2684
|
+
.ab-Tabs[data-selected-index='0'] .ab-Tabs__Filler:first-child,
|
|
2663
2685
|
.ab-Tabs__Tab--before-active {
|
|
2664
2686
|
border-bottom-right-radius: var(--ab__border-radius); }
|
|
2665
2687
|
|
|
@@ -2724,7 +2746,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2724
2746
|
display: flex;
|
|
2725
2747
|
flex-flow: column; }
|
|
2726
2748
|
|
|
2727
|
-
.ab-Tabs[data-selected-index=
|
|
2749
|
+
.ab-Tabs[data-selected-index='0'] .ab-Tabs__Body {
|
|
2728
2750
|
border-top-left-radius: 0; }
|
|
2729
2751
|
|
|
2730
2752
|
.ab-Panel {
|
|
@@ -2739,8 +2761,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2739
2761
|
fill: var(--ab-cmp-panel-icon__fill); }
|
|
2740
2762
|
|
|
2741
2763
|
.ab-Panel--variant-modern {
|
|
2742
|
-
--ab-cmp-panel__border-radius: var(--ab-space-1)
|
|
2743
|
-
; }
|
|
2764
|
+
--ab-cmp-panel__border-radius: var(--ab-space-1); }
|
|
2744
2765
|
|
|
2745
2766
|
.ab-Panel__header {
|
|
2746
2767
|
flex: none;
|
|
@@ -2990,11 +3011,16 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
2990
3011
|
outline-offset: var(--ab-cmp-file-droppable__outline-offset);
|
|
2991
3012
|
background: var(--ab-cmp-file-droppable__background); }
|
|
2992
3013
|
|
|
2993
|
-
.ab-FileDroppable,
|
|
3014
|
+
.ab-FileDroppable,
|
|
3015
|
+
.ab-FileDroppable input,
|
|
3016
|
+
.ab-FileDroppable button,
|
|
3017
|
+
.ab-FileDroppable .ab-SimpleButton {
|
|
2994
3018
|
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;
|
|
2995
3019
|
fill: currentColor; }
|
|
2996
3020
|
|
|
2997
|
-
.ab-FileDroppable,
|
|
3021
|
+
.ab-FileDroppable,
|
|
3022
|
+
.ab-FileDroppable input,
|
|
3023
|
+
.ab-FileDroppable button {
|
|
2998
3024
|
color: var(--ab-cmp-file-droppable__color); }
|
|
2999
3025
|
|
|
3000
3026
|
.ab-FileDroppable.ab-FileDroppable--drag-over {
|
|
@@ -3006,7 +3032,10 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3006
3032
|
.ab-FileDroppable.ab-FileDroppable--drag-over * {
|
|
3007
3033
|
pointer-events: none; }
|
|
3008
3034
|
|
|
3009
|
-
.ab-FileDroppable,
|
|
3035
|
+
.ab-FileDroppable,
|
|
3036
|
+
.ab-FileDroppable *,
|
|
3037
|
+
.ab-FileDroppable *:before,
|
|
3038
|
+
.ab-FileDroppable *:after {
|
|
3010
3039
|
box-sizing: border-box; }
|
|
3011
3040
|
|
|
3012
3041
|
.ab-WizardPanel > .ab-Panel__body {
|
|
@@ -3125,13 +3154,17 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3125
3154
|
.ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
|
|
3126
3155
|
padding: var(--ab-space-1); }
|
|
3127
3156
|
|
|
3128
|
-
.ab-Dashboard .ab-StateManagement__Clear-Button,
|
|
3157
|
+
.ab-Dashboard .ab-StateManagement__Clear-Button,
|
|
3158
|
+
.ab-Dashboard .ab-StateManagement__Load-Button,
|
|
3159
|
+
.ab-Dashboard .ab-StateManagement__Export-Dropdown {
|
|
3129
3160
|
margin-left: var(--ab-space-1); }
|
|
3130
3161
|
|
|
3131
3162
|
.ab-GridList {
|
|
3132
3163
|
--at-grid__background: transparent; }
|
|
3133
3164
|
|
|
3134
|
-
.ab-GridList .AT-GridCell_content,
|
|
3165
|
+
.ab-GridList .AT-GridCell_content,
|
|
3166
|
+
.ab-GridList .ab-ListGroupItem,
|
|
3167
|
+
.ab-GridList .AT-GridColumnCell {
|
|
3135
3168
|
width: 100%; }
|
|
3136
3169
|
|
|
3137
3170
|
.ab-GridList .AT-GridHeader {
|
|
@@ -3221,7 +3254,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3221
3254
|
position: relative;
|
|
3222
3255
|
display: inline-block;
|
|
3223
3256
|
min-width: 40px;
|
|
3224
|
-
width:
|
|
3257
|
+
width: 77px;
|
|
3225
3258
|
height: 32px; }
|
|
3226
3259
|
|
|
3227
3260
|
.ab-ToggleButton:hover:not(.ab-ToggleButton--disabled) {
|
|
@@ -3245,7 +3278,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3245
3278
|
|
|
3246
3279
|
.ab-ToggleButton__slider:before {
|
|
3247
3280
|
position: absolute;
|
|
3248
|
-
content:
|
|
3281
|
+
content: '';
|
|
3249
3282
|
width: 24px;
|
|
3250
3283
|
height: 24px;
|
|
3251
3284
|
left: 4px;
|
|
@@ -3259,7 +3292,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3259
3292
|
background-color: var(--ab-cmp-toggle-button--active__background); }
|
|
3260
3293
|
|
|
3261
3294
|
.ab-ToggleButton__input:checked + .ab-ToggleButton__slider:before {
|
|
3262
|
-
transform: translateX(
|
|
3295
|
+
transform: translateX(45px); }
|
|
3263
3296
|
|
|
3264
3297
|
.ab-ToggleButton__input:focus + .ab-ToggleButton__slider {
|
|
3265
3298
|
box-shadow: var(--ab-focus__box-shadow); }
|
|
@@ -3282,7 +3315,8 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3282
3315
|
margin-top: 8px;
|
|
3283
3316
|
font-style: italic; }
|
|
3284
3317
|
|
|
3285
|
-
.ab-Loader__text,
|
|
3318
|
+
.ab-Loader__text,
|
|
3319
|
+
.ab-Loader__Spinner {
|
|
3286
3320
|
vertical-align: middle; }
|
|
3287
3321
|
|
|
3288
3322
|
.ab-Loader .ab-Loader__Spinner {
|
|
@@ -3378,7 +3412,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
|
|
|
3378
3412
|
overflow-y: auto;
|
|
3379
3413
|
overflow-x: hidden;
|
|
3380
3414
|
--ab-grid-row-height: 26px;
|
|
3381
|
-
margin-
|
|
3415
|
+
margin-bottom: 0; }
|
|
3382
3416
|
|
|
3383
3417
|
.ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
|
|
3384
3418
|
overflow-x: hidden; }
|
|
@@ -3436,7 +3470,10 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
3436
3470
|
color: var(--ab-cmp-wizard__color);
|
|
3437
3471
|
height: 100%; }
|
|
3438
3472
|
|
|
3439
|
-
.ab-nocode-wizard,
|
|
3473
|
+
.ab-nocode-wizard,
|
|
3474
|
+
.ab-nocode-wizard *,
|
|
3475
|
+
.ab-nocode-wizard *:before,
|
|
3476
|
+
.ab-nocode-wizard *:after {
|
|
3440
3477
|
box-sizing: border-box; }
|
|
3441
3478
|
|
|
3442
3479
|
.ab-AvailableDropZone .placeholder,
|
|
@@ -3496,11 +3533,14 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
3496
3533
|
flex-wrap: wrap;
|
|
3497
3534
|
grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
|
|
3498
3535
|
|
|
3499
|
-
.ab-ToolPanel .ab-StateManagement__Clear-Button,
|
|
3536
|
+
.ab-ToolPanel .ab-StateManagement__Clear-Button,
|
|
3537
|
+
.ab-ToolPanel .ab-StateManagement__Load-Button {
|
|
3500
3538
|
justify-content: center;
|
|
3501
3539
|
flex: 1; }
|
|
3502
3540
|
|
|
3503
|
-
.ab-ToolPanel .ab-StateManagement__Clear-Button,
|
|
3541
|
+
.ab-ToolPanel .ab-StateManagement__Clear-Button,
|
|
3542
|
+
.ab-ToolPanel .ab-StateManagement__Load-Button,
|
|
3543
|
+
.ab-ToolPanel .ab-StateManagement__Export-Dropdown {
|
|
3504
3544
|
margin-bottom: var(--ab-space-1); }
|
|
3505
3545
|
|
|
3506
3546
|
.ab-CustomSortWizard__SortOrder .ab-Loader__text {
|
|
@@ -3510,6 +3550,9 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
3510
3550
|
background: var(--ab-cmp-adaptable-popup__background);
|
|
3511
3551
|
max-height: var(--ab-cmp-adaptable-popup__max-height); }
|
|
3512
3552
|
|
|
3553
|
+
.ab-Adaptable-Popup--window {
|
|
3554
|
+
box-shadow: var(--ab-cmp-adaptable-popup__box-shadow); }
|
|
3555
|
+
|
|
3513
3556
|
.ab-Adaptable-Popup__Navigation {
|
|
3514
3557
|
padding-top: 10px;
|
|
3515
3558
|
overflow: auto;
|
|
@@ -3721,38 +3764,53 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
3721
3764
|
|
|
3722
3765
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar,
|
|
3723
3766
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar,
|
|
3724
|
-
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar,
|
|
3725
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3726
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3767
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar,
|
|
3768
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar,
|
|
3769
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar,
|
|
3770
|
+
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar,
|
|
3771
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar,
|
|
3772
|
+
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar {
|
|
3727
3773
|
background-color: rgba(0, 0, 0, 0);
|
|
3728
3774
|
border-radius: 100px; }
|
|
3729
3775
|
|
|
3730
3776
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:vertical,
|
|
3731
3777
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:vertical,
|
|
3732
|
-
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:vertical,
|
|
3733
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3734
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3778
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:vertical,
|
|
3779
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:vertical,
|
|
3780
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar:vertical,
|
|
3781
|
+
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:vertical,
|
|
3782
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:vertical,
|
|
3783
|
+
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:vertical {
|
|
3735
3784
|
width: var(--ab-custom-scrollbar-size); }
|
|
3736
3785
|
|
|
3737
3786
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:horizontal,
|
|
3738
3787
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:horizontal,
|
|
3739
|
-
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:horizontal,
|
|
3740
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3741
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3788
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:horizontal,
|
|
3789
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:horizontal,
|
|
3790
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar:horizontal,
|
|
3791
|
+
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:horizontal,
|
|
3792
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:horizontal,
|
|
3793
|
+
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:horizontal {
|
|
3742
3794
|
height: var(--ab-custom-scrollbar-size); }
|
|
3743
3795
|
|
|
3744
3796
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:hover,
|
|
3745
3797
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:hover,
|
|
3746
|
-
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:hover,
|
|
3747
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3748
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3798
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:hover,
|
|
3799
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:hover,
|
|
3800
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar:hover,
|
|
3801
|
+
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:hover,
|
|
3802
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:hover,
|
|
3803
|
+
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:hover {
|
|
3749
3804
|
background-color: rgba(0, 0, 0, 0.09); }
|
|
3750
3805
|
|
|
3751
3806
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb,
|
|
3752
3807
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb,
|
|
3753
|
-
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb,
|
|
3754
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3755
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3808
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb,
|
|
3809
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb,
|
|
3810
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb,
|
|
3811
|
+
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb,
|
|
3812
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb,
|
|
3813
|
+
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb {
|
|
3756
3814
|
background: rgba(0, 0, 0, 0.5);
|
|
3757
3815
|
border-radius: 100px;
|
|
3758
3816
|
background-clip: padding-box;
|
|
@@ -3760,23 +3818,32 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
|
|
|
3760
3818
|
|
|
3761
3819
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:vertical,
|
|
3762
3820
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:vertical,
|
|
3763
|
-
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:vertical,
|
|
3764
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3765
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3821
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:vertical,
|
|
3822
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:vertical,
|
|
3823
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb:vertical,
|
|
3824
|
+
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:vertical,
|
|
3825
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:vertical,
|
|
3826
|
+
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:vertical {
|
|
3766
3827
|
min-height: var(--ab-custom-scrollbar-size); }
|
|
3767
3828
|
|
|
3768
3829
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:horizontal,
|
|
3769
3830
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:horizontal,
|
|
3770
|
-
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:horizontal,
|
|
3771
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3772
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3831
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:horizontal,
|
|
3832
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:horizontal,
|
|
3833
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb:horizontal,
|
|
3834
|
+
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:horizontal,
|
|
3835
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:horizontal,
|
|
3836
|
+
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:horizontal {
|
|
3773
3837
|
min-width: var(--ab-custom-scrollbar-size); }
|
|
3774
3838
|
|
|
3775
3839
|
.ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:active,
|
|
3776
3840
|
.ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:active,
|
|
3777
|
-
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:active,
|
|
3778
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3779
|
-
.ab--custom-mac-like-scrollbars .ab-
|
|
3841
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:active,
|
|
3842
|
+
.ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:active,
|
|
3843
|
+
.ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb:active,
|
|
3844
|
+
.ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:active,
|
|
3845
|
+
.ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:active,
|
|
3846
|
+
.ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:active {
|
|
3780
3847
|
background: rgba(0, 0, 0, 0.61);
|
|
3781
3848
|
border-radius: 100px; }
|
|
3782
3849
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable",
|
|
3
|
-
"version": "11.0.0-canary.
|
|
3
|
+
"version": "11.0.0-canary.7",
|
|
4
4
|
"description": "Powerful data-agnostic HTML5 datagrid add-on that sits on top of an underlying grid component and provides all the rich functionality that advanced users expect from their DataGrids and Data Tables",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web-components",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"re-resizable": "^6.9.1",
|
|
42
42
|
"react": ">=16.8.0",
|
|
43
43
|
"react-beautiful-dnd": "13.1.0",
|
|
44
|
-
"react-day-picker": "8.0.0-beta.
|
|
44
|
+
"react-day-picker": "8.0.0-beta.38",
|
|
45
45
|
"react-dom": ">=16.8.0",
|
|
46
46
|
"react-redux": "7.2.4",
|
|
47
47
|
"react-remove-scroll": "2.4.2",
|
|
@@ -56,6 +56,6 @@
|
|
|
56
56
|
"uuid": "^3.3.2"
|
|
57
57
|
},
|
|
58
58
|
"peerDependencies": {
|
|
59
|
-
"@ag-grid-community/all-modules": ">=
|
|
59
|
+
"@ag-grid-community/all-modules": ">=27.0.0"
|
|
60
60
|
}
|
|
61
61
|
}
|
package/publishTimestamp.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: 1645536652959;
|
|
2
2
|
export default _default;
|
package/publishTimestamp.js
CHANGED
|
@@ -25,6 +25,8 @@ export interface AdaptableNoCodeWizardOptions {
|
|
|
25
25
|
/**
|
|
26
26
|
* When you want to configure an Adaptable via json file D&D, use this instead of the normal Adaptable constructor
|
|
27
27
|
*
|
|
28
|
+
* @example
|
|
29
|
+
* ```
|
|
28
30
|
* // So instead of doing
|
|
29
31
|
*
|
|
30
32
|
* const adaptable = new Adaptable(adaptableOptions);
|
|
@@ -43,12 +45,12 @@ export interface AdaptableNoCodeWizardOptions {
|
|
|
43
45
|
* const AdaptableNoCodeWizard = new AdaptableNoCodeWizard(adaptableOptions);
|
|
44
46
|
*
|
|
45
47
|
* // in the most simple case.
|
|
46
|
-
|
|
48
|
+
*```
|
|
47
49
|
* After the user drops the file and configures all the columns and other options,
|
|
48
50
|
* when the "FINISH" button is clicked, we call onInit (which is an optional config), to allow
|
|
49
51
|
* the developer to override some configuration in case this is needed. This is how it looks like:
|
|
50
52
|
*
|
|
51
|
-
|
|
53
|
+
*```
|
|
52
54
|
* const AdaptableNoCodeWizard = new AdaptableNoCodeWizard(adaptableOptions, {
|
|
53
55
|
* onInit: ({ adaptableOptions, gridOptions }) => {
|
|
54
56
|
* // here you can either change some of the ab options or the gridOptions
|
|
@@ -63,9 +65,9 @@ export interface AdaptableNoCodeWizardOptions {
|
|
|
63
65
|
* return adaptable
|
|
64
66
|
* }
|
|
65
67
|
* });
|
|
66
|
-
|
|
68
|
+
*```
|
|
67
69
|
* you can also have a `prepareData` config
|
|
68
|
-
|
|
70
|
+
*```
|
|
69
71
|
* const AdaptableNoCodeWizard = new AdaptableNoCodeWizard(adaptableOptions, {
|
|
70
72
|
* prepareData: (dataFromFile) => {
|
|
71
73
|
* return {
|
|
@@ -78,7 +80,7 @@ export interface AdaptableNoCodeWizardOptions {
|
|
|
78
80
|
* }
|
|
79
81
|
* }
|
|
80
82
|
* })
|
|
81
|
-
|
|
83
|
+
*```
|
|
82
84
|
* You can use the prepareData function when you know the json doesn't contain an array of objects, but rather another
|
|
83
85
|
* structure - eg: a single object, a data array nested deeper down in the json file, etc
|
|
84
86
|
*
|
|
@@ -158,6 +158,7 @@ export interface IAdaptable {
|
|
|
158
158
|
getDataRowFromRowNode(rowNode: RowNode): any;
|
|
159
159
|
getRowNodesForPrimaryKeys(primaryKeyValues: any[]): RowNode[];
|
|
160
160
|
getRowNodeForPrimaryKey(primaryKeyValue: any): RowNode;
|
|
161
|
+
getRowNodeByIndex(index: number): RowNode;
|
|
161
162
|
forPlugins(callback: (plugin: AdaptablePlugin) => any): void;
|
|
162
163
|
lookupPlugins(propertyName: string, ...args: any): any;
|
|
163
164
|
getPluginProperty(pluginId: string, propertyName: string, ...args: any): any;
|
|
@@ -8,8 +8,6 @@ export declare type AngularFrameworkComponent<T = unknown> = {
|
|
|
8
8
|
/**
|
|
9
9
|
* The angular component class (instance of https://angular.io/api/core/Type).
|
|
10
10
|
* It will be automatically instantiated at runtime and the `adaptableApi` is provided through an Injection token
|
|
11
|
-
*
|
|
12
|
-
* @see https://docs.adaptabletools.com/docs/angular-wrapper/angular-wrapper-custom-toolbars
|
|
13
11
|
*/
|
|
14
12
|
type: T;
|
|
15
13
|
/**
|
|
@@ -26,7 +24,7 @@ export declare type AngularFrameworkComponent<T = unknown> = {
|
|
|
26
24
|
* @example
|
|
27
25
|
* ```
|
|
28
26
|
* () => <MyCustomToolbar />
|
|
29
|
-
*
|
|
27
|
+
* ```
|
|
30
28
|
*/
|
|
31
29
|
export declare type ReactFrameworkComponent = ({ adaptableApi, }: {
|
|
32
30
|
adaptableApi: AdaptableApi;
|
|
@@ -16,11 +16,12 @@ import { NotificationsOptions } from './NotificationsOptions';
|
|
|
16
16
|
import { DashboardOptions } from './DashboardOptions';
|
|
17
17
|
import { ToolPanelOptions } from './ToolPanelOptions';
|
|
18
18
|
import { FilterOptions } from './FilterOptions';
|
|
19
|
-
import { QueryLanguageOptions } from './QueryLanguageOptions';
|
|
20
19
|
import { DataChangeHistoryOptions } from './DataChangeHistoryOptions';
|
|
21
20
|
import { SettingsPanelOptions } from './SettingsPanelOptions';
|
|
22
21
|
import { GridOptions, Module } from '@ag-grid-community/all-modules';
|
|
23
22
|
import { FlashingCellOptions } from './FlashingCellOptions';
|
|
23
|
+
import { AlertOptions } from './AlertOptions';
|
|
24
|
+
import { AdaptableQLOptions } from './AdaptableQLOptions';
|
|
24
25
|
/**
|
|
25
26
|
* Group of property options enabling developers to set up AdapTable at design time to fit precise requirements - provides AG Grid, Predefined Config and other information required to ensure a full, rich user experience
|
|
26
27
|
*/
|
|
@@ -59,7 +60,6 @@ export interface AdaptableOptions {
|
|
|
59
60
|
/**
|
|
60
61
|
* Will autogenerate a Primary Key; only use as a last resort if no unique column is available, as limits some Adaptable functionalities
|
|
61
62
|
*
|
|
62
|
-
* @see https://docs.adaptabletools.com/docs/key-topics/primary-key
|
|
63
63
|
* @defaultValue false
|
|
64
64
|
* @gridInfoItem
|
|
65
65
|
*/
|
|
@@ -72,11 +72,14 @@ export interface AdaptableOptions {
|
|
|
72
72
|
*/
|
|
73
73
|
userName?: string;
|
|
74
74
|
/**
|
|
75
|
-
* The AG Grid object which AdapTable interacts with. Note: if using React or Angular
|
|
75
|
+
* The AG Grid object which AdapTable interacts with. Note: if using AdapTable React or AdapTable Angular, no need to populate this property as AdapTable wires it up differently
|
|
76
76
|
*
|
|
77
77
|
* @defaultValue n/a (Mandatory)
|
|
78
78
|
*/
|
|
79
79
|
gridOptions?: GridOptions;
|
|
80
|
+
/**
|
|
81
|
+
* AG Grid Modules that should be provided - needs to be provided separately
|
|
82
|
+
*/
|
|
80
83
|
modules?: Module[];
|
|
81
84
|
/**
|
|
82
85
|
* Options for managing Notifications in AdapTable
|
|
@@ -84,6 +87,12 @@ export interface AdaptableOptions {
|
|
|
84
87
|
* @gridInfoContainer
|
|
85
88
|
*/
|
|
86
89
|
notificationsOptions?: NotificationsOptions;
|
|
90
|
+
/**
|
|
91
|
+
* Options for managing Alerts in AdapTable
|
|
92
|
+
*
|
|
93
|
+
* @gridInfoContainer
|
|
94
|
+
*/
|
|
95
|
+
alertOptions?: AlertOptions;
|
|
87
96
|
/**
|
|
88
97
|
* Options for setting the 'Div' elements in which AdapTable, AG Grid, popups are placed
|
|
89
98
|
*/
|
|
@@ -171,11 +180,9 @@ export interface AdaptableOptions {
|
|
|
171
180
|
*/
|
|
172
181
|
toolPanelOptions?: ToolPanelOptions;
|
|
173
182
|
/**
|
|
174
|
-
* Options for managing
|
|
175
|
-
*
|
|
176
|
-
* @gridInfoContainer
|
|
183
|
+
* Options for managing AdapTableQL
|
|
177
184
|
*/
|
|
178
|
-
|
|
185
|
+
adaptableQLOptions?: AdaptableQLOptions;
|
|
179
186
|
/**
|
|
180
187
|
* Options to manage Data Change History Module which provides an overview of all data changes
|
|
181
188
|
*
|