@adaptabletools/adaptable 12.0.0-canary.1 → 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 (435) hide show
  1. package/base.css +41 -14
  2. package/bundle.cjs.js +156 -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/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -0
  8. package/src/AdaptableOptions/ActionOptions.d.ts +181 -1
  9. package/src/AdaptableOptions/AdaptableOptions.d.ts +5 -0
  10. package/src/AdaptableOptions/AlertOptions.d.ts +5 -9
  11. package/src/AdaptableOptions/DashboardOptions.d.ts +1 -5
  12. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +17 -4
  13. package/src/AdaptableOptions/EditOptions.d.ts +2 -62
  14. package/src/AdaptableOptions/FinancePluginOptions.d.ts +3 -3
  15. package/src/AdaptableOptions/GeneralOptions.d.ts +7 -0
  16. package/src/AdaptableOptions/ToolPanelOptions.d.ts +1 -5
  17. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -112
  18. package/src/Api/ActionApi.d.ts +24 -0
  19. package/src/Api/{Events/RowFormSubmitted.js → ActionApi.js} +0 -0
  20. package/src/Api/AdaptableApi.d.ts +5 -0
  21. package/src/Api/AlertApi.d.ts +3 -3
  22. package/src/Api/ConfigApi.d.ts +1 -1
  23. package/src/Api/EventApi.d.ts +9 -9
  24. package/src/Api/Events/ActionRowSubmitted.d.ts +34 -0
  25. package/src/Api/Events/ActionRowSubmitted.js +2 -0
  26. package/src/Api/GridApi.d.ts +0 -14
  27. package/src/Api/Implementation/ActionApiImpl.d.ts +8 -0
  28. package/src/Api/Implementation/ActionApiImpl.js +56 -0
  29. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
  30. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  31. package/src/Api/Implementation/AlertApiImpl.d.ts +3 -3
  32. package/src/Api/Implementation/ApiBase.d.ts +2 -1
  33. package/src/Api/Implementation/ApiBase.js +3 -0
  34. package/src/Api/Implementation/ColumnApiImpl.js +2 -2
  35. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  36. package/src/Api/Implementation/FormatColumnApiImpl.js +2 -2
  37. package/src/Api/Implementation/GridApiImpl.d.ts +0 -3
  38. package/src/Api/Implementation/GridApiImpl.js +0 -44
  39. package/src/Api/Implementation/InternalApiImpl.d.ts +3 -3
  40. package/src/Api/Implementation/StatusBarApiImpl.d.ts +4 -3
  41. package/src/Api/Implementation/StatusBarApiImpl.js +2 -2
  42. package/src/Api/Implementation/TeamSharingApiImpl.js +2 -1
  43. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +1 -2
  44. package/src/Api/Implementation/UserInterfaceApiImpl.js +0 -4
  45. package/src/Api/StatusBarApi.d.ts +10 -3
  46. package/src/Api/UserInterfaceApi.d.ts +1 -5
  47. package/src/PredefinedConfig/AlertState.d.ts +4 -4
  48. package/src/PredefinedConfig/Common/AdaptableAlert.js +4 -2
  49. package/src/PredefinedConfig/Common/AdaptableColumn.js +2 -1
  50. package/src/PredefinedConfig/Common/AdaptableForm.d.ts +1 -1
  51. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +24 -18
  52. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +2 -4
  53. package/src/PredefinedConfig/Common/AdaptablePredicate.js +33 -31
  54. package/src/PredefinedConfig/Common/AdaptableQuery.js +2 -1
  55. package/src/PredefinedConfig/Common/FormContext.d.ts +3 -0
  56. package/src/PredefinedConfig/Common/Menu.d.ts +3 -3
  57. package/src/PredefinedConfig/Common/Types.d.ts +1 -1
  58. package/src/PredefinedConfig/StatusBarState.d.ts +5 -2
  59. package/src/PredefinedConfig/Uuid.js +2 -1
  60. package/src/Redux/ActionsReducers/AlertRedux.js +16 -8
  61. package/src/Redux/ActionsReducers/ApplicationRedux.js +8 -4
  62. package/src/Redux/ActionsReducers/BulkUpdateRedux.js +6 -3
  63. package/src/Redux/ActionsReducers/CalculatedColumnRedux.js +10 -5
  64. package/src/Redux/ActionsReducers/CellSummaryRedux.js +2 -1
  65. package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +14 -7
  66. package/src/Redux/ActionsReducers/CustomSortRedux.js +14 -7
  67. package/src/Redux/ActionsReducers/DashboardRedux.js +24 -12
  68. package/src/Redux/ActionsReducers/ExportRedux.js +16 -8
  69. package/src/Redux/ActionsReducers/FlashingCellRedux.js +16 -8
  70. package/src/Redux/ActionsReducers/FormatColumnRedux.js +14 -7
  71. package/src/Redux/ActionsReducers/FreeTextColumnRedux.js +14 -7
  72. package/src/Redux/ActionsReducers/GridRedux.js +38 -19
  73. package/src/Redux/ActionsReducers/LayoutRedux.js +30 -15
  74. package/src/Redux/ActionsReducers/PluginsRedux.js +4 -2
  75. package/src/Redux/ActionsReducers/PlusMinusRedux.js +16 -8
  76. package/src/Redux/ActionsReducers/PopupRedux.js +37 -19
  77. package/src/Redux/ActionsReducers/QueryRedux.js +12 -6
  78. package/src/Redux/ActionsReducers/QuickSearchRedux.js +8 -4
  79. package/src/Redux/ActionsReducers/ScheduleRedux.js +58 -29
  80. package/src/Redux/ActionsReducers/ShortcutRedux.js +14 -7
  81. package/src/Redux/ActionsReducers/SmartEditRedux.js +6 -3
  82. package/src/Redux/ActionsReducers/StatusBarRedux.js +10 -5
  83. package/src/Redux/ActionsReducers/SystemRedux.js +103 -51
  84. package/src/Redux/ActionsReducers/SystemStatusRedux.js +4 -2
  85. package/src/Redux/ActionsReducers/TeamSharingRedux.js +22 -11
  86. package/src/Redux/ActionsReducers/ThemeRedux.js +10 -5
  87. package/src/Redux/ActionsReducers/ToolPanelRedux.js +16 -8
  88. package/src/Redux/DeadRedux.js +16 -8
  89. package/src/Redux/Store/AdaptableReduxMerger.js +2 -1
  90. package/src/Redux/Store/AdaptableStore.js +10 -2
  91. package/src/Strategy/AlertModule.d.ts +2 -18
  92. package/src/Strategy/AlertModule.js +2 -1
  93. package/src/Strategy/ConditionalStyleModule.d.ts +2 -10
  94. package/src/Strategy/DashboardModule.js +3 -1
  95. package/src/Strategy/DataChangeHistoryModule.d.ts +2 -8
  96. package/src/Strategy/DataSetModule.d.ts +2 -13
  97. package/src/Strategy/ExportModule.d.ts +2 -13
  98. package/src/Strategy/ExportModule.js +1 -1
  99. package/src/Strategy/FilterModule.d.ts +2 -14
  100. package/src/Strategy/FilterModule.js +1 -1
  101. package/src/Strategy/FlashingCellModule.d.ts +2 -9
  102. package/src/Strategy/GridInfoModule.js +6 -2
  103. package/src/Strategy/LayoutModule.d.ts +2 -17
  104. package/src/Strategy/LayoutModule.js +6 -3
  105. package/src/Strategy/PlusMinusModule.d.ts +2 -9
  106. package/src/Strategy/QuickSearchModule.d.ts +2 -7
  107. package/src/Strategy/ScheduleModule.d.ts +2 -13
  108. package/src/Strategy/ShortcutModule.d.ts +2 -9
  109. package/src/Strategy/StatusBarModule.js +2 -2
  110. package/src/Strategy/SystemStatusModule.d.ts +2 -7
  111. package/src/Strategy/ThemeModule.d.ts +2 -8
  112. package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +2 -1
  113. package/src/Strategy/Utilities/getAlertPreviewViewItems.js +2 -1
  114. package/src/Strategy/Utilities/getCustomSortColumnViewItems.js +2 -1
  115. package/src/Strategy/Utilities/getCustomSortSortOrderViewItems.js +2 -1
  116. package/src/Strategy/Utilities/getExportColumnsViewItems.js +2 -1
  117. package/src/Strategy/Utilities/getExportRowsViewItems.js +2 -1
  118. package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
  119. package/src/Strategy/Utilities/getFlashingCellDurationViewItems.js +2 -1
  120. package/src/Strategy/Utilities/getFlashingCellStyleViewItems.d.ts +2 -6
  121. package/src/Strategy/Utilities/getFlashingCellStyleViewItems.js +2 -1
  122. package/src/Strategy/Utilities/getFlashingTargetViewItems.js +2 -1
  123. package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +2 -1
  124. package/src/Strategy/Utilities/getFormatColumnStyleViewItems.js +2 -1
  125. package/src/Strategy/Utilities/getObjectTagsViewItems.js +2 -1
  126. package/src/Strategy/Utilities/getRuleViewItems.js +2 -1
  127. package/src/Strategy/Utilities/getScopeViewItems.js +2 -1
  128. package/src/Strategy/Utilities/getShortcutSettingsViewItems.js +2 -1
  129. package/src/Strategy/Utilities/getStyleViewItems.js +2 -1
  130. package/src/Utilities/Constants/GeneralConstants.js +2 -1
  131. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +13 -13
  132. package/src/Utilities/ExpressionFunctions/dateUtils.js +2 -1
  133. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +20 -10
  134. package/src/Utilities/Helpers/AdaptableHelper.js +4 -3
  135. package/src/Utilities/Helpers/DateHelper.js +10 -5
  136. package/src/Utilities/Helpers/Helper.js +2 -1
  137. package/src/Utilities/Helpers/LoggingHelper.js +2 -1
  138. package/src/Utilities/Helpers/StyleHelper.js +8 -4
  139. package/src/Utilities/MenuItem.d.ts +4 -3
  140. package/src/Utilities/MenuItem.js +9 -3
  141. package/src/Utilities/ObjectFactory.js +1 -0
  142. package/src/Utilities/Services/Interface/IRowEditService.d.ts +3 -3
  143. package/src/Utilities/Services/ModuleService.js +3 -1
  144. package/src/Utilities/Services/RowEditService.d.ts +6 -6
  145. package/src/Utilities/Services/RowEditService.js +24 -25
  146. package/src/Utilities/isAdaptableObject.js +2 -1
  147. package/src/Utilities/isMacLike.js +2 -1
  148. package/src/Utilities/license/decode.js +1 -1
  149. package/src/Utilities/reorder.js +2 -1
  150. package/src/Utilities/runIfNotResolvedIn.js +2 -1
  151. package/src/Utilities/waitForCondition.d.ts +1 -1
  152. package/src/Utilities/waitForCondition.js +2 -1
  153. package/src/View/AdaptableContext.js +2 -1
  154. package/src/View/AdaptableView.js +2 -1
  155. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +8 -3
  156. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +3 -2
  157. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +9 -2
  158. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.d.ts +30 -0
  159. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +88 -0
  160. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.d.ts +18 -0
  161. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +17 -0
  162. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.d.ts +2 -9
  163. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +2 -75
  164. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.d.ts +3 -1
  165. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.js +9 -4
  166. package/src/View/AdaptableWizardView/Utils.d.ts +1 -0
  167. package/src/View/AdaptableWizardView/Utils.js +25 -0
  168. package/src/View/AdaptableWizardView/Wizard.d.ts +54 -0
  169. package/src/View/AdaptableWizardView/Wizard.js +100 -0
  170. package/src/View/AdaptableWizardView/helper.js +6 -3
  171. package/src/View/AdaptableWizardView/index.d.ts +1 -22
  172. package/src/View/AdaptableWizardView/index.js +2 -103
  173. package/src/View/Alert/ActiveAlertsPanel.js +2 -1
  174. package/src/View/Alert/AlertEmptyView.js +2 -1
  175. package/src/View/Alert/AlertStatusSubPanel.js +2 -1
  176. package/src/View/Alert/Utilities/getAlertButtonStyle.js +2 -1
  177. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +5 -3
  178. package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +3 -3
  179. package/src/View/Alert/Wizard/AlertButtonsEditor.js +2 -1
  180. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +8 -5
  181. package/src/View/Alert/Wizard/AlertRulesWizardSection.js +4 -2
  182. package/src/View/Alert/Wizard/AlertScopeWizardSection.js +2 -1
  183. package/src/View/Alert/Wizard/AlertWizard.js +2 -1
  184. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +3 -2
  185. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +6 -4
  186. package/src/View/Alert/Wizard/isValidAlertRules.js +2 -1
  187. package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
  188. package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingTags.js +2 -1
  189. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +7 -4
  190. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +7 -4
  191. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -1
  192. package/src/View/CellSummary/CellSummaryPopover.js +2 -1
  193. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +2 -1
  194. package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -1
  195. package/src/View/ColorPicker.d.ts +5 -1
  196. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  197. package/src/View/Components/AdaptableDateInput/index.js +10 -10
  198. package/src/View/Components/AdaptableInput/index.d.ts +2 -2
  199. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +4 -2
  200. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +4 -2
  201. package/src/View/Components/Buttons/ButtonClone.js +2 -1
  202. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  203. package/src/View/Components/Buttons/ButtonEdit.js +2 -1
  204. package/src/View/Components/Buttons/ButtonNew.js +2 -1
  205. package/src/View/Components/ColumnSelector/index.js +2 -1
  206. package/src/View/Components/EntityRulesEditor/index.js +6 -3
  207. package/src/View/Components/ExpressionWizard.js +2 -1
  208. package/src/View/Components/ExternalRenderer.js +2 -1
  209. package/src/View/Components/FilterForm/FilterForm.js +2 -1
  210. package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
  211. package/src/View/Components/FilterForm/ListBoxMenu.js +2 -2
  212. package/src/View/Components/FilterForm/QuickFilterForm.js +5 -3
  213. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  214. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +2 -1
  215. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -2
  216. package/src/View/Components/ListBox/DualListBoxEditor.js +2 -1
  217. package/src/View/Components/ModuleValueSelector/index.js +2 -1
  218. package/src/View/Components/NewScopeComponent.js +6 -3
  219. package/src/View/Components/Panels/PanelFooter.js +2 -1
  220. package/src/View/Components/Panels/PanelWithImage.d.ts +1 -429
  221. package/src/View/Components/Panels/PanelWithImage.js +2 -0
  222. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -1
  223. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +2 -1
  224. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +2 -1
  225. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +2 -1
  226. package/src/View/Components/Popups/AdaptablePopup/CustomSettingsPanelView.js +2 -1
  227. package/src/View/Components/Popups/AdaptablePopup/Navigation.js +5 -5
  228. package/src/View/Components/Popups/AdaptablePopup/PopupContext.js +2 -1
  229. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +2 -1
  230. package/src/View/Components/Popups/AdaptablePopup/TopBar.js +6 -5
  231. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +2 -1
  232. package/src/View/Components/Popups/AdaptablePopupAlert.js +4 -4
  233. package/src/View/Components/Popups/AdaptablePopupPrompt.js +2 -1
  234. package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +2 -1
  235. package/src/View/Components/Popups/AdaptableToaster.js +2 -1
  236. package/src/View/Components/Popups/FormPopups/FormPopups.js +4 -2
  237. package/src/View/Components/Popups/Utilities.js +8 -4
  238. package/src/View/Components/Popups/WindowPopups/WindowPopups.js +2 -1
  239. package/src/View/Components/Selectors/ColumnSelector.js +2 -1
  240. package/src/View/Components/TagValueSelector/index.js +4 -2
  241. package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +1 -1
  242. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +5 -1
  243. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +2 -1
  244. package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
  245. package/src/View/Components/ToolPanel/ToolPanelPopup.js +1 -1
  246. package/src/View/Components/ToolPanel/ToolPanelWrapper.js +2 -1
  247. package/src/View/Components/WizardSummaryPage.js +2 -1
  248. package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +1 -1
  249. package/src/View/ConditionalStyle/Wizard/ConditionalStyleScopeWizardSection.js +3 -2
  250. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +5 -3
  251. package/src/View/ConditionalStyle/Wizard/ConditionalStyleStyleWizardSection.js +3 -2
  252. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +2 -1
  253. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +8 -5
  254. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +7 -4
  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 +7 -4
  276. package/src/View/Export/Wizard/ReportNameWizardSection.js +7 -4
  277. package/src/View/Export/Wizard/ReportRowsWizardSection.js +7 -4
  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 +6 -4
  284. package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +3 -2
  285. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +11 -6
  286. package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.js +7 -4
  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 +9 -5
  290. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +5 -3
  291. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +5 -3
  292. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +5 -3
  293. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +7 -4
  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/PlusMinusRuleWizardSection.js +2 -2
  316. package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.js +3 -2
  317. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +8 -5
  318. package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +2 -1
  319. package/src/View/Query/EditCurrentQueryButton.js +2 -1
  320. package/src/View/Query/ExpandedQueryPopup.js +2 -1
  321. package/src/View/Query/QueryViewPanel.d.ts +1 -1
  322. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +7 -4
  323. package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +7 -4
  324. package/src/View/QuickSearch/QuickSearchStatusBarContent.js +2 -1
  325. package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +1 -1
  326. package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -1
  327. package/src/View/Schedule/Wizard/ScheduleScheduleSummary.js +3 -2
  328. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +5 -3
  329. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +2 -1
  330. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +2 -1
  331. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +2 -1
  332. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +2 -1
  333. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +2 -1
  334. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +5 -3
  335. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +3 -2
  336. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +2 -1
  337. package/src/View/Schedule/Wizard/ScheduleWizard.js +2 -1
  338. package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +3 -2
  339. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +8 -5
  340. package/src/View/Shortcut/Wizard/ShortcutWizard.js +2 -1
  341. package/src/View/SpecialColumnSettingsWizardStep.js +2 -1
  342. package/src/View/StateManagement/StateManagementPopup.js +2 -1
  343. package/src/View/StateManagement/StateManagementViewPanel.js +2 -1
  344. package/src/View/StateManagement/components/ClearButton.js +2 -1
  345. package/src/View/StateManagement/components/ExportDropdown.js +2 -1
  346. package/src/View/StateManagement/components/LoadButton.js +2 -1
  347. package/src/View/StateManagement/handleExportState.js +2 -1
  348. package/src/View/StatusBar/AdaptableStatusBar.js +2 -1
  349. package/src/View/StatusBar/StatusBarPanel.js +2 -1
  350. package/src/View/StatusBar/StatusBarPopup.js +5 -4
  351. package/src/View/SystemStatus/SystemStatusStatusBarContent.js +2 -1
  352. package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
  353. package/src/View/SystemStatus/Utilities/getStatusItemStyle.js +2 -1
  354. package/src/View/Theme/ThemeStatusPanelPopover.js +2 -1
  355. package/src/View/UIHelper.d.ts +2 -0
  356. package/src/View/UIHelper.js +12 -11
  357. package/src/View/Wizard/AdaptableWizard.js +2 -1
  358. package/src/View/Wizard/Interface/IAdaptableWizard.d.ts +2 -2
  359. package/src/View/Wizard/ObjectTagsWizardSection.js +5 -3
  360. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +5 -6
  361. package/src/View/Wizard/OnePageAdaptableWizard.js +45 -174
  362. package/src/View/Wizard/OnePageWizards.d.ts +37 -0
  363. package/src/View/Wizard/OnePageWizards.js +191 -0
  364. package/src/View/Wizard/useKeyboardNavigation.d.ts +1 -1
  365. package/src/View/Wizard/useKeyboardNavigation.js +2 -1
  366. package/src/View/renderWithAdaptableContext.js +2 -1
  367. package/src/agGrid/ActionColumnRenderer.d.ts +1 -1
  368. package/src/agGrid/ActionColumnRenderer.js +1 -1
  369. package/src/agGrid/Adaptable.js +28 -26
  370. package/src/agGrid/CheckboxRenderer.js +2 -1
  371. package/src/agGrid/FilterWrapper.js +2 -1
  372. package/src/agGrid/FloatingFilterWrapper.js +2 -1
  373. package/src/agGrid/PercentBarRenderer.js +2 -1
  374. package/src/agGrid/agGridHelper.js +3 -1
  375. package/src/agGrid/agGridMenuHelper.js +13 -10
  376. package/src/agGrid/createAgStatusPanelComponent.js +2 -1
  377. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +8 -5
  378. package/src/components/AdaptableIconComponent/index.d.ts +10 -0
  379. package/src/components/AdaptableIconComponent/index.js +40 -0
  380. package/src/components/CheckBox/index.js +2 -1
  381. package/src/components/CodeBlock/index.js +2 -1
  382. package/src/components/Dashboard/DashboardManager.js +1 -1
  383. package/src/components/Datepicker/Caption.js +1 -1
  384. package/src/components/Datepicker/DatepickerContext.js +2 -1
  385. package/src/components/Datepicker/index.d.ts +1 -1
  386. package/src/components/DragAndDropContext/ModuleManager.d.ts +1 -0
  387. package/src/components/DragAndDropContext/ModuleManager.js +5 -4
  388. package/src/components/DragAndDropContext/UnusedPanel.d.ts +3 -2
  389. package/src/components/DragAndDropContext/UnusedPanel.js +14 -12
  390. package/src/components/EllipsisContainer/index.js +4 -2
  391. package/src/components/ExpressionEditor/EditorContext.js +2 -1
  392. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +2 -1
  393. package/src/components/ExpressionEditor/NamedQueryContext.js +3 -1
  394. package/src/components/FileDroppable/index.js +2 -1
  395. package/src/components/FormLayout/index.js +2 -1
  396. package/src/components/Input/index.d.ts +1 -1
  397. package/src/components/List/ListGroupItem/index.d.ts +2 -4
  398. package/src/components/Loader/Loader.js +4 -2
  399. package/src/components/Logo/index.js +2 -1
  400. package/src/components/Modal/Backdrop.js +2 -1
  401. package/src/components/Modal/index.js +2 -1
  402. package/src/components/OverlayTrigger/Overlay.js +2 -1
  403. package/src/components/OverlayTrigger/index.js +2 -1
  404. package/src/components/OverlayTrigger/utils.js +6 -3
  405. package/src/components/PopupWithFooter.d.ts +1 -1
  406. package/src/components/ProgressIndicator/ProgressIndicator.js +2 -1
  407. package/src/components/Radio/index.js +4 -2
  408. package/src/components/ResizeObserver/getResizeObserverObject.js +2 -1
  409. package/src/components/ResizeObserver/index.js +6 -3
  410. package/src/components/SelectList.js +2 -1
  411. package/src/components/SelectableList/index.js +2 -1
  412. package/src/components/SimpleButton/index.d.ts +2 -1
  413. package/src/components/SimpleButton/index.js +19 -6
  414. package/src/components/StylePreview.js +2 -1
  415. package/src/components/Tabs/index.js +6 -3
  416. package/src/components/Textarea/index.d.ts +5 -1
  417. package/src/components/ToggleButton/index.js +2 -1
  418. package/src/components/WindowModal/WindowModal.js +15 -8
  419. package/src/components/WindowModal/useStacking.js +2 -1
  420. package/src/components/icons/DefaultIcon.js +2 -1
  421. package/src/components/icons/index.d.ts +3 -1
  422. package/src/components/icons/index.js +10 -2
  423. package/src/components/utils/useContainerScrollObserver/index.js +2 -1
  424. package/src/components/utils/useGlobalEvent.js +2 -1
  425. package/src/components/utils/useLatest.js +2 -1
  426. package/src/components/utils/useRerender.js +2 -1
  427. package/src/components/utils/uuid.js +2 -1
  428. package/src/metamodel/adaptable.metamodel.d.ts +208 -90
  429. package/src/metamodel/adaptable.metamodel.js +263 -156
  430. package/src/types.d.ts +7 -5
  431. package/version.d.ts +1 -1
  432. package/version.js +1 -1
  433. package/src/Api/Events/RowFormSubmitted.d.ts +0 -19
  434. package/src/components/ApplicationIcon.d.ts +0 -6
  435. package/src/components/ApplicationIcon.js +0 -13
@@ -7,6 +7,37 @@ exports.ADAPTABLE_METAMODEL = {
7
7
  "kind": "TypeAlias",
8
8
  "description": "Defines Access Level for an Entitlement - can be `ReadOnly`, `Hidden` or `Full`"
9
9
  },
10
+ "ActionApi": {
11
+ "name": "ActionApi",
12
+ "kind": "Interface",
13
+ "description": "A large range of column-related functions in AdapTable",
14
+ "properties": [
15
+ {
16
+ "name": "displayCloneActionRow",
17
+ "kind": "function",
18
+ "description": "Open create dialog for cloning an existing row",
19
+ "uiLabel": "Display Clone Action Row"
20
+ },
21
+ {
22
+ "name": "displayCreateActionRow",
23
+ "kind": "function",
24
+ "description": "Open create dialog for a new row",
25
+ "uiLabel": "Display Create Action Row"
26
+ },
27
+ {
28
+ "name": "displayEditActionRow",
29
+ "kind": "function",
30
+ "description": "Open edit dialog for row with the given primary key value",
31
+ "uiLabel": "Display Edit Action Row"
32
+ },
33
+ {
34
+ "name": "getAllActionColumn",
35
+ "kind": "function",
36
+ "description": "Retrieves any Action Columns (provided in User Interface Options)",
37
+ "uiLabel": "Get All Action Column"
38
+ }
39
+ ]
40
+ },
10
41
  "ActionColumn": {
11
42
  "name": "ActionColumn",
12
43
  "kind": "Interface",
@@ -48,8 +79,8 @@ exports.ADAPTABLE_METAMODEL = {
48
79
  }
49
80
  ]
50
81
  },
51
- "ActionColumnButtonContext": {
52
- "name": "ActionColumnButtonContext",
82
+ "ActionColumnContext": {
83
+ "name": "ActionColumnContext",
53
84
  "kind": "Interface",
54
85
  "description": "Context required by functions when using an Action Column Button",
55
86
  "properties": [
@@ -146,6 +177,14 @@ exports.ADAPTABLE_METAMODEL = {
146
177
  "isOptional": true,
147
178
  "defaultValue": "'pinnedLeft'"
148
179
  },
180
+ {
181
+ "name": "actionRowFormOptions",
182
+ "kind": "REFERENCE",
183
+ "description": "Options for managing the Form which the Action Row displays",
184
+ "uiLabel": "Action Row Form Options",
185
+ "isOptional": true,
186
+ "reference": "ActionRowFormOptions"
187
+ },
149
188
  {
150
189
  "name": "autoHandleActionRowButtons",
151
190
  "kind": "boolean",
@@ -164,6 +203,67 @@ exports.ADAPTABLE_METAMODEL = {
164
203
  }
165
204
  ]
166
205
  },
206
+ "ActionRowContext": {
207
+ "name": "ActionRowContext",
208
+ "kind": "TypeAlias",
209
+ "description": "Context passed into a Row Form - can be `CreateActionRowContext` or `EditActionRowContext`"
210
+ },
211
+ "ActionRowFormOptions": {
212
+ "name": "ActionRowFormOptions",
213
+ "kind": "Interface",
214
+ "description": "Options for editing (create/update/delete) row entries in the grid",
215
+ "properties": [
216
+ {
217
+ "name": "formButtons",
218
+ "kind": "unknown",
219
+ "description": "Custom form buttons provider. If provided, the custom implementation is responsible for firing the 'ActionRowSubmitted' and/or invoking the 'onFormSubmit' callback (if necessary).",
220
+ "uiLabel": "Form Buttons",
221
+ "isOptional": true
222
+ },
223
+ {
224
+ "name": "formDescription",
225
+ "kind": "unknown",
226
+ "description": "Custom form description provider",
227
+ "uiLabel": "Form Description",
228
+ "isOptional": true,
229
+ "defaultValue": "undefined"
230
+ },
231
+ {
232
+ "name": "formFieldLabel",
233
+ "kind": "unknown",
234
+ "description": "Custom form field label provider",
235
+ "uiLabel": "Form Field Label",
236
+ "isOptional": true,
237
+ "defaultValue": "undefined"
238
+ },
239
+ {
240
+ "name": "formTitle",
241
+ "kind": "unknown",
242
+ "description": "Custom form title provider",
243
+ "uiLabel": "Form Title",
244
+ "isOptional": true,
245
+ "defaultValue": "'Create New Row'/'Edit Row'"
246
+ },
247
+ {
248
+ "name": "onFormSubmit",
249
+ "kind": "unknown",
250
+ "description": "Function which is invoked when the form in an Action Row is submitted via a standard button (provided by AdapTable). This is not invoked when custom form buttons are provided!",
251
+ "uiLabel": "On Form Submit",
252
+ "isOptional": true,
253
+ "defaultValue": "undefined"
254
+ }
255
+ ]
256
+ },
257
+ "ActionRowSubmittedInfo": {
258
+ "name": "ActionRowSubmittedInfo",
259
+ "kind": "TypeAlias",
260
+ "description": "Info passed into ActionRowSubmitted Event - can be `CreatedActionRowInfo` or `EditedActionRowInfo` or `DeletedActionRowInfo`"
261
+ },
262
+ "ActionRowType": {
263
+ "name": "ActionRowType",
264
+ "kind": "TypeAlias",
265
+ "description": "Type of Action Row - Created, Edited or Deleted"
266
+ },
167
267
  "AdaptableAlert": {
168
268
  "name": "AdaptableAlert",
169
269
  "kind": "TypeAlias",
@@ -211,6 +311,13 @@ exports.ADAPTABLE_METAMODEL = {
211
311
  "kind": "Interface",
212
312
  "description": "The `AdaptableApi` provides developers with run-time access to AdapTable.",
213
313
  "properties": [
314
+ {
315
+ "name": "actionApi",
316
+ "kind": "REFERENCE",
317
+ "description": "Provides access to Action Rows and Columns",
318
+ "uiLabel": "Action Api",
319
+ "reference": "ActionApi"
320
+ },
214
321
  {
215
322
  "name": "alertApi",
216
323
  "kind": "REFERENCE",
@@ -778,6 +885,11 @@ exports.ADAPTABLE_METAMODEL = {
778
885
  "kind": "TypeAlias",
779
886
  "description": "List of all the Toolbars that Adaptable provides"
780
887
  },
888
+ "AdaptableExternalIcon": {
889
+ "name": "AdaptableExternalIcon",
890
+ "kind": "Interface",
891
+ "description": "Defines an icon from an external source"
892
+ },
781
893
  "AdaptableFDC3EventInfo": {
782
894
  "name": "AdaptableFDC3EventInfo",
783
895
  "kind": "Interface",
@@ -933,31 +1045,13 @@ exports.ADAPTABLE_METAMODEL = {
933
1045
  },
934
1046
  "AdaptableIcon": {
935
1047
  "name": "AdaptableIcon",
1048
+ "kind": "TypeAlias",
1049
+ "description": "Defines an icon to be used in AdapTable (e.g. in Dashboard Header, Buttons, Menu, etc.)"
1050
+ },
1051
+ "AdaptableInternalIcon": {
1052
+ "name": "AdaptableInternalIcon",
936
1053
  "kind": "Interface",
937
- "description": "Defines an icon to be used in AdapTable (e.g. in Dashboard Header and Buttons)",
938
- "properties": [
939
- {
940
- "name": "cssProperties",
941
- "kind": "REFERENCE",
942
- "description": "CSS Properties",
943
- "uiLabel": "Css Properties",
944
- "isOptional": true,
945
- "reference": "unknown"
946
- },
947
- {
948
- "name": "src",
949
- "kind": "string",
950
- "description": "url specifying where icon can be found (mandatory)",
951
- "uiLabel": "Src"
952
- },
953
- {
954
- "name": "style",
955
- "kind": "unknown",
956
- "description": "The style for the icon - has height and width properties",
957
- "uiLabel": "Style",
958
- "isOptional": true
959
- }
960
- ]
1054
+ "description": "Defines an icon from the internal AdapTable icon set"
961
1055
  },
962
1056
  "AdaptableLoadStateFunction": {
963
1057
  "name": "AdaptableLoadStateFunction",
@@ -971,10 +1065,11 @@ exports.ADAPTABLE_METAMODEL = {
971
1065
  "properties": [
972
1066
  {
973
1067
  "name": "icon",
974
- "kind": "string",
1068
+ "kind": "REFERENCE",
975
1069
  "description": "Icon to display in Menu Item",
976
1070
  "uiLabel": "Icon",
977
- "isOptional": true
1071
+ "isOptional": true,
1072
+ "reference": "AdaptableIcon"
978
1073
  },
979
1074
  {
980
1075
  "name": "isVisible",
@@ -1074,6 +1169,14 @@ exports.ADAPTABLE_METAMODEL = {
1074
1169
  "kind": "Interface",
1075
1170
  "description": "Group of property options enabling developers to set up AdapTable at design time to fit precise requirements - provides AG Grid, Predefined Config and other information required to ensure a full, rich user experience",
1076
1171
  "properties": [
1172
+ {
1173
+ "name": "actionOptions",
1174
+ "kind": "REFERENCE",
1175
+ "description": "Options for managing Action Columns and Action Rows",
1176
+ "uiLabel": "Action Options",
1177
+ "isOptional": true,
1178
+ "reference": "ActionOptions"
1179
+ },
1077
1180
  {
1078
1181
  "name": "adaptableId",
1079
1182
  "kind": "string",
@@ -1637,6 +1740,26 @@ exports.ADAPTABLE_METAMODEL = {
1637
1740
  }
1638
1741
  ]
1639
1742
  },
1743
+ "AdaptableStatusBar": {
1744
+ "name": "AdaptableStatusBar",
1745
+ "kind": "Interface",
1746
+ "description": "Defines an Adaptable Status Bar",
1747
+ "properties": [
1748
+ {
1749
+ "name": "Key",
1750
+ "kind": "string",
1751
+ "description": "Key of Status Bar Panel defined in AG Grid GridOptions - ensure keys are the same (Note: AG Grid statusPanel has a lowercase 'key')",
1752
+ "uiLabel": "Key"
1753
+ },
1754
+ {
1755
+ "name": "StatusBarPanels",
1756
+ "kind": "unknown",
1757
+ "description": "Module Status Panels to render inside Adaptable Status Bar",
1758
+ "uiLabel": "Status Bar Panels",
1759
+ "isOptional": true
1760
+ }
1761
+ ]
1762
+ },
1640
1763
  "AdaptableStyle": {
1641
1764
  "name": "AdaptableStyle",
1642
1765
  "kind": "Interface",
@@ -1963,28 +2086,6 @@ exports.ADAPTABLE_METAMODEL = {
1963
2086
  }
1964
2087
  ]
1965
2088
  },
1966
- "AlertButtonContext": {
1967
- "name": "AlertButtonContext",
1968
- "kind": "Interface",
1969
- "description": "Context required by functions when using an Alert Button",
1970
- "properties": [
1971
- {
1972
- "name": "alert",
1973
- "kind": "REFERENCE",
1974
- "description": "Alert that has been triggered",
1975
- "uiLabel": "Alert",
1976
- "reference": "AdaptableAlert"
1977
- },
1978
- {
1979
- "name": "formData",
1980
- "kind": "REFERENCE",
1981
- "description": "Data in the Alert Form",
1982
- "uiLabel": "Form Data",
1983
- "isOptional": true,
1984
- "reference": "unknown"
1985
- }
1986
- ]
1987
- },
1988
2089
  "AlertDefinition": {
1989
2090
  "name": "AlertDefinition",
1990
2091
  "kind": "Interface",
@@ -2054,6 +2155,20 @@ exports.ADAPTABLE_METAMODEL = {
2054
2155
  "kind": "TypeAlias",
2055
2156
  "description": "Form to show in an Alert"
2056
2157
  },
2158
+ "AlertFormContext": {
2159
+ "name": "AlertFormContext",
2160
+ "kind": "Interface",
2161
+ "description": "Context required by functions when using an Alert Button",
2162
+ "properties": [
2163
+ {
2164
+ "name": "alert",
2165
+ "kind": "REFERENCE",
2166
+ "description": "Alert that has been triggered",
2167
+ "uiLabel": "Alert",
2168
+ "reference": "AdaptableAlert"
2169
+ }
2170
+ ]
2171
+ },
2057
2172
  "AlertMessageContext": {
2058
2173
  "name": "AlertMessageContext",
2059
2174
  "kind": "Interface",
@@ -4166,6 +4281,32 @@ exports.ADAPTABLE_METAMODEL = {
4166
4281
  "kind": "TypeAlias",
4167
4282
  "description": "All available Country Intents"
4168
4283
  },
4284
+ "CreateActionRowContext": {
4285
+ "name": "CreateActionRowContext",
4286
+ "kind": "Interface",
4287
+ "description": "Context used in a Create Row Form",
4288
+ "properties": [
4289
+ {
4290
+ "name": "clonedRowNode",
4291
+ "kind": "REFERENCE",
4292
+ "description": "The RowNode being cloned",
4293
+ "uiLabel": "Cloned Row Node",
4294
+ "isOptional": true,
4295
+ "reference": "unknown"
4296
+ },
4297
+ {
4298
+ "name": "type",
4299
+ "kind": "unknown",
4300
+ "description": "Type of the Context",
4301
+ "uiLabel": "Type"
4302
+ }
4303
+ ]
4304
+ },
4305
+ "CreatedActionRowInfo": {
4306
+ "name": "CreatedActionRowInfo",
4307
+ "kind": "Interface",
4308
+ "description": "Info passed into ActionRowSubmitted Event for Created Rows"
4309
+ },
4169
4310
  "CustomDestination": {
4170
4311
  "name": "CustomDestination",
4171
4312
  "kind": "Interface",
@@ -4463,13 +4604,6 @@ exports.ADAPTABLE_METAMODEL = {
4463
4604
  "description": "Custom Toolbar which hosts the Button",
4464
4605
  "uiLabel": "Custom Toolbar",
4465
4606
  "reference": "CustomToolbar"
4466
- },
4467
- {
4468
- "name": "dashboardState",
4469
- "kind": "REFERENCE",
4470
- "description": "Current Dashboard State",
4471
- "uiLabel": "Dashboard State",
4472
- "reference": "DashboardState"
4473
4607
  }
4474
4608
  ]
4475
4609
  },
@@ -4968,13 +5102,6 @@ exports.ADAPTABLE_METAMODEL = {
4968
5102
  "kind": "Interface",
4969
5103
  "description": "Options to manage the 'Data Change History Module', which provides an overview of all previous changes, giving the possibility to undo specific changes",
4970
5104
  "properties": [
4971
- {
4972
- "name": "actionColumnButton",
4973
- "kind": "unknown",
4974
- "description": "Action button definition. Can be used to implement undo functionality.",
4975
- "uiLabel": "Action Column Button",
4976
- "isOptional": true
4977
- },
4978
5105
  {
4979
5106
  "name": "activeByDefault",
4980
5107
  "kind": "boolean",
@@ -4984,6 +5111,13 @@ exports.ADAPTABLE_METAMODEL = {
4984
5111
  "gridInfo": "item",
4985
5112
  "defaultValue": "false"
4986
5113
  },
5114
+ {
5115
+ "name": "changeHistoryButton",
5116
+ "kind": "unknown",
5117
+ "description": "Action button definition. Can be used to implement undo functionality.",
5118
+ "uiLabel": "Change History Button",
5119
+ "isOptional": true
5120
+ },
4987
5121
  {
4988
5122
  "name": "showDataChange",
4989
5123
  "kind": "unknown",
@@ -5070,6 +5204,20 @@ exports.ADAPTABLE_METAMODEL = {
5070
5204
  }
5071
5205
  ]
5072
5206
  },
5207
+ "DataSetFormContext": {
5208
+ "name": "DataSetFormContext",
5209
+ "kind": "Interface",
5210
+ "description": "Used when a DataSet displays a Form",
5211
+ "properties": [
5212
+ {
5213
+ "name": "dataSet",
5214
+ "kind": "REFERENCE",
5215
+ "description": "The DataSet which triggered the Form",
5216
+ "uiLabel": "Data Set",
5217
+ "reference": "DataSet"
5218
+ }
5219
+ ]
5220
+ },
5073
5221
  "DataUpdateConfig": {
5074
5222
  "name": "DataUpdateConfig",
5075
5223
  "kind": "Interface",
@@ -5167,6 +5315,36 @@ exports.ADAPTABLE_METAMODEL = {
5167
5315
  }
5168
5316
  ]
5169
5317
  },
5318
+ "DeletedActionRowInfo": {
5319
+ "name": "DeletedActionRowInfo",
5320
+ "kind": "Interface",
5321
+ "description": "Info passed into ActionRowSubmitted Event for Deleted Rows"
5322
+ },
5323
+ "EditActionRowContext": {
5324
+ "name": "EditActionRowContext",
5325
+ "kind": "Interface",
5326
+ "description": "Context used in an Edit Row Form",
5327
+ "properties": [
5328
+ {
5329
+ "name": "rowNode",
5330
+ "kind": "REFERENCE",
5331
+ "description": "The RowNode being edited",
5332
+ "uiLabel": "Row Node",
5333
+ "reference": "unknown"
5334
+ },
5335
+ {
5336
+ "name": "type",
5337
+ "kind": "unknown",
5338
+ "description": "Type of the Context",
5339
+ "uiLabel": "Type"
5340
+ }
5341
+ ]
5342
+ },
5343
+ "EditedActionRowInfo": {
5344
+ "name": "EditedActionRowInfo",
5345
+ "kind": "Interface",
5346
+ "description": "Info passed into ActionRowSubmitted Event for Edited Rows"
5347
+ },
5170
5348
  "EditLookUpPermittedValues": {
5171
5349
  "name": "EditLookUpPermittedValues",
5172
5350
  "kind": "Interface",
@@ -5175,7 +5353,7 @@ exports.ADAPTABLE_METAMODEL = {
5175
5353
  "EditOptions": {
5176
5354
  "name": "EditOptions",
5177
5355
  "kind": "Interface",
5178
- "description": "Options related to Editing in Adaptable.",
5356
+ "description": "Options related to Editing in Adaptable - includes Server Validation, Smart Edit Operations and Row Forms",
5179
5357
  "properties": [
5180
5358
  {
5181
5359
  "name": "displayServerValidationMessages",
@@ -5193,14 +5371,6 @@ exports.ADAPTABLE_METAMODEL = {
5193
5371
  "uiLabel": "Is Cell Editable",
5194
5372
  "isOptional": true
5195
5373
  },
5196
- {
5197
- "name": "rowFormOptions",
5198
- "kind": "REFERENCE",
5199
- "description": "Options for editing (create/update/delete) row entries in the grid.",
5200
- "uiLabel": "Row Form Options",
5201
- "isOptional": true,
5202
- "reference": "RowFormOptions"
5203
- },
5204
5374
  {
5205
5375
  "name": "smartEditCustomOperations",
5206
5376
  "kind": "unknown",
@@ -5291,7 +5461,7 @@ exports.ADAPTABLE_METAMODEL = {
5291
5461
  {
5292
5462
  "name": "off",
5293
5463
  "kind": "function",
5294
- "description": "Unsubscribe from RowFormSubmitted",
5464
+ "description": "Unsubscribe from ActionRowSubmitted",
5295
5465
  "uiLabel": "Off"
5296
5466
  },
5297
5467
  {
@@ -5399,7 +5569,7 @@ exports.ADAPTABLE_METAMODEL = {
5399
5569
  {
5400
5570
  "name": "on",
5401
5571
  "kind": "function",
5402
- "description": "Event fired when a Row Form is submitted",
5572
+ "description": "Event fired when an Action Row is submitted",
5403
5573
  "uiLabel": "On"
5404
5574
  },
5405
5575
  {
@@ -5985,7 +6155,7 @@ exports.ADAPTABLE_METAMODEL = {
5985
6155
  {
5986
6156
  "name": "getIconForIntent",
5987
6157
  "kind": "unknown",
5988
- "description": "Returns the icon to display in the Raise Intent Context Menu Item",
6158
+ "description": "Returns a custom icon to display in the Raise Intent Context Menu Item;",
5989
6159
  "uiLabel": "Get Icon For Intent",
5990
6160
  "isOptional": true
5991
6161
  },
@@ -7092,6 +7262,20 @@ exports.ADAPTABLE_METAMODEL = {
7092
7262
  }
7093
7263
  ]
7094
7264
  },
7265
+ "FormContext": {
7266
+ "name": "FormContext",
7267
+ "kind": "Interface",
7268
+ "description": "Context supplied to Buttons that appear in an Adaptable Form",
7269
+ "properties": [
7270
+ {
7271
+ "name": "formData",
7272
+ "kind": "REFERENCE",
7273
+ "description": "Adaptable Form Data",
7274
+ "uiLabel": "Form Data",
7275
+ "reference": "unknown"
7276
+ }
7277
+ ]
7278
+ },
7095
7279
  "FreeTextColumn": {
7096
7280
  "name": "FreeTextColumn",
7097
7281
  "kind": "Interface",
@@ -7989,24 +8173,6 @@ exports.ADAPTABLE_METAMODEL = {
7989
8173
  "description": "Loads grid with given data",
7990
8174
  "uiLabel": "Load Grid Data"
7991
8175
  },
7992
- {
7993
- "name": "openCloneRowForm",
7994
- "kind": "function",
7995
- "description": "Open create dialog for cloning an existing row",
7996
- "uiLabel": "Open Clone Row Form"
7997
- },
7998
- {
7999
- "name": "openCreateRowForm",
8000
- "kind": "function",
8001
- "description": "Open create dialog for a new row",
8002
- "uiLabel": "Open Create Row Form"
8003
- },
8004
- {
8005
- "name": "openEditRowForm",
8006
- "kind": "function",
8007
- "description": "Open edit dialog for row with the given primary key value",
8008
- "uiLabel": "Open Edit Row Form"
8009
- },
8010
8176
  {
8011
8177
  "name": "redrawGrid",
8012
8178
  "kind": "function",
@@ -10788,52 +10954,6 @@ exports.ADAPTABLE_METAMODEL = {
10788
10954
  }
10789
10955
  ]
10790
10956
  },
10791
- "RowFormOptions": {
10792
- "name": "RowFormOptions",
10793
- "kind": "Interface",
10794
- "description": "Options for editing (create/update/delete) row entries in the grid",
10795
- "properties": [
10796
- {
10797
- "name": "formButtons",
10798
- "kind": "unknown",
10799
- "description": "Custom form buttons provider. If provided, the custom implementation is responsible for firing the 'RowFormSubmitted' and/or invoking the 'onFormSubmit' callback (if necessary).",
10800
- "uiLabel": "Form Buttons",
10801
- "isOptional": true
10802
- },
10803
- {
10804
- "name": "formDescription",
10805
- "kind": "unknown",
10806
- "description": "Custom form description provider",
10807
- "uiLabel": "Form Description",
10808
- "isOptional": true,
10809
- "defaultValue": "undefined"
10810
- },
10811
- {
10812
- "name": "formFieldLabel",
10813
- "kind": "unknown",
10814
- "description": "Custom form field label provider",
10815
- "uiLabel": "Form Field Label",
10816
- "isOptional": true,
10817
- "defaultValue": "undefined"
10818
- },
10819
- {
10820
- "name": "formTitle",
10821
- "kind": "unknown",
10822
- "description": "Custom form title provider",
10823
- "uiLabel": "Form Title",
10824
- "isOptional": true,
10825
- "defaultValue": "'Create New Row'/'Edit Row'"
10826
- },
10827
- {
10828
- "name": "onFormSubmit",
10829
- "kind": "unknown",
10830
- "description": "Function which is invoked when a row form is submitted via a standard button (provided by AdapTable). This is not invoked when custom form buttons are provided!",
10831
- "uiLabel": "On Form Submit",
10832
- "isOptional": true,
10833
- "defaultValue": "undefined"
10834
- }
10835
- ]
10836
- },
10837
10957
  "RowInfo": {
10838
10958
  "name": "RowInfo",
10839
10959
  "kind": "Interface",
@@ -12555,12 +12675,6 @@ exports.ADAPTABLE_METAMODEL = {
12555
12675
  "description": "Retrieves any Object Tags (provided in User Interface Options)",
12556
12676
  "uiLabel": "Get Adaptable Object Tags"
12557
12677
  },
12558
- {
12559
- "name": "getAllActionColumn",
12560
- "kind": "function",
12561
- "description": "Retrieves any Action Columns (provided in User Interface Options)",
12562
- "uiLabel": "Get All Action Column"
12563
- },
12564
12678
  {
12565
12679
  "name": "getAllEditLookUpItems",
12566
12680
  "kind": "function",
@@ -12640,14 +12754,6 @@ exports.ADAPTABLE_METAMODEL = {
12640
12754
  "kind": "Interface",
12641
12755
  "description": "Options for managing the User Interface of AdapTable",
12642
12756
  "properties": [
12643
- {
12644
- "name": "actionOptions",
12645
- "kind": "REFERENCE",
12646
- "description": "Options for creating Action Columns and Buttons",
12647
- "uiLabel": "Action Options",
12648
- "isOptional": true,
12649
- "reference": "ActionOptions"
12650
- },
12651
12757
  {
12652
12758
  "name": "applicationIcon",
12653
12759
  "kind": "REFERENCE",
@@ -12804,10 +12910,11 @@ exports.ADAPTABLE_METAMODEL = {
12804
12910
  },
12805
12911
  {
12806
12912
  "name": "icon",
12807
- "kind": "string",
12913
+ "kind": "REFERENCE",
12808
12914
  "description": "Optional icon to display",
12809
12915
  "uiLabel": "Icon",
12810
- "isOptional": true
12916
+ "isOptional": true,
12917
+ "reference": "AdaptableIcon"
12811
12918
  },
12812
12919
  {
12813
12920
  "name": "label",
package/src/types.d.ts CHANGED
@@ -10,9 +10,10 @@ export { AdaptablePlugin } from './AdaptableOptions/AdaptablePlugin';
10
10
  export type { ContainerOptions } from './AdaptableOptions/ContainerOptions';
11
11
  export type { FlashingCellOptions } from './AdaptableOptions/FlashingCellOptions';
12
12
  export type { TOAST_POSITIONS, NotificationsOptions, } from './AdaptableOptions/NotificationsOptions';
13
- export type { AlertOptions, ActionHandler, AlertForm, AlertButtonContext, AlertMessageContext, } from './AdaptableOptions/AlertOptions';
13
+ export type { AlertOptions, ActionHandler, AlertForm, AlertFormContext, AlertMessageContext, } from './AdaptableOptions/AlertOptions';
14
14
  export type { DashboardOptions, CustomToolbar, DashboardButtonContext, CustomToolbarButtonContext, } from './AdaptableOptions/DashboardOptions';
15
- export type { EditOptions, RowFormOptions, FormParamContext, FormFieldLabelContext, RowFormContext, CreateRowFormContext, EditRowFormContext, ValidationResult, SmartEditCustomOperation, SmartEditOperation, SmartEditOperationContext, } from './AdaptableOptions/EditOptions';
15
+ export type { EditOptions, ValidationResult, SmartEditCustomOperation, SmartEditOperation, SmartEditOperationContext, } from './AdaptableOptions/EditOptions';
16
+ export type { ActionRowFormOptions, ActionRowParamContext, FormFieldLabelContext, CreateActionRowContext, EditActionRowContext, ActionColumnContext, ActionColumn, ActionColumnSettings, ActionOptions, ActionRowContext, } from './AdaptableOptions/ActionOptions';
16
17
  export type { ExportOptions, SystemExportDestination, SystemExportDestinations, CustomDestination, CustomReport, DataFormatType, ExportFormContext, ReportContext, } from './AdaptableOptions/ExportOptions';
17
18
  export type { GeneralOptions, ColumnValuesComparer, DataSet, DataSetFormContext, } from './AdaptableOptions/GeneralOptions';
18
19
  export type { Glue42PluginOptions } from './AdaptableOptions/Glue42PluginOptions';
@@ -31,7 +32,7 @@ export type { FilterActionOnDataChange } from './PredefinedConfig/Common/FilterA
31
32
  export type { ConfigState } from './PredefinedConfig/ConfigState';
32
33
  export type { TeamSharingOptions } from './AdaptableOptions/TeamSharingOptions';
33
34
  export type { ToolPanelOptions, CustomToolPanel, ToolPanelButtonContext, CustomToolPanelButtonContext, } from './AdaptableOptions/ToolPanelOptions';
34
- export type { UserInterfaceOptions, CellValuesList, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, GridInfoSections, GridInfoSection, ObjectTagsContext, CustomDisplayFormatter, ActionColumnButtonContext, ActionColumn, ActionColumnSettings, ActionOptions, } from './AdaptableOptions/UserInterfaceOptions';
35
+ export type { UserInterfaceOptions, CellValuesList, BasePermittedValues, PermittedValues, EditLookUpPermittedValues, FilterPermittedValues, CustomSortPermittedValues, BulkUpdatePermittedValues, EditLookUpContext, PermittedValuesContext, FilterPermittedValuesContext, BulkUpdatePermittedValuesContext, GridInfoSections, GridInfoSection, ObjectTagsContext, CustomDisplayFormatter, } from './AdaptableOptions/UserInterfaceOptions';
35
36
  export type { MenuOptions } from './AdaptableOptions/MenuOptions';
36
37
  export type { CustomSettingsPanel, SettingsPanelOptions, } from './AdaptableOptions/SettingsPanelOptions';
37
38
  export type { EntitlementOptions, EntitlementContext } from './AdaptableOptions/EntitlementOptions';
@@ -44,6 +45,7 @@ export type { BulkUpdateApi } from './Api/BulkUpdateApi';
44
45
  export type { CalculatedColumnApi } from './Api/CalculatedColumnApi';
45
46
  export type { CellSummaryApi } from './Api/CellSummaryApi';
46
47
  export type { ColumnApi } from './Api/ColumnApi';
48
+ export type { ActionApi } from './Api/ActionApi';
47
49
  export type { ConditionalStyleApi } from './Api/ConditionalStyleApi';
48
50
  export type { ConfigApi } from './Api/ConfigApi';
49
51
  export type { CustomSortApi } from './Api/CustomSortApi';
@@ -90,7 +92,7 @@ export type { LayoutChangedInfo } from './Api/Events/LayoutChanged';
90
92
  export type { CheckboxColumnClickedInfo } from './Api/Events/ChexboxColumnClicked';
91
93
  export type { CustomToolbarConfiguredInfo } from './Api/Events/CustomToolbarConfigured';
92
94
  export type { LiveDataChangedInfo, LiveReport } from './Api/Events/LiveDataChanged';
93
- export type { RowFormSubmittedInfo, RowFormType, CreatedRowFormInfo, EditedRowFormInfo, DeletedRowFormInfo, } from './Api/Events/RowFormSubmitted';
95
+ export type { ActionRowSubmittedInfo, ActionRowType, CreatedActionRowInfo, EditedActionRowInfo, DeletedActionRowInfo, } from './Api/Events/ActionRowSubmitted';
94
96
  export type { AdaptableSearchState, AdaptableSortState, SearchChangedInfo, } from './Api/Events/SearchChanged';
95
97
  export type { DataSetChangedInfo } from './Api/Events/DataSetChanged';
96
98
  export type { SelectionChangedInfo } from './Api/Events/SelectionChanged';
@@ -119,7 +121,7 @@ export type { AdaptablePredicate, AdaptablePredicateDef, ModuleScope, PredicateD
119
121
  export type { FDC3Context, InstrumentContext, InstrumentListContext, PositionContext, PortfolioContext, ContactContext, ContactListContext, CountryContext, OrganizationContext, AdaptableFDC3EventInfo, ContextType, CustomFDC3Context, } from './PredefinedConfig/Common/FDC3Context';
120
122
  export type { AdaptableScope } from './PredefinedConfig/Common/AdaptableScope';
121
123
  export type { AdaptableStyle } from './PredefinedConfig/Common/AdaptableStyle';
122
- export type { AdaptableIcon } from './PredefinedConfig/Common/AdaptableIcon';
124
+ export type { AdaptableIcon, AdaptableInternalIcon, AdaptableExternalIcon, AdaptableInternalIconName, } from './PredefinedConfig/Common/AdaptableIcon';
123
125
  export type { CellHighlightInfo } from './PredefinedConfig/Common/CellHighlightInfo';
124
126
  export type { RowHighlightInfo } from './PredefinedConfig/Common/RowHighlightInfo';
125
127
  export type { RowsHighlightInfo } from './PredefinedConfig/Common/RowsHighlightInfo';
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "12.0.0-canary.1";
1
+ declare const _default: "12.0.0-canary.4";
2
2
  export default _default;