@adaptabletools/adaptable 15.4.2 → 16.0.0-canary.0

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 (286) hide show
  1. package/base.css +1 -1
  2. package/base.css.map +1 -1
  3. package/bundle.cjs.js +232 -226
  4. package/index.css +1 -1
  5. package/index.css.map +1 -1
  6. package/package.json +2 -2
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +3 -0
  10. package/src/AdaptableInterfaces/IAdaptable.d.ts +3 -2
  11. package/src/AdaptableOptions/ActionColumnOptions.d.ts +82 -0
  12. package/src/AdaptableOptions/{ActionOptions.d.ts → ActionRowOptions.d.ts} +15 -90
  13. package/src/AdaptableOptions/AdaptableOptions.d.ts +32 -7
  14. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +1 -12
  15. package/src/AdaptableOptions/AlertOptions.d.ts +9 -0
  16. package/src/AdaptableOptions/CalendarOptions.d.ts +11 -0
  17. package/src/AdaptableOptions/CellSummaryOptions.d.ts +10 -0
  18. package/src/AdaptableOptions/ColumnOptions.d.ts +0 -4
  19. package/src/AdaptableOptions/CustomSortOptions.d.ts +24 -0
  20. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +5 -1
  21. package/src/AdaptableOptions/DataSetOptions.d.ts +41 -0
  22. package/src/AdaptableOptions/DataSetOptions.js +2 -0
  23. package/src/AdaptableOptions/EditOptions.d.ts +4 -4
  24. package/src/AdaptableOptions/EntitlementOptions.d.ts +0 -16
  25. package/src/AdaptableOptions/ExportOptions.d.ts +2 -4
  26. package/src/AdaptableOptions/ExpressionOptions.d.ts +7 -0
  27. package/src/AdaptableOptions/FilterOptions.d.ts +3 -0
  28. package/src/AdaptableOptions/FinancePluginOptions.d.ts +24 -0
  29. package/src/AdaptableOptions/GroupingOptions.d.ts +50 -0
  30. package/src/AdaptableOptions/GroupingOptions.js +2 -0
  31. package/src/AdaptableOptions/LayoutOptions.d.ts +3 -0
  32. package/src/AdaptableOptions/MasterDetailPluginOptions.d.ts +9 -0
  33. package/src/AdaptableOptions/PredicateOptions.d.ts +4 -0
  34. package/src/AdaptableOptions/TeamSharingOptions.d.ts +0 -8
  35. package/src/AdaptableOptions/ToolPanelOptions.d.ts +3 -0
  36. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +36 -1
  37. package/src/Api/ActionColumnApi.d.ts +10 -0
  38. package/src/Api/ActionColumnApi.js +2 -0
  39. package/src/Api/{ActionApi.d.ts → ActionRowApi.d.ts} +4 -15
  40. package/src/Api/ActionRowApi.js +2 -0
  41. package/src/Api/AdaptableApi.d.ts +11 -6
  42. package/src/Api/AlertApi.d.ts +2 -111
  43. package/src/Api/BulkUpdateApi.d.ts +0 -7
  44. package/src/Api/CalculatedColumnApi.d.ts +0 -31
  45. package/src/Api/CalendarApi.d.ts +1 -1
  46. package/src/Api/CellSummaryApi.d.ts +0 -7
  47. package/src/Api/ChartingApi.d.ts +0 -7
  48. package/src/Api/ColumnApi.d.ts +1 -131
  49. package/src/Api/ConfigApi.d.ts +1 -7
  50. package/src/Api/CustomSortApi.d.ts +0 -25
  51. package/src/Api/DashboardApi.d.ts +0 -16
  52. package/src/Api/DataChangeHistoryApi.d.ts +0 -7
  53. package/src/Api/DataSetApi.d.ts +1 -16
  54. package/src/Api/EventApi.d.ts +1 -9
  55. package/src/Api/Events/AdaptableStateChanged.d.ts +0 -8
  56. package/src/Api/Events/AdaptableStateReloaded.d.ts +0 -4
  57. package/src/Api/Events/BaseEventInfo.d.ts +9 -1
  58. package/src/Api/Events/LiveDataChanged.d.ts +3 -7
  59. package/src/Api/ExportApi.d.ts +10 -34
  60. package/src/Api/{QueryLanguageApi.d.ts → ExpressionApi.d.ts} +2 -2
  61. package/src/Api/ExpressionApi.js +2 -0
  62. package/src/Api/FilterApi.d.ts +1 -59
  63. package/src/Api/FlashingCellApi.d.ts +0 -15
  64. package/src/Api/FormatColumnApi.d.ts +1 -91
  65. package/src/Api/FreeTextColumnApi.d.ts +0 -39
  66. package/src/Api/GridApi.d.ts +20 -31
  67. package/src/Api/Implementation/ActionColumnApiImpl.d.ts +7 -0
  68. package/src/Api/Implementation/ActionColumnApiImpl.js +14 -0
  69. package/src/Api/Implementation/ActionRowApiImpl.d.ts +12 -0
  70. package/src/Api/Implementation/{ActionApiImpl.js → ActionRowApiImpl.js} +8 -15
  71. package/src/Api/Implementation/AdaptableApiImpl.d.ts +6 -4
  72. package/src/Api/Implementation/AdaptableApiImpl.js +7 -5
  73. package/src/Api/Implementation/AlertApiImpl.d.ts +1 -43
  74. package/src/Api/Implementation/AlertApiImpl.js +4 -94
  75. package/src/Api/Implementation/ApiBase.d.ts +15 -5
  76. package/src/Api/Implementation/ApiBase.js +26 -8
  77. package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +0 -7
  78. package/src/Api/Implementation/CalculatedColumnApiImpl.js +0 -32
  79. package/src/Api/Implementation/CalendarApiImpl.d.ts +1 -0
  80. package/src/Api/Implementation/CalendarApiImpl.js +20 -17
  81. package/src/Api/Implementation/CellSummaryApiImpl.d.ts +0 -1
  82. package/src/Api/Implementation/CellSummaryApiImpl.js +1 -6
  83. package/src/Api/Implementation/ChartingApiImpl.d.ts +0 -1
  84. package/src/Api/Implementation/ChartingApiImpl.js +0 -5
  85. package/src/Api/Implementation/ColumnApiImpl.d.ts +0 -35
  86. package/src/Api/Implementation/ColumnApiImpl.js +1 -138
  87. package/src/Api/Implementation/ConfigApiImpl.js +2 -1
  88. package/src/Api/Implementation/CustomSortApiImpl.d.ts +1 -5
  89. package/src/Api/Implementation/CustomSortApiImpl.js +0 -16
  90. package/src/Api/Implementation/DashboardApiImpl.d.ts +0 -4
  91. package/src/Api/Implementation/DashboardApiImpl.js +2 -24
  92. package/src/Api/Implementation/DataChangeHistoryApiImpl.d.ts +0 -1
  93. package/src/Api/Implementation/DataChangeHistoryApiImpl.js +0 -5
  94. package/src/Api/Implementation/DataSetApiImpl.d.ts +1 -4
  95. package/src/Api/Implementation/DataSetApiImpl.js +1 -14
  96. package/src/Api/Implementation/ExportApiImpl.d.ts +4 -10
  97. package/src/Api/Implementation/ExportApiImpl.js +15 -34
  98. package/src/Api/Implementation/{QueryLanguageApiImpl.d.ts → ExpressionApiImpl.d.ts} +4 -4
  99. package/src/Api/Implementation/{QueryLanguageApiImpl.js → ExpressionApiImpl.js} +7 -5
  100. package/src/Api/Implementation/FilterApiImpl.d.ts +1 -17
  101. package/src/Api/Implementation/FilterApiImpl.js +0 -53
  102. package/src/Api/Implementation/FlashingCellApiImpl.d.ts +0 -3
  103. package/src/Api/Implementation/FlashingCellApiImpl.js +2 -13
  104. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +2 -34
  105. package/src/Api/Implementation/FormatColumnApiImpl.js +0 -73
  106. package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +0 -8
  107. package/src/Api/Implementation/FreeTextColumnApiImpl.js +0 -29
  108. package/src/Api/Implementation/GridApiImpl.d.ts +0 -7
  109. package/src/Api/Implementation/GridApiImpl.js +6 -35
  110. package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -6
  111. package/src/Api/Implementation/LayoutApiImpl.js +2 -27
  112. package/src/Api/Implementation/OptionsApiImpl.d.ts +10 -5
  113. package/src/Api/Implementation/OptionsApiImpl.js +19 -7
  114. package/src/Api/Implementation/PlusMinusApiImpl.d.ts +0 -1
  115. package/src/Api/Implementation/PlusMinusApiImpl.js +0 -5
  116. package/src/Api/Implementation/PredicateApiImpl.d.ts +1 -8
  117. package/src/Api/Implementation/PredicateApiImpl.js +2 -30
  118. package/src/Api/Implementation/QueryApiImpl.d.ts +0 -5
  119. package/src/Api/Implementation/QueryApiImpl.js +0 -21
  120. package/src/Api/Implementation/QuickSearchApiImpl.d.ts +0 -1
  121. package/src/Api/Implementation/QuickSearchApiImpl.js +0 -5
  122. package/src/Api/Implementation/ScheduleApiImpl.d.ts +1 -18
  123. package/src/Api/Implementation/ScheduleApiImpl.js +0 -69
  124. package/src/Api/Implementation/ScopeApiImpl.js +1 -1
  125. package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +0 -2
  126. package/src/Api/Implementation/SettingsPanelApiImpl.js +0 -9
  127. package/src/Api/Implementation/ShortcutApiImpl.d.ts +1 -6
  128. package/src/Api/Implementation/ShortcutApiImpl.js +0 -21
  129. package/src/Api/Implementation/SmartEditApiImpl.d.ts +0 -1
  130. package/src/Api/Implementation/SmartEditApiImpl.js +0 -5
  131. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +1 -5
  132. package/src/Api/Implementation/StyledColumnApiImpl.js +2 -17
  133. package/src/Api/Implementation/SystemStatusApiImpl.d.ts +0 -2
  134. package/src/Api/Implementation/SystemStatusApiImpl.js +0 -9
  135. package/src/Api/Implementation/TeamSharingApiImpl.d.ts +0 -5
  136. package/src/Api/Implementation/TeamSharingApiImpl.js +0 -21
  137. package/src/Api/Implementation/ThemeApiImpl.d.ts +0 -4
  138. package/src/Api/Implementation/ThemeApiImpl.js +2 -17
  139. package/src/Api/Implementation/ToolPanelApiImpl.js +2 -2
  140. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +4 -2
  141. package/src/Api/Implementation/UserInterfaceApiImpl.js +17 -10
  142. package/src/Api/Internal/{ActionInternalApi.d.ts → ActionRowInternalApi.d.ts} +2 -2
  143. package/src/Api/Internal/{ActionInternalApi.js → ActionRowInternalApi.js} +12 -5
  144. package/src/Api/Internal/AdaptableInternalApi.d.ts +1 -10
  145. package/src/Api/Internal/AdaptableInternalApi.js +9 -20
  146. package/src/Api/Internal/AlertInternalApi.js +9 -6
  147. package/src/Api/Internal/CalculatedColumnInternalApi.js +2 -2
  148. package/src/Api/Internal/CustomSortInternalApi.d.ts +1 -1
  149. package/src/Api/Internal/CustomSortInternalApi.js +1 -1
  150. package/src/Api/Internal/DashboardInternalApi.js +2 -0
  151. package/src/Api/Internal/DataSetInternalApi.d.ts +1 -1
  152. package/src/Api/Internal/DataSetInternalApi.js +2 -1
  153. package/src/Api/Internal/ExportInternalApi.js +1 -1
  154. package/src/Api/Internal/{QueryLanguageInternalApi.d.ts → ExpressionnternalApi.d.ts} +1 -1
  155. package/src/Api/Internal/{QueryLanguageInternalApi.js → ExpressionnternalApi.js} +9 -5
  156. package/src/Api/Internal/FilterInternalApi.js +4 -1
  157. package/src/Api/Internal/FormatColumnInternalApi.js +1 -1
  158. package/src/Api/Internal/GridInternalApi.js +8 -0
  159. package/src/Api/Internal/LayoutInternalApi.js +6 -1
  160. package/src/Api/Internal/PredicateInternalApi.js +10 -0
  161. package/src/Api/Internal/QueryInternalApi.js +3 -1
  162. package/src/Api/Internal/SystemStatusInternalApi.js +4 -1
  163. package/src/Api/Internal/TeamSharingInternalApi.js +2 -0
  164. package/src/Api/LayoutApi.d.ts +3 -27
  165. package/src/Api/OptionsApi.d.ts +28 -10
  166. package/src/Api/PlusMinusApi.d.ts +0 -7
  167. package/src/Api/PredicateApi.d.ts +1 -32
  168. package/src/Api/QueryApi.d.ts +0 -23
  169. package/src/Api/QuickSearchApi.d.ts +0 -4
  170. package/src/Api/ScheduleApi.d.ts +0 -81
  171. package/src/Api/SettingsPanelApi.d.ts +0 -11
  172. package/src/Api/ShortcutApi.d.ts +0 -25
  173. package/src/Api/SmartEditApi.d.ts +0 -7
  174. package/src/Api/StyledColumnApi.d.ts +0 -21
  175. package/src/Api/SystemStatusApi.d.ts +0 -11
  176. package/src/Api/TeamSharingApi.d.ts +0 -23
  177. package/src/Api/ThemeApi.d.ts +0 -19
  178. package/src/Api/UserInterfaceApi.d.ts +4 -9
  179. package/src/PredefinedConfig/AlertState.d.ts +11 -5
  180. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +3 -3
  181. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +4 -1
  182. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +13 -1
  183. package/src/PredefinedConfig/Common/AggregationColumns.d.ts +3 -0
  184. package/src/PredefinedConfig/Common/BaseContext.d.ts +8 -0
  185. package/src/PredefinedConfig/Common/DataChangedScope.d.ts +9 -0
  186. package/src/PredefinedConfig/Common/Entitlement.d.ts +4 -1
  187. package/src/PredefinedConfig/LayoutState.d.ts +0 -6
  188. package/src/PredefinedConfig/StyledColumnState.d.ts +3 -0
  189. package/src/PredefinedConfig/SystemState.d.ts +1 -1
  190. package/src/PredefinedConfig/TeamSharingState.d.ts +1 -1
  191. package/src/PredefinedConfig/ThemeState.d.ts +3 -0
  192. package/src/Strategy/AdaptableModuleBase.js +3 -3
  193. package/src/Strategy/AlertModule.js +3 -3
  194. package/src/Strategy/CalculatedColumnModule.js +2 -2
  195. package/src/Strategy/CellSummaryModule.js +2 -0
  196. package/src/Strategy/DataSetModule.d.ts +1 -1
  197. package/src/Strategy/DataSetModule.js +1 -1
  198. package/src/Strategy/ExportModule.js +4 -0
  199. package/src/Strategy/FlashingCellModule.js +4 -4
  200. package/src/Strategy/FormatColumnModule.js +3 -3
  201. package/src/Strategy/QueryModule.js +1 -1
  202. package/src/Strategy/SmartEditModule.js +2 -0
  203. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +24 -22
  204. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +4 -0
  205. package/src/Utilities/Helpers/AdaptableHelper.js +12 -6
  206. package/src/Utilities/Helpers/FormatHelper.js +7 -0
  207. package/src/Utilities/ObjectFactory.d.ts +2 -2
  208. package/src/Utilities/ObjectFactory.js +6 -4
  209. package/src/Utilities/Services/AlertService.js +1 -1
  210. package/src/Utilities/Services/CalculatedColumnExpressionService.js +2 -2
  211. package/src/Utilities/Services/ChartingService.js +2 -0
  212. package/src/Utilities/Services/EntitlementService.js +2 -2
  213. package/src/Utilities/Services/ModuleService.js +10 -10
  214. package/src/Utilities/Services/QueryLanguageService.js +16 -0
  215. package/src/Utilities/Services/ReportService.js +8 -6
  216. package/src/Utilities/Services/RowEditService.js +4 -2
  217. package/src/Utilities/Services/ValidationService.js +2 -0
  218. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +3 -3
  219. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +1 -1
  220. package/src/View/CellSummary/CellSummaryStatusPanel.js +1 -1
  221. package/src/View/Components/AdaptableIconSelector/index.d.ts +6 -0
  222. package/src/View/Components/AdaptableIconSelector/index.js +18 -0
  223. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +2 -2
  224. package/src/View/Components/AdaptableViewIcon/index.d.ts +10 -0
  225. package/src/View/Components/AdaptableViewIcon/index.js +18 -0
  226. package/src/View/Components/EntityRulesEditor/Utilities.js +3 -3
  227. package/src/View/Components/ExternalRenderer.js +14 -2
  228. package/src/View/Components/FilterForm/QuickFilterForm.js +4 -0
  229. package/src/View/Components/FilterForm/QuickFilterValues.js +8 -1
  230. package/src/View/Components/Popups/AdaptablePopupAlert.js +2 -0
  231. package/src/View/Components/RangesComponent.d.ts +4 -4
  232. package/src/View/Components/RangesComponent.js +13 -22
  233. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +2 -0
  234. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -1
  235. package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +1 -1
  236. package/src/View/Dashboard/CustomDashboardButton.js +2 -0
  237. package/src/View/Dashboard/CustomToolbarWrapper.js +13 -1
  238. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +5 -5
  239. package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +2 -2
  240. package/src/View/DataChangeHistory/buildActionColumnButton.js +3 -2
  241. package/src/View/Export/ExportViewPanel.js +4 -4
  242. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +3 -1
  243. package/src/View/GridInfo/GridInfoPopup.d.ts +0 -1
  244. package/src/View/GridInfo/GridInfoPopup.js +1 -2
  245. package/src/View/GridInfo/GridOptionsComponent.js +1 -1
  246. package/src/View/Layout/LayoutViewPanel.js +1 -1
  247. package/src/View/Layout/PivotDetailsPopoup.js +2 -0
  248. package/src/View/Layout/SaveLayoutButton.js +1 -1
  249. package/src/View/Layout/Wizard/LayoutWizard.js +1 -1
  250. package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +1 -1
  251. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +1 -1
  252. package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +2 -2
  253. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +8 -1
  254. package/src/agGrid/ActionColumnRenderer.d.ts +1 -1
  255. package/src/agGrid/ActionColumnRenderer.js +5 -1
  256. package/src/agGrid/Adaptable.d.ts +14 -3
  257. package/src/agGrid/Adaptable.js +138 -38
  258. package/src/agGrid/BadgeRenderer.js +10 -2
  259. package/src/agGrid/CheckboxRenderer.d.ts +1 -2
  260. package/src/agGrid/agGridHelper.js +4 -5
  261. package/src/agGrid/agGridMenuHelper.js +4 -0
  262. package/src/agGrid/attachAddaptableColumnTypes.d.ts +11 -11
  263. package/src/agGrid/editors/AdaptableDateEditor/index.js +2 -0
  264. package/src/agGrid/editors/AdaptableNumberEditor/index.js +2 -2
  265. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +6 -3
  266. package/src/components/AdaptableIconComponent/index.js +6 -3
  267. package/src/components/ExpressionEditor/BaseEditorInput.js +2 -0
  268. package/src/components/ExpressionEditor/index.js +1 -1
  269. package/src/components/IconSelector/IconSelector.d.ts +2 -0
  270. package/src/components/IconSelector/IconSelector.js +21 -5
  271. package/src/components/Input/NumberInput.d.ts +10 -0
  272. package/src/components/Input/NumberInput.js +46 -0
  273. package/src/metamodel/adaptable.metamodel.d.ts +360 -143
  274. package/src/metamodel/adaptable.metamodel.js +1 -1
  275. package/src/parser/src/types.d.ts +3 -0
  276. package/src/types.d.ts +13 -8
  277. package/version.d.ts +1 -1
  278. package/version.js +1 -1
  279. package/src/AdaptableOptions/GeneralOptions.d.ts +0 -159
  280. package/src/Api/Events/SearchChanged.d.ts +0 -12
  281. package/src/Api/Implementation/ActionApiImpl.d.ts +0 -14
  282. /package/src/AdaptableOptions/{ActionOptions.js → ActionColumnOptions.js} +0 -0
  283. /package/src/AdaptableOptions/{GeneralOptions.js → ActionRowOptions.js} +0 -0
  284. /package/src/{Api/ActionApi.js → AdaptableOptions/CalendarOptions.js} +0 -0
  285. /package/src/{Api/Events/SearchChanged.js → AdaptableOptions/CellSummaryOptions.js} +0 -0
  286. /package/src/{Api/QueryLanguageApi.js → AdaptableOptions/CustomSortOptions.js} +0 -0
@@ -38,6 +38,18 @@ export declare const ADAPTABLE_METAMODEL: {
38
38
  desc: string;
39
39
  }[];
40
40
  };
41
+ ActionColumnOptions: {
42
+ name: string;
43
+ kind: string;
44
+ desc: string;
45
+ props: {
46
+ name: string;
47
+ kind: string;
48
+ desc: string;
49
+ isOpt: boolean;
50
+ defVal: string;
51
+ }[];
52
+ };
41
53
  ActionColumnSettings: {
42
54
  name: string;
43
55
  kind: string;
@@ -61,18 +73,6 @@ export declare const ADAPTABLE_METAMODEL: {
61
73
  kind: string;
62
74
  desc: string;
63
75
  };
64
- ActionOptions: {
65
- name: string;
66
- kind: string;
67
- desc: string;
68
- props: {
69
- name: string;
70
- kind: string;
71
- desc: string;
72
- isOpt: boolean;
73
- defVal: string;
74
- }[];
75
- };
76
76
  ActionRowButtonConfigurationContext: {
77
77
  name: string;
78
78
  kind: string;
@@ -129,6 +129,18 @@ export declare const ADAPTABLE_METAMODEL: {
129
129
  defVal: string;
130
130
  })[];
131
131
  };
132
+ ActionRowOptions: {
133
+ name: string;
134
+ kind: string;
135
+ desc: string;
136
+ props: {
137
+ name: string;
138
+ kind: string;
139
+ desc: string;
140
+ isOpt: boolean;
141
+ defVal: string;
142
+ }[];
143
+ };
132
144
  ActionRowParamContext: {
133
145
  name: string;
134
146
  kind: string;
@@ -284,6 +296,17 @@ export declare const ADAPTABLE_METAMODEL: {
284
296
  kind: string;
285
297
  desc: string;
286
298
  };
299
+ AdaptableColumnPredicate: {
300
+ name: string;
301
+ kind: string;
302
+ desc: string;
303
+ props: {
304
+ name: string;
305
+ kind: string;
306
+ desc: string;
307
+ isOpt: boolean;
308
+ }[];
309
+ };
287
310
  AdaptableColumnType: {
288
311
  name: string;
289
312
  kind: string;
@@ -455,14 +478,12 @@ export declare const ADAPTABLE_METAMODEL: {
455
478
  name: string;
456
479
  kind: string;
457
480
  desc: string;
458
- ref: string;
459
481
  isOpt?: undefined;
460
482
  } | {
461
483
  name: string;
462
484
  kind: string;
463
485
  desc: string;
464
486
  isOpt: boolean;
465
- ref?: undefined;
466
487
  })[];
467
488
  };
468
489
  AdaptableInternalIconName: {
@@ -514,6 +535,11 @@ export declare const ADAPTABLE_METAMODEL: {
514
535
  kind: string;
515
536
  desc: string;
516
537
  };
538
+ AdaptableNoCodeWizardOptions: {
539
+ name: string;
540
+ kind: string;
541
+ desc: string;
542
+ };
517
543
  AdaptableObject: {
518
544
  name: string;
519
545
  kind: string;
@@ -747,24 +773,6 @@ export declare const ADAPTABLE_METAMODEL: {
747
773
  noCode: string;
748
774
  defVal: string;
749
775
  ref?: undefined;
750
- } | {
751
- name: string;
752
- kind: string;
753
- desc: string;
754
- isOpt: boolean;
755
- gridInfo?: undefined;
756
- noCode?: undefined;
757
- defVal?: undefined;
758
- ref?: undefined;
759
- } | {
760
- name: string;
761
- kind: string;
762
- desc: string;
763
- isOpt: boolean;
764
- noCode: string;
765
- defVal: string;
766
- gridInfo?: undefined;
767
- ref?: undefined;
768
776
  } | {
769
777
  name: string;
770
778
  kind: string;
@@ -951,6 +959,11 @@ export declare const ADAPTABLE_METAMODEL: {
951
959
  defVal: string;
952
960
  })[];
953
961
  };
962
+ AggregationColumns: {
963
+ name: string;
964
+ kind: string;
965
+ desc: string;
966
+ };
954
967
  AlertButton: {
955
968
  name: string;
956
969
  kind: string;
@@ -975,6 +988,11 @@ export declare const ADAPTABLE_METAMODEL: {
975
988
  ref?: undefined;
976
989
  })[];
977
990
  };
991
+ AlertButtonForm: {
992
+ name: string;
993
+ kind: string;
994
+ desc: string;
995
+ };
978
996
  AlertDefinition: {
979
997
  name: string;
980
998
  kind: string;
@@ -999,6 +1017,11 @@ export declare const ADAPTABLE_METAMODEL: {
999
1017
  isOpt?: undefined;
1000
1018
  })[];
1001
1019
  };
1020
+ AlertDefinitionPredicate: {
1021
+ name: string;
1022
+ kind: string;
1023
+ desc: string;
1024
+ };
1002
1025
  AlertForm: {
1003
1026
  name: string;
1004
1027
  kind: string;
@@ -1044,6 +1067,7 @@ export declare const ADAPTABLE_METAMODEL: {
1044
1067
  gridInfo?: undefined;
1045
1068
  defVal?: undefined;
1046
1069
  noCode?: undefined;
1070
+ uiLabel?: undefined;
1047
1071
  } | {
1048
1072
  name: string;
1049
1073
  kind: string;
@@ -1052,6 +1076,7 @@ export declare const ADAPTABLE_METAMODEL: {
1052
1076
  gridInfo: string;
1053
1077
  defVal: string;
1054
1078
  noCode?: undefined;
1079
+ uiLabel?: undefined;
1055
1080
  } | {
1056
1081
  name: string;
1057
1082
  kind: string;
@@ -1060,6 +1085,16 @@ export declare const ADAPTABLE_METAMODEL: {
1060
1085
  gridInfo: string;
1061
1086
  noCode: string;
1062
1087
  defVal: string;
1088
+ uiLabel?: undefined;
1089
+ } | {
1090
+ name: string;
1091
+ kind: string;
1092
+ desc: string;
1093
+ uiLabel: string;
1094
+ isOpt: boolean;
1095
+ gridInfo: string;
1096
+ noCode: string;
1097
+ defVal: string;
1063
1098
  } | {
1064
1099
  name: string;
1065
1100
  kind: string;
@@ -1068,6 +1103,7 @@ export declare const ADAPTABLE_METAMODEL: {
1068
1103
  defVal: string;
1069
1104
  gridInfo?: undefined;
1070
1105
  noCode?: undefined;
1106
+ uiLabel?: undefined;
1071
1107
  })[];
1072
1108
  };
1073
1109
  AlertProperties: {
@@ -1191,6 +1227,22 @@ export declare const ADAPTABLE_METAMODEL: {
1191
1227
  desc: string;
1192
1228
  };
1193
1229
  BaseContext: {
1230
+ name: string;
1231
+ kind: string;
1232
+ desc: string;
1233
+ props: ({
1234
+ name: string;
1235
+ kind: string;
1236
+ desc: string;
1237
+ ref: string;
1238
+ } | {
1239
+ name: string;
1240
+ kind: string;
1241
+ desc: string;
1242
+ ref?: undefined;
1243
+ })[];
1244
+ };
1245
+ BasePermittedValues: {
1194
1246
  name: string;
1195
1247
  kind: string;
1196
1248
  desc: string;
@@ -1286,6 +1338,18 @@ export declare const ADAPTABLE_METAMODEL: {
1286
1338
  isOpt: boolean;
1287
1339
  }[];
1288
1340
  };
1341
+ CalendarOptions: {
1342
+ name: string;
1343
+ kind: string;
1344
+ desc: string;
1345
+ props: {
1346
+ name: string;
1347
+ kind: string;
1348
+ desc: string;
1349
+ isOpt: boolean;
1350
+ defVal: string;
1351
+ }[];
1352
+ };
1289
1353
  CellColorRange: {
1290
1354
  name: string;
1291
1355
  kind: string;
@@ -1372,6 +1436,17 @@ export declare const ADAPTABLE_METAMODEL: {
1372
1436
  desc: string;
1373
1437
  }[];
1374
1438
  };
1439
+ CellSummaryOptions: {
1440
+ name: string;
1441
+ kind: string;
1442
+ desc: string;
1443
+ props: {
1444
+ name: string;
1445
+ kind: string;
1446
+ desc: string;
1447
+ isOpt: boolean;
1448
+ }[];
1449
+ };
1375
1450
  CellSummmary: {
1376
1451
  name: string;
1377
1452
  kind: string;
@@ -1568,14 +1643,6 @@ export declare const ADAPTABLE_METAMODEL: {
1568
1643
  defVal: string;
1569
1644
  gridInfo?: undefined;
1570
1645
  noCode?: undefined;
1571
- } | {
1572
- name: string;
1573
- kind: string;
1574
- desc: string;
1575
- isOpt: boolean;
1576
- gridInfo?: undefined;
1577
- noCode?: undefined;
1578
- defVal?: undefined;
1579
1646
  })[];
1580
1647
  };
1581
1648
  ColumnSort: {
@@ -1896,6 +1963,30 @@ export declare const ADAPTABLE_METAMODEL: {
1896
1963
  ref?: undefined;
1897
1964
  })[];
1898
1965
  };
1966
+ CustomSharedEntity: {
1967
+ name: string;
1968
+ kind: string;
1969
+ desc: string;
1970
+ props: ({
1971
+ name: string;
1972
+ kind: string;
1973
+ desc: string;
1974
+ isOpt?: undefined;
1975
+ ref?: undefined;
1976
+ } | {
1977
+ name: string;
1978
+ kind: string;
1979
+ desc: string;
1980
+ isOpt: boolean;
1981
+ ref?: undefined;
1982
+ } | {
1983
+ name: string;
1984
+ kind: string;
1985
+ desc: string;
1986
+ ref: string;
1987
+ isOpt?: undefined;
1988
+ })[];
1989
+ };
1899
1990
  CustomSharedEntityConfig: {
1900
1991
  name: string;
1901
1992
  kind: string;
@@ -1928,6 +2019,17 @@ export declare const ADAPTABLE_METAMODEL: {
1928
2019
  isOpt: boolean;
1929
2020
  })[];
1930
2021
  };
2022
+ CustomSortOptions: {
2023
+ name: string;
2024
+ kind: string;
2025
+ desc: string;
2026
+ props: {
2027
+ name: string;
2028
+ kind: string;
2029
+ desc: string;
2030
+ isOpt: boolean;
2031
+ }[];
2032
+ };
1931
2033
  CustomSortPermittedValues: {
1932
2034
  name: string;
1933
2035
  kind: string;
@@ -2008,6 +2110,17 @@ export declare const ADAPTABLE_METAMODEL: {
2008
2110
  ref?: undefined;
2009
2111
  })[];
2010
2112
  };
2113
+ CustomToolPanelButtonContext: {
2114
+ name: string;
2115
+ kind: string;
2116
+ desc: string;
2117
+ props: {
2118
+ name: string;
2119
+ kind: string;
2120
+ desc: string;
2121
+ ref: string;
2122
+ }[];
2123
+ };
2011
2124
  DashboardButtonContext: {
2012
2125
  name: string;
2013
2126
  kind: string;
@@ -2093,6 +2206,16 @@ export declare const ADAPTABLE_METAMODEL: {
2093
2206
  desc: string;
2094
2207
  }[];
2095
2208
  };
2209
+ DataChangedScope: {
2210
+ name: string;
2211
+ kind: string;
2212
+ desc: string;
2213
+ props: {
2214
+ name: string;
2215
+ kind: string;
2216
+ desc: string;
2217
+ }[];
2218
+ };
2096
2219
  DataChangeHistoryButton: {
2097
2220
  name: string;
2098
2221
  kind: string;
@@ -2102,11 +2225,17 @@ export declare const ADAPTABLE_METAMODEL: {
2102
2225
  name: string;
2103
2226
  kind: string;
2104
2227
  desc: string;
2105
- props: {
2228
+ props: ({
2106
2229
  name: string;
2107
2230
  kind: string;
2108
2231
  desc: string;
2109
- }[];
2232
+ ref?: undefined;
2233
+ } | {
2234
+ name: string;
2235
+ kind: string;
2236
+ desc: string;
2237
+ ref: string;
2238
+ })[];
2110
2239
  };
2111
2240
  DataChangeHistoryOptions: {
2112
2241
  name: string;
@@ -2170,7 +2299,7 @@ export declare const ADAPTABLE_METAMODEL: {
2170
2299
  ref: string;
2171
2300
  }[];
2172
2301
  };
2173
- DataUpdateConfig: {
2302
+ DataSetOptions: {
2174
2303
  name: string;
2175
2304
  kind: string;
2176
2305
  desc: string;
@@ -2181,7 +2310,7 @@ export declare const ADAPTABLE_METAMODEL: {
2181
2310
  isOpt: boolean;
2182
2311
  }[];
2183
2312
  };
2184
- DateFormatterOptions: {
2313
+ DataUpdateConfig: {
2185
2314
  name: string;
2186
2315
  kind: string;
2187
2316
  desc: string;
@@ -2192,7 +2321,7 @@ export declare const ADAPTABLE_METAMODEL: {
2192
2321
  isOpt: boolean;
2193
2322
  }[];
2194
2323
  };
2195
- DateInputOptions: {
2324
+ DateFormatterOptions: {
2196
2325
  name: string;
2197
2326
  kind: string;
2198
2327
  desc: string;
@@ -2201,10 +2330,9 @@ export declare const ADAPTABLE_METAMODEL: {
2201
2330
  kind: string;
2202
2331
  desc: string;
2203
2332
  isOpt: boolean;
2204
- defVal: string;
2205
2333
  }[];
2206
2334
  };
2207
- DefaultAccessLevelContext: {
2335
+ DateInputOptions: {
2208
2336
  name: string;
2209
2337
  kind: string;
2210
2338
  desc: string;
@@ -2212,12 +2340,30 @@ export declare const ADAPTABLE_METAMODEL: {
2212
2340
  name: string;
2213
2341
  kind: string;
2214
2342
  desc: string;
2343
+ isOpt: boolean;
2344
+ defVal: string;
2215
2345
  }[];
2216
2346
  };
2347
+ DefaultAccessLevelContext: {
2348
+ name: string;
2349
+ kind: string;
2350
+ desc: string;
2351
+ };
2217
2352
  DetailInitContext: {
2218
2353
  name: string;
2219
2354
  kind: string;
2220
2355
  desc: string;
2356
+ props: ({
2357
+ name: string;
2358
+ kind: string;
2359
+ desc: string;
2360
+ ref?: undefined;
2361
+ } | {
2362
+ name: string;
2363
+ kind: string;
2364
+ desc: string;
2365
+ ref: string;
2366
+ })[];
2221
2367
  };
2222
2368
  EditActionRowFormContext: {
2223
2369
  name: string;
@@ -2271,21 +2417,27 @@ export declare const ADAPTABLE_METAMODEL: {
2271
2417
  defVal?: undefined;
2272
2418
  })[];
2273
2419
  };
2274
- EntitlementContext: {
2420
+ Entitlement: {
2275
2421
  name: string;
2276
2422
  kind: string;
2277
2423
  desc: string;
2278
- props: ({
2424
+ props: {
2279
2425
  name: string;
2280
2426
  kind: string;
2281
2427
  desc: string;
2282
- ref?: undefined;
2283
- } | {
2428
+ ref: string;
2429
+ }[];
2430
+ };
2431
+ EntitlementContext: {
2432
+ name: string;
2433
+ kind: string;
2434
+ desc: string;
2435
+ props: {
2284
2436
  name: string;
2285
2437
  kind: string;
2286
2438
  desc: string;
2287
2439
  ref: string;
2288
- })[];
2440
+ }[];
2289
2441
  };
2290
2442
  EntitlementOptions: {
2291
2443
  name: string;
@@ -2402,6 +2554,11 @@ export declare const ADAPTABLE_METAMODEL: {
2402
2554
  isOpt: boolean;
2403
2555
  }[];
2404
2556
  };
2557
+ ExpressionCategory: {
2558
+ name: string;
2559
+ kind: string;
2560
+ desc: string;
2561
+ };
2405
2562
  ExpressionContext: {
2406
2563
  name: string;
2407
2564
  kind: string;
@@ -2468,6 +2625,7 @@ export declare const ADAPTABLE_METAMODEL: {
2468
2625
  isOpt: boolean;
2469
2626
  gridInfo: string;
2470
2627
  defVal: string;
2628
+ noCode?: undefined;
2471
2629
  } | {
2472
2630
  name: string;
2473
2631
  kind: string;
@@ -2475,8 +2633,27 @@ export declare const ADAPTABLE_METAMODEL: {
2475
2633
  isOpt: boolean;
2476
2634
  gridInfo?: undefined;
2477
2635
  defVal?: undefined;
2636
+ noCode?: undefined;
2637
+ } | {
2638
+ name: string;
2639
+ kind: string;
2640
+ desc: string;
2641
+ isOpt: boolean;
2642
+ noCode: string;
2643
+ defVal: string;
2644
+ gridInfo?: undefined;
2478
2645
  })[];
2479
2646
  };
2647
+ ExternalReport: {
2648
+ name: string;
2649
+ kind: string;
2650
+ desc: string;
2651
+ props: {
2652
+ name: string;
2653
+ kind: string;
2654
+ desc: string;
2655
+ }[];
2656
+ };
2480
2657
  FDC3Column: {
2481
2658
  name: string;
2482
2659
  kind: string;
@@ -2522,6 +2699,16 @@ export declare const ADAPTABLE_METAMODEL: {
2522
2699
  kind: string;
2523
2700
  desc: string;
2524
2701
  };
2702
+ FDC3DesktopAgent: {
2703
+ name: string;
2704
+ kind: string;
2705
+ desc: string;
2706
+ props: {
2707
+ name: string;
2708
+ kind: string;
2709
+ desc: string;
2710
+ }[];
2711
+ };
2525
2712
  FDC3Intent: {
2526
2713
  name: string;
2527
2714
  kind: string;
@@ -2543,6 +2730,16 @@ export declare const ADAPTABLE_METAMODEL: {
2543
2730
  isOpt: boolean;
2544
2731
  })[];
2545
2732
  };
2733
+ FilterContext: {
2734
+ name: string;
2735
+ kind: string;
2736
+ desc: string;
2737
+ props: {
2738
+ name: string;
2739
+ kind: string;
2740
+ desc: string;
2741
+ }[];
2742
+ };
2546
2743
  FilterOptions: {
2547
2744
  name: string;
2548
2745
  kind: string;
@@ -2870,72 +3067,6 @@ export declare const ADAPTABLE_METAMODEL: {
2870
3067
  desc: string;
2871
3068
  }[];
2872
3069
  };
2873
- GeneralOptions: {
2874
- name: string;
2875
- kind: string;
2876
- desc: string;
2877
- props: ({
2878
- name: string;
2879
- kind: string;
2880
- desc: string;
2881
- isOpt: boolean;
2882
- defVal: string;
2883
- noCode?: undefined;
2884
- gridInfo?: undefined;
2885
- ref?: undefined;
2886
- uiLabel?: undefined;
2887
- } | {
2888
- name: string;
2889
- kind: string;
2890
- desc: string;
2891
- isOpt: boolean;
2892
- defVal?: undefined;
2893
- noCode?: undefined;
2894
- gridInfo?: undefined;
2895
- ref?: undefined;
2896
- uiLabel?: undefined;
2897
- } | {
2898
- name: string;
2899
- kind: string;
2900
- desc: string;
2901
- isOpt: boolean;
2902
- noCode: string;
2903
- defVal: string;
2904
- gridInfo?: undefined;
2905
- ref?: undefined;
2906
- uiLabel?: undefined;
2907
- } | {
2908
- name: string;
2909
- kind: string;
2910
- desc: string;
2911
- isOpt: boolean;
2912
- gridInfo: string;
2913
- defVal: string;
2914
- noCode?: undefined;
2915
- ref?: undefined;
2916
- uiLabel?: undefined;
2917
- } | {
2918
- name: string;
2919
- kind: string;
2920
- desc: string;
2921
- isOpt: boolean;
2922
- defVal: string;
2923
- ref: string;
2924
- noCode?: undefined;
2925
- gridInfo?: undefined;
2926
- uiLabel?: undefined;
2927
- } | {
2928
- name: string;
2929
- kind: string;
2930
- desc: string;
2931
- uiLabel: string;
2932
- isOpt: boolean;
2933
- gridInfo: string;
2934
- noCode: string;
2935
- defVal: string;
2936
- ref?: undefined;
2937
- })[];
2938
- };
2939
3070
  GlobalExpressionFunctionsContext: {
2940
3071
  name: string;
2941
3072
  kind: string;
@@ -3055,6 +3186,11 @@ export declare const ADAPTABLE_METAMODEL: {
3055
3186
  kind: string;
3056
3187
  desc: string;
3057
3188
  };
3189
+ GridInfoSections: {
3190
+ name: string;
3191
+ kind: string;
3192
+ desc: string;
3193
+ };
3058
3194
  GridRow: {
3059
3195
  name: string;
3060
3196
  kind: string;
@@ -3079,26 +3215,35 @@ export declare const ADAPTABLE_METAMODEL: {
3079
3215
  ref: string;
3080
3216
  })[];
3081
3217
  };
3082
- HolidayContext: {
3218
+ GroupingOptions: {
3083
3219
  name: string;
3084
3220
  kind: string;
3085
3221
  desc: string;
3086
- props: {
3222
+ props: ({
3087
3223
  name: string;
3088
3224
  kind: string;
3089
3225
  desc: string;
3090
- }[];
3091
- };
3092
- Holidays: {
3093
- name: string;
3094
- kind: string;
3095
- desc: string;
3096
- props: {
3226
+ isOpt: boolean;
3227
+ noCode: string;
3228
+ defVal: string;
3229
+ gridInfo?: undefined;
3230
+ } | {
3097
3231
  name: string;
3098
3232
  kind: string;
3099
3233
  desc: string;
3100
3234
  isOpt: boolean;
3101
- }[];
3235
+ gridInfo: string;
3236
+ defVal: string;
3237
+ noCode?: undefined;
3238
+ } | {
3239
+ name: string;
3240
+ kind: string;
3241
+ desc: string;
3242
+ isOpt: boolean;
3243
+ noCode?: undefined;
3244
+ defVal?: undefined;
3245
+ gridInfo?: undefined;
3246
+ })[];
3102
3247
  };
3103
3248
  IAdaptableNoCodeWizard: {
3104
3249
  name: string;
@@ -3317,6 +3462,18 @@ export declare const ADAPTABLE_METAMODEL: {
3317
3462
  isOpt: boolean;
3318
3463
  }[];
3319
3464
  };
3465
+ LayoutTagOptions: {
3466
+ name: string;
3467
+ kind: string;
3468
+ desc: string;
3469
+ props: {
3470
+ name: string;
3471
+ kind: string;
3472
+ desc: string;
3473
+ isOpt: boolean;
3474
+ defVal: string;
3475
+ }[];
3476
+ };
3320
3477
  LayoutViewOptions: {
3321
3478
  name: string;
3322
3479
  kind: string;
@@ -3452,6 +3609,38 @@ export declare const ADAPTABLE_METAMODEL: {
3452
3609
  isOpt: boolean;
3453
3610
  }[];
3454
3611
  };
3612
+ NumericStyledColumn: {
3613
+ name: string;
3614
+ kind: string;
3615
+ desc: string;
3616
+ props: ({
3617
+ name: string;
3618
+ kind: string;
3619
+ desc: string;
3620
+ isOpt: boolean;
3621
+ ref?: undefined;
3622
+ defVal?: undefined;
3623
+ } | {
3624
+ name: string;
3625
+ kind: string;
3626
+ desc: string;
3627
+ isOpt: boolean;
3628
+ ref: string;
3629
+ defVal?: undefined;
3630
+ } | {
3631
+ name: string;
3632
+ kind: string;
3633
+ desc: string;
3634
+ isOpt: boolean;
3635
+ defVal: string;
3636
+ ref: string;
3637
+ })[];
3638
+ };
3639
+ ObjectTagsContext: {
3640
+ name: string;
3641
+ kind: string;
3642
+ desc: string;
3643
+ };
3455
3644
  OpenFinPluginOptions: {
3456
3645
  name: string;
3457
3646
  kind: string;
@@ -3540,6 +3729,11 @@ export declare const ADAPTABLE_METAMODEL: {
3540
3729
  kind: string;
3541
3730
  desc: string;
3542
3731
  };
3732
+ OrganizationIntents: {
3733
+ name: string;
3734
+ kind: string;
3735
+ desc: string;
3736
+ };
3543
3737
  PercentBarStyle: {
3544
3738
  name: string;
3545
3739
  kind: string;
@@ -3728,6 +3922,21 @@ export declare const ADAPTABLE_METAMODEL: {
3728
3922
  ref?: undefined;
3729
3923
  })[];
3730
3924
  };
3925
+ PredicateDefInput: {
3926
+ name: string;
3927
+ kind: string;
3928
+ desc: string;
3929
+ };
3930
+ PredicateDefToStringParams: {
3931
+ name: string;
3932
+ kind: string;
3933
+ desc: string;
3934
+ };
3935
+ PredicateModuleScope: {
3936
+ name: string;
3937
+ kind: string;
3938
+ desc: string;
3939
+ };
3731
3940
  PredicateOptions: {
3732
3941
  name: string;
3733
3942
  kind: string;
@@ -4056,16 +4265,6 @@ export declare const ADAPTABLE_METAMODEL: {
4056
4265
  desc: string;
4057
4266
  }[];
4058
4267
  };
4059
- ServerReport: {
4060
- name: string;
4061
- kind: string;
4062
- desc: string;
4063
- props: {
4064
- name: string;
4065
- kind: string;
4066
- desc: string;
4067
- }[];
4068
- };
4069
4268
  ServerValidationContext: {
4070
4269
  name: string;
4071
4270
  kind: string;
@@ -4118,11 +4317,6 @@ export declare const ADAPTABLE_METAMODEL: {
4118
4317
  name: string;
4119
4318
  kind: string;
4120
4319
  desc: string;
4121
- props: {
4122
- name: string;
4123
- kind: string;
4124
- desc: string;
4125
- }[];
4126
4320
  };
4127
4321
  SharedEntity: {
4128
4322
  name: string;
@@ -4565,12 +4759,22 @@ export declare const ADAPTABLE_METAMODEL: {
4565
4759
  kind: string;
4566
4760
  desc: string;
4567
4761
  props: ({
4762
+ name: string;
4763
+ kind: string;
4764
+ desc: string;
4765
+ isOpt: boolean;
4766
+ defVal: string;
4767
+ ref?: undefined;
4768
+ noCode?: undefined;
4769
+ gridInfo?: undefined;
4770
+ } | {
4568
4771
  name: string;
4569
4772
  kind: string;
4570
4773
  desc: string;
4571
4774
  isOpt: boolean;
4572
4775
  defVal: string;
4573
4776
  ref: string;
4777
+ noCode?: undefined;
4574
4778
  gridInfo?: undefined;
4575
4779
  } | {
4576
4780
  name: string;
@@ -4579,6 +4783,7 @@ export declare const ADAPTABLE_METAMODEL: {
4579
4783
  isOpt: boolean;
4580
4784
  defVal?: undefined;
4581
4785
  ref?: undefined;
4786
+ noCode?: undefined;
4582
4787
  gridInfo?: undefined;
4583
4788
  } | {
4584
4789
  name: string;
@@ -4587,6 +4792,16 @@ export declare const ADAPTABLE_METAMODEL: {
4587
4792
  isOpt: boolean;
4588
4793
  ref: string;
4589
4794
  defVal?: undefined;
4795
+ noCode?: undefined;
4796
+ gridInfo?: undefined;
4797
+ } | {
4798
+ name: string;
4799
+ kind: string;
4800
+ desc: string;
4801
+ isOpt: boolean;
4802
+ noCode: string;
4803
+ defVal: string;
4804
+ ref?: undefined;
4590
4805
  gridInfo?: undefined;
4591
4806
  } | {
4592
4807
  name: string;
@@ -4596,6 +4811,7 @@ export declare const ADAPTABLE_METAMODEL: {
4596
4811
  gridInfo: string;
4597
4812
  defVal: string;
4598
4813
  ref?: undefined;
4814
+ noCode?: undefined;
4599
4815
  } | {
4600
4816
  name: string;
4601
4817
  kind: string;
@@ -4604,6 +4820,7 @@ export declare const ADAPTABLE_METAMODEL: {
4604
4820
  gridInfo: string;
4605
4821
  defVal?: undefined;
4606
4822
  ref?: undefined;
4823
+ noCode?: undefined;
4607
4824
  })[];
4608
4825
  };
4609
4826
  UserMenuItem: {