@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
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ScheduleReducer = exports.IPushPullScheduleUnSuspend = exports.IPushPullScheduleSuspend = exports.IPushPullScheduleDelete = exports.IPushPullScheduleEdit = exports.IPushPullScheduleAdd = exports.ReminderScheduleUnSuspend = exports.ReminderScheduleSuspend = exports.ReminderScheduleDelete = exports.ReminderScheduleEdit = exports.ReminderScheduleAdd = exports.ReportScheduleUnSuspend = exports.ReportScheduleSuspend = exports.ReportScheduleDelete = exports.ReportScheduleEdit = exports.ReportScheduleAdd = exports.OpenFinScheduleUnSuspend = exports.OpenFinScheduleSuspend = exports.OpenFinScheduleDelete = exports.OpenFinScheduleEdit = exports.OpenFinScheduleAdd = exports.Glue42ScheduleUnSuspend = exports.Glue42ScheduleSuspend = exports.Glue42ScheduleDelete = exports.Glue42ScheduleEdit = exports.Glue42ScheduleAdd = exports.ScheduleReady = exports.ScheduleJobRun = exports.SCHEDULE_READY = exports.OPENFIN_SCHEDULE_UNSUSPEND = exports.OPENFIN_SCHEDULE_SUSPEND = exports.OPENFIN_SCHEDULE_DELETE = exports.OPENFIN_SCHEDULE_EDIT = exports.OPENFIN_SCHEDULE_ADD = exports.GLUE42_SCHEDULE_UNSUSPEND = exports.GLUE42_SCHEDULE_SUSPEND = exports.GLUE42_SCHEDULE_DELETE = exports.GLUE42_SCHEDULE_EDIT = exports.GLUE42_SCHEDULE_ADD = exports.IPUSHPULL_SCHEDULE_UNSUSPEND = exports.IPUSHPULL_SCHEDULE_SUSPEND = exports.IPUSHPULL_SCHEDULE_DELETE = exports.IPUSHPULL_SCHEDULE_EDIT = exports.IPUSHPULL_SCHEDULE_ADD = exports.REMINDER_SCHEDULE_UNSUSPEND = exports.REMINDER_SCHEDULE_SUSPEND = exports.REMINDER_SCHEDULE_DELETE = exports.REMINDER_SCHEDULE_EDIT = exports.REMINDER_SCHEDULE_ADD = exports.REPORT_SCHEDULE_UNSUSPEND = exports.REPORT_SCHEDULE_SUSPEND = exports.REPORT_SCHEDULE_DELETE = exports.REPORT_SCHEDULE_EDIT = exports.REPORT_SCHEDULE_ADD = exports.SCHEDULE_JOB_RUN = void 0;
3
+ exports.IPushPullScheduleAdd = exports.ReminderScheduleUnSuspend = exports.ReminderScheduleSuspend = exports.ReminderScheduleDelete = exports.ReminderScheduleEdit = exports.ReminderScheduleAdd = exports.ReportScheduleUnSuspend = exports.ReportScheduleSuspend = exports.ReportScheduleDelete = exports.ReportScheduleEdit = exports.ReportScheduleAdd = exports.OpenFinScheduleUnSuspend = exports.OpenFinScheduleSuspend = exports.OpenFinScheduleDelete = exports.OpenFinScheduleEdit = exports.OpenFinScheduleAdd = exports.Glue42ScheduleUnSuspend = exports.Glue42ScheduleSuspend = exports.Glue42ScheduleDelete = exports.Glue42ScheduleEdit = exports.Glue42ScheduleAdd = exports.ScheduleReady = exports.ScheduleJobRun = exports.SCHEDULE_READY = exports.OPENFIN_SCHEDULE_UNSUSPEND = exports.OPENFIN_SCHEDULE_SUSPEND = exports.OPENFIN_SCHEDULE_DELETE = exports.OPENFIN_SCHEDULE_EDIT = exports.OPENFIN_SCHEDULE_ADD = exports.GLUE42_SCHEDULE_UNSUSPEND = exports.GLUE42_SCHEDULE_SUSPEND = exports.GLUE42_SCHEDULE_DELETE = exports.GLUE42_SCHEDULE_EDIT = exports.GLUE42_SCHEDULE_ADD = exports.IPUSHPULL_SCHEDULE_UNSUSPEND = exports.IPUSHPULL_SCHEDULE_SUSPEND = exports.IPUSHPULL_SCHEDULE_DELETE = exports.IPUSHPULL_SCHEDULE_EDIT = exports.IPUSHPULL_SCHEDULE_ADD = exports.REMINDER_SCHEDULE_UNSUSPEND = exports.REMINDER_SCHEDULE_SUSPEND = exports.REMINDER_SCHEDULE_DELETE = exports.REMINDER_SCHEDULE_EDIT = exports.REMINDER_SCHEDULE_ADD = exports.REPORT_SCHEDULE_UNSUSPEND = exports.REPORT_SCHEDULE_SUSPEND = exports.REPORT_SCHEDULE_DELETE = exports.REPORT_SCHEDULE_EDIT = exports.REPORT_SCHEDULE_ADD = exports.SCHEDULE_JOB_RUN = void 0;
4
+ exports.ScheduleReducer = exports.IPushPullScheduleUnSuspend = exports.IPushPullScheduleSuspend = exports.IPushPullScheduleDelete = exports.IPushPullScheduleEdit = void 0;
4
5
  const tslib_1 = require("tslib");
5
6
  const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
6
7
  const AdaptableHelper_1 = tslib_1.__importDefault(require("../../Utilities/Helpers/AdaptableHelper"));
@@ -113,123 +114,150 @@ exports.OPENFIN_SCHEDULE_UNSUSPEND = 'OPENFIN_SCHEDULE_UNSUSPEND';
113
114
  * @ReduxAction Schedule Module is ready
114
115
  */
115
116
  exports.SCHEDULE_READY = 'SCHEDULE_READY';
116
- exports.ScheduleJobRun = (schedule, scheduleType) => ({
117
+ const ScheduleJobRun = (schedule, scheduleType) => ({
117
118
  type: exports.SCHEDULE_JOB_RUN,
118
119
  schedule,
119
120
  scheduleType,
120
121
  });
121
- exports.ScheduleReady = (scheduleState) => ({
122
+ exports.ScheduleJobRun = ScheduleJobRun;
123
+ const ScheduleReady = (scheduleState) => ({
122
124
  type: exports.SCHEDULE_READY,
123
125
  scheduleState,
124
126
  });
125
- exports.Glue42ScheduleAdd = (glue42Schedule) => ({
127
+ exports.ScheduleReady = ScheduleReady;
128
+ const Glue42ScheduleAdd = (glue42Schedule) => ({
126
129
  type: exports.GLUE42_SCHEDULE_ADD,
127
130
  glue42Schedule,
128
131
  });
129
- exports.Glue42ScheduleEdit = (glue42Schedule) => ({
132
+ exports.Glue42ScheduleAdd = Glue42ScheduleAdd;
133
+ const Glue42ScheduleEdit = (glue42Schedule) => ({
130
134
  type: exports.GLUE42_SCHEDULE_EDIT,
131
135
  glue42Schedule,
132
136
  });
133
- exports.Glue42ScheduleDelete = (glue42Schedule) => ({
137
+ exports.Glue42ScheduleEdit = Glue42ScheduleEdit;
138
+ const Glue42ScheduleDelete = (glue42Schedule) => ({
134
139
  type: exports.GLUE42_SCHEDULE_DELETE,
135
140
  glue42Schedule,
136
141
  });
137
- exports.Glue42ScheduleSuspend = (glue42Schedule) => ({
142
+ exports.Glue42ScheduleDelete = Glue42ScheduleDelete;
143
+ const Glue42ScheduleSuspend = (glue42Schedule) => ({
138
144
  type: exports.GLUE42_SCHEDULE_SUSPEND,
139
145
  glue42Schedule,
140
146
  });
141
- exports.Glue42ScheduleUnSuspend = (glue42Schedule) => ({
147
+ exports.Glue42ScheduleSuspend = Glue42ScheduleSuspend;
148
+ const Glue42ScheduleUnSuspend = (glue42Schedule) => ({
142
149
  type: exports.GLUE42_SCHEDULE_UNSUSPEND,
143
150
  glue42Schedule,
144
151
  });
145
- exports.OpenFinScheduleAdd = (openFinSchedule) => ({
152
+ exports.Glue42ScheduleUnSuspend = Glue42ScheduleUnSuspend;
153
+ const OpenFinScheduleAdd = (openFinSchedule) => ({
146
154
  type: exports.OPENFIN_SCHEDULE_ADD,
147
155
  openFinSchedule,
148
156
  });
149
- exports.OpenFinScheduleEdit = (openFinSchedule) => ({
157
+ exports.OpenFinScheduleAdd = OpenFinScheduleAdd;
158
+ const OpenFinScheduleEdit = (openFinSchedule) => ({
150
159
  type: exports.OPENFIN_SCHEDULE_EDIT,
151
160
  openFinSchedule,
152
161
  });
153
- exports.OpenFinScheduleDelete = (openFinSchedule) => ({
162
+ exports.OpenFinScheduleEdit = OpenFinScheduleEdit;
163
+ const OpenFinScheduleDelete = (openFinSchedule) => ({
154
164
  type: exports.OPENFIN_SCHEDULE_DELETE,
155
165
  openFinSchedule,
156
166
  });
157
- exports.OpenFinScheduleSuspend = (openFinSchedule) => ({
167
+ exports.OpenFinScheduleDelete = OpenFinScheduleDelete;
168
+ const OpenFinScheduleSuspend = (openFinSchedule) => ({
158
169
  type: exports.OPENFIN_SCHEDULE_SUSPEND,
159
170
  openFinSchedule,
160
171
  });
161
- exports.OpenFinScheduleUnSuspend = (openFinSchedule) => ({
172
+ exports.OpenFinScheduleSuspend = OpenFinScheduleSuspend;
173
+ const OpenFinScheduleUnSuspend = (openFinSchedule) => ({
162
174
  type: exports.OPENFIN_SCHEDULE_UNSUSPEND,
163
175
  openFinSchedule,
164
176
  });
177
+ exports.OpenFinScheduleUnSuspend = OpenFinScheduleUnSuspend;
165
178
  // Report
166
- exports.ReportScheduleAdd = (reportSchedule) => ({
179
+ const ReportScheduleAdd = (reportSchedule) => ({
167
180
  type: exports.REPORT_SCHEDULE_ADD,
168
181
  reportSchedule,
169
182
  });
170
- exports.ReportScheduleEdit = (reportSchedule) => ({
183
+ exports.ReportScheduleAdd = ReportScheduleAdd;
184
+ const ReportScheduleEdit = (reportSchedule) => ({
171
185
  type: exports.REPORT_SCHEDULE_EDIT,
172
186
  reportSchedule,
173
187
  });
174
- exports.ReportScheduleDelete = (reportSchedule) => ({
188
+ exports.ReportScheduleEdit = ReportScheduleEdit;
189
+ const ReportScheduleDelete = (reportSchedule) => ({
175
190
  type: exports.REPORT_SCHEDULE_DELETE,
176
191
  reportSchedule,
177
192
  });
178
- exports.ReportScheduleSuspend = (reportSchedule) => ({
193
+ exports.ReportScheduleDelete = ReportScheduleDelete;
194
+ const ReportScheduleSuspend = (reportSchedule) => ({
179
195
  type: exports.REPORT_SCHEDULE_SUSPEND,
180
196
  reportSchedule,
181
197
  });
182
- exports.ReportScheduleUnSuspend = (reportSchedule) => ({
198
+ exports.ReportScheduleSuspend = ReportScheduleSuspend;
199
+ const ReportScheduleUnSuspend = (reportSchedule) => ({
183
200
  type: exports.REPORT_SCHEDULE_UNSUSPEND,
184
201
  reportSchedule,
185
202
  });
186
- exports.ReminderScheduleAdd = (reminderSchedule) => ({
203
+ exports.ReportScheduleUnSuspend = ReportScheduleUnSuspend;
204
+ const ReminderScheduleAdd = (reminderSchedule) => ({
187
205
  type: exports.REMINDER_SCHEDULE_ADD,
188
206
  reminderSchedule,
189
207
  });
190
- exports.ReminderScheduleEdit = (reminderSchedule) => ({
208
+ exports.ReminderScheduleAdd = ReminderScheduleAdd;
209
+ const ReminderScheduleEdit = (reminderSchedule) => ({
191
210
  type: exports.REMINDER_SCHEDULE_EDIT,
192
211
  reminderSchedule,
193
212
  });
194
- exports.ReminderScheduleDelete = (reminderSchedule) => ({
213
+ exports.ReminderScheduleEdit = ReminderScheduleEdit;
214
+ const ReminderScheduleDelete = (reminderSchedule) => ({
195
215
  type: exports.REMINDER_SCHEDULE_DELETE,
196
216
  reminderSchedule,
197
217
  });
198
- exports.ReminderScheduleSuspend = (reminderSchedule) => ({
218
+ exports.ReminderScheduleDelete = ReminderScheduleDelete;
219
+ const ReminderScheduleSuspend = (reminderSchedule) => ({
199
220
  type: exports.REMINDER_SCHEDULE_SUSPEND,
200
221
  reminderSchedule,
201
222
  });
202
- exports.ReminderScheduleUnSuspend = (reminderSchedule) => ({
223
+ exports.ReminderScheduleSuspend = ReminderScheduleSuspend;
224
+ const ReminderScheduleUnSuspend = (reminderSchedule) => ({
203
225
  type: exports.REMINDER_SCHEDULE_UNSUSPEND,
204
226
  reminderSchedule,
205
227
  });
206
- exports.IPushPullScheduleAdd = (iPushPullSchedule) => ({
228
+ exports.ReminderScheduleUnSuspend = ReminderScheduleUnSuspend;
229
+ const IPushPullScheduleAdd = (iPushPullSchedule) => ({
207
230
  type: exports.IPUSHPULL_SCHEDULE_ADD,
208
231
  iPushPullSchedule,
209
232
  });
210
- exports.IPushPullScheduleEdit = (iPushPullSchedule) => ({
233
+ exports.IPushPullScheduleAdd = IPushPullScheduleAdd;
234
+ const IPushPullScheduleEdit = (iPushPullSchedule) => ({
211
235
  type: exports.IPUSHPULL_SCHEDULE_EDIT,
212
236
  iPushPullSchedule,
213
237
  });
214
- exports.IPushPullScheduleDelete = (iPushPullSchedule) => ({
238
+ exports.IPushPullScheduleEdit = IPushPullScheduleEdit;
239
+ const IPushPullScheduleDelete = (iPushPullSchedule) => ({
215
240
  type: exports.IPUSHPULL_SCHEDULE_DELETE,
216
241
  iPushPullSchedule,
217
242
  });
218
- exports.IPushPullScheduleSuspend = (iPushPullSchedule) => ({
243
+ exports.IPushPullScheduleDelete = IPushPullScheduleDelete;
244
+ const IPushPullScheduleSuspend = (iPushPullSchedule) => ({
219
245
  type: exports.IPUSHPULL_SCHEDULE_SUSPEND,
220
246
  iPushPullSchedule,
221
247
  });
222
- exports.IPushPullScheduleUnSuspend = (iPushPullSchedule) => ({
248
+ exports.IPushPullScheduleSuspend = IPushPullScheduleSuspend;
249
+ const IPushPullScheduleUnSuspend = (iPushPullSchedule) => ({
223
250
  type: exports.IPUSHPULL_SCHEDULE_UNSUSPEND,
224
251
  iPushPullSchedule,
225
252
  });
253
+ exports.IPushPullScheduleUnSuspend = IPushPullScheduleUnSuspend;
226
254
  const initialState = {
227
255
  ReportSchedules: GeneralConstants_1.EMPTY_ARRAY,
228
256
  Reminders: GeneralConstants_1.EMPTY_ARRAY,
229
257
  IPushPullSchedules: GeneralConstants_1.EMPTY_ARRAY,
230
258
  OpenFinSchedules: GeneralConstants_1.EMPTY_ARRAY,
231
259
  };
232
- exports.ScheduleReducer = (state = initialState, action) => {
260
+ const ScheduleReducer = (state = initialState, action) => {
233
261
  switch (action.type) {
234
262
  case exports.GLUE42_SCHEDULE_ADD: {
235
263
  const actionSchedule = action.glue42Schedule;
@@ -343,3 +371,4 @@ exports.ScheduleReducer = (state = initialState, action) => {
343
371
  return state;
344
372
  }
345
373
  };
374
+ exports.ScheduleReducer = ScheduleReducer;
@@ -29,34 +29,40 @@ exports.SHORTCUT_UNSUSPEND = 'SHORTCUT_UNSUSPEND';
29
29
  * @ReduxAction Shortcut Module is ready
30
30
  */
31
31
  exports.SHORTCUT_READY = 'SHORTCUT_READY';
32
- exports.ShortcutAdd = (shortcut) => ({
32
+ const ShortcutAdd = (shortcut) => ({
33
33
  type: exports.SHORTCUT_ADD,
34
34
  shortcut,
35
35
  });
36
- exports.ShortcutEdit = (shortcut) => ({
36
+ exports.ShortcutAdd = ShortcutAdd;
37
+ const ShortcutEdit = (shortcut) => ({
37
38
  type: exports.SHORTCUT_EDIT,
38
39
  shortcut,
39
40
  });
40
- exports.ShortcutDelete = (shortcut) => ({
41
+ exports.ShortcutEdit = ShortcutEdit;
42
+ const ShortcutDelete = (shortcut) => ({
41
43
  type: exports.SHORTCUT_DELETE,
42
44
  shortcut,
43
45
  });
44
- exports.ShortcutSuspend = (shortcut) => ({
46
+ exports.ShortcutDelete = ShortcutDelete;
47
+ const ShortcutSuspend = (shortcut) => ({
45
48
  type: exports.SHORTCUT_SUSPEND,
46
49
  shortcut,
47
50
  });
48
- exports.ShortcutUnSuspend = (shortcut) => ({
51
+ exports.ShortcutSuspend = ShortcutSuspend;
52
+ const ShortcutUnSuspend = (shortcut) => ({
49
53
  type: exports.SHORTCUT_UNSUSPEND,
50
54
  shortcut,
51
55
  });
52
- exports.ShortcutReady = (shortcutState) => ({
56
+ exports.ShortcutUnSuspend = ShortcutUnSuspend;
57
+ const ShortcutReady = (shortcutState) => ({
53
58
  type: exports.SHORTCUT_READY,
54
59
  shortcutState,
55
60
  });
61
+ exports.ShortcutReady = ShortcutReady;
56
62
  const initialState = {
57
63
  Shortcuts: GeneralConstants_1.EMPTY_ARRAY,
58
64
  };
59
- exports.ShortcutReducer = (state = initialState, action) => {
65
+ const ShortcutReducer = (state = initialState, action) => {
60
66
  let shortcuts;
61
67
  switch (action.type) {
62
68
  case exports.SHORTCUT_ADD: {
@@ -84,3 +90,4 @@ exports.ShortcutReducer = (state = initialState, action) => {
84
90
  return state;
85
91
  }
86
92
  };
93
+ exports.ShortcutReducer = ShortcutReducer;
@@ -13,14 +13,17 @@ exports.SMART_EDIT_APPLY = 'SMART_EDIT_APPLY';
13
13
  * @ReduxAction SmartEdit Module is ready
14
14
  */
15
15
  exports.SMART_EDIT_READY = 'SMART_EDIT_READY';
16
- exports.SmartEditRun = (bypassValidationWarnings) => ({
16
+ const SmartEditRun = (bypassValidationWarnings) => ({
17
17
  type: exports.SMART_EDIT_COMPLETE,
18
18
  bypassValidationWarnings: bypassValidationWarnings,
19
19
  });
20
- exports.SmartEditApply = (gridCells) => ({
20
+ exports.SmartEditRun = SmartEditRun;
21
+ const SmartEditApply = (gridCells) => ({
21
22
  type: exports.SMART_EDIT_APPLY,
22
23
  gridCells,
23
24
  });
24
- exports.SmartEditReady = () => ({
25
+ exports.SmartEditApply = SmartEditApply;
26
+ const SmartEditReady = () => ({
25
27
  type: exports.SMART_EDIT_READY,
26
28
  });
29
+ exports.SmartEditReady = SmartEditReady;
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.StatusBarReducer = exports.ToolPanelReady = exports.getStatusPanelsSelector = exports.initialState = exports.StatusBarSetPanels = exports.STATUS_BAR_READY = exports.SET_STATUS_BAR_PANELS = void 0;
4
+ const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
4
5
  /**
5
6
  * @ReduxAction Sets status bar panels
6
7
  */
@@ -9,19 +10,22 @@ exports.SET_STATUS_BAR_PANELS = 'SET_STATUS_BAR_PANELS';
9
10
  * @ReduxAction AdapTable Status Bar is ready
10
11
  */
11
12
  exports.STATUS_BAR_READY = 'STATUS_BAR_READY';
12
- exports.StatusBarSetPanels = (statusPanels) => ({
13
+ const StatusBarSetPanels = (statusPanels) => ({
13
14
  statusPanels: statusPanels,
14
15
  type: exports.SET_STATUS_BAR_PANELS,
15
16
  });
17
+ exports.StatusBarSetPanels = StatusBarSetPanels;
16
18
  exports.initialState = {
17
- StatusBars: [],
19
+ StatusBars: GeneralConstants_1.EMPTY_ARRAY,
18
20
  };
19
- exports.getStatusPanelsSelector = (state) => state.StatusBar.StatusBars;
20
- exports.ToolPanelReady = (statusBarState) => ({
21
+ const getStatusPanelsSelector = (state) => state.StatusBar.StatusBars;
22
+ exports.getStatusPanelsSelector = getStatusPanelsSelector;
23
+ const ToolPanelReady = (statusBarState) => ({
21
24
  type: exports.STATUS_BAR_READY,
22
25
  statusBarState,
23
26
  });
24
- exports.StatusBarReducer = (state = exports.initialState, action) => {
27
+ exports.ToolPanelReady = ToolPanelReady;
28
+ const StatusBarReducer = (state = exports.initialState, action) => {
25
29
  switch (action.type) {
26
30
  case exports.SET_STATUS_BAR_PANELS:
27
31
  const newPanels = action.statusPanels;
@@ -29,3 +33,4 @@ exports.StatusBarReducer = (state = exports.initialState, action) => {
29
33
  }
30
34
  return state;
31
35
  };
36
+ exports.StatusBarReducer = StatusBarReducer;
@@ -1,6 +1,8 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SystemReducer = exports.SystemDataSetSelect = exports.SystemDashboardRefresh = exports.SystemLayoutShowNotAssociatedObjects = exports.SystemFilterFormHide = exports.SystemQuickFilterBarHide = exports.SystemQuickFilterBarShow = exports.SystemSettingsPanelSet = exports.SystemDataChangeHistoryResume = exports.SystemDataChangeHistorySuspend = exports.SystemDataChangeHistoryDisable = exports.SystemDataChangeHistoryEnable = exports.SystemDataChangeHistoryUndo = exports.SystemDataChangeHistoryAdd = exports.SystemLicenseDisablePersistence = exports.SystemLicenseShowWatermark = exports.SystemProgressIndicatorHide = exports.SystemProgressIndicatorShow = exports.SystemCellSummaryChangeOperation = exports.SystemCachedQueryAdd = exports.SetLastAppliedShortcut = exports.SetNewColumnListOrder = exports.BulkUpdateChangeValue = exports.BulkUpdateSetPreview = exports.BulkUpdateSetValidSelection = exports.BulkUpdateCheckCellSelection = exports.SmartEditSetPreview = exports.SmartEditSetValidSelection = exports.SmartEditCheckCellSelection = exports.SmartEditChangeOperation = exports.SmartEditChangeValue = exports.SystemStatusMessageInfoDeleteAll = exports.SystemStatusMessageInfoDelete = exports.SystemStatusMessageInfoAdd = exports.SystemFlashingCellDeleteAll = exports.SystemFlashingCellDelete = exports.SystemFlashingCellAdd = exports.SystemAlertRemoveRowHighlight = exports.SystemAlertRemoveCellHighlight = exports.SystemAlertDeleteAll = exports.SystemAlertDelete = exports.SystemAlertAdd = exports.SystemHighlightRowDeleteAll = exports.SystemHighlightRowsDelete = exports.SystemHighlightRowDelete = exports.SystemHighlightRowsAdd = exports.SystemHighlightRowAdd = exports.SystemHighlightCellDeleteAll = exports.SystemHighlightCellDelete = exports.SystemHighlightCellAdd = exports.SYSTEM_DATA_SET_SELECT = exports.DASHBOARD_REFRESH = exports.SYSTEM_LAYOUT_SHOW_NOT_ASSOCIATED_OBJECTS = exports.SYSTEM_FILTER_FORM_HIDE = exports.SYSTEM_QUICK_FILTER_BAR_HIDE = exports.SYSTEM_QUICK_FILTER_BAR_SHOW = exports.SYSTEM_SETTINGS_PANEL_SET = exports.SYSTEM_DATA_CHANGE_HISTORY_RESUME = exports.SYSTEM_DATA_CHANGE_HISTORY_SUSPEND = exports.SYSTEM_DATA_CHANGE_HISTORY_DISABLE = exports.SYSTEM_DATA_CHANGE_HISTORY_ENABLE = exports.SYSTEM_DATA_CHANGE_HISTORY_UNDO = exports.SYSTEM_DATA_CHANGE_HISTORY_ADD = exports.SYSTEM_LICENSE_DISABLE_PERSISTENCE = exports.SYSTEM_LICENSE_SHOW_WATERMARK = exports.SYSTEM_PROGRESS_INDICATOR_HIDE = exports.SYSTEM_PROGRESS_INDICATOR_SHOW = exports.SYSTEM_CELL_SUMMARY_CHANGE_OPERATION = exports.SYSTEM_CACHED_QUERY_ADD = exports.SYSTEM_SET_LAST_APPLIED_SHORTCUT = exports.SYSTEM_SET_NEW_COLUMN_LIST_ORDER = exports.SYSTEM_HIGHLIGHT_ROW_DELETE_ALL = exports.SYSTEM_HIGHLIGHT_ROWS_DELETE = exports.SYSTEM_HIGHLIGHT_ROW_DELETE = exports.SYSTEM_HIGHLIGHT_ROWS_ADD = exports.SYSTEM_HIGHLIGHT_ROW_ADD = exports.SYSTEM_HIGHLIGHT_CELL_DELETE_ALL = exports.SYSTEM_HIGHLIGHT_CELL_DELETE = exports.SYSTEM_HIGHLIGHT_CELL_ADD = exports.SYSTEM_BULK_UPDATE_CHANGE_VALUE = exports.SYSTEM_BULK_UPDATE_SET_PREVIEW = exports.SYSTEM_BULK_UPDATE_SET_VALID_SELECTION = exports.SYSTEM_BULK_UPDATE_CHECK_CELL_SELECTION = exports.SYSTEM_SMART_EDIT_CHANGE_OPERATION = exports.SYSTEM_SMART_EDIT_CHANGE_VALUE = exports.SYSTEM_SMARTEDIT_SET_PREVIEW = exports.SYSTEM_SMARTEDIT_SET_VALID_SELECTION = exports.SYSTEM_SMARTEDIT_FETCH_PREVIEW = exports.SYSTEM_SMARTEDIT_CHECK_CELL_SELECTION = exports.SYSTEM_STATUS_MESSAGE_INFO_DELETE_ALL = exports.SYSTEM_STATUS_MESSAGE_INFO_DELETE = exports.SYSTEM_STATUS_MESSAGE_INFO_ADD = exports.SYSTEM_FLASHING_CELL_DELETE_ALL = exports.SYSTEM_FLASHING_CELL_DELETE = exports.SYSTEM_FLASHING_CELL_ADD = exports.SYSTEM_ALERT_REMOVE_ROW_HIGHLIGHT = exports.SYSTEM_ALERT_REMOVE_CELL_HIGHLIGHT = exports.SYSTEM_ALERT_DELETE_ALL = exports.SYSTEM_ALERT_DELETE = exports.SYSTEM_ALERT_ADD = exports.FLASHING_CELL_ROW_KEY = void 0;
3
+ exports.DASHBOARD_REFRESH = exports.SYSTEM_LAYOUT_SHOW_NOT_ASSOCIATED_OBJECTS = exports.SYSTEM_FILTER_FORM_HIDE = exports.SYSTEM_QUICK_FILTER_BAR_HIDE = exports.SYSTEM_QUICK_FILTER_BAR_SHOW = exports.SYSTEM_SETTINGS_PANEL_SET = exports.SYSTEM_DATA_CHANGE_HISTORY_RESUME = exports.SYSTEM_DATA_CHANGE_HISTORY_SUSPEND = exports.SYSTEM_DATA_CHANGE_HISTORY_DISABLE = exports.SYSTEM_DATA_CHANGE_HISTORY_ENABLE = exports.SYSTEM_DATA_CHANGE_HISTORY_UNDO = exports.SYSTEM_DATA_CHANGE_HISTORY_ADD = exports.SYSTEM_LICENSE_DISABLE_PERSISTENCE = exports.SYSTEM_LICENSE_SHOW_WATERMARK = exports.SYSTEM_PROGRESS_INDICATOR_HIDE = exports.SYSTEM_PROGRESS_INDICATOR_SHOW = exports.SYSTEM_CELL_SUMMARY_CHANGE_OPERATION = exports.SYSTEM_CACHED_QUERY_ADD = exports.SYSTEM_SET_LAST_APPLIED_SHORTCUT = exports.SYSTEM_SET_NEW_COLUMN_LIST_ORDER = exports.SYSTEM_HIGHLIGHT_ROW_DELETE_ALL = exports.SYSTEM_HIGHLIGHT_ROWS_DELETE = exports.SYSTEM_HIGHLIGHT_ROW_DELETE = exports.SYSTEM_HIGHLIGHT_ROWS_ADD = exports.SYSTEM_HIGHLIGHT_ROW_ADD = exports.SYSTEM_HIGHLIGHT_CELL_DELETE_ALL = exports.SYSTEM_HIGHLIGHT_CELL_DELETE = exports.SYSTEM_HIGHLIGHT_CELL_ADD = exports.SYSTEM_BULK_UPDATE_CHANGE_VALUE = exports.SYSTEM_BULK_UPDATE_SET_PREVIEW = exports.SYSTEM_BULK_UPDATE_SET_VALID_SELECTION = exports.SYSTEM_BULK_UPDATE_CHECK_CELL_SELECTION = exports.SYSTEM_SMART_EDIT_CHANGE_OPERATION = exports.SYSTEM_SMART_EDIT_CHANGE_VALUE = exports.SYSTEM_SMARTEDIT_SET_PREVIEW = exports.SYSTEM_SMARTEDIT_SET_VALID_SELECTION = exports.SYSTEM_SMARTEDIT_FETCH_PREVIEW = exports.SYSTEM_SMARTEDIT_CHECK_CELL_SELECTION = exports.SYSTEM_STATUS_MESSAGE_INFO_DELETE_ALL = exports.SYSTEM_STATUS_MESSAGE_INFO_DELETE = exports.SYSTEM_STATUS_MESSAGE_INFO_ADD = exports.SYSTEM_FLASHING_CELL_DELETE_ALL = exports.SYSTEM_FLASHING_CELL_DELETE = exports.SYSTEM_FLASHING_CELL_ADD = exports.SYSTEM_ALERT_REMOVE_ROW_HIGHLIGHT = exports.SYSTEM_ALERT_REMOVE_CELL_HIGHLIGHT = exports.SYSTEM_ALERT_DELETE_ALL = exports.SYSTEM_ALERT_DELETE = exports.SYSTEM_ALERT_ADD = exports.FLASHING_CELL_ROW_KEY = void 0;
4
+ exports.SystemDataSetSelect = exports.SystemDashboardRefresh = exports.SystemLayoutShowNotAssociatedObjects = exports.SystemFilterFormHide = exports.SystemQuickFilterBarHide = exports.SystemQuickFilterBarShow = exports.SystemSettingsPanelSet = exports.SystemDataChangeHistoryResume = exports.SystemDataChangeHistorySuspend = exports.SystemDataChangeHistoryDisable = exports.SystemDataChangeHistoryEnable = exports.SystemDataChangeHistoryUndo = exports.SystemDataChangeHistoryAdd = exports.SystemLicenseDisablePersistence = exports.SystemLicenseShowWatermark = exports.SystemProgressIndicatorHide = exports.SystemProgressIndicatorShow = exports.SystemCellSummaryChangeOperation = exports.SystemCachedQueryAdd = exports.SetLastAppliedShortcut = exports.SetNewColumnListOrder = exports.BulkUpdateChangeValue = exports.BulkUpdateSetPreview = exports.BulkUpdateSetValidSelection = exports.BulkUpdateCheckCellSelection = exports.SmartEditSetPreview = exports.SmartEditSetValidSelection = exports.SmartEditCheckCellSelection = exports.SmartEditChangeOperation = exports.SmartEditChangeValue = exports.SystemStatusMessageInfoDeleteAll = exports.SystemStatusMessageInfoDelete = exports.SystemStatusMessageInfoAdd = exports.SystemFlashingCellDeleteAll = exports.SystemFlashingCellDelete = exports.SystemFlashingCellAdd = exports.SystemAlertRemoveRowHighlight = exports.SystemAlertRemoveCellHighlight = exports.SystemAlertDeleteAll = exports.SystemAlertDelete = exports.SystemAlertAdd = exports.SystemHighlightRowDeleteAll = exports.SystemHighlightRowsDelete = exports.SystemHighlightRowDelete = exports.SystemHighlightRowsAdd = exports.SystemHighlightRowAdd = exports.SystemHighlightCellDeleteAll = exports.SystemHighlightCellDelete = exports.SystemHighlightCellAdd = exports.SYSTEM_DATA_SET_SELECT = void 0;
5
+ exports.SystemReducer = void 0;
4
6
  const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
5
7
  const Enums_1 = require("../../PredefinedConfig/Common/Enums");
6
8
  const Helper_1 = require("../../Utilities/Helpers/Helper");
@@ -77,191 +79,240 @@ exports.SYSTEM_LAYOUT_SHOW_NOT_ASSOCIATED_OBJECTS = 'SYSTEM_LAYOUT_SHOW_NOT_ASSO
77
79
  exports.DASHBOARD_REFRESH = 'DASHBOARD_REFRESH';
78
80
  // DataSet
79
81
  exports.SYSTEM_DATA_SET_SELECT = 'SYSTEM_DATA_SET_SELECT';
80
- exports.SystemHighlightCellAdd = (cellHighlightInfo) => ({
82
+ const SystemHighlightCellAdd = (cellHighlightInfo) => ({
81
83
  type: exports.SYSTEM_HIGHLIGHT_CELL_ADD,
82
84
  cellHighlightInfo: cellHighlightInfo,
83
85
  });
84
- exports.SystemHighlightCellDelete = (primaryKeyValue, columnId) => ({
86
+ exports.SystemHighlightCellAdd = SystemHighlightCellAdd;
87
+ const SystemHighlightCellDelete = (primaryKeyValue, columnId) => ({
85
88
  type: exports.SYSTEM_HIGHLIGHT_CELL_DELETE,
86
89
  primaryKeyValue,
87
90
  columnId,
88
91
  });
89
- exports.SystemHighlightCellDeleteAll = () => ({
92
+ exports.SystemHighlightCellDelete = SystemHighlightCellDelete;
93
+ const SystemHighlightCellDeleteAll = () => ({
90
94
  type: exports.SYSTEM_HIGHLIGHT_CELL_DELETE_ALL,
91
95
  });
92
- exports.SystemHighlightRowAdd = (rowHighlightInfo) => ({
96
+ exports.SystemHighlightCellDeleteAll = SystemHighlightCellDeleteAll;
97
+ const SystemHighlightRowAdd = (rowHighlightInfo) => ({
93
98
  type: exports.SYSTEM_HIGHLIGHT_ROW_ADD,
94
99
  rowHighlightInfo: rowHighlightInfo,
95
100
  });
96
- exports.SystemHighlightRowsAdd = (rowsHighlightInfo) => ({
101
+ exports.SystemHighlightRowAdd = SystemHighlightRowAdd;
102
+ const SystemHighlightRowsAdd = (rowsHighlightInfo) => ({
97
103
  type: exports.SYSTEM_HIGHLIGHT_ROWS_ADD,
98
104
  rowsHighlightInfo: rowsHighlightInfo,
99
105
  });
100
- exports.SystemHighlightRowDelete = (primaryKeyValue) => ({
106
+ exports.SystemHighlightRowsAdd = SystemHighlightRowsAdd;
107
+ const SystemHighlightRowDelete = (primaryKeyValue) => ({
101
108
  type: exports.SYSTEM_HIGHLIGHT_ROW_DELETE,
102
109
  primaryKeyValue: primaryKeyValue,
103
110
  });
104
- exports.SystemHighlightRowsDelete = (primaryKeyValues) => ({
111
+ exports.SystemHighlightRowDelete = SystemHighlightRowDelete;
112
+ const SystemHighlightRowsDelete = (primaryKeyValues) => ({
105
113
  type: exports.SYSTEM_HIGHLIGHT_ROWS_DELETE,
106
114
  primaryKeyValues: primaryKeyValues,
107
115
  });
108
- exports.SystemHighlightRowDeleteAll = () => ({
116
+ exports.SystemHighlightRowsDelete = SystemHighlightRowsDelete;
117
+ const SystemHighlightRowDeleteAll = () => ({
109
118
  type: exports.SYSTEM_HIGHLIGHT_ROW_DELETE_ALL,
110
119
  });
111
- exports.SystemAlertAdd = (alert, maxAlerts) => ({
120
+ exports.SystemHighlightRowDeleteAll = SystemHighlightRowDeleteAll;
121
+ const SystemAlertAdd = (alert, maxAlerts) => ({
112
122
  type: exports.SYSTEM_ALERT_ADD,
113
123
  alert: alert,
114
124
  maxAlerts: maxAlerts,
115
125
  });
116
- exports.SystemAlertDelete = (alert) => ({
126
+ exports.SystemAlertAdd = SystemAlertAdd;
127
+ const SystemAlertDelete = (alert) => ({
117
128
  type: exports.SYSTEM_ALERT_DELETE,
118
129
  alert: alert,
119
130
  });
120
- exports.SystemAlertDeleteAll = (alerts) => ({
131
+ exports.SystemAlertDelete = SystemAlertDelete;
132
+ const SystemAlertDeleteAll = (alerts) => ({
121
133
  type: exports.SYSTEM_ALERT_DELETE_ALL,
122
134
  alerts: alerts,
123
135
  });
124
- exports.SystemAlertRemoveCellHighlight = (alert) => ({
136
+ exports.SystemAlertDeleteAll = SystemAlertDeleteAll;
137
+ const SystemAlertRemoveCellHighlight = (alert) => ({
125
138
  type: exports.SYSTEM_ALERT_REMOVE_CELL_HIGHLIGHT,
126
139
  alert: alert,
127
140
  });
128
- exports.SystemAlertRemoveRowHighlight = (alert) => ({
141
+ exports.SystemAlertRemoveCellHighlight = SystemAlertRemoveCellHighlight;
142
+ const SystemAlertRemoveRowHighlight = (alert) => ({
129
143
  type: exports.SYSTEM_ALERT_REMOVE_ROW_HIGHLIGHT,
130
144
  alert: alert,
131
145
  });
132
- exports.SystemFlashingCellAdd = (flashingCell) => ({
146
+ exports.SystemAlertRemoveRowHighlight = SystemAlertRemoveRowHighlight;
147
+ const SystemFlashingCellAdd = (flashingCell) => ({
133
148
  type: exports.SYSTEM_FLASHING_CELL_ADD,
134
149
  flashingCell: flashingCell,
135
150
  });
136
- exports.SystemFlashingCellDelete = (flashingCell) => ({
151
+ exports.SystemFlashingCellAdd = SystemFlashingCellAdd;
152
+ const SystemFlashingCellDelete = (flashingCell) => ({
137
153
  type: exports.SYSTEM_FLASHING_CELL_DELETE,
138
154
  flashingCell: flashingCell,
139
155
  });
140
- exports.SystemFlashingCellDeleteAll = (flashingCells) => ({
156
+ exports.SystemFlashingCellDelete = SystemFlashingCellDelete;
157
+ const SystemFlashingCellDeleteAll = (flashingCells) => ({
141
158
  type: exports.SYSTEM_FLASHING_CELL_DELETE_ALL,
142
159
  flashingCells: flashingCells,
143
160
  });
144
- exports.SystemStatusMessageInfoAdd = (SystemStatusMessageInfo, MaxSystemStatusMessagesInStore) => ({
161
+ exports.SystemFlashingCellDeleteAll = SystemFlashingCellDeleteAll;
162
+ const SystemStatusMessageInfoAdd = (SystemStatusMessageInfo, MaxSystemStatusMessagesInStore) => ({
145
163
  type: exports.SYSTEM_STATUS_MESSAGE_INFO_ADD,
146
164
  systemStatusMessageInfo: SystemStatusMessageInfo,
147
165
  maxSystemStatusMessagesInStore: MaxSystemStatusMessagesInStore,
148
166
  });
149
- exports.SystemStatusMessageInfoDelete = (SystemStatusMessageInfo) => ({
167
+ exports.SystemStatusMessageInfoAdd = SystemStatusMessageInfoAdd;
168
+ const SystemStatusMessageInfoDelete = (SystemStatusMessageInfo) => ({
150
169
  type: exports.SYSTEM_STATUS_MESSAGE_INFO_DELETE,
151
170
  systemStatusMessageInfo: SystemStatusMessageInfo,
152
171
  });
153
- exports.SystemStatusMessageInfoDeleteAll = () => ({
172
+ exports.SystemStatusMessageInfoDelete = SystemStatusMessageInfoDelete;
173
+ const SystemStatusMessageInfoDeleteAll = () => ({
154
174
  type: exports.SYSTEM_STATUS_MESSAGE_INFO_DELETE_ALL,
155
175
  });
156
- exports.SmartEditChangeValue = (value) => ({
176
+ exports.SystemStatusMessageInfoDeleteAll = SystemStatusMessageInfoDeleteAll;
177
+ const SmartEditChangeValue = (value) => ({
157
178
  type: exports.SYSTEM_SMART_EDIT_CHANGE_VALUE,
158
179
  value,
159
180
  });
160
- exports.SmartEditChangeOperation = (smartEditOperation) => ({
181
+ exports.SmartEditChangeValue = SmartEditChangeValue;
182
+ const SmartEditChangeOperation = (smartEditOperation) => ({
161
183
  type: exports.SYSTEM_SMART_EDIT_CHANGE_OPERATION,
162
184
  smartEditOperation,
163
185
  });
164
- exports.SmartEditCheckCellSelection = () => ({
186
+ exports.SmartEditChangeOperation = SmartEditChangeOperation;
187
+ const SmartEditCheckCellSelection = () => ({
165
188
  type: exports.SYSTEM_SMARTEDIT_CHECK_CELL_SELECTION,
166
189
  });
167
- exports.SmartEditSetValidSelection = (IsValidSmartEditSelection) => ({
190
+ exports.SmartEditCheckCellSelection = SmartEditCheckCellSelection;
191
+ const SmartEditSetValidSelection = (IsValidSmartEditSelection) => ({
168
192
  type: exports.SYSTEM_SMARTEDIT_SET_VALID_SELECTION,
169
193
  isValidSmartEditSelection: IsValidSmartEditSelection,
170
194
  });
171
- exports.SmartEditSetPreview = (SmartEditPreviewInfo) => ({
195
+ exports.SmartEditSetValidSelection = SmartEditSetValidSelection;
196
+ const SmartEditSetPreview = (SmartEditPreviewInfo) => ({
172
197
  type: exports.SYSTEM_SMARTEDIT_SET_PREVIEW,
173
198
  smartEditPreviewInfo: SmartEditPreviewInfo,
174
199
  });
175
- exports.BulkUpdateCheckCellSelection = () => ({
200
+ exports.SmartEditSetPreview = SmartEditSetPreview;
201
+ const BulkUpdateCheckCellSelection = () => ({
176
202
  type: exports.SYSTEM_BULK_UPDATE_CHECK_CELL_SELECTION,
177
203
  });
178
- exports.BulkUpdateSetValidSelection = (bulkUpdateValidationResult) => ({
204
+ exports.BulkUpdateCheckCellSelection = BulkUpdateCheckCellSelection;
205
+ const BulkUpdateSetValidSelection = (bulkUpdateValidationResult) => ({
179
206
  type: exports.SYSTEM_BULK_UPDATE_SET_VALID_SELECTION,
180
207
  bulkUpdateValidationResult,
181
208
  });
182
- exports.BulkUpdateSetPreview = (BulkUpdatePreviewInfo) => ({
209
+ exports.BulkUpdateSetValidSelection = BulkUpdateSetValidSelection;
210
+ const BulkUpdateSetPreview = (BulkUpdatePreviewInfo) => ({
183
211
  type: exports.SYSTEM_BULK_UPDATE_SET_PREVIEW,
184
212
  bulkUpdatePreviewInfo: BulkUpdatePreviewInfo,
185
213
  });
186
- exports.BulkUpdateChangeValue = (bulkUpdateValue) => ({
214
+ exports.BulkUpdateSetPreview = BulkUpdateSetPreview;
215
+ const BulkUpdateChangeValue = (bulkUpdateValue) => ({
187
216
  type: exports.SYSTEM_BULK_UPDATE_CHANGE_VALUE,
188
217
  bulkUpdateValue,
189
218
  });
190
- exports.SetNewColumnListOrder = (VisibleColumnList) => ({
219
+ exports.BulkUpdateChangeValue = BulkUpdateChangeValue;
220
+ const SetNewColumnListOrder = (VisibleColumnList) => ({
191
221
  type: exports.SYSTEM_SET_NEW_COLUMN_LIST_ORDER,
192
222
  visibleColumnList: VisibleColumnList,
193
223
  });
194
- exports.SetLastAppliedShortcut = (gridCell) => ({
224
+ exports.SetNewColumnListOrder = SetNewColumnListOrder;
225
+ const SetLastAppliedShortcut = (gridCell) => ({
195
226
  type: exports.SYSTEM_SET_LAST_APPLIED_SHORTCUT,
196
227
  gridCell,
197
228
  });
198
- exports.SystemCachedQueryAdd = (cachedQuery) => ({
229
+ exports.SetLastAppliedShortcut = SetLastAppliedShortcut;
230
+ const SystemCachedQueryAdd = (cachedQuery) => ({
199
231
  type: exports.SYSTEM_CACHED_QUERY_ADD,
200
232
  cachedQuery,
201
233
  });
202
- exports.SystemCellSummaryChangeOperation = (cellSummaryOperation) => ({
234
+ exports.SystemCachedQueryAdd = SystemCachedQueryAdd;
235
+ const SystemCellSummaryChangeOperation = (cellSummaryOperation) => ({
203
236
  type: exports.SYSTEM_CELL_SUMMARY_CHANGE_OPERATION,
204
237
  cellSummaryOperation: cellSummaryOperation,
205
238
  });
206
- exports.SystemProgressIndicatorShow = (label) => ({
239
+ exports.SystemCellSummaryChangeOperation = SystemCellSummaryChangeOperation;
240
+ const SystemProgressIndicatorShow = (label) => ({
207
241
  type: exports.SYSTEM_PROGRESS_INDICATOR_SHOW,
208
242
  label,
209
243
  });
210
- exports.SystemProgressIndicatorHide = () => ({
244
+ exports.SystemProgressIndicatorShow = SystemProgressIndicatorShow;
245
+ const SystemProgressIndicatorHide = () => ({
211
246
  type: exports.SYSTEM_PROGRESS_INDICATOR_HIDE,
212
247
  });
213
- exports.SystemLicenseShowWatermark = (text) => ({
248
+ exports.SystemProgressIndicatorHide = SystemProgressIndicatorHide;
249
+ const SystemLicenseShowWatermark = (text) => ({
214
250
  type: exports.SYSTEM_LICENSE_SHOW_WATERMARK,
215
251
  text,
216
252
  });
217
- exports.SystemLicenseDisablePersistence = () => ({
253
+ exports.SystemLicenseShowWatermark = SystemLicenseShowWatermark;
254
+ const SystemLicenseDisablePersistence = () => ({
218
255
  type: exports.SYSTEM_LICENSE_DISABLE_PERSISTENCE,
219
256
  });
220
- exports.SystemDataChangeHistoryAdd = (changeInfo) => ({
257
+ exports.SystemLicenseDisablePersistence = SystemLicenseDisablePersistence;
258
+ const SystemDataChangeHistoryAdd = (changeInfo) => ({
221
259
  type: exports.SYSTEM_DATA_CHANGE_HISTORY_ADD,
222
260
  changeInfo,
223
261
  });
224
- exports.SystemDataChangeHistoryUndo = (changeInfo) => ({
262
+ exports.SystemDataChangeHistoryAdd = SystemDataChangeHistoryAdd;
263
+ const SystemDataChangeHistoryUndo = (changeInfo) => ({
225
264
  type: exports.SYSTEM_DATA_CHANGE_HISTORY_UNDO,
226
265
  changeInfo,
227
266
  });
228
- exports.SystemDataChangeHistoryEnable = () => ({
267
+ exports.SystemDataChangeHistoryUndo = SystemDataChangeHistoryUndo;
268
+ const SystemDataChangeHistoryEnable = () => ({
229
269
  type: exports.SYSTEM_DATA_CHANGE_HISTORY_ENABLE,
230
270
  });
231
- exports.SystemDataChangeHistoryDisable = () => ({
271
+ exports.SystemDataChangeHistoryEnable = SystemDataChangeHistoryEnable;
272
+ const SystemDataChangeHistoryDisable = () => ({
232
273
  type: exports.SYSTEM_DATA_CHANGE_HISTORY_DISABLE,
233
274
  });
234
- exports.SystemDataChangeHistorySuspend = () => ({
275
+ exports.SystemDataChangeHistoryDisable = SystemDataChangeHistoryDisable;
276
+ const SystemDataChangeHistorySuspend = () => ({
235
277
  type: exports.SYSTEM_DATA_CHANGE_HISTORY_SUSPEND,
236
278
  });
237
- exports.SystemDataChangeHistoryResume = () => ({
279
+ exports.SystemDataChangeHistorySuspend = SystemDataChangeHistorySuspend;
280
+ const SystemDataChangeHistoryResume = () => ({
238
281
  type: exports.SYSTEM_DATA_CHANGE_HISTORY_RESUME,
239
282
  });
240
- exports.SystemSettingsPanelSet = (name, settings) => ({
283
+ exports.SystemDataChangeHistoryResume = SystemDataChangeHistoryResume;
284
+ const SystemSettingsPanelSet = (name, settings) => ({
241
285
  type: exports.SYSTEM_SETTINGS_PANEL_SET,
242
286
  name,
243
287
  settings,
244
288
  });
245
- exports.SystemQuickFilterBarShow = () => ({
289
+ exports.SystemSettingsPanelSet = SystemSettingsPanelSet;
290
+ const SystemQuickFilterBarShow = () => ({
246
291
  type: exports.SYSTEM_QUICK_FILTER_BAR_SHOW,
247
292
  });
248
- exports.SystemQuickFilterBarHide = () => ({
293
+ exports.SystemQuickFilterBarShow = SystemQuickFilterBarShow;
294
+ const SystemQuickFilterBarHide = () => ({
249
295
  type: exports.SYSTEM_QUICK_FILTER_BAR_HIDE,
250
296
  });
251
- exports.SystemFilterFormHide = () => ({
297
+ exports.SystemQuickFilterBarHide = SystemQuickFilterBarHide;
298
+ const SystemFilterFormHide = () => ({
252
299
  type: exports.SYSTEM_FILTER_FORM_HIDE,
253
300
  });
254
- exports.SystemLayoutShowNotAssociatedObjects = (showNotAssociatedObjects) => ({
301
+ exports.SystemFilterFormHide = SystemFilterFormHide;
302
+ const SystemLayoutShowNotAssociatedObjects = (showNotAssociatedObjects) => ({
255
303
  type: exports.SYSTEM_LAYOUT_SHOW_NOT_ASSOCIATED_OBJECTS,
256
304
  showNotAssociatedObjects,
257
305
  });
258
- exports.SystemDashboardRefresh = () => ({
306
+ exports.SystemLayoutShowNotAssociatedObjects = SystemLayoutShowNotAssociatedObjects;
307
+ const SystemDashboardRefresh = () => ({
259
308
  type: exports.DASHBOARD_REFRESH,
260
309
  });
261
- exports.SystemDataSetSelect = (dataSet) => ({
310
+ exports.SystemDashboardRefresh = SystemDashboardRefresh;
311
+ const SystemDataSetSelect = (dataSet) => ({
262
312
  type: exports.SYSTEM_DATA_SET_SELECT,
263
313
  dataSet: dataSet,
264
314
  });
315
+ exports.SystemDataSetSelect = SystemDataSetSelect;
265
316
  const initialState = {
266
317
  AdaptableAlerts: GeneralConstants_1.EMPTY_ARRAY,
267
318
  AdaptableFlashingCells: {},
@@ -298,7 +349,7 @@ const initialState = {
298
349
  IsQuickFilterVisible: true,
299
350
  CurrentDataSet: GeneralConstants_1.EMPTY_STRING,
300
351
  };
301
- exports.SystemReducer = (state = initialState, action) => {
352
+ const SystemReducer = (state = initialState, action) => {
302
353
  let alerts;
303
354
  let systemStatusMessages;
304
355
  switch (action.type) {
@@ -600,6 +651,7 @@ exports.SystemReducer = (state = initialState, action) => {
600
651
  return state;
601
652
  }
602
653
  };
654
+ exports.SystemReducer = SystemReducer;
603
655
  const getDataChangeHistoryKey = ({ column: columnId, primaryKeyValue, }) => {
604
656
  return JSON.stringify({ columnId, primaryKeyValue });
605
657
  };
@@ -9,10 +9,12 @@ exports.SYSTEM_STATUS_MESSAGE_SET = 'SYSTEM_STATUS_MESSAGE_SET';
9
9
  * @ReduxAction SystemStatus Module is ready
10
10
  */
11
11
  exports.SYSTEM_STATUS_READY = 'SYSTEM_STATUS_READY';
12
- exports.SystemStatusSetMesage = (systemStatusMessageInfo) => ({
12
+ const SystemStatusSetMesage = (systemStatusMessageInfo) => ({
13
13
  type: exports.SYSTEM_STATUS_MESSAGE_SET,
14
14
  systemStatusMessageInfo,
15
15
  });
16
- exports.SystemStatusReady = () => ({
16
+ exports.SystemStatusSetMesage = SystemStatusSetMesage;
17
+ const SystemStatusReady = () => ({
17
18
  type: exports.SYSTEM_STATUS_READY,
18
19
  });
20
+ exports.SystemStatusReady = SystemStatusReady;