@adaptabletools/adaptable 11.0.0-canary.3 → 11.0.0-canary.7

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 (267) hide show
  1. package/agGrid.d.ts +5 -4
  2. package/agGrid.js +9 -7
  3. package/base.css +135 -69
  4. package/bundle.cjs.js +104 -99
  5. package/index.css +136 -69
  6. package/package.json +3 -3
  7. package/publishTimestamp.d.ts +1 -1
  8. package/publishTimestamp.js +1 -1
  9. package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +7 -5
  10. package/src/AdaptableInterfaces/IAdaptable.d.ts +1 -0
  11. package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +1 -3
  12. package/src/AdaptableOptions/AdaptableOptions.d.ts +14 -7
  13. package/src/AdaptableOptions/{QueryLanguageOptions.d.ts → AdaptableQLOptions.d.ts} +34 -9
  14. package/src/AdaptableOptions/{QueryLanguageOptions.js → AdaptableQLOptions.js} +0 -0
  15. package/src/AdaptableOptions/AlertOptions.d.ts +82 -0
  16. package/src/AdaptableOptions/AlertOptions.js +2 -0
  17. package/src/AdaptableOptions/ContainerOptions.d.ts +2 -2
  18. package/src/AdaptableOptions/FilterOptions.d.ts +1 -1
  19. package/src/AdaptableOptions/GeneralOptions.d.ts +0 -7
  20. package/src/AdaptableOptions/NotificationsOptions.d.ts +1 -78
  21. package/src/AdaptableOptions/SearchOptions.d.ts +0 -9
  22. package/src/AdaptableOptions/StateOptions.d.ts +9 -8
  23. package/src/AdaptableOptions/TeamSharingOptions.d.ts +2 -2
  24. package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -2
  25. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +3 -3
  26. package/src/Api/AdaptableApi.d.ts +6 -0
  27. package/src/Api/AlertApi.d.ts +2 -3
  28. package/src/Api/CalculatedColumnApi.d.ts +2 -9
  29. package/src/Api/ColumnApi.d.ts +0 -4
  30. package/src/Api/EventApi.d.ts +8 -3
  31. package/src/Api/Events/GridDataChanged.d.ts +4 -2
  32. package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +1 -1
  33. package/src/Api/FreeTextColumnApi.d.ts +0 -12
  34. package/src/Api/GridApi.d.ts +13 -2
  35. package/src/Api/IPushPullApi.d.ts +1 -1
  36. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -1
  37. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  38. package/src/Api/Implementation/AlertApiImpl.d.ts +1 -2
  39. package/src/Api/Implementation/AlertApiImpl.js +19 -10
  40. package/src/Api/Implementation/ApiBase.d.ts +5 -2
  41. package/src/Api/Implementation/ApiBase.js +8 -2
  42. package/src/Api/Implementation/CalculatedColumnApiImpl.js +3 -4
  43. package/src/Api/Implementation/ColumnApiImpl.d.ts +0 -1
  44. package/src/Api/Implementation/ColumnApiImpl.js +0 -5
  45. package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +0 -5
  46. package/src/Api/Implementation/FreeTextColumnApiImpl.js +0 -9
  47. package/src/Api/Implementation/GridApiImpl.d.ts +4 -1
  48. package/src/Api/Implementation/GridApiImpl.js +27 -4
  49. package/src/Api/Implementation/InternalApiImpl.d.ts +2 -3
  50. package/src/Api/Implementation/InternalApiImpl.js +7 -6
  51. package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
  52. package/src/Api/Implementation/LayoutApiImpl.js +11 -0
  53. package/src/Api/Implementation/QueryApiImpl.js +4 -1
  54. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +4 -1
  55. package/src/Api/Implementation/QueryLanguageApiImpl.js +20 -8
  56. package/src/Api/Implementation/SettingsPanelApiImpl.d.ts +7 -0
  57. package/src/Api/Implementation/SettingsPanelApiImpl.js +15 -0
  58. package/src/Api/InternalApi.d.ts +2 -3
  59. package/src/Api/LayoutApi.d.ts +7 -0
  60. package/src/Api/OpenFinApi.d.ts +5 -0
  61. package/src/Api/PluginsApi.d.ts +29 -0
  62. package/src/Api/QueryApi.d.ts +2 -2
  63. package/src/Api/QueryLanguageApi.d.ts +23 -10
  64. package/src/Api/SettingsPanelApi.d.ts +16 -0
  65. package/src/Api/SettingsPanelApi.js +2 -0
  66. package/src/Api/UserInterfaceApi.d.ts +5 -2
  67. package/src/PredefinedConfig/AlertState.d.ts +8 -6
  68. package/src/PredefinedConfig/CalculatedColumnState.d.ts +8 -4
  69. package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +7 -5
  70. package/src/PredefinedConfig/Common/AdaptableQuery.js +2 -6
  71. package/src/PredefinedConfig/Common/CellHighlightInfo.d.ts +1 -12
  72. package/src/PredefinedConfig/Common/Enums.d.ts +0 -1
  73. package/src/PredefinedConfig/Common/Enums.js +0 -2
  74. package/src/PredefinedConfig/Common/FDC3Context.d.ts +4 -12
  75. package/src/PredefinedConfig/Common/RowHighlightInfo.d.ts +15 -0
  76. package/src/PredefinedConfig/Common/RowHighlightInfo.js +2 -0
  77. package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +1 -1
  78. package/src/PredefinedConfig/Common/Types.d.ts +3 -1
  79. package/src/PredefinedConfig/Common/Types.js +1 -0
  80. package/src/PredefinedConfig/CustomSortState.d.ts +0 -1
  81. package/src/PredefinedConfig/FlashingCellState.d.ts +3 -1
  82. package/src/PredefinedConfig/FreeTextColumnState.d.ts +1 -1
  83. package/src/PredefinedConfig/LayoutState.d.ts +0 -2
  84. package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -2
  85. package/src/PredefinedConfig/Selection/GridCellRange.d.ts +3 -1
  86. package/src/PredefinedConfig/SystemState.d.ts +2 -1
  87. package/src/Redux/ActionsReducers/ApplicationRedux.js +9 -3
  88. package/src/Redux/ActionsReducers/FlashingCellRedux.js +4 -8
  89. package/src/Redux/ActionsReducers/GridRedux.js +3 -1
  90. package/src/Redux/ActionsReducers/PopupRedux.js +13 -3
  91. package/src/Redux/ActionsReducers/QuickSearchRedux.js +3 -1
  92. package/src/Redux/ActionsReducers/SystemRedux.d.ts +6 -5
  93. package/src/Redux/ActionsReducers/SystemRedux.js +16 -14
  94. package/src/Redux/ActionsReducers/ThemeRedux.js +3 -1
  95. package/src/Redux/Store/AdaptableReduxMerger.js +1 -1
  96. package/src/Redux/Store/AdaptableStore.js +34 -8
  97. package/src/Strategy/AlertModule.js +16 -6
  98. package/src/Strategy/CalculatedColumnModule.js +4 -4
  99. package/src/Strategy/ChartingModule.d.ts +3 -3
  100. package/src/Strategy/ChartingModule.js +2 -2
  101. package/src/Strategy/ConditionalStyleModule.js +4 -0
  102. package/src/Strategy/FlashingCellModule.js +4 -4
  103. package/src/Strategy/FreeTextColumnModule.d.ts +2 -2
  104. package/src/Strategy/FreeTextColumnModule.js +11 -0
  105. package/src/Strategy/LayoutModule.js +1 -6
  106. package/src/Strategy/{SetingsPanelModule.d.ts → SettingsPanelModule.d.ts} +0 -0
  107. package/src/Strategy/{SetingsPanelModule.js → SettingsPanelModule.js} +0 -0
  108. package/src/Strategy/ToolPanelModule.js +5 -3
  109. package/src/Strategy/Utilities/getAlertPreviewViewItems.js +1 -1
  110. package/src/Strategy/Utilities/getExpressionViewItems.d.ts +2 -2
  111. package/src/Strategy/Utilities/getExpressionViewItems.js +2 -1
  112. package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +1 -1
  113. package/src/Strategy/Utilities/getRuleViewItems.d.ts +0 -1
  114. package/src/Strategy/Utilities/getRuleViewItems.js +1 -3
  115. package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +2 -1
  116. package/src/Utilities/Constants/DocumentationLinkConstants.js +3 -2
  117. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +23 -17
  118. package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.d.ts → aggregatedBooleanExpressionFunctions.d.ts} +1 -1
  119. package/src/Utilities/ExpressionFunctions/{aggregationExpressionFunctions.js → aggregatedBooleanExpressionFunctions.js} +4 -4
  120. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +24 -0
  121. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +339 -0
  122. package/src/Utilities/ExpressionFunctions/dateUtils.d.ts +1 -0
  123. package/src/Utilities/ExpressionFunctions/dateUtils.js +13 -0
  124. package/src/Utilities/ExpressionFunctions/deepMap.d.ts +35 -0
  125. package/src/Utilities/ExpressionFunctions/deepMap.js +283 -0
  126. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +2 -2
  127. package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +8 -8
  128. package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +35 -0
  129. package/src/Utilities/ExpressionFunctions/groupingMap.js +105 -0
  130. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +2 -2
  131. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +33 -0
  132. package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +154 -0
  133. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +13 -4
  134. package/src/Utilities/Helpers/AdaptableHelper.js +3 -1
  135. package/src/Utilities/Helpers/CalendarHelper.js +220 -55
  136. package/src/Utilities/Interface/MessagePopups.d.ts +6 -2
  137. package/src/Utilities/ObjectFactory.js +1 -0
  138. package/src/Utilities/Services/AlertService.js +8 -4
  139. package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +7 -3
  140. package/src/Utilities/Services/CalculatedColumnExpressionService.js +143 -18
  141. package/src/Utilities/Services/DataService.js +6 -1
  142. package/src/Utilities/Services/Interface/IAdaptableService.d.ts +1 -1
  143. package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +6 -3
  144. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +9 -3
  145. package/src/Utilities/Services/LicenseService.js +1 -1
  146. package/src/Utilities/Services/QueryLanguageService.d.ts +11 -4
  147. package/src/Utilities/Services/QueryLanguageService.js +92 -28
  148. package/src/Utilities/Services/ReportService.js +6 -2
  149. package/src/Utilities/Services/TeamSharingService.js +5 -3
  150. package/src/View/AdaptablePopover/index.js +6 -1
  151. package/src/View/AdaptableView.js +1 -1
  152. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +5 -1
  153. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +10 -5
  154. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +4 -1
  155. package/src/View/AdaptableWizardView/helper.js +5 -3
  156. package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +1 -1
  157. package/src/View/Alert/Wizard/AlertButtonsEditor.js +5 -1
  158. package/src/View/Alert/Wizard/AlertDisplayWizardSection.d.ts +1 -0
  159. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +2 -2
  160. package/src/View/Alert/Wizard/AlertWizard.js +2 -2
  161. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +2 -2
  162. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +3 -2
  163. package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
  164. package/src/View/CalculatedColumn/CalculatedColumnSharedEntity.js +3 -3
  165. package/src/View/CalculatedColumn/CalculatedColumnSummary.js +2 -4
  166. package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +43 -12
  167. package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +1 -2
  168. package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -2
  169. package/src/View/CellSummary/CellSummaryViewPanel.js +1 -2
  170. package/src/View/ColorPicker.d.ts +1 -1
  171. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  172. package/src/View/Components/AdaptableInput/index.d.ts +1 -1
  173. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +5 -2
  174. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  175. package/src/View/Components/EntityRulesEditor/index.js +11 -12
  176. package/src/View/Components/FilterForm/FilterForm.js +0 -2
  177. package/src/View/Components/FilterForm/QuickFilterForm.js +6 -5
  178. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  179. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
  180. package/src/View/Components/Panels/PanelWithImage.d.ts +2 -2
  181. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.d.ts +0 -3
  182. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +45 -88
  183. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +11 -0
  184. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +78 -0
  185. package/src/View/Components/Popups/AdaptablePopup/Navigation.d.ts +1 -3
  186. package/src/View/Components/Popups/AdaptablePopup/Navigation.js +5 -13
  187. package/src/View/Components/Popups/AdaptablePopup/TopBar.js +5 -4
  188. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.d.ts +2 -0
  189. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +44 -0
  190. package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +1 -0
  191. package/src/View/Components/Popups/AdaptablePopupAlert.js +1 -1
  192. package/src/View/Components/Popups/AdaptablePopupConfirmation.js +3 -1
  193. package/src/View/Components/Popups/AdaptablePopupPrompt.d.ts +5 -12
  194. package/src/View/Components/Popups/AdaptablePopupPrompt.js +38 -37
  195. package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +4 -1
  196. package/src/View/Components/ScopeComponent.js +4 -1
  197. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +5 -1
  198. package/src/View/Components/ToolPanel/ToolPanelPopup.js +3 -1
  199. package/src/View/Components/ToolPanel/ToolPanelWrapper.js +1 -1
  200. package/src/View/Components/ValueSelector/index.js +1 -1
  201. package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +2 -2
  202. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.d.ts +8 -0
  203. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +27 -0
  204. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +7 -0
  205. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +3 -1
  206. package/src/View/CustomSort/Wizard/CustomSortWizard.js +1 -1
  207. package/src/View/Dashboard/CustomToolbarWrapper.js +5 -1
  208. package/src/View/Dashboard/Dashboard.js +2 -3
  209. package/src/View/Dashboard/DashboardPopup.js +3 -1
  210. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +2 -1
  211. package/src/View/Export/Wizard/ReportColumnTypeWizard.js +3 -1
  212. package/src/View/Export/Wizard/ReportRowTypeWizard.js +3 -1
  213. package/src/View/Filter/FilterViewPanel.d.ts +1 -4
  214. package/src/View/Filter/FilterViewPanel.js +1 -3
  215. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +2 -2
  216. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +1 -1
  217. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +1 -1
  218. package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -2
  219. package/src/View/GridInfo/AdaptableOptionsComponent.js +4 -1
  220. package/src/View/Layout/Wizard/LayoutEditor/index.js +6 -2
  221. package/src/View/Layout/Wizard/LayoutEditorWizard.js +7 -1
  222. package/src/View/License/LicenseWatermark.js +1 -1
  223. package/src/View/Query/ExpandedQueryPopup.js +9 -2
  224. package/src/View/Query/QueryViewPanel.js +3 -1
  225. package/src/View/Query/Wizard/NamedQueryWizard.js +3 -3
  226. package/src/View/QuickSearch/QuickSearchPopup.js +3 -3
  227. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +12 -2
  228. package/src/View/SpecialColumnSettingsWizardStep.js +1 -2
  229. package/src/View/UIHelper.js +4 -1
  230. package/src/View/Wizard/AdaptableWizard.js +12 -3
  231. package/src/View/Wizard/OnePageAdaptableWizard.js +5 -1
  232. package/src/agGrid/Adaptable.d.ts +3 -3
  233. package/src/agGrid/Adaptable.js +117 -77
  234. package/src/agGrid/agGridHelper.js +4 -9
  235. package/src/agGrid/agGridMenuHelper.js +4 -8
  236. package/src/agGrid/editors/AdaptableDateEditor/index.js +1 -1
  237. package/src/agGrid/editors/AdaptableNumberEditor/index.js +1 -1
  238. package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +4 -2
  239. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +4 -4
  240. package/src/components/ApplicationIcon.d.ts +1 -0
  241. package/src/components/ApplicationIcon.js +2 -2
  242. package/src/components/Dashboard/Dashboard.js +4 -1
  243. package/src/components/Datepicker/index.d.ts +1 -1
  244. package/src/components/Dropdown/index.js +8 -1
  245. package/src/components/ExpressionEditor/EditorInput.d.ts +1 -1
  246. package/src/components/ExpressionEditor/EditorInput.js +5 -2
  247. package/src/components/ExpressionEditor/EditorInputReactive.d.ts +1 -1
  248. package/src/components/ExpressionEditor/EditorInputReactive.js +4 -2
  249. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +5 -2
  250. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.d.ts +2 -0
  251. package/src/components/ExpressionEditor/editorButtonsAggregatedScalar.js +45 -0
  252. package/src/components/ExpressionEditor/editorButtonsReactive.js +8 -13
  253. package/src/components/ExpressionEditor/index.d.ts +2 -1
  254. package/src/components/ExpressionEditor/index.js +20 -6
  255. package/src/components/Input/index.d.ts +1 -1
  256. package/src/components/List/ListGroupItem/index.d.ts +1 -1
  257. package/src/components/Logo/index.js +8 -7
  258. package/src/components/PopupWithFooter.d.ts +1 -1
  259. package/src/components/SizedContainer/index.js +7 -1
  260. package/src/components/Textarea/index.d.ts +1 -1
  261. package/src/components/WindowModal/WindowModal.js +4 -1
  262. package/src/metamodel/adaptable.metamodel.d.ts +114 -59
  263. package/src/metamodel/adaptable.metamodel.js +373 -242
  264. package/src/types.d.ts +9 -6
  265. package/themes/dark.css +4 -4
  266. package/version.d.ts +1 -1
  267. package/version.js +1 -1
@@ -101,6 +101,11 @@ export declare const ADAPTABLE_METAMODEL: {
101
101
  isOptional?: undefined;
102
102
  })[];
103
103
  };
104
+ AdaptableAlertQuery: {
105
+ name: string;
106
+ kind: string;
107
+ description: string;
108
+ };
104
109
  AdaptableApi: {
105
110
  name: string;
106
111
  kind: string;
@@ -139,6 +144,11 @@ export declare const ADAPTABLE_METAMODEL: {
139
144
  reference: string;
140
145
  })[];
141
146
  };
147
+ AdaptableCalculatedColumnQuery: {
148
+ name: string;
149
+ kind: string;
150
+ description: string;
151
+ };
142
152
  AdaptableColumn: {
143
153
  name: string;
144
154
  kind: string;
@@ -358,18 +368,18 @@ export declare const ADAPTABLE_METAMODEL: {
358
368
  description: string;
359
369
  uiLabel: string;
360
370
  isOptional: boolean;
361
- gridInfo?: undefined;
371
+ gridInfo: string;
372
+ reference: string;
362
373
  defaultValue?: undefined;
363
- reference?: undefined;
364
374
  } | {
365
375
  name: string;
366
376
  kind: string;
367
377
  description: string;
368
378
  uiLabel: string;
369
379
  isOptional: boolean;
370
- gridInfo: string;
371
- reference: string;
380
+ gridInfo?: undefined;
372
381
  defaultValue?: undefined;
382
+ reference?: undefined;
373
383
  } | {
374
384
  name: string;
375
385
  kind: string;
@@ -663,17 +673,52 @@ export declare const ADAPTABLE_METAMODEL: {
663
673
  kind: string;
664
674
  description: string;
665
675
  };
676
+ AlertOptions: {
677
+ name: string;
678
+ kind: string;
679
+ description: string;
680
+ properties: ({
681
+ name: string;
682
+ kind: string;
683
+ description: string;
684
+ uiLabel: string;
685
+ isOptional: boolean;
686
+ gridInfo?: undefined;
687
+ defaultValue?: undefined;
688
+ } | {
689
+ name: string;
690
+ kind: string;
691
+ description: string;
692
+ uiLabel: string;
693
+ isOptional: boolean;
694
+ gridInfo: string;
695
+ defaultValue: string;
696
+ })[];
697
+ };
666
698
  AlertProperties: {
667
699
  name: string;
668
700
  kind: string;
669
701
  description: string;
670
- properties: {
702
+ properties: ({
671
703
  name: string;
672
704
  kind: string;
673
705
  description: string;
674
706
  uiLabel: string;
675
707
  isOptional: boolean;
676
- }[];
708
+ defaultValue?: undefined;
709
+ } | {
710
+ name: string;
711
+ kind: string;
712
+ description: string;
713
+ uiLabel: string;
714
+ isOptional: boolean;
715
+ defaultValue: string;
716
+ })[];
717
+ };
718
+ AlertRule: {
719
+ name: string;
720
+ kind: string;
721
+ description: string;
677
722
  };
678
723
  AlertState: {
679
724
  name: string;
@@ -685,7 +730,6 @@ export declare const ADAPTABLE_METAMODEL: {
685
730
  description: string;
686
731
  uiLabel: string;
687
732
  isOptional: boolean;
688
- defaultValue: string;
689
733
  }[];
690
734
  };
691
735
  AlternativeModuleName: {
@@ -849,7 +893,6 @@ export declare const ADAPTABLE_METAMODEL: {
849
893
  description: string;
850
894
  uiLabel: string;
851
895
  isOptional: boolean;
852
- defaultValue: string;
853
896
  }[];
854
897
  };
855
898
  CellChangedInfo: {
@@ -873,6 +916,14 @@ export declare const ADAPTABLE_METAMODEL: {
873
916
  kind: string;
874
917
  description: string;
875
918
  uiLabel: string;
919
+ reference?: undefined;
920
+ isOptional?: undefined;
921
+ } | {
922
+ name: string;
923
+ kind: string;
924
+ description: string;
925
+ uiLabel: string;
926
+ reference: string;
876
927
  isOptional?: undefined;
877
928
  } | {
878
929
  name: string;
@@ -880,6 +931,7 @@ export declare const ADAPTABLE_METAMODEL: {
880
931
  description: string;
881
932
  uiLabel: string;
882
933
  isOptional: boolean;
934
+ reference?: undefined;
883
935
  })[];
884
936
  };
885
937
  CellSummaryApi: {
@@ -1192,7 +1244,6 @@ export declare const ADAPTABLE_METAMODEL: {
1192
1244
  description: string;
1193
1245
  uiLabel: string;
1194
1246
  isOptional: boolean;
1195
- defaultValue: string;
1196
1247
  }[];
1197
1248
  };
1198
1249
  CustomToolbar: {
@@ -1731,7 +1782,7 @@ export declare const ADAPTABLE_METAMODEL: {
1731
1782
  kind: string;
1732
1783
  description: string;
1733
1784
  };
1734
- FDC3Context: {
1785
+ ExpressionOptions: {
1735
1786
  name: string;
1736
1787
  kind: string;
1737
1788
  description: string;
@@ -1740,13 +1791,37 @@ export declare const ADAPTABLE_METAMODEL: {
1740
1791
  kind: string;
1741
1792
  description: string;
1742
1793
  uiLabel: string;
1743
- isOptional?: undefined;
1794
+ isOptional: boolean;
1795
+ gridInfo: string;
1796
+ defaultValue: string;
1797
+ reference: string;
1744
1798
  } | {
1745
1799
  name: string;
1746
1800
  kind: string;
1747
1801
  description: string;
1748
1802
  uiLabel: string;
1749
1803
  isOptional: boolean;
1804
+ gridInfo: string;
1805
+ defaultValue: string;
1806
+ reference?: undefined;
1807
+ })[];
1808
+ };
1809
+ FDC3Context: {
1810
+ name: string;
1811
+ kind: string;
1812
+ description: string;
1813
+ properties: ({
1814
+ name: string;
1815
+ kind: string;
1816
+ description: string;
1817
+ uiLabel: string;
1818
+ isOptional: boolean;
1819
+ } | {
1820
+ name: string;
1821
+ kind: string;
1822
+ description: string;
1823
+ uiLabel: string;
1824
+ isOptional?: undefined;
1750
1825
  })[];
1751
1826
  };
1752
1827
  FilterActionOnDataChange: {
@@ -1830,6 +1905,7 @@ export declare const ADAPTABLE_METAMODEL: {
1830
1905
  description: string;
1831
1906
  uiLabel: string;
1832
1907
  isOptional: boolean;
1908
+ defaultValue: string;
1833
1909
  }[];
1834
1910
  };
1835
1911
  FilterState: {
@@ -1960,7 +2036,6 @@ export declare const ADAPTABLE_METAMODEL: {
1960
2036
  description: string;
1961
2037
  uiLabel: string;
1962
2038
  isOptional: boolean;
1963
- defaultValue: string;
1964
2039
  }[];
1965
2040
  };
1966
2041
  FormatColumn: {
@@ -2033,16 +2108,16 @@ export declare const ADAPTABLE_METAMODEL: {
2033
2108
  kind: string;
2034
2109
  description: string;
2035
2110
  uiLabel: string;
2036
- isOptional?: undefined;
2037
2111
  defaultValue?: undefined;
2112
+ isOptional?: undefined;
2038
2113
  reference?: undefined;
2039
2114
  } | {
2040
2115
  name: string;
2041
2116
  kind: string;
2042
2117
  description: string;
2043
2118
  uiLabel: string;
2044
- isOptional: boolean;
2045
2119
  defaultValue: string;
2120
+ isOptional?: undefined;
2046
2121
  reference?: undefined;
2047
2122
  } | {
2048
2123
  name: string;
@@ -2060,6 +2135,14 @@ export declare const ADAPTABLE_METAMODEL: {
2060
2135
  isOptional: boolean;
2061
2136
  reference: string;
2062
2137
  defaultValue?: undefined;
2138
+ } | {
2139
+ name: string;
2140
+ kind: string;
2141
+ description: string;
2142
+ uiLabel: string;
2143
+ isOptional: boolean;
2144
+ defaultValue: string;
2145
+ reference?: undefined;
2063
2146
  })[];
2064
2147
  };
2065
2148
  FreeTextColumnApi: {
@@ -2441,7 +2524,6 @@ export declare const ADAPTABLE_METAMODEL: {
2441
2524
  description: string;
2442
2525
  uiLabel: string;
2443
2526
  isOptional: boolean;
2444
- defaultValue: string;
2445
2527
  }[];
2446
2528
  };
2447
2529
  LiveDataChangedInfo: {
@@ -2523,15 +2605,6 @@ export declare const ADAPTABLE_METAMODEL: {
2523
2605
  kind: string;
2524
2606
  description: string;
2525
2607
  properties: ({
2526
- name: string;
2527
- kind: string;
2528
- description: string;
2529
- uiLabel: string;
2530
- isOptional: boolean;
2531
- gridInfo?: undefined;
2532
- defaultValue?: undefined;
2533
- reference?: undefined;
2534
- } | {
2535
2608
  name: string;
2536
2609
  kind: string;
2537
2610
  description: string;
@@ -2653,6 +2726,12 @@ export declare const ADAPTABLE_METAMODEL: {
2653
2726
  name: string;
2654
2727
  kind: string;
2655
2728
  description: string;
2729
+ properties: {
2730
+ name: string;
2731
+ kind: string;
2732
+ description: string;
2733
+ uiLabel: string;
2734
+ }[];
2656
2735
  };
2657
2736
  PlusMinusApi: {
2658
2737
  name: string;
@@ -2768,30 +2847,6 @@ export declare const ADAPTABLE_METAMODEL: {
2768
2847
  uiLabel: string;
2769
2848
  }[];
2770
2849
  };
2771
- QueryLanguageOptions: {
2772
- name: string;
2773
- kind: string;
2774
- description: string;
2775
- properties: ({
2776
- name: string;
2777
- kind: string;
2778
- description: string;
2779
- uiLabel: string;
2780
- isOptional: boolean;
2781
- gridInfo: string;
2782
- defaultValue: string;
2783
- reference: string;
2784
- } | {
2785
- name: string;
2786
- kind: string;
2787
- description: string;
2788
- uiLabel: string;
2789
- isOptional: boolean;
2790
- gridInfo: string;
2791
- defaultValue: string;
2792
- reference?: undefined;
2793
- })[];
2794
- };
2795
2850
  QueryState: {
2796
2851
  name: string;
2797
2852
  kind: string;
@@ -2992,7 +3047,6 @@ export declare const ADAPTABLE_METAMODEL: {
2992
3047
  isOptional: boolean;
2993
3048
  gridInfo: string;
2994
3049
  defaultValue: string;
2995
- reference?: undefined;
2996
3050
  } | {
2997
3051
  name: string;
2998
3052
  kind: string;
@@ -3001,16 +3055,6 @@ export declare const ADAPTABLE_METAMODEL: {
3001
3055
  isOptional: boolean;
3002
3056
  defaultValue: string;
3003
3057
  gridInfo?: undefined;
3004
- reference?: undefined;
3005
- } | {
3006
- name: string;
3007
- kind: string;
3008
- description: string;
3009
- uiLabel: string;
3010
- isOptional: boolean;
3011
- gridInfo: string;
3012
- defaultValue: string;
3013
- reference: string;
3014
3058
  })[];
3015
3059
  };
3016
3060
  SelectedCellInfo: {
@@ -3047,6 +3091,17 @@ export declare const ADAPTABLE_METAMODEL: {
3047
3091
  reference: string;
3048
3092
  }[];
3049
3093
  };
3094
+ SettingsPanelApi: {
3095
+ name: string;
3096
+ kind: string;
3097
+ description: string;
3098
+ properties: {
3099
+ name: string;
3100
+ kind: string;
3101
+ description: string;
3102
+ uiLabel: string;
3103
+ }[];
3104
+ };
3050
3105
  SharedEntity: {
3051
3106
  name: string;
3052
3107
  kind: string;