@adaptabletools/adaptable 11.0.0-canary.2 → 11.0.0-canary.6

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.
Files changed (244) hide show
  1. package/agGrid.d.ts +1 -1
  2. package/agGrid.js +3 -3
  3. package/base.css +138 -68
  4. package/bundle.cjs.js +131 -127
  5. package/index.css +140 -68
  6. package/package.json +33 -33
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +7 -5
  10. package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +1 -3
  11. package/src/AdaptableOptions/AdaptableOptions.d.ts +11 -2
  12. package/src/AdaptableOptions/AlertOptions.d.ts +82 -0
  13. package/src/AdaptableOptions/AlertOptions.js +2 -0
  14. package/src/AdaptableOptions/ContainerOptions.d.ts +2 -2
  15. package/src/AdaptableOptions/EntitlementOptions.d.ts +1 -1
  16. package/src/AdaptableOptions/FilterOptions.d.ts +1 -1
  17. package/src/AdaptableOptions/NotificationsOptions.d.ts +1 -78
  18. package/src/AdaptableOptions/QueryLanguageOptions.d.ts +3 -7
  19. package/src/AdaptableOptions/StateOptions.d.ts +2 -1
  20. package/src/AdaptableOptions/TeamSharingOptions.d.ts +2 -2
  21. package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -3
  22. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +3 -3
  23. package/src/Api/AdaptableApi.d.ts +6 -0
  24. package/src/Api/AlertApi.d.ts +2 -3
  25. package/src/Api/ColumnApi.d.ts +0 -4
  26. package/src/Api/EventApi.d.ts +8 -3
  27. package/src/Api/Events/GridDataChanged.d.ts +4 -2
  28. package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +1 -1
  29. package/src/Api/FreeTextColumnApi.d.ts +0 -12
  30. package/src/Api/GridApi.d.ts +5 -4
  31. package/src/Api/IPushPullApi.d.ts +1 -1
  32. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -1
  33. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  34. package/src/Api/Implementation/AlertApiImpl.d.ts +1 -2
  35. package/src/Api/Implementation/AlertApiImpl.js +19 -10
  36. package/src/Api/Implementation/ApiBase.d.ts +2 -0
  37. package/src/Api/Implementation/ApiBase.js +3 -0
  38. package/src/Api/Implementation/ColumnApiImpl.d.ts +0 -1
  39. package/src/Api/Implementation/ColumnApiImpl.js +0 -5
  40. package/src/Api/Implementation/DashboardApiImpl.js +1 -1
  41. package/src/Api/Implementation/FlashingCellApiImpl.js +2 -4
  42. package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +0 -5
  43. package/src/Api/Implementation/FreeTextColumnApiImpl.js +0 -9
  44. package/src/Api/Implementation/GridApiImpl.d.ts +5 -4
  45. package/src/Api/Implementation/GridApiImpl.js +4 -0
  46. package/src/Api/Implementation/InternalApiImpl.js +2 -2
  47. package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
  48. package/src/Api/Implementation/LayoutApiImpl.js +12 -1
  49. package/src/Api/Implementation/QueryApiImpl.js +4 -1
  50. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +1 -1
  51. package/src/Api/Implementation/QueryLanguageApiImpl.js +6 -7
  52. package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +7 -0
  53. package/src/Api/Implementation/SettingsPanelApiImpl.js +15 -0
  54. package/src/Api/LayoutApi.d.ts +7 -0
  55. package/src/Api/OpenFinApi.d.ts +5 -0
  56. package/src/Api/PluginsApi.d.ts +29 -0
  57. package/src/Api/QueryLanguageApi.d.ts +10 -10
  58. package/src/Api/SettingsPanelApi.d.ts +17 -0
  59. package/src/Api/SettingsPanelApi.js +2 -0
  60. package/src/Api/UserInterfaceApi.d.ts +5 -2
  61. package/src/PredefinedConfig/AlertState.d.ts +4 -6
  62. package/src/PredefinedConfig/CalculatedColumnState.d.ts +0 -1
  63. package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +7 -4
  64. package/src/PredefinedConfig/Common/AdaptableQuery.js +3 -3
  65. package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +1 -12
  66. package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +1 -1
  67. package/src/PredefinedConfig/Common/Enums.d.ts +0 -1
  68. package/src/PredefinedConfig/Common/Enums.js +0 -2
  69. package/src/PredefinedConfig/Common/FDC3Context.d.ts +4 -12
  70. package/src/PredefinedConfig/Common/RowHighlightInfo.d.ts +15 -0
  71. package/src/PredefinedConfig/Common/RowHighlightInfo.js +2 -0
  72. package/src/PredefinedConfig/Common/Types.d.ts +1 -1
  73. package/src/PredefinedConfig/CustomSortState.d.ts +0 -1
  74. package/src/PredefinedConfig/FlashingCellState.d.ts +5 -2
  75. package/src/PredefinedConfig/FreeTextColumnState.d.ts +1 -1
  76. package/src/PredefinedConfig/LayoutState.d.ts +0 -2
  77. package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -2
  78. package/src/PredefinedConfig/SystemState.d.ts +2 -1
  79. package/src/Redux/ActionsReducers/ApplicationRedux.js +9 -3
  80. package/src/Redux/ActionsReducers/FlashingCellRedux.js +4 -8
  81. package/src/Redux/ActionsReducers/GridRedux.js +3 -1
  82. package/src/Redux/ActionsReducers/PopupRedux.js +13 -3
  83. package/src/Redux/ActionsReducers/QuickSearchRedux.js +3 -1
  84. package/src/Redux/ActionsReducers/SystemRedux.d.ts +6 -5
  85. package/src/Redux/ActionsReducers/SystemRedux.js +16 -14
  86. package/src/Redux/ActionsReducers/ThemeRedux.js +3 -1
  87. package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +1 -1
  88. package/src/Redux/Store/AdaptableReduxMerger.js +5 -5
  89. package/src/Redux/Store/AdaptableStore.js +18 -6
  90. package/src/Strategy/AlertModule.js +14 -4
  91. package/src/Strategy/ConditionalStyleModule.js +4 -0
  92. package/src/Strategy/DataChangeHistoryModule.js +1 -1
  93. package/src/Strategy/FlashingCellModule.d.ts +1 -1
  94. package/src/Strategy/FlashingCellModule.js +34 -18
  95. package/src/Strategy/FreeTextColumnModule.d.ts +2 -2
  96. package/src/Strategy/FreeTextColumnModule.js +10 -0
  97. package/src/Strategy/LayoutModule.js +1 -6
  98. package/src/Strategy/TeamSharingModule.js +1 -1
  99. package/src/Strategy/ToolPanelModule.js +5 -3
  100. package/src/Strategy/Utilities/getFlashingTargetViewItems.d.ts +1 -1
  101. package/src/Strategy/Utilities/getFlashingTargetViewItems.js +3 -1
  102. package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +1 -1
  103. package/src/Strategy/Utilities/getRuleViewItems.d.ts +0 -1
  104. package/src/Strategy/Utilities/getRuleViewItems.js +0 -1
  105. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +8 -6
  106. package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.d.ts → aggregatedBooleanExpressionFunctions.d.ts} +1 -1
  107. package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.js → aggregatedBooleanExpressionFunctions.js} +4 -4
  108. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +7 -0
  109. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +42 -0
  110. package/src/Utilities/ExpressionFunctions/dateUtils.d.ts +1 -0
  111. package/src/Utilities/ExpressionFunctions/dateUtils.js +13 -0
  112. package/src/Utilities/ExpressionFunctions/deepMap.d.ts +35 -0
  113. package/src/Utilities/ExpressionFunctions/deepMap.js +283 -0
  114. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +1 -1
  115. package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +36 -0
  116. package/src/Utilities/ExpressionFunctions/groupingMap.js +104 -0
  117. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +2 -3
  118. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +13 -4
  119. package/src/Utilities/Extensions/StringExtensions.js +1 -1
  120. package/src/Utilities/Helpers/AdaptableHelper.js +3 -2
  121. package/src/Utilities/Helpers/CalendarHelper.js +220 -55
  122. package/src/Utilities/Interface/MessagePopups.d.ts +6 -2
  123. package/src/Utilities/ObjectFactory.js +5 -2
  124. package/src/Utilities/Services/AlertService.js +3 -3
  125. package/src/Utilities/Services/DataService.js +6 -1
  126. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +2 -2
  127. package/src/Utilities/Services/LicenseService.js +1 -1
  128. package/src/Utilities/Services/QueryLanguageService.d.ts +2 -2
  129. package/src/Utilities/Services/QueryLanguageService.js +21 -16
  130. package/src/Utilities/Services/ReportService.js +7 -3
  131. package/src/Utilities/Services/TeamSharingService.js +5 -3
  132. package/src/View/AdaptablePopover/index.js +6 -1
  133. package/src/View/AdaptableView.js +1 -1
  134. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +5 -1
  135. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +5 -2
  136. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +4 -1
  137. package/src/View/AdaptableWizardView/helper.js +5 -3
  138. package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +1 -1
  139. package/src/View/Alert/Wizard/AlertButtonsEditor.js +5 -1
  140. package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +1 -1
  141. package/src/View/Alert/Wizard/AlertWizard.js +2 -2
  142. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.d.ts +2 -3
  143. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +3 -5
  144. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +3 -2
  145. package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
  146. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +17 -6
  147. package/src/View/CellSummary/CellSummaryViewPanel.js +1 -2
  148. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +5 -2
  149. package/src/View/Components/EntityRulesEditor/index.js +9 -9
  150. package/src/View/Components/FilterForm/FilterForm.js +0 -2
  151. package/src/View/Components/FilterForm/QuickFilterForm.js +8 -7
  152. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  153. package/src/View/Components/ModuleValueSelector/index.js +1 -1
  154. package/src/View/Components/Panels/PanelWithImage.d.ts +1 -1
  155. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.d.ts +0 -3
  156. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +45 -87
  157. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +11 -0
  158. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +78 -0
  159. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.d.ts +3 -1
  160. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +19 -6
  161. package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +1 -3
  162. package/src/View/Components/Popups/AdaptablePopup/Navigation.js +5 -13
  163. package/src/View/Components/Popups/AdaptablePopup/TopBar.js +5 -4
  164. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.d.ts +2 -0
  165. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +44 -0
  166. package/src/View/Components/Popups/AdaptablePopupConfirmation.js +3 -1
  167. package/src/View/Components/Popups/AdaptablePopupPrompt.d.ts +5 -12
  168. package/src/View/Components/Popups/AdaptablePopupPrompt.js +38 -37
  169. package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +4 -1
  170. package/src/View/Components/ScopeComponent.js +4 -1
  171. package/src/View/Components/SharedProps/ModuleViewPopupProps.d.ts +1 -1
  172. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +1 -1
  173. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +6 -2
  174. package/src/View/Components/ToolPanel/ToolPanelPopup.js +7 -5
  175. package/src/View/Components/ToolPanel/ToolPanelWrapper.js +1 -1
  176. package/src/View/Components/ValueSelector/index.d.ts +2 -1
  177. package/src/View/Components/ValueSelector/index.js +5 -5
  178. package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +2 -2
  179. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.d.ts +8 -0
  180. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +27 -0
  181. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +17 -5
  182. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +3 -1
  183. package/src/View/CustomSort/Wizard/CustomSortWizard.js +17 -5
  184. package/src/View/Dashboard/CustomToolbarWrapper.js +5 -1
  185. package/src/View/Dashboard/Dashboard.js +5 -5
  186. package/src/View/Dashboard/DashboardPopup.js +8 -6
  187. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +2 -1
  188. package/src/View/Export/Wizard/NewReportWizard.js +13 -3
  189. package/src/View/Export/Wizard/ReportColumnTypeWizard.js +3 -1
  190. package/src/View/Export/Wizard/ReportRowTypeWizard.js +3 -1
  191. package/src/View/Filter/FilterViewPanel.d.ts +1 -4
  192. package/src/View/Filter/FilterViewPanel.js +1 -3
  193. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +17 -26
  194. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +19 -2
  195. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +20 -5
  196. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +2 -2
  197. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +2 -2
  198. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +11 -6
  199. package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -2
  200. package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +12 -5
  201. package/src/View/GridInfo/AdaptableOptionsComponent.js +4 -1
  202. package/src/View/Layout/Wizard/LayoutEditor/index.js +5 -1
  203. package/src/View/Layout/Wizard/LayoutEditorWizard.js +7 -1
  204. package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +8 -2
  205. package/src/View/Query/ExpandedQueryPopup.js +9 -2
  206. package/src/View/Query/QueryViewPanel.js +15 -10
  207. package/src/View/Query/Wizard/NamedQueryWizard.js +6 -4
  208. package/src/View/QuickSearch/QuickSearchPopup.js +3 -3
  209. package/src/View/QuickSearch/useQuickSearchDebounced.js +1 -1
  210. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +12 -2
  211. package/src/View/Schedule/Wizard/ScheduleWizard.js +14 -14
  212. package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
  213. package/src/View/UIHelper.js +4 -1
  214. package/src/View/Wizard/AdaptableWizard.js +13 -4
  215. package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +2 -0
  216. package/src/View/Wizard/OnePageAdaptableWizard.js +6 -2
  217. package/src/agGrid/Adaptable.d.ts +2 -5
  218. package/src/agGrid/Adaptable.js +127 -75
  219. package/src/agGrid/agGridHelper.js +3 -8
  220. package/src/agGrid/agGridMenuHelper.js +5 -9
  221. package/src/agGrid/editors/AdaptableDateEditor/index.js +1 -1
  222. package/src/agGrid/editors/AdaptableNumberEditor/index.js +1 -1
  223. package/src/components/ApplicationIcon.d.ts +1 -0
  224. package/src/components/ApplicationIcon.js +2 -2
  225. package/src/components/Dashboard/Dashboard.js +4 -1
  226. package/src/components/Dashboard/DashboardManager.d.ts +5 -3
  227. package/src/components/Dashboard/DashboardManager.js +33 -27
  228. package/src/components/Dropdown/index.js +8 -1
  229. package/src/components/DropdownButton/renderItem.js +1 -1
  230. package/src/components/ExpressionEditor/EditorInputReactive.d.ts +1 -1
  231. package/src/components/ExpressionEditor/EditorInputReactive.js +4 -2
  232. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +4 -1
  233. package/src/components/ExpressionEditor/index.d.ts +1 -1
  234. package/src/components/ExpressionEditor/index.js +12 -5
  235. package/src/components/FormLayout/index.js +1 -1
  236. package/src/components/OverlayTrigger/Overlay.js +1 -1
  237. package/src/components/SizedContainer/index.js +7 -1
  238. package/src/components/WindowModal/WindowModal.js +4 -1
  239. package/src/metamodel/adaptable.metamodel.d.ts +75 -24
  240. package/src/metamodel/adaptable.metamodel.js +223 -115
  241. package/src/types.d.ts +6 -3
  242. package/themes/dark.css +4 -4
  243. package/version.d.ts +1 -1
  244. package/version.js +1 -1
package/agGrid.d.ts CHANGED
@@ -4,7 +4,7 @@ export declare const AdaptableNoCodeWizard: typeof import("./src/agGrid/Adaptabl
4
4
  export declare const AdaptableBooleanExpressionFunctions: Record<import("./src/Utilities/ExpressionFunctions/booleanExpressionFunctions").BooleanFunctionName, import("./types").ExpressionFunction>;
5
5
  export declare const AdaptableScalarExpressionFunctions: Record<import("./src/Utilities/ExpressionFunctions/scalarExpressionFunctions").ScalarFunctionName, import("./types").ExpressionFunction>;
6
6
  export declare const AdaptableObservableExpressionFunctions: Record<"ROW_CHANGE" | "GRID_CHANGE" | "COUNT" | "NONE" | "MIN" | "MAX" | "TIMEFRAME" | "COL" | "WHERE", import("./types").ExpressionFunction>;
7
- export declare const AdaptableAggregationExpressionFunctions: Record<"EQ" | "NEQ" | "LT" | "GT" | "LTE" | "GTE" | "SUM" | "COL" | "WHERE", import("./types").ExpressionFunction>;
7
+ export declare const AdaptableAggregatedBooleanExpressionFunctions: Record<"EQ" | "NEQ" | "LT" | "GT" | "LTE" | "GTE" | "SUM" | "COL" | "WHERE", import("./types").ExpressionFunction>;
8
8
  import { AdaptableNumberEditor } from './src/agGrid/editors/AdaptableNumberEditor';
9
9
  import { AdaptableDateEditor } from './src/agGrid/editors/AdaptableDateEditor';
10
10
  export { AdaptableNumberEditor, AdaptableDateEditor, AdaptableWizardView };
package/agGrid.js CHANGED
@@ -1,19 +1,19 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AdaptableWizardView = exports.AdaptableDateEditor = exports.AdaptableNumberEditor = exports.AdaptableAggregationExpressionFunctions = exports.AdaptableObservableExpressionFunctions = exports.AdaptableScalarExpressionFunctions = exports.AdaptableBooleanExpressionFunctions = exports.AdaptableNoCodeWizard = void 0;
3
+ exports.AdaptableWizardView = exports.AdaptableDateEditor = exports.AdaptableNumberEditor = exports.AdaptableAggregatedBooleanExpressionFunctions = exports.AdaptableObservableExpressionFunctions = exports.AdaptableScalarExpressionFunctions = exports.AdaptableBooleanExpressionFunctions = exports.AdaptableNoCodeWizard = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const agGrid_1 = tslib_1.__importStar(require("./src/agGrid"));
6
6
  Object.defineProperty(exports, "AdaptableWizardView", { enumerable: true, get: function () { return agGrid_1.AdaptableWizardView; } });
7
7
  const booleanExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/booleanExpressionFunctions");
8
8
  const scalarExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/scalarExpressionFunctions");
9
9
  const observableExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/observableExpressionFunctions");
10
- const aggregationExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/aggregationExpressionFunctions");
10
+ const aggregatedBooleanExpressionFunctions_1 = require("./src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions");
11
11
  exports.default = agGrid_1.default;
12
12
  exports.AdaptableNoCodeWizard = agGrid_1.AdaptableNoCodeWizard;
13
13
  exports.AdaptableBooleanExpressionFunctions = booleanExpressionFunctions_1.booleanExpressionFunctions;
14
14
  exports.AdaptableScalarExpressionFunctions = scalarExpressionFunctions_1.scalarExpressionFunctions;
15
15
  exports.AdaptableObservableExpressionFunctions = observableExpressionFunctions_1.observableExpressionFunctions;
16
- exports.AdaptableAggregationExpressionFunctions = aggregationExpressionFunctions_1.aggregationExpressionFunctions;
16
+ exports.AdaptableAggregatedBooleanExpressionFunctions = aggregatedBooleanExpressionFunctions_1.aggregatedBooleanExpressionFunctions;
17
17
  const AdaptableNumberEditor_1 = require("./src/agGrid/editors/AdaptableNumberEditor");
18
18
  Object.defineProperty(exports, "AdaptableNumberEditor", { enumerable: true, get: function () { return AdaptableNumberEditor_1.AdaptableNumberEditor; } });
19
19
  const AdaptableDateEditor_1 = require("./src/agGrid/editors/AdaptableDateEditor");
package/base.css CHANGED
@@ -1255,7 +1255,7 @@
1255
1255
  --ab-color-text-on-error: white;
1256
1256
  --ab-color-text-on-info: white;
1257
1257
  --ab-color-text-on-warn: white;
1258
- --ab-color-action-add: #2966A8;
1258
+ --ab-color-action-add: #2966a8;
1259
1259
  --ab-color-action-edit: #17a2b8;
1260
1260
  --ab-color-action-share: #eb9316;
1261
1261
  --ab-color-action-delete: #dc3545;
@@ -1272,12 +1272,12 @@
1272
1272
  --ab-color-primarylight: #f5f5f5;
1273
1273
  --ab-color-text-on-primary: #656565;
1274
1274
  --ab-color-text-on-primarydark: var(--ab-color-text-on-primary);
1275
- --ab-color-secondary: #2966A8;
1275
+ --ab-color-secondary: #2966a8;
1276
1276
  --ab-color-secondarydark: #015a9a;
1277
1277
  --ab-color-secondarylight: #a9ddff;
1278
- --ab-color-text-on-secondary: #E2E2E2;
1278
+ --ab-color-text-on-secondary: #e2e2e2;
1279
1279
  --ab-color-text-on-secondarylight: #000000;
1280
- --ab-color-blue: #419641;
1280
+ --ab-color-blue: #419641;
1281
1281
  --ab-color-focus: var(--ab-color-accent);
1282
1282
  --ab-gridheader--filtered__background: var(--ab-color-primary);
1283
1283
  --ab-focus__box-shadow: 0 0 5px 1px var(--ab-color-accent);
@@ -1288,16 +1288,16 @@
1288
1288
  --ab-grid-row-height: 40px;
1289
1289
  --ab-loaded: 777; }
1290
1290
  :root {
1291
- --ITableHeader__color:var(--ab-color-text-on-primary);
1291
+ --ITableHeader__color: var(--ab-color-text-on-primary);
1292
1292
  --ITableHeaderCell__background: var(--ab-color-primary);
1293
1293
  --ITableHeader__background: var(--ITableHeaderCell__background);
1294
- --ITableRow__color:var(--ab-color-text-on-primary);
1294
+ --ITableRow__color: var(--ab-color-text-on-primary);
1295
1295
  --ITable__background: var(--ab-color-primarylight);
1296
1296
  --ITableRow__background: var(--ab-color-defaultbackground);
1297
1297
  --ITableRow--odd__background: var(--ab-color-primarylight); }
1298
- .ab-style__list-group-item:nth-child(2n+1) {
1298
+ .ab-style__list-group-item:nth-child(2n + 1) {
1299
1299
  background: var(--ab-color-primarylight); }
1300
- .ab-Grid .ag-header-cell input[type="date" i]::-webkit-calendar-picker-indicator {
1300
+ .ab-Grid .ag-header-cell input[type='date' i]::-webkit-calendar-picker-indicator {
1301
1301
  margin-inline-start: 0px; }
1302
1302
  .ab-Grid.ab-Grid--indicate-filtered-columns .ag-header-cell-filtered {
1303
1303
  font-weight: bolder;
@@ -1311,12 +1311,18 @@
1311
1311
  --ab-cmp-checkbox--check-indeterminate__color: var(--ab-color-focus);
1312
1312
  --ab-cmp-checkbox--check-indeterminate-radius: 2px; }
1313
1313
  .ab-CheckBox--variant-agGrid {
1314
- --ab-cmp-checkbox--check__color: var(--ag-checkbox-checked-color, var(--ag-balham-active-color, #0091ea));
1314
+ --ab-cmp-checkbox--check__color: var(
1315
+ --ag-checkbox-checked-color,
1316
+ var(--ag-balham-active-color, #0091ea)
1317
+ );
1315
1318
  --ab-cmp-checkbox--checked__background: var(--ag-background-color);
1316
1319
  --ab-cmp-checkbox__border-color: var(--ab-cmp-checkbox--check__color);
1317
1320
  --ab-cmp-checkbox--check-indeterminate__color: var(--ab-cmp-checkbox__border-color); }
1318
1321
  .ab-CheckBox--variant-agGrid.ab-CheckBox--indeterminate {
1319
- --ab-cmp-checkbox--check__color: var(--ag-checkbox-checked-color, var(--ag-balham-active-color, #0091ea)); }
1322
+ --ab-cmp-checkbox--check__color: var(
1323
+ --ag-checkbox-checked-color,
1324
+ var(--ag-balham-active-color, #0091ea)
1325
+ ); }
1320
1326
  .ab-CheckBox--variant-agGrid.ab-CheckBox--unchecked {
1321
1327
  --ab-cmp-checkbox__border-color: var(--ag-checkbox-unchecked-color); }
1322
1328
  :root {
@@ -1343,7 +1349,8 @@
1343
1349
  --ab-cmp-dropdownbutton-list-item__color: var(--ab-color-text-on-primary);
1344
1350
  --ab-cmp-dropdownbutton-list__z-index: 1000;
1345
1351
  --ab-cmp-dropdownbutton-list__border-radius: var(--ab__border-radius);
1346
- --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);
1352
+ --ab-cmp-dropdownbutton-list__box-shadow: 4px 5px 11px -5px rgba(0, 0, 0, 0.2),
1353
+ -4px 6px 5px 0 rgba(0, 0, 0, 0.14), 5px 3px 5px 0 rgba(0, 0, 0, 0.12);
1347
1354
  --ab-cmp-dropdownbutton-list-separator__border: 1px solid var(--ab-color-primarydark); }
1348
1355
  :root {
1349
1356
  --ab-cmp-error-box__padding: var(--ab-space-3);
@@ -1389,7 +1396,7 @@
1389
1396
  background: var(--ab-cmp-listgroupitem__background);
1390
1397
  color: var(--ab-cmp-listgroupitem__color);
1391
1398
  border-radius: var(--ab-cmp-listgroupitem__border-radius); }
1392
- .ab-ListGroupItem:nth-child(2n+1) {
1399
+ .ab-ListGroupItem:nth-child(2n + 1) {
1393
1400
  background: var(--ab-cmp-listgroupitem--odd__background);
1394
1401
  color: var(--ab-cmp-listgroupitem--odd__color); }
1395
1402
  .ab-ListGroupItem.ab-ListGroupItem--no-zebra {
@@ -1458,7 +1465,8 @@
1458
1465
  --ab-cmp-file-droppable--drag-over__background: var(--ab-color-secondary);
1459
1466
  --ab-cmp-file-droppable--drag-over__color: var(--ab-color-text-on-secondary);
1460
1467
  --ab-cmp-file-droppable--drag-over__outline-offset: -20px;
1461
- --ab-cmp-file-droppable--drag-over__outline: 2px dashed var(--ab-cmp-file-droppable--drag-over__color); }
1468
+ --ab-cmp-file-droppable--drag-over__outline: 2px dashed
1469
+ var(--ab-cmp-file-droppable--drag-over__color); }
1462
1470
  :root {
1463
1471
  --ab-dashboard__background: var(--ab-color-primary);
1464
1472
  --ab-dashboard__font-family: var(--ab__font-family);
@@ -1506,7 +1514,7 @@
1506
1514
  --ab-cmp-button-border-radius: 0px;
1507
1515
  --ab-cmp-button-disabled-opacity: 0.5;
1508
1516
  --ab-cmp-button-background: var(--ab-color-primary);
1509
- --ab-cmp-button-disabled-background:var(--ab-color-primarydark); }
1517
+ --ab-cmp-button-disabled-background: var(--ab-color-primarydark); }
1510
1518
  :root {
1511
1519
  --ab-cmp-dashboardpanel_body__background: var(--ab-color-primarylight);
1512
1520
  --ab-cmp-dashboardpanel_header__background: var(--ab-color-primary);
@@ -1531,12 +1539,13 @@
1531
1539
  overflow: auto;
1532
1540
  display: grid;
1533
1541
  padding: var(--ab-space-2);
1534
- grid-template-rows: 1fr 1fr;
1542
+ grid-template-rows: 1fr 1fr;
1535
1543
  grid-template-columns: 28rem 1fr 1fr;
1536
1544
  row-gap: var(--ab-space-2);
1537
1545
  column-gap: var(--ab-space-2);
1538
1546
  grid-gap: var(--ab-space-2); }
1539
- .ab-LayoutEditor, .ab-LayoutEditor * {
1547
+ .ab-LayoutEditor,
1548
+ .ab-LayoutEditor * {
1540
1549
  box-sizing: border-box; }
1541
1550
  .ab-LayoutEditor__ColumnList {
1542
1551
  overflow: auto; }
@@ -1614,18 +1623,24 @@
1614
1623
  --ab-cmp-adaptable-popup--settings__height: 90vh;
1615
1624
  --ab-cmp-adaptable-popup__height: 90vh;
1616
1625
  --ab-cmp-adaptable-popup__max-height: 1200px;
1626
+ --ab-cmp-adaptable-popup__box-shadow: 2px 2px 14px 0px rgb(0 0 0 / 26%);
1617
1627
  --ab-cmp-adaptable-popup-navigation-list__padding: var(--ab-space-1) var(--ab-space-2);
1618
- --ab-cmp-adaptable-popup-navigation-list__border-right: 2px solid var(--ab-color-defaultbackground);
1628
+ --ab-cmp-adaptable-popup-navigation-list__border-right: 2px solid
1629
+ var(--ab-color-defaultbackground);
1619
1630
  --ab-cmp-adaptable-popup-navigation-list__font-size: var(--ab-font-size-3);
1620
1631
  --ab-cmp-adaptable-popup-navigation-list-item__padding: var(--ab-space-0) var(--ab-space-1);
1621
1632
  --ab-cmp-adaptable-popup-navigation-list-item__margin-bottom: var(--ab-space-2) var(--ab-space-2);
1622
- --ab-cmp-adaptable-popup-navigation-list-item-separator__border: 1px solid var(--ab-color-primarydark);
1623
- --ab-cmp-adaptable-popup-navigation-list-item-separator__margin: var(--ab-space-2) var(--ab-space-2);
1633
+ --ab-cmp-adaptable-popup-navigation-list-item-separator__border: 1px solid
1634
+ var(--ab-color-primarydark);
1635
+ --ab-cmp-adaptable-popup-navigation-list-item-separator__margin: var(--ab-space-2)
1636
+ var(--ab-space-2);
1624
1637
  --ab-cmp-adaptable-popup-navigation-list-item-button__padding: var(--ab-space-2) var(--ab-space-2);
1625
1638
  --ab-cmp-adaptable-popup-navigation-list-item-button__border-radius: var(--ab__border-radius);
1626
1639
  --ab-cmp-adaptable-popup-navigation-list-item-button__color: var(--ab-color-text-on-primary);
1627
1640
  --ab-cmp-adaptable-popup-navigation-list-item-button__background--active: var(--ab-color-focus);
1628
- --ab-cmp-adaptable-popup-navigation-list-item-button__background--color: var(--ab-color-accentlight);
1641
+ --ab-cmp-adaptable-popup-navigation-list-item-button__background--color: var(
1642
+ --ab-color-accentlight
1643
+ );
1629
1644
  --ab-cmp-adaptable-popup-navigation-list-item-icon__margin-right: var(--ab-space-2);
1630
1645
  --ab-cmp-adaptable-popup-topbar__background: var(--ab-color-secondary);
1631
1646
  --ab-cmp-adaptable-popup-topbar__height: 45px;
@@ -1681,7 +1696,10 @@
1681
1696
  border-bottom: 2px solid var(--ab-color-primarydark); }
1682
1697
  .ab-Table tr:not(last-child) td {
1683
1698
  border-bottom: 1px solid var(--ab-color-primarylight); }
1684
- .ab-CheckBox, .ab-CheckBox *, .ab-CheckBox *:before, .ab-CheckBox *:after {
1699
+ .ab-CheckBox,
1700
+ .ab-CheckBox *,
1701
+ .ab-CheckBox *:before,
1702
+ .ab-CheckBox *:after {
1685
1703
  box-sizing: border-box; }
1686
1704
  .ab-CheckBox--checked {
1687
1705
  --ab-cmp-checkbox__background: var(--ab-cmp-checkbox--checked__background); }
@@ -1856,10 +1874,14 @@
1856
1874
  fill: var(--ab-cmp-field-wrap__fill); }
1857
1875
  .ab-FieldWrap:focus-within {
1858
1876
  box-shadow: var(--ab-focus__box-shadow); }
1859
- .ab-FieldWrap input, .ab-FieldWrap select, .ab-FieldWrap > * {
1877
+ .ab-FieldWrap input,
1878
+ .ab-FieldWrap select,
1879
+ .ab-FieldWrap > * {
1860
1880
  border: none;
1861
1881
  flex: 1; }
1862
- .ab-FieldWrap input, .ab-FieldWrap select, .ab-FieldWrap .ab-Dropdown {
1882
+ .ab-FieldWrap input,
1883
+ .ab-FieldWrap select,
1884
+ .ab-FieldWrap .ab-Dropdown {
1863
1885
  outline: none !important;
1864
1886
  box-shadow: none !important; }
1865
1887
  .ab-FormLayout {
@@ -1917,8 +1939,8 @@ input.ab-Input[disabled] {
1917
1939
  color: var(--ab-cmp-input--placeholder__color);
1918
1940
  opacity: var(--ab-cmp-input--placeholder__opacity); }
1919
1941
  /* Spin Buttons modified */
1920
- input[type="number"].ab-Input::-webkit-outer-spin-button,
1921
- input[type="number"].ab-Input::-webkit-inner-spin-button {
1942
+ input[type='number'].ab-Input::-webkit-outer-spin-button,
1943
+ input[type='number'].ab-Input::-webkit-inner-spin-button {
1922
1944
  -webkit-appearance: none;
1923
1945
  width: 1em;
1924
1946
  opacity: 0;
@@ -1927,9 +1949,9 @@ input[type="number"].ab-Input::-webkit-inner-spin-button {
1927
1949
  right: 0;
1928
1950
  bottom: 0;
1929
1951
  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; }
1930
- input[type="number"].ab-Input:focus::-webkit-inner-spin-button, input[type="number"].ab-Input:focus::-webkit-inner-spin-button:active,
1931
- input[type="number"].ab-Input:hover::-webkit-inner-spin-button,
1932
- input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
1952
+ input[type='number'].ab-Input:focus::-webkit-inner-spin-button, input[type='number'].ab-Input:focus::-webkit-inner-spin-button:active,
1953
+ input[type='number'].ab-Input:hover::-webkit-inner-spin-button,
1954
+ input[type='number'].ab-Input:hover::-webkit-inner-spin-button:active {
1933
1955
  opacity: 1; }
1934
1956
  .ab-ListGroup {
1935
1957
  display: flex;
@@ -1965,7 +1987,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
1965
1987
  .ab-Tabs {
1966
1988
  display: flex;
1967
1989
  flex-direction: column; }
1968
- .ab-Tabs[data-selected-index="0"] .ab-Tabs__Filler:first-child,
1990
+ .ab-Tabs[data-selected-index='0'] .ab-Tabs__Filler:first-child,
1969
1991
  .ab-Tabs__Tab--before-active {
1970
1992
  border-bottom-right-radius: var(--ab__border-radius); }
1971
1993
  .ab-Tabs__Strip {
@@ -2018,7 +2040,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2018
2040
  overflow: auto;
2019
2041
  display: flex;
2020
2042
  flex-flow: column; }
2021
- .ab-Tabs[data-selected-index="0"] .ab-Tabs__Body {
2043
+ .ab-Tabs[data-selected-index='0'] .ab-Tabs__Body {
2022
2044
  border-top-left-radius: 0; }
2023
2045
  .ab-Panel {
2024
2046
  display: flex;
@@ -2030,8 +2052,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2030
2052
  -webkit-text-fill-color: var(--ab-cmp-panel-icon__fill);
2031
2053
  fill: var(--ab-cmp-panel-icon__fill); }
2032
2054
  .ab-Panel--variant-modern {
2033
- --ab-cmp-panel__border-radius: var(--ab-space-1)
2034
- ; }
2055
+ --ab-cmp-panel__border-radius: var(--ab-space-1); }
2035
2056
  .ab-Panel__header {
2036
2057
  flex: none;
2037
2058
  background: var(--ab-cmp-panel_header__background);
@@ -2225,10 +2246,15 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2225
2246
  outline: var(--ab-cmp-file-droppable__outline);
2226
2247
  outline-offset: var(--ab-cmp-file-droppable__outline-offset);
2227
2248
  background: var(--ab-cmp-file-droppable__background); }
2228
- .ab-FileDroppable, .ab-FileDroppable input, .ab-FileDroppable button, .ab-FileDroppable .ab-SimpleButton {
2249
+ .ab-FileDroppable,
2250
+ .ab-FileDroppable input,
2251
+ .ab-FileDroppable button,
2252
+ .ab-FileDroppable .ab-SimpleButton {
2229
2253
  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;
2230
2254
  fill: currentColor; }
2231
- .ab-FileDroppable, .ab-FileDroppable input, .ab-FileDroppable button {
2255
+ .ab-FileDroppable,
2256
+ .ab-FileDroppable input,
2257
+ .ab-FileDroppable button {
2232
2258
  color: var(--ab-cmp-file-droppable__color); }
2233
2259
  .ab-FileDroppable.ab-FileDroppable--drag-over {
2234
2260
  outline-offset: var(--ab-cmp-file-droppable--drag-over__outline-offset);
@@ -2237,7 +2263,10 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2237
2263
  color: var(--ab-cmp-file-droppable--drag-over__color); }
2238
2264
  .ab-FileDroppable.ab-FileDroppable--drag-over * {
2239
2265
  pointer-events: none; }
2240
- .ab-FileDroppable, .ab-FileDroppable *, .ab-FileDroppable *:before, .ab-FileDroppable *:after {
2266
+ .ab-FileDroppable,
2267
+ .ab-FileDroppable *,
2268
+ .ab-FileDroppable *:before,
2269
+ .ab-FileDroppable *:after {
2241
2270
  box-sizing: border-box; }
2242
2271
  .ab-WizardPanel > .ab-Panel__body {
2243
2272
  display: flex;
@@ -2333,11 +2362,15 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2333
2362
  white-space: nowrap; }
2334
2363
  .ab-Dashboard .ab-DashboardToolbar__QuickSearch__text .ab-Input {
2335
2364
  padding: var(--ab-space-1); }
2336
- .ab-Dashboard .ab-StateManagement__Clear-Button, .ab-Dashboard .ab-StateManagement__Load-Button, .ab-Dashboard .ab-StateManagement__Export-Dropdown {
2365
+ .ab-Dashboard .ab-StateManagement__Clear-Button,
2366
+ .ab-Dashboard .ab-StateManagement__Load-Button,
2367
+ .ab-Dashboard .ab-StateManagement__Export-Dropdown {
2337
2368
  margin-left: var(--ab-space-1); }
2338
2369
  .ab-GridList {
2339
2370
  --at-grid__background: transparent; }
2340
- .ab-GridList .AT-GridCell_content, .ab-GridList .ab-ListGroupItem, .ab-GridList .AT-GridColumnCell {
2371
+ .ab-GridList .AT-GridCell_content,
2372
+ .ab-GridList .ab-ListGroupItem,
2373
+ .ab-GridList .AT-GridColumnCell {
2341
2374
  width: 100%; }
2342
2375
  .ab-GridList .AT-GridHeader {
2343
2376
  display: none; }
@@ -2428,7 +2461,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2428
2461
  border-radius: var(--ab__border-radius); }
2429
2462
  .ab-ToggleButton__slider:before {
2430
2463
  position: absolute;
2431
- content: "";
2464
+ content: '';
2432
2465
  width: 24px;
2433
2466
  height: 24px;
2434
2467
  left: 4px;
@@ -2457,7 +2490,8 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2457
2490
  font-size: var(--ab-cmp-loader__font-size);
2458
2491
  margin-top: 8px;
2459
2492
  font-style: italic; }
2460
- .ab-Loader__text, .ab-Loader__Spinner {
2493
+ .ab-Loader__text,
2494
+ .ab-Loader__Spinner {
2461
2495
  vertical-align: middle; }
2462
2496
  .ab-Loader .ab-Loader__Spinner {
2463
2497
  margin-right: 5px; }
@@ -2506,7 +2540,8 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2506
2540
  --ab-cmp-Tag__font-size: var(--ab-font-size-3); }
2507
2541
  .ab-Tag {
2508
2542
  display: inline-flex;
2509
- font-size: var(--ab-cmp-Tag__font-size); }
2543
+ font-size: var(--ab-cmp-Tag__font-size);
2544
+ max-width: 100%; }
2510
2545
  .ab-AdaptableOptions {
2511
2546
  background: var(--ab-cmp-adaptable-options__background-color); }
2512
2547
  .ab-GridOptions {
@@ -2534,7 +2569,7 @@ input[type="number"].ab-Input:hover::-webkit-inner-spin-button:active {
2534
2569
  overflow-y: auto;
2535
2570
  overflow-x: hidden;
2536
2571
  --ab-grid-row-height: 26px;
2537
- margin-Bottom: 0; }
2572
+ margin-bottom: 0; }
2538
2573
  .ab-ListBoxFilterForm .ab-GridList .AT-VirtualScrollContainer {
2539
2574
  overflow-x: hidden; }
2540
2575
  .ag-theme-balham-dark .ab-ListBoxFilterForm--aggrid-style,
@@ -2582,7 +2617,10 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
2582
2617
  background: var(--ab-cmp-wizard__background);
2583
2618
  color: var(--ab-cmp-wizard__color);
2584
2619
  height: 100%; }
2585
- .ab-nocode-wizard, .ab-nocode-wizard *, .ab-nocode-wizard *:before, .ab-nocode-wizard *:after {
2620
+ .ab-nocode-wizard,
2621
+ .ab-nocode-wizard *,
2622
+ .ab-nocode-wizard *:before,
2623
+ .ab-nocode-wizard *:after {
2586
2624
  box-sizing: border-box; }
2587
2625
  .ab-AvailableDropZone .placeholder,
2588
2626
  .ab-SelectedDropZone .placeholder {
@@ -2627,16 +2665,21 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
2627
2665
  flex-direction: row;
2628
2666
  flex-wrap: wrap;
2629
2667
  grid-gap: var(--ab-cmp-toolpanel-header__grid-gap); }
2630
- .ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button {
2668
+ .ab-ToolPanel .ab-StateManagement__Clear-Button,
2669
+ .ab-ToolPanel .ab-StateManagement__Load-Button {
2631
2670
  justify-content: center;
2632
2671
  flex: 1; }
2633
- .ab-ToolPanel .ab-StateManagement__Clear-Button, .ab-ToolPanel .ab-StateManagement__Load-Button, .ab-ToolPanel .ab-StateManagement__Export-Dropdown {
2672
+ .ab-ToolPanel .ab-StateManagement__Clear-Button,
2673
+ .ab-ToolPanel .ab-StateManagement__Load-Button,
2674
+ .ab-ToolPanel .ab-StateManagement__Export-Dropdown {
2634
2675
  margin-bottom: var(--ab-space-1); }
2635
2676
  .ab-CustomSortWizard__SortOrder .ab-Loader__text {
2636
2677
  font-size: var(--ab-cmp-custom-sort-wizard-loader__font-size); }
2637
2678
  .ab-Adaptable-Popup {
2638
2679
  background: var(--ab-cmp-adaptable-popup__background);
2639
2680
  max-height: var(--ab-cmp-adaptable-popup__max-height); }
2681
+ .ab-Adaptable-Popup--window {
2682
+ box-shadow: var(--ab-cmp-adaptable-popup__box-shadow); }
2640
2683
  .ab-Adaptable-Popup__Navigation {
2641
2684
  padding-top: 10px;
2642
2685
  overflow: auto;
@@ -2716,6 +2759,9 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
2716
2759
  margin-bottom: var(--ab-cmp-adaptable-object-list-item__margin-bottom); }
2717
2760
  .ab-Adaptable-Object-List__Item__edit-property {
2718
2761
  visibility: hidden; }
2762
+ .ab-Adaptable-Object-List__Item__values {
2763
+ min-width: 0;
2764
+ word-break: break-all; }
2719
2765
  .ab-Adaptable-Object-List__Item__buttons {
2720
2766
  padding-left: var(--ab-space-2);
2721
2767
  min-width: 80px;
@@ -2798,55 +2844,79 @@ html.ab--theme-dark .ab-ListBoxFilterForm--aggrid-style {
2798
2844
  --ab-toast-cmp__shadow-color: var(--ab-color-error); }
2799
2845
  .ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar,
2800
2846
  .ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar,
2801
- .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar,
2802
- .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar,
2803
- .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar {
2847
+ .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar,
2848
+ .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar,
2849
+ .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar,
2850
+ .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar,
2851
+ .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar,
2852
+ .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar {
2804
2853
  background-color: rgba(0, 0, 0, 0);
2805
2854
  border-radius: 100px; }
2806
2855
  .ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:vertical,
2807
2856
  .ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:vertical,
2808
- .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:vertical, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:vertical,
2809
- .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar:vertical, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:vertical,
2810
- .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:vertical, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:vertical {
2857
+ .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:vertical,
2858
+ .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:vertical,
2859
+ .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar:vertical,
2860
+ .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:vertical,
2861
+ .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:vertical,
2862
+ .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:vertical {
2811
2863
  width: var(--ab-custom-scrollbar-size); }
2812
2864
  .ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:horizontal,
2813
2865
  .ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:horizontal,
2814
- .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:horizontal, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:horizontal,
2815
- .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar:horizontal, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:horizontal,
2816
- .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:horizontal, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:horizontal {
2866
+ .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:horizontal,
2867
+ .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:horizontal,
2868
+ .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar:horizontal,
2869
+ .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:horizontal,
2870
+ .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:horizontal,
2871
+ .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:horizontal {
2817
2872
  height: var(--ab-custom-scrollbar-size); }
2818
2873
  .ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar:hover,
2819
2874
  .ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar:hover,
2820
- .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:hover, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:hover,
2821
- .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar:hover, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:hover,
2822
- .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:hover, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:hover {
2875
+ .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar:hover,
2876
+ .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar:hover,
2877
+ .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar:hover,
2878
+ .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar:hover,
2879
+ .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar:hover,
2880
+ .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar:hover {
2823
2881
  background-color: rgba(0, 0, 0, 0.09); }
2824
2882
  .ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb,
2825
2883
  .ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb,
2826
- .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb,
2827
- .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb,
2828
- .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb {
2884
+ .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb,
2885
+ .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb,
2886
+ .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb,
2887
+ .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb,
2888
+ .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb,
2889
+ .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb {
2829
2890
  background: rgba(0, 0, 0, 0.5);
2830
2891
  border-radius: 100px;
2831
2892
  background-clip: padding-box;
2832
2893
  border: 2px solid rgba(0, 0, 0, 0); }
2833
2894
  .ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:vertical,
2834
2895
  .ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:vertical,
2835
- .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:vertical, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:vertical,
2836
- .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb:vertical, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:vertical,
2837
- .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:vertical, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:vertical {
2896
+ .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:vertical,
2897
+ .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:vertical,
2898
+ .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb:vertical,
2899
+ .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:vertical,
2900
+ .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:vertical,
2901
+ .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:vertical {
2838
2902
  min-height: var(--ab-custom-scrollbar-size); }
2839
2903
  .ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:horizontal,
2840
2904
  .ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:horizontal,
2841
- .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:horizontal, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:horizontal,
2842
- .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb:horizontal, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:horizontal,
2843
- .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:horizontal, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:horizontal {
2905
+ .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:horizontal,
2906
+ .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:horizontal,
2907
+ .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb:horizontal,
2908
+ .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:horizontal,
2909
+ .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:horizontal,
2910
+ .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:horizontal {
2844
2911
  min-width: var(--ab-custom-scrollbar-size); }
2845
2912
  .ab--custom-mac-like-scrollbars .ab-Grid * ::-webkit-scrollbar-thumb:active,
2846
2913
  .ab--custom-mac-like-scrollbars .ag-root * ::-webkit-scrollbar-thumb:active,
2847
- .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:active, .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:active,
2848
- .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb:active, .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:active,
2849
- .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:active, .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:active {
2914
+ .ab--custom-mac-like-scrollbars .ab-Dashboard ::-webkit-scrollbar-thumb:active,
2915
+ .ab--custom-mac-like-scrollbars .ab-Dashboard * ::-webkit-scrollbar-thumb:active,
2916
+ .ab--custom-mac-like-scrollbars .ab-Panel ::-webkit-scrollbar-thumb:active,
2917
+ .ab--custom-mac-like-scrollbars .ab-Panel * ::-webkit-scrollbar-thumb:active,
2918
+ .ab--custom-mac-like-scrollbars .ab-Modal ::-webkit-scrollbar-thumb:active,
2919
+ .ab--custom-mac-like-scrollbars .ab-Modal * ::-webkit-scrollbar-thumb:active {
2850
2920
  background: rgba(0, 0, 0, 0.61);
2851
2921
  border-radius: 100px; }
2852
2922
  .ag-details-row {