@adaptabletools/adaptable-cjs 21.2.2-canary.0 → 22.0.0-canary.1

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 (576) hide show
  1. package/README.md +4 -6
  2. package/icons/inspector.svg +1 -0
  3. package/index.css +6464 -5488
  4. package/index.css.map +1 -1
  5. package/package.json +5 -6
  6. package/src/AdaptableInterfaces/IAdaptable.d.ts +9 -1
  7. package/src/AdaptableOptions/DefaultAdaptableOptions.js +2 -2
  8. package/src/AdaptableState/ChartingState.d.ts +1 -1
  9. package/src/AdaptableState/Common/AdaptableAlert.d.ts +2 -2
  10. package/src/AdaptableState/Common/AdaptableColumn.js +2 -2
  11. package/src/AdaptableState/Common/AdaptableForm.js +1 -2
  12. package/src/AdaptableState/Common/AdaptableIcon.d.ts +1 -1
  13. package/src/AdaptableState/Common/AdaptablePredicate.js +7 -3
  14. package/src/AdaptableState/Common/AggregationColumns.d.ts +3 -3
  15. package/src/AdaptableState/Common/DataUpdateConfig.d.ts +4 -4
  16. package/src/AdaptableState/TeamSharingState.d.ts +1 -1
  17. package/src/Api/CustomSortApi.d.ts +6 -1
  18. package/src/Api/GridApi.d.ts +14 -0
  19. package/src/Api/Implementation/ColumnApiImpl.d.ts +3 -0
  20. package/src/Api/Implementation/ColumnApiImpl.js +22 -10
  21. package/src/Api/Implementation/CustomSortApiImpl.d.ts +2 -1
  22. package/src/Api/Implementation/CustomSortApiImpl.js +5 -1
  23. package/src/Api/Implementation/GridApiImpl.d.ts +9 -0
  24. package/src/Api/Implementation/GridApiImpl.js +16 -0
  25. package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -0
  26. package/src/Api/Implementation/LayoutApiImpl.js +85 -2
  27. package/src/Api/Implementation/LayoutHelpers.d.ts +2 -2
  28. package/src/Api/Implementation/LayoutHelpers.js +2 -2
  29. package/src/Api/Implementation/ScheduleApiImpl.d.ts +1 -0
  30. package/src/Api/Implementation/ScheduleApiImpl.js +12 -0
  31. package/src/Api/Implementation/ShortcutApiImpl.d.ts +1 -0
  32. package/src/Api/Implementation/ShortcutApiImpl.js +4 -0
  33. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +1 -0
  34. package/src/Api/Implementation/StyledColumnApiImpl.js +4 -0
  35. package/src/Api/Internal/AdaptableInternalApi.d.ts +0 -1
  36. package/src/Api/Internal/AdaptableInternalApi.js +3 -3
  37. package/src/Api/Internal/ColumnFilterInternalApi.js +1 -1
  38. package/src/Api/Internal/ColumnInternalApi.js +2 -2
  39. package/src/Api/Internal/LayoutInternalApi.d.ts +5 -0
  40. package/src/Api/Internal/LayoutInternalApi.js +25 -0
  41. package/src/Api/LayoutApi.d.ts +7 -1
  42. package/src/Api/ScheduleApi.d.ts +5 -0
  43. package/src/Api/ShortcutApi.d.ts +5 -0
  44. package/src/Api/StyledColumnApi.d.ts +5 -0
  45. package/src/Redux/ActionsReducers/CommentsRedux.d.ts +1 -1
  46. package/src/Redux/ActionsReducers/DashboardRedux.d.ts +1 -1
  47. package/src/Redux/ActionsReducers/InternalRedux.d.ts +6 -6
  48. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +3 -9
  49. package/src/Redux/ActionsReducers/StyledColumnRedux.d.ts +6 -6
  50. package/src/Redux/ActionsReducers/StyledColumnRedux.js +16 -16
  51. package/src/Redux/ActionsReducers/utils.js +3 -4
  52. package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +4 -2
  53. package/src/Redux/Store/AdaptableReduxMerger.js +5 -5
  54. package/src/Redux/Store/AdaptableStore.js +8 -7
  55. package/src/Redux/Store/buildAdaptableStateFunctionConfig.js +1 -2
  56. package/src/Strategy/FormatColumnModule.js +2 -2
  57. package/src/Strategy/Utilities/Alert/getAlertPreviewViewItems.js +1 -1
  58. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +2 -1
  59. package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.js +4 -3
  60. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +18 -17
  61. package/src/Utilities/Constants/DocumentationLinkConstants.js +19 -18
  62. package/src/Utilities/ExpressionFunctions/deepMap.js +2 -2
  63. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +4 -4
  64. package/src/Utilities/ExpressionFunctions/groupingMap.js +1 -2
  65. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +1 -2
  66. package/src/Utilities/Extensions/ArrayExtensions.js +37 -37
  67. package/src/Utilities/Extensions/EnumExtensions.js +3 -3
  68. package/src/Utilities/Extensions/NumberExtensions.js +5 -5
  69. package/src/Utilities/Extensions/ObjectExtensions.js +3 -3
  70. package/src/Utilities/Extensions/StringExtensions.d.ts +1 -1
  71. package/src/Utilities/Extensions/StringExtensions.js +20 -20
  72. package/src/Utilities/Helpers/AdaptableHelper.js +8 -8
  73. package/src/Utilities/Helpers/FormatHelper.js +3 -4
  74. package/src/Utilities/Helpers/Helper.js +18 -18
  75. package/src/Utilities/Helpers/PreviewHelper.js +5 -5
  76. package/src/Utilities/Helpers/StyleHelper.d.ts +1 -1
  77. package/src/Utilities/Hooks/useAdaptableColumn.js +1 -2
  78. package/src/Utilities/Hooks/useAdaptableState.js +1 -2
  79. package/src/Utilities/ObjectFactory.js +40 -40
  80. package/src/Utilities/Services/Interface/IAlertService.d.ts +2 -2
  81. package/src/Utilities/Services/LicenseService/shouldLogThankYouMessage.js +1 -2
  82. package/src/Utilities/Services/ModuleService.js +37 -38
  83. package/src/Utilities/adaptableOverrideCheck.js +2 -3
  84. package/src/Utilities/createAgStatusPanelComponent.d.ts +1 -1
  85. package/src/Utilities/getObjectTagsViewItems.js +1 -1
  86. package/src/Utilities/license/hashing.js +1 -1
  87. package/src/Utilities/runIfNotResolvedIn.d.ts +1 -1
  88. package/src/Utilities/sortColumnStateForVisibleColumns.js +1 -2
  89. package/src/Utilities/updateSingleToMultiplePredicates.js +1 -2
  90. package/src/Utilities/waitForTimeout.js +1 -2
  91. package/src/View/AdaptableComputedCSSVarsContext.js +6 -1
  92. package/src/View/AdaptablePopover/index.d.ts +1 -1
  93. package/src/View/AdaptablePopover/index.js +5 -5
  94. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.js +8 -9
  95. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +9 -8
  96. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/Components/FormBox.d.ts +4 -2
  97. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/Components/FormBox.js +3 -3
  98. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +9 -9
  99. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +3 -3
  100. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsSidebarForm.js +5 -5
  101. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.js +6 -6
  102. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.js +2 -2
  103. package/src/View/AdaptableWizardView/Wizard.js +2 -2
  104. package/src/View/AdaptableWizardView/index.js +1 -4
  105. package/src/View/Alert/ActiveAlertsPanelItemLabel.js +3 -3
  106. package/src/View/Alert/AlertStatusSubPanel.js +1 -1
  107. package/src/View/Alert/AlertViewPanel.js +4 -4
  108. package/src/View/Alert/Utilities/getDefaultAlertDefinition.d.ts +3 -20
  109. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +17 -15
  110. package/src/View/Alert/Wizard/AlertButtonsEditor.js +29 -26
  111. package/src/View/Alert/Wizard/AlertMessageWizardSection.js +12 -16
  112. package/src/View/Alert/Wizard/AlertNotificationWizardSection.d.ts +3 -1
  113. package/src/View/Alert/Wizard/AlertNotificationWizardSection.js +7 -7
  114. package/src/View/Alert/Wizard/AlertRulesWizardSection.js +2 -2
  115. package/src/View/Alert/Wizard/AlertScopeWizardSection.js +2 -2
  116. package/src/View/Alert/Wizard/AlertTypeWizardSection.js +3 -3
  117. package/src/View/Alert/Wizard/AlertWizard.js +8 -8
  118. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +13 -10
  119. package/src/View/BulkUpdate/BulkUpdatePopup.js +11 -11
  120. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +6 -6
  121. package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
  122. package/src/View/CalculatedColumn/Wizard/CalculatedColumnDefinitionWizardSection.js +11 -11
  123. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.d.ts +1 -1
  124. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +4 -4
  125. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +6 -7
  126. package/src/View/CalculatedColumn/Wizard/CalculatedColumnTypeSection.d.ts +1 -1
  127. package/src/View/CalculatedColumn/Wizard/CalculatedColumnTypeSection.js +2 -2
  128. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.d.ts +0 -2
  129. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +9 -15
  130. package/src/View/CalculatedColumn/Wizard/calculatedColumnTypes.d.ts +2 -0
  131. package/src/View/CalculatedColumn/Wizard/calculatedColumnTypes.js +9 -0
  132. package/src/View/CellSummary/CellSummaryPopup.js +1 -1
  133. package/src/View/CellSummary/CellSummaryViewPanel.js +6 -6
  134. package/src/View/Charting/ChartingStatusBarPopover.js +5 -5
  135. package/src/View/Charting/ChartingViewPanel.js +9 -9
  136. package/src/View/Charting/ChartingWizard/AgChargingWizard/AgChargingWizard.js +4 -4
  137. package/src/View/Charting/ChartingWizard/ExternalChartingWizard/ExternalChartingWizard.js +3 -3
  138. package/src/View/Charting/useChartingElements.d.ts +1 -1
  139. package/src/View/Charting/useChartingElements.js +1 -1
  140. package/src/View/ColumnInfo/ColumnInfo.js +15 -20
  141. package/src/View/ColumnInfo/ColumnInfoPopup.js +2 -2
  142. package/src/View/Comments/CommentsEditor.js +16 -19
  143. package/src/View/Comments/CommentsPopup.js +7 -7
  144. package/src/View/Components/AdaptableDateInput/index.js +1 -1
  145. package/src/View/Components/AdaptableInput/index.js +3 -2
  146. package/src/View/Components/AdaptableObjectCollection/index.d.ts +2 -2
  147. package/src/View/Components/AdaptableObjectCollection/index.js +9 -5
  148. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +14 -14
  149. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.d.ts +2 -0
  150. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +20 -18
  151. package/src/View/Components/AdaptableObjectRow/index.d.ts +1 -0
  152. package/src/View/Components/AdaptableObjectRow/index.js +5 -6
  153. package/src/View/Components/Buttons/ButtonBase/index.d.ts +1 -2
  154. package/src/View/Components/Buttons/ButtonBase/index.js +5 -4
  155. package/src/View/Components/Buttons/ButtonClear.js +2 -1
  156. package/src/View/Components/Buttons/ButtonFunction.js +2 -1
  157. package/src/View/Components/Buttons/ButtonNew.d.ts +11 -1
  158. package/src/View/Components/Buttons/ButtonNew.js +2 -1
  159. package/src/View/Components/Buttons/EntityListActionButtons.d.ts +1 -1
  160. package/src/View/Components/Buttons/EntityListActionButtons.js +14 -43
  161. package/src/View/Components/Buttons/SuspendToggleButton/SuspendToggleButton.d.ts +1 -0
  162. package/src/View/Components/Buttons/SuspendToggleButton/SuspendToggleButton.js +3 -2
  163. package/src/View/Components/CellPopup/index.d.ts +1 -1
  164. package/src/View/Components/ColumnFilter/AdaptableColumnFilter.d.ts +4 -3
  165. package/src/View/Components/ColumnFilter/ColumnFilter.d.ts +4 -2
  166. package/src/View/Components/ColumnFilter/ColumnFilter.js +29 -26
  167. package/src/View/Components/ColumnFilter/ColumnFilterWindow.js +7 -7
  168. package/src/View/Components/ColumnFilter/FloatingFilter.js +7 -7
  169. package/src/View/Components/ColumnFilter/components/ColumnFilterInput.d.ts +1 -1
  170. package/src/View/Components/ColumnFilter/components/ColumnFilterInput.js +2 -2
  171. package/src/View/Components/ColumnFilter/components/ColumnFilterInputList.js +1 -1
  172. package/src/View/Components/ColumnFilter/components/ColumnFilterMenu.js +6 -6
  173. package/src/View/Components/ColumnFilter/components/FloatingFilterValues.js +2 -2
  174. package/src/View/Components/ColumnFilter/useAdaptableFilterWrapper.d.ts +1 -1
  175. package/src/View/Components/ColumnFilter/useAdaptableFilterWrapper.js +9 -1
  176. package/src/View/Components/ColumnSelector/index.js +1 -3
  177. package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicateEditor.js +11 -11
  178. package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicatesEditor.js +12 -16
  179. package/src/View/Components/EntityRulesEditor/index.d.ts +5 -2
  180. package/src/View/Components/EntityRulesEditor/index.js +12 -11
  181. package/src/View/Components/ExpressionWizard.js +4 -4
  182. package/src/View/Components/FilterForm/Waiting.d.ts +4 -2
  183. package/src/View/Components/FilterForm/Waiting.js +5 -4
  184. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -0
  185. package/src/View/Components/Forms/AdaptableFormControlTextClear.js +4 -8
  186. package/src/View/Components/ModuleValueSelector/index.js +2 -2
  187. package/src/View/Components/NewScopeComponent.js +26 -26
  188. package/src/View/Components/Panels/PanelFooter.js +5 -5
  189. package/src/View/Components/Panels/PanelToolPanel/index.d.ts +1 -1
  190. package/src/View/Components/Panels/PanelToolPanel/index.js +9 -11
  191. package/src/View/Components/Panels/PanelWithButton.d.ts +3 -5
  192. package/src/View/Components/Panels/PanelWithButton.js +8 -7
  193. package/src/View/Components/Panels/PanelWithImage.d.ts +2 -3
  194. package/src/View/Components/Panels/PanelWithImage.js +11 -13
  195. package/src/View/Components/Panels/PanelWithRow.d.ts +0 -1
  196. package/src/View/Components/Panels/PanelWithRow.js +3 -3
  197. package/src/View/Components/Panels/PanelWithTwoButtons.d.ts +1 -1
  198. package/src/View/Components/Panels/PanelWithTwoButtons.js +3 -3
  199. package/src/View/Components/Popups/AdaptableLoadingScreen.js +4 -7
  200. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +4 -3
  201. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +3 -2
  202. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +4 -4
  203. package/src/View/Components/Popups/AdaptablePopup/Navigation.js +63 -31
  204. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.d.ts +2 -0
  205. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +9 -10
  206. package/src/View/Components/Popups/AdaptablePopup/TopBar.js +5 -4
  207. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.d.ts +1 -1
  208. package/src/View/Components/Popups/AdaptablePopupAlert.js +8 -13
  209. package/src/View/Components/Popups/AdaptablePopupConfirmation.js +6 -6
  210. package/src/View/Components/Popups/AdaptablePopupPrompt.js +8 -8
  211. package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +11 -13
  212. package/src/View/Components/Popups/FormPopups/FormPopups.js +3 -3
  213. package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +2 -2
  214. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +3 -3
  215. package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +0 -1
  216. package/src/View/Components/PredicateEditor/PredicateEditor.js +9 -9
  217. package/src/View/Components/PreviewResultsPanel.d.ts +1 -0
  218. package/src/View/Components/PreviewResultsPanel.js +6 -13
  219. package/src/View/Components/RangesComponent.js +23 -23
  220. package/src/View/Components/ReorderDraggable/index.d.ts +2 -0
  221. package/src/View/Components/ReorderDraggable/index.js +9 -9
  222. package/src/View/Components/Selectors/BulkUpdateValueSelector.js +5 -8
  223. package/src/View/Components/Selectors/ColumnSelector.js +1 -1
  224. package/src/View/Components/Selectors/ColumnSelectorOld.js +1 -1
  225. package/src/View/Components/StyleComponent.d.ts +2 -26
  226. package/src/View/Components/StyleComponent.js +186 -190
  227. package/src/View/Components/TagValueSelector/index.d.ts +1 -1
  228. package/src/View/Components/TagValueSelector/index.js +3 -2
  229. package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +1 -1
  230. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +13 -12
  231. package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
  232. package/src/View/Components/ToolPanel/ToolPanelPopup.js +13 -10
  233. package/src/View/Components/ToolPanel/ToolPanelWrapper.js +2 -2
  234. package/src/View/Components/ValueSelector/index.d.ts +9 -33
  235. package/src/View/Components/ValueSelector/index.js +40 -64
  236. package/src/View/Components/WizardSummaryPage.js +1 -1
  237. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +2 -2
  238. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +3 -6
  239. package/src/View/CustomSort/Wizard/CustomSortWizard.js +5 -5
  240. package/src/View/Dashboard/Dashboard.js +5 -5
  241. package/src/View/Dashboard/DashboardPopup.js +27 -23
  242. package/src/View/Dashboard/DashboardViewPanel.js +5 -5
  243. package/src/View/Dashboard/PinnedDashboard.js +4 -4
  244. package/src/View/Dashboard/PinnedToolbarsSelector.js +3 -2
  245. package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +12 -12
  246. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +9 -9
  247. package/src/View/DataImport/DataImportPopup.js +3 -3
  248. package/src/View/DataImport/DataImportWizard/DataImportWizard.js +2 -2
  249. package/src/View/DataImport/DataImportWizard/sections/ColumnsSection.js +6 -6
  250. package/src/View/DataImport/DataImportWizard/sections/ImportSection.js +4 -4
  251. package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadFileSection.js +1 -1
  252. package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadSection.js +5 -5
  253. package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadTextSection.js +1 -1
  254. package/src/View/DataImport/DataImportWizard/sections/ValidationSection.js +4 -4
  255. package/src/View/DataSet/DataSetViewPanel.d.ts +2 -2
  256. package/src/View/DataSet/DataSetViewPanel.js +3 -3
  257. package/src/View/Export/ExportDestinationPicker.js +2 -1
  258. package/src/View/Export/ExportViewPanel.js +4 -4
  259. package/src/View/Export/ReportFormatSelector.js +3 -3
  260. package/src/View/Export/ReportListItem.js +2 -2
  261. package/src/View/Export/ReportNameSelector.js +3 -3
  262. package/src/View/Export/Wizard/NewReportWizard.js +4 -4
  263. package/src/View/Export/Wizard/ReportColumnTypeWizard.js +8 -8
  264. package/src/View/Export/Wizard/ReportColumnsWizardSection.js +11 -11
  265. package/src/View/Export/Wizard/ReportNameWizardSection.js +5 -5
  266. package/src/View/Export/Wizard/ReportRowTypeWizard.js +8 -8
  267. package/src/View/Export/Wizard/ReportRowsWizardSection.js +9 -9
  268. package/src/View/Export/Wizard/ReportSettingsWizard.js +3 -3
  269. package/src/View/Filter/FilterSummary.d.ts +1 -1
  270. package/src/View/Filter/FilterSummary.js +1 -1
  271. package/src/View/Filter/FilterViewPanel.d.ts +2 -2
  272. package/src/View/Filter/FilterViewPanel.js +6 -6
  273. package/src/View/FlashingCell/FlashingCellStyle.d.ts +2 -2
  274. package/src/View/FlashingCell/FlashingCellStyle.js +5 -5
  275. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +2 -2
  276. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +12 -12
  277. package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.d.ts +2 -2
  278. package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.js +5 -5
  279. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +5 -5
  280. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +1 -1
  281. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +63 -68
  282. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +2 -3
  283. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +0 -4
  284. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +29 -29
  285. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +4 -4
  286. package/src/View/FormatColumn/Wizard/FormatColumnTargetWizardSection.js +3 -3
  287. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +9 -10
  288. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +12 -12
  289. package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +4 -4
  290. package/src/View/GridFilter/GridFilterExpressionEditor.js +6 -6
  291. package/src/View/GridFilter/GridFilterPopup.js +31 -40
  292. package/src/View/GridFilter/GridFilterPopupUI/index.d.ts +68 -0
  293. package/src/View/GridFilter/GridFilterPopupUI/index.js +47 -0
  294. package/src/View/GridFilter/GridFilterViewPanel.js +16 -23
  295. package/src/View/GridFilter/NamedQuerySelector.js +9 -9
  296. package/src/View/GridFilter/useGridFilterExpressionEditor.d.ts +5 -1
  297. package/src/View/GridFilter/useGridFilterExpressionEditor.js +2 -1
  298. package/src/View/GridInfo/GridInfoPopup/AdaptableObjectsSummary.d.ts +3 -1
  299. package/src/View/GridInfo/GridInfoPopup/AdaptableObjectsSummary.js +5 -4
  300. package/src/View/GridInfo/GridInfoPopup/AdaptableOptionsComponent.js +5 -9
  301. package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +7 -7
  302. package/src/View/KeyHint.d.ts +5 -2
  303. package/src/View/KeyHint.js +4 -2
  304. package/src/View/Layout/EditCurrentLayoutButton.js +1 -1
  305. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +2 -2
  306. package/src/View/Layout/LayoutViewPanel.d.ts +3 -3
  307. package/src/View/Layout/LayoutViewPanel.js +4 -4
  308. package/src/View/Layout/TransposedPopup.js +5 -5
  309. package/src/View/Layout/Wizard/LayoutWizard.js +18 -18
  310. package/src/View/Layout/Wizard/sections/AggregationsSection.js +9 -11
  311. package/src/View/Layout/Wizard/sections/ColumnsSection.js +214 -139
  312. package/src/View/Layout/Wizard/sections/FilterSection.js +6 -7
  313. package/src/View/Layout/Wizard/sections/GridFilterSection.js +2 -2
  314. package/src/View/Layout/Wizard/sections/PivotAggregationsSection.js +20 -23
  315. package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +4 -6
  316. package/src/View/Layout/Wizard/sections/PivotRowGroupingSection.js +4 -6
  317. package/src/View/Layout/Wizard/sections/RowGroupingSection.js +8 -10
  318. package/src/View/Layout/Wizard/sections/RowSummarySection.js +16 -18
  319. package/src/View/Layout/Wizard/sections/SettingsSection.js +11 -11
  320. package/src/View/Layout/Wizard/sections/SortSection.js +6 -8
  321. package/src/View/License/LicenseWatermark.js +1 -1
  322. package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +2 -2
  323. package/src/View/NamedQuery/Wizard/NamedQuerySettingsWizardSection.js +3 -3
  324. package/src/View/NamedQuery/Wizard/NamedQueryWizard.js +4 -5
  325. package/src/View/Note/NoteEditor.js +5 -1
  326. package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +2 -3
  327. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +6 -6
  328. package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +4 -4
  329. package/src/View/QuickSearch/FloatingQuickSearch/FloatingQuickSearch.js +2 -2
  330. package/src/View/QuickSearch/QuickSearchInput.d.ts +1 -0
  331. package/src/View/QuickSearch/QuickSearchInput.js +5 -5
  332. package/src/View/QuickSearch/QuickSearchPopup.js +17 -16
  333. package/src/View/QuickSearch/QuickSearchViewPanel.js +1 -1
  334. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +5 -5
  335. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +6 -6
  336. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +3 -3
  337. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +5 -5
  338. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +6 -6
  339. package/src/View/Schedule/Wizard/ScheduleWizard.js +5 -5
  340. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +9 -12
  341. package/src/View/Shortcut/Wizard/ShortcutWizard.js +5 -5
  342. package/src/View/SmartEdit/SmartEditPopup.d.ts +1 -1
  343. package/src/View/SmartEdit/SmartEditPopup.js +8 -8
  344. package/src/View/SmartEdit/SmartEditViewPanel.js +4 -4
  345. package/src/View/SpecialColumnSettingsWizardStep.js +5 -5
  346. package/src/View/StateManagement/StateManagementPopup.js +12 -12
  347. package/src/View/StateManagement/StateManagementViewPanel.js +3 -3
  348. package/src/View/StateManagement/handleExportState.d.ts +1 -1
  349. package/src/View/StatusBar/AdaptableStatusBar.js +2 -2
  350. package/src/View/StatusBar/StatusBarPanel.d.ts +2 -2
  351. package/src/View/StatusBar/StatusBarPanel.js +5 -4
  352. package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +9 -9
  353. package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.js +59 -56
  354. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +8 -8
  355. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +2 -2
  356. package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.js +19 -19
  357. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarColumnComparisonPreview.js +3 -3
  358. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarRangesPreview.js +4 -5
  359. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/PercentBarStylePreview.js +5 -5
  360. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +3 -3
  361. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgeSettings.js +5 -7
  362. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js +15 -16
  363. package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +4 -4
  364. package/src/View/SystemStatus/SystemStatusEntityRow.js +4 -4
  365. package/src/View/SystemStatus/SystemStatusPopup.js +2 -2
  366. package/src/View/SystemStatus/SystemStatusStatusBarContent.js +2 -2
  367. package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +2 -2
  368. package/src/View/SystemStatus/SystemStatusViewPanel.js +3 -3
  369. package/src/View/TeamSharing/SharedEntityDependencies.js +5 -5
  370. package/src/View/TeamSharing/SharedEntityObjectView.js +8 -8
  371. package/src/View/Theme/ThemeEditor.js +6 -31
  372. package/src/View/Theme/ThemeEditorWindow.js +2 -2
  373. package/src/View/Theme/ThemeField.js +2 -3
  374. package/src/View/Theme/ThemePopup.d.ts +1 -1
  375. package/src/View/Theme/ThemePopup.js +4 -4
  376. package/src/View/Theme/ThemeStatusbar.js +2 -2
  377. package/src/View/Theme/VariantSelector.js +1 -1
  378. package/src/View/UIHelper.d.ts +1 -1
  379. package/src/View/UIHelper.js +29 -29
  380. package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +1 -1
  381. package/src/View/Wizard/ObjectTagsWizardSection.js +2 -4
  382. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +10 -4
  383. package/src/View/Wizard/OnePageAdaptableWizard.js +16 -18
  384. package/src/View/Wizard/OnePageWizards.d.ts +10 -4
  385. package/src/View/Wizard/OnePageWizards.js +52 -66
  386. package/src/View/Wizard/TypeRadio.js +4 -4
  387. package/src/View/Wizard/WizardLegend.js +3 -4
  388. package/src/View/Wizard/useKeyboardNavigation.d.ts +1 -1
  389. package/src/View/Wizard/useKeyboardNavigation.js +7 -4
  390. package/src/View/renderWithAdaptableContext.js +2 -5
  391. package/src/agGrid/AdaptableAgGrid.d.ts +11 -3
  392. package/src/agGrid/AdaptableAgGrid.js +153 -18
  393. package/src/agGrid/AdaptableFilterHandler.d.ts +5 -7
  394. package/src/agGrid/AdaptableFilterHandler.js +12 -28
  395. package/src/agGrid/AgGridColumnAdapter.d.ts +6 -1
  396. package/src/agGrid/AgGridColumnAdapter.js +28 -7
  397. package/src/agGrid/AgGridFilterAdapter.js +1 -1
  398. package/src/agGrid/AgGridFloatingFilterAdapter.js +1 -21
  399. package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +1 -5
  400. package/src/agGrid/editors/AdaptableNumberEditor/index.js +2 -2
  401. package/src/agGrid/editors/AdaptablePercentageEditor/InternalAdaptablePercentageEditor.js +1 -5
  402. package/src/agGrid/index.js +2 -4
  403. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +12 -12
  404. package/src/components/Card/index.d.ts +25 -0
  405. package/src/components/Card/index.js +49 -0
  406. package/src/components/CheckBox/index.d.ts +3 -4
  407. package/src/components/CheckBox/index.js +7 -9
  408. package/src/components/CodeBlock/index.d.ts +6 -2
  409. package/src/components/CodeBlock/index.js +3 -3
  410. package/src/components/ColorPicker/ColorPicker.d.ts +1 -1
  411. package/src/components/ColorPicker/ColorPicker.js +10 -9
  412. package/src/components/Dashboard/Dashboard.js +2 -3
  413. package/src/components/Dashboard/DashboardTab.js +1 -2
  414. package/src/components/Dashboard/DashboardToolbar.js +6 -8
  415. package/src/components/Datepicker/index.d.ts +2 -2
  416. package/src/components/Datepicker/index.js +10 -9
  417. package/src/components/Dialog/index.d.ts +8 -2
  418. package/src/components/Dialog/index.js +8 -8
  419. package/src/components/DragAndDropContext/DragAndDropContext.d.ts +1 -1
  420. package/src/components/DragAndDropContext/ModuleManager.d.ts +1 -0
  421. package/src/components/DragAndDropContext/ModuleManager.js +9 -6
  422. package/src/components/DragAndDropContext/TabList.d.ts +2 -1
  423. package/src/components/DragAndDropContext/TabList.js +48 -29
  424. package/src/components/DragAndDropContext/UnusedPanel.js +8 -17
  425. package/src/components/Dropdown/index.d.ts +2 -2
  426. package/src/components/Dropdown/index.js +5 -6
  427. package/src/components/DropdownButton/index.d.ts +2 -22
  428. package/src/components/DropdownButton/index.js +7 -4
  429. package/src/components/EmptyContent/index.d.ts +2 -2
  430. package/src/components/EmptyContent/index.js +4 -4
  431. package/src/components/ErrorBox/index.d.ts +2 -2
  432. package/src/components/ErrorBox/index.js +3 -3
  433. package/src/components/ExpressionEditor/BaseEditorInput.js +67 -51
  434. package/src/components/ExpressionEditor/DataTableEditor.js +6 -10
  435. package/src/components/ExpressionEditor/EditorButton.js +0 -2
  436. package/src/components/ExpressionEditor/EditorContext.d.ts +0 -1
  437. package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +5 -5
  438. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +12 -14
  439. package/src/components/ExpressionEditor/NamedQueryContext.d.ts +0 -1
  440. package/src/components/ExpressionEditor/NamedQueryEditor.js +6 -16
  441. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.d.ts +2 -10
  442. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.js +11 -11
  443. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.d.ts +1 -1
  444. package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.js +13 -13
  445. package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +11 -16
  446. package/src/components/ExpressionEditor/index.d.ts +1 -0
  447. package/src/components/ExpressionEditor/index.js +32 -37
  448. package/src/components/FieldWrap/index.d.ts +9 -2
  449. package/src/components/FieldWrap/index.js +3 -8
  450. package/src/components/FileDroppable/FileDroppableState.d.ts +0 -1
  451. package/src/components/FileDroppable/index.d.ts +3 -2
  452. package/src/components/FileDroppable/index.js +7 -7
  453. package/src/components/Flex.d.ts +15 -1
  454. package/src/components/Flex.js +42 -3
  455. package/src/components/FlexWithFooter.d.ts +3 -2
  456. package/src/components/FlexWithFooter.js +5 -5
  457. package/src/components/FormLayout/index.d.ts +5 -1
  458. package/src/components/FormLayout/index.js +3 -3
  459. package/src/components/HelpBlock/index.d.ts +2 -2
  460. package/src/components/HelpBlock/index.js +5 -4
  461. package/src/components/IconSelector/IconSelector.js +11 -11
  462. package/src/components/InfiniteTable/index.js +1 -2
  463. package/src/components/Input/index.d.ts +1 -2
  464. package/src/components/Input/index.js +6 -3
  465. package/src/components/Modal/Backdrop.js +1 -1
  466. package/src/components/Modal/index.d.ts +3 -2
  467. package/src/components/Modal/index.js +3 -3
  468. package/src/components/OverlayTrigger/index.js +3 -0
  469. package/src/components/Panel/index.d.ts +22 -6
  470. package/src/components/Panel/index.js +54 -15
  471. package/src/components/PopupWithFooter.js +3 -4
  472. package/src/components/ProgressIndicator/ProgressIndicator.js +5 -5
  473. package/src/components/Radio/index.d.ts +25 -3
  474. package/src/components/Radio/index.js +19 -21
  475. package/src/components/Select/Select.js +33 -21
  476. package/src/components/SelectList.js +1 -1
  477. package/src/components/SelectableList/index.d.ts +1 -1
  478. package/src/components/SimpleButton/index.d.ts +4 -6
  479. package/src/components/SimpleButton/index.js +55 -23
  480. package/src/components/SizedContainer/index.d.ts +3 -1
  481. package/src/components/SizedContainer/index.js +3 -3
  482. package/src/components/StylePreview.d.ts +3 -1
  483. package/src/components/StylePreview.js +4 -3
  484. package/src/components/Tabs/index.d.ts +3 -3
  485. package/src/components/Tabs/index.js +26 -9
  486. package/src/components/Tag/Tag.d.ts +14 -2
  487. package/src/components/Tag/Tag.js +13 -4
  488. package/src/components/Tag/index.d.ts +1 -1
  489. package/src/components/Tag/index.js +3 -1
  490. package/src/components/Textarea/index.d.ts +5 -1
  491. package/src/components/Textarea/index.js +5 -4
  492. package/src/components/Toggle/Toggle.js +48 -3
  493. package/src/components/Toggle/ToggleGroup.d.ts +7 -0
  494. package/src/components/Toggle/ToggleGroup.js +58 -3
  495. package/src/components/ToggleButton/index.d.ts +2 -2
  496. package/src/components/ToggleButton/index.js +25 -7
  497. package/src/components/Tree/TreeDropdown/index.js +13 -19
  498. package/src/components/Tree/TreeList/index.js +6 -11
  499. package/src/components/WarningBox/index.d.ts +6 -2
  500. package/src/components/WarningBox/index.js +3 -3
  501. package/src/components/WizardPanel/index.d.ts +6 -1
  502. package/src/components/WizardPanel/index.js +2 -2
  503. package/src/components/icons/DefaultIcon.d.ts +1 -0
  504. package/src/components/icons/index.d.ts +1 -1
  505. package/src/components/icons/index.js +2 -0
  506. package/src/components/icons/inspector.d.ts +3 -0
  507. package/src/components/icons/inspector.js +8 -0
  508. package/src/components/twUtils.d.ts +7 -0
  509. package/src/components/twUtils.js +16 -0
  510. package/src/components/utils/contains.js +1 -1
  511. package/src/components/utils/useDraggable.d.ts +0 -1
  512. package/src/components/utils/useDraggable.js +1 -1
  513. package/src/components/utils/usePropState.js +1 -1
  514. package/src/components/utils/useSelectionRange.js +1 -2
  515. package/src/devTools/index.d.ts +23 -23
  516. package/src/devTools/index.js +3 -3
  517. package/src/env.js +2 -2
  518. package/src/layout-manager/src/LMEmitter.d.ts +1 -0
  519. package/src/layout-manager/src/LMEmitter.js +1 -0
  520. package/src/layout-manager/src/destructurePivotColumnId.js +1 -2
  521. package/src/layout-manager/src/index.js +2 -2
  522. package/src/layout-manager/src/isLayoutEqual.js +4 -4
  523. package/src/layout-manager/src/isPivotAggTotalColumn.js +1 -2
  524. package/src/layout-manager/src/isPivotColumnTotal.js +1 -2
  525. package/src/layout-manager/src/isPivotGrandTotal.js +1 -2
  526. package/src/layout-manager/src/normalizeLayoutModel.js +4 -4
  527. package/src/layout-manager/src/simplifyLayoutModel.js +3 -4
  528. package/src/layout-manager/src/sortColumnIdsByOrder.js +2 -3
  529. package/src/migration/VersionUpgrade20.js +8 -7
  530. package/src/parser/src/evaluator.js +1 -2
  531. package/src/parser/src/index.js +5 -5
  532. package/src/parser/src/predicate/mapExpressionToQlPredicate.js +2 -2
  533. package/src/parser/src/predicate/mapQlPredicateToExpression.js +2 -3
  534. package/src/parser/src/tokenizer.js +1 -2
  535. package/src/parser/src/utils.js +3 -4
  536. package/src/twMerge.d.ts +1 -0
  537. package/src/twMerge.js +14 -0
  538. package/themes/dark.css +35 -9
  539. package/themes/light.css +0 -2
  540. package/tsconfig.cjs.tsbuildinfo +1 -1
  541. package/base.css +0 -5602
  542. package/base.css.map +0 -1
  543. package/src/Strategy/Utilities/FormatColumn/getFormatColumnStyleViewItems.d.ts +0 -3
  544. package/src/Strategy/Utilities/FormatColumn/getFormatColumnStyleViewItems.js +0 -11
  545. package/src/View/Alert/AlertsPanel.d.ts +0 -14
  546. package/src/View/Alert/AlertsPanel.js +0 -43
  547. package/src/View/Alert/Wizard/AlertSelectQueryWizard.d.ts +0 -19
  548. package/src/View/Alert/Wizard/AlertSelectQueryWizard.js +0 -59
  549. package/src/View/Components/FilterForm/ListBoxMenu.d.ts +0 -14
  550. package/src/View/Components/FilterForm/ListBoxMenu.js +0 -33
  551. package/src/View/Components/ListBox/DualListBoxEditor.d.ts +0 -22
  552. package/src/View/Components/ListBox/DualListBoxEditor.js +0 -520
  553. package/src/View/Components/ListBox/ListBoxFilterSortComponent.d.ts +0 -13
  554. package/src/View/Components/ListBox/ListBoxFilterSortComponent.js +0 -31
  555. package/src/View/CustomSort/Wizard/CustomSortSummaryWizard.d.ts +0 -15
  556. package/src/View/CustomSort/Wizard/CustomSortSummaryWizard.js +0 -36
  557. package/src/View/Layout/Wizard/Components/ColumnLabels.d.ts +0 -9
  558. package/src/View/Layout/Wizard/Components/ColumnLabels.js +0 -57
  559. package/src/View/Wizard/AdaptableWizard.d.ts +0 -56
  560. package/src/View/Wizard/AdaptableWizard.js +0 -174
  561. package/src/components/ContainerProps.d.ts +0 -30
  562. package/src/components/ContainerProps.js +0 -2
  563. package/src/components/EllipsisContainer/index.d.ts +0 -13
  564. package/src/components/EllipsisContainer/index.js +0 -105
  565. package/src/components/List/GridList/index.d.ts +0 -10
  566. package/src/components/List/GridList/index.js +0 -26
  567. package/src/components/List/ListGroup/index.d.ts +0 -6
  568. package/src/components/List/ListGroup/index.js +0 -12
  569. package/src/components/List/ListGroupItem/index.d.ts +0 -11
  570. package/src/components/List/ListGroupItem/index.js +0 -19
  571. package/src/components/utils/useTheme.d.ts +0 -32
  572. package/src/components/utils/useTheme.js +0 -5
  573. package/src/theme.d.ts +0 -32
  574. package/src/theme.js +0 -51
  575. package/themes/dark.css.map +0 -1
  576. package/themes/light.css.map +0 -1
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PivotAggregationsSection = exports.PivotAggregationsSectionSummary = exports.isPivotAggregationsSectionValid = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
- const rebass_1 = require("rebass");
7
6
  const CheckBox_1 = require("../../../../components/CheckBox");
8
7
  const DropdownButton_1 = tslib_1.__importDefault(require("../../../../components/DropdownButton"));
9
8
  const FormLayout_1 = tslib_1.__importStar(require("../../../../components/FormLayout"));
@@ -17,6 +16,7 @@ const Utilities_1 = require("./Utilities");
17
16
  const ArrayExtensions_1 = tslib_1.__importDefault(require("../../../../Utilities/Extensions/ArrayExtensions"));
18
17
  const StringExtensions_1 = tslib_1.__importDefault(require("../../../../Utilities/Extensions/StringExtensions"));
19
18
  const Select_1 = require("../../../../components/Select");
19
+ const Flex_1 = require("../../../../components/Flex");
20
20
  const PivotColumnRow = (props) => {
21
21
  const adaptable = (0, AdaptableContext_1.useAdaptable)();
22
22
  const aggValue = (props.layout.PivotAggregationColumns || []).find((x) => x.ColumnId === props.column.columnId)?.AggFunc;
@@ -173,21 +173,20 @@ const PivotColumnRow = (props) => {
173
173
  label: option,
174
174
  value: option === 'Off' ? false : option.toLowerCase(),
175
175
  }));
176
- return (React.createElement(rebass_1.Box, { "data-name": props.column.columnId, className: "ab-Layout-Wizard__ColumnRow" },
177
- React.createElement(rebass_1.Flex, { alignItems: "flex-start" },
178
- React.createElement(rebass_1.Flex, { flex: "0 0 auto", alignItems: "center" },
179
- React.createElement(rebass_1.Flex, { minWidth: 80 }, props.column.friendlyName),
180
- aggValue && (React.createElement(DropdownButton_1.default, { columns: ['label'], items: aggOptions, ml: 2 }, currentAggFnName)),
181
- currentAggFnName === AggregationColumns_1.WEIGHTED_AVERAGE_AGG_FN_NAME && (React.createElement(rebass_1.Flex, { backgroundColor: "primary", ml: 3, alignItems: "center" },
182
- React.createElement(rebass_1.Text, null, "Weight"),
176
+ return (React.createElement(Flex_1.Box, { "data-name": props.column.columnId, className: "ab-Layout-Wizard__ColumnRow" },
177
+ React.createElement(Flex_1.Flex, { alignItems: "flex-start" },
178
+ React.createElement(Flex_1.Flex, { className: "twa:flex-[0_0_auto]", alignItems: "center" },
179
+ React.createElement(Flex_1.Flex, { className: "twa:min-w-[80px]" }, props.column.friendlyName),
180
+ aggValue && (React.createElement(DropdownButton_1.default, { columns: ['label'], items: aggOptions, className: "twa:ml-2" }, currentAggFnName)),
181
+ currentAggFnName === AggregationColumns_1.WEIGHTED_AVERAGE_AGG_FN_NAME && (React.createElement(Flex_1.Flex, { className: "twa:bg-primary twa:ml-3", alignItems: "center" },
182
+ React.createElement(Flex_1.Box, null, "Weight"),
183
183
  ' ',
184
- React.createElement(DropdownButton_1.default, { columns: ['label'], items: numericColumnsOptions, ml: 2 }, weightName))),
185
- aggValue && (React.createElement(rebass_1.Flex, { backgroundColor: "primary", ml: 3, alignItems: "center" },
186
- React.createElement(rebass_1.Text, null, "Total"),
184
+ React.createElement(DropdownButton_1.default, { columns: ['label'], items: numericColumnsOptions, className: "twa:ml-2" }, weightName))),
185
+ aggValue && (React.createElement(Flex_1.Flex, { className: "twa:bg-primary twa:ml-3", alignItems: "center" },
186
+ React.createElement(Flex_1.Box, null, "Total"),
187
187
  ' ',
188
- React.createElement(DropdownButton_1.default, { columns: ['label'], items: totalOptions, ml: 2 }, currentTotal)))),
189
- hasPivotSpecificTotals && (React.createElement(rebass_1.Flex, { ml: 2, pl: 2, flexWrap: "wrap", flex: "1 1 auto", alignItems: "center", style: {
190
- minWidth: '200px',
188
+ React.createElement(DropdownButton_1.default, { columns: ['label'], items: totalOptions, className: "twa:ml-2" }, currentTotal)))),
189
+ hasPivotSpecificTotals && (React.createElement(Flex_1.Flex, { className: "twa:ml-2 twa:pl-2 twa:flex-[1_1_auto] twa:min-w-[200px]", flexWrap: "wrap", alignItems: "center", style: {
191
190
  borderLeft: '1px solid var(--ab-color-text-on-primary)',
192
191
  rowGap: '8px',
193
192
  columnGap: '12px',
@@ -204,8 +203,8 @@ const PivotColumnRow = (props) => {
204
203
  : pivotTotalSetting.ShowTotal === 'after'
205
204
  ? 'After'
206
205
  : 'Off';
207
- return (React.createElement(rebass_1.Flex, { key: pivotColId, alignItems: "center" },
208
- React.createElement(rebass_1.Text, { mr: 1 },
206
+ return (React.createElement(Flex_1.Flex, { key: pivotColId, alignItems: "center" },
207
+ React.createElement(Flex_1.Box, { className: "twa:mr-1" },
209
208
  adaptable.api.columnApi.getFriendlyNameForColumnId(pivotColId),
210
209
  ":"),
211
210
  React.createElement(DropdownButton_1.default, { columns: ['label'], items: pivotTotalOptions.map((opt) => ({
@@ -238,7 +237,7 @@ const PivotAggregationsSectionSummary = () => {
238
237
  else {
239
238
  content = React.createElement(Tag_1.Tag, null, "No Pivot Column Aggregations");
240
239
  }
241
- return React.createElement(rebass_1.Box, null, content);
240
+ return React.createElement(Flex_1.Box, null, content);
242
241
  };
243
242
  exports.PivotAggregationsSectionSummary = PivotAggregationsSectionSummary;
244
243
  const PivotAggregationsSection = (props) => {
@@ -323,7 +322,7 @@ const PivotAggregationsSection = (props) => {
323
322
  return (React.createElement(Tabs_1.Tabs, { style: { height: '100%' } },
324
323
  React.createElement(Tabs_1.Tabs.Tab, null, "Column Aggregations"),
325
324
  React.createElement(Tabs_1.Tabs.Content, null,
326
- React.createElement(rebass_1.Flex, null,
325
+ React.createElement(Flex_1.Flex, null,
327
326
  React.createElement(FormLayout_1.default, null,
328
327
  React.createElement(FormLayout_1.FormRow, { label: 'Omit Aggregation from Header' },
329
328
  React.createElement(CheckBox_1.CheckBox, { checked: layout.SuppressAggFuncInHeader, onChange: handleSuppressAggFuncInHeader })),
@@ -340,7 +339,7 @@ const PivotAggregationsSection = (props) => {
340
339
  });
341
340
  }, isClearable: true })),
342
341
  React.createElement(FormLayout_1.FormRow, { label: 'Pivot Grand Total' },
343
- React.createElement(Select_1.Select, { style: { width: 160 }, options: ['before', 'after'].map((position) => {
342
+ React.createElement(Select_1.Select, { className: "twa:w-[160px]", options: ['before', 'after'].map((position) => {
344
343
  return {
345
344
  label: StringExtensions_1.default.CapitaliseFirstLetter(position),
346
345
  value: position,
@@ -361,9 +360,7 @@ const PivotAggregationsSection = (props) => {
361
360
  ...layout,
362
361
  PivotColumnTotal: value,
363
362
  });
364
- }, isClearable: true })) : (React.createElement(rebass_1.Text, { marginLeft: 1, style: { fontStyle: 'italic' } }, isPivotColumnTotalEnabled))))),
365
- React.createElement(ValueSelector_1.ValueSelector, { showFilterInput: true, showSelectedOnlyPosition: "top", filter: Utilities_1.columnFilter, toIdentifier: (option) => `${option.columnId}`, toLabel: (option) => option.friendlyName ?? option.columnId, toListLabel: (column) => (React.createElement(PivotColumnRow, { onChangeAggFunction: handleAggregationChange, layout: layout, column: column, aggregationColumnsMap: aggregationColumnsMap, numberColumns: numberColumns })), options: sortedAggregableColumns, value: (layout.PivotAggregationColumns || []).map((col) => col.ColumnId), allowReorder: true, xSelectedLabel: () => {
366
- return `Active aggregations:`;
367
- }, onChange: handleColumnsSelectionChange }))));
363
+ }, isClearable: true })) : (React.createElement(Flex_1.Box, { className: "twa:ml-1 twa:italic" }, isPivotColumnTotalEnabled))))),
364
+ React.createElement(ValueSelector_1.ValueSelector, { showFilterInput: true, filter: Utilities_1.columnFilter, toIdentifier: (option) => `${option.columnId}`, toLabel: (option) => option.friendlyName ?? option.columnId, toListLabel: (column) => (React.createElement(PivotColumnRow, { onChangeAggFunction: handleAggregationChange, layout: layout, column: column, aggregationColumnsMap: aggregationColumnsMap, numberColumns: numberColumns })), options: sortedAggregableColumns, value: (layout.PivotAggregationColumns || []).map((col) => col.ColumnId), allowReorder: true, onChange: handleColumnsSelectionChange }))));
368
365
  };
369
366
  exports.PivotAggregationsSection = PivotAggregationsSection;
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PivotColumnsSection = exports.PivotColumnsSectionSummary = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
- const rebass_1 = require("rebass");
7
6
  const Tabs_1 = require("../../../../components/Tabs");
8
7
  const Tag_1 = require("../../../../components/Tag");
9
8
  const AdaptableContext_1 = require("../../../AdaptableContext");
@@ -11,10 +10,11 @@ const ValueSelector_1 = require("../../../Components/ValueSelector");
11
10
  const OnePageAdaptableWizard_1 = require("../../../Wizard/OnePageAdaptableWizard");
12
11
  const Utilities_1 = require("./Utilities");
13
12
  const ArrayExtensions_1 = tslib_1.__importDefault(require("../../../../Utilities/Extensions/ArrayExtensions"));
13
+ const Flex_1 = require("../../../../components/Flex");
14
14
  const PivotColumnsSectionSummary = () => {
15
15
  const adaptable = (0, AdaptableContext_1.useAdaptable)();
16
16
  const { data: layout } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
17
- return (React.createElement(rebass_1.Box, { p: 2, style: { borderRadius: 'var(--ab__border-radius)' }, backgroundColor: "var(--ab-color-defaultbackground)" }, layout.PivotColumns?.length ? (layout.PivotColumns.map((columnId) => (React.createElement(Tag_1.Tag, { mr: 1, key: columnId }, adaptable.api.columnApi.getFriendlyNameForColumnId(columnId))))) : (React.createElement(Tag_1.Tag, null, "No Pivot Columns Defined"))));
17
+ return (React.createElement(Flex_1.Box, { className: "twa:p-2 twa:rounded-standard twa:bg-defaultbackground" }, layout.PivotColumns?.length ? (layout.PivotColumns.map((columnId) => (React.createElement(Tag_1.Tag, { className: "twa:mr-1", key: columnId }, adaptable.api.columnApi.getFriendlyNameForColumnId(columnId))))) : (React.createElement(Tag_1.Tag, null, "No Pivot Columns Defined"))));
18
18
  };
19
19
  exports.PivotColumnsSectionSummary = PivotColumnsSectionSummary;
20
20
  const PivotColumnsSection = (props) => {
@@ -30,11 +30,9 @@ const PivotColumnsSection = (props) => {
30
30
  PivotColumns: columnIds,
31
31
  });
32
32
  };
33
- return (React.createElement(Tabs_1.Tabs, { style: { height: '100%' } },
33
+ return (React.createElement(Tabs_1.Tabs, { className: "twa:h-full" },
34
34
  React.createElement(Tabs_1.Tabs.Tab, null, "Pivot Columns"),
35
35
  React.createElement(Tabs_1.Tabs.Content, null,
36
- React.createElement(ValueSelector_1.ValueSelector, { showFilterInput: true, showSelectedOnlyPosition: "top", filter: Utilities_1.columnFilter, toIdentifier: (option) => `${option.columnId}`, toLabel: (option) => option.friendlyName ?? option.columnId, options: sortedPivotColumns, value: layout.PivotColumns ?? [], allowReorder: true, xSelectedLabel: () => {
37
- return `Selected Columns:`;
38
- }, onChange: handleColumnsChange }))));
36
+ React.createElement(ValueSelector_1.ValueSelector, { showFilterInput: true, filter: Utilities_1.columnFilter, toIdentifier: (option) => `${option.columnId}`, toLabel: (option) => option.friendlyName ?? option.columnId, options: sortedPivotColumns, value: layout.PivotColumns ?? [], allowReorder: true, onChange: handleColumnsChange }))));
39
37
  };
40
38
  exports.PivotColumnsSection = PivotColumnsSection;
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.PivotRowGroupingSection = exports.PivotRowGroupingSectionSummary = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
- const rebass_1 = require("rebass");
7
6
  const Utilities_1 = require("./Utilities");
8
7
  const Tabs_1 = require("../../../../components/Tabs");
9
8
  const Tag_1 = require("../../../../components/Tag");
@@ -13,11 +12,12 @@ const OnePageAdaptableWizard_1 = require("../../../Wizard/OnePageAdaptableWizard
13
12
  const ArrayExtensions_1 = tslib_1.__importDefault(require("../../../../Utilities/Extensions/ArrayExtensions"));
14
13
  const LayoutHelpers_1 = require("../../../../Api/Implementation/LayoutHelpers");
15
14
  const RowGroupingSection_1 = require("./RowGroupingSection");
15
+ const Flex_1 = require("../../../../components/Flex");
16
16
  const PivotRowGroupingSectionSummary = () => {
17
17
  const adaptable = (0, AdaptableContext_1.useAdaptable)();
18
18
  const { data: layout } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
19
- return (React.createElement(rebass_1.Box, null, layout.PivotGroupedColumns?.length ? (layout.PivotGroupedColumns.map((columnId) => {
20
- return (React.createElement(rebass_1.Box, { mb: 2 },
19
+ return (React.createElement(Flex_1.Box, null, layout.PivotGroupedColumns?.length ? (layout.PivotGroupedColumns.map((columnId) => {
20
+ return (React.createElement(Flex_1.Box, { className: "twa:mb-2" },
21
21
  React.createElement(Tag_1.Tag, { key: columnId }, adaptable.api.columnApi.getFriendlyNameForColumnId(columnId))));
22
22
  })) : (React.createElement(Tag_1.Tag, null, "No Pivot Row Grouping"))));
23
23
  };
@@ -43,9 +43,7 @@ const PivotRowGroupingSection = (props) => {
43
43
  React.createElement(Tabs_1.Tabs.Tab, null, "Row Grouped Columns"),
44
44
  React.createElement(Tabs_1.Tabs.Tab, null, rowGroupsText),
45
45
  React.createElement(Tabs_1.Tabs.Content, null,
46
- React.createElement(ValueSelector_1.ValueSelector, { showFilterInput: true, showSelectedOnlyPosition: "top", filter: Utilities_1.columnFilter, toIdentifier: (option) => `${option.columnId}`, toLabel: (option) => option.friendlyName ?? option.columnId, options: sortedGroupableColumns, value: layout.PivotGroupedColumns ?? [], allowReorder: true, xSelectedLabel: () => {
47
- return `Selected Columns:`;
48
- }, onChange: handleColumnsChange })),
46
+ React.createElement(ValueSelector_1.ValueSelector, { showFilterInput: true, filter: Utilities_1.columnFilter, toIdentifier: (option) => `${option.columnId}`, toLabel: (option) => option.friendlyName ?? option.columnId, options: sortedGroupableColumns, value: layout.PivotGroupedColumns ?? [], allowReorder: true, onChange: handleColumnsChange })),
49
47
  React.createElement(Tabs_1.Tabs.Content, null,
50
48
  React.createElement(RowGroupingSection_1.RowGroupBehaviorSection, { layout: layout, onChange: onChange }))));
51
49
  };
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.RowGroupingSection = exports.RowGroupBehaviorSection = exports.RowGroupingSectionSummary = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
- const rebass_1 = require("rebass");
7
6
  const FormLayout_1 = tslib_1.__importDefault(require("../../../../components/FormLayout"));
8
7
  const Utilities_1 = require("./Utilities");
9
8
  const Radio_1 = require("../../../../components/Radio");
@@ -15,15 +14,16 @@ const OnePageAdaptableWizard_1 = require("../../../Wizard/OnePageAdaptableWizard
15
14
  const ArrayExtensions_1 = tslib_1.__importDefault(require("../../../../Utilities/Extensions/ArrayExtensions"));
16
15
  const LayoutHelpers_1 = require("../../../../Api/Implementation/LayoutHelpers");
17
16
  const TypeRadio_1 = require("../../../Wizard/TypeRadio");
17
+ const Flex_1 = require("../../../../components/Flex");
18
18
  const RowGroupingSectionSummary = () => {
19
19
  const adaptable = (0, AdaptableContext_1.useAdaptable)();
20
20
  const { data: layout } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
21
21
  if (adaptable.api.gridApi.isTreeDataGrid()) {
22
- return (React.createElement(rebass_1.Box, { display: 'flex', flexDirection: 'row' },
22
+ return (React.createElement(Flex_1.Flex, { flexDirection: "row" },
23
23
  React.createElement(Tag_1.Tag, null, "Row Grouping is not available in Tree Grids")));
24
24
  }
25
- return (React.createElement(rebass_1.Box, { display: 'flex', flexDirection: 'row' }, layout.RowGroupedColumns?.length ? (layout.RowGroupedColumns.map((columnId) => {
26
- return (React.createElement(rebass_1.Box, { key: columnId, mb: 2, mr: 2 },
25
+ return (React.createElement(Flex_1.Flex, { flexDirection: "row" }, layout.RowGroupedColumns?.length ? (layout.RowGroupedColumns.map((columnId) => {
26
+ return (React.createElement(Flex_1.Box, { key: columnId, className: "twa:mb-2 twa:mr-2" },
27
27
  React.createElement(Tag_1.Tag, null, adaptable.api.columnApi.getFriendlyNameForColumnId(columnId))));
28
28
  })) : (React.createElement(Tag_1.Tag, null, "No Row Grouping"))));
29
29
  };
@@ -53,7 +53,7 @@ exports.RowGroupBehaviorSection = RowGroupBehaviorSection;
53
53
  const RowGroupingSection = (props) => {
54
54
  const adaptable = (0, AdaptableContext_1.useAdaptable)();
55
55
  if (adaptable.api.gridApi.isTreeDataGrid()) {
56
- return (React.createElement(rebass_1.Box, { display: 'flex', flexDirection: 'row' },
56
+ return (React.createElement(Flex_1.Flex, { flexDirection: "row" },
57
57
  React.createElement(Tag_1.Tag, null, "Row Grouping is not available in Tree Grids")));
58
58
  }
59
59
  const { data: layout } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
@@ -77,7 +77,7 @@ const RowGroupingSection = (props) => {
77
77
  }
78
78
  onChange(newLayout);
79
79
  };
80
- return (React.createElement(rebass_1.Box, { style: { height: '100%' } },
80
+ return (React.createElement(Flex_1.Box, { className: "twa:h-full" },
81
81
  React.createElement(Tabs_1.Tabs, null,
82
82
  React.createElement(Tabs_1.Tabs.Tab, null, "Group Display Type"),
83
83
  React.createElement(Tabs_1.Tabs.Content, null,
@@ -97,13 +97,11 @@ const RowGroupingSection = (props) => {
97
97
  } },
98
98
  React.createElement(TypeRadio_1.TypeRadio, { value: "single", text: "Single Column", description: "All Row Grouped Columns display in one hierarchical Column" }),
99
99
  React.createElement(TypeRadio_1.TypeRadio, { value: "multi", text: "Multiple Columns", description: "Each Row Grouped Columns displays in its own, separate, Column" }))))),
100
- React.createElement(Tabs_1.Tabs, { mt: 2 },
100
+ React.createElement(Tabs_1.Tabs, { className: "twa:mt-2" },
101
101
  React.createElement(Tabs_1.Tabs.Tab, null, "Row Grouped Columns"),
102
102
  React.createElement(Tabs_1.Tabs.Tab, null, rowGroupsText),
103
103
  React.createElement(Tabs_1.Tabs.Content, null,
104
- React.createElement(ValueSelector_1.ValueSelector, { showFilterInput: true, showSelectedOnlyPosition: "top", filter: Utilities_1.columnFilter, toIdentifier: (option) => `${option.columnId}`, toLabel: (option) => option.friendlyName ?? option.columnId, options: sortedGroupableColumns, value: layout.RowGroupedColumns ?? [], allowReorder: true, xSelectedLabel: () => {
105
- return `Selected Columns:`;
106
- }, onChange: handleColumnsChange })),
104
+ React.createElement(ValueSelector_1.ValueSelector, { showFilterInput: true, filter: Utilities_1.columnFilter, toIdentifier: (option) => `${option.columnId}`, toLabel: (option) => option.friendlyName ?? option.columnId, options: sortedGroupableColumns, value: layout.RowGroupedColumns ?? [], allowReorder: true, onChange: handleColumnsChange })),
107
105
  React.createElement(Tabs_1.Tabs.Content, null,
108
106
  React.createElement(exports.RowGroupBehaviorSection, { layout: layout, onChange: onChange })))));
109
107
  };
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.RowSummarySection = exports.RowSummarySectionSummary = exports.areSummaryRowsValid = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
- const rebass_1 = require("rebass");
7
6
  const CheckBox_1 = require("../../../../components/CheckBox");
8
7
  const FormLayout_1 = tslib_1.__importStar(require("../../../../components/FormLayout"));
9
8
  const Panel_1 = tslib_1.__importDefault(require("../../../../components/Panel"));
@@ -21,6 +20,7 @@ const ValueSelector_1 = require("../../../Components/ValueSelector");
21
20
  const OnePageAdaptableWizard_1 = require("../../../Wizard/OnePageAdaptableWizard");
22
21
  const Utilities_1 = require("./Utilities");
23
22
  const ArrayExtensions_1 = tslib_1.__importDefault(require("../../../../Utilities/Extensions/ArrayExtensions"));
23
+ const Flex_1 = require("../../../../components/Flex");
24
24
  const areSummaryRowsValid = (layout) => {
25
25
  if (!layout.RowSummaries)
26
26
  return true;
@@ -79,16 +79,16 @@ const getAvailableExpressionsForColumnType = (columnType, availableScalarExpress
79
79
  const RowSummarySectionSummary = () => {
80
80
  const adaptable = (0, AdaptableContext_1.useAdaptable)();
81
81
  const { data: layout } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
82
- return (React.createElement(rebass_1.Box, { display: 'flex', flexDirection: 'column' }, layout.RowSummaries?.length ? (layout.RowSummaries.map((rowSummary, index) => {
82
+ return (React.createElement(Flex_1.Box, { className: "twa:flex twa:flex-col" }, layout.RowSummaries?.length ? (layout.RowSummaries.map((rowSummary, index) => {
83
83
  return (React.createElement(React.Fragment, null,
84
- React.createElement(rebass_1.Box, { mr: 1, mb: 1, key: index },
84
+ React.createElement(Flex_1.Box, { className: "twa:mr-1 twa:mb-1", key: index },
85
85
  rowSummary.Position,
86
86
  ":",
87
87
  ' ',
88
88
  Object.keys(rowSummary.ColumnsMap).map((colId) => {
89
89
  if (colId === 'Source' || colId === 'Uuid')
90
90
  return null;
91
- return (React.createElement(Tag_1.Tag, { mr: 1, key: colId },
91
+ return (React.createElement(Tag_1.Tag, { className: "twa:mr-1", key: colId },
92
92
  rowSummary.ColumnsMap[colId],
93
93
  "(",
94
94
  adaptable.api.columnApi.getFriendlyNameForColumnId(colId),
@@ -113,9 +113,9 @@ const RowSummaryEditor = React.memo(({ rowSummary, onChange, availableScalarExpr
113
113
  sortUnorderedItems: false,
114
114
  }).map((colId) => adaptable.api.columnApi.getColumnWithColumnId(colId));
115
115
  }, [rowSummary.ColumnsMap]);
116
- return (React.createElement(Panel_1.default, { header: React.createElement(rebass_1.Flex, { style: { width: '100%' } },
117
- React.createElement(rebass_1.Flex, { flex: 1, alignItems: "center" }, "Row Summary"),
118
- React.createElement(rebass_1.Box, { mr: 2 },
116
+ return (React.createElement(Panel_1.default, { header: React.createElement(Flex_1.Flex, { className: "twa:w-full" },
117
+ React.createElement(Flex_1.Flex, { className: "twa:flex-1", alignItems: "center" }, "Row Summary"),
118
+ React.createElement(Flex_1.Box, { className: "twa:mr-2" },
119
119
  React.createElement(SuspendToggleButton_1.SuspendToggleButton, { onSuspend: () => {
120
120
  onChange({
121
121
  ...rowSummary,
@@ -129,7 +129,7 @@ const RowSummaryEditor = React.memo(({ rowSummary, onChange, availableScalarExpr
129
129
  }, suspendableObject: rowSummary })),
130
130
  React.createElement(SimpleButton_1.default, { icon: "delete", onClick: () => {
131
131
  onDelete();
132
- } })), p: 2 },
132
+ } })), className: "twa:p-2" },
133
133
  React.createElement(FormLayout_1.default, null,
134
134
  React.createElement(FormLayout_1.FormRow, { label: "Position" },
135
135
  React.createElement(Select_1.Select, { options: [
@@ -154,12 +154,10 @@ const RowSummaryEditor = React.memo(({ rowSummary, onChange, availableScalarExpr
154
154
  IncludeOnlyFilteredRows,
155
155
  });
156
156
  } }, "Include Only Filtered Rows"))),
157
- React.createElement(rebass_1.Flex, { flexDirection: 'column', mt: 2, mb: 1 },
158
- React.createElement(rebass_1.Flex, { alignItems: "center", flex: 1, mb: 2 }, "Column Aggregations"),
159
- React.createElement(Panel_1.default, { bodyProps: { maxHeight: '100%' }, style: { height: 360 } },
160
- React.createElement(ValueSelector_1.ValueSelector, { style: { maxHeight: '100%' }, showFilterInput: true, filter: Utilities_1.columnFilter, toIdentifier: (column) => column.columnId, toLabel: (option) => option.friendlyName ?? option.columnId, options: columns, xSelectedLabel: () => {
161
- return 'Active Aggregations:';
162
- }, toListLabel: (column) => {
157
+ React.createElement(Flex_1.Flex, { flexDirection: "column", className: "twa:mt-2 twa:mb-1" },
158
+ React.createElement(Flex_1.Flex, { alignItems: "center", className: "twa:flex-1 twa:mb-2" }, "Column Aggregations"),
159
+ React.createElement(Panel_1.default, { bodyProps: { className: 'twa:max-h-full ' }, className: "twa:h-[360px]" },
160
+ React.createElement(ValueSelector_1.ValueSelector, { style: { maxHeight: '100%' }, showFilterInput: true, filter: Utilities_1.columnFilter, toIdentifier: (column) => column.columnId, toLabel: (option) => option.friendlyName ?? option.columnId, options: columns, toListLabel: (column) => {
163
161
  const label = column.friendlyName ?? column.columnId;
164
162
  if (!(column.columnId in (rowSummary.ColumnsMap ?? {}))) {
165
163
  return label;
@@ -179,8 +177,8 @@ const RowSummaryEditor = React.memo(({ rowSummary, onChange, availableScalarExpr
179
177
  });
180
178
  }
181
179
  const expression = rowSummary.ColumnsMap[column.columnId];
182
- return (React.createElement(rebass_1.Flex, null,
183
- React.createElement(rebass_1.Flex, { mr: 2, alignItems: 'center' }, label),
180
+ return (React.createElement(Flex_1.Flex, null,
181
+ React.createElement(Flex_1.Flex, { className: "twa:mr-2", alignItems: 'center' }, label),
184
182
  React.createElement(Select_1.Select, { value: expression, options: expressionOptions, onChange: (expression) => {
185
183
  onChange({
186
184
  ...rowSummary,
@@ -214,8 +212,8 @@ const RowSummarySection = (props) => {
214
212
  React.createElement(Tabs_1.Tabs.Tab, null, "Row Summaries"),
215
213
  React.createElement(Tabs_1.Tabs.Content, null,
216
214
  React.createElement("div", null,
217
- React.createElement(rebass_1.Flex, { mb: 1 },
218
- React.createElement(rebass_1.Flex, { flex: 1 }),
215
+ React.createElement(Flex_1.Flex, { className: "twa:mb-1" },
216
+ React.createElement(Flex_1.Flex, { className: "twa:flex-1" }),
219
217
  React.createElement(SimpleButton_1.default, { onClick: () => {
220
218
  props.onChange({
221
219
  ...layout,
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SettingsSection = exports.SettingsSectionSummary = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
- const rebass_1 = require("rebass");
7
6
  const FormLayout_1 = tslib_1.__importStar(require("../../../../components/FormLayout"));
8
7
  const Input_1 = tslib_1.__importDefault(require("../../../../components/Input"));
9
8
  const Radio_1 = tslib_1.__importDefault(require("../../../../components/Radio"));
@@ -11,17 +10,18 @@ const Tabs_1 = require("../../../../components/Tabs");
11
10
  const Tag_1 = require("../../../../components/Tag");
12
11
  const OnePageAdaptableWizard_1 = require("../../../Wizard/OnePageAdaptableWizard");
13
12
  const isPivotLayout_1 = require("../../../../Utilities/isPivotLayout");
13
+ const Flex_1 = require("../../../../components/Flex");
14
14
  const SettingsSectionSummary = () => {
15
15
  const { data: layout } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
16
16
  const isPivot = (0, isPivotLayout_1.isPivotLayout)(layout);
17
- return (React.createElement(rebass_1.Box, null,
18
- React.createElement(Tag_1.Tag, { mr: 2 },
17
+ return (React.createElement(Flex_1.Box, null,
18
+ React.createElement(Tag_1.Tag, { className: "twa:mr-2" },
19
19
  "Layout Name: ",
20
20
  layout.Name),
21
- React.createElement(Tag_1.Tag, { mr: 2 },
21
+ React.createElement(Tag_1.Tag, { className: "twa:mr-2" },
22
22
  "Layout Grid Type: ",
23
23
  isPivot ? 'Pivot' : 'Table'),
24
- React.createElement(Tag_1.Tag, { mr: 2 },
24
+ React.createElement(Tag_1.Tag, { className: "twa:mr-2" },
25
25
  "Suppress Aggregation Function in Column Header:",
26
26
  ' ',
27
27
  layout.SuppressAggFuncInHeader ? 'Yes' : 'No')));
@@ -36,17 +36,17 @@ const SettingsSection = (props) => {
36
36
  });
37
37
  };
38
38
  return (React.createElement(React.Fragment, null,
39
- React.createElement(Tabs_1.Tabs, { mb: 3 },
39
+ React.createElement(Tabs_1.Tabs, { className: "twa:mb-3" },
40
40
  React.createElement(Tabs_1.Tabs.Tab, null, "Settings"),
41
41
  React.createElement(Tabs_1.Tabs.Content, null,
42
- React.createElement(rebass_1.Flex, { flexDirection: "row" },
43
- React.createElement(FormLayout_1.default, { width: "100%", style: { maxWidth: 300 } },
42
+ React.createElement(Flex_1.Flex, { flexDirection: "row" },
43
+ React.createElement(FormLayout_1.default, { className: "twa:max-w-[300px] twa:w-full" },
44
44
  React.createElement(FormLayout_1.FormRow, { label: "Name" },
45
- React.createElement(Input_1.default, { width: "100%", "data-name": "layout-name", onChange: onNameChange, value: layout?.Name ?? '' })))))),
46
- React.createElement(Tabs_1.Tabs, { mb: 2 },
45
+ React.createElement(Input_1.default, { className: "twa:w-full", "data-name": "layout-name", onChange: onNameChange, value: layout?.Name ?? '' })))))),
46
+ React.createElement(Tabs_1.Tabs, { className: "twa:mb-2" },
47
47
  React.createElement(Tabs_1.Tabs.Tab, null, "Grid Type"),
48
48
  React.createElement(Tabs_1.Tabs.Content, null,
49
- React.createElement(rebass_1.Flex, { flexDirection: "column" },
49
+ React.createElement(Flex_1.Flex, { flexDirection: "column" },
50
50
  React.createElement(Radio_1.default, { "data-name": "layout-type-table", disabled: true, checked: !(0, isPivotLayout_1.isPivotLayout)(layout) }, "Table"),
51
51
  React.createElement(Radio_1.default, { "data-name": "layout-type-pivot", disabled: true, checked: (0, isPivotLayout_1.isPivotLayout)(layout) }, "Pivot"))))));
52
52
  };
@@ -3,7 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.SortSection = exports.SortSectionSummary = void 0;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
- const rebass_1 = require("rebass");
7
6
  const SimpleButton_1 = tslib_1.__importDefault(require("../../../../components/SimpleButton"));
8
7
  const Tabs_1 = require("../../../../components/Tabs");
9
8
  const Tag_1 = require("../../../../components/Tag");
@@ -13,19 +12,20 @@ const ValueSelector_1 = require("../../../Components/ValueSelector");
13
12
  const OnePageAdaptableWizard_1 = require("../../../Wizard/OnePageAdaptableWizard");
14
13
  const Utilities_1 = require("./Utilities");
15
14
  const ArrayExtensions_1 = tslib_1.__importDefault(require("../../../../Utilities/Extensions/ArrayExtensions"));
15
+ const Flex_1 = require("../../../../components/Flex");
16
16
  const SortSectionSummary = () => {
17
17
  const { data: layout } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
18
18
  const adaptable = (0, AdaptableContext_1.useAdaptable)();
19
19
  const sortViewItems = (0, getLayoutSortViewItems_1.getLayoutSortViewItems)(layout, adaptable.api);
20
- return (React.createElement(rebass_1.Box, null, sortViewItems.values.length ? (sortViewItems.values.map((value) => (React.createElement(Tag_1.Tag, { key: value, mb: 1, mr: 1 }, value)))) : (React.createElement(Tag_1.Tag, null, "No Sorts"))));
20
+ return (React.createElement(Flex_1.Box, null, sortViewItems.values.length ? (sortViewItems.values.map((value) => (React.createElement(Tag_1.Tag, { key: value, className: "twa:mb-1 twa:mr-1" }, value)))) : (React.createElement(Tag_1.Tag, null, "No Sorts"))));
21
21
  };
22
22
  exports.SortSectionSummary = SortSectionSummary;
23
23
  const ColumnRow = (props) => {
24
24
  const SortOrder = (props.layout?.ColumnSorts ?? []).find((sort) => sort.ColumnId === props.column.columnId)?.SortOrder;
25
25
  const icon = SortOrder === 'Asc' ? 'sort-asc' : 'sort-desc';
26
- return (React.createElement(rebass_1.Box, null,
26
+ return (React.createElement(Flex_1.Box, null,
27
27
  props.column.friendlyName,
28
- SortOrder && (React.createElement(SimpleButton_1.default, { ml: 2, onClick: () => props.onSortChange(props.column.columnId, SortOrder === 'Asc' ? 'Desc' : 'Asc'), variant: "raised", icon: icon }))));
28
+ SortOrder && (React.createElement(SimpleButton_1.default, { className: "twa:ml-2", onClick: () => props.onSortChange(props.column.columnId, SortOrder === 'Asc' ? 'Desc' : 'Asc'), variant: "raised", icon: icon }))));
29
29
  };
30
30
  const SortSection = (props) => {
31
31
  const adaptable = (0, AdaptableContext_1.useAdaptable)();
@@ -60,11 +60,9 @@ const SortSection = (props) => {
60
60
  }),
61
61
  });
62
62
  }, [layout]);
63
- return (React.createElement(Tabs_1.Tabs, { style: { height: '100%' } },
63
+ return (React.createElement(Tabs_1.Tabs, { className: "twa:h-full" },
64
64
  React.createElement(Tabs_1.Tabs.Tab, null, "Column Sorts"),
65
65
  React.createElement(Tabs_1.Tabs.Content, null,
66
- React.createElement(ValueSelector_1.ValueSelector, { showFilterInput: true, showSelectedOnlyPosition: "top", filter: Utilities_1.columnFilter, toIdentifier: (option) => `${option.columnId}`, toLabel: (option) => option.friendlyName ?? option.columnId, toListLabel: (column) => (React.createElement(ColumnRow, { onSortChange: handleSortChange, layout: layout, column: column })), options: sortedSortColumns, value: (layout.ColumnSorts ?? []).map((sort) => sort.ColumnId), allowReorder: () => true, xSelectedLabel: () => {
67
- return `Active sorts:`;
68
- }, onChange: handleColumnsSelectionChange }))));
66
+ React.createElement(ValueSelector_1.ValueSelector, { showFilterInput: true, filter: Utilities_1.columnFilter, toIdentifier: (option) => `${option.columnId}`, toLabel: (option) => option.friendlyName ?? option.columnId, toListLabel: (column) => (React.createElement(ColumnRow, { onSortChange: handleSortChange, layout: layout, column: column })), options: sortedSortColumns, value: (layout.ColumnSorts ?? []).map((sort) => sort.ColumnId), allowReorder: () => true, onChange: handleColumnsSelectionChange }))));
69
67
  };
70
68
  exports.SortSection = SortSection;
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.LicenseWatermark=void 0;const e=require("tslib"),t=e.__importStar(require("react")),r=require("../../components/Logo"),o=require("rebass"),n={border:"1px solid var(--ab-color-error)",padding:"5px",fontWeight:600,margin:"5px",fontSize:"14px",alignItems:"center",color:"var(--ab-color-text-on-defaultbackground)",background:"var(--ab-color-defaultbackground)"},i=e=>{const t=[["display","none"],["opacity","0"],["position","absolute"],["position","fixed"],["position","relative"],["visibility","hidden"]];for(const[r,o]of t)if(e.style[r]===o)return!1;return!0},l=e=>{const l=t.useRef(null);return t.useEffect(()=>{const e=setInterval(()=>{l.current?.isConnected||alert("It is not allowed to remove the Adaptable watermark."),i(l.current)||alert("It is not allowed to modify the Adaptable watermark."),l?.current?.style&&(l.current.style.border=n.border,l.current.style.padding=n.padding,l.current.style.fontWeight=`${n.fontWeight}`,l.current.style.margin=n.margin,l.current.style.fontSize=n.fontSize,l.current.style.color=n.color,l.current.style.background=n.background,l.current.style.display="flex",l.current.style.position="static",l.current.style.opacity="1",l.current.style.visibility="visible")},5e3);return()=>clearTimeout(e)},[]),t.createElement(o.Flex,{style:n,ref:l},t.createElement(r.Logo,{style:{marginRight:10}}),t.createElement("div",null,e.children))};exports.LicenseWatermark=l;
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.LicenseWatermark=void 0;const e=require("tslib"),t=e.__importStar(require("react")),r=require("../../components/Logo"),o=require("../../components/Flex"),n={border:"1px solid var(--ab-color-error)",padding:"5px",fontWeight:600,margin:"5px",fontSize:"14px",alignItems:"center",color:"var(--ab-color-text-on-defaultbackground)",background:"var(--ab-color-defaultbackground)"},i=e=>{const t=[["display","none"],["opacity","0"],["position","absolute"],["position","fixed"],["position","relative"],["visibility","hidden"]];for(const[r,o]of t)if(e.style[r]===o)return!1;return!0},l=e=>{const l=t.useRef(null);return t.useEffect(()=>{const e=setInterval(()=>{l.current?.isConnected||alert("It is not allowed to remove the Adaptable watermark."),i(l.current)||alert("It is not allowed to modify the Adaptable watermark."),l?.current?.style&&(l.current.style.border=n.border,l.current.style.padding=n.padding,l.current.style.fontWeight=`${n.fontWeight}`,l.current.style.margin=n.margin,l.current.style.fontSize=n.fontSize,l.current.style.color=n.color,l.current.style.background=n.background,l.current.style.display="flex",l.current.style.position="static",l.current.style.opacity="1",l.current.style.visibility="visible")},5e3);return()=>clearTimeout(e)},[]),t.createElement(o.Flex,{style:n,ref:l},t.createElement(r.Logo,{style:{marginRight:10}}),t.createElement("div",null,e.children))};exports.LicenseWatermark=l;
@@ -4,11 +4,11 @@ exports.NamedQueryExpressionWizardSection = exports.renderNamedQueryExpressionSu
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
6
  const react_1 = require("react");
7
- const rebass_1 = require("rebass");
8
7
  const ExpressionEditor_1 = require("../../../components/ExpressionEditor");
9
8
  const Tag_1 = require("../../../components/Tag");
10
9
  const ModuleConstants_1 = require("../../../Utilities/Constants/ModuleConstants");
11
10
  const OnePageAdaptableWizard_1 = require("../../Wizard/OnePageAdaptableWizard");
11
+ const Flex_1 = require("../../../components/Flex");
12
12
  const isValidNamedQueryExpression = (data, api) => {
13
13
  if (!data.BooleanExpression) {
14
14
  return 'Expression is empty';
@@ -22,7 +22,7 @@ const isValidNamedQueryExpression = (data, api) => {
22
22
  exports.isValidNamedQueryExpression = isValidNamedQueryExpression;
23
23
  const renderNamedQueryExpressionSummary = (data) => {
24
24
  const { api } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
25
- return (React.createElement(rebass_1.Text, { fontSize: 2 },
25
+ return (React.createElement(Flex_1.Box, { className: "twa:text-2" },
26
26
  "Expression: ",
27
27
  React.createElement(Tag_1.Tag, null, api.internalApi.getAdaptableQueryExpressionText(data))));
28
28
  };
@@ -4,13 +4,13 @@ exports.NamedQuerySettingsWizardSection = exports.renderNamedQuerySettingsSummar
4
4
  const tslib_1 = require("tslib");
5
5
  // TODO: move to named query
6
6
  const React = tslib_1.__importStar(require("react"));
7
- const rebass_1 = require("rebass");
8
7
  const WizardPanel_1 = tslib_1.__importDefault(require("../../../components/WizardPanel"));
9
8
  const FormLayout_1 = tslib_1.__importStar(require("../../../components/FormLayout"));
10
9
  const ErrorBox_1 = tslib_1.__importDefault(require("../../../components/ErrorBox"));
11
10
  const OnePageAdaptableWizard_1 = require("../../Wizard/OnePageAdaptableWizard");
12
11
  const AdaptableInput_1 = tslib_1.__importDefault(require("../../Components/AdaptableInput"));
13
12
  const Tag_1 = require("../../../components/Tag");
13
+ const Flex_1 = require("../../../components/Flex");
14
14
  const isValidNamedQuerySettings = (data, api) => {
15
15
  const validationResult = api.namedQueryApi.isValidNamedQuery(data);
16
16
  const ErrorMessage = !validationResult.valid ? validationResult.message : null;
@@ -21,7 +21,7 @@ const isValidNamedQuerySettings = (data, api) => {
21
21
  };
22
22
  exports.isValidNamedQuerySettings = isValidNamedQuerySettings;
23
23
  const renderNamedQuerySettingsSummary = (data) => {
24
- return (React.createElement(rebass_1.Text, { fontSize: 2 },
24
+ return (React.createElement(Flex_1.Box, { className: "twa:text-2" },
25
25
  "Name: ",
26
26
  React.createElement(Tag_1.Tag, null, data.Name)));
27
27
  };
@@ -40,7 +40,7 @@ const NamedQuerySettingsWizardSection = (props) => {
40
40
  return (React.createElement(WizardPanel_1.default, { "data-name": 'named-query-settings' },
41
41
  React.createElement(FormLayout_1.default, null,
42
42
  React.createElement(FormLayout_1.FormRow, { label: "Name" },
43
- React.createElement(AdaptableInput_1.default, { "data-name": "query-name", value: data.Name, autoFocus: true, width: 300, type: "text", placeholder: "Enter Named Query Name", onChange: (e) => handleColumnNameChange(e) })),
43
+ React.createElement(AdaptableInput_1.default, { "data-name": "query-name", value: data.Name, autoFocus: true, className: "twa:w-[300px]", type: "text", placeholder: "Enter Named Query Name", onChange: (e) => handleColumnNameChange(e) })),
44
44
  ' ',
45
45
  errorMessage ? (React.createElement(FormLayout_1.FormRow, { label: "" },
46
46
  React.createElement(ErrorBox_1.default, null, errorMessage))) : null)));
@@ -1,10 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.NamedQueryWizard = void 0;
3
+ exports.NamedQueryWizard = NamedQueryWizard;
4
4
  const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
6
  const react_1 = require("react");
7
- const rebass_1 = require("rebass");
8
7
  const OnePageAdaptableWizard_1 = require("../../Wizard/OnePageAdaptableWizard");
9
8
  const NamedQuerySettingsWizardSection_1 = require("./NamedQuerySettingsWizardSection");
10
9
  const Helper_1 = require("../../../Utilities/Helpers/Helper");
@@ -13,6 +12,7 @@ const ObjectFactory_1 = tslib_1.__importDefault(require("../../../Utilities/Obje
13
12
  const react_redux_1 = require("react-redux");
14
13
  const NamedQueryRedux = tslib_1.__importStar(require("../../../Redux/ActionsReducers/NamedQueryRedux"));
15
14
  const ObjectTagsWizardSection_1 = require("../../Wizard/ObjectTagsWizardSection");
15
+ const Flex_1 = require("../../../components/Flex");
16
16
  function NamedQueryWizard(props) {
17
17
  const [namedQuery, setNamedQuery] = (0, react_1.useState)(() => {
18
18
  const value = props.popupParams?.value ?? '';
@@ -51,7 +51,7 @@ function NamedQueryWizard(props) {
51
51
  details: 'Select Named Query Tags',
52
52
  title: 'Tags',
53
53
  isVisible: (_, api) => api.internalApi.shouldDisplayTagSections(),
54
- render: () => (React.createElement(rebass_1.Box, { padding: 2 },
54
+ render: () => (React.createElement(Flex_1.Box, { className: "twa:p-2" },
55
55
  React.createElement(ObjectTagsWizardSection_1.ObjectTagsWizardSection, { onChange: setNamedQuery }))),
56
56
  renderSummary: ObjectTagsWizardSection_1.renderObjectTagsSummary,
57
57
  },
@@ -60,10 +60,9 @@ function NamedQueryWizard(props) {
60
60
  title: 'Summary',
61
61
  details: 'Review your Named Query',
62
62
  render: () => {
63
- return (React.createElement(rebass_1.Box, { padding: 2 },
63
+ return (React.createElement(Flex_1.Box, { className: "twa:p-2" },
64
64
  React.createElement(OnePageAdaptableWizard_1.OnePageWizardSummary, null)));
65
65
  },
66
66
  },
67
67
  ], onHide: props.onCloseWizard, moduleInfo: props.moduleInfo, data: namedQuery }));
68
68
  }
69
- exports.NamedQueryWizard = NamedQueryWizard;
@@ -7,6 +7,7 @@ const React = tslib_1.__importStar(require("react"));
7
7
  const Textarea_1 = tslib_1.__importDefault(require("../../components/Textarea"));
8
8
  const SimpleButton_1 = tslib_1.__importDefault(require("../../components/SimpleButton"));
9
9
  const AdaptableContext_1 = require("../AdaptableContext");
10
+ const clsx_1 = tslib_1.__importDefault(require("clsx"));
10
11
  const NoteEditor = ({ note, onNoteChange, onClose, editMode, isReadonly }) => {
11
12
  const { api } = (0, AdaptableContext_1.useAdaptable)();
12
13
  const showPopupCloseButton = api.optionsApi.getNoteOptions()?.showPopupCloseButton ?? true;
@@ -28,7 +29,10 @@ const NoteEditor = ({ note, onNoteChange, onClose, editMode, isReadonly }) => {
28
29
  return null;
29
30
  }
30
31
  return (React.createElement(React.Fragment, null,
31
- React.createElement(Textarea_1.default, { readOnly: isReadonly, ref: textAreaRef, width: "100%", minWidth: 180, minHeight: 120, style: { paddingRight: showPopupCloseButton ? 30 : 0 }, value: liveValue, onBlur: () => onClose(), onKeyDown: (event) => {
32
+ React.createElement(Textarea_1.default, { readOnly: isReadonly, ref: textAreaRef, className: (0, clsx_1.default)('twa:min-w-[180px] twa:min-h-[120px] twa:w-full', {
33
+ 'twa:pr-[30px]': showPopupCloseButton,
34
+ 'twa:pr-0': !showPopupCloseButton,
35
+ }), value: liveValue, onBlur: () => onClose(), onKeyDown: (event) => {
32
36
  if (event.key === 'Escape') {
33
37
  onClose();
34
38
  }
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PlusMinusRuleWizardSection = exports.PlusMinusRuleSummary = void 0;
3
+ exports.PlusMinusRuleSummary = PlusMinusRuleSummary;
4
+ exports.PlusMinusRuleWizardSection = PlusMinusRuleWizardSection;
4
5
  const tslib_1 = require("tslib");
5
6
  const React = tslib_1.__importStar(require("react"));
6
7
  const OnePageAdaptableWizard_1 = require("../../Wizard/OnePageAdaptableWizard");
@@ -20,7 +21,6 @@ function PlusMinusRuleSummary() {
20
21
  React.createElement(CodeBlock_1.CodeBlock, null, contents))));
21
22
  } }));
22
23
  }
23
- exports.PlusMinusRuleSummary = PlusMinusRuleSummary;
24
24
  function PlusMinusRuleWizardSection(props) {
25
25
  const { data, moduleInfo } = (0, OnePageAdaptableWizard_1.useOnePageAdaptableWizardContext)();
26
26
  const plusMinusNudge = {
@@ -43,4 +43,3 @@ function PlusMinusRuleWizardSection(props) {
43
43
  useAggregationQuery: null,
44
44
  } }));
45
45
  }
46
- exports.PlusMinusRuleWizardSection = PlusMinusRuleWizardSection;