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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (402) hide show
  1. package/base.css +26 -0
  2. package/bundle.cjs.js +127 -127
  3. package/index.css +34 -0
  4. package/package.json +2 -2
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableOptions/ActionOptions.d.ts +181 -1
  8. package/src/AdaptableOptions/AdaptableOptions.d.ts +5 -0
  9. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +15 -2
  10. package/src/AdaptableOptions/EditOptions.d.ts +1 -80
  11. package/src/AdaptableOptions/FinancePluginOptions.d.ts +3 -3
  12. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -112
  13. package/src/Api/ActionApi.d.ts +24 -0
  14. package/src/Api/{Events/RowFormSubmitted.js → ActionApi.js} +0 -0
  15. package/src/Api/AdaptableApi.d.ts +5 -0
  16. package/src/Api/ConfigApi.d.ts +1 -1
  17. package/src/Api/EventApi.d.ts +9 -9
  18. package/src/Api/Events/ActionRowSubmitted.d.ts +34 -0
  19. package/src/Api/Events/ActionRowSubmitted.js +2 -0
  20. package/src/Api/GridApi.d.ts +0 -14
  21. package/src/Api/Implementation/ActionApiImpl.d.ts +8 -0
  22. package/src/Api/Implementation/ActionApiImpl.js +56 -0
  23. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
  24. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  25. package/src/Api/Implementation/ApiBase.d.ts +2 -1
  26. package/src/Api/Implementation/ApiBase.js +3 -0
  27. package/src/Api/Implementation/ColumnApiImpl.js +2 -2
  28. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  29. package/src/Api/Implementation/GridApiImpl.d.ts +0 -3
  30. package/src/Api/Implementation/GridApiImpl.js +0 -44
  31. package/src/Api/Implementation/StatusBarApiImpl.d.ts +4 -3
  32. package/src/Api/Implementation/StatusBarApiImpl.js +2 -2
  33. package/src/Api/Implementation/TeamSharingApiImpl.js +2 -1
  34. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +1 -2
  35. package/src/Api/Implementation/UserInterfaceApiImpl.js +0 -4
  36. package/src/Api/StatusBarApi.d.ts +10 -3
  37. package/src/Api/UserInterfaceApi.d.ts +1 -5
  38. package/src/PredefinedConfig/Common/AdaptableAlert.js +4 -2
  39. package/src/PredefinedConfig/Common/AdaptableColumn.js +2 -1
  40. package/src/PredefinedConfig/Common/AdaptableForm.d.ts +1 -1
  41. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +24 -18
  42. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +2 -4
  43. package/src/PredefinedConfig/Common/AdaptablePredicate.js +33 -31
  44. package/src/PredefinedConfig/Common/AdaptableQuery.js +2 -1
  45. package/src/PredefinedConfig/Common/Menu.d.ts +3 -3
  46. package/src/PredefinedConfig/Common/Types.d.ts +1 -1
  47. package/src/PredefinedConfig/StatusBarState.d.ts +5 -2
  48. package/src/PredefinedConfig/Uuid.js +2 -1
  49. package/src/Redux/ActionsReducers/AlertRedux.js +16 -8
  50. package/src/Redux/ActionsReducers/ApplicationRedux.js +8 -4
  51. package/src/Redux/ActionsReducers/BulkUpdateRedux.js +6 -3
  52. package/src/Redux/ActionsReducers/CalculatedColumnRedux.js +10 -5
  53. package/src/Redux/ActionsReducers/CellSummaryRedux.js +2 -1
  54. package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +14 -7
  55. package/src/Redux/ActionsReducers/CustomSortRedux.js +14 -7
  56. package/src/Redux/ActionsReducers/DashboardRedux.js +24 -12
  57. package/src/Redux/ActionsReducers/ExportRedux.js +16 -8
  58. package/src/Redux/ActionsReducers/FlashingCellRedux.js +16 -8
  59. package/src/Redux/ActionsReducers/FormatColumnRedux.js +14 -7
  60. package/src/Redux/ActionsReducers/FreeTextColumnRedux.js +14 -7
  61. package/src/Redux/ActionsReducers/GridRedux.js +38 -19
  62. package/src/Redux/ActionsReducers/LayoutRedux.js +30 -15
  63. package/src/Redux/ActionsReducers/PluginsRedux.js +4 -2
  64. package/src/Redux/ActionsReducers/PlusMinusRedux.js +16 -8
  65. package/src/Redux/ActionsReducers/PopupRedux.js +37 -19
  66. package/src/Redux/ActionsReducers/QueryRedux.js +12 -6
  67. package/src/Redux/ActionsReducers/QuickSearchRedux.js +8 -4
  68. package/src/Redux/ActionsReducers/ScheduleRedux.js +58 -29
  69. package/src/Redux/ActionsReducers/ShortcutRedux.js +14 -7
  70. package/src/Redux/ActionsReducers/SmartEditRedux.js +6 -3
  71. package/src/Redux/ActionsReducers/StatusBarRedux.js +10 -5
  72. package/src/Redux/ActionsReducers/SystemRedux.js +103 -51
  73. package/src/Redux/ActionsReducers/SystemStatusRedux.js +4 -2
  74. package/src/Redux/ActionsReducers/TeamSharingRedux.js +22 -11
  75. package/src/Redux/ActionsReducers/ThemeRedux.js +10 -5
  76. package/src/Redux/ActionsReducers/ToolPanelRedux.js +16 -8
  77. package/src/Redux/DeadRedux.js +16 -8
  78. package/src/Redux/Store/AdaptableReduxMerger.js +2 -1
  79. package/src/Redux/Store/AdaptableStore.js +4 -2
  80. package/src/Strategy/AlertModule.d.ts +2 -18
  81. package/src/Strategy/AlertModule.js +2 -1
  82. package/src/Strategy/ConditionalStyleModule.d.ts +2 -10
  83. package/src/Strategy/DashboardModule.js +3 -1
  84. package/src/Strategy/DataChangeHistoryModule.d.ts +2 -8
  85. package/src/Strategy/DataSetModule.d.ts +2 -13
  86. package/src/Strategy/ExportModule.d.ts +2 -13
  87. package/src/Strategy/ExportModule.js +1 -1
  88. package/src/Strategy/FilterModule.d.ts +2 -14
  89. package/src/Strategy/FilterModule.js +1 -1
  90. package/src/Strategy/FlashingCellModule.d.ts +2 -9
  91. package/src/Strategy/GridInfoModule.js +6 -2
  92. package/src/Strategy/LayoutModule.d.ts +2 -17
  93. package/src/Strategy/LayoutModule.js +6 -3
  94. package/src/Strategy/PlusMinusModule.d.ts +2 -9
  95. package/src/Strategy/QuickSearchModule.d.ts +2 -7
  96. package/src/Strategy/ScheduleModule.d.ts +2 -13
  97. package/src/Strategy/ShortcutModule.d.ts +2 -9
  98. package/src/Strategy/StatusBarModule.js +2 -2
  99. package/src/Strategy/SystemStatusModule.d.ts +2 -7
  100. package/src/Strategy/ThemeModule.d.ts +2 -8
  101. package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +2 -1
  102. package/src/Strategy/Utilities/getAlertPreviewViewItems.js +2 -1
  103. package/src/Strategy/Utilities/getCustomSortColumnViewItems.js +2 -1
  104. package/src/Strategy/Utilities/getCustomSortSortOrderViewItems.js +2 -1
  105. package/src/Strategy/Utilities/getExportColumnsViewItems.js +2 -1
  106. package/src/Strategy/Utilities/getExportRowsViewItems.js +2 -1
  107. package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
  108. package/src/Strategy/Utilities/getFlashingCellDurationViewItems.js +2 -1
  109. package/src/Strategy/Utilities/getFlashingCellStyleViewItems.d.ts +2 -6
  110. package/src/Strategy/Utilities/getFlashingCellStyleViewItems.js +2 -1
  111. package/src/Strategy/Utilities/getFlashingTargetViewItems.js +2 -1
  112. package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +2 -1
  113. package/src/Strategy/Utilities/getFormatColumnStyleViewItems.js +2 -1
  114. package/src/Strategy/Utilities/getObjectTagsViewItems.js +2 -1
  115. package/src/Strategy/Utilities/getRuleViewItems.js +2 -1
  116. package/src/Strategy/Utilities/getScopeViewItems.js +2 -1
  117. package/src/Strategy/Utilities/getShortcutSettingsViewItems.js +2 -1
  118. package/src/Strategy/Utilities/getStyleViewItems.js +2 -1
  119. package/src/Utilities/Constants/GeneralConstants.js +2 -1
  120. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +13 -13
  121. package/src/Utilities/ExpressionFunctions/dateUtils.js +2 -1
  122. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +20 -10
  123. package/src/Utilities/Helpers/AdaptableHelper.js +4 -3
  124. package/src/Utilities/Helpers/DateHelper.js +10 -5
  125. package/src/Utilities/Helpers/Helper.js +2 -1
  126. package/src/Utilities/Helpers/LoggingHelper.js +2 -1
  127. package/src/Utilities/Helpers/StyleHelper.js +8 -4
  128. package/src/Utilities/MenuItem.d.ts +4 -3
  129. package/src/Utilities/MenuItem.js +9 -3
  130. package/src/Utilities/ObjectFactory.js +1 -0
  131. package/src/Utilities/Services/Interface/IRowEditService.d.ts +3 -3
  132. package/src/Utilities/Services/ModuleService.js +3 -1
  133. package/src/Utilities/Services/RowEditService.d.ts +6 -6
  134. package/src/Utilities/Services/RowEditService.js +24 -25
  135. package/src/Utilities/isAdaptableObject.js +2 -1
  136. package/src/Utilities/isMacLike.js +2 -1
  137. package/src/Utilities/license/decode.js +1 -1
  138. package/src/Utilities/reorder.js +2 -1
  139. package/src/Utilities/runIfNotResolvedIn.js +2 -1
  140. package/src/Utilities/waitForCondition.d.ts +1 -1
  141. package/src/Utilities/waitForCondition.js +2 -1
  142. package/src/View/AdaptableContext.js +2 -1
  143. package/src/View/AdaptableView.js +2 -1
  144. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +2 -1
  145. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +2 -1
  146. package/src/View/AdaptableWizardView/Utils.js +2 -1
  147. package/src/View/AdaptableWizardView/Wizard.js +4 -2
  148. package/src/View/AdaptableWizardView/helper.js +6 -3
  149. package/src/View/Alert/ActiveAlertsPanel.js +2 -1
  150. package/src/View/Alert/AlertEmptyView.js +2 -1
  151. package/src/View/Alert/AlertStatusSubPanel.js +2 -1
  152. package/src/View/Alert/Utilities/getAlertButtonStyle.js +2 -1
  153. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +4 -2
  154. package/src/View/Alert/Wizard/AlertButtonsEditor.js +2 -1
  155. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +6 -3
  156. package/src/View/Alert/Wizard/AlertRulesWizardSection.js +4 -2
  157. package/src/View/Alert/Wizard/AlertScopeWizardSection.js +2 -1
  158. package/src/View/Alert/Wizard/AlertWizard.js +2 -1
  159. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +2 -1
  160. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +4 -2
  161. package/src/View/Alert/Wizard/isValidAlertRules.js +2 -1
  162. package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
  163. package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.js +2 -1
  164. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +6 -3
  165. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +6 -3
  166. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -1
  167. package/src/View/CellSummary/CellSummaryPopover.js +2 -1
  168. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +2 -1
  169. package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -1
  170. package/src/View/ColorPicker.d.ts +5 -1
  171. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  172. package/src/View/Components/AdaptableDateInput/index.js +10 -10
  173. package/src/View/Components/AdaptableInput/index.d.ts +2 -2
  174. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +4 -2
  175. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +4 -2
  176. package/src/View/Components/Buttons/ButtonClone.js +2 -1
  177. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  178. package/src/View/Components/Buttons/ButtonEdit.js +2 -1
  179. package/src/View/Components/Buttons/ButtonNew.js +2 -1
  180. package/src/View/Components/ColumnSelector/index.js +2 -1
  181. package/src/View/Components/EntityRulesEditor/index.js +6 -3
  182. package/src/View/Components/ExpressionWizard.js +2 -1
  183. package/src/View/Components/ExternalRenderer.js +2 -1
  184. package/src/View/Components/FilterForm/FilterForm.js +2 -1
  185. package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
  186. package/src/View/Components/FilterForm/ListBoxMenu.js +2 -2
  187. package/src/View/Components/FilterForm/QuickFilterForm.js +5 -3
  188. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  189. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +2 -1
  190. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -2
  191. package/src/View/Components/ListBox/DualListBoxEditor.js +2 -1
  192. package/src/View/Components/ModuleValueSelector/index.js +2 -1
  193. package/src/View/Components/NewScopeComponent.js +6 -3
  194. package/src/View/Components/Panels/PanelFooter.js +2 -1
  195. package/src/View/Components/Panels/PanelWithImage.d.ts +1 -429
  196. package/src/View/Components/Panels/PanelWithImage.js +2 -0
  197. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -1
  198. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +2 -1
  199. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +2 -1
  200. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +2 -1
  201. package/src/View/Components/Popups/AdaptablePopup/CustomSettingsPanelView.js +2 -1
  202. package/src/View/Components/Popups/AdaptablePopup/Navigation.js +5 -5
  203. package/src/View/Components/Popups/AdaptablePopup/PopupContext.js +2 -1
  204. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +2 -1
  205. package/src/View/Components/Popups/AdaptablePopup/TopBar.js +6 -5
  206. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +2 -1
  207. package/src/View/Components/Popups/AdaptablePopupAlert.js +4 -4
  208. package/src/View/Components/Popups/AdaptablePopupPrompt.js +2 -1
  209. package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +2 -1
  210. package/src/View/Components/Popups/AdaptableToaster.js +2 -1
  211. package/src/View/Components/Popups/FormPopups/FormPopups.js +4 -2
  212. package/src/View/Components/Popups/Utilities.js +8 -4
  213. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +2 -1
  214. package/src/View/Components/Selectors/ColumnSelector.js +2 -1
  215. package/src/View/Components/TagValueSelector/index.js +4 -2
  216. package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +1 -1
  217. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +5 -1
  218. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +2 -1
  219. package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
  220. package/src/View/Components/ToolPanel/ToolPanelPopup.js +1 -1
  221. package/src/View/Components/ToolPanel/ToolPanelWrapper.js +2 -1
  222. package/src/View/Components/WizardSummaryPage.js +2 -1
  223. package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +2 -1
  224. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +4 -2
  225. package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +2 -1
  226. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +2 -1
  227. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +6 -3
  228. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +6 -3
  229. package/src/View/CustomSort/Wizard/CustomSortWizard.js +2 -1
  230. package/src/View/Dashboard/CustomDashboardButton.js +2 -1
  231. package/src/View/Dashboard/CustomToolbarWrapper.js +2 -1
  232. package/src/View/Dashboard/Dashboard.d.ts +1 -1
  233. package/src/View/Dashboard/Dashboard.js +4 -3
  234. package/src/View/Dashboard/DashboardPopup.js +1 -1
  235. package/src/View/Dashboard/ModuleToolbarWrapper.js +2 -1
  236. package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +7 -0
  237. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +6 -6
  238. package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.js +2 -1
  239. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +2 -1
  240. package/src/View/DataChangeHistory/buildActionColumnButton.js +13 -9
  241. package/src/View/DataSet/DataSetSelector.js +2 -1
  242. package/src/View/DataSet/DataSetStatusPanelPopover.js +2 -1
  243. package/src/View/DataSet/DataSetViewPanel.d.ts +1 -1
  244. package/src/View/Export/ExportSelector.js +2 -1
  245. package/src/View/Export/ExportViewPanel.d.ts +1 -1
  246. package/src/View/Export/ReportExportDropdown.js +2 -1
  247. package/src/View/Export/Wizard/NewReportWizard.js +4 -2
  248. package/src/View/Export/Wizard/ReportColumnsWizardSection.js +6 -3
  249. package/src/View/Export/Wizard/ReportNameWizardSection.js +6 -3
  250. package/src/View/Export/Wizard/ReportRowsWizardSection.js +6 -3
  251. package/src/View/Filter/ActiveFiltersPanel.js +2 -1
  252. package/src/View/Filter/FilterStatusBarSubPanelPopover.js +2 -1
  253. package/src/View/Filter/FilterSummary.d.ts +1 -1
  254. package/src/View/Filter/FilterViewPanel.d.ts +1 -1
  255. package/src/View/FlashingCell/FlashingCellStyle.js +2 -1
  256. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +4 -2
  257. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +2 -1
  258. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +10 -5
  259. package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.js +6 -3
  260. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +2 -1
  261. package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +2 -1
  262. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +8 -4
  263. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +4 -2
  264. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +4 -2
  265. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +4 -2
  266. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +6 -3
  267. package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +2 -1
  268. package/src/View/GridInfo/AdaptableObjectsSummary.js +2 -1
  269. package/src/View/GridInfo/AdaptableOptionsComponent.js +2 -1
  270. package/src/View/GridInfo/GridInfoPopup.js +5 -5
  271. package/src/View/KeyHint.js +2 -1
  272. package/src/View/Layout/EditCurrentLayoutButton.js +2 -1
  273. package/src/View/Layout/LayoutCloneButton.js +2 -1
  274. package/src/View/Layout/LayoutEditorStandalonePopup.js +2 -1
  275. package/src/View/Layout/LayoutPopup.d.ts +1 -1
  276. package/src/View/Layout/LayoutRadioSelector.js +2 -1
  277. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +2 -1
  278. package/src/View/Layout/LayoutViewPanel.d.ts +1 -1
  279. package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.js +2 -1
  280. package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +2 -1
  281. package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +2 -1
  282. package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +2 -1
  283. package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +2 -1
  284. package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +2 -1
  285. package/src/View/Layout/Wizard/LayoutEditor/reducer.js +4 -2
  286. package/src/View/Layout/Wizard/LayoutEditor/utils.js +2 -1
  287. package/src/View/License/LicenseWatermark.js +1 -1
  288. package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.js +2 -1
  289. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +6 -3
  290. package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +2 -1
  291. package/src/View/Query/EditCurrentQueryButton.js +2 -1
  292. package/src/View/Query/ExpandedQueryPopup.js +2 -1
  293. package/src/View/Query/QueryViewPanel.d.ts +1 -1
  294. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +6 -3
  295. package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +6 -3
  296. package/src/View/QuickSearch/QuickSearchStatusBarContent.js +2 -1
  297. package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +1 -1
  298. package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -1
  299. package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +2 -1
  300. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +4 -2
  301. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +2 -1
  302. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +2 -1
  303. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +2 -1
  304. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +2 -1
  305. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +2 -1
  306. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +4 -2
  307. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +2 -1
  308. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +2 -1
  309. package/src/View/Schedule/Wizard/ScheduleWizard.js +2 -1
  310. package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +2 -1
  311. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +6 -3
  312. package/src/View/Shortcut/Wizard/ShortcutWizard.js +2 -1
  313. package/src/View/SpecialColumnSettingsWizardStep.js +2 -1
  314. package/src/View/StateManagement/StateManagementPopup.js +2 -1
  315. package/src/View/StateManagement/StateManagementViewPanel.js +2 -1
  316. package/src/View/StateManagement/components/ClearButton.js +2 -1
  317. package/src/View/StateManagement/components/ExportDropdown.js +2 -1
  318. package/src/View/StateManagement/components/LoadButton.js +2 -1
  319. package/src/View/StateManagement/handleExportState.js +2 -1
  320. package/src/View/StatusBar/AdaptableStatusBar.js +2 -1
  321. package/src/View/StatusBar/StatusBarPanel.js +2 -1
  322. package/src/View/StatusBar/StatusBarPopup.js +5 -4
  323. package/src/View/SystemStatus/SystemStatusStatusBarContent.js +2 -1
  324. package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
  325. package/src/View/SystemStatus/Utilities/getStatusItemStyle.js +2 -1
  326. package/src/View/Theme/ThemeStatusPanelPopover.js +2 -1
  327. package/src/View/UIHelper.d.ts +2 -0
  328. package/src/View/UIHelper.js +12 -11
  329. package/src/View/Wizard/AdaptableWizard.js +2 -1
  330. package/src/View/Wizard/ObjectTagsWizardSection.js +4 -2
  331. package/src/View/Wizard/OnePageAdaptableWizard.js +10 -5
  332. package/src/View/Wizard/OnePageWizards.js +8 -4
  333. package/src/View/Wizard/useKeyboardNavigation.js +2 -1
  334. package/src/View/renderWithAdaptableContext.js +2 -1
  335. package/src/agGrid/ActionColumnRenderer.d.ts +1 -1
  336. package/src/agGrid/ActionColumnRenderer.js +1 -1
  337. package/src/agGrid/Adaptable.js +28 -26
  338. package/src/agGrid/CheckboxRenderer.js +2 -1
  339. package/src/agGrid/FilterWrapper.js +2 -1
  340. package/src/agGrid/FloatingFilterWrapper.js +2 -1
  341. package/src/agGrid/PercentBarRenderer.js +2 -1
  342. package/src/agGrid/agGridHelper.js +3 -1
  343. package/src/agGrid/agGridMenuHelper.js +13 -10
  344. package/src/agGrid/createAgStatusPanelComponent.js +2 -1
  345. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +8 -5
  346. package/src/components/AdaptableIconComponent/index.d.ts +10 -0
  347. package/src/components/AdaptableIconComponent/index.js +40 -0
  348. package/src/components/CheckBox/index.js +2 -1
  349. package/src/components/CodeBlock/index.js +2 -1
  350. package/src/components/Dashboard/DashboardManager.js +1 -1
  351. package/src/components/Datepicker/DatepickerContext.js +2 -1
  352. package/src/components/Datepicker/index.d.ts +1 -1
  353. package/src/components/DragAndDropContext/ModuleManager.d.ts +1 -0
  354. package/src/components/DragAndDropContext/ModuleManager.js +5 -4
  355. package/src/components/DragAndDropContext/UnusedPanel.d.ts +3 -2
  356. package/src/components/DragAndDropContext/UnusedPanel.js +14 -12
  357. package/src/components/EllipsisContainer/index.js +4 -2
  358. package/src/components/ExpressionEditor/EditorContext.js +2 -1
  359. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +2 -1
  360. package/src/components/ExpressionEditor/NamedQueryContext.js +3 -1
  361. package/src/components/FileDroppable/index.js +2 -1
  362. package/src/components/FormLayout/index.js +2 -1
  363. package/src/components/Input/index.d.ts +1 -1
  364. package/src/components/List/ListGroupItem/index.d.ts +2 -4
  365. package/src/components/Loader/Loader.js +4 -2
  366. package/src/components/Logo/index.js +2 -1
  367. package/src/components/Modal/Backdrop.js +2 -1
  368. package/src/components/Modal/index.js +2 -1
  369. package/src/components/OverlayTrigger/Overlay.js +2 -1
  370. package/src/components/OverlayTrigger/index.js +2 -1
  371. package/src/components/OverlayTrigger/utils.js +6 -3
  372. package/src/components/PopupWithFooter.d.ts +1 -1
  373. package/src/components/ProgressIndicator/ProgressIndicator.js +2 -1
  374. package/src/components/Radio/index.js +4 -2
  375. package/src/components/ResizeObserver/getResizeObserverObject.js +2 -1
  376. package/src/components/ResizeObserver/index.js +6 -3
  377. package/src/components/SelectList.js +2 -1
  378. package/src/components/SelectableList/index.js +2 -1
  379. package/src/components/SimpleButton/index.d.ts +2 -1
  380. package/src/components/SimpleButton/index.js +19 -6
  381. package/src/components/StylePreview.js +2 -1
  382. package/src/components/Tabs/index.js +6 -3
  383. package/src/components/Textarea/index.d.ts +5 -1
  384. package/src/components/ToggleButton/index.js +2 -1
  385. package/src/components/WindowModal/WindowModal.js +2 -1
  386. package/src/components/WindowModal/useStacking.js +2 -1
  387. package/src/components/icons/DefaultIcon.js +2 -1
  388. package/src/components/icons/index.d.ts +3 -1
  389. package/src/components/icons/index.js +10 -2
  390. package/src/components/utils/useContainerScrollObserver/index.js +2 -1
  391. package/src/components/utils/useGlobalEvent.js +2 -1
  392. package/src/components/utils/useLatest.js +2 -1
  393. package/src/components/utils/useRerender.js +2 -1
  394. package/src/components/utils/uuid.js +2 -1
  395. package/src/metamodel/adaptable.metamodel.d.ts +145 -111
  396. package/src/metamodel/adaptable.metamodel.js +195 -172
  397. package/src/types.d.ts +6 -4
  398. package/version.d.ts +1 -1
  399. package/version.js +1 -1
  400. package/src/Api/Events/RowFormSubmitted.d.ts +0 -34
  401. package/src/components/ApplicationIcon.d.ts +0 -6
  402. package/src/components/ApplicationIcon.js +0 -13
@@ -18,84 +18,101 @@ exports.POPUP_SHOW_WINDOW = 'POPUP_SHOW_WINDOW';
18
18
  exports.POPUP_HIDE_WINDOW = 'POPUP_HIDE_WINDOW';
19
19
  exports.POPUP_SHOW_FORM = 'POPUP_SHOW_FORM';
20
20
  exports.POPUP_HIDE_FORM = 'POPUP_FORM_HIDE';
21
- exports.PopupShowScreen = (componentModule, componentName, params, popupProps) => ({
21
+ const PopupShowScreen = (componentModule, componentName, params, popupProps) => ({
22
22
  type: exports.POPUP_SHOW_SCREEN,
23
23
  ComponentModule: componentModule,
24
24
  ComponentName: componentName,
25
25
  Params: params,
26
26
  PopupProps: popupProps,
27
27
  });
28
- exports.PopupHideScreen = () => ({
28
+ exports.PopupShowScreen = PopupShowScreen;
29
+ const PopupHideScreen = () => ({
29
30
  type: exports.POPUP_HIDE_SCREEN,
30
31
  });
31
- exports.PopupShowWindow = (config) => ({
32
+ exports.PopupHideScreen = PopupHideScreen;
33
+ const PopupShowWindow = (config) => ({
32
34
  type: exports.POPUP_SHOW_WINDOW,
33
35
  Id: config.Id,
34
36
  Title: config.Title,
35
37
  PopupProps: config.PopupProps,
36
38
  Icon: config.Icon,
37
39
  });
38
- exports.PopupHideWindow = (id) => ({
40
+ exports.PopupShowWindow = PopupShowWindow;
41
+ const PopupHideWindow = (id) => ({
39
42
  type: exports.POPUP_HIDE_WINDOW,
40
43
  Id: id,
41
44
  });
42
- exports.PopupShowForm = (config) => ({
45
+ exports.PopupHideWindow = PopupHideWindow;
46
+ const PopupShowForm = (config) => ({
43
47
  type: exports.POPUP_SHOW_FORM,
44
48
  Id: config.Id,
45
49
  Form: config.Form,
46
50
  FormProps: config.FormProps,
47
51
  prepareContext: config.prepareContext,
48
52
  });
49
- exports.PopupHideForm = (id) => ({
53
+ exports.PopupShowForm = PopupShowForm;
54
+ const PopupHideForm = (id) => ({
50
55
  type: exports.POPUP_HIDE_FORM,
51
56
  Id: id,
52
57
  });
53
- exports.PopupShowAlert = (alert) => {
58
+ exports.PopupHideForm = PopupHideForm;
59
+ const PopupShowAlert = (alert) => {
54
60
  return {
55
61
  type: exports.POPUP_SHOW_ALERT,
56
62
  alert: alert,
57
63
  };
58
64
  };
59
- exports.PopupHideAlert = () => ({
65
+ exports.PopupShowAlert = PopupShowAlert;
66
+ const PopupHideAlert = () => ({
60
67
  type: exports.POPUP_HIDE_ALERT,
61
68
  });
62
- exports.PopupShowLoading = () => ({
69
+ exports.PopupHideAlert = PopupHideAlert;
70
+ const PopupShowLoading = () => ({
63
71
  type: exports.POPUP_SHOW_LOADING,
64
72
  });
65
- exports.PopupHideLoading = () => ({
73
+ exports.PopupShowLoading = PopupShowLoading;
74
+ const PopupHideLoading = () => ({
66
75
  type: exports.POPUP_HIDE_LOADING,
67
76
  });
77
+ exports.PopupHideLoading = PopupHideLoading;
68
78
  //export const PopupShowGridInfo = (): PopupShowGridInfoAction => ({
69
79
  // type: POPUP_SHOW_GRID_INFO,
70
80
  //});
71
81
  //export const PopupHideGridInfo = (): PopupHideGridInfoAction => ({
72
82
  // type: POPUP_HIDE_GRID_INFO,
73
83
  //});
74
- exports.PopupShowPrompt = (prompt) => ({
84
+ const PopupShowPrompt = (prompt) => ({
75
85
  type: exports.POPUP_SHOW_PROMPT,
76
86
  prompt: prompt,
77
87
  });
78
- exports.PopupHidePrompt = () => ({
88
+ exports.PopupShowPrompt = PopupShowPrompt;
89
+ const PopupHidePrompt = () => ({
79
90
  type: exports.POPUP_HIDE_PROMPT,
80
91
  });
81
- exports.PopupConfirmPrompt = (inputText) => ({
92
+ exports.PopupHidePrompt = PopupHidePrompt;
93
+ const PopupConfirmPrompt = (inputText) => ({
82
94
  type: exports.POPUP_CONFIRM_PROMPT,
83
95
  InputText: inputText,
84
96
  });
85
- exports.PopupShowConfirmation = (confirmation) => ({
97
+ exports.PopupConfirmPrompt = PopupConfirmPrompt;
98
+ const PopupShowConfirmation = (confirmation) => ({
86
99
  type: exports.POPUP_SHOW_CONFIRMATION,
87
100
  confirmation: confirmation,
88
101
  });
89
- exports.PopupConfirmConfirmation = (comment) => ({
102
+ exports.PopupShowConfirmation = PopupShowConfirmation;
103
+ const PopupConfirmConfirmation = (comment) => ({
90
104
  type: exports.POPUP_CONFIRM_CONFIRMATION,
91
105
  comment,
92
106
  });
93
- exports.PopupCancelConfirmation = () => ({
107
+ exports.PopupConfirmConfirmation = PopupConfirmConfirmation;
108
+ const PopupCancelConfirmation = () => ({
94
109
  type: exports.POPUP_CANCEL_CONFIRMATION,
95
110
  });
96
- exports.PopupClearParam = () => ({
111
+ exports.PopupCancelConfirmation = PopupCancelConfirmation;
112
+ const PopupClearParam = () => ({
97
113
  type: exports.POPUP_CLEAR_PARAM,
98
114
  });
115
+ exports.PopupClearParam = PopupClearParam;
99
116
  const initialState = {
100
117
  ScreenPopup: {
101
118
  ShowScreenPopup: false,
@@ -134,7 +151,7 @@ const initialState = {
134
151
  FormList: [],
135
152
  },
136
153
  };
137
- exports.PopupReducer = (state = initialState, action) => {
154
+ const PopupReducer = (state = initialState, action) => {
138
155
  switch (action.type) {
139
156
  case exports.POPUP_SHOW_SCREEN: {
140
157
  let actionTypedShowPopup = action;
@@ -220,7 +237,7 @@ exports.PopupReducer = (state = initialState, action) => {
220
237
  CancelAction: null,
221
238
  ShowInputBox: false,
222
239
  ConfirmationComment: actionTyped.comment,
223
- MessageType: null,
240
+ MessageType: null, // ???
224
241
  };
225
242
  return Object.assign({}, state, {
226
243
  ConfirmationPopup: newConfirmationPopup,
@@ -315,3 +332,4 @@ exports.PopupReducer = (state = initialState, action) => {
315
332
  return state;
316
333
  }
317
334
  };
335
+ exports.PopupReducer = PopupReducer;
@@ -24,31 +24,36 @@ exports.QUERY_RUN = 'QUERY_RUN';
24
24
  * @ReduxAction Query Module is ready
25
25
  */
26
26
  exports.QUERY_READY = 'QUERY_READY';
27
- exports.NamedQueryAdd = (namedQuery) => ({
27
+ const NamedQueryAdd = (namedQuery) => ({
28
28
  type: exports.NAMED_QUERY_ADD,
29
29
  namedQuery: namedQuery,
30
30
  });
31
- exports.NamedQueryEdit = (namedQuery) => ({
31
+ exports.NamedQueryAdd = NamedQueryAdd;
32
+ const NamedQueryEdit = (namedQuery) => ({
32
33
  type: exports.NAMED_QUERY_EDIT,
33
34
  namedQuery: namedQuery,
34
35
  });
35
- exports.NamedQueryDelete = (namedQuery) => ({
36
+ exports.NamedQueryEdit = NamedQueryEdit;
37
+ const NamedQueryDelete = (namedQuery) => ({
36
38
  type: exports.NAMED_QUERY_DELETE,
37
39
  namedQuery: namedQuery,
38
40
  });
39
- exports.QueryRun = (query) => ({
41
+ exports.NamedQueryDelete = NamedQueryDelete;
42
+ const QueryRun = (query) => ({
40
43
  type: exports.QUERY_RUN,
41
44
  query,
42
45
  });
43
- exports.QueryReady = (queryState) => ({
46
+ exports.QueryRun = QueryRun;
47
+ const QueryReady = (queryState) => ({
44
48
  type: exports.QUERY_READY,
45
49
  queryState,
46
50
  });
51
+ exports.QueryReady = QueryReady;
47
52
  const initialState = {
48
53
  NamedQueries: GeneralConstants_1.EMPTY_ARRAY,
49
54
  CurrentQuery: GeneralConstants_1.EMPTY_STRING,
50
55
  };
51
- exports.QueryReducer = (state = initialState, action) => {
56
+ const QueryReducer = (state = initialState, action) => {
52
57
  let namedQuerys;
53
58
  switch (action.type) {
54
59
  case exports.NAMED_QUERY_ADD: {
@@ -74,3 +79,4 @@ exports.QueryReducer = (state = initialState, action) => {
74
79
  return state;
75
80
  }
76
81
  };
82
+ exports.QueryReducer = QueryReducer;
@@ -14,18 +14,21 @@ exports.QUICK_SEARCH_SET_STYLE = 'QUICK_SEARCH_SET_STYLE';
14
14
  * @ReduxAction Quick Search Module is ready
15
15
  */
16
16
  exports.QUICK_SEARCH_READY = 'QUICK_SEARCH_READY';
17
- exports.QuickSearchRun = (quickSearchText) => ({
17
+ const QuickSearchRun = (quickSearchText) => ({
18
18
  type: exports.QUICK_SEARCH_RUN,
19
19
  quickSearchText,
20
20
  });
21
- exports.QuickSearchSetStyle = (style) => ({
21
+ exports.QuickSearchRun = QuickSearchRun;
22
+ const QuickSearchSetStyle = (style) => ({
22
23
  type: exports.QUICK_SEARCH_SET_STYLE,
23
24
  style,
24
25
  });
25
- exports.QuickSearchReady = (quickSearchState) => ({
26
+ exports.QuickSearchSetStyle = QuickSearchSetStyle;
27
+ const QuickSearchReady = (quickSearchState) => ({
26
28
  type: exports.QUICK_SEARCH_READY,
27
29
  quickSearchState,
28
30
  });
31
+ exports.QuickSearchReady = QuickSearchReady;
29
32
  const initialState = {
30
33
  QuickSearchText: GeneralConstants_1.EMPTY_STRING,
31
34
  Style: {
@@ -33,7 +36,7 @@ const initialState = {
33
36
  ForeColor: GeneralConstants_1.QUICK_SEARCH_DEFAULT_FORE_COLOR,
34
37
  },
35
38
  };
36
- exports.QuickSearchReducer = (state = initialState, action) => {
39
+ const QuickSearchReducer = (state = initialState, action) => {
37
40
  switch (action.type) {
38
41
  case exports.QUICK_SEARCH_RUN:
39
42
  return Object.assign({}, state, {
@@ -47,3 +50,4 @@ exports.QuickSearchReducer = (state = initialState, action) => {
47
50
  return state;
48
51
  }
49
52
  };
53
+ exports.QuickSearchReducer = QuickSearchReducer;
@@ -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;