@adaptabletools/adaptable 12.0.0-canary.2 → 12.0.0-canary.5

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 (431) hide show
  1. package/base.css +41 -14
  2. package/bundle.cjs.js +159 -142
  3. package/index.css +49 -14
  4. package/package.json +3 -3
  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/AlertOptions.d.ts +5 -9
  10. package/src/AdaptableOptions/ColumnOptions.d.ts +4 -0
  11. package/src/AdaptableOptions/DashboardOptions.d.ts +1 -5
  12. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +19 -4
  13. package/src/AdaptableOptions/EditOptions.d.ts +8 -62
  14. package/src/AdaptableOptions/FinancePluginOptions.d.ts +3 -3
  15. package/src/AdaptableOptions/GeneralOptions.d.ts +7 -0
  16. package/src/AdaptableOptions/LayoutOptions.d.ts +6 -1
  17. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +2 -0
  18. package/src/AdaptableOptions/StateOptions.d.ts +10 -0
  19. package/src/AdaptableOptions/ToolPanelOptions.d.ts +1 -5
  20. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -112
  21. package/src/Api/ActionApi.d.ts +24 -0
  22. package/src/Api/{Events/RowFormSubmitted.js → ActionApi.js} +0 -0
  23. package/src/Api/AdaptableApi.d.ts +5 -0
  24. package/src/Api/AlertApi.d.ts +3 -3
  25. package/src/Api/ConfigApi.d.ts +1 -1
  26. package/src/Api/EventApi.d.ts +9 -9
  27. package/src/Api/Events/ActionRowSubmitted.d.ts +34 -0
  28. package/src/Api/Events/ActionRowSubmitted.js +2 -0
  29. package/src/Api/GridApi.d.ts +0 -14
  30. package/src/Api/Implementation/ActionApiImpl.d.ts +8 -0
  31. package/src/Api/Implementation/ActionApiImpl.js +56 -0
  32. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
  33. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  34. package/src/Api/Implementation/AlertApiImpl.d.ts +3 -3
  35. package/src/Api/Implementation/ApiBase.d.ts +2 -1
  36. package/src/Api/Implementation/ApiBase.js +3 -0
  37. package/src/Api/Implementation/ColumnApiImpl.js +2 -2
  38. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  39. package/src/Api/Implementation/GridApiImpl.d.ts +0 -3
  40. package/src/Api/Implementation/GridApiImpl.js +0 -44
  41. package/src/Api/Implementation/InternalApiImpl.d.ts +3 -3
  42. package/src/Api/Implementation/SmartEditApiImpl.d.ts +1 -1
  43. package/src/Api/Implementation/SmartEditApiImpl.js +2 -1
  44. package/src/Api/Implementation/StatusBarApiImpl.d.ts +4 -3
  45. package/src/Api/Implementation/StatusBarApiImpl.js +2 -2
  46. package/src/Api/Implementation/TeamSharingApiImpl.js +2 -1
  47. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +1 -2
  48. package/src/Api/Implementation/UserInterfaceApiImpl.js +0 -4
  49. package/src/Api/SmartEditApi.d.ts +1 -1
  50. package/src/Api/StatusBarApi.d.ts +10 -3
  51. package/src/Api/UserInterfaceApi.d.ts +1 -5
  52. package/src/PredefinedConfig/AlertState.d.ts +4 -4
  53. package/src/PredefinedConfig/Common/AdaptableAlert.js +4 -2
  54. package/src/PredefinedConfig/Common/AdaptableColumn.js +2 -1
  55. package/src/PredefinedConfig/Common/AdaptableForm.d.ts +1 -1
  56. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +24 -18
  57. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +2 -4
  58. package/src/PredefinedConfig/Common/AdaptablePredicate.js +38 -36
  59. package/src/PredefinedConfig/Common/AdaptableQuery.js +2 -1
  60. package/src/PredefinedConfig/Common/FormContext.d.ts +3 -0
  61. package/src/PredefinedConfig/Common/Menu.d.ts +3 -3
  62. package/src/PredefinedConfig/Common/Types.d.ts +1 -1
  63. package/src/PredefinedConfig/StatusBarState.d.ts +5 -2
  64. package/src/PredefinedConfig/Uuid.js +2 -1
  65. package/src/Redux/ActionsReducers/AlertRedux.js +16 -8
  66. package/src/Redux/ActionsReducers/ApplicationRedux.js +8 -4
  67. package/src/Redux/ActionsReducers/BulkUpdateRedux.js +6 -3
  68. package/src/Redux/ActionsReducers/CalculatedColumnRedux.js +10 -5
  69. package/src/Redux/ActionsReducers/CellSummaryRedux.js +2 -1
  70. package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +14 -7
  71. package/src/Redux/ActionsReducers/CustomSortRedux.js +14 -7
  72. package/src/Redux/ActionsReducers/DashboardRedux.js +24 -12
  73. package/src/Redux/ActionsReducers/ExportRedux.js +16 -8
  74. package/src/Redux/ActionsReducers/FlashingCellRedux.js +16 -8
  75. package/src/Redux/ActionsReducers/FormatColumnRedux.js +14 -7
  76. package/src/Redux/ActionsReducers/FreeTextColumnRedux.js +14 -7
  77. package/src/Redux/ActionsReducers/GridRedux.js +38 -19
  78. package/src/Redux/ActionsReducers/LayoutRedux.js +30 -15
  79. package/src/Redux/ActionsReducers/PluginsRedux.js +4 -2
  80. package/src/Redux/ActionsReducers/PlusMinusRedux.js +16 -8
  81. package/src/Redux/ActionsReducers/PopupRedux.js +37 -19
  82. package/src/Redux/ActionsReducers/QueryRedux.js +12 -6
  83. package/src/Redux/ActionsReducers/QuickSearchRedux.js +8 -4
  84. package/src/Redux/ActionsReducers/ScheduleRedux.js +58 -29
  85. package/src/Redux/ActionsReducers/ShortcutRedux.js +14 -7
  86. package/src/Redux/ActionsReducers/SmartEditRedux.js +6 -3
  87. package/src/Redux/ActionsReducers/StatusBarRedux.js +10 -5
  88. package/src/Redux/ActionsReducers/SystemRedux.js +103 -51
  89. package/src/Redux/ActionsReducers/SystemStatusRedux.js +4 -2
  90. package/src/Redux/ActionsReducers/TeamSharingRedux.js +22 -11
  91. package/src/Redux/ActionsReducers/ThemeRedux.js +10 -5
  92. package/src/Redux/ActionsReducers/ToolPanelRedux.js +16 -8
  93. package/src/Redux/DeadRedux.js +16 -8
  94. package/src/Redux/Store/AdaptableReduxMerger.js +2 -1
  95. package/src/Redux/Store/AdaptableStore.js +10 -2
  96. package/src/Strategy/AlertModule.d.ts +2 -18
  97. package/src/Strategy/AlertModule.js +2 -1
  98. package/src/Strategy/ConditionalStyleModule.d.ts +2 -10
  99. package/src/Strategy/DashboardModule.js +3 -1
  100. package/src/Strategy/DataChangeHistoryModule.d.ts +2 -8
  101. package/src/Strategy/DataSetModule.d.ts +2 -13
  102. package/src/Strategy/ExportModule.d.ts +2 -13
  103. package/src/Strategy/ExportModule.js +1 -1
  104. package/src/Strategy/FilterModule.d.ts +2 -14
  105. package/src/Strategy/FilterModule.js +1 -1
  106. package/src/Strategy/FlashingCellModule.d.ts +2 -9
  107. package/src/Strategy/GridInfoModule.js +6 -2
  108. package/src/Strategy/LayoutModule.d.ts +2 -17
  109. package/src/Strategy/LayoutModule.js +6 -3
  110. package/src/Strategy/PlusMinusModule.d.ts +2 -9
  111. package/src/Strategy/QuickSearchModule.d.ts +2 -7
  112. package/src/Strategy/ScheduleModule.d.ts +2 -13
  113. package/src/Strategy/ShortcutModule.d.ts +2 -9
  114. package/src/Strategy/StatusBarModule.js +2 -2
  115. package/src/Strategy/SystemStatusModule.d.ts +2 -7
  116. package/src/Strategy/ThemeModule.d.ts +2 -8
  117. package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +2 -1
  118. package/src/Strategy/Utilities/getAlertPreviewViewItems.js +2 -1
  119. package/src/Strategy/Utilities/getCustomSortColumnViewItems.js +2 -1
  120. package/src/Strategy/Utilities/getCustomSortSortOrderViewItems.js +2 -1
  121. package/src/Strategy/Utilities/getExportColumnsViewItems.js +2 -1
  122. package/src/Strategy/Utilities/getExportRowsViewItems.js +2 -1
  123. package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
  124. package/src/Strategy/Utilities/getFlashingCellDurationViewItems.js +2 -1
  125. package/src/Strategy/Utilities/getFlashingCellStyleViewItems.d.ts +2 -6
  126. package/src/Strategy/Utilities/getFlashingCellStyleViewItems.js +2 -1
  127. package/src/Strategy/Utilities/getFlashingTargetViewItems.js +2 -1
  128. package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +2 -1
  129. package/src/Strategy/Utilities/getFormatColumnStyleViewItems.js +2 -1
  130. package/src/Strategy/Utilities/getObjectTagsViewItems.js +2 -1
  131. package/src/Strategy/Utilities/getRuleViewItems.js +2 -1
  132. package/src/Strategy/Utilities/getScopeViewItems.js +2 -1
  133. package/src/Strategy/Utilities/getShortcutSettingsViewItems.js +2 -1
  134. package/src/Strategy/Utilities/getStyleViewItems.js +2 -1
  135. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +1 -0
  136. package/src/Utilities/Constants/DocumentationLinkConstants.js +2 -1
  137. package/src/Utilities/Constants/GeneralConstants.js +2 -1
  138. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +21 -13
  139. package/src/Utilities/ExpressionFunctions/dateUtils.js +2 -1
  140. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +20 -10
  141. package/src/Utilities/Extensions/TypeExtensions.d.ts +30 -0
  142. package/src/Utilities/Helpers/AdaptableHelper.d.ts +1 -3
  143. package/src/Utilities/Helpers/AdaptableHelper.js +6 -16
  144. package/src/Utilities/Helpers/DateHelper.d.ts +27 -0
  145. package/src/Utilities/Helpers/DateHelper.js +43 -6
  146. package/src/Utilities/Helpers/Helper.js +2 -1
  147. package/src/Utilities/Helpers/LoggingHelper.js +2 -1
  148. package/src/Utilities/Helpers/StyleHelper.js +8 -4
  149. package/src/Utilities/MenuItem.d.ts +4 -3
  150. package/src/Utilities/MenuItem.js +9 -3
  151. package/src/Utilities/ObjectFactory.js +1 -0
  152. package/src/Utilities/Services/Interface/IMetamodelService.d.ts +1 -0
  153. package/src/Utilities/Services/Interface/IRowEditService.d.ts +3 -3
  154. package/src/Utilities/Services/MetamodelService.d.ts +7 -1
  155. package/src/Utilities/Services/MetamodelService.js +82 -6
  156. package/src/Utilities/Services/ModuleService.js +3 -1
  157. package/src/Utilities/Services/RowEditService.d.ts +6 -6
  158. package/src/Utilities/Services/RowEditService.js +24 -25
  159. package/src/Utilities/isAdaptableObject.js +2 -1
  160. package/src/Utilities/isMacLike.js +2 -1
  161. package/src/Utilities/license/decode.js +1 -1
  162. package/src/Utilities/reorder.js +2 -1
  163. package/src/Utilities/runIfNotResolvedIn.js +2 -1
  164. package/src/Utilities/waitForCondition.d.ts +1 -1
  165. package/src/Utilities/waitForCondition.js +2 -1
  166. package/src/View/AdaptableContext.js +2 -1
  167. package/src/View/AdaptableView.js +2 -1
  168. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.d.ts +13 -1
  169. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +13 -10
  170. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +2 -1
  171. package/src/View/AdaptableWizardView/Utils.js +2 -1
  172. package/src/View/AdaptableWizardView/Wizard.js +4 -2
  173. package/src/View/AdaptableWizardView/helper.js +6 -3
  174. package/src/View/Alert/ActiveAlertsPanel.js +2 -1
  175. package/src/View/Alert/AlertEmptyView.js +2 -1
  176. package/src/View/Alert/AlertStatusSubPanel.js +2 -1
  177. package/src/View/Alert/Utilities/getAlertButtonStyle.js +2 -1
  178. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +4 -2
  179. package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +3 -3
  180. package/src/View/Alert/Wizard/AlertButtonsEditor.js +2 -1
  181. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +6 -3
  182. package/src/View/Alert/Wizard/AlertRulesWizardSection.js +4 -2
  183. package/src/View/Alert/Wizard/AlertScopeWizardSection.js +2 -1
  184. package/src/View/Alert/Wizard/AlertWizard.js +2 -1
  185. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +2 -1
  186. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +4 -2
  187. package/src/View/Alert/Wizard/isValidAlertRules.js +2 -1
  188. package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
  189. package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.js +2 -1
  190. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +6 -3
  191. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +6 -3
  192. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -1
  193. package/src/View/CellSummary/CellSummaryPopover.js +2 -1
  194. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +2 -1
  195. package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -1
  196. package/src/View/ColorPicker.d.ts +5 -1
  197. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  198. package/src/View/Components/AdaptableDateInput/index.js +11 -11
  199. package/src/View/Components/AdaptableInput/index.d.ts +2 -2
  200. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +4 -2
  201. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +4 -2
  202. package/src/View/Components/Buttons/ButtonClone.js +2 -1
  203. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  204. package/src/View/Components/Buttons/ButtonEdit.js +2 -1
  205. package/src/View/Components/Buttons/ButtonNew.js +2 -1
  206. package/src/View/Components/ColumnSelector/index.js +2 -1
  207. package/src/View/Components/EntityRulesEditor/index.js +6 -3
  208. package/src/View/Components/ExpressionWizard.js +2 -1
  209. package/src/View/Components/ExternalRenderer.js +2 -1
  210. package/src/View/Components/FilterForm/FilterForm.js +2 -1
  211. package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
  212. package/src/View/Components/FilterForm/ListBoxMenu.js +2 -2
  213. package/src/View/Components/FilterForm/QuickFilterForm.js +5 -3
  214. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  215. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +2 -1
  216. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -2
  217. package/src/View/Components/ListBox/DualListBoxEditor.js +2 -1
  218. package/src/View/Components/ModuleValueSelector/index.js +2 -1
  219. package/src/View/Components/NewScopeComponent.js +6 -3
  220. package/src/View/Components/Panels/PanelFooter.js +2 -1
  221. package/src/View/Components/Panels/PanelWithImage.d.ts +1 -429
  222. package/src/View/Components/Panels/PanelWithImage.js +2 -0
  223. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -1
  224. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +2 -1
  225. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +2 -1
  226. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +2 -1
  227. package/src/View/Components/Popups/AdaptablePopup/CustomSettingsPanelView.js +2 -1
  228. package/src/View/Components/Popups/AdaptablePopup/Navigation.js +5 -5
  229. package/src/View/Components/Popups/AdaptablePopup/PopupContext.js +2 -1
  230. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +2 -1
  231. package/src/View/Components/Popups/AdaptablePopup/TopBar.js +6 -5
  232. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +2 -1
  233. package/src/View/Components/Popups/AdaptablePopupAlert.js +4 -4
  234. package/src/View/Components/Popups/AdaptablePopupPrompt.js +2 -1
  235. package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +2 -1
  236. package/src/View/Components/Popups/AdaptableToaster.js +2 -1
  237. package/src/View/Components/Popups/FormPopups/FormPopups.js +4 -2
  238. package/src/View/Components/Popups/Utilities.js +8 -4
  239. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +2 -1
  240. package/src/View/Components/Selectors/ColumnSelector.js +2 -1
  241. package/src/View/Components/TagValueSelector/index.js +4 -2
  242. package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +1 -1
  243. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +5 -1
  244. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +2 -1
  245. package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
  246. package/src/View/Components/ToolPanel/ToolPanelPopup.js +1 -1
  247. package/src/View/Components/ToolPanel/ToolPanelWrapper.js +2 -1
  248. package/src/View/Components/WizardSummaryPage.js +2 -1
  249. package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +2 -1
  250. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +4 -2
  251. package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +2 -1
  252. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +2 -1
  253. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +6 -3
  254. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +6 -3
  255. package/src/View/CustomSort/Wizard/CustomSortWizard.js +2 -1
  256. package/src/View/Dashboard/CustomDashboardButton.js +2 -1
  257. package/src/View/Dashboard/CustomToolbarWrapper.js +2 -1
  258. package/src/View/Dashboard/Dashboard.d.ts +1 -1
  259. package/src/View/Dashboard/Dashboard.js +4 -3
  260. package/src/View/Dashboard/DashboardPopup.js +1 -1
  261. package/src/View/Dashboard/ModuleToolbarWrapper.js +2 -1
  262. package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +7 -0
  263. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +6 -6
  264. package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.js +2 -1
  265. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +2 -1
  266. package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +2 -2
  267. package/src/View/DataChangeHistory/buildActionColumnButton.js +13 -9
  268. package/src/View/DataSet/DataSetSelector.js +2 -1
  269. package/src/View/DataSet/DataSetStatusPanelPopover.js +2 -1
  270. package/src/View/DataSet/DataSetViewPanel.d.ts +1 -1
  271. package/src/View/Export/ExportSelector.js +2 -1
  272. package/src/View/Export/ExportViewPanel.d.ts +1 -1
  273. package/src/View/Export/ReportExportDropdown.js +2 -1
  274. package/src/View/Export/Wizard/NewReportWizard.js +4 -2
  275. package/src/View/Export/Wizard/ReportColumnsWizardSection.js +6 -3
  276. package/src/View/Export/Wizard/ReportNameWizardSection.js +6 -3
  277. package/src/View/Export/Wizard/ReportRowsWizardSection.js +6 -3
  278. package/src/View/Filter/ActiveFiltersPanel.js +2 -1
  279. package/src/View/Filter/FilterStatusBarSubPanelPopover.js +2 -1
  280. package/src/View/Filter/FilterSummary.d.ts +1 -1
  281. package/src/View/Filter/FilterViewPanel.d.ts +1 -1
  282. package/src/View/FlashingCell/FlashingCellStyle.js +2 -1
  283. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +4 -2
  284. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +2 -1
  285. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +10 -5
  286. package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.js +6 -3
  287. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +2 -1
  288. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +2 -1
  289. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +8 -4
  290. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +4 -2
  291. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +4 -2
  292. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +4 -2
  293. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +6 -3
  294. package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +2 -1
  295. package/src/View/GridInfo/AdaptableObjectsSummary.js +2 -1
  296. package/src/View/GridInfo/AdaptableOptionsComponent.js +2 -1
  297. package/src/View/GridInfo/GridInfoPopup.js +5 -5
  298. package/src/View/KeyHint.js +2 -1
  299. package/src/View/Layout/EditCurrentLayoutButton.js +2 -1
  300. package/src/View/Layout/LayoutCloneButton.js +2 -1
  301. package/src/View/Layout/LayoutEditorStandalonePopup.js +2 -1
  302. package/src/View/Layout/LayoutPopup.d.ts +1 -1
  303. package/src/View/Layout/LayoutRadioSelector.js +2 -1
  304. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +2 -1
  305. package/src/View/Layout/LayoutViewPanel.d.ts +1 -1
  306. package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.js +2 -1
  307. package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +2 -1
  308. package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +2 -1
  309. package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +2 -1
  310. package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +2 -1
  311. package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +2 -1
  312. package/src/View/Layout/Wizard/LayoutEditor/reducer.js +4 -2
  313. package/src/View/Layout/Wizard/LayoutEditor/utils.js +2 -1
  314. package/src/View/License/LicenseWatermark.js +1 -1
  315. package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.js +2 -1
  316. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +6 -3
  317. package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +2 -1
  318. package/src/View/Query/EditCurrentQueryButton.js +2 -1
  319. package/src/View/Query/ExpandedQueryPopup.js +2 -1
  320. package/src/View/Query/QueryViewPanel.d.ts +1 -1
  321. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +6 -3
  322. package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +6 -3
  323. package/src/View/QuickSearch/QuickSearchStatusBarContent.js +2 -1
  324. package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +1 -1
  325. package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -1
  326. package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +2 -1
  327. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +4 -2
  328. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +2 -1
  329. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +2 -1
  330. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +2 -1
  331. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +2 -1
  332. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +2 -1
  333. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +4 -2
  334. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +2 -1
  335. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +2 -1
  336. package/src/View/Schedule/Wizard/ScheduleWizard.js +2 -1
  337. package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +2 -1
  338. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +6 -3
  339. package/src/View/Shortcut/Wizard/ShortcutWizard.js +2 -1
  340. package/src/View/SpecialColumnSettingsWizardStep.js +2 -1
  341. package/src/View/StateManagement/StateManagementPopup.js +2 -1
  342. package/src/View/StateManagement/StateManagementViewPanel.js +2 -1
  343. package/src/View/StateManagement/components/ClearButton.js +2 -1
  344. package/src/View/StateManagement/components/ExportDropdown.js +2 -1
  345. package/src/View/StateManagement/components/LoadButton.js +2 -1
  346. package/src/View/StateManagement/handleExportState.js +2 -1
  347. package/src/View/StatusBar/AdaptableStatusBar.js +2 -1
  348. package/src/View/StatusBar/StatusBarPanel.js +2 -1
  349. package/src/View/StatusBar/StatusBarPopup.js +5 -4
  350. package/src/View/SystemStatus/SystemStatusStatusBarContent.js +2 -1
  351. package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
  352. package/src/View/SystemStatus/Utilities/getStatusItemStyle.js +2 -1
  353. package/src/View/Theme/ThemeStatusPanelPopover.js +2 -1
  354. package/src/View/UIHelper.d.ts +2 -0
  355. package/src/View/UIHelper.js +12 -11
  356. package/src/View/Wizard/AdaptableWizard.js +2 -1
  357. package/src/View/Wizard/ObjectTagsWizardSection.js +4 -2
  358. package/src/View/Wizard/OnePageAdaptableWizard.js +10 -5
  359. package/src/View/Wizard/OnePageWizards.js +8 -4
  360. package/src/View/Wizard/useKeyboardNavigation.js +2 -1
  361. package/src/View/renderWithAdaptableContext.js +2 -1
  362. package/src/agGrid/ActionColumnRenderer.d.ts +1 -1
  363. package/src/agGrid/ActionColumnRenderer.js +1 -1
  364. package/src/agGrid/Adaptable.js +31 -28
  365. package/src/agGrid/CheckboxRenderer.js +2 -1
  366. package/src/agGrid/FilterWrapper.js +2 -1
  367. package/src/agGrid/FloatingFilterWrapper.js +2 -1
  368. package/src/agGrid/PercentBarRenderer.js +2 -1
  369. package/src/agGrid/agGridHelper.js +3 -1
  370. package/src/agGrid/agGridMenuHelper.js +13 -10
  371. package/src/agGrid/createAgStatusPanelComponent.js +2 -1
  372. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +8 -5
  373. package/src/components/AdaptableIconComponent/index.d.ts +10 -0
  374. package/src/components/AdaptableIconComponent/index.js +40 -0
  375. package/src/components/CheckBox/index.js +2 -1
  376. package/src/components/CodeBlock/index.js +2 -1
  377. package/src/components/Dashboard/DashboardManager.js +1 -1
  378. package/src/components/Datepicker/Caption.js +1 -1
  379. package/src/components/Datepicker/DatepickerContext.js +2 -1
  380. package/src/components/Datepicker/index.d.ts +1 -1
  381. package/src/components/DragAndDropContext/ModuleManager.d.ts +1 -0
  382. package/src/components/DragAndDropContext/ModuleManager.js +5 -4
  383. package/src/components/DragAndDropContext/UnusedPanel.d.ts +3 -2
  384. package/src/components/DragAndDropContext/UnusedPanel.js +14 -12
  385. package/src/components/EllipsisContainer/index.js +4 -2
  386. package/src/components/ExpressionEditor/EditorContext.js +2 -1
  387. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +2 -1
  388. package/src/components/ExpressionEditor/NamedQueryContext.js +3 -1
  389. package/src/components/FileDroppable/index.js +2 -1
  390. package/src/components/FormLayout/index.js +2 -1
  391. package/src/components/Input/index.d.ts +1 -1
  392. package/src/components/List/ListGroupItem/index.d.ts +2 -4
  393. package/src/components/Loader/Loader.js +4 -2
  394. package/src/components/Logo/index.js +2 -1
  395. package/src/components/Modal/Backdrop.js +2 -1
  396. package/src/components/Modal/index.js +2 -1
  397. package/src/components/OverlayTrigger/Overlay.js +2 -1
  398. package/src/components/OverlayTrigger/index.js +2 -1
  399. package/src/components/OverlayTrigger/utils.js +6 -3
  400. package/src/components/PopupWithFooter.d.ts +1 -1
  401. package/src/components/ProgressIndicator/ProgressIndicator.js +2 -1
  402. package/src/components/Radio/index.js +4 -2
  403. package/src/components/ResizeObserver/getResizeObserverObject.js +2 -1
  404. package/src/components/ResizeObserver/index.js +6 -3
  405. package/src/components/SelectList.js +2 -1
  406. package/src/components/SelectableList/index.js +2 -1
  407. package/src/components/SimpleButton/index.d.ts +2 -1
  408. package/src/components/SimpleButton/index.js +19 -6
  409. package/src/components/StylePreview.js +2 -1
  410. package/src/components/Tabs/index.js +6 -3
  411. package/src/components/Textarea/index.d.ts +5 -1
  412. package/src/components/ToggleButton/index.js +2 -1
  413. package/src/components/WindowModal/WindowModal.js +2 -1
  414. package/src/components/WindowModal/useStacking.js +2 -1
  415. package/src/components/icons/DefaultIcon.js +2 -1
  416. package/src/components/icons/index.d.ts +3 -1
  417. package/src/components/icons/index.js +10 -2
  418. package/src/components/utils/useContainerScrollObserver/index.js +2 -1
  419. package/src/components/utils/useGlobalEvent.js +2 -1
  420. package/src/components/utils/useLatest.js +2 -1
  421. package/src/components/utils/useRerender.js +2 -1
  422. package/src/components/utils/uuid.js +2 -1
  423. package/src/metamodel/adaptable-metamodel-model.d.ts +1 -1
  424. package/src/metamodel/adaptable.metamodel.d.ts +211 -101
  425. package/src/metamodel/adaptable.metamodel.js +1 -12874
  426. package/src/types.d.ts +7 -5
  427. package/version.d.ts +1 -1
  428. package/version.js +1 -1
  429. package/src/Api/Events/RowFormSubmitted.d.ts +0 -19
  430. package/src/components/ApplicationIcon.d.ts +0 -6
  431. package/src/components/ApplicationIcon.js +0 -13
@@ -30,37 +30,44 @@ exports.ALERT_CLEAR_FLASHING_CELLS = 'ALERT_CLEAR_FLASHING_CELLS';
30
30
  * @ReduxAction Alert Module is ready
31
31
  */
32
32
  exports.ALERT_READY = 'ALERT_READY';
33
- exports.AlertDefinitionAdd = (alertDefinition) => ({
33
+ const AlertDefinitionAdd = (alertDefinition) => ({
34
34
  type: exports.ALERT_DEFINITION_ADD,
35
35
  alertDefinition,
36
36
  });
37
- exports.AlertDefinitionEdit = (alertDefinition) => ({
37
+ exports.AlertDefinitionAdd = AlertDefinitionAdd;
38
+ const AlertDefinitionEdit = (alertDefinition) => ({
38
39
  type: exports.ALERT_DEFINITION_EDIT,
39
40
  alertDefinition,
40
41
  });
41
- exports.AlertDefinitionDelete = (alertDefinition) => ({
42
+ exports.AlertDefinitionEdit = AlertDefinitionEdit;
43
+ const AlertDefinitionDelete = (alertDefinition) => ({
42
44
  type: exports.ALERT_DEFINITION_DELETE,
43
45
  alertDefinition,
44
46
  });
45
- exports.AlertDefinitionSuspend = (alertDefinition) => ({
47
+ exports.AlertDefinitionDelete = AlertDefinitionDelete;
48
+ const AlertDefinitionSuspend = (alertDefinition) => ({
46
49
  type: exports.ALERT_DEFINITION_SUSPEND,
47
50
  alertDefinition,
48
51
  });
49
- exports.AlertDefinitionUnSuspend = (alertDefinition) => ({
52
+ exports.AlertDefinitionSuspend = AlertDefinitionSuspend;
53
+ const AlertDefinitionUnSuspend = (alertDefinition) => ({
50
54
  type: exports.ALERT_DEFINITION_UNSUSPEND,
51
55
  alertDefinition,
52
56
  });
53
- exports.AlertReady = (alertState) => ({
57
+ exports.AlertDefinitionUnSuspend = AlertDefinitionUnSuspend;
58
+ const AlertReady = (alertState) => ({
54
59
  type: exports.ALERT_READY,
55
60
  alertState,
56
61
  });
57
- exports.AlertClearFlashingCells = () => ({
62
+ exports.AlertReady = AlertReady;
63
+ const AlertClearFlashingCells = () => ({
58
64
  type: exports.ALERT_CLEAR_FLASHING_CELLS,
59
65
  });
66
+ exports.AlertClearFlashingCells = AlertClearFlashingCells;
60
67
  const initialState = {
61
68
  AlertDefinitions: GeneralConstants_1.EMPTY_ARRAY,
62
69
  };
63
- exports.AlertReducer = (state = initialState, action) => {
70
+ const AlertReducer = (state = initialState, action) => {
64
71
  let alertDefinitions;
65
72
  switch (action.type) {
66
73
  case exports.ALERT_DEFINITION_ADD: {
@@ -96,3 +103,4 @@ exports.AlertReducer = (state = initialState, action) => {
96
103
  return state;
97
104
  }
98
105
  };
106
+ exports.AlertReducer = AlertReducer;
@@ -14,22 +14,25 @@ exports.APPLICATION_DATA_ENTRY_EDIT = 'APPLICATION_DATA_ENTRY_EDIT';
14
14
  * @ReduxAction An Application Data Entry has been deleted
15
15
  */
16
16
  exports.APPLICATION_DATA_ENTRY_DELETE = 'APPLICATION_DATA_ENTRY_DELETE';
17
- exports.ApplicationDataEntryAdd = (applicationDataEntry) => ({
17
+ const ApplicationDataEntryAdd = (applicationDataEntry) => ({
18
18
  type: exports.APPLICATION_DATA_ENTRY_ADD,
19
19
  applicationDataEntry,
20
20
  });
21
- exports.ApplicationDataEntryEdit = (applicationDataEntry) => ({
21
+ exports.ApplicationDataEntryAdd = ApplicationDataEntryAdd;
22
+ const ApplicationDataEntryEdit = (applicationDataEntry) => ({
22
23
  type: exports.APPLICATION_DATA_ENTRY_EDIT,
23
24
  applicationDataEntry,
24
25
  });
25
- exports.ApplicationDataEntryDelete = (applicationDataEntry) => ({
26
+ exports.ApplicationDataEntryEdit = ApplicationDataEntryEdit;
27
+ const ApplicationDataEntryDelete = (applicationDataEntry) => ({
26
28
  type: exports.APPLICATION_DATA_ENTRY_DELETE,
27
29
  applicationDataEntry,
28
30
  });
31
+ exports.ApplicationDataEntryDelete = ApplicationDataEntryDelete;
29
32
  const initialState = {
30
33
  ApplicationDataEntries: GeneralConstants_1.EMPTY_ARRAY,
31
34
  };
32
- exports.ApplicationReducer = (state = initialState, action) => {
35
+ const ApplicationReducer = (state = initialState, action) => {
33
36
  let applicationDataEntries;
34
37
  let index;
35
38
  switch (action.type) {
@@ -60,3 +63,4 @@ exports.ApplicationReducer = (state = initialState, action) => {
60
63
  return state;
61
64
  }
62
65
  };
66
+ exports.ApplicationReducer = ApplicationReducer;
@@ -13,14 +13,17 @@ exports.BULK_UPDATE_APPLY = 'BULK_UPDATE_APPLY';
13
13
  * @ReduxAction Bulk Update Module is ready
14
14
  */
15
15
  exports.BULK_UPDATE_READY = 'BULK_UPDATE_READY';
16
- exports.BulkUpdateComplete = (bypassValidationWarnings) => ({
16
+ const BulkUpdateComplete = (bypassValidationWarnings) => ({
17
17
  type: exports.BULK_UPDATE_COMPLETE,
18
18
  bypassValidationWarnings: bypassValidationWarnings,
19
19
  });
20
- exports.BulkUpdateApply = (gridCells) => ({
20
+ exports.BulkUpdateComplete = BulkUpdateComplete;
21
+ const BulkUpdateApply = (gridCells) => ({
21
22
  type: exports.BULK_UPDATE_APPLY,
22
23
  gridCells,
23
24
  });
24
- exports.BulkUpdateReady = () => ({
25
+ exports.BulkUpdateApply = BulkUpdateApply;
26
+ const BulkUpdateReady = () => ({
25
27
  type: exports.BULK_UPDATE_READY,
26
28
  });
29
+ exports.BulkUpdateReady = BulkUpdateReady;
@@ -20,26 +20,30 @@ exports.CALCULATED_COLUMN_DELETE = 'CALCULATED_COLUMN_DELETE';
20
20
  * @ReduxAction Calculated Column Module is ready
21
21
  */
22
22
  exports.CALCULATED_COLUMN_READY = 'CALCULATED_COLUMN_READY';
23
- exports.CalculatedColumnAdd = (calculatedColumn) => ({
23
+ const CalculatedColumnAdd = (calculatedColumn) => ({
24
24
  type: exports.CALCULATED_COLUMN_ADD,
25
25
  calculatedColumn,
26
26
  });
27
- exports.CalculatedColumnEdit = (calculatedColumn) => ({
27
+ exports.CalculatedColumnAdd = CalculatedColumnAdd;
28
+ const CalculatedColumnEdit = (calculatedColumn) => ({
28
29
  type: exports.CALCULATED_COLUMN_EDIT,
29
30
  calculatedColumn,
30
31
  });
31
- exports.CalculatedColumnDelete = (calculatedColumn) => ({
32
+ exports.CalculatedColumnEdit = CalculatedColumnEdit;
33
+ const CalculatedColumnDelete = (calculatedColumn) => ({
32
34
  type: exports.CALCULATED_COLUMN_DELETE,
33
35
  calculatedColumn,
34
36
  });
35
- exports.CalculatedColumnReady = (calculatedColumnState) => ({
37
+ exports.CalculatedColumnDelete = CalculatedColumnDelete;
38
+ const CalculatedColumnReady = (calculatedColumnState) => ({
36
39
  type: exports.CALCULATED_COLUMN_READY,
37
40
  calculatedColumnState,
38
41
  });
42
+ exports.CalculatedColumnReady = CalculatedColumnReady;
39
43
  const initialState = {
40
44
  CalculatedColumns: GeneralConstants_1.EMPTY_ARRAY,
41
45
  };
42
- exports.CalculatedColumnReducer = (state = initialState, action) => {
46
+ const CalculatedColumnReducer = (state = initialState, action) => {
43
47
  let calculatedColumns;
44
48
  switch (action.type) {
45
49
  case exports.CALCULATED_COLUMN_ADD: {
@@ -70,3 +74,4 @@ exports.CalculatedColumnReducer = (state = initialState, action) => {
70
74
  return state;
71
75
  }
72
76
  };
77
+ exports.CalculatedColumnReducer = CalculatedColumnReducer;
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.CellSummaryReady = exports.CELL_SUMMARY_READY = void 0;
4
4
  exports.CELL_SUMMARY_READY = 'CELL_SUMMARY_READY';
5
- exports.CellSummaryReady = () => ({
5
+ const CellSummaryReady = () => ({
6
6
  type: exports.CELL_SUMMARY_READY,
7
7
  });
8
+ exports.CellSummaryReady = CellSummaryReady;
@@ -29,34 +29,40 @@ exports.CONDITIONAL_STYLE_SUSPEND = 'CONDITIONAL_STYLE_SUSPEND';
29
29
  * @ReduxAction Conditional Style is un-suspended, or activated
30
30
  */
31
31
  exports.CONDITIONAL_STYLE_UNSUSPEND = 'CONDITIONAL_STYLE_UNSUSPEND';
32
- exports.ConditionalStyleAdd = (conditionalStyle) => ({
32
+ const ConditionalStyleAdd = (conditionalStyle) => ({
33
33
  type: exports.CONDITIONAL_STYLE_ADD,
34
34
  conditionalStyle,
35
35
  });
36
- exports.ConditionalStyleEdit = (conditionalStyle) => ({
36
+ exports.ConditionalStyleAdd = ConditionalStyleAdd;
37
+ const ConditionalStyleEdit = (conditionalStyle) => ({
37
38
  type: exports.CONDITIONAL_STYLE_EDIT,
38
39
  conditionalStyle,
39
40
  });
40
- exports.ConditionalStyleDelete = (conditionalStyle) => ({
41
+ exports.ConditionalStyleEdit = ConditionalStyleEdit;
42
+ const ConditionalStyleDelete = (conditionalStyle) => ({
41
43
  type: exports.CONDITIONAL_STYLE_DELETE,
42
44
  conditionalStyle,
43
45
  });
44
- exports.ConditionalStyleReady = (conditionalStyleState) => ({
46
+ exports.ConditionalStyleDelete = ConditionalStyleDelete;
47
+ const ConditionalStyleReady = (conditionalStyleState) => ({
45
48
  type: exports.CONDITIONAL_STYLE_READY,
46
49
  conditionalStyleState,
47
50
  });
48
- exports.ConditionalStyleSuspend = (conditionalStyle) => ({
51
+ exports.ConditionalStyleReady = ConditionalStyleReady;
52
+ const ConditionalStyleSuspend = (conditionalStyle) => ({
49
53
  type: exports.CONDITIONAL_STYLE_SUSPEND,
50
54
  conditionalStyle,
51
55
  });
52
- exports.ConditionalStyleUnSuspend = (conditionalStyle) => ({
56
+ exports.ConditionalStyleSuspend = ConditionalStyleSuspend;
57
+ const ConditionalStyleUnSuspend = (conditionalStyle) => ({
53
58
  type: exports.CONDITIONAL_STYLE_UNSUSPEND,
54
59
  conditionalStyle,
55
60
  });
61
+ exports.ConditionalStyleUnSuspend = ConditionalStyleUnSuspend;
56
62
  const initialState = {
57
63
  ConditionalStyles: GeneralConstants_1.EMPTY_ARRAY,
58
64
  };
59
- exports.ConditionalStyleReducer = (state = initialState, action) => {
65
+ const ConditionalStyleReducer = (state = initialState, action) => {
60
66
  let conditions;
61
67
  switch (action.type) {
62
68
  case exports.CONDITIONAL_STYLE_ADD: {
@@ -86,3 +92,4 @@ exports.ConditionalStyleReducer = (state = initialState, action) => {
86
92
  return state;
87
93
  }
88
94
  };
95
+ exports.ConditionalStyleReducer = ConditionalStyleReducer;
@@ -29,34 +29,40 @@ exports.CUSTOM_SORT_UNSUSPEND = 'CUSTOM_SORT_UNSUSPEND';
29
29
  * @ReduxAction Custom Sort Module is ready
30
30
  */
31
31
  exports.CUSTOM_SORT_READY = 'CUSTOM_SORT_READY';
32
- exports.CustomSortAdd = (customSort) => ({
32
+ const CustomSortAdd = (customSort) => ({
33
33
  type: exports.CUSTOM_SORT_ADD,
34
34
  customSort,
35
35
  });
36
- exports.CustomSortEdit = (customSort) => ({
36
+ exports.CustomSortAdd = CustomSortAdd;
37
+ const CustomSortEdit = (customSort) => ({
37
38
  type: exports.CUSTOM_SORT_EDIT,
38
39
  customSort,
39
40
  });
40
- exports.CustomSortDelete = (customSort) => ({
41
+ exports.CustomSortEdit = CustomSortEdit;
42
+ const CustomSortDelete = (customSort) => ({
41
43
  type: exports.CUSTOM_SORT_DELETE,
42
44
  customSort,
43
45
  });
44
- exports.CustomSortSuspend = (customSort) => ({
46
+ exports.CustomSortDelete = CustomSortDelete;
47
+ const CustomSortSuspend = (customSort) => ({
45
48
  type: exports.CUSTOM_SORT_SUSPEND,
46
49
  customSort,
47
50
  });
48
- exports.CustomSortUnSuspend = (customSort) => ({
51
+ exports.CustomSortSuspend = CustomSortSuspend;
52
+ const CustomSortUnSuspend = (customSort) => ({
49
53
  type: exports.CUSTOM_SORT_UNSUSPEND,
50
54
  customSort,
51
55
  });
52
- exports.CustomSortReady = (customSortState) => ({
56
+ exports.CustomSortUnSuspend = CustomSortUnSuspend;
57
+ const CustomSortReady = (customSortState) => ({
53
58
  type: exports.CUSTOM_SORT_READY,
54
59
  customSortState,
55
60
  });
61
+ exports.CustomSortReady = CustomSortReady;
56
62
  const initialState = {
57
63
  CustomSorts: GeneralConstants_1.EMPTY_ARRAY,
58
64
  };
59
- exports.CustomSortReducer = (state = initialState, action) => {
65
+ const CustomSortReducer = (state = initialState, action) => {
60
66
  let customSorts;
61
67
  switch (action.type) {
62
68
  case exports.CUSTOM_SORT_ADD: {
@@ -84,3 +90,4 @@ exports.CustomSortReducer = (state = initialState, action) => {
84
90
  return state;
85
91
  }
86
92
  };
93
+ exports.CustomSortReducer = CustomSortReducer;
@@ -46,50 +46,61 @@ exports.DASHBOARD_SET_TITLE = 'DASHBOARD_SET_TITLE';
46
46
  * @ReduxAction Dashboard is ready
47
47
  */
48
48
  exports.DASHBOARD_READY = 'DASHBOARD_READY';
49
- exports.DashboardSetModuleButtons = (moduleButtons) => ({
49
+ const DashboardSetModuleButtons = (moduleButtons) => ({
50
50
  type: exports.DASHBOARD_SET_MODULE_BUTTONS,
51
51
  moduleButtons: moduleButtons,
52
52
  });
53
- exports.DashboardSetActiveTabIndex = (ActiveTabIndex) => ({
53
+ exports.DashboardSetModuleButtons = DashboardSetModuleButtons;
54
+ const DashboardSetActiveTabIndex = (ActiveTabIndex) => ({
54
55
  type: exports.DASHBOARD_ACTIVE_TAB_INDEX_CHANGE,
55
56
  ActiveTabIndex,
56
57
  });
57
- exports.DashboardSetIsCollapsed = (IsCollapsed) => ({
58
+ exports.DashboardSetActiveTabIndex = DashboardSetActiveTabIndex;
59
+ const DashboardSetIsCollapsed = (IsCollapsed) => ({
58
60
  type: exports.DASHBOARD_SET_IS_COLLAPSED,
59
61
  IsCollapsed,
60
62
  });
61
- exports.DashboardSetIsFloating = (IsFloating) => ({
63
+ exports.DashboardSetIsCollapsed = DashboardSetIsCollapsed;
64
+ const DashboardSetIsFloating = (IsFloating) => ({
62
65
  type: exports.DASHBOARD_SET_IS_FLOATING,
63
66
  IsFloating,
64
67
  });
65
- exports.DashboardSetIsHidden = (IsHidden) => ({
68
+ exports.DashboardSetIsFloating = DashboardSetIsFloating;
69
+ const DashboardSetIsHidden = (IsHidden) => ({
66
70
  type: exports.DASHBOARD_SET_IS_HIDDEN,
67
71
  IsHidden,
68
72
  });
69
- exports.DashboardSetIsInline = (IsInline) => ({
73
+ exports.DashboardSetIsHidden = DashboardSetIsHidden;
74
+ const DashboardSetIsInline = (IsInline) => ({
70
75
  type: exports.DASHBOARD_SET_IS_INLINE,
71
76
  IsInline,
72
77
  });
73
- exports.DashboardSetFloatingPosition = (FloatingPosition) => ({
78
+ exports.DashboardSetIsInline = DashboardSetIsInline;
79
+ const DashboardSetFloatingPosition = (FloatingPosition) => ({
74
80
  type: exports.DASHBOARD_SET_FLOATING_POSITION,
75
81
  FloatingPosition,
76
82
  });
77
- exports.DashboardSetTabs = (Tabs) => ({
83
+ exports.DashboardSetFloatingPosition = DashboardSetFloatingPosition;
84
+ const DashboardSetTabs = (Tabs) => ({
78
85
  type: exports.DASHBOARD_SET_TABS,
79
86
  Tabs,
80
87
  });
81
- exports.DashboardCloseToolbar = (toolbar) => ({
88
+ exports.DashboardSetTabs = DashboardSetTabs;
89
+ const DashboardCloseToolbar = (toolbar) => ({
82
90
  toolbar,
83
91
  type: exports.DASHBOARD_CLOSE_TOOLBAR,
84
92
  });
85
- exports.DashboardSetTitle = (title) => ({
93
+ exports.DashboardCloseToolbar = DashboardCloseToolbar;
94
+ const DashboardSetTitle = (title) => ({
86
95
  type: exports.DASHBOARD_SET_TITLE,
87
96
  title,
88
97
  });
89
- exports.DashboardReady = (dashboardState) => ({
98
+ exports.DashboardSetTitle = DashboardSetTitle;
99
+ const DashboardReady = (dashboardState) => ({
90
100
  type: exports.DASHBOARD_READY,
91
101
  dashboardState,
92
102
  });
103
+ exports.DashboardReady = DashboardReady;
93
104
  const initialState = {
94
105
  Tabs: GeneralConstants_1.EMPTY_ARRAY,
95
106
  ActiveTabIndex: 0,
@@ -101,7 +112,7 @@ const initialState = {
101
112
  ModuleButtons: ['SettingsPanel'],
102
113
  DashboardTitle: '',
103
114
  };
104
- exports.DashboardReducer = (state = initialState, action) => {
115
+ const DashboardReducer = (state = initialState, action) => {
105
116
  switch (action.type) {
106
117
  case exports.DASHBOARD_SET_MODULE_BUTTONS: {
107
118
  const actionTyped = action;
@@ -162,3 +173,4 @@ exports.DashboardReducer = (state = initialState, action) => {
162
173
  return state;
163
174
  }
164
175
  };
176
+ exports.DashboardReducer = DashboardReducer;
@@ -32,41 +32,48 @@ exports.EXPORT_READY = 'EXPORT_READY';
32
32
  * @ReduxAction A report Destination has been selected
33
33
  */
34
34
  exports.DESTINATION_SELECT = 'DESTINATION_SELECT';
35
- exports.ReportSelect = (SelectedReport) => ({
35
+ const ReportSelect = (SelectedReport) => ({
36
36
  type: exports.REPORT_SELECT,
37
37
  SelectedReport,
38
38
  });
39
- exports.ReportAdd = (report) => ({
39
+ exports.ReportSelect = ReportSelect;
40
+ const ReportAdd = (report) => ({
40
41
  type: exports.REPORT_ADD,
41
42
  report,
42
43
  });
43
- exports.ReportEdit = (report) => ({
44
+ exports.ReportAdd = ReportAdd;
45
+ const ReportEdit = (report) => ({
44
46
  type: exports.REPORT_EDIT,
45
47
  report,
46
48
  });
47
- exports.ReportDelete = (report) => ({
49
+ exports.ReportEdit = ReportEdit;
50
+ const ReportDelete = (report) => ({
48
51
  type: exports.REPORT_DELETE,
49
52
  report,
50
53
  });
51
- exports.ExportReady = (exportState) => ({
54
+ exports.ReportDelete = ReportDelete;
55
+ const ExportReady = (exportState) => ({
52
56
  type: exports.EXPORT_READY,
53
57
  exportState,
54
58
  });
55
- exports.ExportApply = (Report, ExportDestination) => ({
59
+ exports.ExportReady = ExportReady;
60
+ const ExportApply = (Report, ExportDestination) => ({
56
61
  type: exports.EXPORT_APPLY,
57
62
  Report,
58
63
  ExportDestination,
59
64
  });
60
- exports.DestinationSelect = (SelectedDestination) => ({
65
+ exports.ExportApply = ExportApply;
66
+ const DestinationSelect = (SelectedDestination) => ({
61
67
  type: exports.DESTINATION_SELECT,
62
68
  SelectedDestination,
63
69
  });
70
+ exports.DestinationSelect = DestinationSelect;
64
71
  const initialState = {
65
72
  Reports: GeneralConstants_1.EMPTY_ARRAY,
66
73
  CurrentReport: GeneralConstants_1.EMPTY_STRING,
67
74
  CurrentDestination: GeneralConstants_1.EMPTY_STRING,
68
75
  };
69
- exports.ExportReducer = (state = initialState, action) => {
76
+ const ExportReducer = (state = initialState, action) => {
70
77
  let reports;
71
78
  switch (action.type) {
72
79
  case exports.REPORT_SELECT:
@@ -95,3 +102,4 @@ exports.ExportReducer = (state = initialState, action) => {
95
102
  return state;
96
103
  }
97
104
  };
105
+ exports.ExportReducer = ExportReducer;
@@ -29,38 +29,45 @@ exports.FLASHING_CELL_DEFINITION_UNSUSPEND = 'FLASHING_CELL_DEFINITION_UNSUSPEND
29
29
  */
30
30
  exports.FLASHING_CELL_READY = 'FLASHING_CELL_READY';
31
31
  exports.FLASHING_CELL_DEFINITION_SET = 'FLASHING_CELL_DEFINITION_SET';
32
- exports.FlashingCellDefinitionAdd = (flashingCellDefinition) => ({
32
+ const FlashingCellDefinitionAdd = (flashingCellDefinition) => ({
33
33
  type: exports.FLASHING_CELL_DEFINITION_ADD,
34
34
  flashingCellDefinition,
35
35
  });
36
- exports.FlashingCellDefinitionSet = (flashingCellDefinitions) => ({
36
+ exports.FlashingCellDefinitionAdd = FlashingCellDefinitionAdd;
37
+ const FlashingCellDefinitionSet = (flashingCellDefinitions) => ({
37
38
  type: exports.FLASHING_CELL_DEFINITION_SET,
38
39
  flashingCellDefinitions,
39
40
  });
40
- exports.FlashingCellDefinitionEdit = (flashingCellDefinition) => ({
41
+ exports.FlashingCellDefinitionSet = FlashingCellDefinitionSet;
42
+ const FlashingCellDefinitionEdit = (flashingCellDefinition) => ({
41
43
  type: exports.FLASHING_CELL_DEFINITION_EDIT,
42
44
  flashingCellDefinition,
43
45
  });
44
- exports.FlashingCellDefinitionDelete = (flashingCellDefinition) => ({
46
+ exports.FlashingCellDefinitionEdit = FlashingCellDefinitionEdit;
47
+ const FlashingCellDefinitionDelete = (flashingCellDefinition) => ({
45
48
  type: exports.FLASHING_CELL_DEFINITION_DELETE,
46
49
  flashingCellDefinition,
47
50
  });
48
- exports.FlashingCellDefinitionSuspend = (flashingCellDefinition) => ({
51
+ exports.FlashingCellDefinitionDelete = FlashingCellDefinitionDelete;
52
+ const FlashingCellDefinitionSuspend = (flashingCellDefinition) => ({
49
53
  type: exports.FLASHING_CELL_DEFINITION_SUSPEND,
50
54
  flashingCellDefinition,
51
55
  });
52
- exports.FlashingCellDefinitionUnSuspend = (flashingCellDefinition) => ({
56
+ exports.FlashingCellDefinitionSuspend = FlashingCellDefinitionSuspend;
57
+ const FlashingCellDefinitionUnSuspend = (flashingCellDefinition) => ({
53
58
  type: exports.FLASHING_CELL_DEFINITION_UNSUSPEND,
54
59
  flashingCellDefinition,
55
60
  });
56
- exports.FlashingCellReady = (alertState) => ({
61
+ exports.FlashingCellDefinitionUnSuspend = FlashingCellDefinitionUnSuspend;
62
+ const FlashingCellReady = (alertState) => ({
57
63
  type: exports.FLASHING_CELL_READY,
58
64
  alertState,
59
65
  });
66
+ exports.FlashingCellReady = FlashingCellReady;
60
67
  const initialState = {
61
68
  FlashingCellDefinitions: [],
62
69
  };
63
- exports.FlashingCellReducer = (state = initialState, action) => {
70
+ const FlashingCellReducer = (state = initialState, action) => {
64
71
  let flashingCellDefinitions;
65
72
  switch (action.type) {
66
73
  case exports.FLASHING_CELL_DEFINITION_SET: {
@@ -94,3 +101,4 @@ exports.FlashingCellReducer = (state = initialState, action) => {
94
101
  return state;
95
102
  }
96
103
  };
104
+ exports.FlashingCellReducer = FlashingCellReducer;
@@ -29,34 +29,40 @@ exports.FORMAT_COLUMN_SUSPEND = 'FORMAT_COLUMN_SUSPEND';
29
29
  * @ReduxAction FormatColumn Module is un-suspended, or activated
30
30
  */
31
31
  exports.FORMAT_COLUMN_UNSUSPEND = 'FORMAT_COLUMN_UNSUSPEND';
32
- exports.FormatColumnAdd = (formatColumn) => ({
32
+ const FormatColumnAdd = (formatColumn) => ({
33
33
  type: exports.FORMAT_COLUMN_ADD,
34
34
  formatColumn,
35
35
  });
36
- exports.FormatColumnEdit = (formatColumn) => ({
36
+ exports.FormatColumnAdd = FormatColumnAdd;
37
+ const FormatColumnEdit = (formatColumn) => ({
37
38
  type: exports.FORMAT_COLUMN_EDIT,
38
39
  formatColumn,
39
40
  });
40
- exports.FormatColumnDelete = (formatColumn) => ({
41
+ exports.FormatColumnEdit = FormatColumnEdit;
42
+ const FormatColumnDelete = (formatColumn) => ({
41
43
  type: exports.FORMAT_COLUMN_DELETE,
42
44
  formatColumn,
43
45
  });
44
- exports.FormatColumnSuspend = (formatColumn) => ({
46
+ exports.FormatColumnDelete = FormatColumnDelete;
47
+ const FormatColumnSuspend = (formatColumn) => ({
45
48
  type: exports.FORMAT_COLUMN_SUSPEND,
46
49
  formatColumn,
47
50
  });
48
- exports.FormatColumnUnSuspend = (formatColumn) => ({
51
+ exports.FormatColumnSuspend = FormatColumnSuspend;
52
+ const FormatColumnUnSuspend = (formatColumn) => ({
49
53
  type: exports.FORMAT_COLUMN_UNSUSPEND,
50
54
  formatColumn,
51
55
  });
52
- exports.FormatColumnReady = (formatColumnState) => ({
56
+ exports.FormatColumnUnSuspend = FormatColumnUnSuspend;
57
+ const FormatColumnReady = (formatColumnState) => ({
53
58
  type: exports.FORMAT_COLUMN_READY,
54
59
  formatColumnState,
55
60
  });
61
+ exports.FormatColumnReady = FormatColumnReady;
56
62
  const initialState = {
57
63
  FormatColumns: GeneralConstants_1.EMPTY_ARRAY,
58
64
  };
59
- exports.FormatColumnReducer = (state = initialState, action) => {
65
+ const FormatColumnReducer = (state = initialState, action) => {
60
66
  let formatColumns;
61
67
  switch (action.type) {
62
68
  case exports.FORMAT_COLUMN_ADD: {
@@ -83,3 +89,4 @@ exports.FormatColumnReducer = (state = initialState, action) => {
83
89
  return state;
84
90
  }
85
91
  };
92
+ exports.FormatColumnReducer = FormatColumnReducer;
@@ -24,31 +24,36 @@ exports.FREE_TEXT_COLUMN_ADD_EDIT_STORED_VALUE = 'FREE_TEXT_COLUMN_ADD_EDIT_STOR
24
24
  * @ReduxAction FreeTextColumn Module is ready
25
25
  */
26
26
  exports.FREE_TEXT_COLUMN_READY = 'FREE_TEXT_COLUMN_READY';
27
- exports.FreeTextColumnAdd = (freeTextColumn) => ({
27
+ const FreeTextColumnAdd = (freeTextColumn) => ({
28
28
  type: exports.FREE_TEXT_COLUMN_ADD,
29
29
  freeTextColumn,
30
30
  });
31
- exports.FreeTextColumnEdit = (freeTextColumn) => ({
31
+ exports.FreeTextColumnAdd = FreeTextColumnAdd;
32
+ const FreeTextColumnEdit = (freeTextColumn) => ({
32
33
  type: exports.FREE_TEXT_COLUMN_EDIT,
33
34
  freeTextColumn,
34
35
  });
35
- exports.FreeTextColumnDelete = (freeTextColumn) => ({
36
+ exports.FreeTextColumnEdit = FreeTextColumnEdit;
37
+ const FreeTextColumnDelete = (freeTextColumn) => ({
36
38
  type: exports.FREE_TEXT_COLUMN_DELETE,
37
39
  freeTextColumn,
38
40
  });
39
- exports.FreeTextColumnAddEditStoredValue = (FreeTextColumn, FreeTextStoredValue) => ({
41
+ exports.FreeTextColumnDelete = FreeTextColumnDelete;
42
+ const FreeTextColumnAddEditStoredValue = (FreeTextColumn, FreeTextStoredValue) => ({
40
43
  type: exports.FREE_TEXT_COLUMN_ADD_EDIT_STORED_VALUE,
41
44
  FreeTextColumn,
42
45
  FreeTextStoredValue,
43
46
  });
44
- exports.FreeTextColumnReady = (freeTextColumnState) => ({
47
+ exports.FreeTextColumnAddEditStoredValue = FreeTextColumnAddEditStoredValue;
48
+ const FreeTextColumnReady = (freeTextColumnState) => ({
45
49
  type: exports.FREE_TEXT_COLUMN_READY,
46
50
  freeTextColumnState,
47
51
  });
52
+ exports.FreeTextColumnReady = FreeTextColumnReady;
48
53
  const initialState = {
49
54
  FreeTextColumns: GeneralConstants_1.EMPTY_ARRAY,
50
55
  };
51
- exports.FreeTextColumnReducer = (state = initialState, action) => {
56
+ const FreeTextColumnReducer = (state = initialState, action) => {
52
57
  var _a;
53
58
  let freeTextColumns;
54
59
  switch (action.type) {
@@ -74,7 +79,8 @@ exports.FreeTextColumnReducer = (state = initialState, action) => {
74
79
  }
75
80
  case exports.FREE_TEXT_COLUMN_ADD_EDIT_STORED_VALUE: {
76
81
  const actionTypedAddEditStoredValue = action;
77
- actionTypedAddEditStoredValue.FreeTextColumn.FreeTextStoredValues = (_a = actionTypedAddEditStoredValue.FreeTextColumn.FreeTextStoredValues) !== null && _a !== void 0 ? _a : [];
82
+ actionTypedAddEditStoredValue.FreeTextColumn.FreeTextStoredValues =
83
+ (_a = actionTypedAddEditStoredValue.FreeTextColumn.FreeTextStoredValues) !== null && _a !== void 0 ? _a : [];
78
84
  let existingIndex = actionTypedAddEditStoredValue.FreeTextColumn.FreeTextStoredValues.findIndex((ftsv) => ftsv.PrimaryKey == actionTypedAddEditStoredValue.FreeTextStoredValue.PrimaryKey);
79
85
  if (existingIndex != -1) {
80
86
  actionTypedAddEditStoredValue.FreeTextColumn.FreeTextStoredValues[existingIndex] =
@@ -92,3 +98,4 @@ exports.FreeTextColumnReducer = (state = initialState, action) => {
92
98
  return state;
93
99
  }
94
100
  };
101
+ exports.FreeTextColumnReducer = FreeTextColumnReducer;