@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
@@ -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",
@@ -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",
@@ -4158,13 +4281,8 @@ exports.ADAPTABLE_METAMODEL = {
4158
4281
  "kind": "TypeAlias",
4159
4282
  "description": "All available Country Intents"
4160
4283
  },
4161
- "CreatedRowFormInfo": {
4162
- "name": "CreatedRowFormInfo",
4163
- "kind": "Interface",
4164
- "description": "Info passed into RowFormSubmitted Event for Created Rows"
4165
- },
4166
- "CreateRowFormContext": {
4167
- "name": "CreateRowFormContext",
4284
+ "CreateActionRowContext": {
4285
+ "name": "CreateActionRowContext",
4168
4286
  "kind": "Interface",
4169
4287
  "description": "Context used in a Create Row Form",
4170
4288
  "properties": [
@@ -4184,6 +4302,11 @@ exports.ADAPTABLE_METAMODEL = {
4184
4302
  }
4185
4303
  ]
4186
4304
  },
4305
+ "CreatedActionRowInfo": {
4306
+ "name": "CreatedActionRowInfo",
4307
+ "kind": "Interface",
4308
+ "description": "Info passed into ActionRowSubmitted Event for Created Rows"
4309
+ },
4187
4310
  "CustomDestination": {
4188
4311
  "name": "CustomDestination",
4189
4312
  "kind": "Interface",
@@ -4979,13 +5102,6 @@ exports.ADAPTABLE_METAMODEL = {
4979
5102
  "kind": "Interface",
4980
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",
4981
5104
  "properties": [
4982
- {
4983
- "name": "actionColumnButton",
4984
- "kind": "unknown",
4985
- "description": "Action button definition. Can be used to implement undo functionality.",
4986
- "uiLabel": "Action Column Button",
4987
- "isOptional": true
4988
- },
4989
5105
  {
4990
5106
  "name": "activeByDefault",
4991
5107
  "kind": "boolean",
@@ -4995,6 +5111,13 @@ exports.ADAPTABLE_METAMODEL = {
4995
5111
  "gridInfo": "item",
4996
5112
  "defaultValue": "false"
4997
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
+ },
4998
5121
  {
4999
5122
  "name": "showDataChange",
5000
5123
  "kind": "unknown",
@@ -5192,15 +5315,35 @@ exports.ADAPTABLE_METAMODEL = {
5192
5315
  }
5193
5316
  ]
5194
5317
  },
5195
- "DeletedRowFormInfo": {
5196
- "name": "DeletedRowFormInfo",
5318
+ "DeletedActionRowInfo": {
5319
+ "name": "DeletedActionRowInfo",
5320
+ "kind": "Interface",
5321
+ "description": "Info passed into ActionRowSubmitted Event for Deleted Rows"
5322
+ },
5323
+ "EditActionRowContext": {
5324
+ "name": "EditActionRowContext",
5197
5325
  "kind": "Interface",
5198
- "description": "Info passed into RowFormSubmitted Event for Deleted Rows"
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
+ ]
5199
5342
  },
5200
- "EditedRowFormInfo": {
5201
- "name": "EditedRowFormInfo",
5343
+ "EditedActionRowInfo": {
5344
+ "name": "EditedActionRowInfo",
5202
5345
  "kind": "Interface",
5203
- "description": "Info passed into RowFormSubmitted Event for Edited Rows"
5346
+ "description": "Info passed into ActionRowSubmitted Event for Edited Rows"
5204
5347
  },
5205
5348
  "EditLookUpPermittedValues": {
5206
5349
  "name": "EditLookUpPermittedValues",
@@ -5228,14 +5371,6 @@ exports.ADAPTABLE_METAMODEL = {
5228
5371
  "uiLabel": "Is Cell Editable",
5229
5372
  "isOptional": true
5230
5373
  },
5231
- {
5232
- "name": "rowFormOptions",
5233
- "kind": "REFERENCE",
5234
- "description": "Options for editing (create/update/delete) row entries in the grid.",
5235
- "uiLabel": "Row Form Options",
5236
- "isOptional": true,
5237
- "reference": "RowFormOptions"
5238
- },
5239
5374
  {
5240
5375
  "name": "smartEditCustomOperations",
5241
5376
  "kind": "unknown",
@@ -5252,26 +5387,6 @@ exports.ADAPTABLE_METAMODEL = {
5252
5387
  }
5253
5388
  ]
5254
5389
  },
5255
- "EditRowFormContext": {
5256
- "name": "EditRowFormContext",
5257
- "kind": "Interface",
5258
- "description": "Context used in an Edit Row Form",
5259
- "properties": [
5260
- {
5261
- "name": "rowNode",
5262
- "kind": "REFERENCE",
5263
- "description": "The RowNode being edited",
5264
- "uiLabel": "Row Node",
5265
- "reference": "unknown"
5266
- },
5267
- {
5268
- "name": "type",
5269
- "kind": "unknown",
5270
- "description": "Type of the Context",
5271
- "uiLabel": "Type"
5272
- }
5273
- ]
5274
- },
5275
5390
  "EntitlementOptions": {
5276
5391
  "name": "EntitlementOptions",
5277
5392
  "kind": "Interface",
@@ -5346,7 +5461,7 @@ exports.ADAPTABLE_METAMODEL = {
5346
5461
  {
5347
5462
  "name": "off",
5348
5463
  "kind": "function",
5349
- "description": "Unsubscribe from RowFormSubmitted",
5464
+ "description": "Unsubscribe from ActionRowSubmitted",
5350
5465
  "uiLabel": "Off"
5351
5466
  },
5352
5467
  {
@@ -5454,7 +5569,7 @@ exports.ADAPTABLE_METAMODEL = {
5454
5569
  {
5455
5570
  "name": "on",
5456
5571
  "kind": "function",
5457
- "description": "Event fired when a Row Form is submitted",
5572
+ "description": "Event fired when an Action Row is submitted",
5458
5573
  "uiLabel": "On"
5459
5574
  },
5460
5575
  {
@@ -6040,7 +6155,7 @@ exports.ADAPTABLE_METAMODEL = {
6040
6155
  {
6041
6156
  "name": "getIconForIntent",
6042
6157
  "kind": "unknown",
6043
- "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;",
6044
6159
  "uiLabel": "Get Icon For Intent",
6045
6160
  "isOptional": true
6046
6161
  },
@@ -8058,24 +8173,6 @@ exports.ADAPTABLE_METAMODEL = {
8058
8173
  "description": "Loads grid with given data",
8059
8174
  "uiLabel": "Load Grid Data"
8060
8175
  },
8061
- {
8062
- "name": "openCloneRowForm",
8063
- "kind": "function",
8064
- "description": "Open create dialog for cloning an existing row",
8065
- "uiLabel": "Open Clone Row Form"
8066
- },
8067
- {
8068
- "name": "openCreateRowForm",
8069
- "kind": "function",
8070
- "description": "Open create dialog for a new row",
8071
- "uiLabel": "Open Create Row Form"
8072
- },
8073
- {
8074
- "name": "openEditRowForm",
8075
- "kind": "function",
8076
- "description": "Open edit dialog for row with the given primary key value",
8077
- "uiLabel": "Open Edit Row Form"
8078
- },
8079
8176
  {
8080
8177
  "name": "redrawGrid",
8081
8178
  "kind": "function",
@@ -10857,67 +10954,6 @@ exports.ADAPTABLE_METAMODEL = {
10857
10954
  }
10858
10955
  ]
10859
10956
  },
10860
- "RowFormContext": {
10861
- "name": "RowFormContext",
10862
- "kind": "TypeAlias",
10863
- "description": "Context passed into a Row Form - can be `CreateRowFormContext` or `EditRowFormContext`"
10864
- },
10865
- "RowFormOptions": {
10866
- "name": "RowFormOptions",
10867
- "kind": "Interface",
10868
- "description": "Options for editing (create/update/delete) row entries in the grid",
10869
- "properties": [
10870
- {
10871
- "name": "formButtons",
10872
- "kind": "unknown",
10873
- "description": "Custom form buttons provider. If provided, the custom implementation is responsible for firing the 'RowFormSubmitted' and/or invoking the 'onFormSubmit' callback (if necessary).",
10874
- "uiLabel": "Form Buttons",
10875
- "isOptional": true
10876
- },
10877
- {
10878
- "name": "formDescription",
10879
- "kind": "unknown",
10880
- "description": "Custom form description provider",
10881
- "uiLabel": "Form Description",
10882
- "isOptional": true,
10883
- "defaultValue": "undefined"
10884
- },
10885
- {
10886
- "name": "formFieldLabel",
10887
- "kind": "unknown",
10888
- "description": "Custom form field label provider",
10889
- "uiLabel": "Form Field Label",
10890
- "isOptional": true,
10891
- "defaultValue": "undefined"
10892
- },
10893
- {
10894
- "name": "formTitle",
10895
- "kind": "unknown",
10896
- "description": "Custom form title provider",
10897
- "uiLabel": "Form Title",
10898
- "isOptional": true,
10899
- "defaultValue": "'Create New Row'/'Edit Row'"
10900
- },
10901
- {
10902
- "name": "onFormSubmit",
10903
- "kind": "unknown",
10904
- "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!",
10905
- "uiLabel": "On Form Submit",
10906
- "isOptional": true,
10907
- "defaultValue": "undefined"
10908
- }
10909
- ]
10910
- },
10911
- "RowFormSubmittedInfo": {
10912
- "name": "RowFormSubmittedInfo",
10913
- "kind": "TypeAlias",
10914
- "description": "Info passed into RowFormSubmitted Event - can be `CreatedRowFormInfo` or `EditedRowFormInfo` or `DeletedRowFormInfo`"
10915
- },
10916
- "RowFormType": {
10917
- "name": "RowFormType",
10918
- "kind": "TypeAlias",
10919
- "description": "Type of Row Form - Created, Edited or Deleted"
10920
- },
10921
10957
  "RowInfo": {
10922
10958
  "name": "RowInfo",
10923
10959
  "kind": "Interface",
@@ -12639,12 +12675,6 @@ exports.ADAPTABLE_METAMODEL = {
12639
12675
  "description": "Retrieves any Object Tags (provided in User Interface Options)",
12640
12676
  "uiLabel": "Get Adaptable Object Tags"
12641
12677
  },
12642
- {
12643
- "name": "getAllActionColumn",
12644
- "kind": "function",
12645
- "description": "Retrieves any Action Columns (provided in User Interface Options)",
12646
- "uiLabel": "Get All Action Column"
12647
- },
12648
12678
  {
12649
12679
  "name": "getAllEditLookUpItems",
12650
12680
  "kind": "function",
@@ -12724,14 +12754,6 @@ exports.ADAPTABLE_METAMODEL = {
12724
12754
  "kind": "Interface",
12725
12755
  "description": "Options for managing the User Interface of AdapTable",
12726
12756
  "properties": [
12727
- {
12728
- "name": "actionOptions",
12729
- "kind": "REFERENCE",
12730
- "description": "Options for creating Action Columns and Buttons",
12731
- "uiLabel": "Action Options",
12732
- "isOptional": true,
12733
- "reference": "ActionOptions"
12734
- },
12735
12757
  {
12736
12758
  "name": "applicationIcon",
12737
12759
  "kind": "REFERENCE",
@@ -12888,10 +12910,11 @@ exports.ADAPTABLE_METAMODEL = {
12888
12910
  },
12889
12911
  {
12890
12912
  "name": "icon",
12891
- "kind": "string",
12913
+ "kind": "REFERENCE",
12892
12914
  "description": "Optional icon to display",
12893
12915
  "uiLabel": "Icon",
12894
- "isOptional": true
12916
+ "isOptional": true,
12917
+ "reference": "AdaptableIcon"
12895
12918
  },
12896
12919
  {
12897
12920
  "name": "label",
package/src/types.d.ts CHANGED
@@ -12,7 +12,8 @@ export type { FlashingCellOptions } from './AdaptableOptions/FlashingCellOptions
12
12
  export type { TOAST_POSITIONS, NotificationsOptions, } from './AdaptableOptions/NotificationsOptions';
13
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, ActionColumnContext, 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.3";
1
+ declare const _default: "12.0.0-canary.4";
2
2
  export default _default;
package/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '12.0.0-canary.3'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '12.0.0-canary.4'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
@@ -1,34 +0,0 @@
1
- import { BaseEventInfo } from './BaseEventInfo';
2
- import { AdaptableFormData } from '../../PredefinedConfig/Common/AdaptableForm';
3
- import { RowNode } from '@ag-grid-community/all-modules';
4
- /**
5
- * Info passed into RowFormSubmitted Event - can be `CreatedRowFormInfo` or `EditedRowFormInfo` or `DeletedRowFormInfo`
6
- */
7
- export declare type RowFormSubmittedInfo = CreatedRowFormInfo | EditedRowFormInfo | DeletedRowFormInfo;
8
- /**
9
- * Type of Row Form - Created, Edited or Deleted
10
- */
11
- export declare type RowFormType = 'rowCreated' | 'rowEdited' | 'rowDeleted';
12
- /**
13
- * Info passed into RowFormSubmitted Event for Created Rows
14
- */
15
- export interface CreatedRowFormInfo extends BaseEventInfo {
16
- type: 'rowCreated';
17
- formData: AdaptableFormData;
18
- clonedRowNode?: RowNode;
19
- }
20
- /**
21
- * Info passed into RowFormSubmitted Event for Edited Rows
22
- */
23
- export interface EditedRowFormInfo extends BaseEventInfo {
24
- type: 'rowEdited';
25
- formData: AdaptableFormData;
26
- rowNode: RowNode;
27
- }
28
- /**
29
- * Info passed into RowFormSubmitted Event for Deleted Rows
30
- */
31
- export interface DeletedRowFormInfo extends BaseEventInfo {
32
- type: 'rowDeleted';
33
- rowNode: RowNode;
34
- }
@@ -1,6 +0,0 @@
1
- import * as React from 'react';
2
- import { AdaptableIcon } from '../types';
3
- export declare const ApplicationIcon: React.FunctionComponent<{
4
- icon?: AdaptableIcon;
5
- className?: string;
6
- }>;
@@ -1,13 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ApplicationIcon = void 0;
4
- const tslib_1 = require("tslib");
5
- const React = tslib_1.__importStar(require("react"));
6
- exports.ApplicationIcon = ({ icon, className }) => {
7
- if (!icon) {
8
- return null;
9
- }
10
- let width = icon.style && icon.style.width ? icon.style.width : 'var(--ab-cmp-simple-button__width)';
11
- let height = icon.style && icon.style.height ? icon.style.height : 'var(--ab-cmp-simple-button__height)';
12
- return React.createElement("img", { className: className, src: icon.src, style: { width: width, height: height } });
13
- };