@adaptabletools/adaptable 10.0.2 → 10.0.4-canary.2

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 (306) hide show
  1. package/LICENSE.md +1 -1
  2. package/README.md +1 -1
  3. package/base.css +84 -32
  4. package/bundle.cjs.js +350 -0
  5. package/index.css +100 -34
  6. package/package.json +1 -5
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -1
  10. package/src/AdaptableInterfaces/IAdaptable.d.ts +24 -12
  11. package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -3
  12. package/src/AdaptableOptions/ContainerOptions.d.ts +4 -5
  13. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
  14. package/src/AdaptableOptions/DateInputOptions.d.ts +5 -1
  15. package/src/AdaptableOptions/EditOptions.d.ts +2 -3
  16. package/src/AdaptableOptions/FilterOptions.d.ts +22 -15
  17. package/src/AdaptableOptions/GeneralOptions.d.ts +3 -2
  18. package/src/AdaptableOptions/LayoutOptions.d.ts +1 -1
  19. package/src/AdaptableOptions/MenuOptions.d.ts +11 -11
  20. package/src/AdaptableOptions/NotificationsOptions.d.ts +11 -1
  21. package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
  22. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +108 -6
  23. package/src/Api/AdaptableApi.d.ts +12 -12
  24. package/src/Api/AlertApi.d.ts +1 -1
  25. package/src/Api/CalculatedColumnApi.d.ts +15 -0
  26. package/src/Api/ColumnApi.d.ts +49 -5
  27. package/src/Api/ConfigApi.d.ts +8 -0
  28. package/src/Api/EventApi.d.ts +1 -1
  29. package/src/Api/Events/AdaptableReady.d.ts +5 -8
  30. package/src/Api/Events/AdaptableStateChanged.d.ts +2 -1
  31. package/src/Api/Events/AlertFired.d.ts +2 -1
  32. package/src/Api/Events/BaseEventInfo.d.ts +10 -0
  33. package/src/{Utilities/Interface/ProgressIndicator.js → Api/Events/BaseEventInfo.js} +0 -0
  34. package/src/Api/Events/CellChanged.d.ts +2 -1
  35. package/src/Api/Events/ChexboxColumnClicked.d.ts +2 -1
  36. package/src/Api/Events/CustomToolbarConfigured.d.ts +2 -1
  37. package/src/Api/Events/DashboardChanged.d.ts +2 -1
  38. package/src/Api/Events/FlashingAlertFired.d.ts +2 -1
  39. package/src/Api/Events/GridDataChanged.d.ts +2 -1
  40. package/src/Api/Events/LayoutChanged.d.ts +2 -1
  41. package/src/Api/Events/LiveDataChanged.d.ts +2 -1
  42. package/src/Api/Events/SearchChanged.d.ts +2 -1
  43. package/src/Api/Events/SelectionChanged.d.ts +2 -1
  44. package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +2 -1
  45. package/src/Api/Events/TeamSharingEntityChanged.d.ts +2 -1
  46. package/src/Api/Events/ThemeChanged.d.ts +2 -1
  47. package/src/Api/GridApi.d.ts +44 -18
  48. package/src/Api/Implementation/AlertApiImpl.d.ts +1 -1
  49. package/src/Api/Implementation/AlertApiImpl.js +22 -15
  50. package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +3 -0
  51. package/src/Api/Implementation/CalculatedColumnApiImpl.js +23 -0
  52. package/src/Api/Implementation/ColumnApiImpl.d.ts +12 -3
  53. package/src/Api/Implementation/ColumnApiImpl.js +79 -44
  54. package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -1
  55. package/src/Api/Implementation/ConfigApiImpl.js +28 -41
  56. package/src/Api/Implementation/DashboardApiImpl.js +2 -1
  57. package/src/Api/Implementation/ExportApiImpl.js +4 -4
  58. package/src/Api/Implementation/FormatColumnApiImpl.js +2 -1
  59. package/src/Api/Implementation/FreeTextColumnApiImpl.js +9 -3
  60. package/src/Api/Implementation/GridApiImpl.d.ts +11 -2
  61. package/src/Api/Implementation/GridApiImpl.js +30 -13
  62. package/src/Api/Implementation/InternalApiImpl.d.ts +4 -2
  63. package/src/Api/Implementation/InternalApiImpl.js +21 -5
  64. package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
  65. package/src/Api/Implementation/LayoutApiImpl.js +19 -3
  66. package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -2
  67. package/src/Api/Implementation/PluginsApiImpl.js +1 -1
  68. package/src/Api/Implementation/ScheduleApiImpl.js +6 -6
  69. package/src/Api/Implementation/ScopeApiImpl.js +11 -11
  70. package/src/Api/Implementation/SystemStatusApiImpl.js +1 -0
  71. package/src/Api/Implementation/TeamSharingApiImpl.js +1 -0
  72. package/src/Api/Implementation/ThemeApiImpl.js +1 -0
  73. package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
  74. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +15 -11
  75. package/src/Api/Implementation/UserInterfaceApiImpl.js +73 -91
  76. package/src/Api/InternalApi.d.ts +4 -2
  77. package/src/Api/LayoutApi.d.ts +7 -0
  78. package/src/Api/PluginsApi.d.ts +1 -7
  79. package/src/Api/TeamSharingApi.d.ts +1 -1
  80. package/src/Api/ThemeApi.d.ts +2 -2
  81. package/src/Api/UserInterfaceApi.d.ts +19 -9
  82. package/src/PredefinedConfig/AdaptableState.d.ts +2 -10
  83. package/src/PredefinedConfig/AlertState.d.ts +5 -1
  84. package/src/PredefinedConfig/ApplicationState.d.ts +1 -1
  85. package/src/PredefinedConfig/CalculatedColumnState.d.ts +5 -38
  86. package/src/PredefinedConfig/Common/AdaptableButton.d.ts +1 -1
  87. package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +36 -36
  88. package/src/PredefinedConfig/Common/AdaptableColumn.js +5 -5
  89. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +4 -4
  90. package/src/PredefinedConfig/Common/AdaptablePredicate.js +19 -18
  91. package/src/PredefinedConfig/Common/AdaptableStyle.d.ts +7 -7
  92. package/src/PredefinedConfig/Common/DataChangedInfo.d.ts +4 -3
  93. package/src/PredefinedConfig/Common/DataUpdateConfig.d.ts +5 -1
  94. package/src/PredefinedConfig/Common/Menu.d.ts +40 -17
  95. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +49 -0
  96. package/src/PredefinedConfig/Common/SpecialColumnSettings.js +2 -0
  97. package/src/PredefinedConfig/Common/Types.d.ts +5 -5
  98. package/src/PredefinedConfig/Common/Types.js +9 -7
  99. package/src/PredefinedConfig/ConditionalStyleState.d.ts +1 -1
  100. package/src/PredefinedConfig/CustomSortState.d.ts +1 -1
  101. package/src/PredefinedConfig/DataSourceState.d.ts +1 -1
  102. package/src/PredefinedConfig/ExportState.d.ts +3 -3
  103. package/src/PredefinedConfig/FilterState.d.ts +3 -3
  104. package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
  105. package/src/PredefinedConfig/FreeTextColumnState.d.ts +11 -1
  106. package/src/PredefinedConfig/LayoutState.d.ts +1 -1
  107. package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -40
  108. package/src/PredefinedConfig/QuickSearchState.d.ts +3 -3
  109. package/src/PredefinedConfig/ScheduleState.d.ts +1 -1
  110. package/src/PredefinedConfig/Selection/GridCell.d.ts +2 -1
  111. package/src/PredefinedConfig/Selection/GridRow.d.ts +12 -4
  112. package/src/PredefinedConfig/SystemState.d.ts +4 -1
  113. package/src/PredefinedConfig/ThemeState.d.ts +5 -1
  114. package/src/Redux/ActionsReducers/DashboardRedux.js +2 -1
  115. package/src/Redux/ActionsReducers/GridRedux.d.ts +3 -2
  116. package/src/Redux/ActionsReducers/GridRedux.js +2 -2
  117. package/src/Redux/ActionsReducers/LayoutRedux.d.ts +12 -2
  118. package/src/Redux/ActionsReducers/LayoutRedux.js +24 -1
  119. package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
  120. package/src/Redux/DeadRedux.d.ts +4 -8
  121. package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +6 -1
  122. package/src/Redux/Store/AdaptableStore.d.ts +3 -3
  123. package/src/Redux/Store/AdaptableStore.js +25 -16
  124. package/src/Strategy/AdaptableModuleBase.d.ts +2 -2
  125. package/src/Strategy/AdaptableModuleBase.js +8 -8
  126. package/src/Strategy/AlertModule.d.ts +2 -2
  127. package/src/Strategy/AlertModule.js +13 -105
  128. package/src/Strategy/BulkUpdateModule.d.ts +2 -2
  129. package/src/Strategy/BulkUpdateModule.js +7 -7
  130. package/src/Strategy/CalculatedColumnModule.js +1 -1
  131. package/src/Strategy/CellSummaryModule.d.ts +2 -2
  132. package/src/Strategy/CellSummaryModule.js +3 -3
  133. package/src/Strategy/ConditionalStyleModule.js +3 -3
  134. package/src/Strategy/CustomSortModule.js +2 -2
  135. package/src/Strategy/DashboardModule.d.ts +2 -2
  136. package/src/Strategy/DataChangeHistoryModule.js +2 -2
  137. package/src/Strategy/ExportModule.d.ts +2 -4
  138. package/src/Strategy/ExportModule.js +59 -62
  139. package/src/Strategy/FilterModule.d.ts +2 -2
  140. package/src/Strategy/FilterModule.js +4 -4
  141. package/src/Strategy/FormatColumnModule.js +6 -6
  142. package/src/Strategy/FreeTextColumnModule.js +1 -1
  143. package/src/Strategy/GridInfoModule.d.ts +2 -2
  144. package/src/Strategy/Interface/IModule.d.ts +2 -2
  145. package/src/Strategy/LayoutModule.d.ts +2 -2
  146. package/src/Strategy/LayoutModule.js +22 -9
  147. package/src/Strategy/PlusMinusModule.js +8 -9
  148. package/src/Strategy/SmartEditModule.d.ts +2 -2
  149. package/src/Strategy/SmartEditModule.js +8 -9
  150. package/src/Strategy/SystemStatusModule.d.ts +2 -2
  151. package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
  152. package/src/Utilities/Constants/GeneralConstants.js +2 -1
  153. package/src/Utilities/Constants/ModuleConstants.d.ts +6 -6
  154. package/src/Utilities/Constants/ModuleConstants.js +7 -7
  155. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +9 -7
  156. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +1 -1
  157. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +2 -2
  158. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -2
  159. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +1 -1
  160. package/src/Utilities/Helpers/DateHelper.d.ts +2 -2
  161. package/src/Utilities/Helpers/DateHelper.js +30 -20
  162. package/src/Utilities/Helpers/PreviewHelper.js +2 -2
  163. package/src/Utilities/Interface/Preview.d.ts +2 -1
  164. package/src/Utilities/ObjectFactory.d.ts +1 -1
  165. package/src/Utilities/ObjectFactory.js +14 -2
  166. package/src/Utilities/Services/DataService.js +5 -5
  167. package/src/Utilities/Services/LicenseService.js +16 -2
  168. package/src/Utilities/Services/ReportService.js +13 -12
  169. package/src/Utilities/Services/ValidationService.js +4 -5
  170. package/src/Utilities/runIfNotResolvedIn.d.ts +8 -0
  171. package/src/Utilities/runIfNotResolvedIn.js +23 -0
  172. package/src/View/AdaptableView.js +1 -1
  173. package/src/View/AdaptableViewFactory.d.ts +2 -1
  174. package/src/View/AdaptableViewFactory.js +2 -0
  175. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +7 -7
  176. package/src/View/Alert/AlertPopup.js +1 -1
  177. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +19 -5
  178. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +1 -1
  179. package/src/View/BulkUpdate/BulkUpdatePopup.d.ts +2 -0
  180. package/src/View/BulkUpdate/BulkUpdatePopup.js +6 -4
  181. package/src/View/BulkUpdate/BulkUpdateViewPanel.d.ts +2 -0
  182. package/src/View/BulkUpdate/BulkUpdateViewPanel.js +3 -1
  183. package/src/View/CalculatedColumn/CalculatedColumnPopup.js +1 -1
  184. package/src/View/CalculatedColumn/CalculatedColumnSummary.js +1 -1
  185. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -1
  186. package/src/View/CellSummary/CellSummaryViewPanel.js +2 -2
  187. package/src/View/Components/ColumnSelector/index.js +2 -2
  188. package/src/View/Components/FilterForm/FilterForm.d.ts +3 -51
  189. package/src/View/Components/FilterForm/FilterForm.js +57 -38
  190. package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +4 -1
  191. package/src/View/Components/FilterForm/ListBoxFilterForm.js +18 -9
  192. package/src/View/Components/FilterForm/QuickFilterForm.d.ts +3 -43
  193. package/src/View/Components/FilterForm/QuickFilterForm.js +74 -35
  194. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +3 -0
  195. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.js +8 -0
  196. package/src/View/Components/NewScopeComponent.js +1 -1
  197. package/src/View/Components/Panels/FilterFormPanel.d.ts +1 -1
  198. package/src/View/Components/Panels/PanelWithImage.d.ts +423 -1
  199. package/src/View/Components/Popups/AdaptablePopup.d.ts +1 -1
  200. package/src/View/Components/Popups/AdaptablePopupAlert.js +23 -10
  201. package/src/View/Components/PreviewResultsPanel.js +1 -1
  202. package/src/View/Components/RangesComponent.js +2 -2
  203. package/src/View/Components/Selectors/ColumnSelector.js +5 -5
  204. package/src/View/Components/Selectors/ColumnValueSelector.d.ts +10 -2
  205. package/src/View/Components/Selectors/ColumnValueSelector.js +47 -15
  206. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +10 -11
  207. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  208. package/src/View/Components/ToolPanel/ToolPanelPopup.js +2 -3
  209. package/src/View/ConditionalStyle/ConditionalStylePopup.js +1 -1
  210. package/src/View/ConditionalStyle/ConditionalStyleSummary.js +1 -1
  211. package/src/View/CustomSort/CustomSortEntityRow.d.ts +3 -1
  212. package/src/View/CustomSort/CustomSortEntityRow.js +3 -3
  213. package/src/View/CustomSort/CustomSortPopup.js +2 -2
  214. package/src/View/CustomSort/CustomSortSummary.js +3 -3
  215. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +4 -4
  216. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +24 -6
  217. package/src/View/Dashboard/CustomToolbarWrapper.js +2 -1
  218. package/src/View/Dashboard/Dashboard.js +2 -3
  219. package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +1 -1
  220. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +11 -10
  221. package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +6 -6
  222. package/src/View/Export/ExportCustomDestinationDialog.js +1 -1
  223. package/src/View/Export/ExportViewPanel.js +6 -6
  224. package/src/View/Filter/FilterSummary.js +2 -2
  225. package/src/View/FormatColumn/FormatColumnPopup.js +1 -1
  226. package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
  227. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +1 -1
  228. package/src/View/FreeTextColumn/FreeTextColumnPopup.js +4 -2
  229. package/src/View/FreeTextColumn/FreeTextColumnSummary.js +5 -3
  230. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +1 -1
  231. package/src/View/GridInfo/ColumnInfoComponent.js +16 -16
  232. package/src/View/GridInfo/GridInfoPopup.js +4 -1
  233. package/src/View/GridInfo/GridOptionsComponent.js +1 -1
  234. package/src/View/Layout/LayoutViewPanel.js +2 -2
  235. package/src/View/Layout/Wizard/LayoutEditor/ColumnList.js +6 -6
  236. package/src/View/Layout/Wizard/LayoutEditor/ColumnSortList.js +1 -1
  237. package/src/View/Layout/Wizard/LayoutEditor/PivotList.js +1 -1
  238. package/src/View/Layout/Wizard/LayoutEditor/RowGroupsList.js +1 -1
  239. package/src/View/Layout/Wizard/LayoutEditor/getItemStyle.js +2 -2
  240. package/src/View/Layout/Wizard/LayoutEditor/index.js +41 -41
  241. package/src/View/PlusMinus/PlusMinusPopup.js +1 -1
  242. package/src/View/PlusMinus/PlusMinusSummary.js +1 -1
  243. package/src/View/Query/QueryViewPanel.js +3 -3
  244. package/src/View/QuickSearch/useQuickSearchDebounced.js +2 -3
  245. package/src/View/Schedule/SchedulePopup.js +3 -3
  246. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +1 -1
  247. package/src/View/SmartEdit/SmartEditPopup.js +1 -1
  248. package/src/View/StateManagement/StateManagementPopup.d.ts +2 -12
  249. package/src/View/StateManagement/StateManagementPopup.js +21 -114
  250. package/src/View/StateManagement/StateManagementViewPanel.d.ts +5 -0
  251. package/src/View/StateManagement/StateManagementViewPanel.js +22 -0
  252. package/src/View/StateManagement/components/ClearButton.d.ts +6 -0
  253. package/src/View/StateManagement/components/ClearButton.js +9 -0
  254. package/src/View/StateManagement/components/ExportDropdown.d.ts +8 -0
  255. package/src/View/StateManagement/components/ExportDropdown.js +43 -0
  256. package/src/View/StateManagement/components/LoadButton.d.ts +7 -0
  257. package/src/View/StateManagement/components/LoadButton.js +38 -0
  258. package/src/View/StateManagement/handleExportState.d.ts +1 -0
  259. package/src/View/StateManagement/handleExportState.js +22 -0
  260. package/src/View/Theme/ThemeViewPanel.js +1 -1
  261. package/src/View/UIHelper.d.ts +2 -0
  262. package/src/View/UIHelper.js +10 -1
  263. package/src/agGrid/ActionColumnRenderer.d.ts +2 -1
  264. package/src/agGrid/ActionColumnRenderer.js +21 -4
  265. package/src/agGrid/Adaptable.d.ts +28 -11
  266. package/src/agGrid/Adaptable.js +326 -168
  267. package/src/agGrid/agGridHelper.d.ts +4 -4
  268. package/src/agGrid/agGridHelper.js +46 -46
  269. package/src/agGrid/agGridMenuHelper.d.ts +15 -13
  270. package/src/agGrid/agGridMenuHelper.js +55 -47
  271. package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +1 -1
  272. package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +11 -6
  273. package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +3 -2
  274. package/src/agGrid/editors/AdaptableDateEditor/index.js +16 -6
  275. package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +1 -0
  276. package/src/agGrid/editors/AdaptableNumberEditor/index.js +7 -2
  277. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +3 -3
  278. package/src/components/Dashboard/Dashboard.js +1 -1
  279. package/src/components/Datepicker/DatepickerContext.d.ts +2 -2
  280. package/src/components/Datepicker/index.js +9 -5
  281. package/src/components/DropdownButton/index.js +1 -1
  282. package/src/components/ExpressionEditor/index.js +7 -7
  283. package/src/components/Loader/Loader.d.ts +7 -0
  284. package/src/components/Loader/Loader.js +13 -0
  285. package/src/components/Loader/index.d.ts +2 -0
  286. package/src/components/Loader/index.js +7 -0
  287. package/src/components/Modal/index.d.ts +1 -1
  288. package/src/components/OverlayTrigger/index.js +3 -3
  289. package/src/components/OverlayTrigger/useAgGridClassName.d.ts +2 -0
  290. package/src/components/OverlayTrigger/{useVendorClassName.js → useAgGridClassName.js} +3 -3
  291. package/src/components/ProgressIndicator/ProgressIndicator.d.ts +2 -0
  292. package/src/components/ProgressIndicator/ProgressIndicator.js +54 -0
  293. package/src/components/icons/index.js +2 -0
  294. package/src/components/icons/upload.d.ts +3 -0
  295. package/src/components/icons/upload.js +8 -0
  296. package/src/metamodel/adaptable.metamodel.d.ts +176 -52
  297. package/src/metamodel/adaptable.metamodel.js +659 -366
  298. package/src/types.d.ts +5 -4
  299. package/version.d.ts +1 -1
  300. package/version.js +1 -1
  301. package/src/PredefinedConfig/DeprecatedState.d.ts +0 -82
  302. package/src/PredefinedConfig/DeprecatedState.js +0 -5
  303. package/src/Utilities/Interface/ProgressIndicator.d.ts +0 -4
  304. package/src/View/Export/ProgressIndicator.d.ts +0 -6
  305. package/src/View/Export/ProgressIndicator.js +0 -25
  306. package/src/components/OverlayTrigger/useVendorClassName.d.ts +0 -2
@@ -18,6 +18,14 @@ exports.ADAPTABLE_METAMODEL = {
18
18
  "description": "Button to display in the Column",
19
19
  "uiLabel": "Action Column Button"
20
20
  },
21
+ {
22
+ "name": "actionColumnSettings",
23
+ "kind": "REFERENCE",
24
+ "description": "Additional optional properties for Column (e.g. filterable, resizable)",
25
+ "uiLabel": "Action Column Settings",
26
+ "isOptional": true,
27
+ "reference": "ActionColumnSettings"
28
+ },
21
29
  {
22
30
  "name": "columnId",
23
31
  "kind": "string",
@@ -61,12 +69,50 @@ exports.ADAPTABLE_METAMODEL = {
61
69
  {
62
70
  "name": "rowNode",
63
71
  "kind": "REFERENCE",
64
- "description": "Current Row Node",
72
+ "description": "Current AG Grid Row Node",
65
73
  "uiLabel": "Row Node",
66
74
  "reference": "unknown"
67
75
  }
68
76
  ]
69
77
  },
78
+ "ActionColumnSettings": {
79
+ "name": "ActionColumnSettings",
80
+ "kind": "Interface",
81
+ "description": "Set of optional properties that define an Action Columns behaviour",
82
+ "properties": [
83
+ {
84
+ "name": "resizable",
85
+ "kind": "boolean",
86
+ "description": "Whether Column can be resized (by dragging column header edges)",
87
+ "uiLabel": "Resizable",
88
+ "isOptional": true,
89
+ "defaultValue": "true"
90
+ },
91
+ {
92
+ "name": "suppressMenu",
93
+ "kind": "boolean",
94
+ "description": "Whether no menu should be shown for this Column header.",
95
+ "uiLabel": "Suppress Menu",
96
+ "isOptional": true,
97
+ "defaultValue": "false"
98
+ },
99
+ {
100
+ "name": "suppressMovable",
101
+ "kind": "boolean",
102
+ "description": "Whether if this Column should be movable via dragging",
103
+ "uiLabel": "Suppress Movable",
104
+ "isOptional": true,
105
+ "defaultValue": "false"
106
+ },
107
+ {
108
+ "name": "width",
109
+ "kind": "number",
110
+ "description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by AG Grid",
111
+ "uiLabel": "Width",
112
+ "isOptional": true
113
+ }
114
+ ]
115
+ },
70
116
  "ActionHandler": {
71
117
  "name": "ActionHandler",
72
118
  "kind": "TypeAlias",
@@ -431,30 +477,30 @@ exports.ADAPTABLE_METAMODEL = {
431
477
  "AdaptableColumn": {
432
478
  "name": "AdaptableColumn",
433
479
  "kind": "Interface",
434
- "description": "Defines an Adaptable Column - created at run-time based on vendor grid column definition",
480
+ "description": "Defines an Adaptable Column - created at run-time based on AG Grid column definition",
435
481
  "properties": [
436
482
  {
437
- "name": "Aggregatable",
483
+ "name": "aggregatable",
438
484
  "kind": "boolean",
439
485
  "description": "Is Column able to display aggregations (e.g. 'sum') when grouped",
440
486
  "uiLabel": "Aggregatable"
441
487
  },
442
488
  {
443
- "name": "AggregationFunction",
489
+ "name": "aggregationFunction",
444
490
  "kind": "string",
445
491
  "description": "Custom aggregation function for the Column",
446
492
  "uiLabel": "Aggregation Function",
447
493
  "isOptional": true
448
494
  },
449
495
  {
450
- "name": "AvailableAggregationFunctions",
496
+ "name": "availableAggregationFunctions",
451
497
  "kind": "unknown",
452
498
  "description": "Available aggregations for the Column",
453
499
  "uiLabel": "Available Aggregation Functions",
454
500
  "isOptional": true
455
501
  },
456
502
  {
457
- "name": "ColumnGroup",
503
+ "name": "columnGroup",
458
504
  "kind": "REFERENCE",
459
505
  "description": "The parent column group, if the column belongs to one",
460
506
  "uiLabel": "Column Group",
@@ -462,98 +508,98 @@ exports.ADAPTABLE_METAMODEL = {
462
508
  "reference": "unknown"
463
509
  },
464
510
  {
465
- "name": "Filterable",
511
+ "name": "filterable",
466
512
  "kind": "boolean",
467
513
  "description": "Is Column able to be filtered",
468
514
  "uiLabel": "Filterable"
469
515
  },
470
516
  {
471
- "name": "Flex",
517
+ "name": "flex",
472
518
  "kind": "number",
473
519
  "description": "Flex details of the column",
474
520
  "uiLabel": "Flex",
475
521
  "isOptional": true
476
522
  },
477
523
  {
478
- "name": "Groupable",
524
+ "name": "groupable",
479
525
  "kind": "boolean",
480
526
  "description": "Can Column form a Row Group",
481
527
  "uiLabel": "Groupable"
482
528
  },
483
529
  {
484
- "name": "Hideable",
530
+ "name": "hideable",
485
531
  "kind": "boolean",
486
532
  "description": "Can Column be removed from the grid",
487
533
  "uiLabel": "Hideable"
488
534
  },
489
535
  {
490
- "name": "IsExcludedFromQuickSearch",
536
+ "name": "isExcludedFromQuickSearch",
491
537
  "kind": "boolean",
492
538
  "description": "Has colummn been excluded from Quick Search results",
493
539
  "uiLabel": "Is Excluded From Quick Search"
494
540
  },
495
541
  {
496
- "name": "IsFixed",
542
+ "name": "isFixed",
497
543
  "kind": "boolean",
498
544
  "description": "Is Column pinned or locked into position",
499
545
  "uiLabel": "Is Fixed"
500
546
  },
501
547
  {
502
- "name": "IsGrouped",
548
+ "name": "isGrouped",
503
549
  "kind": "boolean",
504
550
  "description": "Is Column currently grouped",
505
551
  "uiLabel": "Is Grouped"
506
552
  },
507
553
  {
508
- "name": "IsPrimaryKey",
554
+ "name": "isPrimaryKey",
509
555
  "kind": "boolean",
510
556
  "description": "Is this the Primary Key column",
511
557
  "uiLabel": "Is Primary Key"
512
558
  },
513
559
  {
514
- "name": "IsSparkline",
560
+ "name": "isSparkline",
515
561
  "kind": "boolean",
516
562
  "description": "Is it a Sparkline Column",
517
563
  "uiLabel": "Is Sparkline"
518
564
  },
519
565
  {
520
- "name": "Moveable",
566
+ "name": "moveable",
521
567
  "kind": "boolean",
522
568
  "description": "Can Column be moved at run-time to a new position",
523
569
  "uiLabel": "Moveable"
524
570
  },
525
571
  {
526
- "name": "Pivotable",
572
+ "name": "pivotable",
527
573
  "kind": "boolean",
528
574
  "description": "Can Column be used in a Pivot Grid",
529
575
  "uiLabel": "Pivotable"
530
576
  },
531
577
  {
532
- "name": "Queryable",
578
+ "name": "queryable",
533
579
  "kind": "boolean",
534
580
  "description": "Can the Column be in included in Queries / Expressions",
535
581
  "uiLabel": "Queryable"
536
582
  },
537
583
  {
538
- "name": "ReadOnly",
584
+ "name": "readOnly",
539
585
  "kind": "boolean",
540
586
  "description": "Is column editable",
541
587
  "uiLabel": "Read Only"
542
588
  },
543
589
  {
544
- "name": "Sortable",
590
+ "name": "sortable",
545
591
  "kind": "boolean",
546
592
  "description": "Is Column sortable",
547
593
  "uiLabel": "Sortable"
548
594
  },
549
595
  {
550
- "name": "Visible",
596
+ "name": "visible",
551
597
  "kind": "boolean",
552
598
  "description": "Is Column currently visible",
553
599
  "uiLabel": "Visible"
554
600
  },
555
601
  {
556
- "name": "Width",
602
+ "name": "width",
557
603
  "kind": "number",
558
604
  "description": "Column width",
559
605
  "uiLabel": "Width",
@@ -567,21 +613,21 @@ exports.ADAPTABLE_METAMODEL = {
567
613
  "description": "Base class for Adaptable Column containing most important properties",
568
614
  "properties": [
569
615
  {
570
- "name": "ColumnId",
616
+ "name": "columnId",
571
617
  "kind": "string",
572
- "description": "Name of Column in underlying grid (e.g. field or colId)",
618
+ "description": "Name of Column in AG Grid (e.g. field or colId)",
573
619
  "uiLabel": "Column Id"
574
620
  },
575
621
  {
576
- "name": "DataType",
622
+ "name": "dataType",
577
623
  "kind": "unknown",
578
624
  "description": "DataType of the column",
579
625
  "uiLabel": "Data Type"
580
626
  },
581
627
  {
582
- "name": "FriendlyName",
628
+ "name": "friendlyName",
583
629
  "kind": "string",
584
- "description": "How Column is referred to in Adaptable UI; 'Caption' or 'Header' property in underlying grid",
630
+ "description": "How Column is referred to in Adaptable UI; `Caption` property in AG Grid",
585
631
  "uiLabel": "Friendly Name"
586
632
  }
587
633
  ]
@@ -795,21 +841,21 @@ exports.ADAPTABLE_METAMODEL = {
795
841
  {
796
842
  "name": "module",
797
843
  "kind": "unknown",
798
- "description": "Adaptable Module associated with (shipped) menu item.",
844
+ "description": "Adaptable Module associated with (Adaptable) menu item.",
799
845
  "uiLabel": "Module",
800
846
  "isOptional": true
801
847
  },
802
848
  {
803
849
  "name": "onClick",
804
850
  "kind": "unknown",
805
- "description": "Function to invoice when (custom) menu item is clicked",
851
+ "description": "Function to invoke when (custom) menu item is clicked",
806
852
  "uiLabel": "On Click",
807
853
  "isOptional": true
808
854
  },
809
855
  {
810
856
  "name": "reduxAction",
811
857
  "kind": "unknown",
812
- "description": "Adaptable Redux Action to invoke when (shipped) menu item is clicked",
858
+ "description": "Adaptable Redux Action to invoke when (Adaptable) menu item is clicked",
813
859
  "uiLabel": "Redux Action",
814
860
  "isOptional": true
815
861
  },
@@ -859,7 +905,7 @@ exports.ADAPTABLE_METAMODEL = {
859
905
  "AdaptableOptions": {
860
906
  "name": "AdaptableOptions",
861
907
  "kind": "Interface",
862
- "description": "Group of property options enabling developers to set up AdapTable at design time to fit precise requirements - provides Vendor Grid, Predefined Config and other information required to ensure a full, rich user experience",
908
+ "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",
863
909
  "properties": [
864
910
  {
865
911
  "name": "adaptableId",
@@ -891,7 +937,7 @@ exports.ADAPTABLE_METAMODEL = {
891
937
  {
892
938
  "name": "containerOptions",
893
939
  "kind": "REFERENCE",
894
- "description": "Options for setting the 'Div' elements in which AdapTable, the underlying grid, popups and charts are placed",
940
+ "description": "Options for setting the 'Div' elements in which AdapTable, AG Grid, popups and charts are placed",
895
941
  "uiLabel": "Container Options",
896
942
  "isOptional": true,
897
943
  "reference": "ContainerOptions"
@@ -1088,7 +1134,7 @@ exports.ADAPTABLE_METAMODEL = {
1088
1134
  {
1089
1135
  "name": "vendorGrid",
1090
1136
  "kind": "unknown",
1091
- "description": "Underlying vendor grid or grid object which AdapTable interacts with. Note: if using React or Angular Wrapper, no need to populate this property (as `gridOptions` is a separate prop and AdapTable wires up everything)",
1137
+ "description": "The AG Grid object which AdapTable interacts with. Note: if using React or Angular Wrapper, no need to populate this property (as `gridOptions` is a separate prop and AdapTable wires up everything)",
1092
1138
  "uiLabel": "Vendor Grid",
1093
1139
  "isOptional": true,
1094
1140
  "defaultValue": "n/a (Mandatory)"
@@ -1108,14 +1154,14 @@ exports.ADAPTABLE_METAMODEL = {
1108
1154
  {
1109
1155
  "name": "Inputs",
1110
1156
  "kind": "unknown",
1111
- "description": "Optional inputs - needed to evaluate some Predicates (e.g. 'GreaterThan')",
1157
+ "description": "Optional Inputs that might be needed for evaluation",
1112
1158
  "uiLabel": "Inputs",
1113
1159
  "isOptional": true
1114
1160
  },
1115
1161
  {
1116
1162
  "name": "PredicateId",
1117
1163
  "kind": "string",
1118
- "description": "Id of Predicate (e.g. 'Equals', 'GreaterThan')",
1164
+ "description": "Id of Predicate (e.g. `Equals`, `GreaterThan`)",
1119
1165
  "uiLabel": "Predicate Id"
1120
1166
  }
1121
1167
  ]
@@ -1167,13 +1213,13 @@ exports.ADAPTABLE_METAMODEL = {
1167
1213
  {
1168
1214
  "name": "moduleScope",
1169
1215
  "kind": "unknown",
1170
- "description": "Adaptable Modules where Predicate can run",
1216
+ "description": "Modules where Predicate can run: 'filter', 'alert', 'conditionalstyle'",
1171
1217
  "uiLabel": "Module Scope"
1172
1218
  },
1173
1219
  {
1174
1220
  "name": "onlyQuickFilter",
1175
1221
  "kind": "boolean",
1176
- "description": "Wether to display this predicate only in QuickFilter (and NOT in Column Filter)",
1222
+ "description": "Display this predicate only in Quick Filter Bar (and NOT in Filter Form)",
1177
1223
  "uiLabel": "Only Quick Filter",
1178
1224
  "isOptional": true
1179
1225
  },
@@ -1199,17 +1245,11 @@ exports.ADAPTABLE_METAMODEL = {
1199
1245
  "description": "Object returned by `AdaptableReady` event - fired when AdapTable has loaded",
1200
1246
  "properties": [
1201
1247
  {
1202
- "name": "adaptableApi",
1248
+ "name": "gridOptions",
1203
1249
  "kind": "REFERENCE",
1204
- "description": "Adaptable API object used for runtime programmatic access to AdapTable",
1205
- "uiLabel": "Adaptable Api",
1206
- "reference": "AdaptableApi"
1207
- },
1208
- {
1209
- "name": "vendorGrid",
1210
- "kind": "unknown",
1211
- "description": "Instance of the underlying vendor grid (e.g. for AG Grid its the GridOptions object)",
1212
- "uiLabel": "Vendor Grid"
1250
+ "description": "Underlying AG Grid instance",
1251
+ "uiLabel": "Grid Options",
1252
+ "reference": "unknown"
1213
1253
  }
1214
1254
  ]
1215
1255
  },
@@ -1338,49 +1378,49 @@ exports.ADAPTABLE_METAMODEL = {
1338
1378
  {
1339
1379
  "name": "BackColor",
1340
1380
  "kind": "string",
1341
- "description": "Colour background of cell - provide a hex value.",
1381
+ "description": "Colour background of cell: provide hex value or name",
1342
1382
  "uiLabel": "Back Color",
1343
1383
  "isOptional": true
1344
1384
  },
1345
1385
  {
1346
1386
  "name": "BorderColor",
1347
1387
  "kind": "string",
1348
- "description": "Colour of cell border - provide a hex value.",
1388
+ "description": "Colour of cell border: provide hex value or name",
1349
1389
  "uiLabel": "Border Color",
1350
1390
  "isOptional": true
1351
1391
  },
1352
1392
  {
1353
1393
  "name": "ClassName",
1354
1394
  "kind": "string",
1355
- "description": "Name of existing Css Class; use instead of setting other object properties",
1395
+ "description": "Existing CSS Class; use instead of setting other object properties",
1356
1396
  "uiLabel": "Class Name",
1357
1397
  "isOptional": true
1358
1398
  },
1359
1399
  {
1360
1400
  "name": "FontSize",
1361
1401
  "kind": "unknown",
1362
- "description": "Size of font: 'XSmall', 'Small', 'Medium', 'Large' or 'XLarge'",
1402
+ "description": "Size of font: `XSmall`, `Small`, `Medium`, `Large` or `XLarge`",
1363
1403
  "uiLabel": "Font Size",
1364
1404
  "isOptional": true
1365
1405
  },
1366
1406
  {
1367
1407
  "name": "FontStyle",
1368
1408
  "kind": "unknown",
1369
- "description": "Style of the font: 'Normal' or 'Italic'",
1409
+ "description": "Style of font: `Normal` or `Italic`",
1370
1410
  "uiLabel": "Font Style",
1371
1411
  "isOptional": true
1372
1412
  },
1373
1413
  {
1374
1414
  "name": "FontWeight",
1375
1415
  "kind": "unknown",
1376
- "description": "Whether font appears as 'Normal' or 'Bold'",
1416
+ "description": "Weight of font: `Normal` or `Bold`",
1377
1417
  "uiLabel": "Font Weight",
1378
1418
  "isOptional": true
1379
1419
  },
1380
1420
  {
1381
1421
  "name": "ForeColor",
1382
1422
  "kind": "string",
1383
- "description": "Font colour in cell - provide a hex value.",
1423
+ "description": "Font colour in cell: provide hex value or name",
1384
1424
  "uiLabel": "Fore Color",
1385
1425
  "isOptional": true
1386
1426
  }
@@ -1391,6 +1431,13 @@ exports.ADAPTABLE_METAMODEL = {
1391
1431
  "kind": "Interface",
1392
1432
  "description": "Used for creating User (i.e. Custom) Themes",
1393
1433
  "properties": [
1434
+ {
1435
+ "name": "AgGridClassName",
1436
+ "kind": "string",
1437
+ "description": "Ag Grid theme to apply when loading theme",
1438
+ "uiLabel": "Ag Grid Class Name",
1439
+ "isOptional": true
1440
+ },
1394
1441
  {
1395
1442
  "name": "Description",
1396
1443
  "kind": "string",
@@ -1406,7 +1453,7 @@ exports.ADAPTABLE_METAMODEL = {
1406
1453
  {
1407
1454
  "name": "VendorGridClassName",
1408
1455
  "kind": "string",
1409
- "description": "Vendor Grid related css className to be applied",
1456
+ "description": "deprecated use `AgGridClassName` property instead",
1410
1457
  "uiLabel": "Vendor Grid Class Name",
1411
1458
  "isOptional": true
1412
1459
  }
@@ -1775,6 +1822,13 @@ exports.ADAPTABLE_METAMODEL = {
1775
1822
  "isOptional": true,
1776
1823
  "reference": "AlertProperties"
1777
1824
  },
1825
+ {
1826
+ "name": "MessageText",
1827
+ "kind": "string",
1828
+ "description": "Alert Message - can be string or function; if not provided AdapTable creates dynamically using Rule & Scope",
1829
+ "uiLabel": "Message Text",
1830
+ "isOptional": true
1831
+ },
1778
1832
  {
1779
1833
  "name": "MessageType",
1780
1834
  "kind": "REFERENCE",
@@ -1855,7 +1909,7 @@ exports.ADAPTABLE_METAMODEL = {
1855
1909
  "AlertState": {
1856
1910
  "name": "AlertState",
1857
1911
  "kind": "Interface",
1858
- "description": "Predefined Configuration for Alert function",
1912
+ "description": "Predefined Configuration for Alert Module",
1859
1913
  "properties": [
1860
1914
  {
1861
1915
  "name": "AlertDefinitions",
@@ -1977,7 +2031,7 @@ exports.ADAPTABLE_METAMODEL = {
1977
2031
  "ApplicationState": {
1978
2032
  "name": "ApplicationState",
1979
2033
  "kind": "Interface",
1980
- "description": "Predefined Configuration for the Application function",
2034
+ "description": "Predefined Configuration for the Application Module",
1981
2035
  "properties": [
1982
2036
  {
1983
2037
  "name": "ApplicationDataEntries",
@@ -2034,6 +2088,11 @@ exports.ADAPTABLE_METAMODEL = {
2034
2088
  }
2035
2089
  ]
2036
2090
  },
2091
+ "BulkUpdatePermittedValues": {
2092
+ "name": "BulkUpdatePermittedValues",
2093
+ "kind": "Interface",
2094
+ "description": "User to define permitted values when updating cells via bulk update"
2095
+ },
2037
2096
  "ButtonStyle": {
2038
2097
  "name": "ButtonStyle",
2039
2098
  "kind": "Interface",
@@ -2072,7 +2131,7 @@ exports.ADAPTABLE_METAMODEL = {
2072
2131
  {
2073
2132
  "name": "CalculatedColumnSettings",
2074
2133
  "kind": "REFERENCE",
2075
- "description": "Addtional optional properties for Column (e.g. filterable, resizable)",
2134
+ "description": "Additional optional properties for Column (e.g. filterable, resizable)",
2076
2135
  "uiLabel": "Calculated Column Settings",
2077
2136
  "isOptional": true,
2078
2137
  "reference": "CalculatedColumnSettings"
@@ -2159,12 +2218,30 @@ exports.ADAPTABLE_METAMODEL = {
2159
2218
  "description": "Returns all the references in the AdaptableState of the given CalculatedColumn",
2160
2219
  "uiLabel": "Get Calculated Column Module References"
2161
2220
  },
2221
+ {
2222
+ "name": "getCalculatedColumnsReferencingColumnId",
2223
+ "kind": "function",
2224
+ "description": "Returns all Calculated Columns whose Expression contains the ColumnId",
2225
+ "uiLabel": "Get Calculated Columns Referencing Column Id"
2226
+ },
2162
2227
  {
2163
2228
  "name": "getCalculatedColumnState",
2164
2229
  "kind": "function",
2165
2230
  "description": "Retrieves Calculated Column section from Adaptable State",
2166
2231
  "uiLabel": "Get Calculated Column State"
2167
2232
  },
2233
+ {
2234
+ "name": "getReferencedColumnIdsForCalculatedColumn",
2235
+ "kind": "function",
2236
+ "description": "Gets any ColumnIds referenced in a Calculated Column",
2237
+ "uiLabel": "Get Referenced Column Ids For Calculated Column"
2238
+ },
2239
+ {
2240
+ "name": "getReferencedColumnIdsForCalculatedColumnId",
2241
+ "kind": "function",
2242
+ "description": "Gets any ColumnIds referenced in a Calculated Column",
2243
+ "uiLabel": "Get Referenced Column Ids For Calculated Column Id"
2244
+ },
2168
2245
  {
2169
2246
  "name": "showCalculatedColumnPopup",
2170
2247
  "kind": "function",
@@ -2178,53 +2255,13 @@ exports.ADAPTABLE_METAMODEL = {
2178
2255
  "kind": "Interface",
2179
2256
  "description": "Set of optional properties that define a Calculated Column's behaviour",
2180
2257
  "properties": [
2181
- {
2182
- "name": "Aggregatable",
2183
- "kind": "boolean",
2184
- "description": "Whether Column can be used in an aggregation when grouping",
2185
- "uiLabel": "Aggregatable",
2186
- "isOptional": true,
2187
- "defaultValue": "true"
2188
- },
2189
2258
  {
2190
2259
  "name": "DataType",
2191
2260
  "kind": "unknown",
2192
- "description": "Expression's return value DataType; inferred by AdapTable but setable by User",
2261
+ "description": "Expression's return value DataType; inferred by AdapTable but settable by User",
2193
2262
  "uiLabel": "Data Type",
2194
2263
  "isOptional": true
2195
2264
  },
2196
- {
2197
- "name": "Filterable",
2198
- "kind": "boolean",
2199
- "description": "Whether Column is filterable",
2200
- "uiLabel": "Filterable",
2201
- "isOptional": true,
2202
- "defaultValue": "true"
2203
- },
2204
- {
2205
- "name": "Groupable",
2206
- "kind": "boolean",
2207
- "description": "Whether Column can be grouped",
2208
- "uiLabel": "Groupable",
2209
- "isOptional": true,
2210
- "defaultValue": "true"
2211
- },
2212
- {
2213
- "name": "Pivotable",
2214
- "kind": "boolean",
2215
- "description": "Whether Column can be used when grid is in pivot mode",
2216
- "uiLabel": "Pivotable",
2217
- "isOptional": true,
2218
- "defaultValue": "true"
2219
- },
2220
- {
2221
- "name": "Resizable",
2222
- "kind": "boolean",
2223
- "description": "Whether Column can be resized (by dragging column header edges)",
2224
- "uiLabel": "Resizable",
2225
- "isOptional": true,
2226
- "defaultValue": "true"
2227
- },
2228
2265
  {
2229
2266
  "name": "ShowToolTip",
2230
2267
  "kind": "boolean",
@@ -2232,28 +2269,13 @@ exports.ADAPTABLE_METAMODEL = {
2232
2269
  "uiLabel": "Show Tool Tip",
2233
2270
  "isOptional": true,
2234
2271
  "defaultValue": "false"
2235
- },
2236
- {
2237
- "name": "Sortable",
2238
- "kind": "boolean",
2239
- "description": "Whether Column is sortable",
2240
- "uiLabel": "Sortable",
2241
- "isOptional": true,
2242
- "defaultValue": "true"
2243
- },
2244
- {
2245
- "name": "Width",
2246
- "kind": "number",
2247
- "description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by underlying Grid",
2248
- "uiLabel": "Width",
2249
- "isOptional": true
2250
2272
  }
2251
2273
  ]
2252
2274
  },
2253
2275
  "CalculatedColumnState": {
2254
2276
  "name": "CalculatedColumnState",
2255
2277
  "kind": "Interface",
2256
- "description": "Predefined Configuration for Calculated Column function",
2278
+ "description": "Predefined Configuration for Calculated Column Module",
2257
2279
  "properties": [
2258
2280
  {
2259
2281
  "name": "CalculatedColumns",
@@ -2393,6 +2415,11 @@ exports.ADAPTABLE_METAMODEL = {
2393
2415
  "kind": "TypeAlias",
2394
2416
  "description": "List of all the Module buttons Adaptable provides - each Module has a popup for which this is a shortcut button"
2395
2417
  },
2418
+ "CellValuesList": {
2419
+ "name": "CellValuesList",
2420
+ "kind": "TypeAlias",
2421
+ "description": "Use PermittedValues instead"
2422
+ },
2396
2423
  "ChartApi": {
2397
2424
  "name": "ChartApi",
2398
2425
  "kind": "Interface",
@@ -2521,6 +2548,24 @@ exports.ADAPTABLE_METAMODEL = {
2521
2548
  "description": "Returns all Aggregatable Columns",
2522
2549
  "uiLabel": "Get Aggregetable Columns"
2523
2550
  },
2551
+ {
2552
+ "name": "getAgGridColumnFieldForAdaptableColumn",
2553
+ "kind": "function",
2554
+ "description": "Retrieves AG Grid's field property for the column",
2555
+ "uiLabel": "Get Ag Grid Column Field For Adaptable Column"
2556
+ },
2557
+ {
2558
+ "name": "getAgGridColumnForAdaptableColumn",
2559
+ "kind": "function",
2560
+ "description": "Retrieves AG Grid's column for an Adaptable column",
2561
+ "uiLabel": "Get Ag Grid Column For Adaptable Column"
2562
+ },
2563
+ {
2564
+ "name": "getAgGridColumnType",
2565
+ "kind": "function",
2566
+ "description": "Retrieves 'ColumnType' property for a given Column",
2567
+ "uiLabel": "Get Ag Grid Column Type"
2568
+ },
2524
2569
  {
2525
2570
  "name": "getAllColumnFriendlyNames",
2526
2571
  "kind": "function",
@@ -2599,12 +2644,30 @@ exports.ADAPTABLE_METAMODEL = {
2599
2644
  "description": "Returns all Date Columns",
2600
2645
  "uiLabel": "Get Date Columns"
2601
2646
  },
2647
+ {
2648
+ "name": "getDistinctBulkUpdateDisplayValuesForColumn",
2649
+ "kind": "function",
2650
+ "description": "Gets all distinct column display values for bulk update.",
2651
+ "uiLabel": "Get Distinct Bulk Update Display Values For Column"
2652
+ },
2653
+ {
2654
+ "name": "getDistinctCustomSortDisplayValuesForColumn",
2655
+ "kind": "function",
2656
+ "description": "Gets all distinct column display values in for custom sort.",
2657
+ "uiLabel": "Get Distinct Custom Sort Display Values For Column"
2658
+ },
2602
2659
  {
2603
2660
  "name": "getDistinctDisplayValuesForColumn",
2604
2661
  "kind": "function",
2605
2662
  "description": "Gets all distinct display values in the Column",
2606
2663
  "uiLabel": "Get Distinct Display Values For Column"
2607
2664
  },
2665
+ {
2666
+ "name": "getDistinctFilterDisplayValuesForColumn",
2667
+ "kind": "function",
2668
+ "description": "Gets all distinct display values in for filter column, used for Floating Filter and Column Header filter",
2669
+ "uiLabel": "Get Distinct Filter Display Values For Column"
2670
+ },
2608
2671
  {
2609
2672
  "name": "getDistinctRawValuesForColumn",
2610
2673
  "kind": "function",
@@ -2689,18 +2752,6 @@ exports.ADAPTABLE_METAMODEL = {
2689
2752
  "description": "Returns all string Columns",
2690
2753
  "uiLabel": "Get String Columns"
2691
2754
  },
2692
- {
2693
- "name": "getVendorColumnType",
2694
- "kind": "function",
2695
- "description": "Retrieves 'ColumnType' property for a given Column",
2696
- "uiLabel": "Get Vendor Column Type"
2697
- },
2698
- {
2699
- "name": "getVendorGridColumnFieldForColumn",
2700
- "kind": "function",
2701
- "description": "Retrieves the field property for the column",
2702
- "uiLabel": "Get Vendor Grid Column Field For Column"
2703
- },
2704
2755
  {
2705
2756
  "name": "getVisibleColumns",
2706
2757
  "kind": "function",
@@ -2719,12 +2770,24 @@ exports.ADAPTABLE_METAMODEL = {
2719
2770
  "description": "Is Column an Action Column",
2720
2771
  "uiLabel": "Is Action Column"
2721
2772
  },
2773
+ {
2774
+ "name": "isBooleanColumn",
2775
+ "kind": "function",
2776
+ "description": "Is Column Boolean",
2777
+ "uiLabel": "Is Boolean Column"
2778
+ },
2722
2779
  {
2723
2780
  "name": "isCalculatedColumn",
2724
2781
  "kind": "function",
2725
2782
  "description": "Is Column a Calculated Column",
2726
2783
  "uiLabel": "Is Calculated Column"
2727
2784
  },
2785
+ {
2786
+ "name": "isColumnReferencedInExpression",
2787
+ "kind": "function",
2788
+ "description": "Checks if a column is referenced in a given Expression",
2789
+ "uiLabel": "Is Column Referenced In Expression"
2790
+ },
2728
2791
  {
2729
2792
  "name": "isDateColumn",
2730
2793
  "kind": "function",
@@ -2778,6 +2841,18 @@ exports.ADAPTABLE_METAMODEL = {
2778
2841
  "kind": "function",
2779
2842
  "description": "Makes a Column visible",
2780
2843
  "uiLabel": "Show Column"
2844
+ },
2845
+ {
2846
+ "name": "usesAdaptableFilterForm",
2847
+ "kind": "function",
2848
+ "description": "Does Column use AdapTable's Filter Form",
2849
+ "uiLabel": "Uses Adaptable Filter Form"
2850
+ },
2851
+ {
2852
+ "name": "usesAdaptableQuickFilter",
2853
+ "kind": "function",
2854
+ "description": "Does Column use AdapTable's Quick Filter",
2855
+ "uiLabel": "Uses Adaptable Quick Filter"
2781
2856
  }
2782
2857
  ]
2783
2858
  },
@@ -2795,12 +2870,39 @@ exports.ADAPTABLE_METAMODEL = {
2795
2870
  {
2796
2871
  "name": "Predicate",
2797
2872
  "kind": "REFERENCE",
2798
- "description": "Predicate function to evaluate when Filter is run",
2873
+ "description": "`AdaptablePredicate` which AdaptableQL will evaluate when the Filter is run",
2799
2874
  "uiLabel": "Predicate",
2800
2875
  "reference": "unknown"
2801
2876
  }
2802
2877
  ]
2803
2878
  },
2879
+ "ColumnMenuContext": {
2880
+ "name": "ColumnMenuContext",
2881
+ "kind": "Interface",
2882
+ "description": "Provides full details about current Column where Column Header Menu will appear",
2883
+ "properties": [
2884
+ {
2885
+ "name": "adaptableColumn",
2886
+ "kind": "REFERENCE",
2887
+ "description": "Current Adaptable Column",
2888
+ "uiLabel": "Adaptable Column",
2889
+ "reference": "AdaptableColumn"
2890
+ },
2891
+ {
2892
+ "name": "agGridColumn",
2893
+ "kind": "REFERENCE",
2894
+ "description": "Current AG Grid Column",
2895
+ "uiLabel": "Ag Grid Column",
2896
+ "reference": "unknown"
2897
+ },
2898
+ {
2899
+ "name": "isRowGroupColumn",
2900
+ "kind": "boolean",
2901
+ "description": "Whether current Column is Row Group",
2902
+ "uiLabel": "Is Row Group Column"
2903
+ }
2904
+ ]
2905
+ },
2804
2906
  "ColumnSort": {
2805
2907
  "name": "ColumnSort",
2806
2908
  "kind": "Interface",
@@ -2825,18 +2927,19 @@ exports.ADAPTABLE_METAMODEL = {
2825
2927
  "kind": "Interface",
2826
2928
  "description": "Comparer object for Column Values - used for custom sorting",
2827
2929
  "properties": [
2828
- {
2829
- "name": "columnId",
2830
- "kind": "string",
2831
- "description": "Column for which to compare values",
2832
- "uiLabel": "Column Id"
2833
- },
2834
2930
  {
2835
2931
  "name": "comparer",
2836
2932
  "kind": "REFERENCE",
2837
2933
  "description": "Comparer function to use",
2838
2934
  "uiLabel": "Comparer",
2839
2935
  "reference": "AdaptableComparerFunction"
2936
+ },
2937
+ {
2938
+ "name": "scope",
2939
+ "kind": "REFERENCE",
2940
+ "description": "Column for which to compare values",
2941
+ "uiLabel": "Scope",
2942
+ "reference": "AdaptableScope"
2840
2943
  }
2841
2944
  ]
2842
2945
  },
@@ -2993,7 +3096,7 @@ exports.ADAPTABLE_METAMODEL = {
2993
3096
  "ConditionalStyleState": {
2994
3097
  "name": "ConditionalStyleState",
2995
3098
  "kind": "Interface",
2996
- "description": "Predefined Configuration for the Conditional Style function",
3099
+ "description": "Predefined Configuration for the Conditional Style Module",
2997
3100
  "properties": [
2998
3101
  {
2999
3102
  "name": "ConditionalStyles",
@@ -3027,6 +3130,12 @@ exports.ADAPTABLE_METAMODEL = {
3027
3130
  "description": "Copies User State sections of Adaptable State to clipboard",
3028
3131
  "uiLabel": "Copy User State To Clipboard"
3029
3132
  },
3133
+ {
3134
+ "name": "dispatchStateReadyAction",
3135
+ "kind": "function",
3136
+ "description": "Sent by each Module when it is Ready",
3137
+ "uiLabel": "Dispatch State Ready Action"
3138
+ },
3030
3139
  {
3031
3140
  "name": "getAdaptableSearchState",
3032
3141
  "kind": "function",
@@ -3201,6 +3310,12 @@ exports.ADAPTABLE_METAMODEL = {
3201
3310
  "description": "Returns given section of Adaptable State (as JSON or object)",
3202
3311
  "uiLabel": "Get User State By State Key"
3203
3312
  },
3313
+ {
3314
+ "name": "incrementUerStateRevision",
3315
+ "kind": "function",
3316
+ "description": "Adds '1' to current revision number of State element",
3317
+ "uiLabel": "Increment Uer State Revision"
3318
+ },
3204
3319
  {
3205
3320
  "name": "loadUserState",
3206
3321
  "kind": "function",
@@ -3249,6 +3364,24 @@ exports.ADAPTABLE_METAMODEL = {
3249
3364
  "gridInfo": "item",
3250
3365
  "defaultValue": ""adaptable""
3251
3366
  },
3367
+ {
3368
+ "name": "agGridContainer",
3369
+ "kind": "unknown",
3370
+ "description": "Div containing AG Grid instance - string Id or HTMLElement",
3371
+ "uiLabel": "Ag Grid Container",
3372
+ "isOptional": true,
3373
+ "gridInfo": "item",
3374
+ "defaultValue": ""grid""
3375
+ },
3376
+ {
3377
+ "name": "agGridContainerWaitTimeout",
3378
+ "kind": "number",
3379
+ "description": "how long AdapTable waits for AG Grid before giving up connecting to it; useful when AG Grid is instantiated separately (eg: by React or Angular Wrappers)",
3380
+ "uiLabel": "Ag Grid Container Wait Timeout",
3381
+ "isOptional": true,
3382
+ "gridInfo": "item",
3383
+ "defaultValue": "60s"
3384
+ },
3252
3385
  {
3253
3386
  "name": "alertContainer",
3254
3387
  "kind": "unknown",
@@ -3284,24 +3417,92 @@ exports.ADAPTABLE_METAMODEL = {
3284
3417
  "isOptional": true,
3285
3418
  "gridInfo": "item",
3286
3419
  "defaultValue": "undefined"
3420
+ }
3421
+ ]
3422
+ },
3423
+ "ContextMenuContext": {
3424
+ "name": "ContextMenuContext",
3425
+ "kind": "Interface",
3426
+ "description": "Provides full details about current cell (and selected cells) where Context Menu will appear",
3427
+ "properties": [
3428
+ {
3429
+ "name": "adaptableApi",
3430
+ "kind": "REFERENCE",
3431
+ "description": "The Adaptable Api - included as a convenience",
3432
+ "uiLabel": "Adaptable Api",
3433
+ "reference": "AdaptableApi"
3434
+ },
3435
+ {
3436
+ "name": "adaptableColumn",
3437
+ "kind": "REFERENCE",
3438
+ "description": "Current Adaptable Column",
3439
+ "uiLabel": "Adaptable Column",
3440
+ "reference": "AdaptableColumn"
3441
+ },
3442
+ {
3443
+ "name": "agGridColumn",
3444
+ "kind": "REFERENCE",
3445
+ "description": "Current AG Grid Column",
3446
+ "uiLabel": "Ag Grid Column",
3447
+ "reference": "unknown"
3448
+ },
3449
+ {
3450
+ "name": "gridCell",
3451
+ "kind": "REFERENCE",
3452
+ "description": "Cell that has been clicked; contains cell value",
3453
+ "uiLabel": "Grid Cell",
3454
+ "reference": "GridCell"
3455
+ },
3456
+ {
3457
+ "name": "isGroupedNode",
3458
+ "kind": "boolean",
3459
+ "description": "Whether current AG Grid row node is grouped",
3460
+ "uiLabel": "Is Grouped Node"
3461
+ },
3462
+ {
3463
+ "name": "isRowGroupColumn",
3464
+ "kind": "boolean",
3465
+ "description": "Whether current Column is Row Grouped",
3466
+ "uiLabel": "Is Row Group Column"
3287
3467
  },
3288
3468
  {
3289
- "name": "vendorContainer",
3469
+ "name": "isSelectedCell",
3470
+ "kind": "boolean",
3471
+ "description": "Whether cell that was clicked is also currently selected",
3472
+ "uiLabel": "Is Selected Cell"
3473
+ },
3474
+ {
3475
+ "name": "isSingleSelectedColumn",
3476
+ "kind": "boolean",
3477
+ "description": "Whether Column that was clicked is only column with selected cells",
3478
+ "uiLabel": "Is Single Selected Column"
3479
+ },
3480
+ {
3481
+ "name": "primaryKeyValue",
3290
3482
  "kind": "unknown",
3291
- "description": "Div containing underlying vendor grid- string Id or HTMLElement",
3292
- "uiLabel": "Vendor Container",
3293
- "isOptional": true,
3294
- "gridInfo": "item",
3295
- "defaultValue": ""grid""
3483
+ "description": "Value of Primary Key column in current row",
3484
+ "uiLabel": "Primary Key Value"
3296
3485
  },
3297
3486
  {
3298
- "name": "vendorContainerWaitTimeout",
3299
- "kind": "number",
3300
- "description": "Useful when the vendor grid is instantiated separately (eg: by vendor wrappers like React and Angular flavors). This is how long AdapTable waits for the vendor grid before giving up connecting to it.",
3301
- "uiLabel": "Vendor Container Wait Timeout",
3302
- "isOptional": true,
3303
- "gridInfo": "item",
3304
- "defaultValue": "60s"
3487
+ "name": "rowNode",
3488
+ "kind": "REFERENCE",
3489
+ "description": "Current AG Grid row node",
3490
+ "uiLabel": "Row Node",
3491
+ "reference": "unknown"
3492
+ },
3493
+ {
3494
+ "name": "selectedCellInfo",
3495
+ "kind": "REFERENCE",
3496
+ "description": "Currently selected cells in the grid",
3497
+ "uiLabel": "Selected Cell Info",
3498
+ "reference": "SelectedCellInfo"
3499
+ },
3500
+ {
3501
+ "name": "selectedRowInfo",
3502
+ "kind": "REFERENCE",
3503
+ "description": "Currently selected rows in the grid",
3504
+ "uiLabel": "Selected Row Info",
3505
+ "reference": "SelectedRowInfo"
3305
3506
  }
3306
3507
  ]
3307
3508
  },
@@ -3456,10 +3657,15 @@ exports.ADAPTABLE_METAMODEL = {
3456
3657
  }
3457
3658
  ]
3458
3659
  },
3660
+ "CustomSortPermittedValues": {
3661
+ "name": "CustomSortPermittedValues",
3662
+ "kind": "Interface",
3663
+ "description": "Custom column values for custom sort."
3664
+ },
3459
3665
  "CustomSortState": {
3460
3666
  "name": "CustomSortState",
3461
3667
  "kind": "Interface",
3462
- "description": "Predefined Configuration for Custom Sort function",
3668
+ "description": "Predefined Configuration for Custom Sort Module",
3463
3669
  "properties": [
3464
3670
  {
3465
3671
  "name": "CustomSorts",
@@ -4013,10 +4219,11 @@ exports.ADAPTABLE_METAMODEL = {
4013
4219
  "uiLabel": "Changed At"
4014
4220
  },
4015
4221
  {
4016
- "name": "columnId",
4017
- "kind": "string",
4018
- "description": "Id of the Column in which the cell is situated",
4019
- "uiLabel": "Column Id"
4222
+ "name": "column",
4223
+ "kind": "REFERENCE",
4224
+ "description": "Column in which cell is situated",
4225
+ "uiLabel": "Column",
4226
+ "reference": "AdaptableColumn"
4020
4227
  },
4021
4228
  {
4022
4229
  "name": "newValue",
@@ -4046,7 +4253,7 @@ exports.ADAPTABLE_METAMODEL = {
4046
4253
  {
4047
4254
  "name": "rowNode",
4048
4255
  "kind": "REFERENCE",
4049
- "description": "RowNode that contains the cell (an AG Grid object)",
4256
+ "description": "AG Grid RowNode that contains the cell",
4050
4257
  "uiLabel": "Row Node",
4051
4258
  "isOptional": true,
4052
4259
  "reference": "unknown"
@@ -4118,10 +4325,10 @@ exports.ADAPTABLE_METAMODEL = {
4118
4325
  "defaultValue": "false"
4119
4326
  },
4120
4327
  {
4121
- "name": "filterDataChange",
4328
+ "name": "showDataChange",
4122
4329
  "kind": "unknown",
4123
4330
  "description": "Function enabling specific data changes to be included/excluded from the Data Change History",
4124
- "uiLabel": "Filter Data Change",
4331
+ "uiLabel": "Show Data Change",
4125
4332
  "isOptional": true,
4126
4333
  "gridInfo": "item",
4127
4334
  "defaultValue": "undefined (all data changes are logged)"
@@ -4224,7 +4431,7 @@ exports.ADAPTABLE_METAMODEL = {
4224
4431
  "DataSourceState": {
4225
4432
  "name": "DataSourceState",
4226
4433
  "kind": "Interface",
4227
- "description": "Predefined Configuration for Data Source function",
4434
+ "description": "Predefined Configuration for Data Source Module",
4228
4435
  "properties": [
4229
4436
  {
4230
4437
  "name": "CurrentDataSource",
@@ -4247,6 +4454,13 @@ exports.ADAPTABLE_METAMODEL = {
4247
4454
  "kind": "Interface",
4248
4455
  "description": "Object passed into Adaptable Grid Api data management methods",
4249
4456
  "properties": [
4457
+ {
4458
+ "name": "addIndex",
4459
+ "kind": "number",
4460
+ "description": "Index where to add new rows",
4461
+ "uiLabel": "Add Index",
4462
+ "isOptional": true
4463
+ },
4250
4464
  {
4251
4465
  "name": "callback",
4252
4466
  "kind": "unknown",
@@ -4257,7 +4471,7 @@ exports.ADAPTABLE_METAMODEL = {
4257
4471
  {
4258
4472
  "name": "runAsync",
4259
4473
  "kind": "boolean",
4260
- "description": "Whether data should be updated aysnchoronously",
4474
+ "description": "Whether data should be updated asynchronously",
4261
4475
  "uiLabel": "Run Async",
4262
4476
  "isOptional": true
4263
4477
  }
@@ -4332,6 +4546,11 @@ exports.ADAPTABLE_METAMODEL = {
4332
4546
  }
4333
4547
  ]
4334
4548
  },
4549
+ "EditLookUpPermittedValues": {
4550
+ "name": "EditLookUpPermittedValues",
4551
+ "kind": "Interface",
4552
+ "description": "Used to define permitted values for inline column editor"
4553
+ },
4335
4554
  "EditOptions": {
4336
4555
  "name": "EditOptions",
4337
4556
  "kind": "Interface",
@@ -4349,7 +4568,7 @@ exports.ADAPTABLE_METAMODEL = {
4349
4568
  {
4350
4569
  "name": "isCellEditable",
4351
4570
  "kind": "unknown",
4352
- "description": "Function which returns true if given cell is editable",
4571
+ "description": "Function which checks if given Grid Cell is editable",
4353
4572
  "uiLabel": "Is Cell Editable",
4354
4573
  "isOptional": true
4355
4574
  },
@@ -4829,7 +5048,7 @@ exports.ADAPTABLE_METAMODEL = {
4829
5048
  "ExportState": {
4830
5049
  "name": "ExportState",
4831
5050
  "kind": "Interface",
4832
- "description": "Predefined Configuration for Export function",
5051
+ "description": "Predefined Configuration for Export Module",
4833
5052
  "properties": [
4834
5053
  {
4835
5054
  "name": "CurrentDestination",
@@ -5170,7 +5389,7 @@ exports.ADAPTABLE_METAMODEL = {
5170
5389
  {
5171
5390
  "name": "autoApplyFilter",
5172
5391
  "kind": "boolean",
5173
- "description": "Apply selected filters in Filter Form as soon as they are clicked; if false an Apply Filter button is displayed",
5392
+ "description": "Apply selected filters (in Filter Form or Quick Filter Bar) as soon as they are clicked; if false an Apply Filter button is displayed",
5174
5393
  "uiLabel": "Auto Apply Filter",
5175
5394
  "isOptional": true,
5176
5395
  "gridInfo": "item",
@@ -5188,7 +5407,7 @@ exports.ADAPTABLE_METAMODEL = {
5188
5407
  {
5189
5408
  "name": "defaultDateColumnFilter",
5190
5409
  "kind": "unknown",
5191
- "description": "Default filter type for date Columns in Quick Filter",
5410
+ "description": "Default filter type for date Columns",
5192
5411
  "uiLabel": "Default Date Column Filter",
5193
5412
  "isOptional": true,
5194
5413
  "gridInfo": "item",
@@ -5206,7 +5425,7 @@ exports.ADAPTABLE_METAMODEL = {
5206
5425
  {
5207
5426
  "name": "defaultNumericColumnFilter",
5208
5427
  "kind": "unknown",
5209
- "description": "Default filter type for numeric Columns in Quick Filter",
5428
+ "description": "Default filter type for numeric Columns",
5210
5429
  "uiLabel": "Default Numeric Column Filter",
5211
5430
  "isOptional": true,
5212
5431
  "gridInfo": "item",
@@ -5215,7 +5434,7 @@ exports.ADAPTABLE_METAMODEL = {
5215
5434
  {
5216
5435
  "name": "defaultStringColumnFilter",
5217
5436
  "kind": "unknown",
5218
- "description": "Default filter type for string Columns in Quick Filter",
5437
+ "description": "Default filter type for string Columns",
5219
5438
  "uiLabel": "Default String Column Filter",
5220
5439
  "isOptional": true,
5221
5440
  "gridInfo": "item",
@@ -5224,7 +5443,7 @@ exports.ADAPTABLE_METAMODEL = {
5224
5443
  {
5225
5444
  "name": "enableFilterOnSpecialColumns",
5226
5445
  "kind": "boolean",
5227
- "description": "Allows filtering on Calculated, Action & FreeText columns",
5446
+ "description": "Allows filtering on Calculated & FreeText columns",
5228
5447
  "uiLabel": "Enable Filter On Special Columns",
5229
5448
  "isOptional": true,
5230
5449
  "gridInfo": "item",
@@ -5251,7 +5470,7 @@ exports.ADAPTABLE_METAMODEL = {
5251
5470
  {
5252
5471
  "name": "hideQuickFilterDropdown",
5253
5472
  "kind": "unknown",
5254
- "description": "Sets whether to display Dropdown in Quick Filter Bar for given Column",
5473
+ "description": "Hides the Dropdown in Quick Filter Bar for a given Column",
5255
5474
  "uiLabel": "Hide Quick Filter Dropdown",
5256
5475
  "isOptional": true,
5257
5476
  "defaultValue": "undefined"
@@ -5259,7 +5478,7 @@ exports.ADAPTABLE_METAMODEL = {
5259
5478
  {
5260
5479
  "name": "hideQuickFilterInput",
5261
5480
  "kind": "unknown",
5262
- "description": "Sets whether to display the Input in Quick Filter Bar for given Column",
5481
+ "description": "Hides the Input in Quick Filter Bar for a given Column",
5263
5482
  "uiLabel": "Hide Quick Filter Input",
5264
5483
  "isOptional": true,
5265
5484
  "defaultValue": "undefined"
@@ -5291,6 +5510,15 @@ exports.ADAPTABLE_METAMODEL = {
5291
5510
  "gridInfo": "item",
5292
5511
  "defaultValue": "'mouseenter'"
5293
5512
  },
5513
+ {
5514
+ "name": "quickFilterValuesTrigger",
5515
+ "kind": "unknown",
5516
+ "description": "Whether to open Quick Filter Values dropdown with mouse hover or click",
5517
+ "uiLabel": "Quick Filter Values Trigger",
5518
+ "isOptional": true,
5519
+ "gridInfo": "item",
5520
+ "defaultValue": "'mouseenter'"
5521
+ },
5294
5522
  {
5295
5523
  "name": "sortColumnValuesInFilter",
5296
5524
  "kind": "boolean",
@@ -5303,7 +5531,7 @@ exports.ADAPTABLE_METAMODEL = {
5303
5531
  {
5304
5532
  "name": "systemFilters",
5305
5533
  "kind": "REFERENCE",
5306
- "description": "Which Adaptable System Filter Predicates are available; provide empty array for none or leave unset for all",
5534
+ "description": "Which Adaptable System Filter Predicates are available",
5307
5535
  "uiLabel": "System Filters",
5308
5536
  "isOptional": true,
5309
5537
  "reference": "unknown"
@@ -5311,7 +5539,7 @@ exports.ADAPTABLE_METAMODEL = {
5311
5539
  {
5312
5540
  "name": "useAdaptableFilterForm",
5313
5541
  "kind": "unknown",
5314
- "description": "Uses Adaptable's Filter Form in Column header menu for all columns if 'true' (the default) or those listed; otherwise vendor grid one will be used",
5542
+ "description": "Uses Adaptable's Filter Form in Column header menu for all columns if 'true' (the default) or those listed, in preference to AG Grid's Filter Form",
5315
5543
  "uiLabel": "Use Adaptable Filter Form",
5316
5544
  "isOptional": true,
5317
5545
  "defaultValue": "true"
@@ -5319,23 +5547,37 @@ exports.ADAPTABLE_METAMODEL = {
5319
5547
  {
5320
5548
  "name": "useAdaptableQuickFilter",
5321
5549
  "kind": "unknown",
5322
- "description": "Use Adaptable's Quick Filter for all columns if 'true' (the default) or those listed; otherwise vendor grid one will be used",
5550
+ "description": "Use Adaptable's Quick Filter for all columns if 'true' (the default) or those listed, in preference to AG Grid's Floating Filter",
5323
5551
  "uiLabel": "Use Adaptable Quick Filter",
5324
5552
  "isOptional": true,
5325
5553
  "gridInfo": "item",
5326
5554
  "defaultValue": "true"
5327
5555
  },
5328
5556
  {
5329
- "name": "useVendorFilterFormStyle",
5557
+ "name": "useAgGridFilterFormStyle",
5330
5558
  "kind": "boolean",
5331
- "description": "Styles Adaptable Filter Form to match styling of current vendor grid",
5332
- "uiLabel": "Use Vendor Filter Form Style",
5559
+ "description": "Styles Adaptable Filter Form to match AG Grid's current styling",
5560
+ "uiLabel": "Use Ag Grid Filter Form Style",
5333
5561
  "isOptional": true,
5334
5562
  "gridInfo": "item",
5335
5563
  "defaultValue": "true"
5336
5564
  }
5337
5565
  ]
5338
5566
  },
5567
+ "FilterPermittedValues": {
5568
+ "name": "FilterPermittedValues",
5569
+ "kind": "Interface",
5570
+ "description": "Used to define values inside the floating filter and floating filter (quick filter)",
5571
+ "properties": [
5572
+ {
5573
+ "name": "suppressFilterSearchBar",
5574
+ "kind": "boolean",
5575
+ "description": "Prevents AdapTable from filtering the list of values client-side; When true, values is called each time the search bar is changed false",
5576
+ "uiLabel": "Suppress Filter Search Bar",
5577
+ "isOptional": true
5578
+ }
5579
+ ]
5580
+ },
5339
5581
  "FilterState": {
5340
5582
  "name": "FilterState",
5341
5583
  "kind": "Interface",
@@ -5351,7 +5593,7 @@ exports.ADAPTABLE_METAMODEL = {
5351
5593
  {
5352
5594
  "name": "IsQuickFilterVisible",
5353
5595
  "kind": "boolean",
5354
- "description": "Whether to display Quick Filter Bar - at least one column must have Quick Filter set to true",
5596
+ "description": "Whether to display Quick Filter Bar between Column Header and the Grid",
5355
5597
  "uiLabel": "Is Quick Filter Visible",
5356
5598
  "isOptional": true,
5357
5599
  "defaultValue": "true"
@@ -5717,7 +5959,7 @@ exports.ADAPTABLE_METAMODEL = {
5717
5959
  "FormatColumnState": {
5718
5960
  "name": "FormatColumnState",
5719
5961
  "kind": "Interface",
5720
- "description": "Predefined Configuration for Format Column function",
5962
+ "description": "Predefined Configuration for Format Column Module",
5721
5963
  "properties": [
5722
5964
  {
5723
5965
  "name": "FormatColumns",
@@ -5754,6 +5996,14 @@ exports.ADAPTABLE_METAMODEL = {
5754
5996
  "uiLabel": "Default Value",
5755
5997
  "isOptional": true
5756
5998
  },
5999
+ {
6000
+ "name": "FreeTextColumnSettings",
6001
+ "kind": "REFERENCE",
6002
+ "description": "Additional optional properties for Column (e.g. filterable, resizable)",
6003
+ "uiLabel": "Free Text Column Settings",
6004
+ "isOptional": true,
6005
+ "reference": "FreeTextColumnSettings"
6006
+ },
5757
6007
  {
5758
6008
  "name": "FreeTextStoredValues",
5759
6009
  "kind": "unknown",
@@ -5863,10 +6113,15 @@ exports.ADAPTABLE_METAMODEL = {
5863
6113
  }
5864
6114
  ]
5865
6115
  },
6116
+ "FreeTextColumnSettings": {
6117
+ "name": "FreeTextColumnSettings",
6118
+ "kind": "Interface",
6119
+ "description": "Set of optional properties that define a FreeText Columns behaviour"
6120
+ },
5866
6121
  "FreeTextColumnState": {
5867
6122
  "name": "FreeTextColumnState",
5868
6123
  "kind": "Interface",
5869
- "description": "Predefined Configuration for the Free Text Column function",
6124
+ "description": "Predefined Configuration for the Free Text Column Module",
5870
6125
  "properties": [
5871
6126
  {
5872
6127
  "name": "FreeTextColumns",
@@ -5899,7 +6154,7 @@ exports.ADAPTABLE_METAMODEL = {
5899
6154
  "GeneralOptions": {
5900
6155
  "name": "GeneralOptions",
5901
6156
  "kind": "Interface",
5902
- "description": "General options for configuring AdapTable including managing Primary Keys.",
6157
+ "description": "General options for configuring AdapTable including managing Primary Keys",
5903
6158
  "properties": [
5904
6159
  {
5905
6160
  "name": "alternativeModuleNames",
@@ -6236,7 +6491,7 @@ exports.ADAPTABLE_METAMODEL = {
6236
6491
  {
6237
6492
  "name": "addGridData",
6238
6493
  "kind": "function",
6239
- "description": "Adds rows to Adaptable (and underlying grid)",
6494
+ "description": "Adds rows to Adaptable (and AG Grid)",
6240
6495
  "uiLabel": "Add Grid Data"
6241
6496
  },
6242
6497
  {
@@ -6278,7 +6533,7 @@ exports.ADAPTABLE_METAMODEL = {
6278
6533
  {
6279
6534
  "name": "deleteGridData",
6280
6535
  "kind": "function",
6281
- "description": "Deletes rows from Adaptable (and underlying grid)",
6536
+ "description": "Deletes rows from Adaptable (and AG Grid)",
6282
6537
  "uiLabel": "Delete Grid Data"
6283
6538
  },
6284
6539
  {
@@ -6332,13 +6587,13 @@ exports.ADAPTABLE_METAMODEL = {
6332
6587
  {
6333
6588
  "name": "fireCellChangedEvent",
6334
6589
  "kind": "function",
6335
- "description": "Fires Grid Data Changed Event - when any data in vendor grid data set has changed",
6590
+ "description": "Fires Cell Changed Changed Event - when any data in AG Grid's dataset has changed",
6336
6591
  "uiLabel": "Fire Cell Changed Event"
6337
6592
  },
6338
6593
  {
6339
6594
  "name": "fireGridDataChangedEvent",
6340
6595
  "kind": "function",
6341
- "description": "Fires Grid Data Changed Event - when any data in vendor grid data set has changed",
6596
+ "description": "Fires Grid Data Changed Event - when a row has changed in AG Grid",
6342
6597
  "uiLabel": "Fire Grid Data Changed Event"
6343
6598
  },
6344
6599
  {
@@ -6347,6 +6602,12 @@ exports.ADAPTABLE_METAMODEL = {
6347
6602
  "description": "Fires Search Changed Event - typically used to enable server searching and filtering",
6348
6603
  "uiLabel": "Fire Search Changed Event"
6349
6604
  },
6605
+ {
6606
+ "name": "getAgGridInstance",
6607
+ "kind": "function",
6608
+ "description": "Returns Ag Grid instance (passed into Adaptable Options at start-up)",
6609
+ "uiLabel": "Get Ag Grid Instance"
6610
+ },
6350
6611
  {
6351
6612
  "name": "getCellDisplayValue",
6352
6613
  "kind": "function",
@@ -6401,6 +6662,12 @@ exports.ADAPTABLE_METAMODEL = {
6401
6662
  "description": "Get keys for any open rows in Row Grouping",
6402
6663
  "uiLabel": "Get Expand Row Groups Keys"
6403
6664
  },
6665
+ {
6666
+ "name": "getFilteredData",
6667
+ "kind": "function",
6668
+ "description": "Retrieves filtered data from the grid",
6669
+ "uiLabel": "Get Filtered Data"
6670
+ },
6404
6671
  {
6405
6672
  "name": "getFirstRowNode",
6406
6673
  "kind": "function",
@@ -6419,6 +6686,18 @@ exports.ADAPTABLE_METAMODEL = {
6419
6686
  "description": "Retrieves Cell in given Row and Column",
6420
6687
  "uiLabel": "Get Grid Cell From Row Node"
6421
6688
  },
6689
+ {
6690
+ "name": "getGridContainerElement",
6691
+ "kind": "function",
6692
+ "description": "Returns the Grid Container in which the Adaptable Instance is present",
6693
+ "uiLabel": "Get Grid Container Element"
6694
+ },
6695
+ {
6696
+ "name": "getGridData",
6697
+ "kind": "function",
6698
+ "description": "Retrieves all data from the grid",
6699
+ "uiLabel": "Get Grid Data"
6700
+ },
6422
6701
  {
6423
6702
  "name": "getGridState",
6424
6703
  "kind": "function",
@@ -6473,12 +6752,6 @@ exports.ADAPTABLE_METAMODEL = {
6473
6752
  "description": "Returns all current Selected Rows in AdapTable",
6474
6753
  "uiLabel": "Get Selected Row Info"
6475
6754
  },
6476
- {
6477
- "name": "getVendorGrid",
6478
- "kind": "function",
6479
- "description": "Returns underlying Vendor Grid (object passed into Adaptable Options at start-up)",
6480
- "uiLabel": "Get Vendor Grid"
6481
- },
6482
6755
  {
6483
6756
  "name": "getVisibleColumnCount",
6484
6757
  "kind": "function",
@@ -6581,6 +6854,12 @@ exports.ADAPTABLE_METAMODEL = {
6581
6854
  "description": "Refresh Cells in AdapTable",
6582
6855
  "uiLabel": "Refresh Cells"
6583
6856
  },
6857
+ {
6858
+ "name": "refreshRow",
6859
+ "kind": "function",
6860
+ "description": "Forces a render of a row",
6861
+ "uiLabel": "Refresh Row"
6862
+ },
6584
6863
  {
6585
6864
  "name": "selectAll",
6586
6865
  "kind": "function",
@@ -6623,6 +6902,12 @@ exports.ADAPTABLE_METAMODEL = {
6623
6902
  "description": "Sorts AdapTable using given Column Sorts",
6624
6903
  "uiLabel": "Set Adaptable Sorting"
6625
6904
  },
6905
+ {
6906
+ "name": "setCellsValue",
6907
+ "kind": "function",
6908
+ "description": "Updates multiple cells",
6909
+ "uiLabel": "Set Cells Value"
6910
+ },
6626
6911
  {
6627
6912
  "name": "setCellValue",
6628
6913
  "kind": "function",
@@ -6668,7 +6953,7 @@ exports.ADAPTABLE_METAMODEL = {
6668
6953
  {
6669
6954
  "name": "updateGridData",
6670
6955
  "kind": "function",
6671
- "description": "Updates Adaptable (and underlying grid) with rows that have changed",
6956
+ "description": "Updates Adaptable (and AG Grid) with rows that have changed",
6672
6957
  "uiLabel": "Update Grid Data"
6673
6958
  }
6674
6959
  ]
@@ -6679,10 +6964,11 @@ exports.ADAPTABLE_METAMODEL = {
6679
6964
  "description": "Defines a Cell in Adaptable - every cell is an intersection of a Column Id and a Primary Key Value",
6680
6965
  "properties": [
6681
6966
  {
6682
- "name": "columnId",
6683
- "kind": "string",
6967
+ "name": "column",
6968
+ "kind": "REFERENCE",
6684
6969
  "description": "Column in which cell is situtated",
6685
- "uiLabel": "Column Id"
6970
+ "uiLabel": "Column",
6971
+ "reference": "AdaptableColumn"
6686
6972
  },
6687
6973
  {
6688
6974
  "name": "displayValue",
@@ -7390,6 +7676,12 @@ exports.ADAPTABLE_METAMODEL = {
7390
7676
  "description": "Saves given Layout into Adaptable State",
7391
7677
  "uiLabel": "Save Layout"
7392
7678
  },
7679
+ {
7680
+ "name": "setColumnCaption",
7681
+ "kind": "function",
7682
+ "description": "Sets a new Caption / Header for a Column (this Layout only)",
7683
+ "uiLabel": "Set Column Caption"
7684
+ },
7393
7685
  {
7394
7686
  "name": "setLayout",
7395
7687
  "kind": "function",
@@ -7472,7 +7764,7 @@ exports.ADAPTABLE_METAMODEL = {
7472
7764
  {
7473
7765
  "name": "createDefaultLayout",
7474
7766
  "kind": "boolean",
7475
- "description": "Whether a "Default Layout" will be created in addition to Layouts in Config (if none there, Default Layout is always created)",
7767
+ "description": "Whether a "Default Layout" will be created in addition to Layouts provided in Config",
7476
7768
  "uiLabel": "Create Default Layout",
7477
7769
  "isOptional": true,
7478
7770
  "gridInfo": "item",
@@ -7492,7 +7784,7 @@ exports.ADAPTABLE_METAMODEL = {
7492
7784
  "LayoutState": {
7493
7785
  "name": "LayoutState",
7494
7786
  "kind": "Interface",
7495
- "description": "Predefined Configuration for the Layout function",
7787
+ "description": "Predefined Configuration for the Layout Module",
7496
7788
  "properties": [
7497
7789
  {
7498
7790
  "name": "CurrentLayout",
@@ -7564,92 +7856,6 @@ exports.ADAPTABLE_METAMODEL = {
7564
7856
  }
7565
7857
  ]
7566
7858
  },
7567
- "MenuContext": {
7568
- "name": "MenuContext",
7569
- "kind": "Interface",
7570
- "description": "Provides full details about current Menu; used for both Column and Context Menus",
7571
- "properties": [
7572
- {
7573
- "name": "adaptableApi",
7574
- "kind": "REFERENCE",
7575
- "description": "The Adaptable Api - included as a convenience",
7576
- "uiLabel": "Adaptable Api",
7577
- "reference": "AdaptableApi"
7578
- },
7579
- {
7580
- "name": "adaptableColumn",
7581
- "kind": "REFERENCE",
7582
- "description": "Current Adaptable Column",
7583
- "uiLabel": "Adaptable Column",
7584
- "reference": "AdaptableColumn"
7585
- },
7586
- {
7587
- "name": "gridCell",
7588
- "kind": "REFERENCE",
7589
- "description": "Cell that has been clicked; contains cell value",
7590
- "uiLabel": "Grid Cell",
7591
- "reference": "GridCell"
7592
- },
7593
- {
7594
- "name": "isGroupedNode",
7595
- "kind": "boolean",
7596
- "description": "Whether current row node is grouped",
7597
- "uiLabel": "Is Grouped Node"
7598
- },
7599
- {
7600
- "name": "isRowGroupColumn",
7601
- "kind": "boolean",
7602
- "description": "Whether current Column is Row Group",
7603
- "uiLabel": "Is Row Group Column"
7604
- },
7605
- {
7606
- "name": "isSelectedCell",
7607
- "kind": "boolean",
7608
- "description": "Whether cell that was clicked is also currently selected",
7609
- "uiLabel": "Is Selected Cell"
7610
- },
7611
- {
7612
- "name": "isSingleSelectedColumn",
7613
- "kind": "boolean",
7614
- "description": "Whether Column that was clicked is only column with selected cells",
7615
- "uiLabel": "Is Single Selected Column"
7616
- },
7617
- {
7618
- "name": "primaryKeyValue",
7619
- "kind": "unknown",
7620
- "description": "Value of Primary Key column in current row",
7621
- "uiLabel": "Primary Key Value"
7622
- },
7623
- {
7624
- "name": "rowNode",
7625
- "kind": "REFERENCE",
7626
- "description": "Current AG Grid row node",
7627
- "uiLabel": "Row Node",
7628
- "reference": "unknown"
7629
- },
7630
- {
7631
- "name": "selectedCellInfo",
7632
- "kind": "REFERENCE",
7633
- "description": "Currently selected cells in the grid",
7634
- "uiLabel": "Selected Cell Info",
7635
- "reference": "SelectedCellInfo"
7636
- },
7637
- {
7638
- "name": "selectedRowInfo",
7639
- "kind": "REFERENCE",
7640
- "description": "Currently selected rows in the grid",
7641
- "uiLabel": "Selected Row Info",
7642
- "reference": "SelectedRowInfo"
7643
- },
7644
- {
7645
- "name": "vendorColumn",
7646
- "kind": "REFERENCE",
7647
- "description": "Current Vendor Grid Column",
7648
- "uiLabel": "Vendor Column",
7649
- "reference": "unknown"
7650
- }
7651
- ]
7652
- },
7653
7859
  "MenuOptions": {
7654
7860
  "name": "MenuOptions",
7655
7861
  "kind": "Interface",
@@ -7665,11 +7871,11 @@ exports.ADAPTABLE_METAMODEL = {
7665
7871
  {
7666
7872
  "name": "columnMenuOrder",
7667
7873
  "kind": "unknown",
7668
- "description": "Order in which Vendor, AdapTable and User Menu items will appear in Column Menu",
7874
+ "description": "Order in which AG Grid, AdapTable and User Menu items will appear in Column Menu",
7669
7875
  "uiLabel": "Column Menu Order",
7670
7876
  "isOptional": true,
7671
7877
  "gridInfo": "item",
7672
- "defaultValue": "'vendor', 'adaptable', 'user'"
7878
+ "defaultValue": "'aggrid', 'adaptable', 'user'"
7673
7879
  },
7674
7880
  {
7675
7881
  "name": "contextMenuItems",
@@ -7681,11 +7887,11 @@ exports.ADAPTABLE_METAMODEL = {
7681
7887
  {
7682
7888
  "name": "contextMenuOrder",
7683
7889
  "kind": "unknown",
7684
- "description": "Order in which Vendor, AdapTable and User Menu items will appear in Context Menu",
7890
+ "description": "Order in which AG grid, AdapTable and User Menu items will appear in Context Menu",
7685
7891
  "uiLabel": "Context Menu Order",
7686
7892
  "isOptional": true,
7687
7893
  "gridInfo": "item",
7688
- "defaultValue": "'vendor', 'adaptable', 'user'"
7894
+ "defaultValue": "'aggrid', 'adaptable', 'user'"
7689
7895
  },
7690
7896
  {
7691
7897
  "name": "showAdaptableColumnMenu",
@@ -7753,6 +7959,13 @@ exports.ADAPTABLE_METAMODEL = {
7753
7959
  "uiLabel": "Alert Forms",
7754
7960
  "isOptional": true
7755
7961
  },
7962
+ {
7963
+ "name": "alertMessageText",
7964
+ "kind": "unknown",
7965
+ "description": "Function providing Message to display in Alert; if empty, AdapTable provides dynamically",
7966
+ "uiLabel": "Alert Message Text",
7967
+ "isOptional": true
7968
+ },
7756
7969
  {
7757
7970
  "name": "cellHighlightDuration",
7758
7971
  "kind": "number",
@@ -7853,6 +8066,14 @@ exports.ADAPTABLE_METAMODEL = {
7853
8066
  "defaultValue": "'BottomRight'",
7854
8067
  "reference": "unknown"
7855
8068
  },
8069
+ {
8070
+ "name": "showApplicationIcon",
8071
+ "kind": "boolean",
8072
+ "description": "Displays the application icon in Notifications (if provided in `UserInterfaceOptions`)",
8073
+ "uiLabel": "Show Application Icon",
8074
+ "isOptional": true,
8075
+ "defaultValue": "false"
8076
+ },
7856
8077
  {
7857
8078
  "name": "showProgressBar",
7858
8079
  "kind": "boolean",
@@ -8142,6 +8363,20 @@ exports.ADAPTABLE_METAMODEL = {
8142
8363
  "kind": "Interface",
8143
8364
  "description": "Internal State used by AdapTable for managing the OpenFin plugin"
8144
8365
  },
8366
+ "PermittedValues": {
8367
+ "name": "PermittedValues",
8368
+ "kind": "Interface",
8369
+ "description": "Permitted/possible values, when column values can be selected (e.g. sort, bulk-update)",
8370
+ "properties": [
8371
+ {
8372
+ "name": "values",
8373
+ "kind": "unknown",
8374
+ "description": "Values to display: either hardcoded list or a function",
8375
+ "uiLabel": "Values",
8376
+ "isOptional": true
8377
+ }
8378
+ ]
8379
+ },
8145
8380
  "PluginsApi": {
8146
8381
  "name": "PluginsApi",
8147
8382
  "kind": "Interface",
@@ -8273,13 +8508,6 @@ exports.ADAPTABLE_METAMODEL = {
8273
8508
  "kind": "Interface",
8274
8509
  "description": "This is the main Predefined Config interface which developers will populate at design-time",
8275
8510
  "properties": [
8276
- {
8277
- "name": "ActionColumn",
8278
- "kind": "unknown",
8279
- "description": "",
8280
- "uiLabel": "Action Column",
8281
- "isOptional": true
8282
- },
8283
8511
  {
8284
8512
  "name": "Alert",
8285
8513
  "kind": "REFERENCE",
@@ -8304,13 +8532,6 @@ exports.ADAPTABLE_METAMODEL = {
8304
8532
  "isOptional": true,
8305
8533
  "reference": "CalculatedColumnState"
8306
8534
  },
8307
- {
8308
- "name": "CellSummary",
8309
- "kind": "unknown",
8310
- "description": "",
8311
- "uiLabel": "Cell Summary",
8312
- "isOptional": true
8313
- },
8314
8535
  {
8315
8536
  "name": "Chart",
8316
8537
  "kind": "REFERENCE",
@@ -8351,13 +8572,6 @@ exports.ADAPTABLE_METAMODEL = {
8351
8572
  "isOptional": true,
8352
8573
  "reference": "DataSourceState"
8353
8574
  },
8354
- {
8355
- "name": "Entitlements",
8356
- "kind": "unknown",
8357
- "description": "",
8358
- "uiLabel": "Entitlements",
8359
- "isOptional": true
8360
- },
8361
8575
  {
8362
8576
  "name": "Export",
8363
8577
  "kind": "REFERENCE",
@@ -8374,14 +8588,6 @@ exports.ADAPTABLE_METAMODEL = {
8374
8588
  "isOptional": true,
8375
8589
  "reference": "FilterState"
8376
8590
  },
8377
- {
8378
- "name": "FlashingCell",
8379
- "kind": "REFERENCE",
8380
- "description": "",
8381
- "uiLabel": "Flashing Cell",
8382
- "isOptional": true,
8383
- "reference": "unknown"
8384
- },
8385
8591
  {
8386
8592
  "name": "FormatColumn",
8387
8593
  "kind": "REFERENCE",
@@ -8398,14 +8604,6 @@ exports.ADAPTABLE_METAMODEL = {
8398
8604
  "isOptional": true,
8399
8605
  "reference": "FreeTextColumnState"
8400
8606
  },
8401
- {
8402
- "name": "GradientColumn",
8403
- "kind": "REFERENCE",
8404
- "description": "",
8405
- "uiLabel": "Gradient Column",
8406
- "isOptional": true,
8407
- "reference": "unknown"
8408
- },
8409
8607
  {
8410
8608
  "name": "Layout",
8411
8609
  "kind": "REFERENCE",
@@ -8414,14 +8612,6 @@ exports.ADAPTABLE_METAMODEL = {
8414
8612
  "isOptional": true,
8415
8613
  "reference": "LayoutState"
8416
8614
  },
8417
- {
8418
- "name": "PercentBar",
8419
- "kind": "REFERENCE",
8420
- "description": "",
8421
- "uiLabel": "Percent Bar",
8422
- "isOptional": true,
8423
- "reference": "unknown"
8424
- },
8425
8615
  {
8426
8616
  "name": "PlusMinus",
8427
8617
  "kind": "REFERENCE",
@@ -8470,13 +8660,6 @@ exports.ADAPTABLE_METAMODEL = {
8470
8660
  "isOptional": true,
8471
8661
  "reference": "SparklineColumnState"
8472
8662
  },
8473
- {
8474
- "name": "SystemStatus",
8475
- "kind": "unknown",
8476
- "description": "",
8477
- "uiLabel": "System Status",
8478
- "isOptional": true
8479
- },
8480
8663
  {
8481
8664
  "name": "Theme",
8482
8665
  "kind": "REFERENCE",
@@ -8492,21 +8675,6 @@ exports.ADAPTABLE_METAMODEL = {
8492
8675
  "uiLabel": "Tool Panel",
8493
8676
  "isOptional": true,
8494
8677
  "reference": "ToolPanelState"
8495
- },
8496
- {
8497
- "name": "UpdatedRow",
8498
- "kind": "REFERENCE",
8499
- "description": "",
8500
- "uiLabel": "Updated Row",
8501
- "isOptional": true,
8502
- "reference": "unknown"
8503
- },
8504
- {
8505
- "name": "UserInterface",
8506
- "kind": "unknown",
8507
- "description": "Section (only populated at Design Time) that manages UI-related elements in AdapTable",
8508
- "uiLabel": "User Interface",
8509
- "isOptional": true
8510
8678
  }
8511
8679
  ]
8512
8680
  },
@@ -8907,19 +9075,19 @@ exports.ADAPTABLE_METAMODEL = {
8907
9075
  "QuickSearchState": {
8908
9076
  "name": "QuickSearchState",
8909
9077
  "kind": "Interface",
8910
- "description": "Predefined Configuration for Quick Search function",
9078
+ "description": "Predefined Configuration for Quick Search Module",
8911
9079
  "properties": [
8912
9080
  {
8913
9081
  "name": "QuickSearchText",
8914
9082
  "kind": "string",
8915
- "description": "Quick Search to run at start up (rarely set at design time)",
9083
+ "description": "Last Quick Search that was run (and will run again at start up)",
8916
9084
  "uiLabel": "Quick Search Text",
8917
9085
  "isOptional": true
8918
9086
  },
8919
9087
  {
8920
9088
  "name": "Style",
8921
9089
  "kind": "REFERENCE",
8922
- "description": "Style to use for Quick Search; uses standard `AdaptableStyle` Object",
9090
+ "description": "Style to use to highlight matching cells - uses common `AdaptableStyle` object",
8923
9091
  "uiLabel": "Style",
8924
9092
  "isOptional": true,
8925
9093
  "reference": "AdaptableStyle"
@@ -8987,32 +9155,46 @@ exports.ADAPTABLE_METAMODEL = {
8987
9155
  "kind": "Interface",
8988
9156
  "description": "Provides meta data about a Row in Adaptable",
8989
9157
  "properties": [
9158
+ {
9159
+ "name": "isDisplayed",
9160
+ "kind": "boolean",
9161
+ "description": "Is Row displayed (ie. filtered, not necessarily in viewport)",
9162
+ "uiLabel": "Is Displayed",
9163
+ "isOptional": true
9164
+ },
8990
9165
  {
8991
9166
  "name": "isExpanded",
8992
9167
  "kind": "boolean",
8993
- "description": "Whether - if a Group Row - it is currently expanded",
9168
+ "description": "Is Row expanded (if a group row)",
8994
9169
  "uiLabel": "Is Expanded",
8995
9170
  "isOptional": true
8996
9171
  },
8997
9172
  {
8998
9173
  "name": "isGroup",
8999
9174
  "kind": "boolean",
9000
- "description": "Whether Row is a Row Group",
9175
+ "description": "Is Row grouped",
9001
9176
  "uiLabel": "Is Group",
9002
9177
  "isOptional": true
9003
9178
  },
9004
9179
  {
9005
9180
  "name": "isMaster",
9006
9181
  "kind": "boolean",
9007
- "description": "Whether Row is a Master Row (in a Master-Detail grid)",
9182
+ "description": "Is Row a Master Row (in a Master-Detail grid)",
9008
9183
  "uiLabel": "Is Master",
9009
9184
  "isOptional": true
9010
9185
  },
9011
9186
  {
9012
- "name": "level",
9187
+ "name": "isSelected",
9188
+ "kind": "boolean",
9189
+ "description": "Is Row selected",
9190
+ "uiLabel": "Is Selected",
9191
+ "isOptional": true
9192
+ },
9193
+ {
9194
+ "name": "rowGroupLevel",
9013
9195
  "kind": "number",
9014
9196
  "description": "What level the Row is (if Row Grouping is active)",
9015
- "uiLabel": "Level",
9197
+ "uiLabel": "Row Group Level",
9016
9198
  "isOptional": true
9017
9199
  }
9018
9200
  ]
@@ -9324,7 +9506,7 @@ exports.ADAPTABLE_METAMODEL = {
9324
9506
  "ScheduleState": {
9325
9507
  "name": "ScheduleState",
9326
9508
  "kind": "Interface",
9327
- "description": "Predefined Configuration for the Schedule function",
9509
+ "description": "Predefined Configuration for the Schedule Module",
9328
9510
  "properties": [
9329
9511
  {
9330
9512
  "name": "Glue42Schedules",
@@ -9953,6 +10135,84 @@ exports.ADAPTABLE_METAMODEL = {
9953
10135
  }
9954
10136
  ]
9955
10137
  },
10138
+ "SpecialColumnSettings": {
10139
+ "name": "SpecialColumnSettings",
10140
+ "kind": "Interface",
10141
+ "description": "Base Settings for SpecialColumns",
10142
+ "properties": [
10143
+ {
10144
+ "name": "Aggregatable",
10145
+ "kind": "boolean",
10146
+ "description": "Whether Column can be used in an aggregation when grouping",
10147
+ "uiLabel": "Aggregatable",
10148
+ "isOptional": true,
10149
+ "defaultValue": "true"
10150
+ },
10151
+ {
10152
+ "name": "Filterable",
10153
+ "kind": "boolean",
10154
+ "description": "Whether Column is filterable",
10155
+ "uiLabel": "Filterable",
10156
+ "isOptional": true,
10157
+ "defaultValue": "true"
10158
+ },
10159
+ {
10160
+ "name": "Groupable",
10161
+ "kind": "boolean",
10162
+ "description": "Whether Column can be grouped",
10163
+ "uiLabel": "Groupable",
10164
+ "isOptional": true,
10165
+ "defaultValue": "true"
10166
+ },
10167
+ {
10168
+ "name": "Pivotable",
10169
+ "kind": "boolean",
10170
+ "description": "Whether Column can be used when grid is in pivot mode",
10171
+ "uiLabel": "Pivotable",
10172
+ "isOptional": true,
10173
+ "defaultValue": "true"
10174
+ },
10175
+ {
10176
+ "name": "Resizable",
10177
+ "kind": "boolean",
10178
+ "description": "Whether Column can be resized (by dragging column header edges)",
10179
+ "uiLabel": "Resizable",
10180
+ "isOptional": true,
10181
+ "defaultValue": "true"
10182
+ },
10183
+ {
10184
+ "name": "Sortable",
10185
+ "kind": "boolean",
10186
+ "description": "Whether Column is sortable",
10187
+ "uiLabel": "Sortable",
10188
+ "isOptional": true,
10189
+ "defaultValue": "true"
10190
+ },
10191
+ {
10192
+ "name": "SuppressMenu",
10193
+ "kind": "boolean",
10194
+ "description": "Whether if no menu should be shown for this Column header.",
10195
+ "uiLabel": "Suppress Menu",
10196
+ "isOptional": true,
10197
+ "defaultValue": "false"
10198
+ },
10199
+ {
10200
+ "name": "SuppressMovable",
10201
+ "kind": "boolean",
10202
+ "description": "Whether if this Column should be movable via dragging",
10203
+ "uiLabel": "Suppress Movable",
10204
+ "isOptional": true,
10205
+ "defaultValue": "false"
10206
+ },
10207
+ {
10208
+ "name": "Width",
10209
+ "kind": "number",
10210
+ "description": "Preferred width (in pixels) for Column; if unset, calculated dynamically by AG Grid",
10211
+ "uiLabel": "Width",
10212
+ "isOptional": true
10213
+ }
10214
+ ]
10215
+ },
9956
10216
  "StateOptions": {
9957
10217
  "name": "StateOptions",
9958
10218
  "kind": "Interface",
@@ -10144,7 +10404,7 @@ exports.ADAPTABLE_METAMODEL = {
10144
10404
  {
10145
10405
  "name": "fireTeamSharingEntityChangedEvent",
10146
10406
  "kind": "function",
10147
- "description": "Fires the Team S",
10407
+ "description": "Fires the Team Sharing Entity Changed Event",
10148
10408
  "uiLabel": "Fire Team Sharing Entity Changed Event"
10149
10409
  },
10150
10410
  {
@@ -10309,13 +10569,13 @@ exports.ADAPTABLE_METAMODEL = {
10309
10569
  {
10310
10570
  "name": "loadDarkTheme",
10311
10571
  "kind": "function",
10312
- "description": "Sets AdapTable Dark Theme - updates underlying vendor grid theme to match",
10572
+ "description": "Sets AdapTable Dark Theme - updates the AG Grid theme to match",
10313
10573
  "uiLabel": "Load Dark Theme"
10314
10574
  },
10315
10575
  {
10316
10576
  "name": "loadLightTheme",
10317
10577
  "kind": "function",
10318
- "description": "Sets AdapTable Light Theme - updates underlying vendor grid theme to match",
10578
+ "description": "Sets AdapTable Light Theme - updates the AG Grid theme to match",
10319
10579
  "uiLabel": "Load Light Theme"
10320
10580
  },
10321
10581
  {
@@ -10555,7 +10815,7 @@ exports.ADAPTABLE_METAMODEL = {
10555
10815
  "description": "Order of displayed ToolPanels in Sidebar",
10556
10816
  "uiLabel": "Tool Panel Order",
10557
10817
  "isOptional": true,
10558
- "defaultValue": "['filters', 'columns', 'AdaptableToolPanel']"
10818
+ "defaultValue": "['filters', 'columns', 'adaptable']"
10559
10819
  },
10560
10820
  {
10561
10821
  "name": "width",
@@ -10632,6 +10892,12 @@ exports.ADAPTABLE_METAMODEL = {
10632
10892
  "description": "Retrieves Color Palette currently being used",
10633
10893
  "uiLabel": "Get Color Palette"
10634
10894
  },
10895
+ {
10896
+ "name": "getCustomSortPermittedValuesForColumn",
10897
+ "kind": "function",
10898
+ "description": "Retrieves Permitted values for Custom sort.",
10899
+ "uiLabel": "Get Custom Sort Permitted Values For Column"
10900
+ },
10635
10901
  {
10636
10902
  "name": "getEditableCellStyle",
10637
10903
  "kind": "function",
@@ -10650,6 +10916,12 @@ exports.ADAPTABLE_METAMODEL = {
10650
10916
  "description": "Retrieves actual Look Up Values from an EditLookUpItem",
10651
10917
  "uiLabel": "Get Edit Look Up Values For Edit Look Up Item"
10652
10918
  },
10919
+ {
10920
+ "name": "getFilterPermittedValuesForColumn",
10921
+ "kind": "function",
10922
+ "description": "Retrieves Permitted values for filtering by column values in Floating Filter and dropdown Filter.",
10923
+ "uiLabel": "Get Filter Permitted Values For Column"
10924
+ },
10653
10925
  {
10654
10926
  "name": "getPermittedValuesForColumn",
10655
10927
  "kind": "function",
@@ -10691,6 +10963,13 @@ exports.ADAPTABLE_METAMODEL = {
10691
10963
  "defaultValue": "null",
10692
10964
  "reference": "AdaptableIcon"
10693
10965
  },
10966
+ {
10967
+ "name": "bulkUpdatePermittedValues",
10968
+ "kind": "unknown",
10969
+ "description": "Custom column values for editing via bulk-update. When not defined it defaults to permittedValues.",
10970
+ "uiLabel": "Bulk Update Permitted Values",
10971
+ "isOptional": true
10972
+ },
10694
10973
  {
10695
10974
  "name": "colorPalette",
10696
10975
  "kind": "unknown",
@@ -10698,6 +10977,13 @@ exports.ADAPTABLE_METAMODEL = {
10698
10977
  "uiLabel": "Color Palette",
10699
10978
  "isOptional": true
10700
10979
  },
10980
+ {
10981
+ "name": "customSortPermittedValues",
10982
+ "kind": "unknown",
10983
+ "description": "Custom column values for defining custom sort. When not defined it defaults to permittedValues.",
10984
+ "uiLabel": "Custom Sort Permitted Values",
10985
+ "isOptional": true
10986
+ },
10701
10987
  {
10702
10988
  "name": "dateInputOptions",
10703
10989
  "kind": "REFERENCE",
@@ -10717,10 +11003,17 @@ exports.ADAPTABLE_METAMODEL = {
10717
11003
  {
10718
11004
  "name": "editLookUpItems",
10719
11005
  "kind": "unknown",
10720
- "description": "Dropdown values displayed when column is being edited",
11006
+ "description": "Dropdown values displayed when column is being edited. When not defined it defaults to permittedValues.",
10721
11007
  "uiLabel": "Edit Look Up Items",
10722
11008
  "isOptional": true
10723
11009
  },
11010
+ {
11011
+ "name": "filterPermittedValues",
11012
+ "kind": "unknown",
11013
+ "description": "Dropdown values for filter options inside floating and header filter. When not defined it defaults to permittedValues.",
11014
+ "uiLabel": "Filter Permitted Values",
11015
+ "isOptional": true
11016
+ },
10724
11017
  {
10725
11018
  "name": "permittedValues",
10726
11019
  "kind": "unknown",
@@ -10767,7 +11060,7 @@ exports.ADAPTABLE_METAMODEL = {
10767
11060
  "UserMenuItem": {
10768
11061
  "name": "UserMenuItem",
10769
11062
  "kind": "Interface",
10770
- "description": "Defines a Menu Item created at design-time, can be added to Column Header or Context Menu, and can contain sub items.",
11063
+ "description": "Menu Item created at design-time which is added to Column Header or Context Menu, and can contain sub items",
10771
11064
  "properties": [
10772
11065
  {
10773
11066
  "name": "disabled",
@@ -10786,7 +11079,7 @@ exports.ADAPTABLE_METAMODEL = {
10786
11079
  {
10787
11080
  "name": "icon",
10788
11081
  "kind": "string",
10789
- "description": "Optional icon to show in the Menu Item",
11082
+ "description": "Optional icon to show in the Column Menu Item",
10790
11083
  "uiLabel": "Icon",
10791
11084
  "isOptional": true
10792
11085
  },