@adaptabletools/adaptable 11.1.7 → 11.1.10

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 (204) hide show
  1. package/base.css +16 -0
  2. package/bundle.cjs.js +106 -106
  3. package/index.css +20 -0
  4. package/package.json +1 -1
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -1
  8. package/src/AdaptableOptions/AdaptableOptions.d.ts +1 -1
  9. package/src/AdaptableOptions/AlertOptions.d.ts +9 -2
  10. package/src/AdaptableOptions/FinancePluginOptions.d.ts +57 -16
  11. package/src/AdaptableOptions/GeneralOptions.d.ts +7 -0
  12. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +7 -0
  13. package/src/Api/AdaptableApi.d.ts +5 -0
  14. package/src/Api/CellSummaryApi.d.ts +8 -0
  15. package/src/Api/ColumnApi.d.ts +6 -1
  16. package/src/Api/ConfigApi.d.ts +8 -2
  17. package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -0
  18. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  19. package/src/Api/Implementation/AlertApiImpl.js +32 -15
  20. package/src/Api/Implementation/CellSummaryApiImpl.d.ts +2 -0
  21. package/src/Api/Implementation/CellSummaryApiImpl.js +34 -0
  22. package/src/Api/Implementation/ColumnApiImpl.d.ts +2 -1
  23. package/src/Api/Implementation/ColumnApiImpl.js +7 -3
  24. package/src/Api/Implementation/ConfigApiImpl.d.ts +2 -2
  25. package/src/Api/Implementation/ConfigApiImpl.js +8 -29
  26. package/src/Api/Implementation/GridApiImpl.js +0 -4
  27. package/src/Api/Implementation/InternalApiImpl.d.ts +2 -1
  28. package/src/Api/Implementation/InternalApiImpl.js +29 -7
  29. package/src/Api/Implementation/LayoutApiImpl.d.ts +5 -4
  30. package/src/Api/Implementation/LayoutApiImpl.js +13 -7
  31. package/src/Api/Implementation/QueryApiImpl.d.ts +1 -0
  32. package/src/Api/Implementation/QueryApiImpl.js +12 -0
  33. package/src/Api/Implementation/StatusBarApiImpl.d.ts +8 -0
  34. package/src/Api/Implementation/StatusBarApiImpl.js +17 -0
  35. package/src/Api/InternalApi.d.ts +2 -1
  36. package/src/Api/LayoutApi.d.ts +16 -9
  37. package/src/Api/QueryApi.d.ts +6 -0
  38. package/src/Api/StatusBarApi.d.ts +10 -0
  39. package/src/Api/StatusBarApi.js +2 -0
  40. package/src/PredefinedConfig/AdaptableState.d.ts +20 -8
  41. package/src/PredefinedConfig/Common/FDC3Context.d.ts +61 -29
  42. package/src/PredefinedConfig/Common/Types.d.ts +6 -3
  43. package/src/PredefinedConfig/Common/Types.js +32 -1
  44. package/src/PredefinedConfig/FlashingCellState.d.ts +1 -1
  45. package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
  46. package/src/PredefinedConfig/GridState.d.ts +1 -1
  47. package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -0
  48. package/src/PredefinedConfig/StatusBarState.d.ts +27 -0
  49. package/src/PredefinedConfig/StatusBarState.js +7 -0
  50. package/src/PredefinedConfig/ToolPanelState.d.ts +1 -1
  51. package/src/Redux/ActionsReducers/GridRedux.d.ts +2 -2
  52. package/src/Redux/ActionsReducers/GridRedux.js +4 -4
  53. package/src/Redux/ActionsReducers/StatusBarRedux.d.ts +22 -0
  54. package/src/Redux/ActionsReducers/StatusBarRedux.js +31 -0
  55. package/src/Redux/ActionsReducers/SystemRedux.d.ts +8 -3
  56. package/src/Redux/ActionsReducers/SystemRedux.js +22 -5
  57. package/src/Redux/Store/AdaptableReduxMerger.js +2 -2
  58. package/src/Redux/Store/AdaptableStore.js +24 -10
  59. package/src/Strategy/AlertModule.d.ts +3 -0
  60. package/src/Strategy/AlertModule.js +6 -0
  61. package/src/Strategy/CellSummaryModule.d.ts +6 -0
  62. package/src/Strategy/CellSummaryModule.js +14 -0
  63. package/src/Strategy/DataChangeHistoryModule.d.ts +7 -0
  64. package/src/Strategy/DataChangeHistoryModule.js +11 -0
  65. package/src/Strategy/ExportModule.d.ts +1 -0
  66. package/src/Strategy/ExportModule.js +1 -0
  67. package/src/Strategy/FilterModule.d.ts +6 -0
  68. package/src/Strategy/FilterModule.js +21 -0
  69. package/src/Strategy/Interface/IModule.d.ts +21 -10
  70. package/src/Strategy/LayoutModule.d.ts +7 -0
  71. package/src/Strategy/LayoutModule.js +14 -1
  72. package/src/Strategy/QueryModule.d.ts +8 -0
  73. package/src/Strategy/QueryModule.js +18 -0
  74. package/src/Strategy/QuickSearchModule.d.ts +6 -0
  75. package/src/Strategy/QuickSearchModule.js +10 -0
  76. package/src/Strategy/StatusBarModule.d.ts +8 -0
  77. package/src/Strategy/StatusBarModule.js +39 -0
  78. package/src/Strategy/SystemStatusModule.d.ts +6 -0
  79. package/src/Strategy/SystemStatusModule.js +10 -0
  80. package/src/Strategy/ThemeModule.d.ts +7 -0
  81. package/src/Strategy/ThemeModule.js +12 -0
  82. package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +1 -1
  83. package/src/Utilities/Constants/GeneralConstants.d.ts +1 -0
  84. package/src/Utilities/Constants/GeneralConstants.js +2 -1
  85. package/src/Utilities/Constants/ModuleConstants.d.ts +1 -0
  86. package/src/Utilities/Constants/ModuleConstants.js +2 -1
  87. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +4 -1
  88. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -0
  89. package/src/Utilities/Services/ModuleService.js +6 -6
  90. package/src/View/AdaptablePopover/index.d.ts +1 -0
  91. package/src/View/AdaptablePopover/index.js +5 -2
  92. package/src/View/AdaptableViewFactory.js +2 -2
  93. package/src/View/Alert/AlertStatusSubPanel.d.ts +2 -0
  94. package/src/View/Alert/AlertStatusSubPanel.js +56 -0
  95. package/src/View/Alert/AlertViewPanel.js +6 -7
  96. package/src/View/Alert/AlertsPanel.d.ts +1 -1
  97. package/src/View/Alert/AlertsPanel.js +2 -1
  98. package/src/View/Alert/Utilities/getAlertButtonStyle.d.ts +5 -0
  99. package/src/View/Alert/Utilities/getAlertButtonStyle.js +15 -0
  100. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +18 -7
  101. package/src/View/Alert/Wizard/AlertButtonsEditor.js +1 -8
  102. package/src/View/Alert/Wizard/AlertWizard.js +3 -2
  103. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.d.ts +2 -0
  104. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +15 -0
  105. package/src/View/CellSummary/CellSummaryStatusPanel.d.ts +2 -0
  106. package/src/View/CellSummary/CellSummaryStatusPanel.js +36 -0
  107. package/src/View/CellSummary/CellSummaryViewPanel.js +2 -20
  108. package/src/View/ColorPicker.d.ts +1 -1
  109. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  110. package/src/View/Components/AdaptableInput/index.d.ts +1 -1
  111. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  112. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  113. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
  114. package/src/View/Components/Forms/AdaptableFormControlTextClear.js +1 -1
  115. package/src/View/Components/Panels/PanelWithImage.d.ts +6 -6
  116. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +5 -4
  117. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +1 -1
  118. package/src/View/Components/RangesComponent.js +6 -2
  119. package/src/View/Components/StyleComponent.js +18 -6
  120. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +1 -1
  121. package/src/View/Components/ToolPanel/ToolPanelPopup.js +3 -3
  122. package/src/View/Dashboard/DashboardPopup.js +2 -2
  123. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +5 -13
  124. package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.d.ts +2 -0
  125. package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.js +9 -0
  126. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.d.ts +4 -16
  127. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +32 -40
  128. package/src/View/Filter/ActiveFiltersPanel.d.ts +0 -2
  129. package/src/View/Filter/FilterStatusBarSubPanelPopover.d.ts +2 -0
  130. package/src/View/Filter/FilterStatusBarSubPanelPopover.js +18 -0
  131. package/src/View/Filter/FilterViewPanel.js +1 -1
  132. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +1 -1
  133. package/src/View/GridInfo/GridInfoPopup.js +4 -1
  134. package/src/View/Layout/EditCurrentLayoutButton.d.ts +2 -0
  135. package/src/View/Layout/EditCurrentLayoutButton.js +14 -0
  136. package/src/View/Layout/LayoutPopup.d.ts +1 -1
  137. package/src/View/Layout/LayoutPopup.js +3 -3
  138. package/src/View/Layout/LayoutRadioSelector.d.ts +1 -0
  139. package/src/View/Layout/LayoutRadioSelector.js +2 -2
  140. package/src/View/Layout/LayoutStatusBarSubPanelPopover.d.ts +2 -0
  141. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +29 -0
  142. package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.js +2 -1
  143. package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
  144. package/src/View/Layout/Wizard/LayoutEditorWizard.js +2 -1
  145. package/src/View/Query/EditCurrentQueryButton.d.ts +2 -0
  146. package/src/View/Query/EditCurrentQueryButton.js +15 -0
  147. package/src/View/Query/QueryViewPanel.d.ts +0 -1
  148. package/src/View/Query/QueryViewPanel.js +2 -11
  149. package/src/View/QuickSearch/QuickSearchPopup.js +1 -1
  150. package/src/View/QuickSearch/QuickSearchStatusBarContent.d.ts +2 -0
  151. package/src/View/QuickSearch/QuickSearchStatusBarContent.js +16 -0
  152. package/src/View/StateManagement/StateManagementPopup.js +9 -7
  153. package/src/View/StateManagement/StateManagementViewPanel.js +1 -2
  154. package/src/View/StateManagement/components/ExportDropdown.d.ts +1 -1
  155. package/src/View/StateManagement/components/ExportDropdown.js +3 -7
  156. package/src/View/StateManagement/handleExportState.d.ts +1 -1
  157. package/src/View/StatusBar/AdaptableStatusBar.d.ts +3 -0
  158. package/src/View/StatusBar/AdaptableStatusBar.js +44 -0
  159. package/src/View/StatusBar/StatusBarPanel.d.ts +42 -0
  160. package/src/View/StatusBar/StatusBarPanel.js +45 -0
  161. package/src/View/StatusBar/StatusBarPopup.d.ts +3 -0
  162. package/src/View/StatusBar/StatusBarPopup.js +43 -0
  163. package/src/View/SystemStatus/SystemStatusStatusBarContent.d.ts +2 -0
  164. package/src/View/SystemStatus/SystemStatusStatusBarContent.js +15 -0
  165. package/src/View/SystemStatus/SystemStatusViewPanel.js +3 -7
  166. package/src/View/SystemStatus/Utilities/getStatusItemStyle.d.ts +5 -0
  167. package/src/View/SystemStatus/Utilities/getStatusItemStyle.js +16 -0
  168. package/src/View/Theme/ThemeStatusPanelPopover.d.ts +2 -0
  169. package/src/View/Theme/ThemeStatusPanelPopover.js +36 -0
  170. package/src/agGrid/Adaptable.d.ts +2 -0
  171. package/src/agGrid/Adaptable.js +30 -3
  172. package/src/agGrid/agGridHelper.js +2 -0
  173. package/src/agGrid/agGridMenuHelper.js +2 -2
  174. package/src/agGrid/createAgStatusPanelComponent.d.ts +21 -0
  175. package/src/agGrid/createAgStatusPanelComponent.js +31 -0
  176. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +1 -1
  177. package/src/components/Dashboard/DashboardManager.js +9 -162
  178. package/src/components/Datepicker/index.d.ts +1 -1
  179. package/src/components/DragAndDropContext/DragAndDropContext.d.ts +7 -0
  180. package/src/components/DragAndDropContext/DragAndDropContext.js +14 -0
  181. package/src/components/DragAndDropContext/ModuleManager.d.ts +17 -0
  182. package/src/components/DragAndDropContext/ModuleManager.js +81 -0
  183. package/src/components/DragAndDropContext/TabList.d.ts +29 -0
  184. package/src/components/DragAndDropContext/TabList.js +72 -0
  185. package/src/components/DragAndDropContext/UnusedPanel.d.ts +6 -0
  186. package/src/components/DragAndDropContext/UnusedPanel.js +46 -0
  187. package/src/components/DragAndDropContext/types.d.ts +8 -0
  188. package/src/components/DragAndDropContext/types.js +2 -0
  189. package/src/components/FormLayout/index.d.ts +1 -0
  190. package/src/components/Input/index.d.ts +1 -1
  191. package/src/components/List/ListGroupItem/index.d.ts +1 -1
  192. package/src/components/PopupWithFooter.d.ts +1 -1
  193. package/src/components/SimpleButton/index.js +3 -0
  194. package/src/components/Textarea/index.d.ts +1 -1
  195. package/src/components/icons/DefaultIcon.d.ts +2 -1
  196. package/src/components/icons/DefaultIcon.js +2 -2
  197. package/src/components/icons/index.js +2 -0
  198. package/src/components/icons/statusbar.d.ts +3 -0
  199. package/src/components/icons/statusbar.js +8 -0
  200. package/src/metamodel/adaptable.metamodel.d.ts +236 -0
  201. package/src/metamodel/adaptable.metamodel.js +466 -47
  202. package/src/types.d.ts +5 -4
  203. package/version.d.ts +1 -1
  204. package/version.js +1 -1
@@ -395,6 +395,13 @@ exports.ADAPTABLE_METAMODEL = {
395
395
  "uiLabel": "Smart Edit Api",
396
396
  "reference": "SmartEditApi"
397
397
  },
398
+ {
399
+ "name": "statusBarApi",
400
+ "kind": "REFERENCE",
401
+ "description": "Provides run-time access to the AdapTable Status Bar",
402
+ "uiLabel": "Status Bar Api",
403
+ "reference": "unknown"
404
+ },
398
405
  {
399
406
  "name": "systemStatusApi",
400
407
  "kind": "REFERENCE",
@@ -696,6 +703,39 @@ exports.ADAPTABLE_METAMODEL = {
696
703
  }
697
704
  ]
698
705
  },
706
+ "AdaptableDashboardToolbar": {
707
+ "name": "AdaptableDashboardToolbar",
708
+ "kind": "TypeAlias",
709
+ "description": "List of all the Toolbars that Adaptable provides"
710
+ },
711
+ "AdaptableFDC3EventInfo": {
712
+ "name": "AdaptableFDC3EventInfo",
713
+ "kind": "Interface",
714
+ "description": "EventInfo returned by `FDC3MessageSent` event",
715
+ "properties": [
716
+ {
717
+ "name": "context",
718
+ "kind": "REFERENCE",
719
+ "description": "Full FDC3 Context for the object related to the event",
720
+ "uiLabel": "Context",
721
+ "reference": "FDC3Context"
722
+ },
723
+ {
724
+ "name": "eventType",
725
+ "kind": "unknown",
726
+ "description": "Type of Event: `RaiseIntent` or `BroadcastMessage`",
727
+ "uiLabel": "Event Type"
728
+ },
729
+ {
730
+ "name": "intent",
731
+ "kind": "REFERENCE",
732
+ "description": "The FDC3 Intent which caused Event to fire (if type is `RaiseIntent`)",
733
+ "uiLabel": "Intent",
734
+ "isOptional": true,
735
+ "reference": "FDC3Intent"
736
+ }
737
+ ]
738
+ },
699
739
  "AdaptableFlashingCell": {
700
740
  "name": "AdaptableFlashingCell",
701
741
  "kind": "Interface",
@@ -1177,7 +1217,7 @@ exports.ADAPTABLE_METAMODEL = {
1177
1217
  {
1178
1218
  "name": "stateOptions",
1179
1219
  "kind": "REFERENCE",
1180
- "description": "Options related to state hydration / dehydration - allows users to intercept state persistence and state loading and change default behavior of saving to local storage",
1220
+ "description": "Options related to state hydration / dehydration - allows users to intercept state persistence and state loading and change default behaviour of saving to local storage",
1181
1221
  "uiLabel": "State Options",
1182
1222
  "isOptional": true,
1183
1223
  "reference": "StateOptions"
@@ -1220,6 +1260,11 @@ exports.ADAPTABLE_METAMODEL = {
1220
1260
  }
1221
1261
  ]
1222
1262
  },
1263
+ "AdaptablePersistentState": {
1264
+ "name": "AdaptablePersistentState",
1265
+ "kind": "Interface",
1266
+ "description": "The state object of Adaptable which is persisted"
1267
+ },
1223
1268
  "AdaptablePersistStateFunction": {
1224
1269
  "name": "AdaptablePersistStateFunction",
1225
1270
  "kind": "Interface",
@@ -1443,7 +1488,7 @@ exports.ADAPTABLE_METAMODEL = {
1443
1488
  "AdaptableState": {
1444
1489
  "name": "AdaptableState",
1445
1490
  "kind": "Interface",
1446
- "description": "The main state object that Adaptable persists"
1491
+ "description": "The main state object of Adaptable"
1447
1492
  },
1448
1493
  "AdaptableStateChangedInfo": {
1449
1494
  "name": "AdaptableStateChangedInfo",
@@ -1948,11 +1993,11 @@ exports.ADAPTABLE_METAMODEL = {
1948
1993
  {
1949
1994
  "name": "cellHighlightDuration",
1950
1995
  "kind": "number",
1951
- "description": "How long (in ms) a cell will be highlighted",
1996
+ "description": "How long (in ms) a Cell will be highlighted when an Alert fires",
1952
1997
  "uiLabel": "Cell Highlight Duration",
1953
1998
  "isOptional": true,
1954
1999
  "gridInfo": "item",
1955
- "defaultValue": "3000"
2000
+ "defaultValue": "2000"
1956
2001
  },
1957
2002
  {
1958
2003
  "name": "dataChangeDetectionPolicy",
@@ -1971,6 +2016,15 @@ exports.ADAPTABLE_METAMODEL = {
1971
2016
  "isOptional": true,
1972
2017
  "gridInfo": "item",
1973
2018
  "defaultValue": "20"
2019
+ },
2020
+ {
2021
+ "name": "rowHighlightDuration",
2022
+ "kind": "number",
2023
+ "description": "How long (in ms) a Row will be highlighted when an Alert Fires",
2024
+ "uiLabel": "Row Highlight Duration",
2025
+ "isOptional": true,
2026
+ "gridInfo": "item",
2027
+ "defaultValue": "4000"
1974
2028
  }
1975
2029
  ]
1976
2030
  },
@@ -2557,12 +2611,24 @@ exports.ADAPTABLE_METAMODEL = {
2557
2611
  "description": "Retrieves all Cell Summary Definitions from Cell Summary State",
2558
2612
  "uiLabel": "Get Cell Summary Operation Definitions"
2559
2613
  },
2614
+ {
2615
+ "name": "getCellSummaryOperationValue",
2616
+ "kind": "function",
2617
+ "description": "Retrieves the value of the current selected operation",
2618
+ "uiLabel": "Get Cell Summary Operation Value"
2619
+ },
2560
2620
  {
2561
2621
  "name": "getCurrentCellSummaryOperation",
2562
2622
  "kind": "function",
2563
2623
  "description": "Retrieves currently selected Cell Summary Operation",
2564
2624
  "uiLabel": "Get Current Cell Summary Operation"
2565
2625
  },
2626
+ {
2627
+ "name": "getCurrentCellSummaryOperationValue",
2628
+ "kind": "function",
2629
+ "description": "Retrieves the value of the current selected operation",
2630
+ "uiLabel": "Get Current Cell Summary Operation Value"
2631
+ },
2566
2632
  {
2567
2633
  "name": "setCurrentCellSummaryOperation",
2568
2634
  "kind": "function",
@@ -2932,6 +2998,18 @@ exports.ADAPTABLE_METAMODEL = {
2932
2998
  "description": "Is Column an Action Column",
2933
2999
  "uiLabel": "Is Action Column"
2934
3000
  },
3001
+ {
3002
+ "name": "isAutoPivotColumn",
3003
+ "kind": "function",
3004
+ "description": "Is Column pivoted",
3005
+ "uiLabel": "Is Auto Pivot Column"
3006
+ },
3007
+ {
3008
+ "name": "isAutoRowGroupColumn",
3009
+ "kind": "function",
3010
+ "description": "Is Column row-grouped",
3011
+ "uiLabel": "Is Auto Row Group Column"
3012
+ },
2935
3013
  {
2936
3014
  "name": "isBooleanColumn",
2937
3015
  "kind": "function",
@@ -2974,12 +3052,6 @@ exports.ADAPTABLE_METAMODEL = {
2974
3052
  "description": "Is Column Numeric",
2975
3053
  "uiLabel": "Is Numeric Column"
2976
3054
  },
2977
- {
2978
- "name": "isRowGroupColumn",
2979
- "kind": "function",
2980
- "description": "Is Column row-grouped",
2981
- "uiLabel": "Is Row Group Column"
2982
- },
2983
3055
  {
2984
3056
  "name": "selectAllColumns",
2985
3057
  "kind": "function",
@@ -3026,7 +3098,7 @@ exports.ADAPTABLE_METAMODEL = {
3026
3098
  {
3027
3099
  "name": "Color",
3028
3100
  "kind": "string",
3029
- "description": "Colour to use for the Percent bar",
3101
+ "description": "Colour to use for the Comparison",
3030
3102
  "uiLabel": "Color"
3031
3103
  },
3032
3104
  {
@@ -3374,7 +3446,7 @@ exports.ADAPTABLE_METAMODEL = {
3374
3446
  {
3375
3447
  "name": "getAllState",
3376
3448
  "kind": "function",
3377
- "description": "Retrieves ALL state which is currently stored by Adaptable (both User and internal)",
3449
+ "description": "Retrieves ALL state which is currently stored by Adaptable (both persistent and transient/internal)",
3378
3450
  "uiLabel": "Get All State"
3379
3451
  },
3380
3452
  {
@@ -3461,6 +3533,12 @@ exports.ADAPTABLE_METAMODEL = {
3461
3533
  "description": "Returns Layout section of Adaptable State",
3462
3534
  "uiLabel": "Get Layout State"
3463
3535
  },
3536
+ {
3537
+ "name": "getPersistedState",
3538
+ "kind": "function",
3539
+ "description": "Retrieves the PERSISTED state in Adaptable",
3540
+ "uiLabel": "Get Persisted State"
3541
+ },
3464
3542
  {
3465
3543
  "name": "getPlusMinusState",
3466
3544
  "kind": "function",
@@ -3568,19 +3646,90 @@ exports.ADAPTABLE_METAMODEL = {
3568
3646
  "isOptional": true
3569
3647
  },
3570
3648
  {
3571
- "name": "fds_IdColumnId",
3649
+ "name": "fds_idColumnId",
3572
3650
  "kind": "string",
3573
3651
  "description": "Column which holds an FDS_ID value a Contact",
3574
- "uiLabel": "Fds_Id Column Id",
3652
+ "uiLabel": "Fds_id Column Id",
3575
3653
  "isOptional": true
3576
3654
  },
3577
3655
  {
3578
3656
  "name": "intents",
3579
3657
  "kind": "REFERENCE",
3580
- "description": "FDC3 Intents available to the Column",
3658
+ "description": "FDC3 Intents invoked by Column; can be: `StartCall` `StartChat` `ViewContact`",
3581
3659
  "uiLabel": "Intents",
3582
3660
  "isOptional": true,
3583
- "reference": "unknown"
3661
+ "reference": "ContactIntents"
3662
+ }
3663
+ ]
3664
+ },
3665
+ "ContactContext": {
3666
+ "name": "ContactContext",
3667
+ "kind": "Interface",
3668
+ "description": "FDC3 Context to define a Contact",
3669
+ "properties": [
3670
+ {
3671
+ "name": "id",
3672
+ "kind": "unknown",
3673
+ "description": "The Contact data: email, FDS_ID",
3674
+ "uiLabel": "Id",
3675
+ "isOptional": true
3676
+ },
3677
+ {
3678
+ "name": "name",
3679
+ "kind": "string",
3680
+ "description": "Free text name of Contact",
3681
+ "uiLabel": "Name",
3682
+ "isOptional": true
3683
+ },
3684
+ {
3685
+ "name": "type",
3686
+ "kind": "unknown",
3687
+ "description": "Context type is always `contact`",
3688
+ "uiLabel": "Type"
3689
+ }
3690
+ ]
3691
+ },
3692
+ "ContactIntent": {
3693
+ "name": "ContactIntent",
3694
+ "kind": "TypeAlias",
3695
+ "description": "FDC3 Intents available to a Contact Column"
3696
+ },
3697
+ "ContactIntents": {
3698
+ "name": "ContactIntents",
3699
+ "kind": "TypeAlias",
3700
+ "description": "All available Contact Intents"
3701
+ },
3702
+ "ContactListContext": {
3703
+ "name": "ContactListContext",
3704
+ "kind": "Interface",
3705
+ "description": "FDC3 Context to define a list of Contacts",
3706
+ "properties": [
3707
+ {
3708
+ "name": "contacts",
3709
+ "kind": "unknown",
3710
+ "description": "The array of Contacts",
3711
+ "uiLabel": "Contacts",
3712
+ "isOptional": true
3713
+ },
3714
+ {
3715
+ "name": "id",
3716
+ "kind": "unknown",
3717
+ "description": "Optional Id",
3718
+ "uiLabel": "Id",
3719
+ "isOptional": true
3720
+ },
3721
+ {
3722
+ "name": "name",
3723
+ "kind": "string",
3724
+ "description": "Free text name of Contact list",
3725
+ "uiLabel": "Name",
3726
+ "isOptional": true
3727
+ },
3728
+ {
3729
+ "name": "type",
3730
+ "kind": "unknown",
3731
+ "description": "Context type is always `contactList`",
3732
+ "uiLabel": "Type"
3584
3733
  }
3585
3734
  ]
3586
3735
  },
@@ -3738,27 +3887,64 @@ exports.ADAPTABLE_METAMODEL = {
3738
3887
  {
3739
3888
  "name": "intents",
3740
3889
  "kind": "REFERENCE",
3741
- "description": "FDC3 Intents available to the Column",
3890
+ "description": "FDC3 Intents invoked by Column; can be: `ViewChart`",
3742
3891
  "uiLabel": "Intents",
3743
3892
  "isOptional": true,
3744
- "reference": "unknown"
3893
+ "reference": "CountryIntents"
3745
3894
  },
3746
3895
  {
3747
- "name": "isoAlpha2ColumnId",
3896
+ "name": "isoalpha2ColumnId",
3748
3897
  "kind": "string",
3749
3898
  "description": "Column which contains the ISOALPHA2 Standard",
3750
- "uiLabel": "Iso Alpha2Column Id",
3899
+ "uiLabel": "Isoalpha2Column Id",
3751
3900
  "isOptional": true
3752
3901
  },
3753
3902
  {
3754
- "name": "isoAlpha3ColumnId",
3903
+ "name": "isoalpha3ColumnId",
3755
3904
  "kind": "string",
3756
3905
  "description": "Column which contains the ISOALPHA3 Standard",
3757
- "uiLabel": "Iso Alpha3Column Id",
3906
+ "uiLabel": "Isoalpha3Column Id",
3907
+ "isOptional": true
3908
+ }
3909
+ ]
3910
+ },
3911
+ "CountryContext": {
3912
+ "name": "CountryContext",
3913
+ "kind": "Interface",
3914
+ "description": "FDC3 Context to define a Country",
3915
+ "properties": [
3916
+ {
3917
+ "name": "id",
3918
+ "kind": "unknown",
3919
+ "description": "The Country data: ISOALPHA2, ISOALPHA3",
3920
+ "uiLabel": "Id",
3921
+ "isOptional": true
3922
+ },
3923
+ {
3924
+ "name": "name",
3925
+ "kind": "string",
3926
+ "description": "Free text name of Country",
3927
+ "uiLabel": "Name",
3758
3928
  "isOptional": true
3929
+ },
3930
+ {
3931
+ "name": "type",
3932
+ "kind": "unknown",
3933
+ "description": "Context type is always `country`",
3934
+ "uiLabel": "Type"
3759
3935
  }
3760
3936
  ]
3761
3937
  },
3938
+ "CountryIntent": {
3939
+ "name": "CountryIntent",
3940
+ "kind": "TypeAlias",
3941
+ "description": "FDC3 Intents available to a Country Column"
3942
+ },
3943
+ "CountryIntents": {
3944
+ "name": "CountryIntents",
3945
+ "kind": "TypeAlias",
3946
+ "description": "All available Country Intents"
3947
+ },
3762
3948
  "CustomDestination": {
3763
3949
  "name": "CustomDestination",
3764
3950
  "kind": "Interface",
@@ -5522,6 +5708,54 @@ exports.ADAPTABLE_METAMODEL = {
5522
5708
  }
5523
5709
  ]
5524
5710
  },
5711
+ "FDC3Column": {
5712
+ "name": "FDC3Column",
5713
+ "kind": "Interface",
5714
+ "description": "An FDC3 Column - will raise FDC3 intents and broadcast FDC3 messages",
5715
+ "properties": [
5716
+ {
5717
+ "name": "broadcastContextMenuLabel",
5718
+ "kind": "unknown",
5719
+ "description": "Label to display in Broadcast Context Menu Item",
5720
+ "uiLabel": "Broadcast Context Menu Label",
5721
+ "isOptional": true
5722
+ },
5723
+ {
5724
+ "name": "columnId",
5725
+ "kind": "string",
5726
+ "description": "Id of Column defined as FDC3",
5727
+ "uiLabel": "Column Id"
5728
+ },
5729
+ {
5730
+ "name": "intentContextMenuLabel",
5731
+ "kind": "unknown",
5732
+ "description": "Label to display in Intent Context Menu Item",
5733
+ "uiLabel": "Intent Context Menu Label",
5734
+ "isOptional": true
5735
+ },
5736
+ {
5737
+ "name": "intents",
5738
+ "kind": "unknown",
5739
+ "description": "FDC3 intents which the Column can raise",
5740
+ "uiLabel": "Intents",
5741
+ "isOptional": true
5742
+ },
5743
+ {
5744
+ "name": "nameColumnId",
5745
+ "kind": "string",
5746
+ "description": "If provided, will supply `name` property in FDC3 message",
5747
+ "uiLabel": "Name Column Id",
5748
+ "isOptional": true
5749
+ },
5750
+ {
5751
+ "name": "showBroadcastContextMenu",
5752
+ "kind": "boolean",
5753
+ "description": "Should Column display a 'Broadcast' context menu item",
5754
+ "uiLabel": "Show Broadcast Context Menu",
5755
+ "isOptional": true
5756
+ }
5757
+ ]
5758
+ },
5525
5759
  "FDC3Context": {
5526
5760
  "name": "FDC3Context",
5527
5761
  "kind": "Interface",
@@ -5530,25 +5764,31 @@ exports.ADAPTABLE_METAMODEL = {
5530
5764
  {
5531
5765
  "name": "id",
5532
5766
  "kind": "unknown",
5533
- "description": "An optional map of any equivalent identifiers for the context type, e.g. ISIN, CUSIP, etc. for an instrument.",
5767
+ "description": "Optional map of any equivalent identifiers for the context type, e.g. ISIN, CUSIP, etc. for Instrument",
5534
5768
  "uiLabel": "Id",
5535
5769
  "isOptional": true
5536
5770
  },
5537
5771
  {
5538
5772
  "name": "name",
5539
5773
  "kind": "string",
5540
- "description": "The name of the context data (optional). This is a text string that describes the data being sent. Implementors of context may choose to make the name mandatory.",
5774
+ "description": "Name of the context data (optional) - a text string that describes the data being sent",
5541
5775
  "uiLabel": "Name",
5542
5776
  "isOptional": true
5543
5777
  },
5544
5778
  {
5545
5779
  "name": "type",
5546
- "kind": "string",
5547
- "description": "The type of the context that uniquely identifies it, e.g. "instrument". This is used to refer to the accepted context(s) when declaring intents. See [[AppDirIntent]].",
5548
- "uiLabel": "Type"
5780
+ "kind": "REFERENCE",
5781
+ "description": "Type of context that uniquely identifies it, e.g. "instrument"; used to refer to the accepted context(s) when declaring intents",
5782
+ "uiLabel": "Type",
5783
+ "reference": "unknown"
5549
5784
  }
5550
5785
  ]
5551
5786
  },
5787
+ "FDC3Intent": {
5788
+ "name": "FDC3Intent",
5789
+ "kind": "TypeAlias",
5790
+ "description": "Full list of FDC3 Intents available - each FDC3 Column can use a subset"
5791
+ },
5552
5792
  "FilterActionOnDataChange": {
5553
5793
  "name": "FilterActionOnDataChange",
5554
5794
  "kind": "Interface",
@@ -5958,7 +6198,7 @@ exports.ADAPTABLE_METAMODEL = {
5958
6198
  {
5959
6199
  "name": "fdc3Columns",
5960
6200
  "kind": "unknown",
5961
- "description": "Columns to be defined as FDC3",
6201
+ "description": "Columns to be defined as FDC3-related",
5962
6202
  "uiLabel": "Fdc3Columns",
5963
6203
  "isOptional": true
5964
6204
  },
@@ -6117,7 +6357,7 @@ exports.ADAPTABLE_METAMODEL = {
6117
6357
  {
6118
6358
  "name": "Scope",
6119
6359
  "kind": "REFERENCE",
6120
- "description": "Where Flashing Cell can be triggered: one, some or all columns or DataTypes",
6360
+ "description": "Where Flashing Cell can display: Column[s] or DataType[s]",
6121
6361
  "uiLabel": "Scope",
6122
6362
  "reference": "AdaptableScope"
6123
6363
  },
@@ -6696,6 +6936,15 @@ exports.ADAPTABLE_METAMODEL = {
6696
6936
  "uiLabel": "Custom Sort Comparers",
6697
6937
  "isOptional": true
6698
6938
  },
6939
+ {
6940
+ "name": "englishVariant",
6941
+ "kind": "unknown",
6942
+ "description": "English variant to use in UI labels",
6943
+ "uiLabel": "English Variant",
6944
+ "isOptional": true,
6945
+ "gridInfo": "item",
6946
+ "defaultValue": "'GB'"
6947
+ },
6699
6948
  {
6700
6949
  "name": "hideColumnWhenGrouped",
6701
6950
  "kind": "boolean",
@@ -7690,10 +7939,10 @@ exports.ADAPTABLE_METAMODEL = {
7690
7939
  {
7691
7940
  "name": "intents",
7692
7941
  "kind": "REFERENCE",
7693
- "description": "FDC3 Intents available to the Column",
7942
+ "description": "FDC3 Intents invoked by Column; can be: `ViewChart` `ViewQuote` `ViewNews` `ViewAnalysis` `ViewInstrument`",
7694
7943
  "uiLabel": "Intents",
7695
7944
  "isOptional": true,
7696
- "reference": "unknown"
7945
+ "reference": "InstrumentIntents"
7697
7946
  },
7698
7947
  {
7699
7948
  "name": "isinColumnId",
@@ -7735,26 +7984,70 @@ exports.ADAPTABLE_METAMODEL = {
7735
7984
  "InstrumentContext": {
7736
7985
  "name": "InstrumentContext",
7737
7986
  "kind": "Interface",
7738
- "description": "Built-in context to define a financial Instrument",
7987
+ "description": "FDC3 Context to define a financial Instrument",
7739
7988
  "properties": [
7740
7989
  {
7741
7990
  "name": "id",
7742
7991
  "kind": "unknown",
7743
- "description": "The instrument data",
7992
+ "description": "Instrument data: ticker, ISIN, CUSIP, SEDOL, RIC, BBG, PERMID, FIGI",
7993
+ "uiLabel": "Id",
7994
+ "isOptional": true
7995
+ },
7996
+ {
7997
+ "name": "name",
7998
+ "kind": "string",
7999
+ "description": "Free text name of the Instrument",
8000
+ "uiLabel": "Name",
8001
+ "isOptional": true
8002
+ },
8003
+ {
8004
+ "name": "type",
8005
+ "kind": "unknown",
8006
+ "description": "Context type is always `instrument`",
8007
+ "uiLabel": "Type"
8008
+ }
8009
+ ]
8010
+ },
8011
+ "InstrumentIntent": {
8012
+ "name": "InstrumentIntent",
8013
+ "kind": "TypeAlias",
8014
+ "description": "FDC3 Intents available to an Instrument Column"
8015
+ },
8016
+ "InstrumentIntents": {
8017
+ "name": "InstrumentIntents",
8018
+ "kind": "TypeAlias",
8019
+ "description": "All available Instrument Intents"
8020
+ },
8021
+ "InstrumentListContext": {
8022
+ "name": "InstrumentListContext",
8023
+ "kind": "Interface",
8024
+ "description": "FDC3 Context to define an array of financial Instruments",
8025
+ "properties": [
8026
+ {
8027
+ "name": "id",
8028
+ "kind": "unknown",
8029
+ "description": "Optional Id",
7744
8030
  "uiLabel": "Id",
7745
8031
  "isOptional": true
7746
8032
  },
8033
+ {
8034
+ "name": "instruments",
8035
+ "kind": "unknown",
8036
+ "description": "The instrument data",
8037
+ "uiLabel": "Instruments",
8038
+ "isOptional": true
8039
+ },
7747
8040
  {
7748
8041
  "name": "name",
7749
8042
  "kind": "string",
7750
- "description": "Free text name of instrument",
8043
+ "description": "Free text name of list of Instruments (not set by AdapTable)",
7751
8044
  "uiLabel": "Name",
7752
8045
  "isOptional": true
7753
8046
  },
7754
8047
  {
7755
8048
  "name": "type",
7756
8049
  "kind": "unknown",
7757
- "description": "Context type is always 'instrument'",
8050
+ "description": "Context type is always `instrumentList`",
7758
8051
  "uiLabel": "Type"
7759
8052
  }
7760
8053
  ]
@@ -8205,6 +8498,12 @@ exports.ADAPTABLE_METAMODEL = {
8205
8498
  "description": "Creates new Layout in the state",
8206
8499
  "uiLabel": "Create Layout"
8207
8500
  },
8501
+ {
8502
+ "name": "createOrUpdateLayout",
8503
+ "kind": "function",
8504
+ "description": "Creates new Layout into Adaptable State or updates an existing Layout (with same name or id)",
8505
+ "uiLabel": "Create Or Update Layout"
8506
+ },
8208
8507
  {
8209
8508
  "name": "deleteLayout",
8210
8509
  "kind": "function",
@@ -8316,7 +8615,7 @@ exports.ADAPTABLE_METAMODEL = {
8316
8615
  {
8317
8616
  "name": "saveLayout",
8318
8617
  "kind": "function",
8319
- "description": "Saves given Layout into Adaptable State",
8618
+ "description": "Saves given Layout into Adaptable State (creates new Layout if it doesn't exist)",
8320
8619
  "uiLabel": "Save Layout"
8321
8620
  },
8322
8621
  {
@@ -8985,16 +9284,16 @@ exports.ADAPTABLE_METAMODEL = {
8985
9284
  "description": "A (String) Column which will be defined as an FDC3 Organization",
8986
9285
  "properties": [
8987
9286
  {
8988
- "name": "fds_IdColumnId",
9287
+ "name": "fds_idColumnId",
8989
9288
  "kind": "string",
8990
9289
  "description": "Column which contains an FDS_ID",
8991
- "uiLabel": "Fds_Id Column Id",
9290
+ "uiLabel": "Fds_id Column Id",
8992
9291
  "isOptional": true
8993
9292
  },
8994
9293
  {
8995
9294
  "name": "intents",
8996
9295
  "kind": "REFERENCE",
8997
- "description": "FDC3 Intents available to the Column",
9296
+ "description": "FDC3 Intents invoked by Column; can be: `ViewNews` `ViewAnalysis`",
8998
9297
  "uiLabel": "Intents",
8999
9298
  "isOptional": true,
9000
9299
  "reference": "unknown"
@@ -9007,14 +9306,46 @@ exports.ADAPTABLE_METAMODEL = {
9007
9306
  "isOptional": true
9008
9307
  },
9009
9308
  {
9010
- "name": "permIdColumnId",
9309
+ "name": "permidColumnId",
9011
9310
  "kind": "string",
9012
9311
  "description": "Column which contains a PermId",
9013
- "uiLabel": "Perm Id Column Id",
9312
+ "uiLabel": "Permid Column Id",
9313
+ "isOptional": true
9314
+ }
9315
+ ]
9316
+ },
9317
+ "OrganizationContext": {
9318
+ "name": "OrganizationContext",
9319
+ "kind": "Interface",
9320
+ "description": "FDC3 Context to define an Organization",
9321
+ "properties": [
9322
+ {
9323
+ "name": "id",
9324
+ "kind": "unknown",
9325
+ "description": "The Organization data: LEI, PERMID, FDS_ID",
9326
+ "uiLabel": "Id",
9327
+ "isOptional": true
9328
+ },
9329
+ {
9330
+ "name": "name",
9331
+ "kind": "string",
9332
+ "description": "Free text name of Organization",
9333
+ "uiLabel": "Name",
9014
9334
  "isOptional": true
9335
+ },
9336
+ {
9337
+ "name": "type",
9338
+ "kind": "unknown",
9339
+ "description": "Context type is always `organization`",
9340
+ "uiLabel": "Type"
9015
9341
  }
9016
9342
  ]
9017
9343
  },
9344
+ "OrganizationIntent": {
9345
+ "name": "OrganizationIntent",
9346
+ "kind": "TypeAlias",
9347
+ "description": "FDC3 Intents available to an Organization Column"
9348
+ },
9018
9349
  "PercentBarStyle": {
9019
9350
  "name": "PercentBarStyle",
9020
9351
  "kind": "Interface",
@@ -9251,6 +9582,40 @@ exports.ADAPTABLE_METAMODEL = {
9251
9582
  }
9252
9583
  ]
9253
9584
  },
9585
+ "PortfolioContext": {
9586
+ "name": "PortfolioContext",
9587
+ "kind": "Interface",
9588
+ "description": "FDC3 Context to define a financial Portfolio (array of Positions)",
9589
+ "properties": [
9590
+ {
9591
+ "name": "id",
9592
+ "kind": "unknown",
9593
+ "description": "Optional Id",
9594
+ "uiLabel": "Id",
9595
+ "isOptional": true
9596
+ },
9597
+ {
9598
+ "name": "name",
9599
+ "kind": "string",
9600
+ "description": "Free text name of portfolio",
9601
+ "uiLabel": "Name",
9602
+ "isOptional": true
9603
+ },
9604
+ {
9605
+ "name": "positions",
9606
+ "kind": "unknown",
9607
+ "description": "The position data",
9608
+ "uiLabel": "Positions",
9609
+ "isOptional": true
9610
+ },
9611
+ {
9612
+ "name": "type",
9613
+ "kind": "unknown",
9614
+ "description": "Context type is always `portfolio`",
9615
+ "uiLabel": "Type"
9616
+ }
9617
+ ]
9618
+ },
9254
9619
  "PositionColumn": {
9255
9620
  "name": "PositionColumn",
9256
9621
  "kind": "Interface",
@@ -9265,22 +9630,22 @@ exports.ADAPTABLE_METAMODEL = {
9265
9630
  {
9266
9631
  "name": "intents",
9267
9632
  "kind": "REFERENCE",
9268
- "description": "FDC3 Intents available to the Column",
9633
+ "description": "FDC3 Intents invoked by Column; can be: `ViewChart` `ViewNews` `ViewAnalysis`",
9269
9634
  "uiLabel": "Intents",
9270
9635
  "isOptional": true,
9271
- "reference": "unknown"
9636
+ "reference": "PositionIntents"
9272
9637
  }
9273
9638
  ]
9274
9639
  },
9275
9640
  "PositionContext": {
9276
9641
  "name": "PositionContext",
9277
9642
  "kind": "Interface",
9278
- "description": "Built-in context to define a financial position",
9643
+ "description": "FDC3 Context to define a financial Position (requires an Instrument)",
9279
9644
  "properties": [
9280
9645
  {
9281
9646
  "name": "holding",
9282
9647
  "kind": "number",
9283
- "description": "Holding in the Position",
9648
+ "description": "Holding in the Position (mandatory)",
9284
9649
  "uiLabel": "Holding"
9285
9650
  },
9286
9651
  {
@@ -9290,6 +9655,13 @@ exports.ADAPTABLE_METAMODEL = {
9290
9655
  "uiLabel": "Id",
9291
9656
  "isOptional": true
9292
9657
  },
9658
+ {
9659
+ "name": "instrument",
9660
+ "kind": "REFERENCE",
9661
+ "description": "The `InstrumentContext` of the relevant Instrument",
9662
+ "uiLabel": "Instrument",
9663
+ "reference": "InstrumentContext"
9664
+ },
9293
9665
  {
9294
9666
  "name": "name",
9295
9667
  "kind": "string",
@@ -9300,11 +9672,21 @@ exports.ADAPTABLE_METAMODEL = {
9300
9672
  {
9301
9673
  "name": "type",
9302
9674
  "kind": "unknown",
9303
- "description": "Context type is always 'position'",
9675
+ "description": "Context type is always `position`",
9304
9676
  "uiLabel": "Type"
9305
9677
  }
9306
9678
  ]
9307
9679
  },
9680
+ "PositionIntent": {
9681
+ "name": "PositionIntent",
9682
+ "kind": "TypeAlias",
9683
+ "description": "FDC3 Intents available to a Position Column"
9684
+ },
9685
+ "PositionIntents": {
9686
+ "name": "PositionIntents",
9687
+ "kind": "TypeAlias",
9688
+ "description": "All available Position Intents"
9689
+ },
9308
9690
  "PredefinedConfig": {
9309
9691
  "name": "PredefinedConfig",
9310
9692
  "kind": "Interface",
@@ -9454,6 +9836,14 @@ exports.ADAPTABLE_METAMODEL = {
9454
9836
  "isOptional": true,
9455
9837
  "reference": "ShortcutState"
9456
9838
  },
9839
+ {
9840
+ "name": "StatusBar",
9841
+ "kind": "REFERENCE",
9842
+ "description": "Configures the Adaptable Status Bar",
9843
+ "uiLabel": "Status Bar",
9844
+ "isOptional": true,
9845
+ "reference": "unknown"
9846
+ },
9457
9847
  {
9458
9848
  "name": "Theme",
9459
9849
  "kind": "REFERENCE",
@@ -9602,6 +9992,12 @@ exports.ADAPTABLE_METAMODEL = {
9602
9992
  "description": "Clears the Current Query",
9603
9993
  "uiLabel": "Clear Current Query"
9604
9994
  },
9995
+ {
9996
+ "name": "expandCurrentQuery",
9997
+ "kind": "function",
9998
+ "description": "Opens current query editor",
9999
+ "uiLabel": "Expand Current Query"
10000
+ },
9605
10001
  {
9606
10002
  "name": "getAllNamedQuery",
9607
10003
  "kind": "function",
@@ -9817,6 +10213,20 @@ exports.ADAPTABLE_METAMODEL = {
9817
10213
  }
9818
10214
  ]
9819
10215
  },
10216
+ "RaiseFDC3IntentContext": {
10217
+ "name": "RaiseFDC3IntentContext",
10218
+ "kind": "Interface",
10219
+ "description": "Context passed into Raise FDC3 Intent functions (e.g. get label)",
10220
+ "properties": [
10221
+ {
10222
+ "name": "intent",
10223
+ "kind": "REFERENCE",
10224
+ "description": "FDC3 Intent that was raised",
10225
+ "uiLabel": "Intent",
10226
+ "reference": "FDC3Intent"
10227
+ }
10228
+ ]
10229
+ },
9820
10230
  "ReactFrameworkComponent": {
9821
10231
  "name": "ReactFrameworkComponent",
9822
10232
  "kind": "TypeAlias",
@@ -11562,7 +11972,7 @@ exports.ADAPTABLE_METAMODEL = {
11562
11972
  {
11563
11973
  "name": "ToolPanels",
11564
11974
  "kind": "unknown",
11565
- "description": "ToolPanels visible",
11975
+ "description": "Adaptable Tool Panels which are viaible",
11566
11976
  "uiLabel": "Tool Panels",
11567
11977
  "isOptional": true,
11568
11978
  "defaultValue": "ToolPanels for all available Modules (subject to Entitlement rules)"
@@ -11774,6 +12184,15 @@ exports.ADAPTABLE_METAMODEL = {
11774
12184
  "isOptional": true,
11775
12185
  "reference": "AdaptableStyle"
11776
12186
  },
12187
+ {
12188
+ "name": "showAdapTableVersion",
12189
+ "kind": "boolean",
12190
+ "description": "Displays the AdapTable version in Grid Info section of Settings Panel",
12191
+ "uiLabel": "Show Adap Table Version",
12192
+ "isOptional": true,
12193
+ "gridInfo": "item",
12194
+ "defaultValue": "true"
12195
+ },
11777
12196
  {
11778
12197
  "name": "showDocumentationLinks",
11779
12198
  "kind": "boolean",