@adaptabletools/adaptable 11.2.4 → 12.0.0-canary.1

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 (278) hide show
  1. package/base.css +568 -273
  2. package/bundle.cjs.js +120 -120
  3. package/index.css +642 -270
  4. package/package.json +2 -2
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableInterfaces/IAdaptable.d.ts +6 -1
  8. package/src/AdaptableOptions/ActionOptions.d.ts +1 -0
  9. package/src/AdaptableOptions/{FormatColumnOptions.js → ActionOptions.js} +0 -0
  10. package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +5 -0
  11. package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -10
  12. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +5 -0
  13. package/src/AdaptableOptions/AlertOptions.d.ts +14 -1
  14. package/src/AdaptableOptions/ColumnOptions.d.ts +49 -0
  15. package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.js → ColumnOptions.js} +0 -0
  16. package/src/AdaptableOptions/DashboardOptions.d.ts +2 -7
  17. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +19 -0
  18. package/src/AdaptableOptions/EditOptions.d.ts +91 -4
  19. package/src/AdaptableOptions/EntitlementOptions.d.ts +7 -1
  20. package/src/AdaptableOptions/ExportOptions.d.ts +9 -8
  21. package/src/AdaptableOptions/FilterOptions.d.ts +6 -1
  22. package/src/AdaptableOptions/GeneralOptions.d.ts +25 -23
  23. package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.d.ts → MasterDetailPluginOptions.d.ts} +2 -4
  24. package/src/AdaptableOptions/{SmartEdit.js → MasterDetailPluginOptions.js} +0 -0
  25. package/src/AdaptableOptions/SettingsPanelOptions.d.ts +3 -6
  26. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -49
  27. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +95 -50
  28. package/src/Api/AdaptableApi.d.ts +6 -3
  29. package/src/Api/ColumnApi.d.ts +9 -4
  30. package/src/Api/ConditionalStyleApi.d.ts +10 -0
  31. package/src/Api/ConfigApi.d.ts +0 -12
  32. package/src/Api/DashboardApi.d.ts +6 -19
  33. package/src/Api/DataSetApi.d.ts +40 -0
  34. package/src/Api/{DataSourceApi.js → DataSetApi.js} +0 -0
  35. package/src/Api/EventApi.d.ts +29 -1
  36. package/src/Api/Events/DataSetChanged.d.ts +5 -0
  37. package/src/{PredefinedConfig/DataSourceState.js → Api/Events/DataSetChanged.js} +0 -0
  38. package/src/Api/Events/RowFormSubmitted.d.ts +19 -0
  39. package/src/{PredefinedConfig/FilterState.js → Api/Events/RowFormSubmitted.js} +0 -0
  40. package/src/Api/Events/SearchChanged.d.ts +4 -5
  41. package/src/Api/ExportApi.d.ts +2 -2
  42. package/src/Api/FilterApi.d.ts +28 -36
  43. package/src/Api/FormatColumnApi.d.ts +6 -0
  44. package/src/Api/GridApi.d.ts +15 -1
  45. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
  46. package/src/Api/Implementation/AdaptableApiImpl.js +3 -3
  47. package/src/Api/Implementation/AlertApiImpl.js +5 -1
  48. package/src/Api/Implementation/ApiBase.d.ts +3 -0
  49. package/src/Api/Implementation/ApiBase.js +6 -0
  50. package/src/Api/Implementation/ColumnApiImpl.d.ts +4 -4
  51. package/src/Api/Implementation/ColumnApiImpl.js +17 -16
  52. package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +2 -0
  53. package/src/Api/Implementation/ConditionalStyleApiImpl.js +8 -0
  54. package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -4
  55. package/src/Api/Implementation/ConfigApiImpl.js +2 -24
  56. package/src/Api/Implementation/DashboardApiImpl.d.ts +3 -6
  57. package/src/Api/Implementation/DashboardApiImpl.js +5 -29
  58. package/src/Api/Implementation/DataSetApiImpl.d.ts +12 -0
  59. package/src/Api/Implementation/DataSetApiImpl.js +42 -0
  60. package/src/Api/Implementation/EventApiImpl.js +1 -0
  61. package/src/Api/Implementation/ExportApiImpl.d.ts +2 -2
  62. package/src/Api/Implementation/FilterApiImpl.d.ts +11 -11
  63. package/src/Api/Implementation/FilterApiImpl.js +59 -72
  64. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +1 -0
  65. package/src/Api/Implementation/FormatColumnApiImpl.js +7 -2
  66. package/src/Api/Implementation/GridApiImpl.d.ts +4 -1
  67. package/src/Api/Implementation/GridApiImpl.js +45 -1
  68. package/src/Api/Implementation/InternalApiImpl.d.ts +7 -2
  69. package/src/Api/Implementation/InternalApiImpl.js +51 -10
  70. package/src/Api/Implementation/LayoutApiImpl.d.ts +3 -0
  71. package/src/Api/Implementation/LayoutApiImpl.js +20 -0
  72. package/src/Api/Implementation/PredicateApiImpl.d.ts +2 -0
  73. package/src/Api/Implementation/PredicateApiImpl.js +19 -1
  74. package/src/Api/Implementation/SmartEditApiImpl.d.ts +5 -2
  75. package/src/Api/Implementation/SmartEditApiImpl.js +9 -0
  76. package/src/Api/Implementation/TeamSharingApiImpl.d.ts +5 -3
  77. package/src/Api/Implementation/TeamSharingApiImpl.js +28 -10
  78. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +1 -1
  79. package/src/Api/Implementation/UserInterfaceApiImpl.js +7 -25
  80. package/src/Api/InternalApi.d.ts +6 -2
  81. package/src/Api/LayoutApi.d.ts +16 -0
  82. package/src/Api/PredicateApi.d.ts +7 -0
  83. package/src/Api/SmartEditApi.d.ts +14 -3
  84. package/src/Api/TeamSharingApi.d.ts +18 -5
  85. package/src/Api/UserInterfaceApi.d.ts +4 -4
  86. package/src/PredefinedConfig/AdaptableState.d.ts +0 -4
  87. package/src/PredefinedConfig/CalculatedColumnState.d.ts +5 -0
  88. package/src/PredefinedConfig/Common/AdaptableButton.d.ts +3 -3
  89. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +5 -1
  90. package/src/PredefinedConfig/Common/AdaptableForm.d.ts +3 -2
  91. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +1 -3
  92. package/src/PredefinedConfig/Common/AdaptableObject.d.ts +2 -11
  93. package/src/PredefinedConfig/Common/AdaptablePredicate.js +18 -1
  94. package/src/PredefinedConfig/Common/BaseContext.d.ts +1 -1
  95. package/src/PredefinedConfig/{FilterState.d.ts → Common/ColumnFilter.d.ts} +2 -33
  96. package/src/PredefinedConfig/Common/ColumnFilter.js +2 -0
  97. package/src/PredefinedConfig/Common/Enums.d.ts +2 -2
  98. package/src/PredefinedConfig/Common/Enums.js +1 -1
  99. package/src/PredefinedConfig/Common/FormContext.d.ts +8 -0
  100. package/src/PredefinedConfig/Common/FormContext.js +2 -0
  101. package/src/PredefinedConfig/Common/Types.d.ts +6 -5
  102. package/src/PredefinedConfig/Common/Types.js +2 -3
  103. package/src/PredefinedConfig/LayoutState.d.ts +5 -0
  104. package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -10
  105. package/src/PredefinedConfig/StatusBarState.d.ts +1 -2
  106. package/src/PredefinedConfig/SystemState.d.ts +4 -2
  107. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +47 -0
  108. package/src/Redux/ActionsReducers/LayoutRedux.js +134 -1
  109. package/src/Redux/ActionsReducers/PopupRedux.d.ts +3 -2
  110. package/src/Redux/ActionsReducers/SystemRedux.d.ts +23 -1
  111. package/src/Redux/ActionsReducers/SystemRedux.js +39 -1
  112. package/src/Redux/Store/AdaptableStore.js +37 -39
  113. package/src/Strategy/AdaptableModuleBase.js +1 -2
  114. package/src/Strategy/AlertModule.d.ts +11 -0
  115. package/src/Strategy/AlertModule.js +14 -0
  116. package/src/Strategy/BulkUpdateModule.js +3 -4
  117. package/src/Strategy/CellSummaryModule.d.ts +3 -0
  118. package/src/Strategy/CellSummaryModule.js +29 -16
  119. package/src/Strategy/DataSetModule.d.ts +25 -0
  120. package/src/Strategy/DataSetModule.js +65 -0
  121. package/src/Strategy/ExportModule.js +6 -1
  122. package/src/Strategy/FilterModule.d.ts +7 -11
  123. package/src/Strategy/FilterModule.js +26 -20
  124. package/src/Strategy/FlashingCellModule.d.ts +1 -1
  125. package/src/Strategy/FlashingCellModule.js +2 -2
  126. package/src/Strategy/Interface/IModule.d.ts +3 -1
  127. package/src/Strategy/LayoutModule.js +25 -2
  128. package/src/Strategy/PlusMinusModule.js +1 -4
  129. package/src/Strategy/SmartEditModule.d.ts +1 -1
  130. package/src/Strategy/SmartEditModule.js +7 -8
  131. package/src/Strategy/StatusBarModule.js +1 -3
  132. package/src/Strategy/TeamSharingModule.js +1 -1
  133. package/src/Strategy/ToolPanelModule.js +1 -4
  134. package/src/Utilities/Constants/GeneralConstants.d.ts +8 -2
  135. package/src/Utilities/Constants/GeneralConstants.js +8 -2
  136. package/src/Utilities/Constants/ModuleConstants.d.ts +1 -1
  137. package/src/Utilities/Constants/ModuleConstants.js +2 -2
  138. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +24 -13
  139. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
  140. package/src/Utilities/Helpers/AdaptableHelper.js +4 -1
  141. package/src/Utilities/ObjectFactory.d.ts +3 -6
  142. package/src/Utilities/ObjectFactory.js +3 -7
  143. package/src/Utilities/Services/CalculatedColumnExpressionService.js +6 -7
  144. package/src/Utilities/Services/EntitlementService.js +7 -1
  145. package/src/Utilities/Services/Interface/IRowEditService.d.ts +8 -0
  146. package/src/Utilities/Services/Interface/IRowEditService.js +2 -0
  147. package/src/Utilities/Services/ModuleService.js +1 -1
  148. package/src/Utilities/Services/ReportService.js +2 -3
  149. package/src/Utilities/Services/RowEditService.d.ts +26 -0
  150. package/src/Utilities/Services/RowEditService.js +197 -0
  151. package/src/Utilities/Services/TeamSharingService.js +4 -4
  152. package/src/View/AdaptablePopover/index.d.ts +1 -0
  153. package/src/View/AdaptablePopover/index.js +5 -6
  154. package/src/View/AdaptableView.js +1 -1
  155. package/src/View/AdaptableViewFactory.js +2 -2
  156. package/src/View/Alert/ActiveAlertsPanel.d.ts +2 -0
  157. package/src/View/Alert/ActiveAlertsPanel.js +15 -0
  158. package/src/View/Alert/AlertStatusSubPanel.js +3 -8
  159. package/src/View/Alert/AlertViewPanel.js +2 -2
  160. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +1 -1
  161. package/src/View/BulkUpdate/BulkUpdatePopup.js +2 -3
  162. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +1 -1
  163. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +2 -3
  164. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +13 -7
  165. package/src/View/CellSummary/CellSummaryDetails.js +4 -4
  166. package/src/View/CellSummary/CellSummaryPopover.d.ts +2 -4
  167. package/src/View/CellSummary/CellSummaryPopover.js +3 -6
  168. package/src/View/CellSummary/CellSummaryPopup.js +8 -0
  169. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +1 -1
  170. package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -2
  171. package/src/View/CellSummary/CellSummaryViewPanel.js +1 -1
  172. package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +18 -8
  173. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -2
  174. package/src/View/Components/ExternalRenderer.d.ts +3 -6
  175. package/src/View/Components/ExternalRenderer.js +5 -5
  176. package/src/View/Components/FilterForm/FilterForm.d.ts +1 -1
  177. package/src/View/Components/FilterForm/FilterForm.js +10 -8
  178. package/src/View/Components/FilterForm/QuickFilterForm.d.ts +1 -1
  179. package/src/View/Components/FilterForm/QuickFilterForm.js +5 -4
  180. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  181. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +2 -0
  182. package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +0 -2
  183. package/src/View/Components/Popups/AdaptablePopupAlert.js +13 -11
  184. package/src/View/Components/Popups/AdaptableToaster.js +29 -9
  185. package/src/View/Components/Popups/FormPopups/FormPopups.js +2 -2
  186. package/src/View/Components/PreviewResultsPanel.js +3 -3
  187. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -2
  188. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -9
  189. package/src/View/Components/WizardSummaryPage.js +2 -2
  190. package/src/View/Dashboard/CustomDashboardButton.d.ts +11 -0
  191. package/src/View/Dashboard/CustomDashboardButton.js +47 -0
  192. package/src/View/Dashboard/CustomToolbarWrapper.d.ts +1 -0
  193. package/src/View/Dashboard/CustomToolbarWrapper.js +30 -11
  194. package/src/View/Dashboard/Dashboard.d.ts +1 -0
  195. package/src/View/Dashboard/Dashboard.js +8 -34
  196. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +19 -36
  197. package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +3 -0
  198. package/src/View/DataChangeHistory/buildActionColumnButton.js +70 -0
  199. package/src/View/DataSet/DataSetSelector.d.ts +7 -0
  200. package/src/View/DataSet/DataSetSelector.js +18 -0
  201. package/src/View/DataSet/DataSetStatusPanelPopover.d.ts +2 -0
  202. package/src/View/DataSet/DataSetStatusPanelPopover.js +19 -0
  203. package/src/View/DataSet/DataSetViewPanel.d.ts +19 -0
  204. package/src/View/DataSet/DataSetViewPanel.js +58 -0
  205. package/src/View/Filter/ActiveFiltersPanel.js +1 -1
  206. package/src/View/Filter/FilterSummary.d.ts +5 -5
  207. package/src/View/Filter/FilterSummary.js +5 -4
  208. package/src/View/Filter/FilterViewPanel.d.ts +4 -4
  209. package/src/View/Filter/FilterViewPanel.js +10 -13
  210. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +5 -7
  211. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +4 -5
  212. package/src/View/GridInfo/ColumnInfoComponent.js +1 -1
  213. package/src/View/GridInfo/GridInfoPopup.js +1 -1
  214. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +6 -24
  215. package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
  216. package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +2 -1
  217. package/src/View/SmartEdit/SmartEditPopup.d.ts +1 -1
  218. package/src/View/SmartEdit/SmartEditPopup.js +3 -4
  219. package/src/View/SmartEdit/SmartEditViewPanel.d.ts +1 -1
  220. package/src/View/SmartEdit/SmartEditViewPanel.js +3 -4
  221. package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
  222. package/src/View/StatusBar/AdaptableStatusBar.js +1 -1
  223. package/src/View/StatusBar/StatusBarPanel.d.ts +1 -0
  224. package/src/View/StatusBar/StatusBarPanel.js +5 -4
  225. package/src/View/Theme/ThemeStatusPanelPopover.js +5 -25
  226. package/src/View/UIHelper.d.ts +4 -4
  227. package/src/View/UIHelper.js +10 -10
  228. package/src/agGrid/ActionColumnRenderer.d.ts +6 -1
  229. package/src/agGrid/ActionColumnRenderer.js +9 -6
  230. package/src/agGrid/Adaptable.d.ts +7 -2
  231. package/src/agGrid/Adaptable.js +213 -69
  232. package/src/agGrid/FilterWrapper.js +1 -1
  233. package/src/agGrid/agGridHelper.d.ts +7 -8
  234. package/src/agGrid/agGridHelper.js +68 -86
  235. package/src/agGrid/agGridMenuHelper.js +4 -1
  236. package/src/agGrid/rowEditIcons.d.ts +5 -0
  237. package/src/agGrid/rowEditIcons.js +10 -0
  238. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +9 -18
  239. package/src/components/Dashboard/DashboardToolbar.js +2 -2
  240. package/src/components/Datepicker/index.js +19 -18
  241. package/src/components/InfiniteTable/index.js +1 -0
  242. package/src/components/List/GridList/index.js +1 -1
  243. package/src/components/SelectList.d.ts +10 -0
  244. package/src/components/SelectList.js +9 -0
  245. package/src/components/WindowModal/WindowModal.d.ts +2 -0
  246. package/src/components/WindowModal/WindowModal.js +1 -1
  247. package/src/components/icons/{data-source.d.ts → add-row.d.ts} +0 -0
  248. package/src/components/icons/add-row.js +7 -0
  249. package/src/components/icons/data-set.d.ts +3 -0
  250. package/src/components/icons/{data-source.js → data-set.js} +0 -0
  251. package/src/components/icons/index.js +4 -2
  252. package/src/metamodel/adaptable.metamodel.d.ts +226 -69
  253. package/src/metamodel/adaptable.metamodel.js +532 -311
  254. package/src/types.d.ts +18 -13
  255. package/version.d.ts +1 -1
  256. package/version.js +1 -1
  257. package/src/AdaptableOptions/FormatColumnOptions.d.ts +0 -9
  258. package/src/AdaptableOptions/SmartEdit.d.ts +0 -34
  259. package/src/Api/DataSourceApi.d.ts +0 -58
  260. package/src/Api/Implementation/DataSourceApiImpl.d.ts +0 -15
  261. package/src/Api/Implementation/DataSourceApiImpl.js +0 -51
  262. package/src/PredefinedConfig/DataSourceState.d.ts +0 -34
  263. package/src/Redux/ActionsReducers/DataSourceRedux.d.ts +0 -42
  264. package/src/Redux/ActionsReducers/DataSourceRedux.js +0 -76
  265. package/src/Redux/ActionsReducers/FilterRedux.d.ts +0 -70
  266. package/src/Redux/ActionsReducers/FilterRedux.js +0 -126
  267. package/src/Strategy/DataSourceModule.d.ts +0 -20
  268. package/src/Strategy/DataSourceModule.js +0 -56
  269. package/src/View/Components/Forms/AdaptableForm.d.ts +0 -6
  270. package/src/View/Components/Forms/AdaptableForm.js +0 -21
  271. package/src/View/DataSource/DataSourceViewPanel.d.ts +0 -19
  272. package/src/View/DataSource/DataSourceViewPanel.js +0 -69
  273. package/src/View/DataSource/Wizard/DataSourceSettingsSummary.d.ts +0 -2
  274. package/src/View/DataSource/Wizard/DataSourceSettingsSummary.js +0 -17
  275. package/src/View/DataSource/Wizard/DataSourceSettingsWizard.d.ts +0 -8
  276. package/src/View/DataSource/Wizard/DataSourceSettingsWizard.js +0 -42
  277. package/src/View/DataSource/Wizard/DataSourceWizard.d.ts +0 -8
  278. package/src/View/DataSource/Wizard/DataSourceWizard.js +0 -53
@@ -118,6 +118,52 @@ exports.ADAPTABLE_METAMODEL = {
118
118
  "kind": "TypeAlias",
119
119
  "description": "Handles a Form Button Action"
120
120
  },
121
+ "ActionOptions": {
122
+ "name": "ActionOptions",
123
+ "kind": "Interface",
124
+ "description": "Options related to Action Columns and Buttons in Adaptable.",
125
+ "properties": [
126
+ {
127
+ "name": "actionColumns",
128
+ "kind": "unknown",
129
+ "description": "Columns which contain an AdapTable Button - used for performing Actions",
130
+ "uiLabel": "Action Columns",
131
+ "isOptional": true
132
+ },
133
+ {
134
+ "name": "actionRowButtons",
135
+ "kind": "unknown",
136
+ "description": "Action buttons to display for each row.",
137
+ "uiLabel": "Action Row Buttons",
138
+ "isOptional": true,
139
+ "defaultValue": "undefined"
140
+ },
141
+ {
142
+ "name": "actionRowButtonsPosition",
143
+ "kind": "unknown",
144
+ "description": "Position of supplied Action Buttons",
145
+ "uiLabel": "Action Row Buttons Position",
146
+ "isOptional": true,
147
+ "defaultValue": "'pinnedLeft'"
148
+ },
149
+ {
150
+ "name": "autoHandleActionRowButtons",
151
+ "kind": "boolean",
152
+ "description": "If set to true, the Action Row Buttons will be handled by AdapTable and the grid data model will be automatically updated with the created/edited/deleted rows",
153
+ "uiLabel": "Auto Handle Action Row Buttons",
154
+ "isOptional": true,
155
+ "defaultValue": "false"
156
+ },
157
+ {
158
+ "name": "setPrimaryKeyValue",
159
+ "kind": "unknown",
160
+ "description": "Function which is called when auto-handling the 'create' Action Row Button. The returned row value should have a valid(unique) primary key value.",
161
+ "uiLabel": "Set Primary Key Value",
162
+ "isOptional": true,
163
+ "defaultValue": "undefined"
164
+ }
165
+ ]
166
+ },
121
167
  "AdaptableAlert": {
122
168
  "name": "AdaptableAlert",
123
169
  "kind": "TypeAlias",
@@ -250,11 +296,11 @@ exports.ADAPTABLE_METAMODEL = {
250
296
  "reference": "DataChangeHistoryApi"
251
297
  },
252
298
  {
253
- "name": "dataSourceApi",
299
+ "name": "dataSetApi",
254
300
  "kind": "REFERENCE",
255
- "description": "Provides access to the Data Source Module",
256
- "uiLabel": "Data Source Api",
257
- "reference": "DataSourceApi"
301
+ "description": "Provides access to Data Sets",
302
+ "uiLabel": "Data Set Api",
303
+ "reference": "DataSetApi"
258
304
  },
259
305
  {
260
306
  "name": "destroy",
@@ -317,6 +363,12 @@ exports.ADAPTABLE_METAMODEL = {
317
363
  "description": "Cleanup method that only cleans up this api instance (clears event listeners and sets every property to null), but does not destroy the Adaptable instance.",
318
364
  "uiLabel": "Internal Destroy Self"
319
365
  },
366
+ {
367
+ "name": "isDestroyed",
368
+ "kind": "unknown",
369
+ "description": "Whether the Adaptable instance has been destroyed",
370
+ "uiLabel": "Is Destroyed"
371
+ },
320
372
  {
321
373
  "name": "layoutApi",
322
374
  "kind": "REFERENCE",
@@ -453,7 +505,7 @@ exports.ADAPTABLE_METAMODEL = {
453
505
  {
454
506
  "name": "buttonStyle",
455
507
  "kind": "unknown",
456
- "description": "Style for Button - can be object or function thats provides a `Style` object",
508
+ "description": "Style for Button - can be object or function that provides a `ButtonStyle` object",
457
509
  "uiLabel": "Button Style",
458
510
  "isOptional": true
459
511
  },
@@ -473,11 +525,10 @@ exports.ADAPTABLE_METAMODEL = {
473
525
  },
474
526
  {
475
527
  "name": "icon",
476
- "kind": "REFERENCE",
477
- "description": "Icon to display, requires string for URL, other props are optional",
528
+ "kind": "unknown",
529
+ "description": "Icon for Button - can be object or function that provides a `AdaptableIcon` object",
478
530
  "uiLabel": "Icon",
479
- "isOptional": true,
480
- "reference": "AdaptableIcon"
531
+ "isOptional": true
481
532
  },
482
533
  {
483
534
  "name": "label",
@@ -680,9 +731,10 @@ exports.ADAPTABLE_METAMODEL = {
680
731
  },
681
732
  {
682
733
  "name": "dataType",
683
- "kind": "unknown",
734
+ "kind": "REFERENCE",
684
735
  "description": "DataType of the column",
685
- "uiLabel": "Data Type"
736
+ "uiLabel": "Data Type",
737
+ "reference": "AdaptableColumnDataType"
686
738
  },
687
739
  {
688
740
  "name": "friendlyName",
@@ -692,6 +744,11 @@ exports.ADAPTABLE_METAMODEL = {
692
744
  }
693
745
  ]
694
746
  },
747
+ "AdaptableColumnDataType": {
748
+ "name": "AdaptableColumnDataType",
749
+ "kind": "TypeAlias",
750
+ "description": "Type of data stored in an Adaptable Column"
751
+ },
695
752
  "AdaptableComparerFunction": {
696
753
  "name": "AdaptableComparerFunction",
697
754
  "kind": "TypeAlias",
@@ -848,14 +905,15 @@ exports.ADAPTABLE_METAMODEL = {
848
905
  },
849
906
  {
850
907
  "name": "fieldType",
851
- "kind": "unknown",
908
+ "kind": "REFERENCE",
852
909
  "description": "Field Type: text, date, number, checkbox, select, textOutput",
853
- "uiLabel": "Field Type"
910
+ "uiLabel": "Field Type",
911
+ "reference": "unknown"
854
912
  },
855
913
  {
856
914
  "name": "label",
857
915
  "kind": "string",
858
- "description": "Label to display in in the Field",
916
+ "description": "Label to display in the Field",
859
917
  "uiLabel": "Label"
860
918
  },
861
919
  {
@@ -1009,7 +1067,7 @@ exports.ADAPTABLE_METAMODEL = {
1009
1067
  "AdaptableObjectTag": {
1010
1068
  "name": "AdaptableObjectTag",
1011
1069
  "kind": "TypeAlias",
1012
- "description": "Object Tag - defined as a label and a value"
1070
+ "description": "AdaptableObjectTag Object Tague - currently supporting only plain string values, but open for future extensions, if ever needed."
1013
1071
  },
1014
1072
  "AdaptableOptions": {
1015
1073
  "name": "AdaptableOptions",
@@ -1060,6 +1118,14 @@ exports.ADAPTABLE_METAMODEL = {
1060
1118
  "gridInfo": "item",
1061
1119
  "defaultValue": "false"
1062
1120
  },
1121
+ {
1122
+ "name": "columnOptions",
1123
+ "kind": "REFERENCE",
1124
+ "description": "Options for managing Columns",
1125
+ "uiLabel": "Column Options",
1126
+ "isOptional": true,
1127
+ "reference": "ColumnOptions"
1128
+ },
1063
1129
  {
1064
1130
  "name": "containerOptions",
1065
1131
  "kind": "REFERENCE",
@@ -1068,13 +1134,6 @@ exports.ADAPTABLE_METAMODEL = {
1068
1134
  "isOptional": true,
1069
1135
  "reference": "ContainerOptions"
1070
1136
  },
1071
- {
1072
- "name": "customPredicateDefs",
1073
- "kind": "unknown",
1074
- "description": "Predicate definitions provided by developers at Design-Time",
1075
- "uiLabel": "Custom Predicate Defs",
1076
- "isOptional": true
1077
- },
1078
1137
  {
1079
1138
  "name": "dashboardOptions",
1080
1139
  "kind": "REFERENCE",
@@ -1138,15 +1197,6 @@ exports.ADAPTABLE_METAMODEL = {
1138
1197
  "gridInfo": "container",
1139
1198
  "reference": "FlashingCellOptions"
1140
1199
  },
1141
- {
1142
- "name": "formatColumnOptions",
1143
- "kind": "REFERENCE",
1144
- "description": "Options for managing format columns",
1145
- "uiLabel": "Format Column Options",
1146
- "isOptional": true,
1147
- "gridInfo": "container",
1148
- "reference": "unknown"
1149
- },
1150
1200
  {
1151
1201
  "name": "generalOptions",
1152
1202
  "kind": "REFERENCE",
@@ -1410,6 +1460,13 @@ exports.ADAPTABLE_METAMODEL = {
1410
1460
  "gridInfo": "item",
1411
1461
  "defaultValue": "false"
1412
1462
  },
1463
+ {
1464
+ "name": "customPredicateDefs",
1465
+ "kind": "unknown",
1466
+ "description": "Definitions for Custom provided Predicates",
1467
+ "uiLabel": "Custom Predicate Defs",
1468
+ "isOptional": true
1469
+ },
1413
1470
  {
1414
1471
  "name": "expressionOptions",
1415
1472
  "kind": "REFERENCE",
@@ -1486,10 +1543,10 @@ exports.ADAPTABLE_METAMODEL = {
1486
1543
  "uiLabel": "Current Query"
1487
1544
  },
1488
1545
  {
1489
- "name": "dataSource",
1546
+ "name": "dataSet",
1490
1547
  "kind": "unknown",
1491
- "description": "Current Data Source (if one selected)",
1492
- "uiLabel": "Data Source"
1548
+ "description": "Current DataSet (if one selected)",
1549
+ "uiLabel": "Data Set"
1493
1550
  },
1494
1551
  {
1495
1552
  "name": "queryAST",
@@ -1997,6 +2054,28 @@ exports.ADAPTABLE_METAMODEL = {
1997
2054
  "kind": "TypeAlias",
1998
2055
  "description": "Form to show in an Alert"
1999
2056
  },
2057
+ "AlertMessageContext": {
2058
+ "name": "AlertMessageContext",
2059
+ "kind": "Interface",
2060
+ "description": "Context used for creating bespoke Alert messages",
2061
+ "properties": [
2062
+ {
2063
+ "name": "alertDefinition",
2064
+ "kind": "REFERENCE",
2065
+ "description": "Current Alert Definition",
2066
+ "uiLabel": "Alert Definition",
2067
+ "reference": "AlertDefinition"
2068
+ },
2069
+ {
2070
+ "name": "cellDataChangedInfo",
2071
+ "kind": "REFERENCE",
2072
+ "description": "Data change that might have triggered the Alert",
2073
+ "uiLabel": "Cell Data Changed Info",
2074
+ "isOptional": true,
2075
+ "reference": "CellDataChangedInfo"
2076
+ }
2077
+ ]
2078
+ },
2000
2079
  "AlertOptions": {
2001
2080
  "name": "AlertOptions",
2002
2081
  "kind": "Interface",
@@ -2287,7 +2366,7 @@ exports.ADAPTABLE_METAMODEL = {
2287
2366
  "BaseContext": {
2288
2367
  "name": "BaseContext",
2289
2368
  "kind": "Interface",
2290
- "description": "Base Context object used in many functions provided by AdapTable",
2369
+ "description": "Base Context used in many functions provided by developers and invoked as needed by AdapTable",
2291
2370
  "properties": [
2292
2371
  {
2293
2372
  "name": "adaptableApi",
@@ -2497,6 +2576,14 @@ exports.ADAPTABLE_METAMODEL = {
2497
2576
  "uiLabel": "Data Type",
2498
2577
  "isOptional": true
2499
2578
  },
2579
+ {
2580
+ "name": "ExternallyEvaluatedExpression",
2581
+ "kind": "boolean",
2582
+ "description": "If true, the Calculated Column Expression will NOT be evaluated and the value is loaded from the row data property with the same name as the ColumnId",
2583
+ "uiLabel": "Externally Evaluated Expression",
2584
+ "isOptional": true,
2585
+ "defaultValue": "false"
2586
+ },
2500
2587
  {
2501
2588
  "name": "ShowToolTip",
2502
2589
  "kind": "boolean",
@@ -3058,6 +3145,12 @@ exports.ADAPTABLE_METAMODEL = {
3058
3145
  "description": "Is Column an Action Column",
3059
3146
  "uiLabel": "Is Action Column"
3060
3147
  },
3148
+ {
3149
+ "name": "isActionRowButtonColumn",
3150
+ "kind": "function",
3151
+ "description": "Checks if a column is a ActionRowButton column (see UserInterfaceOptions.ActionOptions)",
3152
+ "uiLabel": "Is Action Row Button Column"
3153
+ },
3061
3154
  {
3062
3155
  "name": "isAutoPivotColumn",
3063
3156
  "kind": "function",
@@ -3195,6 +3288,26 @@ exports.ADAPTABLE_METAMODEL = {
3195
3288
  }
3196
3289
  ]
3197
3290
  },
3291
+ "ColumnFriendlyNameContext": {
3292
+ "name": "ColumnFriendlyNameContext",
3293
+ "kind": "Interface",
3294
+ "description": "Context used when setting a Column Friendly Name",
3295
+ "properties": [
3296
+ {
3297
+ "name": "agColumn",
3298
+ "kind": "REFERENCE",
3299
+ "description": "AG Grid ColDef for the Column",
3300
+ "uiLabel": "Ag Column",
3301
+ "reference": "unknown"
3302
+ },
3303
+ {
3304
+ "name": "colId",
3305
+ "kind": "string",
3306
+ "description": "Id of the Column",
3307
+ "uiLabel": "Col Id"
3308
+ }
3309
+ ]
3310
+ },
3198
3311
  "ColumnMenuContext": {
3199
3312
  "name": "ColumnMenuContext",
3200
3313
  "kind": "Interface",
@@ -3222,6 +3335,54 @@ exports.ADAPTABLE_METAMODEL = {
3222
3335
  }
3223
3336
  ]
3224
3337
  },
3338
+ "ColumnOptions": {
3339
+ "name": "ColumnOptions",
3340
+ "kind": "Interface",
3341
+ "description": "Options related to managing Columns in Adaptable.",
3342
+ "properties": [
3343
+ {
3344
+ "name": "autoOrderGroupedColumns",
3345
+ "kind": "boolean",
3346
+ "description": "Order Grouped Column automatically, deriving from Adaptable State if available (CustomSort or Layout ColumnSort)",
3347
+ "uiLabel": "Auto Order Grouped Columns",
3348
+ "isOptional": true,
3349
+ "gridInfo": "item",
3350
+ "defaultValue": "true"
3351
+ },
3352
+ {
3353
+ "name": "columnFriendlyName",
3354
+ "kind": "unknown",
3355
+ "description": "Provide an alternative Friendly Name for a Column",
3356
+ "uiLabel": "Column Friendly Name",
3357
+ "isOptional": true
3358
+ },
3359
+ {
3360
+ "name": "columnTypes",
3361
+ "kind": "unknown",
3362
+ "description": "Optional list of Column Types - used primarily for Special Columns",
3363
+ "uiLabel": "Column Types",
3364
+ "isOptional": true
3365
+ },
3366
+ {
3367
+ "name": "hideColumnWhenGrouped",
3368
+ "kind": "boolean",
3369
+ "description": "Automatically removes a column from the grid when it becomes Row Grouped",
3370
+ "uiLabel": "Hide Column When Grouped",
3371
+ "isOptional": true,
3372
+ "gridInfo": "item",
3373
+ "defaultValue": "false"
3374
+ },
3375
+ {
3376
+ "name": "showMissingColumnsWarning",
3377
+ "kind": "boolean",
3378
+ "description": "Show warning if AdapTable cannot find a column",
3379
+ "uiLabel": "Show Missing Columns Warning",
3380
+ "isOptional": true,
3381
+ "gridInfo": "item",
3382
+ "defaultValue": "true"
3383
+ }
3384
+ ]
3385
+ },
3225
3386
  "ColumnSort": {
3226
3387
  "name": "ColumnSort",
3227
3388
  "kind": "Interface",
@@ -3339,6 +3500,18 @@ exports.ADAPTABLE_METAMODEL = {
3339
3500
  "description": "Adds new Conditional Style to State",
3340
3501
  "uiLabel": "Add Conditional Style"
3341
3502
  },
3503
+ {
3504
+ "name": "deleteConditionalStyle",
3505
+ "kind": "function",
3506
+ "description": "Deletes a Conditional Style",
3507
+ "uiLabel": "Delete Conditional Style"
3508
+ },
3509
+ {
3510
+ "name": "deleteConditionalStyles",
3511
+ "kind": "function",
3512
+ "description": "Deletes Conditional Styles",
3513
+ "uiLabel": "Delete Conditional Styles"
3514
+ },
3342
3515
  {
3343
3516
  "name": "editConditionalStyle",
3344
3517
  "kind": "function",
@@ -3545,12 +3718,6 @@ exports.ADAPTABLE_METAMODEL = {
3545
3718
  "description": "Returns Dashboard section of Adaptable State",
3546
3719
  "uiLabel": "Get Dashboard State"
3547
3720
  },
3548
- {
3549
- "name": "getDataSourceState",
3550
- "kind": "function",
3551
- "description": "Returns Data Source section of Adaptable State",
3552
- "uiLabel": "Get Data Source State"
3553
- },
3554
3721
  {
3555
3722
  "name": "getDescriptionForModule",
3556
3723
  "kind": "function",
@@ -3563,12 +3730,6 @@ exports.ADAPTABLE_METAMODEL = {
3563
3730
  "description": "Returns Export section of Adaptable State",
3564
3731
  "uiLabel": "Get Export State"
3565
3732
  },
3566
- {
3567
- "name": "getFilterState",
3568
- "kind": "function",
3569
- "description": "Returns Filter section of Adaptable State",
3570
- "uiLabel": "Get Filter State"
3571
- },
3572
3733
  {
3573
3734
  "name": "getFormatColumnState",
3574
3735
  "kind": "function",
@@ -4373,18 +4534,6 @@ exports.ADAPTABLE_METAMODEL = {
4373
4534
  "kind": "Interface",
4374
4535
  "description": "Functions relating to the AdapTable Dashboard.",
4375
4536
  "properties": [
4376
- {
4377
- "name": "addCustomToolbarButtons",
4378
- "kind": "function",
4379
- "description": "Adds Toolbar Buttons to current collection in Custom Toolbar",
4380
- "uiLabel": "Add Custom Toolbar Buttons"
4381
- },
4382
- {
4383
- "name": "clearCustomToolbarButtons",
4384
- "kind": "function",
4385
- "description": "Clears all Toolbar Buttons from Custom Toolbar",
4386
- "uiLabel": "Clear Custom Toolbar Buttons"
4387
- },
4388
4537
  {
4389
4538
  "name": "collapseDashboard",
4390
4539
  "kind": "function",
@@ -4529,6 +4678,12 @@ exports.ADAPTABLE_METAMODEL = {
4529
4678
  "description": "Checks if a given Toolbar is visible",
4530
4679
  "uiLabel": "Is Toolbar Visible"
4531
4680
  },
4681
+ {
4682
+ "name": "refreshDashboard",
4683
+ "kind": "function",
4684
+ "description": "Refreshes the entire Dashboard section, including Toolbars and Buttons; this is particularly relevant for AdapTable built-in elements, as framework components are dependent on the framework specific change detection mechanisms",
4685
+ "uiLabel": "Refresh Dashboard"
4686
+ },
4532
4687
  {
4533
4688
  "name": "setActiveTab",
4534
4689
  "kind": "function",
@@ -4541,12 +4696,6 @@ exports.ADAPTABLE_METAMODEL = {
4541
4696
  "description": "Sets Active Tab in Dashboard",
4542
4697
  "uiLabel": "Set Active Tab Index"
4543
4698
  },
4544
- {
4545
- "name": "setCustomToolbarButtons",
4546
- "kind": "function",
4547
- "description": "Replaces Toolbar Buttons in Custom Toolbar with the new set",
4548
- "uiLabel": "Set Custom Toolbar Buttons"
4549
- },
4550
4699
  {
4551
4700
  "name": "setCustomToolbarContents",
4552
4701
  "kind": "function",
@@ -4819,6 +4968,13 @@ exports.ADAPTABLE_METAMODEL = {
4819
4968
  "kind": "Interface",
4820
4969
  "description": "Options to manage the 'Data Change History Module', which provides an overview of all previous changes, giving the possibility to undo specific changes",
4821
4970
  "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
+ },
4822
4978
  {
4823
4979
  "name": "activeByDefault",
4824
4980
  "kind": "boolean",
@@ -4839,117 +4995,78 @@ exports.ADAPTABLE_METAMODEL = {
4839
4995
  }
4840
4996
  ]
4841
4997
  },
4842
- "DataSource": {
4843
- "name": "DataSource",
4998
+ "DataSet": {
4999
+ "name": "DataSet",
4844
5000
  "kind": "Interface",
4845
- "description": "Defines a Data Source object - used in Data Source function",
5001
+ "description": "Defines a Data Set object that can provide data to AdapTable",
4846
5002
  "properties": [
4847
5003
  {
4848
- "name": "Description",
5004
+ "name": "description",
4849
5005
  "kind": "string",
4850
- "description": "Describes the Data Source",
5006
+ "description": "Describes the Data Set",
4851
5007
  "uiLabel": "Description"
4852
5008
  },
4853
5009
  {
4854
- "name": "Form",
5010
+ "name": "form",
4855
5011
  "kind": "unknown",
4856
- "description": "Params for DataSource pops up a form",
5012
+ "description": "Params for Data Set popup form",
4857
5013
  "uiLabel": "Form",
4858
5014
  "isOptional": true
4859
5015
  },
4860
5016
  {
4861
- "name": "Name",
5017
+ "name": "name",
4862
5018
  "kind": "string",
4863
- "description": "Name of Data Source",
5019
+ "description": "Name of Data Set",
4864
5020
  "uiLabel": "Name"
4865
5021
  }
4866
5022
  ]
4867
5023
  },
4868
- "DataSourceApi": {
4869
- "name": "DataSourceApi",
5024
+ "DataSetApi": {
5025
+ "name": "DataSetApi",
4870
5026
  "kind": "Interface",
4871
- "description": "Provides run-time access to Data Source Module",
5027
+ "description": "Provides run-time access to Data Sets",
4872
5028
  "properties": [
4873
5029
  {
4874
- "name": "addDataSource",
4875
- "kind": "function",
4876
- "description": "Adds new DataSource to State",
4877
- "uiLabel": "Add Data Source"
4878
- },
4879
- {
4880
- "name": "clearDataSource",
5030
+ "name": "clearCurrentDataSet",
4881
5031
  "kind": "function",
4882
- "description": "Clears currently selected DataSource",
4883
- "uiLabel": "Clear Data Source"
5032
+ "description": "Clears currently selected Data Set",
5033
+ "uiLabel": "Clear Current Data Set"
4884
5034
  },
4885
5035
  {
4886
- "name": "createDataSource",
5036
+ "name": "fireDataSetChangeEvent",
4887
5037
  "kind": "function",
4888
- "description": "Creates a DataSource from a given name and description",
4889
- "uiLabel": "Create Data Source"
5038
+ "description": "Fire the DataSet Changed Event",
5039
+ "uiLabel": "Fire Data Set Change Event"
4890
5040
  },
4891
5041
  {
4892
- "name": "getAllDataSource",
5042
+ "name": "getAllDataSets",
4893
5043
  "kind": "function",
4894
- "description": "Retrieves all Data Sources in the Adaptable State",
4895
- "uiLabel": "Get All Data Source"
5044
+ "description": "Retrieves the Data Sets from General Options",
5045
+ "uiLabel": "Get All Data Sets"
4896
5046
  },
4897
5047
  {
4898
- "name": "getCurrentDataSource",
5048
+ "name": "getCurrentDataSet",
4899
5049
  "kind": "function",
4900
- "description": "Retrieves the currently applied Data Source",
4901
- "uiLabel": "Get Current Data Source"
5050
+ "description": "Retrieves the currently applied Data Set",
5051
+ "uiLabel": "Get Current Data Set"
4902
5052
  },
4903
5053
  {
4904
- "name": "getDataSourceById",
5054
+ "name": "getDataSetByName",
4905
5055
  "kind": "function",
4906
- "description": "Retrieves Data Source by id",
4907
- "uiLabel": "Get Data Source By Id"
5056
+ "description": "Retreives Data Set from State with given name",
5057
+ "uiLabel": "Get Data Set By Name"
4908
5058
  },
4909
5059
  {
4910
- "name": "getDataSourceByName",
5060
+ "name": "setDataSet",
4911
5061
  "kind": "function",
4912
- "description": "Retrives Data Source from State with given name",
4913
- "uiLabel": "Get Data Source By Name"
5062
+ "description": "Makes given Data Set current",
5063
+ "uiLabel": "Set Data Set"
4914
5064
  },
4915
5065
  {
4916
- "name": "getDataSourceState",
5066
+ "name": "showDataSetPopup",
4917
5067
  "kind": "function",
4918
- "description": "Retrieves Data Source section from Adaptable State",
4919
- "uiLabel": "Get Data Source State"
4920
- },
4921
- {
4922
- "name": "setDataSource",
4923
- "kind": "function",
4924
- "description": "Makes given DataSource current",
4925
- "uiLabel": "Set Data Source"
4926
- },
4927
- {
4928
- "name": "showDataSourcePopup",
4929
- "kind": "function",
4930
- "description": "Opens Settings Panel with Data Source section selected and visible",
4931
- "uiLabel": "Show Data Source Popup"
4932
- }
4933
- ]
4934
- },
4935
- "DataSourceState": {
4936
- "name": "DataSourceState",
4937
- "kind": "Interface",
4938
- "description": "Predefined Configuration for Data Source Module",
4939
- "properties": [
4940
- {
4941
- "name": "CurrentDataSource",
4942
- "kind": "string",
4943
- "description": "Name of the currently selected Data Source",
4944
- "uiLabel": "Current Data Source",
4945
- "isOptional": true
4946
- },
4947
- {
4948
- "name": "DataSources",
4949
- "kind": "unknown",
4950
- "description": "Collection of available Data Sources",
4951
- "uiLabel": "Data Sources",
4952
- "isOptional": true
5068
+ "description": "Opens Settings Panel with Data Set section selected and visible",
5069
+ "uiLabel": "Show Data Set Popup"
4953
5070
  }
4954
5071
  ]
4955
5072
  },
@@ -5076,6 +5193,21 @@ exports.ADAPTABLE_METAMODEL = {
5076
5193
  "uiLabel": "Is Cell Editable",
5077
5194
  "isOptional": true
5078
5195
  },
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
+ {
5205
+ "name": "smartEditCustomOperations",
5206
+ "kind": "unknown",
5207
+ "description": "Custom Operations to use in Smart Edit",
5208
+ "uiLabel": "Smart Edit Custom Operations",
5209
+ "isOptional": true
5210
+ },
5079
5211
  {
5080
5212
  "name": "validateOnServer",
5081
5213
  "kind": "unknown",
@@ -5156,6 +5288,18 @@ exports.ADAPTABLE_METAMODEL = {
5156
5288
  "description": "Unsubscribe from LiveDataChanged",
5157
5289
  "uiLabel": "Off"
5158
5290
  },
5291
+ {
5292
+ "name": "off",
5293
+ "kind": "function",
5294
+ "description": "Unsubscribe from RowFormSubmitted",
5295
+ "uiLabel": "Off"
5296
+ },
5297
+ {
5298
+ "name": "off",
5299
+ "kind": "function",
5300
+ "description": "Unsubscribe from DataSetChanged",
5301
+ "uiLabel": "Off"
5302
+ },
5159
5303
  {
5160
5304
  "name": "off",
5161
5305
  "kind": "function",
@@ -5252,6 +5396,18 @@ exports.ADAPTABLE_METAMODEL = {
5252
5396
  "description": "Event fired whenever **a change occurs relating to live reports / data** Used in conjunction with AdapTable's partners OpenFin, ipushpull or Glue42",
5253
5397
  "uiLabel": "On"
5254
5398
  },
5399
+ {
5400
+ "name": "on",
5401
+ "kind": "function",
5402
+ "description": "Event fired when a Row Form is submitted",
5403
+ "uiLabel": "On"
5404
+ },
5405
+ {
5406
+ "name": "on",
5407
+ "kind": "function",
5408
+ "description": "Event fired when a DataSet is changed",
5409
+ "uiLabel": "On"
5410
+ },
5255
5411
  {
5256
5412
  "name": "on",
5257
5413
  "kind": "function",
@@ -5477,8 +5633,8 @@ exports.ADAPTABLE_METAMODEL = {
5477
5633
  }
5478
5634
  ]
5479
5635
  },
5480
- "ExportButtonContext": {
5481
- "name": "ExportButtonContext",
5636
+ "ExportFormContext": {
5637
+ "name": "ExportFormContext",
5482
5638
  "kind": "Interface",
5483
5639
  "description": "Context required by functions when using an Export Button",
5484
5640
  "properties": [
@@ -5489,13 +5645,6 @@ exports.ADAPTABLE_METAMODEL = {
5489
5645
  "uiLabel": "Custom Destination",
5490
5646
  "reference": "CustomDestination"
5491
5647
  },
5492
- {
5493
- "name": "formData",
5494
- "kind": "REFERENCE",
5495
- "description": "Adaptable Form Data",
5496
- "uiLabel": "Form Data",
5497
- "reference": "unknown"
5498
- },
5499
5648
  {
5500
5649
  "name": "report",
5501
5650
  "kind": "REFERENCE",
@@ -5928,12 +6077,6 @@ exports.ADAPTABLE_METAMODEL = {
5928
6077
  "kind": "Interface",
5929
6078
  "description": "Provides run-time access to Filter section of Adaptable State.",
5930
6079
  "properties": [
5931
- {
5932
- "name": "clearAllColumnFilter",
5933
- "kind": "function",
5934
- "description": "Clears all Column Filters in State",
5935
- "uiLabel": "Clear All Column Filter"
5936
- },
5937
6080
  {
5938
6081
  "name": "clearAndSetColumnFilter",
5939
6082
  "kind": "function",
@@ -5958,6 +6101,12 @@ exports.ADAPTABLE_METAMODEL = {
5958
6101
  "description": "Clears Column Filters for given set of Columns",
5959
6102
  "uiLabel": "Clear Column Filter By Columns"
5960
6103
  },
6104
+ {
6105
+ "name": "clearColumnFilters",
6106
+ "kind": "function",
6107
+ "description": "Clears all Column Filters in the Current Layout",
6108
+ "uiLabel": "Clear Column Filters"
6109
+ },
5961
6110
  {
5962
6111
  "name": "columnFiltersToString",
5963
6112
  "kind": "function",
@@ -5971,10 +6120,16 @@ exports.ADAPTABLE_METAMODEL = {
5971
6120
  "uiLabel": "Column Filter To String"
5972
6121
  },
5973
6122
  {
5974
- "name": "createColumnFilterForCell",
6123
+ "name": "createEqualityColumnFilterForCell",
5975
6124
  "kind": "function",
5976
- "description": "Creates new Column Filter on given Column using Primary Key values",
5977
- "uiLabel": "Create Column Filter For Cell"
6125
+ "description": "Creates an Equality Filter based on given Grid Cell",
6126
+ "uiLabel": "Create Equality Column Filter For Cell"
6127
+ },
6128
+ {
6129
+ "name": "createValuesColumnFilterForCells",
6130
+ "kind": "function",
6131
+ "description": "Creates an Equality Filter based on given Grid Cells",
6132
+ "uiLabel": "Create Values Column Filter For Cells"
5978
6133
  },
5979
6134
  {
5980
6135
  "name": "evaluateColumnFilter",
@@ -5988,12 +6143,6 @@ exports.ADAPTABLE_METAMODEL = {
5988
6143
  "description": "Returns Predicate Definition for given Column and Quick Filter shortcut",
5989
6144
  "uiLabel": "Find Predicate Def By Shortcut"
5990
6145
  },
5991
- {
5992
- "name": "getAllColumnFilter",
5993
- "kind": "function",
5994
- "description": "Retrieves all the Column Filters in the Column Filter State (of Predefined Config)",
5995
- "uiLabel": "Get All Column Filter"
5996
- },
5997
6146
  {
5998
6147
  "name": "getAllColumnFilterForColumn",
5999
6148
  "kind": "function",
@@ -6007,10 +6156,10 @@ exports.ADAPTABLE_METAMODEL = {
6007
6156
  "uiLabel": "Get All System Filter Ids"
6008
6157
  },
6009
6158
  {
6010
- "name": "getColumnFilterById",
6159
+ "name": "getColumnFilters",
6011
6160
  "kind": "function",
6012
- "description": "Retrieves ColumnFilter by Id",
6013
- "uiLabel": "Get Column Filter By Id"
6161
+ "description": "Retrieves all the Column Filters in the Column Filter State (of Predefined Config)",
6162
+ "uiLabel": "Get Column Filters"
6014
6163
  },
6015
6164
  {
6016
6165
  "name": "getFilterPredicateDefsForColumn",
@@ -6024,12 +6173,6 @@ exports.ADAPTABLE_METAMODEL = {
6024
6173
  "description": "Gets all Filter Predicates available for a given ColumnId",
6025
6174
  "uiLabel": "Get Filter Predicate Defs For Column Id"
6026
6175
  },
6027
- {
6028
- "name": "getFilterState",
6029
- "kind": "function",
6030
- "description": "Retrieves Filter section from Adaptable State",
6031
- "uiLabel": "Get Filter State"
6032
- },
6033
6176
  {
6034
6177
  "name": "hideQuickFilterBar",
6035
6178
  "kind": "function",
@@ -6209,6 +6352,14 @@ exports.ADAPTABLE_METAMODEL = {
6209
6352
  "gridInfo": "item",
6210
6353
  "defaultValue": "'mouseenter'"
6211
6354
  },
6355
+ {
6356
+ "name": "showQuickFilter",
6357
+ "kind": "boolean",
6358
+ "description": "Whether to display Quick Filter Bar between Column Header and the Grid (provided its been setup)",
6359
+ "uiLabel": "Show Quick Filter",
6360
+ "isOptional": true,
6361
+ "defaultValue": "true"
6362
+ },
6212
6363
  {
6213
6364
  "name": "sortColumnValuesInFilter",
6214
6365
  "kind": "boolean",
@@ -6269,28 +6420,6 @@ exports.ADAPTABLE_METAMODEL = {
6269
6420
  }
6270
6421
  ]
6271
6422
  },
6272
- "FilterState": {
6273
- "name": "FilterState",
6274
- "kind": "Interface",
6275
- "description": "Predefined Configuration for Filters",
6276
- "properties": [
6277
- {
6278
- "name": "ColumnFilters",
6279
- "kind": "unknown",
6280
- "description": "Collection of Column Filters",
6281
- "uiLabel": "Column Filters",
6282
- "isOptional": true
6283
- },
6284
- {
6285
- "name": "IsQuickFilterVisible",
6286
- "kind": "boolean",
6287
- "description": "Whether to display Quick Filter Bar between Column Header and the Grid",
6288
- "uiLabel": "Is Quick Filter Visible",
6289
- "isOptional": true,
6290
- "defaultValue": "true"
6291
- }
6292
- ]
6293
- },
6294
6423
  "FinanceApi": {
6295
6424
  "name": "FinanceApi",
6296
6425
  "kind": "Interface",
@@ -6779,6 +6908,12 @@ exports.ADAPTABLE_METAMODEL = {
6779
6908
  "description": "Publishes the CheckboxColumnClickedEvent - when the checkbox in an Checkbox Column is clicked",
6780
6909
  "uiLabel": "Fire Checkbox Column Clicked Event"
6781
6910
  },
6911
+ {
6912
+ "name": "getActiveFormatColumnForColumn",
6913
+ "kind": "function",
6914
+ "description": "Gets an active Format Column, if any, for given Column",
6915
+ "uiLabel": "Get Active Format Column For Column"
6916
+ },
6782
6917
  {
6783
6918
  "name": "getAllActiveFormatColumn",
6784
6919
  "kind": "function",
@@ -7144,15 +7279,6 @@ exports.ADAPTABLE_METAMODEL = {
7144
7279
  "isOptional": true,
7145
7280
  "defaultValue": "null"
7146
7281
  },
7147
- {
7148
- "name": "autoOrderGroupedColumns",
7149
- "kind": "boolean",
7150
- "description": "Order Grouped Column automatically, deriving from Adaptable State if available (CustomSort or Layout ColumnSort)",
7151
- "uiLabel": "Auto Order Grouped Columns",
7152
- "isOptional": true,
7153
- "gridInfo": "item",
7154
- "defaultValue": "true"
7155
- },
7156
7282
  {
7157
7283
  "name": "cellSummaryOperations",
7158
7284
  "kind": "unknown",
@@ -7176,6 +7302,13 @@ exports.ADAPTABLE_METAMODEL = {
7176
7302
  "uiLabel": "Custom Sort Comparers",
7177
7303
  "isOptional": true
7178
7304
  },
7305
+ {
7306
+ "name": "dataSets",
7307
+ "kind": "unknown",
7308
+ "description": "Collection of Data Sets to provide Data to AdapTable",
7309
+ "uiLabel": "Data Sets",
7310
+ "isOptional": true
7311
+ },
7179
7312
  {
7180
7313
  "name": "englishVariant",
7181
7314
  "kind": "unknown",
@@ -7185,15 +7318,6 @@ exports.ADAPTABLE_METAMODEL = {
7185
7318
  "gridInfo": "item",
7186
7319
  "defaultValue": "'GB'"
7187
7320
  },
7188
- {
7189
- "name": "hideColumnWhenGrouped",
7190
- "kind": "boolean",
7191
- "description": "Automatically removes a column from the grid when it becomes Row Grouped",
7192
- "uiLabel": "Hide Column When Grouped",
7193
- "isOptional": true,
7194
- "gridInfo": "item",
7195
- "defaultValue": "false"
7196
- },
7197
7321
  {
7198
7322
  "name": "hideEmptyGroupRows",
7199
7323
  "kind": "boolean",
@@ -7211,15 +7335,6 @@ exports.ADAPTABLE_METAMODEL = {
7211
7335
  "gridInfo": "item",
7212
7336
  "defaultValue": "false"
7213
7337
  },
7214
- {
7215
- "name": "showMissingColumnsWarning",
7216
- "kind": "boolean",
7217
- "description": "Show warning if AdapTable cannot find a column",
7218
- "uiLabel": "Show Missing Columns Warning",
7219
- "isOptional": true,
7220
- "gridInfo": "item",
7221
- "defaultValue": "true"
7222
- },
7223
7338
  {
7224
7339
  "name": "showMissingPrimaryKeyAlert",
7225
7340
  "kind": "boolean",
@@ -7874,6 +7989,24 @@ exports.ADAPTABLE_METAMODEL = {
7874
7989
  "description": "Loads grid with given data",
7875
7990
  "uiLabel": "Load Grid Data"
7876
7991
  },
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
+ },
7877
8010
  {
7878
8011
  "name": "redrawGrid",
7879
8012
  "kind": "function",
@@ -8620,6 +8753,13 @@ exports.ADAPTABLE_METAMODEL = {
8620
8753
  "uiLabel": "Auto Save",
8621
8754
  "isOptional": true
8622
8755
  },
8756
+ {
8757
+ "name": "ColumnFilters",
8758
+ "kind": "unknown",
8759
+ "description": "Collection of Column Filters.",
8760
+ "uiLabel": "Column Filters",
8761
+ "isOptional": true
8762
+ },
8623
8763
  {
8624
8764
  "name": "ColumnHeadersMap",
8625
8765
  "kind": "unknown",
@@ -8858,6 +8998,24 @@ exports.ADAPTABLE_METAMODEL = {
8858
8998
  "description": "Does an object's Tags include the Current Layout",
8859
8999
  "uiLabel": "Is Object Available In Current Layout"
8860
9000
  },
9001
+ {
9002
+ "name": "removeColumnFromAllLayouts",
9003
+ "kind": "function",
9004
+ "description": "Removes a Column from all Layouts",
9005
+ "uiLabel": "Remove Column From All Layouts"
9006
+ },
9007
+ {
9008
+ "name": "removeColumnFromCurrentLayout",
9009
+ "kind": "function",
9010
+ "description": "Removes a Column from the Current Layout",
9011
+ "uiLabel": "Remove Column From Current Layout"
9012
+ },
9013
+ {
9014
+ "name": "removeColumnFromLayout",
9015
+ "kind": "function",
9016
+ "description": "Removes a Column from a given Layout",
9017
+ "uiLabel": "Remove Column From Layout"
9018
+ },
8861
9019
  {
8862
9020
  "name": "saveCurrentLayout",
8863
9021
  "kind": "function",
@@ -9132,6 +9290,27 @@ exports.ADAPTABLE_METAMODEL = {
9132
9290
  }
9133
9291
  ]
9134
9292
  },
9293
+ "MasterDetailPluginOptions": {
9294
+ "name": "MasterDetailPluginOptions",
9295
+ "kind": "Interface",
9296
+ "description": "Plugin Options used when creating a Master / Detail grid - passed into the plugin as the only argument.",
9297
+ "properties": [
9298
+ {
9299
+ "name": "detailAdaptableOptions",
9300
+ "kind": "REFERENCE",
9301
+ "description": "`AdaptableOptions` object to use for child Data Grids; **all** will share the same behaviour and State",
9302
+ "uiLabel": "Detail Adaptable Options",
9303
+ "reference": "AdaptableOptions"
9304
+ },
9305
+ {
9306
+ "name": "onDetailInit",
9307
+ "kind": "unknown",
9308
+ "description": "Function called when Detail Grid is initialised (i.e. opens) receives an Adaptable Api object",
9309
+ "uiLabel": "On Detail Init",
9310
+ "isOptional": true
9311
+ }
9312
+ ]
9313
+ },
9135
9314
  "MenuOptions": {
9136
9315
  "name": "MenuOptions",
9137
9316
  "kind": "Interface",
@@ -10050,14 +10229,6 @@ exports.ADAPTABLE_METAMODEL = {
10050
10229
  "isOptional": true,
10051
10230
  "reference": "DashboardState"
10052
10231
  },
10053
- {
10054
- "name": "DataSource",
10055
- "kind": "REFERENCE",
10056
- "description": "Supplies a collection of *DataSource* objects to facilitate replacing the DataSource in the Grid with an alternate set of data (e.g. a Book or Stored Proc name)",
10057
- "uiLabel": "Data Source",
10058
- "isOptional": true,
10059
- "reference": "DataSourceState"
10060
- },
10061
10232
  {
10062
10233
  "name": "Export",
10063
10234
  "kind": "REFERENCE",
@@ -10066,14 +10237,6 @@ exports.ADAPTABLE_METAMODEL = {
10066
10237
  "isOptional": true,
10067
10238
  "reference": "ExportState"
10068
10239
  },
10069
- {
10070
- "name": "Filter",
10071
- "kind": "REFERENCE",
10072
- "description": "Stores Filters in AdapTable - both System and Column (predicate) Filters",
10073
- "uiLabel": "Filter",
10074
- "isOptional": true,
10075
- "reference": "FilterState"
10076
- },
10077
10240
  {
10078
10241
  "name": "FlashingCell",
10079
10242
  "kind": "REFERENCE",
@@ -10152,7 +10315,7 @@ exports.ADAPTABLE_METAMODEL = {
10152
10315
  "description": "Configures the Adaptable Status Bar",
10153
10316
  "uiLabel": "Status Bar",
10154
10317
  "isOptional": true,
10155
- "reference": "unknown"
10318
+ "reference": "StatusBarState"
10156
10319
  },
10157
10320
  {
10158
10321
  "name": "Theme",
@@ -10189,6 +10352,12 @@ exports.ADAPTABLE_METAMODEL = {
10189
10352
  "description": "Returns Predicate Definitions provided by users",
10190
10353
  "uiLabel": "Get Custom Predicate Defs"
10191
10354
  },
10355
+ {
10356
+ "name": "getEqualityPredicateForDataType",
10357
+ "kind": "function",
10358
+ "description": "Gets the correct Equality-type System Predicate for a particular DataType",
10359
+ "uiLabel": "Get Equality Predicate For Data Type"
10360
+ },
10192
10361
  {
10193
10362
  "name": "getPredicateDefById",
10194
10363
  "kind": "function",
@@ -10619,6 +10788,52 @@ exports.ADAPTABLE_METAMODEL = {
10619
10788
  }
10620
10789
  ]
10621
10790
  },
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
+ },
10622
10837
  "RowInfo": {
10623
10838
  "name": "RowInfo",
10624
10839
  "kind": "Interface",
@@ -11511,6 +11726,12 @@ exports.ADAPTABLE_METAMODEL = {
11511
11726
  "description": "Applies a Smart Edit to given Cells",
11512
11727
  "uiLabel": "Apply Smart Edit"
11513
11728
  },
11729
+ {
11730
+ "name": "getSmartEditCustomOperations",
11731
+ "kind": "function",
11732
+ "description": "Retrieves an Smart Edit Custom Operations (provided in Edit Options)",
11733
+ "uiLabel": "Get Smart Edit Custom Operations"
11734
+ },
11514
11735
  {
11515
11736
  "name": "getSmartEditOperation",
11516
11737
  "kind": "function",
@@ -11523,10 +11744,16 @@ exports.ADAPTABLE_METAMODEL = {
11523
11744
  "description": "Returns current Smart Edit Value",
11524
11745
  "uiLabel": "Get Smart Edit Value"
11525
11746
  },
11747
+ {
11748
+ "name": "setCustomSmartEditOperation",
11749
+ "kind": "function",
11750
+ "description": "Sets current Smart Edit Operation to a Custom Operation",
11751
+ "uiLabel": "Set Custom Smart Edit Operation"
11752
+ },
11526
11753
  {
11527
11754
  "name": "setSmartEditOperation",
11528
11755
  "kind": "function",
11529
- "description": "Sets Smart Edit operation: ('Add','Subtract','Multiply','Divide'",
11756
+ "description": "Sets (shipped) Smart Edit Operation: 'Add','Subtract','Multiply','Divide'",
11530
11757
  "uiLabel": "Set Smart Edit Operation"
11531
11758
  },
11532
11759
  {
@@ -11543,6 +11770,31 @@ exports.ADAPTABLE_METAMODEL = {
11543
11770
  }
11544
11771
  ]
11545
11772
  },
11773
+ "SmartEditCustomOperation": {
11774
+ "name": "SmartEditCustomOperation",
11775
+ "kind": "TypeAlias",
11776
+ "description": "Custom Operation used in Smart Edit Module"
11777
+ },
11778
+ "SmartEditOperationContext": {
11779
+ "name": "SmartEditOperationContext",
11780
+ "kind": "Interface",
11781
+ "description": "Context used in Custom Smart Edit Operations",
11782
+ "properties": [
11783
+ {
11784
+ "name": "currentCell",
11785
+ "kind": "REFERENCE",
11786
+ "description": "Current selected grid cell - contains column, row and cell value information",
11787
+ "uiLabel": "Current Cell",
11788
+ "reference": "GridCell"
11789
+ },
11790
+ {
11791
+ "name": "smartEditValue",
11792
+ "kind": "number",
11793
+ "description": "Smart Edit value",
11794
+ "uiLabel": "Smart Edit Value"
11795
+ }
11796
+ ]
11797
+ },
11546
11798
  "SpecialColumnSettings": {
11547
11799
  "name": "SpecialColumnSettings",
11548
11800
  "kind": "Interface",
@@ -11689,6 +11941,21 @@ exports.ADAPTABLE_METAMODEL = {
11689
11941
  }
11690
11942
  ]
11691
11943
  },
11944
+ "StatusBarState": {
11945
+ "name": "StatusBarState",
11946
+ "kind": "Interface",
11947
+ "description": "Predefined Configuration for the Adaptable Status Bar",
11948
+ "properties": [
11949
+ {
11950
+ "name": "StatusBars",
11951
+ "kind": "unknown",
11952
+ "description": "Adaptable Status Bars to display - up to 3 can be shown",
11953
+ "uiLabel": "Status Bars",
11954
+ "isOptional": true,
11955
+ "defaultValue": "null"
11956
+ }
11957
+ ]
11958
+ },
11692
11959
  "StringFormatterOptions": {
11693
11960
  "name": "StringFormatterOptions",
11694
11961
  "kind": "Interface",
@@ -11867,15 +12134,9 @@ exports.ADAPTABLE_METAMODEL = {
11867
12134
  {
11868
12135
  "name": "getSharedEntities",
11869
12136
  "kind": "function",
11870
- "description": "Retrieves all Shared Entities in Team Sharing State",
12137
+ "description": "Retrieves all shared entities which are currently shared. It is an asynchronous operation as it leverages the `TeamSharingOptions.getSharedEntities(...)` method.",
11871
12138
  "uiLabel": "Get Shared Entities"
11872
12139
  },
11873
- {
11874
- "name": "getTeamSharingState",
11875
- "kind": "function",
11876
- "description": "Retrieves Team Sharing section of State",
11877
- "uiLabel": "Get Team Sharing State"
11878
- },
11879
12140
  {
11880
12141
  "name": "hasTeamSharingFullRights",
11881
12142
  "kind": "function",
@@ -11888,6 +12149,18 @@ exports.ADAPTABLE_METAMODEL = {
11888
12149
  "description": "Whether Team Sharing is Activated",
11889
12150
  "uiLabel": "Is Team Sharing Activated"
11890
12151
  },
12152
+ {
12153
+ "name": "isTeamSharingAvailable",
12154
+ "kind": "function",
12155
+ "description": "Whether Team Sharing is Available to use",
12156
+ "uiLabel": "Is Team Sharing Available"
12157
+ },
12158
+ {
12159
+ "name": "setSharedEntities",
12160
+ "kind": "function",
12161
+ "description": "Sets the shared entities which are currently shared. It is an asynchronous operation as it leverages the `TeamSharingOptions.setSharedEntities(...)` method.",
12162
+ "uiLabel": "Set Shared Entities"
12163
+ },
11891
12164
  {
11892
12165
  "name": "shareEntity",
11893
12166
  "kind": "function",
@@ -11899,6 +12172,12 @@ exports.ADAPTABLE_METAMODEL = {
11899
12172
  "kind": "function",
11900
12173
  "description": "Opens Settings Panel with Team Sharing section selected and visible",
11901
12174
  "uiLabel": "Show Team Sharing Popup"
12175
+ },
12176
+ {
12177
+ "name": "unshareEntity",
12178
+ "kind": "function",
12179
+ "description": "Removes an Adaptable Object from the Team Share.",
12180
+ "uiLabel": "Unshare Entity"
11902
12181
  }
11903
12182
  ]
11904
12183
  },
@@ -12199,15 +12478,6 @@ exports.ADAPTABLE_METAMODEL = {
12199
12478
  "kind": "Interface",
12200
12479
  "description": "Options related to managing the AdapTable ToolPanel Component",
12201
12480
  "properties": [
12202
- {
12203
- "name": "adaptableToolPanelTitle",
12204
- "kind": "string",
12205
- "description": "Title for AdapTable ToolPanel Component - appears vertically at side",
12206
- "uiLabel": "Adaptable Tool Panel Title",
12207
- "isOptional": true,
12208
- "gridInfo": "item",
12209
- "defaultValue": "'AdapTable'"
12210
- },
12211
12481
  {
12212
12482
  "name": "customButtons",
12213
12483
  "kind": "unknown",
@@ -12222,40 +12492,6 @@ exports.ADAPTABLE_METAMODEL = {
12222
12492
  "uiLabel": "Custom Tool Panels",
12223
12493
  "isOptional": true
12224
12494
  },
12225
- {
12226
- "name": "iconKey",
12227
- "kind": "string",
12228
- "description": "Key of icon to be used (beside the label) for Adaptable ToolPanel Component",
12229
- "uiLabel": "Icon Key",
12230
- "isOptional": true,
12231
- "gridInfo": "item",
12232
- "defaultValue": "'menu'"
12233
- },
12234
- {
12235
- "name": "maxWidth",
12236
- "kind": "number",
12237
- "description": "The max width of AdapTable ToolPanel",
12238
- "uiLabel": "Max Width",
12239
- "isOptional": true,
12240
- "defaultValue": "undefined"
12241
- },
12242
- {
12243
- "name": "minWidth",
12244
- "kind": "number",
12245
- "description": "The min width of AdapTable ToolPanel",
12246
- "uiLabel": "Min Width",
12247
- "isOptional": true,
12248
- "defaultValue": "var(--ab-cmp-toolpanel__width)"
12249
- },
12250
- {
12251
- "name": "showAdaptableToolPanel",
12252
- "kind": "boolean",
12253
- "description": "Displays Adaptable ToolPanel Component (only if AG Grid Sidebar is provided)",
12254
- "uiLabel": "Show Adaptable Tool Panel",
12255
- "isOptional": true,
12256
- "gridInfo": "item",
12257
- "defaultValue": "true"
12258
- },
12259
12495
  {
12260
12496
  "name": "showToolPanelsDropdown",
12261
12497
  "kind": "boolean",
@@ -12264,22 +12500,6 @@ exports.ADAPTABLE_METAMODEL = {
12264
12500
  "isOptional": true,
12265
12501
  "gridInfo": "item",
12266
12502
  "defaultValue": "true"
12267
- },
12268
- {
12269
- "name": "toolPanelOrder",
12270
- "kind": "unknown",
12271
- "description": "Order of displayed ToolPanels in Sidebar",
12272
- "uiLabel": "Tool Panel Order",
12273
- "isOptional": true,
12274
- "defaultValue": "['filters', 'columns', 'adaptable']"
12275
- },
12276
- {
12277
- "name": "width",
12278
- "kind": "number",
12279
- "description": "The initial width of AdapTable ToolPanel",
12280
- "uiLabel": "Width",
12281
- "isOptional": true,
12282
- "defaultValue": "var(--ab-cmp-toolpanel__width)"
12283
12503
  }
12284
12504
  ]
12285
12505
  },
@@ -12421,11 +12641,12 @@ exports.ADAPTABLE_METAMODEL = {
12421
12641
  "description": "Options for managing the User Interface of AdapTable",
12422
12642
  "properties": [
12423
12643
  {
12424
- "name": "actionColumns",
12425
- "kind": "unknown",
12426
- "description": "Columns which contain an AdapTable Button - used for performing Actions",
12427
- "uiLabel": "Action Columns",
12428
- "isOptional": true
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"
12429
12650
  },
12430
12651
  {
12431
12652
  "name": "applicationIcon",
@@ -12451,10 +12672,10 @@ exports.ADAPTABLE_METAMODEL = {
12451
12672
  "isOptional": true
12452
12673
  },
12453
12674
  {
12454
- "name": "columnTypes",
12675
+ "name": "customDisplayFormatters",
12455
12676
  "kind": "unknown",
12456
- "description": "Optional list of Column Types - used primarily for special columns",
12457
- "uiLabel": "Column Types",
12677
+ "description": "Custom Formatters to use in the Format Column Module",
12678
+ "uiLabel": "Custom Display Formatters",
12458
12679
  "isOptional": true
12459
12680
  },
12460
12681
  {