@adaptabletools/adaptable 11.3.0 → 12.0.0-canary.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (311) hide show
  1. package/base.css +568 -273
  2. package/bundle.cjs.js +114 -114
  3. package/index.css +642 -270
  4. package/package.json +2 -2
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -0
  8. package/src/AdaptableInterfaces/IAdaptable.d.ts +4 -1
  9. package/src/AdaptableOptions/ActionOptions.d.ts +1 -0
  10. package/src/AdaptableOptions/{FormatColumnOptions.js → ActionOptions.js} +0 -0
  11. package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +5 -0
  12. package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -10
  13. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +5 -0
  14. package/src/AdaptableOptions/AlertOptions.d.ts +14 -1
  15. package/src/AdaptableOptions/ColumnOptions.d.ts +49 -0
  16. package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.js → ColumnOptions.js} +0 -0
  17. package/src/AdaptableOptions/DashboardOptions.d.ts +2 -7
  18. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +19 -0
  19. package/src/AdaptableOptions/EditOptions.d.ts +6 -7
  20. package/src/AdaptableOptions/EntitlementOptions.d.ts +7 -1
  21. package/src/AdaptableOptions/ExportOptions.d.ts +9 -8
  22. package/src/AdaptableOptions/FilterOptions.d.ts +6 -1
  23. package/src/AdaptableOptions/GeneralOptions.d.ts +25 -23
  24. package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.d.ts → MasterDetailPluginOptions.d.ts} +2 -4
  25. package/src/{Api/DataSourceApi.js → AdaptableOptions/MasterDetailPluginOptions.js} +0 -0
  26. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +3 -6
  27. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -49
  28. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +88 -57
  29. package/src/Api/AdaptableApi.d.ts +6 -3
  30. package/src/Api/ColumnApi.d.ts +9 -4
  31. package/src/Api/ConditionalStyleApi.d.ts +10 -0
  32. package/src/Api/ConfigApi.d.ts +0 -12
  33. package/src/Api/DashboardApi.d.ts +6 -19
  34. package/src/Api/DataSetApi.d.ts +40 -0
  35. package/src/{PredefinedConfig/DataSourceState.js → Api/DataSetApi.js} +0 -0
  36. package/src/Api/EventApi.d.ts +26 -1
  37. package/src/Api/Events/DataSetChanged.d.ts +5 -0
  38. package/src/{PredefinedConfig/FilterState.js → Api/Events/DataSetChanged.js} +0 -0
  39. package/src/Api/Events/SearchChanged.d.ts +4 -5
  40. package/src/Api/ExportApi.d.ts +2 -2
  41. package/src/Api/FilterApi.d.ts +28 -36
  42. package/src/Api/GridApi.d.ts +1 -1
  43. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
  44. package/src/Api/Implementation/AdaptableApiImpl.js +3 -3
  45. package/src/Api/Implementation/AlertApiImpl.js +5 -1
  46. package/src/Api/Implementation/ApiBase.d.ts +3 -0
  47. package/src/Api/Implementation/ApiBase.js +6 -0
  48. package/src/Api/Implementation/ColumnApiImpl.d.ts +4 -4
  49. package/src/Api/Implementation/ColumnApiImpl.js +17 -16
  50. package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +2 -0
  51. package/src/Api/Implementation/ConditionalStyleApiImpl.js +8 -0
  52. package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -4
  53. package/src/Api/Implementation/ConfigApiImpl.js +2 -24
  54. package/src/Api/Implementation/DashboardApiImpl.d.ts +3 -6
  55. package/src/Api/Implementation/DashboardApiImpl.js +5 -29
  56. package/src/Api/Implementation/DataSetApiImpl.d.ts +12 -0
  57. package/src/Api/Implementation/DataSetApiImpl.js +42 -0
  58. package/src/Api/Implementation/EventApiImpl.js +1 -0
  59. package/src/Api/Implementation/ExportApiImpl.d.ts +2 -2
  60. package/src/Api/Implementation/FilterApiImpl.d.ts +11 -11
  61. package/src/Api/Implementation/FilterApiImpl.js +59 -72
  62. package/src/Api/Implementation/FormatColumnApiImpl.js +2 -2
  63. package/src/Api/Implementation/GridApiImpl.d.ts +1 -1
  64. package/src/Api/Implementation/GridApiImpl.js +7 -3
  65. package/src/Api/Implementation/InternalApiImpl.d.ts +3 -2
  66. package/src/Api/Implementation/InternalApiImpl.js +14 -3
  67. package/src/Api/Implementation/LayoutApiImpl.d.ts +3 -0
  68. package/src/Api/Implementation/LayoutApiImpl.js +20 -0
  69. package/src/Api/Implementation/PredicateApiImpl.d.ts +2 -0
  70. package/src/Api/Implementation/PredicateApiImpl.js +19 -1
  71. package/src/Api/Implementation/SmartEditApiImpl.d.ts +3 -1
  72. package/src/Api/Implementation/SmartEditApiImpl.js +6 -0
  73. package/src/Api/Implementation/TeamSharingApiImpl.d.ts +5 -3
  74. package/src/Api/Implementation/TeamSharingApiImpl.js +28 -10
  75. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +1 -1
  76. package/src/Api/Implementation/UserInterfaceApiImpl.js +4 -4
  77. package/src/Api/InternalApi.d.ts +3 -2
  78. package/src/Api/LayoutApi.d.ts +16 -0
  79. package/src/Api/PredicateApi.d.ts +7 -0
  80. package/src/Api/SmartEditApi.d.ts +8 -2
  81. package/src/Api/TeamSharingApi.d.ts +18 -5
  82. package/src/Api/UserInterfaceApi.d.ts +4 -4
  83. package/src/PredefinedConfig/AdaptableState.d.ts +0 -4
  84. package/src/PredefinedConfig/Common/AdaptableButton.d.ts +3 -3
  85. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +5 -1
  86. package/src/PredefinedConfig/Common/AdaptablePredicate.js +18 -1
  87. package/src/PredefinedConfig/{FilterState.d.ts → Common/ColumnFilter.d.ts} +2 -33
  88. package/src/PredefinedConfig/Common/ColumnFilter.js +2 -0
  89. package/src/PredefinedConfig/Common/Enums.d.ts +2 -2
  90. package/src/PredefinedConfig/Common/Enums.js +1 -1
  91. package/src/PredefinedConfig/Common/FormContext.d.ts +8 -0
  92. package/src/PredefinedConfig/Common/FormContext.js +2 -0
  93. package/src/PredefinedConfig/Common/Types.d.ts +6 -5
  94. package/src/PredefinedConfig/Common/Types.js +2 -3
  95. package/src/PredefinedConfig/LayoutState.d.ts +5 -0
  96. package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -10
  97. package/src/PredefinedConfig/StatusBarState.d.ts +1 -2
  98. package/src/PredefinedConfig/SystemState.d.ts +3 -0
  99. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +47 -0
  100. package/src/Redux/ActionsReducers/LayoutRedux.js +134 -1
  101. package/src/Redux/ActionsReducers/PopupRedux.d.ts +3 -2
  102. package/src/Redux/ActionsReducers/SystemRedux.d.ts +22 -0
  103. package/src/Redux/ActionsReducers/SystemRedux.js +39 -1
  104. package/src/Redux/Store/AdaptableStore.js +37 -39
  105. package/src/Strategy/AdaptableModuleBase.js +1 -2
  106. package/src/Strategy/AlertModule.d.ts +11 -0
  107. package/src/Strategy/AlertModule.js +14 -0
  108. package/src/Strategy/BulkUpdateModule.js +3 -4
  109. package/src/Strategy/CellSummaryModule.d.ts +3 -0
  110. package/src/Strategy/CellSummaryModule.js +29 -16
  111. package/src/Strategy/DataSetModule.d.ts +25 -0
  112. package/src/Strategy/DataSetModule.js +65 -0
  113. package/src/Strategy/ExportModule.js +6 -1
  114. package/src/Strategy/FilterModule.d.ts +7 -11
  115. package/src/Strategy/FilterModule.js +26 -20
  116. package/src/Strategy/FlashingCellModule.d.ts +1 -1
  117. package/src/Strategy/FlashingCellModule.js +2 -2
  118. package/src/Strategy/Interface/IModule.d.ts +3 -1
  119. package/src/Strategy/LayoutModule.js +25 -2
  120. package/src/Strategy/PlusMinusModule.js +1 -4
  121. package/src/Strategy/SmartEditModule.js +3 -3
  122. package/src/Strategy/StatusBarModule.js +1 -3
  123. package/src/Strategy/TeamSharingModule.js +1 -1
  124. package/src/Strategy/ToolPanelModule.js +1 -4
  125. package/src/Utilities/Constants/GeneralConstants.d.ts +8 -2
  126. package/src/Utilities/Constants/GeneralConstants.js +8 -2
  127. package/src/Utilities/Constants/ModuleConstants.d.ts +1 -1
  128. package/src/Utilities/Constants/ModuleConstants.js +2 -2
  129. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +17 -15
  130. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
  131. package/src/Utilities/Helpers/AdaptableHelper.js +3 -1
  132. package/src/Utilities/ObjectFactory.d.ts +3 -6
  133. package/src/Utilities/ObjectFactory.js +3 -7
  134. package/src/Utilities/Services/CalculatedColumnExpressionService.js +6 -7
  135. package/src/Utilities/Services/EntitlementService.js +7 -1
  136. package/src/Utilities/Services/ModuleService.js +1 -1
  137. package/src/Utilities/Services/ReportService.js +2 -3
  138. package/src/Utilities/Services/RowEditService.d.ts +1 -0
  139. package/src/Utilities/Services/RowEditService.js +34 -2
  140. package/src/Utilities/Services/TeamSharingService.js +4 -4
  141. package/src/View/AdaptablePopover/index.d.ts +1 -0
  142. package/src/View/AdaptablePopover/index.js +5 -6
  143. package/src/View/AdaptableView.js +1 -1
  144. package/src/View/AdaptableViewFactory.js +2 -2
  145. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +8 -3
  146. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +3 -2
  147. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +9 -2
  148. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.d.ts +18 -0
  149. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +87 -0
  150. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.d.ts +18 -0
  151. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +16 -0
  152. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.d.ts +2 -9
  153. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +2 -75
  154. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.d.ts +3 -1
  155. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.js +9 -4
  156. package/src/View/AdaptableWizardView/Utils.d.ts +1 -0
  157. package/src/View/AdaptableWizardView/Utils.js +24 -0
  158. package/src/View/AdaptableWizardView/Wizard.d.ts +54 -0
  159. package/src/View/AdaptableWizardView/Wizard.js +98 -0
  160. package/src/View/AdaptableWizardView/index.d.ts +1 -22
  161. package/src/View/AdaptableWizardView/index.js +2 -103
  162. package/src/View/Alert/ActiveAlertsPanel.d.ts +2 -0
  163. package/src/View/Alert/ActiveAlertsPanel.js +15 -0
  164. package/src/View/Alert/AlertStatusSubPanel.js +3 -8
  165. package/src/View/Alert/AlertViewPanel.js +2 -2
  166. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +1 -1
  167. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +3 -3
  168. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +1 -1
  169. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +2 -2
  170. package/src/View/BulkUpdate/BulkUpdatePopup.js +2 -3
  171. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +1 -1
  172. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +3 -4
  173. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +5 -6
  174. package/src/View/CellSummary/CellSummaryDetails.js +4 -4
  175. package/src/View/CellSummary/CellSummaryPopover.d.ts +2 -4
  176. package/src/View/CellSummary/CellSummaryPopover.js +3 -6
  177. package/src/View/CellSummary/CellSummaryPopup.js +8 -0
  178. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +1 -1
  179. package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -2
  180. package/src/View/CellSummary/CellSummaryViewPanel.js +1 -1
  181. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +18 -8
  182. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -2
  183. package/src/View/Components/ExternalRenderer.d.ts +3 -6
  184. package/src/View/Components/ExternalRenderer.js +5 -5
  185. package/src/View/Components/FilterForm/FilterForm.d.ts +1 -1
  186. package/src/View/Components/FilterForm/FilterForm.js +10 -8
  187. package/src/View/Components/FilterForm/QuickFilterForm.d.ts +1 -1
  188. package/src/View/Components/FilterForm/QuickFilterForm.js +5 -4
  189. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  190. package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +0 -2
  191. package/src/View/Components/Popups/AdaptablePopupAlert.js +13 -11
  192. package/src/View/Components/Popups/AdaptableToaster.js +29 -9
  193. package/src/View/Components/PreviewResultsPanel.js +3 -3
  194. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -2
  195. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -9
  196. package/src/View/Components/WizardSummaryPage.js +2 -2
  197. package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +1 -1
  198. package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +1 -1
  199. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +1 -1
  200. package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +1 -1
  201. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +2 -2
  202. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +1 -1
  203. package/src/View/Dashboard/CustomDashboardButton.d.ts +11 -0
  204. package/src/View/Dashboard/CustomDashboardButton.js +47 -0
  205. package/src/View/Dashboard/CustomToolbarWrapper.d.ts +1 -0
  206. package/src/View/Dashboard/CustomToolbarWrapper.js +30 -11
  207. package/src/View/Dashboard/Dashboard.d.ts +1 -0
  208. package/src/View/Dashboard/Dashboard.js +8 -34
  209. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +19 -36
  210. package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +3 -0
  211. package/src/View/DataChangeHistory/buildActionColumnButton.js +70 -0
  212. package/src/View/DataSet/DataSetSelector.d.ts +7 -0
  213. package/src/View/DataSet/DataSetSelector.js +18 -0
  214. package/src/View/DataSet/DataSetStatusPanelPopover.d.ts +2 -0
  215. package/src/View/DataSet/DataSetStatusPanelPopover.js +19 -0
  216. package/src/View/DataSet/DataSetViewPanel.d.ts +19 -0
  217. package/src/View/DataSet/DataSetViewPanel.js +58 -0
  218. package/src/View/Export/Wizard/ReportColumnsWizardSection.js +1 -1
  219. package/src/View/Export/Wizard/ReportNameWizardSection.js +1 -1
  220. package/src/View/Export/Wizard/ReportRowsWizardSection.js +1 -1
  221. package/src/View/Filter/ActiveFiltersPanel.js +1 -1
  222. package/src/View/Filter/FilterSummary.d.ts +5 -5
  223. package/src/View/Filter/FilterSummary.js +5 -4
  224. package/src/View/Filter/FilterViewPanel.d.ts +4 -4
  225. package/src/View/Filter/FilterViewPanel.js +10 -13
  226. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +2 -2
  227. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +1 -1
  228. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +1 -1
  229. package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.js +1 -1
  230. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +2 -2
  231. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +1 -1
  232. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +1 -1
  233. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +1 -1
  234. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +5 -6
  235. package/src/View/GridInfo/ColumnInfoComponent.js +1 -1
  236. package/src/View/GridInfo/GridInfoPopup.js +1 -1
  237. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +6 -24
  238. package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
  239. package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +1 -0
  240. package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +2 -2
  241. package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.js +1 -1
  242. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +2 -2
  243. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +1 -1
  244. package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +1 -1
  245. package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +1 -1
  246. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +1 -1
  247. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +1 -1
  248. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +1 -1
  249. package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +1 -1
  250. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +2 -2
  251. package/src/View/SmartEdit/SmartEditPopup.js +2 -2
  252. package/src/View/SmartEdit/SmartEditViewPanel.js +2 -2
  253. package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
  254. package/src/View/StatusBar/AdaptableStatusBar.js +1 -1
  255. package/src/View/StatusBar/StatusBarPanel.d.ts +1 -0
  256. package/src/View/StatusBar/StatusBarPanel.js +5 -4
  257. package/src/View/Theme/ThemeStatusPanelPopover.js +5 -25
  258. package/src/View/UIHelper.d.ts +4 -4
  259. package/src/View/UIHelper.js +10 -10
  260. package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +2 -2
  261. package/src/View/Wizard/ObjectTagsWizardSection.js +1 -1
  262. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +5 -6
  263. package/src/View/Wizard/OnePageAdaptableWizard.js +35 -169
  264. package/src/View/Wizard/OnePageWizards.d.ts +37 -0
  265. package/src/View/Wizard/OnePageWizards.js +187 -0
  266. package/src/View/Wizard/useKeyboardNavigation.d.ts +1 -1
  267. package/src/agGrid/ActionColumnRenderer.js +3 -2
  268. package/src/agGrid/Adaptable.d.ts +4 -2
  269. package/src/agGrid/Adaptable.js +99 -58
  270. package/src/agGrid/FilterWrapper.js +1 -1
  271. package/src/agGrid/agGridHelper.d.ts +7 -8
  272. package/src/agGrid/agGridHelper.js +68 -86
  273. package/src/agGrid/agGridMenuHelper.js +4 -1
  274. package/src/agGrid/rowEditIcons.d.ts +1 -0
  275. package/src/agGrid/rowEditIcons.js +2 -1
  276. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +3 -2
  277. package/src/components/Dashboard/DashboardToolbar.js +2 -2
  278. package/src/components/InfiniteTable/index.js +1 -0
  279. package/src/components/List/GridList/index.js +1 -1
  280. package/src/components/SelectList.d.ts +10 -0
  281. package/src/components/SelectList.js +9 -0
  282. package/src/components/WindowModal/WindowModal.js +13 -7
  283. package/src/components/icons/{data-source.d.ts → add-row.d.ts} +0 -0
  284. package/src/components/icons/add-row.js +7 -0
  285. package/src/components/icons/data-set.d.ts +3 -0
  286. package/src/components/icons/{data-source.js → data-set.js} +0 -0
  287. package/src/components/icons/index.js +4 -2
  288. package/src/metamodel/adaptable.metamodel.d.ts +163 -78
  289. package/src/metamodel/adaptable.metamodel.js +402 -322
  290. package/src/types.d.ts +16 -12
  291. package/version.d.ts +1 -1
  292. package/version.js +1 -1
  293. package/src/AdaptableOptions/FormatColumnOptions.d.ts +0 -10
  294. package/src/Api/DataSourceApi.d.ts +0 -58
  295. package/src/Api/Implementation/DataSourceApiImpl.d.ts +0 -15
  296. package/src/Api/Implementation/DataSourceApiImpl.js +0 -51
  297. package/src/PredefinedConfig/DataSourceState.d.ts +0 -34
  298. package/src/Redux/ActionsReducers/DataSourceRedux.d.ts +0 -42
  299. package/src/Redux/ActionsReducers/DataSourceRedux.js +0 -76
  300. package/src/Redux/ActionsReducers/FilterRedux.d.ts +0 -70
  301. package/src/Redux/ActionsReducers/FilterRedux.js +0 -126
  302. package/src/Strategy/DataSourceModule.d.ts +0 -20
  303. package/src/Strategy/DataSourceModule.js +0 -56
  304. package/src/View/DataSource/DataSourceViewPanel.d.ts +0 -19
  305. package/src/View/DataSource/DataSourceViewPanel.js +0 -69
  306. package/src/View/DataSource/Wizard/DataSourceSettingsSummary.d.ts +0 -2
  307. package/src/View/DataSource/Wizard/DataSourceSettingsSummary.js +0 -17
  308. package/src/View/DataSource/Wizard/DataSourceSettingsWizard.d.ts +0 -8
  309. package/src/View/DataSource/Wizard/DataSourceSettingsWizard.js +0 -42
  310. package/src/View/DataSource/Wizard/DataSourceWizard.d.ts +0 -8
  311. package/src/View/DataSource/Wizard/DataSourceWizard.js +0 -53
@@ -18,6 +18,7 @@ import { SelectedRowInfo } from '../PredefinedConfig/Selection/SelectedRowInfo';
18
18
  import { AdaptableTheme } from '../PredefinedConfig/ThemeState';
19
19
  import { IAdaptableStore } from '../Redux/Store/Interface/IAdaptableStore';
20
20
  import { IModuleCollection } from '../Strategy/Interface/IModule';
21
+ import { AdaptableColumnType } from '../types';
21
22
  import { EmitterCallback } from '../Utilities/Emitter';
22
23
  import { IPPStyle } from '../Utilities/Interface/IPPStyle';
23
24
  import { LicenseService } from '../Utilities/Services/LicenseService';
@@ -61,6 +62,7 @@ export declare class Adaptable implements IAdaptable {
61
62
  embedColumnMenu: boolean;
62
63
  gridOptions: GridOptions;
63
64
  isInitialised: boolean;
65
+ hasAdaptableToolPanel: boolean;
64
66
  private useRowNodeLookUp;
65
67
  private abContainerElement;
66
68
  private gridContainerElement;
@@ -119,6 +121,7 @@ export declare class Adaptable implements IAdaptable {
119
121
  private initializeAgGrid;
120
122
  private isAgGridReady;
121
123
  private initAgGridContainerFromInitializedAgGrid;
124
+ private createAdaptableSideBarDef;
122
125
  private createStatusBars;
123
126
  getAgGridStatusPanels(): import("@ag-grid-community/all-modules").StatusPanelDef[];
124
127
  debouncedSetColumnIntoStore: import("lodash").DebouncedFunc<() => void>;
@@ -238,7 +241,7 @@ export declare class Adaptable implements IAdaptable {
238
241
  suppressMovable: boolean;
239
242
  headerTooltip: string;
240
243
  cellEditor: string | typeof AdaptableNumberEditor | typeof AdaptableDateEditor;
241
- type: string[];
244
+ type: AdaptableColumnType[];
242
245
  valueSetter: (params: ValueSetterParams) => any;
243
246
  cellRenderer: import("@ag-grid-community/all-modules").ICellRendererFunc;
244
247
  valueGetter: (params: ValueGetterParams) => any;
@@ -281,7 +284,6 @@ export declare class Adaptable implements IAdaptable {
281
284
  setupColumnCellRenderer({ col, colId, abColumn }: ColumnSetupInfo): void;
282
285
  setupColumnTooltipValueGetter({ col, colId }: ColumnSetupInfo): void;
283
286
  setupColumnHeader({ col, abColumn }: ColumnSetupInfo): boolean;
284
- getUserDefinedHeaderName(columnId: string): string;
285
287
  setupColumnFilter({ col, colDef }: ColumnSetupInfo): void;
286
288
  setupColumnFloatingFilter({ col, colDef }: ColumnSetupInfo): void;
287
289
  setupColumnValueFormatter({ col, abColumn }: ColumnSetupInfo): void;
@@ -375,7 +375,7 @@ class Adaptable {
375
375
  // Build the default group sort comparator - will get custom sort values (but not functions) in real time
376
376
  // TODO: if a custom 'aggFunc' property is defined (see setupColumnAggFunc()), it won't be evaluated
377
377
  if (!this.getInitialGroupOrderComparator(this.gridOptions) &&
378
- this.adaptableOptions.generalOptions.autoOrderGroupedColumns) {
378
+ this.adaptableOptions.columnOptions.autoOrderGroupedColumns) {
379
379
  this.gridOptions.initialGroupOrderComparator =
380
380
  this.agGridHelper.runAdaptableGroupComparerFunction();
381
381
  }
@@ -455,6 +455,13 @@ class Adaptable {
455
455
  }).then(async () => {
456
456
  this.api.internalApi.hideLoadingScreen();
457
457
  this.isInitialised = true;
458
+ this._adaptableReady = true;
459
+ // setTimeout(() => {
460
+ // this.api.eventApi.emit('AdaptableReady', {
461
+ // adaptableApi: this.api,
462
+ // gridOptions: this.adaptableOptions.gridOptions,
463
+ // });
464
+ // }, 0);
458
465
  });
459
466
  if (this.abContainerElement == null) {
460
467
  this.abContainerElement = this.getAdaptableContainerElement();
@@ -519,16 +526,18 @@ class Adaptable {
519
526
  this.performAudit(data.action, data.state, data.newState);
520
527
  this.forPlugins((plugin) => plugin.onStoreEvent(eventName, data, this.adaptableStore));
521
528
  if (eventName == AdaptableStore_1.INIT_STATE) {
522
- this._adaptableReady = true;
523
529
  LoggingHelper_1.LogAdaptableInfo(`Updating obsolete configuration/state`);
524
530
  this.adaptableModules.forEach((m) => m.updateOldConfig());
525
531
  // call stuff here
526
532
  // and reset state also?
527
533
  this.forPlugins((plugin) => plugin.onAdaptableReady(this, this.adaptableOptions));
534
+ this._adaptableReady = true;
535
+ // setTimeout(() => {
528
536
  this.api.eventApi.emit('AdaptableReady', {
529
537
  adaptableApi: this.api,
530
538
  gridOptions: this.adaptableOptions.gridOptions,
531
539
  });
540
+ // }, 0);
532
541
  }
533
542
  });
534
543
  }
@@ -569,39 +578,19 @@ class Adaptable {
569
578
  // this.gridOptions.components.__adaptableGroupCellRenderer = AdaptableGroupCellRenderer;
570
579
  // }
571
580
  }
572
- // Create Adaptable adaptable Tool Panel
573
- if (this.adaptableOptions.toolPanelOptions.showAdaptableToolPanel) {
574
- if (this.gridOptions.sideBar) {
575
- this.gridOptions.sideBar = this.gridOptions.sideBar || {};
576
- this.gridOptions.components = this.gridOptions.components || {};
577
- // https://www.ag-grid.com/javascript-grid/side-bar/
578
- const sidebar = this.gridOptions.sideBar;
579
- if (sidebar === true) {
580
- // Possibility 1: Sidebar is true - meaning that they want the default filter and columns, so create both:
581
- this.gridOptions.sideBar = this.agGridHelper.createAdaptableSideBarDefs(true, true);
582
- }
583
- else if (sidebar === 'columns') {
584
- // Possibility 2: Sidebar is 'columns' (string) - meaning column only so create just that
585
- this.gridOptions.sideBar = this.agGridHelper.createAdaptableSideBarDefs(false, true);
586
- }
587
- else if (sidebar === 'filters') {
588
- // Possibility 3: Sidebar is 'filters' (string) - meaning filters only so create just that
589
- this.gridOptions.sideBar = this.agGridHelper.createAdaptableSideBarDefs(true, false);
590
- }
591
- else {
592
- // Possibilty 4: either no sidebar or they created their own; in either case, should add adaptable Tool panel
593
- const sidebarDef = this.gridOptions.sideBar;
594
- if (sidebarDef) {
595
- sidebarDef.toolPanels = sidebarDef.toolPanels || [];
596
- sidebarDef.toolPanels.push(this.agGridHelper.createAdaptableToolPanel());
597
- this.agGridHelper.orderToolPanels(sidebarDef.toolPanels);
598
- }
599
- }
600
- this.gridOptions.components.AdaptableToolPanel = AdaptableToolPanel_1.getAdaptableToolPanelAgGridComponent(this);
601
- if (this.gridOptions.api) {
602
- this.gridOptions.api.setSideBar(this.gridOptions.sideBar);
603
- }
581
+ const adaptableSideBarDef = this.createAdaptableSideBarDef();
582
+ if (!!adaptableSideBarDef) {
583
+ this.gridOptions.components = this.gridOptions.components || {};
584
+ this.gridOptions.components.AdaptableToolPanel = AdaptableToolPanel_1.getAdaptableToolPanelAgGridComponent(this);
585
+ }
586
+ if (this.agGridHelper.isSideBarDefObject(adaptableSideBarDef)) {
587
+ if (this.gridOptions.api) {
588
+ this.gridOptions.api.setSideBar(adaptableSideBarDef);
589
+ }
590
+ else {
591
+ this.gridOptions.sideBar = adaptableSideBarDef;
604
592
  }
593
+ this.hasAdaptableToolPanel = true;
605
594
  }
606
595
  this.createStatusBars();
607
596
  const checkAgGridContainer = () => {
@@ -683,6 +672,50 @@ class Adaptable {
683
672
  }
684
673
  return (this.adaptableOptions.containerOptions.agGridContainer = agGridContainer);
685
674
  }
675
+ createAdaptableSideBarDef() {
676
+ var _a;
677
+ if (
678
+ // no need to create the sidebar if it is not enabled
679
+ !this.gridOptions.sideBar) {
680
+ return;
681
+ }
682
+ if (this.gridOptions.sideBar === true) {
683
+ // create all tool panels with default settings
684
+ return {
685
+ toolPanels: [
686
+ GeneralConstants.AGGRID_TOOLPANEL_FILTERS,
687
+ GeneralConstants.AGGRID_TOOLPANEL_COLUMNS,
688
+ this.agGridHelper.buildAdaptableToolPanelDef(),
689
+ ],
690
+ };
691
+ }
692
+ else if (typeof this.gridOptions.sideBar === 'string') {
693
+ // there is only one tool panel, and it's the adaptable one => we have to handle it
694
+ if (this.gridOptions.sideBar === GeneralConstants.ADAPTABLE_TOOLPANEL_ID) {
695
+ return {
696
+ toolPanels: [this.agGridHelper.buildAdaptableToolPanelDef()],
697
+ };
698
+ }
699
+ }
700
+ else if (Array.isArray(this.gridOptions.sideBar)) {
701
+ if (!this.gridOptions.sideBar.includes(GeneralConstants.ADAPTABLE_TOOLPANEL_ID)) {
702
+ return;
703
+ }
704
+ // if it's an array, process the tool panel definitions
705
+ const sidebarDef = {};
706
+ sidebarDef.toolPanels = this.agGridHelper.mapToolPanelDefs(this.gridOptions.sideBar);
707
+ return sidebarDef;
708
+ }
709
+ else if (this.agGridHelper.isSideBarDefObject(this.gridOptions.sideBar)) {
710
+ if ((_a = this.gridOptions.sideBar.toolPanels) === null || _a === void 0 ? void 0 : _a.some((toolpanelDef) => typeof toolpanelDef !== 'string' &&
711
+ toolpanelDef.id === GeneralConstants.ADAPTABLE_TOOLPANEL_ID)) {
712
+ // return the boolean flag so that we know that we need the custom AdaptableToolPanel component
713
+ return true;
714
+ }
715
+ // if it's fully-fledged SideBarDef, process its tool panel definitions
716
+ return Object.assign(Object.assign({}, this.gridOptions.sideBar), { toolPanels: this.agGridHelper.mapToolPanelDefs(this.gridOptions.sideBar.toolPanels) });
717
+ }
718
+ }
686
719
  createStatusBars() {
687
720
  var _a, _b;
688
721
  const statusBarOptions = Object.assign({}, this.gridOptions.statusBar);
@@ -1592,7 +1625,7 @@ class Adaptable {
1592
1625
  // see https://www.ag-grid.com/javascript-data-grid/change-detection/#triggering-value-change-detection
1593
1626
  let newValue;
1594
1627
  let dataType = column.dataType;
1595
- newValue = dataType == Enums_1.DataType.Number ? Number(value) : value;
1628
+ newValue = dataType == 'Number' ? Number(value) : value;
1596
1629
  if (dataType == undefined) {
1597
1630
  return; // no point continuing as probably a wrong column
1598
1631
  }
@@ -2151,12 +2184,23 @@ class Adaptable {
2151
2184
  }
2152
2185
  }
2153
2186
  getColDefsForRowEditColumns() {
2154
- var _a;
2155
- if (!((_a = this.adaptableOptions.userInterfaceOptions.rowActionButtons) === null || _a === void 0 ? void 0 : _a.length)) {
2187
+ const actionRowButtons = this.adaptableOptions.userInterfaceOptions.actionOptions.actionRowButtons;
2188
+ if (!(actionRowButtons === null || actionRowButtons === void 0 ? void 0 : actionRowButtons.length)) {
2156
2189
  return [];
2157
2190
  }
2158
- const editButtons = this.adaptableOptions.userInterfaceOptions.rowActionButtons
2191
+ const editButtons = actionRowButtons
2159
2192
  .map((buttonName) => {
2193
+ if (buttonName === 'create') {
2194
+ // we need this dirty hack until ActionColumn support for custom icons is improved
2195
+ const label = rowEditIcons_1.rowAddIcon;
2196
+ return {
2197
+ label,
2198
+ tooltip: 'Create',
2199
+ onClick: () => {
2200
+ this.api.gridApi.openCreateRowForm();
2201
+ },
2202
+ };
2203
+ }
2160
2204
  if (buttonName === 'edit') {
2161
2205
  // we need this dirty hack until ActionColumn support for custom icons is improved
2162
2206
  const label = rowEditIcons_1.rowEditIcon;
@@ -2203,30 +2247,34 @@ class Adaptable {
2203
2247
  return [];
2204
2248
  }
2205
2249
  const rowEditActionColumn = {
2206
- columnId: 'adaptableRowEditButtons',
2250
+ columnId: GeneralConstants_1.ADAPTABLE_ROW_ACTION_BUTTONS,
2207
2251
  actionColumnButton: editButtons,
2208
2252
  };
2209
2253
  return [
2210
2254
  {
2211
2255
  headerName: '',
2212
- colId: 'adaptableRowEditButtons',
2256
+ colId: GeneralConstants_1.ADAPTABLE_ROW_ACTION_BUTTONS,
2213
2257
  hide: false,
2214
2258
  editable: false,
2215
2259
  width: editButtons.length * 42,
2216
2260
  resizable: false,
2261
+ lockVisible: true,
2262
+ suppressColumnsToolPanel: true,
2263
+ suppressFiltersToolPanel: true,
2217
2264
  suppressMenu: true,
2218
2265
  suppressMovable: true,
2219
2266
  filter: false,
2220
2267
  sortable: false,
2221
2268
  enableRowGroup: false,
2222
- pinned: this.adaptableOptions.userInterfaceOptions.rowActionButtonsPosition === 'pinnedRight'
2269
+ pinned: this.adaptableOptions.userInterfaceOptions.actionOptions.actionRowButtonsPosition ===
2270
+ 'pinnedRight'
2223
2271
  ? 'right'
2224
2272
  : 'left',
2225
2273
  cellRenderer: ActionColumnRenderer_1.ActionColumnRenderer,
2226
2274
  cellRendererParams: {
2227
2275
  actionColumn: rowEditActionColumn,
2228
2276
  },
2229
- cellClass: 'adaptableRowEditButtons',
2277
+ cellClass: GeneralConstants_1.ADAPTABLE_ROW_ACTION_BUTTONS,
2230
2278
  type: [GeneralConstants_1.AB_SPECIAL_COLUMN, 'abColDefObject'],
2231
2279
  },
2232
2280
  ];
@@ -2709,6 +2757,7 @@ class Adaptable {
2709
2757
  all_modules_1.Events.EVENT_ROW_GROUP_OPENED,
2710
2758
  all_modules_1.Events.EVENT_COLUMN_VALUE_CHANGED,
2711
2759
  ];
2760
+ // ADD filter event
2712
2761
  this.gridOptions.api.addGlobalListener((this.listenerGlobalColumnEventsThatTriggerAutoLayoutSave = (type) => {
2713
2762
  if (columnEventsThatTriggersAutoLayoutSave.indexOf(type) > -1) {
2714
2763
  this.debouncedSaveGridLayout();
@@ -2722,7 +2771,7 @@ class Adaptable {
2722
2771
  if (this.api.internalApi.isGridInPivotMode()) {
2723
2772
  return;
2724
2773
  }
2725
- if (this.adaptableOptions.generalOptions.hideColumnWhenGrouped === true &&
2774
+ if (this.adaptableOptions.columnOptions.hideColumnWhenGrouped === true &&
2726
2775
  params.source !== 'api') {
2727
2776
  params.columns.forEach((col) => {
2728
2777
  if (col.isVisible()) {
@@ -2822,7 +2871,7 @@ class Adaptable {
2822
2871
  if (this.isDestroyed) {
2823
2872
  return true;
2824
2873
  }
2825
- const columnFilters = this.api.filterApi.getAllColumnFilter();
2874
+ const columnFilters = this.api.filterApi.getColumnFilters();
2826
2875
  const isFilterActive = ArrayExtensions_1.ArrayExtensions.IsNotNullOrEmpty(columnFilters);
2827
2876
  const isQueryActive = StringExtensions_1.StringExtensions.IsNotNullOrEmpty(this.api.queryApi.getCurrentQuery());
2828
2877
  return (isFilterActive ||
@@ -2853,7 +2902,7 @@ class Adaptable {
2853
2902
  try {
2854
2903
  // we then assess filters (if running locally)
2855
2904
  if (evaluateFilterOnClient) {
2856
- const columnFilters = this.api.filterApi.getAllColumnFilter();
2905
+ const columnFilters = this.api.filterApi.getColumnFilters();
2857
2906
  if (columnFilters.length > 0) {
2858
2907
  for (const columnFilter of columnFilters) {
2859
2908
  if (!this.api.filterApi.evaluateColumnFilter(columnFilter, node)) {
@@ -2883,7 +2932,7 @@ class Adaptable {
2883
2932
  this.prepareGrid();
2884
2933
  }
2885
2934
  updateColumnFilterActiveState() {
2886
- const columnFilters = this.api.filterApi.getAllColumnFilter();
2935
+ const columnFilters = this.api.filterApi.getColumnFilters();
2887
2936
  const isFilterActive = ArrayExtensions_1.ArrayExtensions.IsNotNullOrEmpty(columnFilters);
2888
2937
  const columnsWithActiveFilters = {};
2889
2938
  if (isFilterActive) {
@@ -3216,14 +3265,6 @@ class Adaptable {
3216
3265
  const newColumnHeader = (_b = col === null || col === void 0 ? void 0 : col.getColDef()) === null || _b === void 0 ? void 0 : _b.headerName;
3217
3266
  return previousColumnHeader !== newColumnHeader;
3218
3267
  }
3219
- getUserDefinedHeaderName(columnId) {
3220
- const column = this.gridOptions.columnApi.getColumn(columnId);
3221
- if (!column) {
3222
- return columnId;
3223
- }
3224
- const userHeaderName = this.getUserColDefProperty(column.getColId(), 'headerName');
3225
- return userHeaderName !== null && userHeaderName !== void 0 ? userHeaderName : StringExtensions_1.StringExtensions.CamelCaseToHumanText(column.getColDef().field);
3226
- }
3227
3268
  setupColumnFilter({ col, colDef }) {
3228
3269
  this.setColDefProperty(col, 'filter', () => {
3229
3270
  if (!colDef.filter) {
@@ -3703,7 +3744,7 @@ class Adaptable {
3703
3744
  }
3704
3745
  getRowCount() {
3705
3746
  return this.gridOptions.rowData
3706
- ? this.gridOptions.rowData.length
3747
+ ? this.getGridData().length
3707
3748
  : this.gridOptions.api.getDisplayedRowCount();
3708
3749
  }
3709
3750
  getColumnCount() {
@@ -3920,7 +3961,7 @@ class Adaptable {
3920
3961
  checkColumnsDataTypeSet() {
3921
3962
  // check that we have no unknown columns - if we do then ok
3922
3963
  const colDefs = this.api.columnApi.getColumns();
3923
- if (colDefs.some((colDef) => colDef.dataType === Enums_1.DataType.Unknown)) {
3964
+ if (colDefs.some((colDef) => colDef.dataType === 'Unknown')) {
3924
3965
  this.updateColumnsIntoStore();
3925
3966
  }
3926
3967
  }
@@ -4099,7 +4140,7 @@ class Adaptable {
4099
4140
  themeClassNamesToRemove.forEach((cssClassName) => el.classList.remove(cssClassName));
4100
4141
  // remove infinite table classnames
4101
4142
  themesToRemove.forEach((theme) => {
4102
- el.classList.remove(`it--theme-${theme.Name}`);
4143
+ el.classList.remove(`infinite-${theme.Name}`);
4103
4144
  });
4104
4145
  if (this.adaptableOptions.userInterfaceOptions &&
4105
4146
  this.adaptableOptions.userInterfaceOptions.useCustomMacLikeScrollbars &&
@@ -4113,7 +4154,7 @@ class Adaptable {
4113
4154
  const newThemeClassName = GeneralConstants.THEME_STYLE + themeName;
4114
4155
  el.classList.add(newThemeClassName);
4115
4156
  // add infinite table classname for theme
4116
- el.classList.add(`it--theme-${themeName}`);
4157
+ el.classList.add(`infinite-${themeName}`);
4117
4158
  const computedDocumentStyle = getComputedStyle(el);
4118
4159
  const [abLoaded, abThemeLoaded] = ['--ab-loaded', '--ab-theme-loaded'].map((variable) => {
4119
4160
  let val = computedDocumentStyle.getPropertyValue(variable);
@@ -16,7 +16,7 @@ exports.FilterWrapperFactory = (adaptable) => {
16
16
  isFilterActive() {
17
17
  //make the small filter icon to appear when there is a filter
18
18
  return (adaptable.api.filterApi
19
- .getAllColumnFilter()
19
+ .getColumnFilters()
20
20
  .findIndex((x) => x.ColumnId == this.params.column.getColId()) > -1);
21
21
  }
22
22
  doesFilterPass(params) {
@@ -1,9 +1,8 @@
1
1
  import { ColDef, Column, GridOptions, ICellRendererFunc, SideBarDef, ToolPanelDef } from '@ag-grid-community/all-modules';
2
2
  import { IAdaptable } from '../AdaptableInterfaces/IAdaptable';
3
- import { AdaptableColumn, AdaptableColumnGroup } from '../PredefinedConfig/Common/AdaptableColumn';
3
+ import { AdaptableColumn, AdaptableColumnDataType, AdaptableColumnGroup } from '../PredefinedConfig/Common/AdaptableColumn';
4
4
  import { AdaptableNodeComparerFunction } from '../PredefinedConfig/Common/AdaptableComparerFunction';
5
- import { DataType } from '../PredefinedConfig/Common/Enums';
6
- import { AdaptableModule } from '../PredefinedConfig/Common/Types';
5
+ import { AdaptableColumnType, AdaptableModule } from '../PredefinedConfig/Common/Types';
7
6
  import { IModule } from '../Strategy/Interface/IModule';
8
7
  import { IPPStyle } from '../Utilities/Interface/IPPStyle';
9
8
  import { FormatColumn } from '../PredefinedConfig/FormatColumnState';
@@ -26,9 +25,9 @@ export declare class agGridHelper {
26
25
  getCleanValue(value: string): string | undefined;
27
26
  getRenderedValue(colDef: ColDef, valueToRender: any): any;
28
27
  createAdaptableColumnFromAgGridColumn(agGridColumn: Column, colsToGroups: Record<string, AdaptableColumnGroup>): AdaptableColumn;
29
- createAdaptableSideBarDefs(showFilterPanel: boolean, showColumnsPanel: boolean): SideBarDef;
30
- createAdaptableToolPanel(): ToolPanelDef;
31
- orderToolPanels(toolPanelDefs: (ToolPanelDef | string)[]): void;
28
+ buildAdaptableToolPanelDef(): ToolPanelDef;
29
+ isSideBarDefObject(sidebarDef: unknown): sidebarDef is SideBarDef;
30
+ mapToolPanelDefs(toolPanelDefs?: (ToolPanelDef | string)[]): (ToolPanelDef | string)[];
32
31
  reselectSelectedCells(): void;
33
32
  fireSelectionChangedEvent(): void;
34
33
  private isColumnReadonly;
@@ -46,8 +45,8 @@ export declare class agGridHelper {
46
45
  private isColumnGrouped;
47
46
  private isColumnSparkline;
48
47
  private getColumnDataType;
49
- private getabColDefValue;
50
- getAgGridDataType(dataType: DataType): string;
48
+ private getAbColDefValue;
49
+ getAgGridDataType(dataType: AdaptableColumnDataType): AdaptableColumnType;
51
50
  checkShouldClearExistingFiltersOrSearches(): void;
52
51
  runAdaptableGroupComparerFunction(): AdaptableNodeComparerFunction;
53
52
  getCurrentIPPStyle(): IPPStyle;