@adaptabletools/adaptable 12.0.0-canary.3 → 12.0.0-canary.4

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 (402) hide show
  1. package/base.css +26 -0
  2. package/bundle.cjs.js +127 -127
  3. package/index.css +34 -0
  4. package/package.json +2 -2
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableOptions/ActionOptions.d.ts +181 -1
  8. package/src/AdaptableOptions/AdaptableOptions.d.ts +5 -0
  9. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +15 -2
  10. package/src/AdaptableOptions/EditOptions.d.ts +1 -80
  11. package/src/AdaptableOptions/FinancePluginOptions.d.ts +3 -3
  12. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -112
  13. package/src/Api/ActionApi.d.ts +24 -0
  14. package/src/Api/{Events/RowFormSubmitted.js → ActionApi.js} +0 -0
  15. package/src/Api/AdaptableApi.d.ts +5 -0
  16. package/src/Api/ConfigApi.d.ts +1 -1
  17. package/src/Api/EventApi.d.ts +9 -9
  18. package/src/Api/Events/ActionRowSubmitted.d.ts +34 -0
  19. package/src/Api/Events/ActionRowSubmitted.js +2 -0
  20. package/src/Api/GridApi.d.ts +0 -14
  21. package/src/Api/Implementation/ActionApiImpl.d.ts +8 -0
  22. package/src/Api/Implementation/ActionApiImpl.js +56 -0
  23. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
  24. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  25. package/src/Api/Implementation/ApiBase.d.ts +2 -1
  26. package/src/Api/Implementation/ApiBase.js +3 -0
  27. package/src/Api/Implementation/ColumnApiImpl.js +2 -2
  28. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  29. package/src/Api/Implementation/GridApiImpl.d.ts +0 -3
  30. package/src/Api/Implementation/GridApiImpl.js +0 -44
  31. package/src/Api/Implementation/StatusBarApiImpl.d.ts +4 -3
  32. package/src/Api/Implementation/StatusBarApiImpl.js +2 -2
  33. package/src/Api/Implementation/TeamSharingApiImpl.js +2 -1
  34. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +1 -2
  35. package/src/Api/Implementation/UserInterfaceApiImpl.js +0 -4
  36. package/src/Api/StatusBarApi.d.ts +10 -3
  37. package/src/Api/UserInterfaceApi.d.ts +1 -5
  38. package/src/PredefinedConfig/Common/AdaptableAlert.js +4 -2
  39. package/src/PredefinedConfig/Common/AdaptableColumn.js +2 -1
  40. package/src/PredefinedConfig/Common/AdaptableForm.d.ts +1 -1
  41. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +24 -18
  42. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +2 -4
  43. package/src/PredefinedConfig/Common/AdaptablePredicate.js +33 -31
  44. package/src/PredefinedConfig/Common/AdaptableQuery.js +2 -1
  45. package/src/PredefinedConfig/Common/Menu.d.ts +3 -3
  46. package/src/PredefinedConfig/Common/Types.d.ts +1 -1
  47. package/src/PredefinedConfig/StatusBarState.d.ts +5 -2
  48. package/src/PredefinedConfig/Uuid.js +2 -1
  49. package/src/Redux/ActionsReducers/AlertRedux.js +16 -8
  50. package/src/Redux/ActionsReducers/ApplicationRedux.js +8 -4
  51. package/src/Redux/ActionsReducers/BulkUpdateRedux.js +6 -3
  52. package/src/Redux/ActionsReducers/CalculatedColumnRedux.js +10 -5
  53. package/src/Redux/ActionsReducers/CellSummaryRedux.js +2 -1
  54. package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +14 -7
  55. package/src/Redux/ActionsReducers/CustomSortRedux.js +14 -7
  56. package/src/Redux/ActionsReducers/DashboardRedux.js +24 -12
  57. package/src/Redux/ActionsReducers/ExportRedux.js +16 -8
  58. package/src/Redux/ActionsReducers/FlashingCellRedux.js +16 -8
  59. package/src/Redux/ActionsReducers/FormatColumnRedux.js +14 -7
  60. package/src/Redux/ActionsReducers/FreeTextColumnRedux.js +14 -7
  61. package/src/Redux/ActionsReducers/GridRedux.js +38 -19
  62. package/src/Redux/ActionsReducers/LayoutRedux.js +30 -15
  63. package/src/Redux/ActionsReducers/PluginsRedux.js +4 -2
  64. package/src/Redux/ActionsReducers/PlusMinusRedux.js +16 -8
  65. package/src/Redux/ActionsReducers/PopupRedux.js +37 -19
  66. package/src/Redux/ActionsReducers/QueryRedux.js +12 -6
  67. package/src/Redux/ActionsReducers/QuickSearchRedux.js +8 -4
  68. package/src/Redux/ActionsReducers/ScheduleRedux.js +58 -29
  69. package/src/Redux/ActionsReducers/ShortcutRedux.js +14 -7
  70. package/src/Redux/ActionsReducers/SmartEditRedux.js +6 -3
  71. package/src/Redux/ActionsReducers/StatusBarRedux.js +10 -5
  72. package/src/Redux/ActionsReducers/SystemRedux.js +103 -51
  73. package/src/Redux/ActionsReducers/SystemStatusRedux.js +4 -2
  74. package/src/Redux/ActionsReducers/TeamSharingRedux.js +22 -11
  75. package/src/Redux/ActionsReducers/ThemeRedux.js +10 -5
  76. package/src/Redux/ActionsReducers/ToolPanelRedux.js +16 -8
  77. package/src/Redux/DeadRedux.js +16 -8
  78. package/src/Redux/Store/AdaptableReduxMerger.js +2 -1
  79. package/src/Redux/Store/AdaptableStore.js +4 -2
  80. package/src/Strategy/AlertModule.d.ts +2 -18
  81. package/src/Strategy/AlertModule.js +2 -1
  82. package/src/Strategy/ConditionalStyleModule.d.ts +2 -10
  83. package/src/Strategy/DashboardModule.js +3 -1
  84. package/src/Strategy/DataChangeHistoryModule.d.ts +2 -8
  85. package/src/Strategy/DataSetModule.d.ts +2 -13
  86. package/src/Strategy/ExportModule.d.ts +2 -13
  87. package/src/Strategy/ExportModule.js +1 -1
  88. package/src/Strategy/FilterModule.d.ts +2 -14
  89. package/src/Strategy/FilterModule.js +1 -1
  90. package/src/Strategy/FlashingCellModule.d.ts +2 -9
  91. package/src/Strategy/GridInfoModule.js +6 -2
  92. package/src/Strategy/LayoutModule.d.ts +2 -17
  93. package/src/Strategy/LayoutModule.js +6 -3
  94. package/src/Strategy/PlusMinusModule.d.ts +2 -9
  95. package/src/Strategy/QuickSearchModule.d.ts +2 -7
  96. package/src/Strategy/ScheduleModule.d.ts +2 -13
  97. package/src/Strategy/ShortcutModule.d.ts +2 -9
  98. package/src/Strategy/StatusBarModule.js +2 -2
  99. package/src/Strategy/SystemStatusModule.d.ts +2 -7
  100. package/src/Strategy/ThemeModule.d.ts +2 -8
  101. package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +2 -1
  102. package/src/Strategy/Utilities/getAlertPreviewViewItems.js +2 -1
  103. package/src/Strategy/Utilities/getCustomSortColumnViewItems.js +2 -1
  104. package/src/Strategy/Utilities/getCustomSortSortOrderViewItems.js +2 -1
  105. package/src/Strategy/Utilities/getExportColumnsViewItems.js +2 -1
  106. package/src/Strategy/Utilities/getExportRowsViewItems.js +2 -1
  107. package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
  108. package/src/Strategy/Utilities/getFlashingCellDurationViewItems.js +2 -1
  109. package/src/Strategy/Utilities/getFlashingCellStyleViewItems.d.ts +2 -6
  110. package/src/Strategy/Utilities/getFlashingCellStyleViewItems.js +2 -1
  111. package/src/Strategy/Utilities/getFlashingTargetViewItems.js +2 -1
  112. package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +2 -1
  113. package/src/Strategy/Utilities/getFormatColumnStyleViewItems.js +2 -1
  114. package/src/Strategy/Utilities/getObjectTagsViewItems.js +2 -1
  115. package/src/Strategy/Utilities/getRuleViewItems.js +2 -1
  116. package/src/Strategy/Utilities/getScopeViewItems.js +2 -1
  117. package/src/Strategy/Utilities/getShortcutSettingsViewItems.js +2 -1
  118. package/src/Strategy/Utilities/getStyleViewItems.js +2 -1
  119. package/src/Utilities/Constants/GeneralConstants.js +2 -1
  120. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +13 -13
  121. package/src/Utilities/ExpressionFunctions/dateUtils.js +2 -1
  122. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +20 -10
  123. package/src/Utilities/Helpers/AdaptableHelper.js +4 -3
  124. package/src/Utilities/Helpers/DateHelper.js +10 -5
  125. package/src/Utilities/Helpers/Helper.js +2 -1
  126. package/src/Utilities/Helpers/LoggingHelper.js +2 -1
  127. package/src/Utilities/Helpers/StyleHelper.js +8 -4
  128. package/src/Utilities/MenuItem.d.ts +4 -3
  129. package/src/Utilities/MenuItem.js +9 -3
  130. package/src/Utilities/ObjectFactory.js +1 -0
  131. package/src/Utilities/Services/Interface/IRowEditService.d.ts +3 -3
  132. package/src/Utilities/Services/ModuleService.js +3 -1
  133. package/src/Utilities/Services/RowEditService.d.ts +6 -6
  134. package/src/Utilities/Services/RowEditService.js +24 -25
  135. package/src/Utilities/isAdaptableObject.js +2 -1
  136. package/src/Utilities/isMacLike.js +2 -1
  137. package/src/Utilities/license/decode.js +1 -1
  138. package/src/Utilities/reorder.js +2 -1
  139. package/src/Utilities/runIfNotResolvedIn.js +2 -1
  140. package/src/Utilities/waitForCondition.d.ts +1 -1
  141. package/src/Utilities/waitForCondition.js +2 -1
  142. package/src/View/AdaptableContext.js +2 -1
  143. package/src/View/AdaptableView.js +2 -1
  144. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +2 -1
  145. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +2 -1
  146. package/src/View/AdaptableWizardView/Utils.js +2 -1
  147. package/src/View/AdaptableWizardView/Wizard.js +4 -2
  148. package/src/View/AdaptableWizardView/helper.js +6 -3
  149. package/src/View/Alert/ActiveAlertsPanel.js +2 -1
  150. package/src/View/Alert/AlertEmptyView.js +2 -1
  151. package/src/View/Alert/AlertStatusSubPanel.js +2 -1
  152. package/src/View/Alert/Utilities/getAlertButtonStyle.js +2 -1
  153. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +4 -2
  154. package/src/View/Alert/Wizard/AlertButtonsEditor.js +2 -1
  155. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +6 -3
  156. package/src/View/Alert/Wizard/AlertRulesWizardSection.js +4 -2
  157. package/src/View/Alert/Wizard/AlertScopeWizardSection.js +2 -1
  158. package/src/View/Alert/Wizard/AlertWizard.js +2 -1
  159. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +2 -1
  160. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +4 -2
  161. package/src/View/Alert/Wizard/isValidAlertRules.js +2 -1
  162. package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
  163. package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.js +2 -1
  164. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +6 -3
  165. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +6 -3
  166. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -1
  167. package/src/View/CellSummary/CellSummaryPopover.js +2 -1
  168. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +2 -1
  169. package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -1
  170. package/src/View/ColorPicker.d.ts +5 -1
  171. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  172. package/src/View/Components/AdaptableDateInput/index.js +10 -10
  173. package/src/View/Components/AdaptableInput/index.d.ts +2 -2
  174. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +4 -2
  175. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +4 -2
  176. package/src/View/Components/Buttons/ButtonClone.js +2 -1
  177. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  178. package/src/View/Components/Buttons/ButtonEdit.js +2 -1
  179. package/src/View/Components/Buttons/ButtonNew.js +2 -1
  180. package/src/View/Components/ColumnSelector/index.js +2 -1
  181. package/src/View/Components/EntityRulesEditor/index.js +6 -3
  182. package/src/View/Components/ExpressionWizard.js +2 -1
  183. package/src/View/Components/ExternalRenderer.js +2 -1
  184. package/src/View/Components/FilterForm/FilterForm.js +2 -1
  185. package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
  186. package/src/View/Components/FilterForm/ListBoxMenu.js +2 -2
  187. package/src/View/Components/FilterForm/QuickFilterForm.js +5 -3
  188. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  189. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +2 -1
  190. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -2
  191. package/src/View/Components/ListBox/DualListBoxEditor.js +2 -1
  192. package/src/View/Components/ModuleValueSelector/index.js +2 -1
  193. package/src/View/Components/NewScopeComponent.js +6 -3
  194. package/src/View/Components/Panels/PanelFooter.js +2 -1
  195. package/src/View/Components/Panels/PanelWithImage.d.ts +1 -429
  196. package/src/View/Components/Panels/PanelWithImage.js +2 -0
  197. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -1
  198. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +2 -1
  199. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +2 -1
  200. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +2 -1
  201. package/src/View/Components/Popups/AdaptablePopup/CustomSettingsPanelView.js +2 -1
  202. package/src/View/Components/Popups/AdaptablePopup/Navigation.js +5 -5
  203. package/src/View/Components/Popups/AdaptablePopup/PopupContext.js +2 -1
  204. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +2 -1
  205. package/src/View/Components/Popups/AdaptablePopup/TopBar.js +6 -5
  206. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +2 -1
  207. package/src/View/Components/Popups/AdaptablePopupAlert.js +4 -4
  208. package/src/View/Components/Popups/AdaptablePopupPrompt.js +2 -1
  209. package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +2 -1
  210. package/src/View/Components/Popups/AdaptableToaster.js +2 -1
  211. package/src/View/Components/Popups/FormPopups/FormPopups.js +4 -2
  212. package/src/View/Components/Popups/Utilities.js +8 -4
  213. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +2 -1
  214. package/src/View/Components/Selectors/ColumnSelector.js +2 -1
  215. package/src/View/Components/TagValueSelector/index.js +4 -2
  216. package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +1 -1
  217. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +5 -1
  218. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +2 -1
  219. package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
  220. package/src/View/Components/ToolPanel/ToolPanelPopup.js +1 -1
  221. package/src/View/Components/ToolPanel/ToolPanelWrapper.js +2 -1
  222. package/src/View/Components/WizardSummaryPage.js +2 -1
  223. package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +2 -1
  224. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +4 -2
  225. package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +2 -1
  226. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +2 -1
  227. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +6 -3
  228. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +6 -3
  229. package/src/View/CustomSort/Wizard/CustomSortWizard.js +2 -1
  230. package/src/View/Dashboard/CustomDashboardButton.js +2 -1
  231. package/src/View/Dashboard/CustomToolbarWrapper.js +2 -1
  232. package/src/View/Dashboard/Dashboard.d.ts +1 -1
  233. package/src/View/Dashboard/Dashboard.js +4 -3
  234. package/src/View/Dashboard/DashboardPopup.js +1 -1
  235. package/src/View/Dashboard/ModuleToolbarWrapper.js +2 -1
  236. package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +7 -0
  237. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +6 -6
  238. package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.js +2 -1
  239. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +2 -1
  240. package/src/View/DataChangeHistory/buildActionColumnButton.js +13 -9
  241. package/src/View/DataSet/DataSetSelector.js +2 -1
  242. package/src/View/DataSet/DataSetStatusPanelPopover.js +2 -1
  243. package/src/View/DataSet/DataSetViewPanel.d.ts +1 -1
  244. package/src/View/Export/ExportSelector.js +2 -1
  245. package/src/View/Export/ExportViewPanel.d.ts +1 -1
  246. package/src/View/Export/ReportExportDropdown.js +2 -1
  247. package/src/View/Export/Wizard/NewReportWizard.js +4 -2
  248. package/src/View/Export/Wizard/ReportColumnsWizardSection.js +6 -3
  249. package/src/View/Export/Wizard/ReportNameWizardSection.js +6 -3
  250. package/src/View/Export/Wizard/ReportRowsWizardSection.js +6 -3
  251. package/src/View/Filter/ActiveFiltersPanel.js +2 -1
  252. package/src/View/Filter/FilterStatusBarSubPanelPopover.js +2 -1
  253. package/src/View/Filter/FilterSummary.d.ts +1 -1
  254. package/src/View/Filter/FilterViewPanel.d.ts +1 -1
  255. package/src/View/FlashingCell/FlashingCellStyle.js +2 -1
  256. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +4 -2
  257. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +2 -1
  258. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +10 -5
  259. package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.js +6 -3
  260. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +2 -1
  261. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +2 -1
  262. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +8 -4
  263. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +4 -2
  264. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +4 -2
  265. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +4 -2
  266. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +6 -3
  267. package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +2 -1
  268. package/src/View/GridInfo/AdaptableObjectsSummary.js +2 -1
  269. package/src/View/GridInfo/AdaptableOptionsComponent.js +2 -1
  270. package/src/View/GridInfo/GridInfoPopup.js +5 -5
  271. package/src/View/KeyHint.js +2 -1
  272. package/src/View/Layout/EditCurrentLayoutButton.js +2 -1
  273. package/src/View/Layout/LayoutCloneButton.js +2 -1
  274. package/src/View/Layout/LayoutEditorStandalonePopup.js +2 -1
  275. package/src/View/Layout/LayoutPopup.d.ts +1 -1
  276. package/src/View/Layout/LayoutRadioSelector.js +2 -1
  277. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +2 -1
  278. package/src/View/Layout/LayoutViewPanel.d.ts +1 -1
  279. package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.js +2 -1
  280. package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +2 -1
  281. package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +2 -1
  282. package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +2 -1
  283. package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +2 -1
  284. package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +2 -1
  285. package/src/View/Layout/Wizard/LayoutEditor/reducer.js +4 -2
  286. package/src/View/Layout/Wizard/LayoutEditor/utils.js +2 -1
  287. package/src/View/License/LicenseWatermark.js +1 -1
  288. package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.js +2 -1
  289. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +6 -3
  290. package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +2 -1
  291. package/src/View/Query/EditCurrentQueryButton.js +2 -1
  292. package/src/View/Query/ExpandedQueryPopup.js +2 -1
  293. package/src/View/Query/QueryViewPanel.d.ts +1 -1
  294. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +6 -3
  295. package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +6 -3
  296. package/src/View/QuickSearch/QuickSearchStatusBarContent.js +2 -1
  297. package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +1 -1
  298. package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -1
  299. package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +2 -1
  300. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +4 -2
  301. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +2 -1
  302. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +2 -1
  303. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +2 -1
  304. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +2 -1
  305. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +2 -1
  306. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +4 -2
  307. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +2 -1
  308. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +2 -1
  309. package/src/View/Schedule/Wizard/ScheduleWizard.js +2 -1
  310. package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +2 -1
  311. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +6 -3
  312. package/src/View/Shortcut/Wizard/ShortcutWizard.js +2 -1
  313. package/src/View/SpecialColumnSettingsWizardStep.js +2 -1
  314. package/src/View/StateManagement/StateManagementPopup.js +2 -1
  315. package/src/View/StateManagement/StateManagementViewPanel.js +2 -1
  316. package/src/View/StateManagement/components/ClearButton.js +2 -1
  317. package/src/View/StateManagement/components/ExportDropdown.js +2 -1
  318. package/src/View/StateManagement/components/LoadButton.js +2 -1
  319. package/src/View/StateManagement/handleExportState.js +2 -1
  320. package/src/View/StatusBar/AdaptableStatusBar.js +2 -1
  321. package/src/View/StatusBar/StatusBarPanel.js +2 -1
  322. package/src/View/StatusBar/StatusBarPopup.js +5 -4
  323. package/src/View/SystemStatus/SystemStatusStatusBarContent.js +2 -1
  324. package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
  325. package/src/View/SystemStatus/Utilities/getStatusItemStyle.js +2 -1
  326. package/src/View/Theme/ThemeStatusPanelPopover.js +2 -1
  327. package/src/View/UIHelper.d.ts +2 -0
  328. package/src/View/UIHelper.js +12 -11
  329. package/src/View/Wizard/AdaptableWizard.js +2 -1
  330. package/src/View/Wizard/ObjectTagsWizardSection.js +4 -2
  331. package/src/View/Wizard/OnePageAdaptableWizard.js +10 -5
  332. package/src/View/Wizard/OnePageWizards.js +8 -4
  333. package/src/View/Wizard/useKeyboardNavigation.js +2 -1
  334. package/src/View/renderWithAdaptableContext.js +2 -1
  335. package/src/agGrid/ActionColumnRenderer.d.ts +1 -1
  336. package/src/agGrid/ActionColumnRenderer.js +1 -1
  337. package/src/agGrid/Adaptable.js +28 -26
  338. package/src/agGrid/CheckboxRenderer.js +2 -1
  339. package/src/agGrid/FilterWrapper.js +2 -1
  340. package/src/agGrid/FloatingFilterWrapper.js +2 -1
  341. package/src/agGrid/PercentBarRenderer.js +2 -1
  342. package/src/agGrid/agGridHelper.js +3 -1
  343. package/src/agGrid/agGridMenuHelper.js +13 -10
  344. package/src/agGrid/createAgStatusPanelComponent.js +2 -1
  345. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +8 -5
  346. package/src/components/AdaptableIconComponent/index.d.ts +10 -0
  347. package/src/components/AdaptableIconComponent/index.js +40 -0
  348. package/src/components/CheckBox/index.js +2 -1
  349. package/src/components/CodeBlock/index.js +2 -1
  350. package/src/components/Dashboard/DashboardManager.js +1 -1
  351. package/src/components/Datepicker/DatepickerContext.js +2 -1
  352. package/src/components/Datepicker/index.d.ts +1 -1
  353. package/src/components/DragAndDropContext/ModuleManager.d.ts +1 -0
  354. package/src/components/DragAndDropContext/ModuleManager.js +5 -4
  355. package/src/components/DragAndDropContext/UnusedPanel.d.ts +3 -2
  356. package/src/components/DragAndDropContext/UnusedPanel.js +14 -12
  357. package/src/components/EllipsisContainer/index.js +4 -2
  358. package/src/components/ExpressionEditor/EditorContext.js +2 -1
  359. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +2 -1
  360. package/src/components/ExpressionEditor/NamedQueryContext.js +3 -1
  361. package/src/components/FileDroppable/index.js +2 -1
  362. package/src/components/FormLayout/index.js +2 -1
  363. package/src/components/Input/index.d.ts +1 -1
  364. package/src/components/List/ListGroupItem/index.d.ts +2 -4
  365. package/src/components/Loader/Loader.js +4 -2
  366. package/src/components/Logo/index.js +2 -1
  367. package/src/components/Modal/Backdrop.js +2 -1
  368. package/src/components/Modal/index.js +2 -1
  369. package/src/components/OverlayTrigger/Overlay.js +2 -1
  370. package/src/components/OverlayTrigger/index.js +2 -1
  371. package/src/components/OverlayTrigger/utils.js +6 -3
  372. package/src/components/PopupWithFooter.d.ts +1 -1
  373. package/src/components/ProgressIndicator/ProgressIndicator.js +2 -1
  374. package/src/components/Radio/index.js +4 -2
  375. package/src/components/ResizeObserver/getResizeObserverObject.js +2 -1
  376. package/src/components/ResizeObserver/index.js +6 -3
  377. package/src/components/SelectList.js +2 -1
  378. package/src/components/SelectableList/index.js +2 -1
  379. package/src/components/SimpleButton/index.d.ts +2 -1
  380. package/src/components/SimpleButton/index.js +19 -6
  381. package/src/components/StylePreview.js +2 -1
  382. package/src/components/Tabs/index.js +6 -3
  383. package/src/components/Textarea/index.d.ts +5 -1
  384. package/src/components/ToggleButton/index.js +2 -1
  385. package/src/components/WindowModal/WindowModal.js +2 -1
  386. package/src/components/WindowModal/useStacking.js +2 -1
  387. package/src/components/icons/DefaultIcon.js +2 -1
  388. package/src/components/icons/index.d.ts +3 -1
  389. package/src/components/icons/index.js +10 -2
  390. package/src/components/utils/useContainerScrollObserver/index.js +2 -1
  391. package/src/components/utils/useGlobalEvent.js +2 -1
  392. package/src/components/utils/useLatest.js +2 -1
  393. package/src/components/utils/useRerender.js +2 -1
  394. package/src/components/utils/uuid.js +2 -1
  395. package/src/metamodel/adaptable.metamodel.d.ts +145 -111
  396. package/src/metamodel/adaptable.metamodel.js +195 -172
  397. package/src/types.d.ts +6 -4
  398. package/version.d.ts +1 -1
  399. package/version.js +1 -1
  400. package/src/Api/Events/RowFormSubmitted.d.ts +0 -34
  401. package/src/components/ApplicationIcon.d.ts +0 -6
  402. package/src/components/ApplicationIcon.js +0 -13
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getFlashingTargetViewItems = void 0;
4
- exports.getFlashingTargetViewItems = (flashingCell) => {
4
+ const getFlashingTargetViewItems = (flashingCell) => {
5
5
  return {
6
6
  name: 'Target',
7
7
  values: Array.isArray(flashingCell.FlashTarget)
@@ -9,3 +9,4 @@ exports.getFlashingTargetViewItems = (flashingCell) => {
9
9
  : [flashingCell.FlashTarget],
10
10
  };
11
11
  };
12
+ exports.getFlashingTargetViewItems = getFlashingTargetViewItems;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getFormatColumnSettingsViewItems = void 0;
4
- exports.getFormatColumnSettingsViewItems = (calculatedColumn) => {
4
+ const getFormatColumnSettingsViewItems = (calculatedColumn) => {
5
5
  var _a;
6
6
  const values = [
7
7
  `Cell alignment: ${(_a = calculatedColumn.CellAlignment) !== null && _a !== void 0 ? _a : 'default'}`,
@@ -13,3 +13,4 @@ exports.getFormatColumnSettingsViewItems = (calculatedColumn) => {
13
13
  values,
14
14
  };
15
15
  };
16
+ exports.getFormatColumnSettingsViewItems = getFormatColumnSettingsViewItems;
@@ -5,6 +5,7 @@ const tslib_1 = require("tslib");
5
5
  const React = tslib_1.__importStar(require("react"));
6
6
  const rebass_1 = require("rebass");
7
7
  const FormatColumnStyleWizardSection_1 = require("../../View/FormatColumn/Wizard/FormatColumnStyleWizardSection");
8
- exports.getFormatColumnStyleViewItems = (formatColumn, api) => {
8
+ const getFormatColumnStyleViewItems = (formatColumn, api) => {
9
9
  return React.createElement(rebass_1.Box, { mt: 2 }, FormatColumnStyleWizardSection_1.renderFormatColumnStyleSummary(formatColumn, api));
10
10
  };
11
+ exports.getFormatColumnStyleViewItems = getFormatColumnStyleViewItems;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getObjectTagsViewItems = void 0;
4
- exports.getObjectTagsViewItems = (object, api) => {
4
+ const getObjectTagsViewItems = (object, api) => {
5
5
  var _a;
6
6
  if (!api.internalApi.shouldDisplayTagSections()) {
7
7
  return;
@@ -11,3 +11,4 @@ exports.getObjectTagsViewItems = (object, api) => {
11
11
  values: (_a = object === null || object === void 0 ? void 0 : object.Tags) === null || _a === void 0 ? void 0 : _a.map((tag) => api.internalApi.getLabelForTag(tag)),
12
12
  };
13
13
  };
14
+ exports.getObjectTagsViewItems = getObjectTagsViewItems;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuleViewItems = void 0;
4
- exports.getRuleViewItems = (rule, api) => {
4
+ const getRuleViewItems = (rule, api) => {
5
5
  return {
6
6
  name: 'Condition',
7
7
  values: [
@@ -11,3 +11,4 @@ exports.getRuleViewItems = (rule, api) => {
11
11
  ],
12
12
  };
13
13
  };
14
+ exports.getRuleViewItems = getRuleViewItems;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getScopeViewItems = void 0;
4
- exports.getScopeViewItems = (scope, api) => {
4
+ const getScopeViewItems = (scope, api) => {
5
5
  let values = [];
6
6
  if ('ColumnIds' in scope && Array.isArray(scope.ColumnIds)) {
7
7
  values = scope.ColumnIds;
@@ -19,3 +19,4 @@ exports.getScopeViewItems = (scope, api) => {
19
19
  values,
20
20
  };
21
21
  };
22
+ exports.getScopeViewItems = getScopeViewItems;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getShortcutSettingsViewItems = void 0;
4
- exports.getShortcutSettingsViewItems = (shortcut) => {
4
+ const getShortcutSettingsViewItems = (shortcut) => {
5
5
  var _a, _b;
6
6
  const values = [
7
7
  `Shortcut Key: ${shortcut.ShortcutKey || 'Not selected'}`,
@@ -13,3 +13,4 @@ exports.getShortcutSettingsViewItems = (shortcut) => {
13
13
  values,
14
14
  };
15
15
  };
16
+ exports.getShortcutSettingsViewItems = getShortcutSettingsViewItems;
@@ -7,9 +7,10 @@ const StylePreview_1 = require("../../components/StylePreview");
7
7
  const StyleComponent = (props) => {
8
8
  return React.createElement(StylePreview_1.StylePreview, { styleObject: props.data.Style });
9
9
  };
10
- exports.getStyleViewItems = () => {
10
+ const getStyleViewItems = () => {
11
11
  return {
12
12
  name: 'Style',
13
13
  view: StyleComponent,
14
14
  };
15
15
  };
16
+ exports.getStyleViewItems = getStyleViewItems;
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.THEME_STYLE = exports.SELECTED_ROWS_REPORT = exports.SELECTED_CELLS_REPORT = exports.CURRENT_DATA_REPORT = exports.ALL_DATA_REPORT = exports.VISUAL_DATA_REPORT = exports.SYSTEM_THEMES = exports.SMART_EDIT_MATH_OPERATION_STATE_PROPERTY = exports.SMART_EDIT_VALUE_STATE_PROPERTY = exports.QUICK_SEARCH_STYLE_STATE_PROPERTY = exports.QUICK_SEARCH_TEXT_STATE_PROPERTY = exports.CURRENT_THEME_STATE_PROPERTY = exports.FLASHING_CELL_DEFAULT_DURATION_STATE_PROPERTY = exports.FLASHING_CELL_DEFAULT_DOWN_COLOR_STATE_PROPERTY = exports.FLASHING_CELL_DEFAULT_UP_COLOR_STATE_PROPERTY = exports.CURRENT_REPORT_STATE_PROPERTY = exports.CURRENT_LAYOUT_STATE_PROPERTY = exports.SUMMARY_OPERATION_STATE_PROPERTY = exports.ALERT_DEFAULT_SHOW_POPUP = exports.ALERT_DEFAULT_MESSAGE_TYPE = exports.PLUS_MINUS_DEFAULT_NUDGE_VALUE = exports.DEFAULT_LIVE_REPORT_THROTTLE_TIME = exports.THEME_DEFAULT_CURRENT_THEME = exports.SYSTEM_DEFAULT_SYSTEM_STATUS_TYPE = exports.CELL_SUMMARY_DEFAULT_OPERATION = exports.QUICK_SEARCH_DEBOUNCE_TIME = exports.QUICK_SEARCH_DEFAULT_FORE_COLOR = exports.QUICK_SEARCH_DEFAULT_BACK_COLOR = exports.SYSTEM_STATUS_DEFAULT_MAX_MESSAGES_IN_STORE = exports.ADAPTABLE_ROW_ACTION_BUTTONS_FRIENDLY_NAME = exports.ADAPTABLE_ROW_ACTION_BUTTONS = exports.AG_GRID_PIVOT_COLUMN = exports.AG_GRID_GROUPED_COLUMN = exports.HALF_SECOND = exports.AB_SPECIAL_COLUMN = exports.EMPTY_ARRAY = exports.EMPTY_STRING = exports.FILTER_THROTTLE = exports.FILTER_NEVER = exports.FILTER_ALWAYS = exports.ALL_COLUMN_VALUES = exports.READ_ONLY_STYLE = exports.MENU_PREFIX = exports.AGGRID_TOOLPANEL_COLUMNS = exports.AGGRID_TOOLPANEL_FILTERS = exports.ADAPTABLE_TOOLPANEL_COMPONENT = exports.ADAPTABLE_TOOLPANEL_ID = exports.ADAPTABLE = exports.ADAPTABLE_ID = exports.USER_NAME = exports.DARK_THEME = exports.LIGHT_THEME = exports.DEFAULT_LAYOUT = exports.MISSING_COLUMN = exports.AUTOGENERATED_PK_COLUMN = void 0;
3
+ exports.VISUAL_DATA_REPORT = exports.SYSTEM_THEMES = exports.SMART_EDIT_MATH_OPERATION_STATE_PROPERTY = exports.SMART_EDIT_VALUE_STATE_PROPERTY = exports.QUICK_SEARCH_STYLE_STATE_PROPERTY = exports.QUICK_SEARCH_TEXT_STATE_PROPERTY = exports.CURRENT_THEME_STATE_PROPERTY = exports.FLASHING_CELL_DEFAULT_DURATION_STATE_PROPERTY = exports.FLASHING_CELL_DEFAULT_DOWN_COLOR_STATE_PROPERTY = exports.FLASHING_CELL_DEFAULT_UP_COLOR_STATE_PROPERTY = exports.CURRENT_REPORT_STATE_PROPERTY = exports.CURRENT_LAYOUT_STATE_PROPERTY = exports.SUMMARY_OPERATION_STATE_PROPERTY = exports.ALERT_DEFAULT_SHOW_POPUP = exports.ALERT_DEFAULT_MESSAGE_TYPE = exports.PLUS_MINUS_DEFAULT_NUDGE_VALUE = exports.DEFAULT_LIVE_REPORT_THROTTLE_TIME = exports.THEME_DEFAULT_CURRENT_THEME = exports.SYSTEM_DEFAULT_SYSTEM_STATUS_TYPE = exports.CELL_SUMMARY_DEFAULT_OPERATION = exports.QUICK_SEARCH_DEBOUNCE_TIME = exports.QUICK_SEARCH_DEFAULT_FORE_COLOR = exports.QUICK_SEARCH_DEFAULT_BACK_COLOR = exports.SYSTEM_STATUS_DEFAULT_MAX_MESSAGES_IN_STORE = exports.ADAPTABLE_ROW_ACTION_BUTTONS_FRIENDLY_NAME = exports.ADAPTABLE_ROW_ACTION_BUTTONS = exports.AG_GRID_PIVOT_COLUMN = exports.AG_GRID_GROUPED_COLUMN = exports.HALF_SECOND = exports.AB_SPECIAL_COLUMN = exports.EMPTY_ARRAY = exports.EMPTY_STRING = exports.FILTER_THROTTLE = exports.FILTER_NEVER = exports.FILTER_ALWAYS = exports.ALL_COLUMN_VALUES = exports.READ_ONLY_STYLE = exports.MENU_PREFIX = exports.AGGRID_TOOLPANEL_COLUMNS = exports.AGGRID_TOOLPANEL_FILTERS = exports.ADAPTABLE_TOOLPANEL_COMPONENT = exports.ADAPTABLE_TOOLPANEL_ID = exports.ADAPTABLE = exports.ADAPTABLE_ID = exports.USER_NAME = exports.DARK_THEME = exports.LIGHT_THEME = exports.DEFAULT_LAYOUT = exports.MISSING_COLUMN = exports.AUTOGENERATED_PK_COLUMN = void 0;
4
+ exports.THEME_STYLE = exports.SELECTED_ROWS_REPORT = exports.SELECTED_CELLS_REPORT = exports.CURRENT_DATA_REPORT = exports.ALL_DATA_REPORT = void 0;
4
5
  const Enums_1 = require("../../PredefinedConfig/Common/Enums");
5
6
  const UIHelper_1 = require("../../View/UIHelper");
6
7
  exports.AUTOGENERATED_PK_COLUMN = '__ADAPTABLE_PK__';
@@ -68,7 +68,7 @@ exports.DefaultAdaptableOptions = {
68
68
  moduleExpressionFunctions: undefined,
69
69
  queryableColumns: undefined,
70
70
  performExpressionValidation: true,
71
- maxTimeframeSize: 28800000,
71
+ maxTimeframeSize: 28800000, // 8 hours
72
72
  },
73
73
  },
74
74
  containerOptions: {
@@ -92,11 +92,13 @@ exports.DefaultAdaptableOptions = {
92
92
  customToolbars: undefined,
93
93
  buttonsLocation: 'right',
94
94
  },
95
- editOptions: {
96
- validateOnServer: undefined,
97
- displayServerValidationMessages: true,
98
- isCellEditable: undefined,
99
- rowFormOptions: {
95
+ actionOptions: {
96
+ actionColumns: undefined,
97
+ actionRowButtons: undefined,
98
+ actionRowButtonsPosition: 'pinnedLeft',
99
+ autoHandleActionRowButtons: false,
100
+ setPrimaryKeyValue: undefined,
101
+ actionRowFormOptions: {
100
102
  formTitle: undefined,
101
103
  formDescription: undefined,
102
104
  formFieldLabel: undefined,
@@ -104,6 +106,11 @@ exports.DefaultAdaptableOptions = {
104
106
  onFormSubmit: undefined,
105
107
  },
106
108
  },
109
+ editOptions: {
110
+ validateOnServer: undefined,
111
+ displayServerValidationMessages: true,
112
+ isCellEditable: undefined,
113
+ },
107
114
  entitlementOptions: {
108
115
  defaultAccessLevel: 'Full',
109
116
  moduleEntitlements: undefined,
@@ -223,13 +230,6 @@ exports.DefaultAdaptableOptions = {
223
230
  showOutsideDays: true,
224
231
  datepickerButtons: ['close', 'today'],
225
232
  },
226
- actionOptions: {
227
- actionColumns: undefined,
228
- actionRowButtons: undefined,
229
- actionRowButtonsPosition: 'pinnedLeft',
230
- autoHandleActionRowButtons: false,
231
- setPrimaryKeyValue: undefined,
232
- },
233
233
  colorPalette: UIHelper_1.default.getDefaultColors(),
234
234
  editableCellStyle: undefined,
235
235
  readOnlyCellStyle: undefined,
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.normalizeDateParams = void 0;
4
- exports.normalizeDateParams = (args) => {
4
+ const normalizeDateParams = (args) => {
5
5
  let [first, second] = args;
6
6
  if (typeof first === 'string') {
7
7
  first = new Date(first);
@@ -11,3 +11,4 @@ exports.normalizeDateParams = (args) => {
11
11
  }
12
12
  return [first, second];
13
13
  };
14
+ exports.normalizeDateParams = normalizeDateParams;
@@ -9,18 +9,21 @@ const toNumber_1 = tslib_1.__importDefault(require("lodash/toNumber"));
9
9
  const evaluator_1 = require("../../parser/src/evaluator");
10
10
  // string functions may be case (in)sensitive, see internalApi.isTextComparisonCaseSensitive()
11
11
  // if case is insensitive, we convert ALL involved strings to lower case
12
- exports.getStringValues = (context, ...stringArguments) => {
12
+ const getStringValues = (context, ...stringArguments) => {
13
13
  return exports.isTextSearchCaseInsensitive(context)
14
14
  ? stringArguments.map((string) => string.toLowerCase())
15
15
  : stringArguments;
16
16
  };
17
- exports.getStringValue = (context, stringArgument) => {
17
+ exports.getStringValues = getStringValues;
18
+ const getStringValue = (context, stringArgument) => {
18
19
  return exports.isTextSearchCaseInsensitive(context) ? stringArgument.toLowerCase() : stringArgument;
19
20
  };
20
- exports.isTextSearchCaseInsensitive = (context) => !context.api.internalApi.isTextComparisonCaseSensitive();
21
+ exports.getStringValue = getStringValue;
22
+ const isTextSearchCaseInsensitive = (context) => !context.api.internalApi.isTextComparisonCaseSensitive();
23
+ exports.isTextSearchCaseInsensitive = isTextSearchCaseInsensitive;
21
24
  // returns an observable which filters the source$ emissions and emits only if the CellDataChangedInfo relates to the given column
22
25
  // optionally, if a filter function (where clause) is provided, it is also evaluated
23
- exports.getDataChangeLog$ = (context, columnNameFilter) => {
26
+ const getDataChangeLog$ = (context, columnNameFilter) => {
24
27
  let dataChangeLog$ = context.api.internalApi.getDataService().dataChangeLog$;
25
28
  // filter only the given column changes
26
29
  dataChangeLog$ = dataChangeLog$.pipe(operators_1.filter((dataChangeLog) => dataChangeLog.column.columnId === columnNameFilter));
@@ -30,7 +33,8 @@ exports.getDataChangeLog$ = (context, columnNameFilter) => {
30
33
  }
31
34
  return dataChangeLog$;
32
35
  };
33
- exports.handleWhereFunction = (args, context) => {
36
+ exports.getDataChangeLog$ = getDataChangeLog$;
37
+ const handleWhereFunction = (args, context) => {
34
38
  const reactiveExpressionNode = args[0];
35
39
  const whereClauseExpressionNode = args[1];
36
40
  const filterFn = (rowNode) => {
@@ -49,10 +53,12 @@ exports.handleWhereFunction = (args, context) => {
49
53
  filterFn,
50
54
  });
51
55
  };
52
- exports.extractColumnParameter = (consumingFunctionName, args) => {
56
+ exports.handleWhereFunction = handleWhereFunction;
57
+ const extractColumnParameter = (consumingFunctionName, args) => {
53
58
  return exports.extractParameter(consumingFunctionName, 'config', ['COL'], args);
54
59
  };
55
- exports.extractParameter = (consumingFunctionName, allowedType, allowedOperands, args, isOptional) => {
60
+ exports.extractColumnParameter = extractColumnParameter;
61
+ const extractParameter = (consumingFunctionName, allowedType, allowedOperands, args, isOptional) => {
56
62
  const result = args.filter((arg) => (arg === null || arg === void 0 ? void 0 : arg.type) === allowedType && allowedOperands.includes(arg === null || arg === void 0 ? void 0 : arg.name));
57
63
  if (isOptional && !result.length) {
58
64
  return;
@@ -65,7 +71,8 @@ exports.extractParameter = (consumingFunctionName, allowedType, allowedOperands,
65
71
  }
66
72
  return result[0];
67
73
  };
68
- exports.handleColumnFunction = (args, context) => {
74
+ exports.extractParameter = extractParameter;
75
+ const handleColumnFunction = (args, context) => {
69
76
  if (StringExtensions_1.default.IsNullOrEmpty(args[0])) {
70
77
  throw new ExpressionEvaluationError_1.ExpressionEvaluationError('COL', `no column name is provided`);
71
78
  }
@@ -77,16 +84,19 @@ exports.handleColumnFunction = (args, context) => {
77
84
  };
78
85
  return result;
79
86
  };
80
- exports.getNumericValue = (input) => {
87
+ exports.handleColumnFunction = handleColumnFunction;
88
+ const getNumericValue = (input) => {
81
89
  const numericValue = toNumber_1.default(input);
82
90
  return isNaN(numericValue) ? 0 : numericValue;
83
91
  };
84
- exports.validateColumnType = (columnId, validColumnTypes, consumingFunction, api) => {
92
+ exports.getNumericValue = getNumericValue;
93
+ const validateColumnType = (columnId, validColumnTypes, consumingFunction, api) => {
85
94
  const columnType = api.columnApi.getColumnDataTypeFromColumnId(columnId);
86
95
  if (!validColumnTypes.some((validType) => validType === columnType)) {
87
96
  throw new ExpressionEvaluationError_1.ExpressionEvaluationError(consumingFunction, `expects a column of type ${validColumnTypes.join(' or ')}`);
88
97
  }
89
98
  };
99
+ exports.validateColumnType = validateColumnType;
90
100
  const validateColumnId = (columnId, api) => {
91
101
  const column = api.columnApi.getColumnFromId(columnId);
92
102
  if (!column) {
@@ -10,7 +10,8 @@ const DefaultAdaptableOptions_1 = require("../Defaults/DefaultAdaptableOptions")
10
10
  function assignAdaptableOptions(adaptableOptions) {
11
11
  var _a;
12
12
  const returnedAdaptableOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions, adaptableOptions);
13
- returnedAdaptableOptions.adaptableStateKey = (_a = returnedAdaptableOptions.adaptableStateKey) !== null && _a !== void 0 ? _a : returnedAdaptableOptions.adaptableId;
13
+ returnedAdaptableOptions.adaptableStateKey =
14
+ (_a = returnedAdaptableOptions.adaptableStateKey) !== null && _a !== void 0 ? _a : returnedAdaptableOptions.adaptableId;
14
15
  returnedAdaptableOptions.adaptableQLOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.adaptableQLOptions, adaptableOptions.adaptableQLOptions);
15
16
  returnedAdaptableOptions.columnOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.columnOptions, adaptableOptions.columnOptions);
16
17
  returnedAdaptableOptions.adaptableQLOptions.expressionOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.adaptableQLOptions.expressionOptions, returnedAdaptableOptions.adaptableQLOptions.expressionOptions);
@@ -21,13 +22,13 @@ function assignAdaptableOptions(adaptableOptions) {
21
22
  returnedAdaptableOptions.entitlementOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.entitlementOptions, adaptableOptions.entitlementOptions);
22
23
  returnedAdaptableOptions.dashboardOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.dashboardOptions, adaptableOptions.dashboardOptions);
23
24
  returnedAdaptableOptions.editOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.editOptions, adaptableOptions.editOptions);
24
- returnedAdaptableOptions.editOptions.rowFormOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.editOptions.rowFormOptions, returnedAdaptableOptions.editOptions.rowFormOptions);
25
+ returnedAdaptableOptions.actionOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.actionOptions, adaptableOptions.actionOptions);
26
+ returnedAdaptableOptions.actionOptions.actionRowFormOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.actionOptions.actionRowFormOptions, returnedAdaptableOptions.actionOptions.actionRowFormOptions);
25
27
  returnedAdaptableOptions.containerOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.containerOptions, adaptableOptions.containerOptions);
26
28
  returnedAdaptableOptions.generalOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.generalOptions, adaptableOptions.generalOptions);
27
29
  returnedAdaptableOptions.searchOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.searchOptions, adaptableOptions.searchOptions);
28
30
  returnedAdaptableOptions.filterOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.filterOptions, adaptableOptions.filterOptions);
29
31
  returnedAdaptableOptions.userInterfaceOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.userInterfaceOptions, adaptableOptions.userInterfaceOptions);
30
- returnedAdaptableOptions.userInterfaceOptions.actionOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.userInterfaceOptions.actionOptions, returnedAdaptableOptions.userInterfaceOptions.actionOptions);
31
32
  returnedAdaptableOptions.userInterfaceOptions.dateInputOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.userInterfaceOptions.dateInputOptions, returnedAdaptableOptions.userInterfaceOptions.dateInputOptions);
32
33
  returnedAdaptableOptions.menuOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.menuOptions, adaptableOptions.menuOptions);
33
34
  returnedAdaptableOptions.stateOptions = Object.assign({}, DefaultAdaptableOptions_1.DefaultAdaptableOptions.stateOptions, adaptableOptions.stateOptions);
@@ -6,29 +6,33 @@ const parseISO_1 = tslib_1.__importDefault(require("date-fns/parseISO"));
6
6
  const parse_1 = tslib_1.__importDefault(require("date-fns/parse"));
7
7
  const LoggingHelper_1 = require("./LoggingHelper");
8
8
  const FormatHelper_1 = require("./FormatHelper");
9
- exports.isValidDate = (date) => {
9
+ const isValidDate = (date) => {
10
10
  return date instanceof Date && !isNaN(date.getTime());
11
11
  };
12
+ exports.isValidDate = isValidDate;
12
13
  /**
13
14
  * Checks if the data contains a value that represents a valid date.
14
15
  *
15
16
  * @param data any kind of data
16
17
  */
17
- exports.isValueValidDate = (data) => {
18
+ const isValueValidDate = (data) => {
18
19
  if (!data || typeof data === 'boolean') {
19
20
  return false;
20
21
  }
21
22
  const date = new Date(data);
22
23
  return !isNaN(date.getTime());
23
24
  };
24
- exports.dateToISO = (date) => {
25
+ exports.isValueValidDate = isValueValidDate;
26
+ const dateToISO = (date) => {
25
27
  return FormatHelper_1.DateFormatter(date, { Pattern: 'yyyy-MM-dd' });
26
28
  };
27
- exports.parseToISO = (date, dateFormat) => {
29
+ exports.dateToISO = dateToISO;
30
+ const parseToISO = (date, dateFormat) => {
28
31
  const dateInstance = exports.parseDateValue(date, dateFormat);
29
32
  return exports.isValidDate(dateInstance) ? exports.dateToISO(dateInstance) : '';
30
33
  };
31
- exports.parseDateValue = (dateValue, dateFormat) => {
34
+ exports.parseToISO = parseToISO;
35
+ const parseDateValue = (dateValue, dateFormat) => {
32
36
  if (dateValue == undefined) {
33
37
  return undefined;
34
38
  }
@@ -58,3 +62,4 @@ exports.parseDateValue = (dateValue, dateFormat) => {
58
62
  }
59
63
  return dateInstance;
60
64
  };
65
+ exports.parseDateValue = parseDateValue;
@@ -22,7 +22,7 @@ function cloneObject(obj) {
22
22
  return JSON.parse(JSON.stringify(obj));
23
23
  }
24
24
  exports.cloneObject = cloneObject;
25
- exports.arrayToKeyMap = (arr) => {
25
+ const arrayToKeyMap = (arr) => {
26
26
  const defaultAccumulator = {};
27
27
  if (!arr || !Array.isArray(arr)) {
28
28
  return defaultAccumulator;
@@ -32,6 +32,7 @@ exports.arrayToKeyMap = (arr) => {
32
32
  return acc;
33
33
  }, defaultAccumulator);
34
34
  };
35
+ exports.arrayToKeyMap = arrayToKeyMap;
35
36
  // converts an array (or an array of arrays) to CSV
36
37
  function convertArrayToCsv(array, separator = " ' ") {
37
38
  let csvContent = '';
@@ -22,7 +22,7 @@ function ConsoleLogByMessageType(message, messageType, ...optionalParams) {
22
22
  }
23
23
  }
24
24
  exports.ConsoleLogByMessageType = ConsoleLogByMessageType;
25
- exports.getLoggingFunctions = (channel) => {
25
+ const getLoggingFunctions = (channel) => {
26
26
  const prefix = channel ? `${channel}:` : '';
27
27
  const info = exports.log.extend(`${prefix}info`);
28
28
  info.log = console.info.bind(console);
@@ -71,6 +71,7 @@ exports.getLoggingFunctions = (channel) => {
71
71
  LogAdaptableInfo,
72
72
  };
73
73
  };
74
+ exports.getLoggingFunctions = getLoggingFunctions;
74
75
  function ConsoleLogWarning(message, ...optionalParams) {
75
76
  if (ArrayExtensions_1.ArrayExtensions.IsNotNullOrEmpty(optionalParams)) {
76
77
  console.warn(message, optionalParams);
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getVariableColor = exports.toStyle = exports.convertCSSAbsoluteFontSizeToPt = exports.convertAdaptableStyleToCSS = void 0;
4
4
  const EnumExtensions_1 = require("../Extensions/EnumExtensions");
5
- exports.convertAdaptableStyleToCSS = (style) => {
5
+ const convertAdaptableStyleToCSS = (style) => {
6
6
  let result = {};
7
7
  if (style.BackColor !== undefined && style.BackColor !== null) {
8
8
  result.backgroundColor = style.BackColor;
@@ -25,8 +25,9 @@ exports.convertAdaptableStyleToCSS = (style) => {
25
25
  // assertion added to comply with the ag-Grid types
26
26
  return result;
27
27
  };
28
+ exports.convertAdaptableStyleToCSS = convertAdaptableStyleToCSS;
28
29
  // based on http://jerekdain.com/fontconversion.html
29
- exports.convertCSSAbsoluteFontSizeToPt = (fontSize) => {
30
+ const convertCSSAbsoluteFontSizeToPt = (fontSize) => {
30
31
  switch (fontSize) {
31
32
  case 'x-large':
32
33
  return 18;
@@ -42,10 +43,12 @@ exports.convertCSSAbsoluteFontSizeToPt = (fontSize) => {
42
43
  return 12;
43
44
  }
44
45
  };
45
- exports.toStyle = (style) => {
46
+ exports.convertCSSAbsoluteFontSizeToPt = convertCSSAbsoluteFontSizeToPt;
47
+ const toStyle = (style) => {
46
48
  return Object.assign(Object.assign({}, exports.convertAdaptableStyleToCSS(style !== null && style !== void 0 ? style : {})), { borderWidth: (style === null || style === void 0 ? void 0 : style.BorderColor) ? 2 : 0, borderStyle: 'solid' });
47
49
  };
48
- exports.getVariableColor = (variable) => {
50
+ exports.toStyle = toStyle;
51
+ const getVariableColor = (variable) => {
49
52
  var _a;
50
53
  const isVariable = (_a = variable === null || variable === void 0 ? void 0 : variable.startsWith) === null || _a === void 0 ? void 0 : _a.call(variable, 'var(');
51
54
  if (!isVariable) {
@@ -57,3 +60,4 @@ exports.getVariableColor = (variable) => {
57
60
  }
58
61
  return getComputedStyle(document.documentElement).getPropertyValue(match[1]).trim();
59
62
  };
63
+ exports.getVariableColor = getVariableColor;
@@ -2,13 +2,14 @@ import * as Redux from 'redux';
2
2
  import { ModuleParams } from '../View/Components/SharedProps/ModuleViewPopupProps';
3
3
  import { AdaptableMenuItem } from '../PredefinedConfig/Common/Menu';
4
4
  import { AdaptableModule } from '../PredefinedConfig/Common/Types';
5
+ import { AdaptableIcon } from '../PredefinedConfig/Common/AdaptableIcon';
5
6
  export declare class MenuItemDoReduxAction implements AdaptableMenuItem {
6
7
  constructor(label: string, module: AdaptableModule, reduxAction: Redux.Action, icon: string, isVisible: boolean);
7
8
  reduxAction: Redux.Action;
8
9
  label: string;
9
10
  module: AdaptableModule;
10
11
  isVisible: boolean;
11
- icon: string;
12
+ icon: AdaptableIcon;
12
13
  }
13
14
  export declare class MenuItemDoClickFunction implements AdaptableMenuItem {
14
15
  constructor(label: string, module: AdaptableModule, clickFunction: () => void, icon: string, isVisible: boolean);
@@ -16,7 +17,7 @@ export declare class MenuItemDoClickFunction implements AdaptableMenuItem {
16
17
  label: string;
17
18
  module: AdaptableModule;
18
19
  isVisible: boolean;
19
- icon: string;
20
+ icon: AdaptableIcon;
20
21
  }
21
22
  export declare class MenuItemShowPopup implements AdaptableMenuItem {
22
23
  constructor(label: string, module: AdaptableModule, componentName: string, icon: string, isVisible: boolean, popupParams?: ModuleParams);
@@ -24,5 +25,5 @@ export declare class MenuItemShowPopup implements AdaptableMenuItem {
24
25
  label: string;
25
26
  module: AdaptableModule;
26
27
  isVisible: boolean;
27
- icon: string;
28
+ icon: AdaptableIcon;
28
29
  }
@@ -9,7 +9,9 @@ class MenuItemDoReduxAction {
9
9
  this.label = label;
10
10
  this.module = module;
11
11
  this.isVisible = isVisible;
12
- this.icon = icon;
12
+ this.icon = {
13
+ name: icon,
14
+ };
13
15
  this.reduxAction = reduxAction;
14
16
  }
15
17
  }
@@ -19,7 +21,9 @@ class MenuItemDoClickFunction {
19
21
  this.label = label;
20
22
  this.module = module;
21
23
  this.isVisible = isVisible;
22
- this.icon = icon;
24
+ this.icon = {
25
+ name: icon,
26
+ };
23
27
  this.onClick = clickFunction;
24
28
  }
25
29
  }
@@ -30,7 +34,9 @@ class MenuItemShowPopup {
30
34
  this.label = label;
31
35
  this.module = module;
32
36
  this.isVisible = isVisible;
33
- this.icon = icon;
37
+ this.icon = {
38
+ name: icon,
39
+ };
34
40
  this.reduxAction = PopupRedux.PopupShowScreen(module, componentName, popupParams);
35
41
  }
36
42
  }
@@ -375,6 +375,7 @@ function CreateToastOptions(notificationsOptions, { onClose, containerId }) {
375
375
  transition: transition,
376
376
  draggablePercent: 75,
377
377
  onClose,
378
+ // progress: undefined,
378
379
  };
379
380
  return toastProps;
380
381
  }
@@ -1,8 +1,8 @@
1
1
  import { RowNode } from '@ag-grid-community/all-modules';
2
2
  import { IAdaptableService } from './IAdaptableService';
3
3
  import { AdaptableForm } from '../../../PredefinedConfig/Common/AdaptableForm';
4
- import { CreateRowFormContext, EditRowFormContext } from '../../../AdaptableOptions/EditOptions';
4
+ import { CreateActionRowContext, EditActionRowContext } from '../../../AdaptableOptions/ActionOptions';
5
5
  export interface IRowEditService extends IAdaptableService {
6
- buildRowEditForm(rowNode: RowNode): AdaptableForm<EditRowFormContext>;
7
- buildRowCreateForm(clonedRowNode?: RowNode): AdaptableForm<CreateRowFormContext>;
6
+ buildRowEditForm(rowNode: RowNode): AdaptableForm<EditActionRowContext>;
7
+ buildRowCreateForm(clonedRowNode?: RowNode): AdaptableForm<CreateActionRowContext>;
8
8
  }
@@ -94,7 +94,7 @@ class ModuleService {
94
94
  case 'Dashboard':
95
95
  return learnUrl + 'ui-dashboard';
96
96
  case 'DataSet':
97
- return learnUrl + 'handbook-data-sources';
97
+ return learnUrl + 'handbook-data-sets';
98
98
  case 'DataChangeHistory':
99
99
  return learnUrl + 'handbook-monitoring#data-change-history';
100
100
  case 'Export':
@@ -125,6 +125,8 @@ class ModuleService {
125
125
  return learnUrl + 'handbook-editing#smart-edit';
126
126
  case 'StateManagement':
127
127
  return learnUrl + 'dev-guide-adaptable-state';
128
+ case 'StatusBar':
129
+ return learnUrl + 'ui-status-bar';
128
130
  case 'SystemStatus':
129
131
  return learnUrl + 'handbook-notifying';
130
132
  case 'TeamSharing':
@@ -2,20 +2,20 @@ import { IRowEditService } from './Interface/IRowEditService';
2
2
  import { RowNode } from '@ag-grid-community/all-modules';
3
3
  import { AdaptableApi } from '../../Api/AdaptableApi';
4
4
  import { AdaptableForm } from '../../PredefinedConfig/Common/AdaptableForm';
5
- import { CreateRowFormContext, EditRowFormContext } from '../../AdaptableOptions/EditOptions';
5
+ import { CreateActionRowContext, EditActionRowContext } from '../../AdaptableOptions/ActionOptions';
6
6
  export declare class RowEditService implements IRowEditService {
7
7
  private adaptableApi;
8
8
  private adaptableInstance;
9
9
  private rowEditFormOptions;
10
10
  constructor(adaptableApi: AdaptableApi);
11
- buildRowEditForm(rowNode: RowNode): AdaptableForm<EditRowFormContext>;
12
- buildRowCreateForm(clonedRowNode?: RowNode): AdaptableForm<CreateRowFormContext>;
13
- private buildRowForm;
11
+ buildRowEditForm(rowNode: RowNode): AdaptableForm<EditActionRowContext>;
12
+ buildRowCreateForm(clonedRowNode?: RowNode): AdaptableForm<CreateActionRowContext>;
13
+ private buildActionRow;
14
14
  private getFormTitle;
15
15
  private getFormDescription;
16
16
  private buildFormParamContext;
17
- private buildRowFormFields;
18
- private buildRowFormButtons;
17
+ private buildActionRowFields;
18
+ private buidActionRowButtons;
19
19
  private isColumnEditable;
20
20
  private buildFormField;
21
21
  private getFormFieldLabel;