@adaptabletools/adaptable 13.0.0-canary.2 → 13.0.0-canary.20

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 (263) hide show
  1. package/agGrid.d.ts +23 -1
  2. package/agGrid.js +23 -1
  3. package/base.css +1232 -733
  4. package/base.css.map +1 -0
  5. package/bundle.cjs.js +191 -174
  6. package/index.css +1250 -734
  7. package/index.css.map +1 -0
  8. package/package.json +5 -5
  9. package/publishTimestamp.d.ts +1 -1
  10. package/publishTimestamp.js +1 -1
  11. package/src/AdaptableInterfaces/IAdaptable.d.ts +7 -3
  12. package/src/AdaptableOptions/AdaptableOptions.d.ts +0 -2
  13. package/src/AdaptableOptions/AdaptableQLOptions.d.ts +136 -27
  14. package/src/AdaptableOptions/ExportOptions.d.ts +2 -2
  15. package/src/AdaptableOptions/FinsemblePluginOptions.d.ts +32 -0
  16. package/src/AdaptableOptions/FinsemblePluginOptions.js +2 -0
  17. package/src/AdaptableOptions/LayoutOptions.d.ts +2 -1
  18. package/src/Api/AdaptableApi.d.ts +2 -0
  19. package/src/Api/ColumnApi.d.ts +8 -2
  20. package/src/Api/ConditionalStyleApi.d.ts +20 -42
  21. package/src/Api/ConfigApi.d.ts +1 -2
  22. package/src/Api/ExportApi.d.ts +6 -6
  23. package/src/Api/FinsembleApi.d.ts +10 -0
  24. package/src/Api/FinsembleApi.js +2 -0
  25. package/src/Api/FormatColumnApi.d.ts +76 -59
  26. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
  27. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  28. package/src/Api/Implementation/ColumnApiImpl.d.ts +2 -1
  29. package/src/Api/Implementation/ColumnApiImpl.js +18 -14
  30. package/src/Api/Implementation/ExportApiImpl.d.ts +4 -4
  31. package/src/Api/Implementation/ExportApiImpl.js +14 -14
  32. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +36 -17
  33. package/src/Api/Implementation/FormatColumnApiImpl.js +101 -185
  34. package/src/Api/Implementation/PluginsApiImpl.d.ts +2 -0
  35. package/src/Api/Implementation/PluginsApiImpl.js +6 -0
  36. package/src/Api/Implementation/QueryLanguageApiImpl.d.ts +2 -3
  37. package/src/Api/Implementation/QueryLanguageApiImpl.js +9 -18
  38. package/src/Api/Implementation/ScopeApiImpl.d.ts +1 -1
  39. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +25 -0
  40. package/src/Api/Implementation/StyledColumnApiImpl.js +193 -0
  41. package/src/Api/Implementation/SystemStatusApiImpl.js +1 -2
  42. package/src/Api/Implementation/ToolPanelApiImpl.d.ts +3 -1
  43. package/src/Api/Implementation/ToolPanelApiImpl.js +8 -0
  44. package/src/Api/PluginsApi.d.ts +5 -0
  45. package/src/Api/QueryLanguageApi.d.ts +3 -7
  46. package/src/Api/ScopeApi.d.ts +1 -1
  47. package/src/Api/StyledColumnApi.d.ts +106 -0
  48. package/src/Api/StyledColumnApi.js +2 -0
  49. package/src/Api/ToolPanelApi.d.ts +10 -1
  50. package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
  51. package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
  52. package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +1 -1
  53. package/src/PredefinedConfig/Common/AdaptablePredicate.js +37 -37
  54. package/src/PredefinedConfig/Common/Types.d.ts +3 -3
  55. package/src/PredefinedConfig/Common/Types.js +1 -0
  56. package/src/PredefinedConfig/ConditionalStyleState.d.ts +10 -19
  57. package/src/PredefinedConfig/FormatColumnState.d.ts +21 -92
  58. package/src/PredefinedConfig/PredefinedConfig.d.ts +6 -0
  59. package/src/PredefinedConfig/StyledColumnState.d.ts +119 -0
  60. package/src/PredefinedConfig/StyledColumnState.js +2 -0
  61. package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +0 -18
  62. package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +0 -18
  63. package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +14 -0
  64. package/src/Redux/ActionsReducers/FormatColumnRedux.js +43 -1
  65. package/src/Redux/ActionsReducers/PluginsRedux.d.ts +4 -4
  66. package/src/Redux/ActionsReducers/PluginsRedux.js +5 -5
  67. package/src/Redux/ActionsReducers/StyledColumnRedux.d.ts +49 -0
  68. package/src/Redux/ActionsReducers/StyledColumnRedux.js +92 -0
  69. package/src/Redux/Store/AdaptableStore.js +9 -0
  70. package/src/Strategy/ConditionalStyleModule.d.ts +0 -2
  71. package/src/Strategy/ConditionalStyleModule.js +3 -27
  72. package/src/Strategy/DataChangeHistoryModule.d.ts +1 -0
  73. package/src/Strategy/DataChangeHistoryModule.js +12 -0
  74. package/src/Strategy/FormatColumnModule.d.ts +3 -10
  75. package/src/Strategy/FormatColumnModule.js +42 -183
  76. package/src/Strategy/Interface/IModule.d.ts +1 -0
  77. package/src/Strategy/StyledColumnModule.d.ts +24 -0
  78. package/src/Strategy/StyledColumnModule.js +165 -0
  79. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.d.ts +1 -1
  80. package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +3 -4
  81. package/src/Strategy/Utilities/FormatColumn/getFormatColumnStyleViewItems.js +1 -16
  82. package/src/Strategy/Utilities/getScopeViewItems.js +1 -1
  83. package/src/Utilities/Constants/ModuleConstants.d.ts +3 -0
  84. package/src/Utilities/Constants/ModuleConstants.js +4 -1
  85. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +6 -12
  86. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -0
  87. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -2
  88. package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +3 -1
  89. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +1 -0
  90. package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +3 -1
  91. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -0
  92. package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +3 -1
  93. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +2 -4
  94. package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +3 -1
  95. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -0
  96. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +3 -1
  97. package/src/Utilities/Extensions/TypeExtensions.d.ts +1 -0
  98. package/src/Utilities/Extensions/TypeExtensions.js +5 -0
  99. package/src/Utilities/ObjectFactory.d.ts +5 -2
  100. package/src/Utilities/ObjectFactory.js +14 -7
  101. package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +14 -4
  102. package/src/Utilities/Services/{LicenseService.d.ts → LicenseService/index.d.ts} +3 -3
  103. package/src/Utilities/Services/LicenseService/index.js +1 -0
  104. package/src/Utilities/Services/LicenseService/shouldLogThankYouMessage.d.ts +1 -0
  105. package/src/Utilities/Services/LicenseService/shouldLogThankYouMessage.js +15 -0
  106. package/src/Utilities/Services/ModuleService.js +2 -0
  107. package/src/Utilities/Services/QueryLanguageService.d.ts +3 -3
  108. package/src/Utilities/Services/QueryLanguageService.js +88 -39
  109. package/src/Utilities/Services/ReportService.js +6 -6
  110. package/src/Utilities/license/LicenseDetails.d.ts +1 -1
  111. package/src/Utilities/license/decode.d.ts +1 -0
  112. package/src/Utilities/license/decode.js +1 -1
  113. package/src/View/AdaptablePopover/index.js +1 -1
  114. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +9 -9
  115. package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +6 -5
  116. package/src/View/Alert/Wizard/BaseAlertRulesWizardSection.js +3 -3
  117. package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +3 -3
  118. package/src/View/BulkUpdate/BulkUpdatePopup.js +1 -1
  119. package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +1 -1
  120. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -1
  121. package/src/View/Components/AdaptableObjectRow/index.js +1 -6
  122. package/src/View/Components/Buttons/ButtonInfo.d.ts +1 -3
  123. package/src/View/Components/Buttons/ButtonInfo.js +3 -5
  124. package/src/View/Components/EntityRulesEditor/index.d.ts +2 -1
  125. package/src/View/Components/EntityRulesEditor/index.js +36 -35
  126. package/src/View/Components/FilterForm/FilterForm.js +11 -16
  127. package/src/View/Components/FilterForm/ListBoxFilterForm.js +2 -1
  128. package/src/View/Components/FilterForm/QuickFilterForm.js +7 -13
  129. package/src/View/Components/NewScopeComponent.js +3 -3
  130. package/src/View/Components/Panels/PanelWithButton.js +1 -5
  131. package/src/View/Components/Panels/PanelWithImage.js +1 -5
  132. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +2 -2
  133. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +1 -0
  134. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +3 -16
  135. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +1 -0
  136. package/src/View/Components/Popups/AdaptablePopup/PopupPanel.js +1 -1
  137. package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +5 -5
  138. package/src/View/Components/RangesComponent.d.ts +8 -1
  139. package/src/View/Components/RangesComponent.js +60 -24
  140. package/src/View/Components/ScopeComponent.js +6 -6
  141. package/src/View/Components/Selectors/ColumnSelector.d.ts +1 -0
  142. package/src/View/Components/Selectors/ColumnSelector.js +2 -1
  143. package/src/View/Components/Selectors/ColumnValueSelector.js +2 -2
  144. package/src/View/Components/StyleComponent.js +14 -19
  145. package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +3 -9
  146. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +25 -10
  147. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
  148. package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +1 -1
  149. package/src/View/ConditionalStyle/ConditionalStylePopupHeader.d.ts +2 -0
  150. package/src/View/ConditionalStyle/ConditionalStylePopupHeader.js +18 -0
  151. package/src/View/ConditionalStyle/Wizard/ConditionalStyleRuleWizardSection.js +3 -3
  152. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +1 -1
  153. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +1 -11
  154. package/src/View/DataSet/DataSetSelector.js +1 -1
  155. package/src/View/DataSet/DataSetViewPanel.d.ts +1 -1
  156. package/src/View/Export/ExportViewPanel.d.ts +1 -1
  157. package/src/View/Export/ExportViewPanel.js +4 -4
  158. package/src/View/Export/ReportExportDropdown.js +1 -1
  159. package/src/View/Export/Wizard/ReportNameWizardSection.js +10 -11
  160. package/src/View/Filter/FilterSummary.d.ts +1 -1
  161. package/src/View/Filter/FilterViewPanel.d.ts +1 -1
  162. package/src/View/FlashingCell/FlashingCellStyle.js +3 -3
  163. package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +3 -3
  164. package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +6 -6
  165. package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +4 -4
  166. package/src/View/FormatColumn/FormatColumnSummary.js +1 -1
  167. package/src/View/FormatColumn/MoveFormatColumn.d.ts +7 -0
  168. package/src/View/FormatColumn/MoveFormatColumn.js +27 -0
  169. package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +28 -28
  170. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.d.ts +8 -0
  171. package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.js +28 -0
  172. package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +21 -3
  173. package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +2 -28
  174. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.d.ts +3 -3
  175. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +6 -300
  176. package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +15 -9
  177. package/src/View/FormatColumn/Wizard/constants.d.ts +1 -0
  178. package/src/View/FormatColumn/Wizard/constants.js +4 -0
  179. package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +7 -7
  180. package/src/View/Layout/LayoutRadioSelector.js +1 -1
  181. package/src/View/Layout/LayoutViewPanel.d.ts +1 -1
  182. package/src/View/Layout/Wizard/Components/ColumnLabels.js +1 -1
  183. package/src/View/Layout/Wizard/sections/AggregationsSection.js +1 -1
  184. package/src/View/Layout/Wizard/sections/ColumnsSection.js +7 -6
  185. package/src/View/Layout/Wizard/sections/SettingsSection.js +2 -2
  186. package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +1 -1
  187. package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +3 -3
  188. package/src/View/Query/QueryViewPanel.d.ts +1 -1
  189. package/src/View/Query/Wizard/NamedQuerySettingsWizardSection.js +1 -1
  190. package/src/View/QuickSearch/QuickSearchPopup.js +2 -2
  191. package/src/View/QuickSearch/QuickSearchViewPanel.d.ts +1 -1
  192. package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +5 -5
  193. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsGlue42.js +1 -1
  194. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +5 -5
  195. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +1 -1
  196. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +5 -5
  197. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +2 -2
  198. package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +3 -3
  199. package/src/View/SmartEdit/SmartEditPopup.js +3 -3
  200. package/src/View/SpecialColumnSettingsWizardStep.js +10 -10
  201. package/src/View/StateManagement/StateManagementPopup.js +4 -4
  202. package/src/View/StyledColumn/Wizard/StyledColumnWizard.d.ts +7 -0
  203. package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +77 -0
  204. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.d.ts +9 -0
  205. package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +65 -0
  206. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection.d.ts +9 -0
  207. package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection.js +234 -0
  208. package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.d.ts +7 -0
  209. package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +59 -0
  210. package/src/View/SystemStatus/SystemStatusEntityRow.js +4 -6
  211. package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +1 -1
  212. package/src/View/TeamSharing/SharedEntityObjectView.js +1 -1
  213. package/src/View/TeamSharing/TeamSharingApplyButton.js +1 -1
  214. package/src/View/Theme/ThemePopup.js +1 -1
  215. package/src/View/Wizard/OnePageAdaptableWizard.d.ts +1 -1
  216. package/src/View/Wizard/OnePageAdaptableWizard.js +1 -2
  217. package/src/agGrid/ActionColumnRenderer.d.ts +3 -0
  218. package/src/agGrid/ActionColumnRenderer.js +96 -64
  219. package/src/agGrid/Adaptable.d.ts +13 -9
  220. package/src/agGrid/Adaptable.js +207 -221
  221. package/src/agGrid/CheckboxRenderer.js +1 -1
  222. package/src/agGrid/FilterWrapper.js +60 -16
  223. package/src/agGrid/FloatingFilterWrapper.d.ts +2 -2
  224. package/src/agGrid/FloatingFilterWrapper.js +71 -32
  225. package/src/agGrid/PercentBarRenderer.d.ts +6 -2
  226. package/src/agGrid/PercentBarRenderer.js +19 -17
  227. package/src/agGrid/agGridHelper.d.ts +6 -2
  228. package/src/agGrid/agGridHelper.js +16 -15
  229. package/src/agGrid/createAgStatusPanelComponent.d.ts +1 -1
  230. package/src/agGrid/createAgStatusPanelComponent.js +17 -0
  231. package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +5 -1
  232. package/src/agGrid/editors/AdaptableDateEditor/index.js +87 -20
  233. package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +1 -1
  234. package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +3 -3
  235. package/src/agGrid/editors/AdaptableNumberEditor/index.js +81 -30
  236. package/src/agGrid/weightedAverage.js +19 -11
  237. package/src/components/CheckBox/index.js +7 -2
  238. package/src/components/Datepicker/index.d.ts +1 -1
  239. package/src/components/ExpressionEditor/BaseEditorInput.d.ts +1 -1
  240. package/src/components/ExpressionEditor/BaseEditorInput.js +13 -32
  241. package/src/components/ExpressionEditor/EditorInput.js +1 -1
  242. package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +1 -1
  243. package/src/components/ExpressionEditor/index.js +9 -17
  244. package/src/components/FormLayout/index.js +1 -1
  245. package/src/components/StylePreview.js +2 -1
  246. package/src/components/icons/brush.d.ts +3 -0
  247. package/src/components/icons/brush.js +7 -0
  248. package/src/components/icons/index.js +2 -0
  249. package/src/metamodel/adaptable.metamodel.d.ts +191 -95
  250. package/src/metamodel/adaptable.metamodel.js +1 -1
  251. package/src/parser/src/types.d.ts +6 -3
  252. package/src/renderReactRoot.d.ts +2 -0
  253. package/src/renderReactRoot.js +11 -9
  254. package/src/types.d.ts +8 -4
  255. package/themes/dark.css +8 -4
  256. package/themes/dark.css.map +1 -0
  257. package/themes/light.css +4 -1
  258. package/themes/light.css.map +1 -0
  259. package/version.d.ts +1 -1
  260. package/version.js +1 -1
  261. package/src/AdaptableComponents.d.ts +0 -1
  262. package/src/AdaptableComponents.js +0 -5
  263. package/src/Utilities/Services/LicenseService.js +0 -1
@@ -574,15 +574,6 @@ export declare const ADAPTABLE_METAMODEL: {
574
574
  gridInfo: string;
575
575
  reference: string;
576
576
  defaultValue?: undefined;
577
- } | {
578
- name: string;
579
- kind: string;
580
- description: string;
581
- uiLabel: string;
582
- isOptional: boolean;
583
- defaultValue: string;
584
- reference: string;
585
- gridInfo?: undefined;
586
577
  } | {
587
578
  name: string;
588
579
  kind: string;
@@ -888,12 +879,12 @@ export declare const ADAPTABLE_METAMODEL: {
888
879
  defaultValue: string;
889
880
  })[];
890
881
  };
891
- AggregatedScalarFunctionName: {
882
+ AggregatedBooleanFunctionName: {
892
883
  name: string;
893
884
  kind: string;
894
885
  description: string;
895
886
  };
896
- AggregationFunctionName: {
887
+ AggregatedScalarFunctionName: {
897
888
  name: string;
898
889
  kind: string;
899
890
  description: string;
@@ -1607,26 +1598,6 @@ export declare const ADAPTABLE_METAMODEL: {
1607
1598
  uiLabel: string;
1608
1599
  }[];
1609
1600
  };
1610
- ColumnStyle: {
1611
- name: string;
1612
- kind: string;
1613
- description: string;
1614
- properties: ({
1615
- name: string;
1616
- kind: string;
1617
- description: string;
1618
- uiLabel: string;
1619
- isOptional: boolean;
1620
- reference?: undefined;
1621
- } | {
1622
- name: string;
1623
- kind: string;
1624
- description: string;
1625
- uiLabel: string;
1626
- isOptional: boolean;
1627
- reference: string;
1628
- })[];
1629
- };
1630
1601
  ColumnValuesComparer: {
1631
1602
  name: string;
1632
1603
  kind: string;
@@ -1643,23 +1614,6 @@ export declare const ADAPTABLE_METAMODEL: {
1643
1614
  name: string;
1644
1615
  kind: string;
1645
1616
  description: string;
1646
- properties: ({
1647
- name: string;
1648
- kind: string;
1649
- description: string;
1650
- uiLabel: string;
1651
- isOptional: boolean;
1652
- defaultValue: string;
1653
- reference?: undefined;
1654
- } | {
1655
- name: string;
1656
- kind: string;
1657
- description: string;
1658
- uiLabel: string;
1659
- reference: string;
1660
- isOptional?: undefined;
1661
- defaultValue?: undefined;
1662
- })[];
1663
1617
  };
1664
1618
  ConditionalStyleApi: {
1665
1619
  name: string;
@@ -1681,13 +1635,6 @@ export declare const ADAPTABLE_METAMODEL: {
1681
1635
  name: string;
1682
1636
  kind: string;
1683
1637
  description: string;
1684
- properties: {
1685
- name: string;
1686
- kind: string;
1687
- description: string;
1688
- uiLabel: string;
1689
- isOptional: boolean;
1690
- }[];
1691
1638
  };
1692
1639
  ConfigApi: {
1693
1640
  name: string;
@@ -1984,17 +1931,6 @@ export declare const ADAPTABLE_METAMODEL: {
1984
1931
  kind: string;
1985
1932
  description: string;
1986
1933
  };
1987
- CustomReport: {
1988
- name: string;
1989
- kind: string;
1990
- description: string;
1991
- properties: {
1992
- name: string;
1993
- kind: string;
1994
- description: string;
1995
- uiLabel: string;
1996
- }[];
1997
- };
1998
1934
  CustomSettingsPanel: {
1999
1935
  name: string;
2000
1936
  kind: string;
@@ -2559,6 +2495,26 @@ export declare const ADAPTABLE_METAMODEL: {
2559
2495
  defaultValue?: undefined;
2560
2496
  })[];
2561
2497
  };
2498
+ EvaluateExpressionExternallyContext: {
2499
+ name: string;
2500
+ kind: string;
2501
+ description: string;
2502
+ properties: ({
2503
+ name: string;
2504
+ kind: string;
2505
+ description: string;
2506
+ uiLabel: string;
2507
+ isOptional: boolean;
2508
+ reference?: undefined;
2509
+ } | {
2510
+ name: string;
2511
+ kind: string;
2512
+ description: string;
2513
+ uiLabel: string;
2514
+ reference: string;
2515
+ isOptional?: undefined;
2516
+ })[];
2517
+ };
2562
2518
  EventApi: {
2563
2519
  name: string;
2564
2520
  kind: string;
@@ -2657,28 +2613,12 @@ export declare const ADAPTABLE_METAMODEL: {
2657
2613
  description: string;
2658
2614
  uiLabel: string;
2659
2615
  isOptional?: undefined;
2660
- reference?: undefined;
2661
- } | {
2662
- name: string;
2663
- kind: string;
2664
- description: string;
2665
- uiLabel: string;
2666
- isOptional: boolean;
2667
- reference?: undefined;
2668
- } | {
2669
- name: string;
2670
- kind: string;
2671
- description: string;
2672
- uiLabel: string;
2673
- reference: string;
2674
- isOptional?: undefined;
2675
2616
  } | {
2676
2617
  name: string;
2677
2618
  kind: string;
2678
2619
  description: string;
2679
2620
  uiLabel: string;
2680
2621
  isOptional: boolean;
2681
- reference: string;
2682
2622
  })[];
2683
2623
  };
2684
2624
  ExpressionFunction: {
@@ -2711,20 +2651,16 @@ export declare const ADAPTABLE_METAMODEL: {
2711
2651
  kind: string;
2712
2652
  description: string;
2713
2653
  };
2654
+ ExpressionFunctionMap: {
2655
+ name: string;
2656
+ kind: string;
2657
+ description: string;
2658
+ };
2714
2659
  ExpressionOptions: {
2715
2660
  name: string;
2716
2661
  kind: string;
2717
2662
  description: string;
2718
2663
  properties: ({
2719
- name: string;
2720
- kind: string;
2721
- description: string;
2722
- uiLabel: string;
2723
- isOptional: boolean;
2724
- gridInfo?: undefined;
2725
- defaultValue?: undefined;
2726
- reference?: undefined;
2727
- } | {
2728
2664
  name: string;
2729
2665
  kind: string;
2730
2666
  description: string;
@@ -2732,16 +2668,14 @@ export declare const ADAPTABLE_METAMODEL: {
2732
2668
  isOptional: boolean;
2733
2669
  gridInfo: string;
2734
2670
  defaultValue: string;
2735
- reference: string;
2736
2671
  } | {
2737
2672
  name: string;
2738
2673
  kind: string;
2739
2674
  description: string;
2740
2675
  uiLabel: string;
2741
2676
  isOptional: boolean;
2742
- gridInfo: string;
2743
- defaultValue: string;
2744
- reference?: undefined;
2677
+ gridInfo?: undefined;
2678
+ defaultValue?: undefined;
2745
2679
  })[];
2746
2680
  };
2747
2681
  FDC3Column: {
@@ -2928,6 +2862,47 @@ export declare const ADAPTABLE_METAMODEL: {
2928
2862
  isOptional: boolean;
2929
2863
  }[];
2930
2864
  };
2865
+ FinsembleApi: {
2866
+ name: string;
2867
+ kind: string;
2868
+ description: string;
2869
+ properties: {
2870
+ name: string;
2871
+ kind: string;
2872
+ description: string;
2873
+ uiLabel: string;
2874
+ }[];
2875
+ };
2876
+ FinsemblePluginOptions: {
2877
+ name: string;
2878
+ kind: string;
2879
+ description: string;
2880
+ properties: ({
2881
+ name: string;
2882
+ kind: string;
2883
+ description: string;
2884
+ uiLabel: string;
2885
+ isOptional: boolean;
2886
+ defaultValue?: undefined;
2887
+ reference?: undefined;
2888
+ } | {
2889
+ name: string;
2890
+ kind: string;
2891
+ description: string;
2892
+ uiLabel: string;
2893
+ isOptional: boolean;
2894
+ defaultValue: string;
2895
+ reference?: undefined;
2896
+ } | {
2897
+ name: string;
2898
+ kind: string;
2899
+ description: string;
2900
+ uiLabel: string;
2901
+ isOptional: boolean;
2902
+ reference: string;
2903
+ defaultValue?: undefined;
2904
+ })[];
2905
+ };
2931
2906
  FlashingCellApi: {
2932
2907
  name: string;
2933
2908
  kind: string;
@@ -3064,6 +3039,11 @@ export declare const ADAPTABLE_METAMODEL: {
3064
3039
  uiLabel: string;
3065
3040
  }[];
3066
3041
  };
3042
+ FormatColumnRule: {
3043
+ name: string;
3044
+ kind: string;
3045
+ description: string;
3046
+ };
3067
3047
  FormatColumnState: {
3068
3048
  name: string;
3069
3049
  kind: string;
@@ -3203,6 +3183,17 @@ export declare const ADAPTABLE_METAMODEL: {
3203
3183
  defaultValue: string;
3204
3184
  })[];
3205
3185
  };
3186
+ GlobalExpressionFunctionsContext: {
3187
+ name: string;
3188
+ kind: string;
3189
+ description: string;
3190
+ properties: {
3191
+ name: string;
3192
+ kind: string;
3193
+ description: string;
3194
+ uiLabel: string;
3195
+ }[];
3196
+ };
3206
3197
  Glue42Api: {
3207
3198
  name: string;
3208
3199
  kind: string;
@@ -3757,6 +3748,38 @@ export declare const ADAPTABLE_METAMODEL: {
3757
3748
  name: string;
3758
3749
  kind: string;
3759
3750
  description: string;
3751
+ properties: {
3752
+ name: string;
3753
+ kind: string;
3754
+ description: string;
3755
+ uiLabel: string;
3756
+ isOptional: boolean;
3757
+ gridInfo: string;
3758
+ defaultValue: string;
3759
+ }[];
3760
+ };
3761
+ ModuleExpressionFunctionsContext: {
3762
+ name: string;
3763
+ kind: string;
3764
+ description: string;
3765
+ properties: ({
3766
+ name: string;
3767
+ kind: string;
3768
+ description: string;
3769
+ uiLabel: string;
3770
+ reference?: undefined;
3771
+ } | {
3772
+ name: string;
3773
+ kind: string;
3774
+ description: string;
3775
+ uiLabel: string;
3776
+ reference: string;
3777
+ })[];
3778
+ };
3779
+ ModuleExpressionFunctionsMap: {
3780
+ name: string;
3781
+ kind: string;
3782
+ description: string;
3760
3783
  };
3761
3784
  NamedQuery: {
3762
3785
  name: string;
@@ -4159,6 +4182,18 @@ export declare const ADAPTABLE_METAMODEL: {
4159
4182
  reference?: undefined;
4160
4183
  })[];
4161
4184
  };
4185
+ QueryableColumnContext: {
4186
+ name: string;
4187
+ kind: string;
4188
+ description: string;
4189
+ properties: {
4190
+ name: string;
4191
+ kind: string;
4192
+ description: string;
4193
+ uiLabel: string;
4194
+ reference: string;
4195
+ }[];
4196
+ };
4162
4197
  QueryApi: {
4163
4198
  name: string;
4164
4199
  kind: string;
@@ -4470,6 +4505,17 @@ export declare const ADAPTABLE_METAMODEL: {
4470
4505
  reference: string;
4471
4506
  }[];
4472
4507
  };
4508
+ ServerReport: {
4509
+ name: string;
4510
+ kind: string;
4511
+ description: string;
4512
+ properties: {
4513
+ name: string;
4514
+ kind: string;
4515
+ description: string;
4516
+ uiLabel: string;
4517
+ }[];
4518
+ };
4473
4519
  SettingsPanelApi: {
4474
4520
  name: string;
4475
4521
  kind: string;
@@ -4676,6 +4722,56 @@ export declare const ADAPTABLE_METAMODEL: {
4676
4722
  isOptional: boolean;
4677
4723
  }[];
4678
4724
  };
4725
+ StyledColumn: {
4726
+ name: string;
4727
+ kind: string;
4728
+ description: string;
4729
+ properties: ({
4730
+ name: string;
4731
+ kind: string;
4732
+ description: string;
4733
+ uiLabel: string;
4734
+ isOptional: boolean;
4735
+ reference?: undefined;
4736
+ } | {
4737
+ name: string;
4738
+ kind: string;
4739
+ description: string;
4740
+ uiLabel: string;
4741
+ isOptional?: undefined;
4742
+ reference?: undefined;
4743
+ } | {
4744
+ name: string;
4745
+ kind: string;
4746
+ description: string;
4747
+ uiLabel: string;
4748
+ isOptional: boolean;
4749
+ reference: string;
4750
+ })[];
4751
+ };
4752
+ StyledColumnApi: {
4753
+ name: string;
4754
+ kind: string;
4755
+ description: string;
4756
+ properties: {
4757
+ name: string;
4758
+ kind: string;
4759
+ description: string;
4760
+ uiLabel: string;
4761
+ }[];
4762
+ };
4763
+ StyledColumnState: {
4764
+ name: string;
4765
+ kind: string;
4766
+ description: string;
4767
+ properties: {
4768
+ name: string;
4769
+ kind: string;
4770
+ description: string;
4771
+ uiLabel: string;
4772
+ isOptional: boolean;
4773
+ }[];
4774
+ };
4679
4775
  SuspendableObject: {
4680
4776
  name: string;
4681
4777
  kind: string;