@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
@@ -14,12 +14,21 @@ export declare const ADAPTABLE_METAMODEL: {
14
14
  description: string;
15
15
  uiLabel: string;
16
16
  isOptional?: undefined;
17
+ reference?: undefined;
18
+ } | {
19
+ name: string;
20
+ kind: string;
21
+ description: string;
22
+ uiLabel: string;
23
+ isOptional: boolean;
24
+ reference: string;
17
25
  } | {
18
26
  name: string;
19
27
  kind: string;
20
28
  description: string;
21
29
  uiLabel: string;
22
30
  isOptional: boolean;
31
+ reference?: undefined;
23
32
  })[];
24
33
  };
25
34
  ActionColumnButtonContext: {
@@ -40,6 +49,26 @@ export declare const ADAPTABLE_METAMODEL: {
40
49
  reference?: undefined;
41
50
  })[];
42
51
  };
52
+ ActionColumnSettings: {
53
+ name: string;
54
+ kind: string;
55
+ description: string;
56
+ properties: ({
57
+ name: string;
58
+ kind: string;
59
+ description: string;
60
+ uiLabel: string;
61
+ isOptional: boolean;
62
+ defaultValue: string;
63
+ } | {
64
+ name: string;
65
+ kind: string;
66
+ description: string;
67
+ uiLabel: string;
68
+ isOptional: boolean;
69
+ defaultValue?: undefined;
70
+ })[];
71
+ };
43
72
  ActionHandler: {
44
73
  name: string;
45
74
  kind: string;
@@ -415,19 +444,13 @@ export declare const ADAPTABLE_METAMODEL: {
415
444
  name: string;
416
445
  kind: string;
417
446
  description: string;
418
- properties: ({
447
+ properties: {
419
448
  name: string;
420
449
  kind: string;
421
450
  description: string;
422
451
  uiLabel: string;
423
452
  reference: string;
424
- } | {
425
- name: string;
426
- kind: string;
427
- description: string;
428
- uiLabel: string;
429
- reference?: undefined;
430
- })[];
453
+ }[];
431
454
  };
432
455
  AdaptableScope: {
433
456
  name: string;
@@ -500,13 +523,13 @@ export declare const ADAPTABLE_METAMODEL: {
500
523
  kind: string;
501
524
  description: string;
502
525
  uiLabel: string;
503
- isOptional?: undefined;
526
+ isOptional: boolean;
504
527
  } | {
505
528
  name: string;
506
529
  kind: string;
507
530
  description: string;
508
531
  uiLabel: string;
509
- isOptional: boolean;
532
+ isOptional?: undefined;
510
533
  })[];
511
534
  };
512
535
  AdaptableToolPanelDefinition: {
@@ -736,6 +759,11 @@ export declare const ADAPTABLE_METAMODEL: {
736
759
  uiLabel: string;
737
760
  }[];
738
761
  };
762
+ BulkUpdatePermittedValues: {
763
+ name: string;
764
+ kind: string;
765
+ description: string;
766
+ };
739
767
  ButtonStyle: {
740
768
  name: string;
741
769
  kind: string;
@@ -804,14 +832,14 @@ export declare const ADAPTABLE_METAMODEL: {
804
832
  description: string;
805
833
  uiLabel: string;
806
834
  isOptional: boolean;
807
- defaultValue: string;
835
+ defaultValue?: undefined;
808
836
  } | {
809
837
  name: string;
810
838
  kind: string;
811
839
  description: string;
812
840
  uiLabel: string;
813
841
  isOptional: boolean;
814
- defaultValue?: undefined;
842
+ defaultValue: string;
815
843
  })[];
816
844
  };
817
845
  CalculatedColumnState: {
@@ -905,6 +933,11 @@ export declare const ADAPTABLE_METAMODEL: {
905
933
  kind: string;
906
934
  description: string;
907
935
  };
936
+ CellValuesList: {
937
+ name: string;
938
+ kind: string;
939
+ description: string;
940
+ };
908
941
  ChartApi: {
909
942
  name: string;
910
943
  kind: string;
@@ -981,34 +1014,46 @@ export declare const ADAPTABLE_METAMODEL: {
981
1014
  reference: string;
982
1015
  })[];
983
1016
  };
984
- ColumnSort: {
1017
+ ColumnMenuContext: {
985
1018
  name: string;
986
1019
  kind: string;
987
1020
  description: string;
988
- properties: {
1021
+ properties: ({
989
1022
  name: string;
990
1023
  kind: string;
991
1024
  description: string;
992
1025
  uiLabel: string;
993
- }[];
1026
+ reference: string;
1027
+ } | {
1028
+ name: string;
1029
+ kind: string;
1030
+ description: string;
1031
+ uiLabel: string;
1032
+ reference?: undefined;
1033
+ })[];
994
1034
  };
995
- ColumnValuesComparer: {
1035
+ ColumnSort: {
996
1036
  name: string;
997
1037
  kind: string;
998
1038
  description: string;
999
- properties: ({
1039
+ properties: {
1000
1040
  name: string;
1001
1041
  kind: string;
1002
1042
  description: string;
1003
1043
  uiLabel: string;
1004
- reference?: undefined;
1005
- } | {
1044
+ }[];
1045
+ };
1046
+ ColumnValuesComparer: {
1047
+ name: string;
1048
+ kind: string;
1049
+ description: string;
1050
+ properties: {
1006
1051
  name: string;
1007
1052
  kind: string;
1008
1053
  description: string;
1009
1054
  uiLabel: string;
1010
1055
  reference: string;
1011
- })[];
1056
+ }[];
1012
1057
  };
1013
1058
  ConditionalStyle: {
1014
1059
  name: string;
@@ -1097,6 +1142,24 @@ export declare const ADAPTABLE_METAMODEL: {
1097
1142
  defaultValue: string;
1098
1143
  }[];
1099
1144
  };
1145
+ ContextMenuContext: {
1146
+ name: string;
1147
+ kind: string;
1148
+ description: string;
1149
+ properties: ({
1150
+ name: string;
1151
+ kind: string;
1152
+ description: string;
1153
+ uiLabel: string;
1154
+ reference: string;
1155
+ } | {
1156
+ name: string;
1157
+ kind: string;
1158
+ description: string;
1159
+ uiLabel: string;
1160
+ reference?: undefined;
1161
+ })[];
1162
+ };
1100
1163
  CustomDestination: {
1101
1164
  name: string;
1102
1165
  kind: string;
@@ -1155,6 +1218,11 @@ export declare const ADAPTABLE_METAMODEL: {
1155
1218
  uiLabel: string;
1156
1219
  }[];
1157
1220
  };
1221
+ CustomSortPermittedValues: {
1222
+ name: string;
1223
+ kind: string;
1224
+ description: string;
1225
+ };
1158
1226
  CustomSortState: {
1159
1227
  name: string;
1160
1228
  kind: string;
@@ -1367,8 +1435,15 @@ export declare const ADAPTABLE_METAMODEL: {
1367
1435
  kind: string;
1368
1436
  description: string;
1369
1437
  uiLabel: string;
1370
- isOptional?: undefined;
1371
1438
  reference?: undefined;
1439
+ isOptional?: undefined;
1440
+ } | {
1441
+ name: string;
1442
+ kind: string;
1443
+ description: string;
1444
+ uiLabel: string;
1445
+ reference: string;
1446
+ isOptional?: undefined;
1372
1447
  } | {
1373
1448
  name: string;
1374
1449
  kind: string;
@@ -1488,6 +1563,11 @@ export declare const ADAPTABLE_METAMODEL: {
1488
1563
  defaultValue: string;
1489
1564
  }[];
1490
1565
  };
1566
+ EditLookUpPermittedValues: {
1567
+ name: string;
1568
+ kind: string;
1569
+ description: string;
1570
+ };
1491
1571
  EditOptions: {
1492
1572
  name: string;
1493
1573
  kind: string;
@@ -1773,6 +1853,18 @@ export declare const ADAPTABLE_METAMODEL: {
1773
1853
  defaultValue?: undefined;
1774
1854
  })[];
1775
1855
  };
1856
+ FilterPermittedValues: {
1857
+ name: string;
1858
+ kind: string;
1859
+ description: string;
1860
+ properties: {
1861
+ name: string;
1862
+ kind: string;
1863
+ description: string;
1864
+ uiLabel: string;
1865
+ isOptional: boolean;
1866
+ }[];
1867
+ };
1776
1868
  FilterState: {
1777
1869
  name: string;
1778
1870
  kind: string;
@@ -1927,6 +2019,7 @@ export declare const ADAPTABLE_METAMODEL: {
1927
2019
  uiLabel: string;
1928
2020
  isOptional?: undefined;
1929
2021
  defaultValue?: undefined;
2022
+ reference?: undefined;
1930
2023
  } | {
1931
2024
  name: string;
1932
2025
  kind: string;
@@ -1934,12 +2027,22 @@ export declare const ADAPTABLE_METAMODEL: {
1934
2027
  uiLabel: string;
1935
2028
  isOptional: boolean;
1936
2029
  defaultValue: string;
2030
+ reference?: undefined;
2031
+ } | {
2032
+ name: string;
2033
+ kind: string;
2034
+ description: string;
2035
+ uiLabel: string;
2036
+ isOptional: boolean;
2037
+ defaultValue?: undefined;
2038
+ reference?: undefined;
1937
2039
  } | {
1938
2040
  name: string;
1939
2041
  kind: string;
1940
2042
  description: string;
1941
2043
  uiLabel: string;
1942
2044
  isOptional: boolean;
2045
+ reference: string;
1943
2046
  defaultValue?: undefined;
1944
2047
  })[];
1945
2048
  };
@@ -1954,6 +2057,11 @@ export declare const ADAPTABLE_METAMODEL: {
1954
2057
  uiLabel: string;
1955
2058
  }[];
1956
2059
  };
2060
+ FreeTextColumnSettings: {
2061
+ name: string;
2062
+ kind: string;
2063
+ description: string;
2064
+ };
1957
2065
  FreeTextColumnState: {
1958
2066
  name: string;
1959
2067
  kind: string;
@@ -2099,22 +2207,22 @@ export declare const ADAPTABLE_METAMODEL: {
2099
2207
  kind: string;
2100
2208
  description: string;
2101
2209
  uiLabel: string;
2210
+ reference: string;
2102
2211
  isOptional?: undefined;
2103
- reference?: undefined;
2104
2212
  } | {
2105
2213
  name: string;
2106
2214
  kind: string;
2107
2215
  description: string;
2108
2216
  uiLabel: string;
2109
- isOptional: boolean;
2110
2217
  reference?: undefined;
2218
+ isOptional?: undefined;
2111
2219
  } | {
2112
2220
  name: string;
2113
2221
  kind: string;
2114
2222
  description: string;
2115
2223
  uiLabel: string;
2116
- reference: string;
2117
- isOptional?: undefined;
2224
+ isOptional: boolean;
2225
+ reference?: undefined;
2118
2226
  })[];
2119
2227
  };
2120
2228
  GridDataChangedInfo: {
@@ -2356,24 +2464,6 @@ export declare const ADAPTABLE_METAMODEL: {
2356
2464
  reference: string;
2357
2465
  })[];
2358
2466
  };
2359
- MenuContext: {
2360
- name: string;
2361
- kind: string;
2362
- description: string;
2363
- properties: ({
2364
- name: string;
2365
- kind: string;
2366
- description: string;
2367
- uiLabel: string;
2368
- reference: string;
2369
- } | {
2370
- name: string;
2371
- kind: string;
2372
- description: string;
2373
- uiLabel: string;
2374
- reference?: undefined;
2375
- })[];
2376
- };
2377
2467
  MenuOptions: {
2378
2468
  name: string;
2379
2469
  kind: string;
@@ -2452,6 +2542,15 @@ export declare const ADAPTABLE_METAMODEL: {
2452
2542
  gridInfo: string;
2453
2543
  defaultValue: string;
2454
2544
  reference: string;
2545
+ } | {
2546
+ name: string;
2547
+ kind: string;
2548
+ description: string;
2549
+ uiLabel: string;
2550
+ isOptional: boolean;
2551
+ defaultValue: string;
2552
+ gridInfo?: undefined;
2553
+ reference?: undefined;
2455
2554
  })[];
2456
2555
  };
2457
2556
  NumberFormatterOptions: {
@@ -2531,6 +2630,18 @@ export declare const ADAPTABLE_METAMODEL: {
2531
2630
  kind: string;
2532
2631
  description: string;
2533
2632
  };
2633
+ PermittedValues: {
2634
+ name: string;
2635
+ kind: string;
2636
+ description: string;
2637
+ properties: {
2638
+ name: string;
2639
+ kind: string;
2640
+ description: string;
2641
+ uiLabel: string;
2642
+ isOptional: boolean;
2643
+ }[];
2644
+ };
2534
2645
  PluginsApi: {
2535
2646
  name: string;
2536
2647
  kind: string;
@@ -2590,21 +2701,14 @@ export declare const ADAPTABLE_METAMODEL: {
2590
2701
  name: string;
2591
2702
  kind: string;
2592
2703
  description: string;
2593
- properties: ({
2594
- name: string;
2595
- kind: string;
2596
- description: string;
2597
- uiLabel: string;
2598
- isOptional: boolean;
2599
- reference?: undefined;
2600
- } | {
2704
+ properties: {
2601
2705
  name: string;
2602
2706
  kind: string;
2603
2707
  description: string;
2604
2708
  uiLabel: string;
2605
2709
  isOptional: boolean;
2606
2710
  reference: string;
2607
- })[];
2711
+ }[];
2608
2712
  };
2609
2713
  PredicateApi: {
2610
2714
  name: string;
@@ -3025,6 +3129,26 @@ export declare const ADAPTABLE_METAMODEL: {
3025
3129
  isOptional: boolean;
3026
3130
  }[];
3027
3131
  };
3132
+ SpecialColumnSettings: {
3133
+ name: string;
3134
+ kind: string;
3135
+ description: string;
3136
+ properties: ({
3137
+ name: string;
3138
+ kind: string;
3139
+ description: string;
3140
+ uiLabel: string;
3141
+ isOptional: boolean;
3142
+ defaultValue: string;
3143
+ } | {
3144
+ name: string;
3145
+ kind: string;
3146
+ description: string;
3147
+ uiLabel: string;
3148
+ isOptional: boolean;
3149
+ defaultValue?: undefined;
3150
+ })[];
3151
+ };
3028
3152
  StateOptions: {
3029
3153
  name: string;
3030
3154
  kind: string;