@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
@@ -4,6 +4,17 @@ export declare const ADAPTABLE_METAMODEL: {
4
4
  kind: string;
5
5
  description: string;
6
6
  };
7
+ ActionApi: {
8
+ name: string;
9
+ kind: string;
10
+ description: string;
11
+ properties: {
12
+ name: string;
13
+ kind: string;
14
+ description: string;
15
+ uiLabel: string;
16
+ }[];
17
+ };
7
18
  ActionColumn: {
8
19
  name: string;
9
20
  kind: string;
@@ -85,6 +96,7 @@ export declare const ADAPTABLE_METAMODEL: {
85
96
  uiLabel: string;
86
97
  isOptional: boolean;
87
98
  defaultValue?: undefined;
99
+ reference?: undefined;
88
100
  } | {
89
101
  name: string;
90
102
  kind: string;
@@ -92,8 +104,52 @@ export declare const ADAPTABLE_METAMODEL: {
92
104
  uiLabel: string;
93
105
  isOptional: boolean;
94
106
  defaultValue: string;
107
+ reference?: undefined;
108
+ } | {
109
+ name: string;
110
+ kind: string;
111
+ description: string;
112
+ uiLabel: string;
113
+ isOptional: boolean;
114
+ reference: string;
115
+ defaultValue?: undefined;
95
116
  })[];
96
117
  };
118
+ ActionRowContext: {
119
+ name: string;
120
+ kind: string;
121
+ description: string;
122
+ };
123
+ ActionRowFormOptions: {
124
+ name: string;
125
+ kind: string;
126
+ description: string;
127
+ properties: ({
128
+ name: string;
129
+ kind: string;
130
+ description: string;
131
+ uiLabel: string;
132
+ isOptional: boolean;
133
+ defaultValue?: undefined;
134
+ } | {
135
+ name: string;
136
+ kind: string;
137
+ description: string;
138
+ uiLabel: string;
139
+ isOptional: boolean;
140
+ defaultValue: string;
141
+ })[];
142
+ };
143
+ ActionRowSubmittedInfo: {
144
+ name: string;
145
+ kind: string;
146
+ description: string;
147
+ };
148
+ ActionRowType: {
149
+ name: string;
150
+ kind: string;
151
+ description: string;
152
+ };
97
153
  AdaptableAlert: {
98
154
  name: string;
99
155
  kind: string;
@@ -240,6 +296,11 @@ export declare const ADAPTABLE_METAMODEL: {
240
296
  kind: string;
241
297
  description: string;
242
298
  };
299
+ AdaptableExternalIcon: {
300
+ name: string;
301
+ kind: string;
302
+ description: string;
303
+ };
243
304
  AdaptableFDC3EventInfo: {
244
305
  name: string;
245
306
  kind: string;
@@ -342,28 +403,11 @@ export declare const ADAPTABLE_METAMODEL: {
342
403
  name: string;
343
404
  kind: string;
344
405
  description: string;
345
- properties: ({
346
- name: string;
347
- kind: string;
348
- description: string;
349
- uiLabel: string;
350
- isOptional: boolean;
351
- reference: string;
352
- } | {
353
- name: string;
354
- kind: string;
355
- description: string;
356
- uiLabel: string;
357
- isOptional?: undefined;
358
- reference?: undefined;
359
- } | {
360
- name: string;
361
- kind: string;
362
- description: string;
363
- uiLabel: string;
364
- isOptional: boolean;
365
- reference?: undefined;
366
- })[];
406
+ };
407
+ AdaptableInternalIcon: {
408
+ name: string;
409
+ kind: string;
410
+ description: string;
367
411
  };
368
412
  AdaptableLoadStateFunction: {
369
413
  name: string;
@@ -380,12 +424,21 @@ export declare const ADAPTABLE_METAMODEL: {
380
424
  description: string;
381
425
  uiLabel: string;
382
426
  isOptional: boolean;
427
+ reference: string;
383
428
  } | {
384
429
  name: string;
385
430
  kind: string;
386
431
  description: string;
387
432
  uiLabel: string;
388
433
  isOptional?: undefined;
434
+ reference?: undefined;
435
+ } | {
436
+ name: string;
437
+ kind: string;
438
+ description: string;
439
+ uiLabel: string;
440
+ isOptional: boolean;
441
+ reference?: undefined;
389
442
  })[];
390
443
  };
391
444
  AdaptableMessageType: {
@@ -433,18 +486,18 @@ export declare const ADAPTABLE_METAMODEL: {
433
486
  description: string;
434
487
  uiLabel: string;
435
488
  isOptional: boolean;
436
- gridInfo: string;
437
- defaultValue: string;
438
- reference?: undefined;
489
+ reference: string;
490
+ gridInfo?: undefined;
491
+ defaultValue?: undefined;
439
492
  } | {
440
493
  name: string;
441
494
  kind: string;
442
495
  description: string;
443
496
  uiLabel: string;
444
497
  isOptional: boolean;
445
- reference: string;
446
- gridInfo?: undefined;
447
- defaultValue?: undefined;
498
+ gridInfo: string;
499
+ defaultValue: string;
500
+ reference?: undefined;
448
501
  } | {
449
502
  name: string;
450
503
  kind: string;
@@ -469,9 +522,9 @@ export declare const ADAPTABLE_METAMODEL: {
469
522
  description: string;
470
523
  uiLabel: string;
471
524
  isOptional: boolean;
525
+ reference?: undefined;
472
526
  gridInfo?: undefined;
473
527
  defaultValue?: undefined;
474
- reference?: undefined;
475
528
  } | {
476
529
  name: string;
477
530
  kind: string;
@@ -479,8 +532,8 @@ export declare const ADAPTABLE_METAMODEL: {
479
532
  uiLabel: string;
480
533
  isOptional: boolean;
481
534
  defaultValue: string;
482
- gridInfo?: undefined;
483
535
  reference?: undefined;
536
+ gridInfo?: undefined;
484
537
  } | {
485
538
  name: string;
486
539
  kind: string;
@@ -668,6 +721,24 @@ export declare const ADAPTABLE_METAMODEL: {
668
721
  reference: string;
669
722
  })[];
670
723
  };
724
+ AdaptableStatusBar: {
725
+ name: string;
726
+ kind: string;
727
+ description: string;
728
+ properties: ({
729
+ name: string;
730
+ kind: string;
731
+ description: string;
732
+ uiLabel: string;
733
+ isOptional?: undefined;
734
+ } | {
735
+ name: string;
736
+ kind: string;
737
+ description: string;
738
+ uiLabel: string;
739
+ isOptional: boolean;
740
+ })[];
741
+ };
671
742
  AdaptableStyle: {
672
743
  name: string;
673
744
  kind: string;
@@ -1598,12 +1669,7 @@ export declare const ADAPTABLE_METAMODEL: {
1598
1669
  kind: string;
1599
1670
  description: string;
1600
1671
  };
1601
- CreatedRowFormInfo: {
1602
- name: string;
1603
- kind: string;
1604
- description: string;
1605
- };
1606
- CreateRowFormContext: {
1672
+ CreateActionRowContext: {
1607
1673
  name: string;
1608
1674
  kind: string;
1609
1675
  description: string;
@@ -1623,6 +1689,11 @@ export declare const ADAPTABLE_METAMODEL: {
1623
1689
  reference?: undefined;
1624
1690
  })[];
1625
1691
  };
1692
+ CreatedActionRowInfo: {
1693
+ name: string;
1694
+ kind: string;
1695
+ description: string;
1696
+ };
1626
1697
  CustomDestination: {
1627
1698
  name: string;
1628
1699
  kind: string;
@@ -1960,16 +2031,16 @@ export declare const ADAPTABLE_METAMODEL: {
1960
2031
  description: string;
1961
2032
  uiLabel: string;
1962
2033
  isOptional: boolean;
1963
- gridInfo?: undefined;
1964
- defaultValue?: undefined;
2034
+ gridInfo: string;
2035
+ defaultValue: string;
1965
2036
  } | {
1966
2037
  name: string;
1967
2038
  kind: string;
1968
2039
  description: string;
1969
2040
  uiLabel: string;
1970
2041
  isOptional: boolean;
1971
- gridInfo: string;
1972
- defaultValue: string;
2042
+ gridInfo?: undefined;
2043
+ defaultValue?: undefined;
1973
2044
  })[];
1974
2045
  };
1975
2046
  DataSet: {
@@ -2050,22 +2121,12 @@ export declare const ADAPTABLE_METAMODEL: {
2050
2121
  defaultValue: string;
2051
2122
  }[];
2052
2123
  };
2053
- DeletedRowFormInfo: {
2124
+ DeletedActionRowInfo: {
2054
2125
  name: string;
2055
2126
  kind: string;
2056
2127
  description: string;
2057
2128
  };
2058
- EditedRowFormInfo: {
2059
- name: string;
2060
- kind: string;
2061
- description: string;
2062
- };
2063
- EditLookUpPermittedValues: {
2064
- name: string;
2065
- kind: string;
2066
- description: string;
2067
- };
2068
- EditOptions: {
2129
+ EditActionRowContext: {
2069
2130
  name: string;
2070
2131
  kind: string;
2071
2132
  description: string;
@@ -2074,31 +2135,26 @@ export declare const ADAPTABLE_METAMODEL: {
2074
2135
  kind: string;
2075
2136
  description: string;
2076
2137
  uiLabel: string;
2077
- isOptional: boolean;
2078
- gridInfo: string;
2079
- defaultValue: string;
2080
- reference?: undefined;
2138
+ reference: string;
2081
2139
  } | {
2082
2140
  name: string;
2083
2141
  kind: string;
2084
2142
  description: string;
2085
2143
  uiLabel: string;
2086
- isOptional: boolean;
2087
- gridInfo?: undefined;
2088
- defaultValue?: undefined;
2089
2144
  reference?: undefined;
2090
- } | {
2091
- name: string;
2092
- kind: string;
2093
- description: string;
2094
- uiLabel: string;
2095
- isOptional: boolean;
2096
- reference: string;
2097
- gridInfo?: undefined;
2098
- defaultValue?: undefined;
2099
2145
  })[];
2100
2146
  };
2101
- EditRowFormContext: {
2147
+ EditedActionRowInfo: {
2148
+ name: string;
2149
+ kind: string;
2150
+ description: string;
2151
+ };
2152
+ EditLookUpPermittedValues: {
2153
+ name: string;
2154
+ kind: string;
2155
+ description: string;
2156
+ };
2157
+ EditOptions: {
2102
2158
  name: string;
2103
2159
  kind: string;
2104
2160
  description: string;
@@ -2107,13 +2163,17 @@ export declare const ADAPTABLE_METAMODEL: {
2107
2163
  kind: string;
2108
2164
  description: string;
2109
2165
  uiLabel: string;
2110
- reference: string;
2166
+ isOptional: boolean;
2167
+ gridInfo: string;
2168
+ defaultValue: string;
2111
2169
  } | {
2112
2170
  name: string;
2113
2171
  kind: string;
2114
2172
  description: string;
2115
2173
  uiLabel: string;
2116
- reference?: undefined;
2174
+ isOptional: boolean;
2175
+ gridInfo?: undefined;
2176
+ defaultValue?: undefined;
2117
2177
  })[];
2118
2178
  };
2119
2179
  EntitlementOptions: {
@@ -3745,41 +3805,6 @@ export declare const ADAPTABLE_METAMODEL: {
3745
3805
  reference: string;
3746
3806
  })[];
3747
3807
  };
3748
- RowFormContext: {
3749
- name: string;
3750
- kind: string;
3751
- description: string;
3752
- };
3753
- RowFormOptions: {
3754
- name: string;
3755
- kind: string;
3756
- description: string;
3757
- properties: ({
3758
- name: string;
3759
- kind: string;
3760
- description: string;
3761
- uiLabel: string;
3762
- isOptional: boolean;
3763
- defaultValue?: undefined;
3764
- } | {
3765
- name: string;
3766
- kind: string;
3767
- description: string;
3768
- uiLabel: string;
3769
- isOptional: boolean;
3770
- defaultValue: string;
3771
- })[];
3772
- };
3773
- RowFormSubmittedInfo: {
3774
- name: string;
3775
- kind: string;
3776
- description: string;
3777
- };
3778
- RowFormType: {
3779
- name: string;
3780
- kind: string;
3781
- description: string;
3782
- };
3783
3808
  RowInfo: {
3784
3809
  name: string;
3785
3810
  kind: string;
@@ -4362,8 +4387,8 @@ export declare const ADAPTABLE_METAMODEL: {
4362
4387
  description: string;
4363
4388
  uiLabel: string;
4364
4389
  isOptional: boolean;
4390
+ defaultValue: string;
4365
4391
  reference: string;
4366
- defaultValue?: undefined;
4367
4392
  gridInfo?: undefined;
4368
4393
  } | {
4369
4394
  name: string;
@@ -4371,8 +4396,8 @@ export declare const ADAPTABLE_METAMODEL: {
4371
4396
  description: string;
4372
4397
  uiLabel: string;
4373
4398
  isOptional: boolean;
4374
- defaultValue: string;
4375
- reference: string;
4399
+ defaultValue?: undefined;
4400
+ reference?: undefined;
4376
4401
  gridInfo?: undefined;
4377
4402
  } | {
4378
4403
  name: string;
@@ -4380,7 +4405,7 @@ export declare const ADAPTABLE_METAMODEL: {
4380
4405
  description: string;
4381
4406
  uiLabel: string;
4382
4407
  isOptional: boolean;
4383
- reference?: undefined;
4408
+ reference: string;
4384
4409
  defaultValue?: undefined;
4385
4410
  gridInfo?: undefined;
4386
4411
  } | {
@@ -4399,8 +4424,8 @@ export declare const ADAPTABLE_METAMODEL: {
4399
4424
  uiLabel: string;
4400
4425
  isOptional: boolean;
4401
4426
  gridInfo: string;
4402
- reference?: undefined;
4403
4427
  defaultValue?: undefined;
4428
+ reference?: undefined;
4404
4429
  })[];
4405
4430
  };
4406
4431
  UserMenuItem: {
@@ -4413,12 +4438,21 @@ export declare const ADAPTABLE_METAMODEL: {
4413
4438
  description: string;
4414
4439
  uiLabel: string;
4415
4440
  isOptional: boolean;
4441
+ reference?: undefined;
4442
+ } | {
4443
+ name: string;
4444
+ kind: string;
4445
+ description: string;
4446
+ uiLabel: string;
4447
+ isOptional: boolean;
4448
+ reference: string;
4416
4449
  } | {
4417
4450
  name: string;
4418
4451
  kind: string;
4419
4452
  description: string;
4420
4453
  uiLabel: string;
4421
4454
  isOptional?: undefined;
4455
+ reference?: undefined;
4422
4456
  })[];
4423
4457
  };
4424
4458
  ValidationResult: {