@adaptabletools/adaptable 11.1.8 → 11.1.9

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 (183) 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/Implementation/AdaptableApiImpl.d.ts +2 -0
  16. package/src/Api/Implementation/AdaptableApiImpl.js +2 -0
  17. package/src/Api/Implementation/AlertApiImpl.js +32 -15
  18. package/src/Api/Implementation/CellSummaryApiImpl.d.ts +2 -0
  19. package/src/Api/Implementation/CellSummaryApiImpl.js +34 -0
  20. package/src/Api/Implementation/ConfigApiImpl.js +3 -0
  21. package/src/Api/Implementation/InternalApiImpl.d.ts +2 -1
  22. package/src/Api/Implementation/InternalApiImpl.js +29 -7
  23. package/src/Api/Implementation/QueryApiImpl.d.ts +1 -0
  24. package/src/Api/Implementation/QueryApiImpl.js +12 -0
  25. package/src/Api/Implementation/StatusBarApiImpl.d.ts +8 -0
  26. package/src/Api/Implementation/StatusBarApiImpl.js +17 -0
  27. package/src/Api/InternalApi.d.ts +2 -1
  28. package/src/Api/QueryApi.d.ts +6 -0
  29. package/src/Api/StatusBarApi.d.ts +10 -0
  30. package/src/Api/StatusBarApi.js +2 -0
  31. package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
  32. package/src/PredefinedConfig/Common/FDC3Context.d.ts +61 -29
  33. package/src/PredefinedConfig/Common/Types.d.ts +4 -2
  34. package/src/PredefinedConfig/Common/Types.js +32 -1
  35. package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
  36. package/src/PredefinedConfig/GridState.d.ts +1 -1
  37. package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -0
  38. package/src/PredefinedConfig/StatusBarState.d.ts +27 -0
  39. package/src/PredefinedConfig/StatusBarState.js +7 -0
  40. package/src/PredefinedConfig/ToolPanelState.d.ts +1 -1
  41. package/src/Redux/ActionsReducers/GridRedux.d.ts +2 -2
  42. package/src/Redux/ActionsReducers/GridRedux.js +4 -4
  43. package/src/Redux/ActionsReducers/StatusBarRedux.d.ts +22 -0
  44. package/src/Redux/ActionsReducers/StatusBarRedux.js +31 -0
  45. package/src/Redux/ActionsReducers/SystemRedux.d.ts +8 -3
  46. package/src/Redux/ActionsReducers/SystemRedux.js +22 -5
  47. package/src/Redux/Store/AdaptableReduxMerger.js +2 -2
  48. package/src/Redux/Store/AdaptableStore.js +24 -10
  49. package/src/Strategy/AlertModule.d.ts +3 -0
  50. package/src/Strategy/AlertModule.js +6 -0
  51. package/src/Strategy/CellSummaryModule.d.ts +6 -0
  52. package/src/Strategy/CellSummaryModule.js +14 -0
  53. package/src/Strategy/DataChangeHistoryModule.d.ts +7 -0
  54. package/src/Strategy/DataChangeHistoryModule.js +11 -0
  55. package/src/Strategy/ExportModule.d.ts +1 -0
  56. package/src/Strategy/ExportModule.js +1 -0
  57. package/src/Strategy/FilterModule.d.ts +6 -0
  58. package/src/Strategy/FilterModule.js +21 -0
  59. package/src/Strategy/Interface/IModule.d.ts +21 -10
  60. package/src/Strategy/LayoutModule.d.ts +7 -0
  61. package/src/Strategy/LayoutModule.js +13 -0
  62. package/src/Strategy/QueryModule.d.ts +8 -0
  63. package/src/Strategy/QueryModule.js +18 -0
  64. package/src/Strategy/QuickSearchModule.d.ts +6 -0
  65. package/src/Strategy/QuickSearchModule.js +10 -0
  66. package/src/Strategy/StatusBarModule.d.ts +8 -0
  67. package/src/Strategy/StatusBarModule.js +39 -0
  68. package/src/Strategy/SystemStatusModule.d.ts +6 -0
  69. package/src/Strategy/SystemStatusModule.js +10 -0
  70. package/src/Strategy/ThemeModule.d.ts +7 -0
  71. package/src/Strategy/ThemeModule.js +12 -0
  72. package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +1 -1
  73. package/src/Utilities/Constants/ModuleConstants.d.ts +1 -0
  74. package/src/Utilities/Constants/ModuleConstants.js +2 -1
  75. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +4 -1
  76. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -0
  77. package/src/Utilities/Services/ModuleService.js +6 -6
  78. package/src/View/AdaptablePopover/index.d.ts +1 -0
  79. package/src/View/AdaptablePopover/index.js +5 -2
  80. package/src/View/AdaptableViewFactory.js +2 -2
  81. package/src/View/Alert/AlertStatusSubPanel.d.ts +2 -0
  82. package/src/View/Alert/AlertStatusSubPanel.js +56 -0
  83. package/src/View/Alert/AlertViewPanel.js +6 -7
  84. package/src/View/Alert/AlertsPanel.d.ts +1 -1
  85. package/src/View/Alert/AlertsPanel.js +2 -1
  86. package/src/View/Alert/Utilities/getAlertButtonStyle.d.ts +5 -0
  87. package/src/View/Alert/Utilities/getAlertButtonStyle.js +15 -0
  88. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +18 -7
  89. package/src/View/Alert/Wizard/AlertButtonsEditor.js +1 -8
  90. package/src/View/Alert/Wizard/AlertWizard.js +3 -2
  91. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.d.ts +2 -0
  92. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +15 -0
  93. package/src/View/CellSummary/CellSummaryStatusPanel.d.ts +2 -0
  94. package/src/View/CellSummary/CellSummaryStatusPanel.js +36 -0
  95. package/src/View/CellSummary/CellSummaryViewPanel.js +2 -20
  96. package/src/View/ColorPicker.d.ts +1 -1
  97. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  98. package/src/View/Components/AdaptableInput/index.d.ts +1 -1
  99. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  100. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
  101. package/src/View/Components/Forms/AdaptableFormControlTextClear.js +1 -1
  102. package/src/View/Components/Panels/PanelWithImage.d.ts +2 -2
  103. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +5 -4
  104. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +1 -1
  105. package/src/View/Components/RangesComponent.js +6 -2
  106. package/src/View/Components/StyleComponent.js +18 -6
  107. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +1 -1
  108. package/src/View/Components/ToolPanel/ToolPanelPopup.js +3 -3
  109. package/src/View/Dashboard/DashboardPopup.js +2 -2
  110. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +5 -13
  111. package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.d.ts +2 -0
  112. package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.js +9 -0
  113. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.d.ts +4 -16
  114. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +32 -40
  115. package/src/View/Filter/ActiveFiltersPanel.d.ts +0 -2
  116. package/src/View/Filter/FilterStatusBarSubPanelPopover.d.ts +2 -0
  117. package/src/View/Filter/FilterStatusBarSubPanelPopover.js +18 -0
  118. package/src/View/Filter/FilterViewPanel.js +1 -1
  119. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +1 -1
  120. package/src/View/GridInfo/GridInfoPopup.js +4 -1
  121. package/src/View/Layout/EditCurrentLayoutButton.d.ts +2 -0
  122. package/src/View/Layout/EditCurrentLayoutButton.js +14 -0
  123. package/src/View/Layout/LayoutPopup.d.ts +1 -1
  124. package/src/View/Layout/LayoutPopup.js +3 -3
  125. package/src/View/Layout/LayoutRadioSelector.d.ts +1 -0
  126. package/src/View/Layout/LayoutRadioSelector.js +2 -2
  127. package/src/View/Layout/LayoutStatusBarSubPanelPopover.d.ts +2 -0
  128. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +29 -0
  129. package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.js +2 -1
  130. package/src/View/Layout/Wizard/LayoutEditorWizard.js +2 -1
  131. package/src/View/Query/EditCurrentQueryButton.d.ts +2 -0
  132. package/src/View/Query/EditCurrentQueryButton.js +15 -0
  133. package/src/View/Query/QueryViewPanel.d.ts +0 -1
  134. package/src/View/Query/QueryViewPanel.js +2 -11
  135. package/src/View/QuickSearch/QuickSearchPopup.js +1 -1
  136. package/src/View/QuickSearch/QuickSearchStatusBarContent.d.ts +2 -0
  137. package/src/View/QuickSearch/QuickSearchStatusBarContent.js +16 -0
  138. package/src/View/StatusBar/AdaptableStatusBar.d.ts +3 -0
  139. package/src/View/StatusBar/AdaptableStatusBar.js +44 -0
  140. package/src/View/StatusBar/StatusBarPanel.d.ts +42 -0
  141. package/src/View/StatusBar/StatusBarPanel.js +45 -0
  142. package/src/View/StatusBar/StatusBarPopup.d.ts +3 -0
  143. package/src/View/StatusBar/StatusBarPopup.js +43 -0
  144. package/src/View/SystemStatus/SystemStatusStatusBarContent.d.ts +2 -0
  145. package/src/View/SystemStatus/SystemStatusStatusBarContent.js +15 -0
  146. package/src/View/SystemStatus/SystemStatusViewPanel.js +3 -7
  147. package/src/View/SystemStatus/Utilities/getStatusItemStyle.d.ts +5 -0
  148. package/src/View/SystemStatus/Utilities/getStatusItemStyle.js +16 -0
  149. package/src/View/Theme/ThemeStatusPanelPopover.d.ts +2 -0
  150. package/src/View/Theme/ThemeStatusPanelPopover.js +36 -0
  151. package/src/agGrid/Adaptable.d.ts +2 -0
  152. package/src/agGrid/Adaptable.js +27 -0
  153. package/src/agGrid/agGridHelper.js +2 -0
  154. package/src/agGrid/createAgStatusPanelComponent.d.ts +21 -0
  155. package/src/agGrid/createAgStatusPanelComponent.js +31 -0
  156. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +1 -1
  157. package/src/components/Dashboard/DashboardManager.js +9 -162
  158. package/src/components/Datepicker/index.d.ts +1 -1
  159. package/src/components/DragAndDropContext/DragAndDropContext.d.ts +7 -0
  160. package/src/components/DragAndDropContext/DragAndDropContext.js +14 -0
  161. package/src/components/DragAndDropContext/ModuleManager.d.ts +17 -0
  162. package/src/components/DragAndDropContext/ModuleManager.js +81 -0
  163. package/src/components/DragAndDropContext/TabList.d.ts +29 -0
  164. package/src/components/DragAndDropContext/TabList.js +72 -0
  165. package/src/components/DragAndDropContext/UnusedPanel.d.ts +6 -0
  166. package/src/components/DragAndDropContext/UnusedPanel.js +46 -0
  167. package/src/components/DragAndDropContext/types.d.ts +8 -0
  168. package/src/components/DragAndDropContext/types.js +2 -0
  169. package/src/components/Input/index.d.ts +1 -1
  170. package/src/components/List/ListGroupItem/index.d.ts +1 -1
  171. package/src/components/PopupWithFooter.d.ts +1 -1
  172. package/src/components/SimpleButton/index.js +3 -0
  173. package/src/components/Textarea/index.d.ts +1 -1
  174. package/src/components/icons/DefaultIcon.d.ts +2 -1
  175. package/src/components/icons/DefaultIcon.js +2 -2
  176. package/src/components/icons/index.js +2 -0
  177. package/src/components/icons/statusbar.d.ts +3 -0
  178. package/src/components/icons/statusbar.js +8 -0
  179. package/src/metamodel/adaptable.metamodel.d.ts +231 -0
  180. package/src/metamodel/adaptable.metamodel.js +433 -37
  181. package/src/types.d.ts +4 -3
  182. package/version.d.ts +1 -1
  183. 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"
@@ -1948,11 +1988,11 @@ exports.ADAPTABLE_METAMODEL = {
1948
1988
  {
1949
1989
  "name": "cellHighlightDuration",
1950
1990
  "kind": "number",
1951
- "description": "How long (in ms) a cell will be highlighted",
1991
+ "description": "How long (in ms) a Cell will be highlighted when an Alert fires",
1952
1992
  "uiLabel": "Cell Highlight Duration",
1953
1993
  "isOptional": true,
1954
1994
  "gridInfo": "item",
1955
- "defaultValue": "3000"
1995
+ "defaultValue": "2000"
1956
1996
  },
1957
1997
  {
1958
1998
  "name": "dataChangeDetectionPolicy",
@@ -1971,6 +2011,15 @@ exports.ADAPTABLE_METAMODEL = {
1971
2011
  "isOptional": true,
1972
2012
  "gridInfo": "item",
1973
2013
  "defaultValue": "20"
2014
+ },
2015
+ {
2016
+ "name": "rowHighlightDuration",
2017
+ "kind": "number",
2018
+ "description": "How long (in ms) a Row will be highlighted when an Alert Fires",
2019
+ "uiLabel": "Row Highlight Duration",
2020
+ "isOptional": true,
2021
+ "gridInfo": "item",
2022
+ "defaultValue": "4000"
1974
2023
  }
1975
2024
  ]
1976
2025
  },
@@ -2557,12 +2606,24 @@ exports.ADAPTABLE_METAMODEL = {
2557
2606
  "description": "Retrieves all Cell Summary Definitions from Cell Summary State",
2558
2607
  "uiLabel": "Get Cell Summary Operation Definitions"
2559
2608
  },
2609
+ {
2610
+ "name": "getCellSummaryOperationValue",
2611
+ "kind": "function",
2612
+ "description": "Retrieves the value of the current selected operation",
2613
+ "uiLabel": "Get Cell Summary Operation Value"
2614
+ },
2560
2615
  {
2561
2616
  "name": "getCurrentCellSummaryOperation",
2562
2617
  "kind": "function",
2563
2618
  "description": "Retrieves currently selected Cell Summary Operation",
2564
2619
  "uiLabel": "Get Current Cell Summary Operation"
2565
2620
  },
2621
+ {
2622
+ "name": "getCurrentCellSummaryOperationValue",
2623
+ "kind": "function",
2624
+ "description": "Retrieves the value of the current selected operation",
2625
+ "uiLabel": "Get Current Cell Summary Operation Value"
2626
+ },
2566
2627
  {
2567
2628
  "name": "setCurrentCellSummaryOperation",
2568
2629
  "kind": "function",
@@ -3026,7 +3087,7 @@ exports.ADAPTABLE_METAMODEL = {
3026
3087
  {
3027
3088
  "name": "Color",
3028
3089
  "kind": "string",
3029
- "description": "Colour to use for the Percent bar",
3090
+ "description": "Colour to use for the Comparison",
3030
3091
  "uiLabel": "Color"
3031
3092
  },
3032
3093
  {
@@ -3568,19 +3629,90 @@ exports.ADAPTABLE_METAMODEL = {
3568
3629
  "isOptional": true
3569
3630
  },
3570
3631
  {
3571
- "name": "fds_IdColumnId",
3632
+ "name": "fds_idColumnId",
3572
3633
  "kind": "string",
3573
3634
  "description": "Column which holds an FDS_ID value a Contact",
3574
- "uiLabel": "Fds_Id Column Id",
3635
+ "uiLabel": "Fds_id Column Id",
3575
3636
  "isOptional": true
3576
3637
  },
3577
3638
  {
3578
3639
  "name": "intents",
3579
3640
  "kind": "REFERENCE",
3580
- "description": "FDC3 Intents available to the Column",
3641
+ "description": "FDC3 Intents invoked by Column; can be: `StartCall` `StartChat` `ViewContact`",
3581
3642
  "uiLabel": "Intents",
3582
3643
  "isOptional": true,
3583
- "reference": "unknown"
3644
+ "reference": "ContactIntents"
3645
+ }
3646
+ ]
3647
+ },
3648
+ "ContactContext": {
3649
+ "name": "ContactContext",
3650
+ "kind": "Interface",
3651
+ "description": "FDC3 Context to define a Contact",
3652
+ "properties": [
3653
+ {
3654
+ "name": "id",
3655
+ "kind": "unknown",
3656
+ "description": "The Contact data: email, FDS_ID",
3657
+ "uiLabel": "Id",
3658
+ "isOptional": true
3659
+ },
3660
+ {
3661
+ "name": "name",
3662
+ "kind": "string",
3663
+ "description": "Free text name of Contact",
3664
+ "uiLabel": "Name",
3665
+ "isOptional": true
3666
+ },
3667
+ {
3668
+ "name": "type",
3669
+ "kind": "unknown",
3670
+ "description": "Context type is always `contact`",
3671
+ "uiLabel": "Type"
3672
+ }
3673
+ ]
3674
+ },
3675
+ "ContactIntent": {
3676
+ "name": "ContactIntent",
3677
+ "kind": "TypeAlias",
3678
+ "description": "FDC3 Intents available to a Contact Column"
3679
+ },
3680
+ "ContactIntents": {
3681
+ "name": "ContactIntents",
3682
+ "kind": "TypeAlias",
3683
+ "description": "All available Contact Intents"
3684
+ },
3685
+ "ContactListContext": {
3686
+ "name": "ContactListContext",
3687
+ "kind": "Interface",
3688
+ "description": "FDC3 Context to define a list of Contacts",
3689
+ "properties": [
3690
+ {
3691
+ "name": "contacts",
3692
+ "kind": "unknown",
3693
+ "description": "The array of Contacts",
3694
+ "uiLabel": "Contacts",
3695
+ "isOptional": true
3696
+ },
3697
+ {
3698
+ "name": "id",
3699
+ "kind": "unknown",
3700
+ "description": "Optional Id",
3701
+ "uiLabel": "Id",
3702
+ "isOptional": true
3703
+ },
3704
+ {
3705
+ "name": "name",
3706
+ "kind": "string",
3707
+ "description": "Free text name of Contact list",
3708
+ "uiLabel": "Name",
3709
+ "isOptional": true
3710
+ },
3711
+ {
3712
+ "name": "type",
3713
+ "kind": "unknown",
3714
+ "description": "Context type is always `contactList`",
3715
+ "uiLabel": "Type"
3584
3716
  }
3585
3717
  ]
3586
3718
  },
@@ -3738,27 +3870,64 @@ exports.ADAPTABLE_METAMODEL = {
3738
3870
  {
3739
3871
  "name": "intents",
3740
3872
  "kind": "REFERENCE",
3741
- "description": "FDC3 Intents available to the Column",
3873
+ "description": "FDC3 Intents invoked by Column; can be: `ViewChart`",
3742
3874
  "uiLabel": "Intents",
3743
3875
  "isOptional": true,
3744
- "reference": "unknown"
3876
+ "reference": "CountryIntents"
3745
3877
  },
3746
3878
  {
3747
- "name": "isoAlpha2ColumnId",
3879
+ "name": "isoalpha2ColumnId",
3748
3880
  "kind": "string",
3749
3881
  "description": "Column which contains the ISOALPHA2 Standard",
3750
- "uiLabel": "Iso Alpha2Column Id",
3882
+ "uiLabel": "Isoalpha2Column Id",
3751
3883
  "isOptional": true
3752
3884
  },
3753
3885
  {
3754
- "name": "isoAlpha3ColumnId",
3886
+ "name": "isoalpha3ColumnId",
3755
3887
  "kind": "string",
3756
3888
  "description": "Column which contains the ISOALPHA3 Standard",
3757
- "uiLabel": "Iso Alpha3Column Id",
3889
+ "uiLabel": "Isoalpha3Column Id",
3758
3890
  "isOptional": true
3759
3891
  }
3760
3892
  ]
3761
3893
  },
3894
+ "CountryContext": {
3895
+ "name": "CountryContext",
3896
+ "kind": "Interface",
3897
+ "description": "FDC3 Context to define a Country",
3898
+ "properties": [
3899
+ {
3900
+ "name": "id",
3901
+ "kind": "unknown",
3902
+ "description": "The Country data: ISOALPHA2, ISOALPHA3",
3903
+ "uiLabel": "Id",
3904
+ "isOptional": true
3905
+ },
3906
+ {
3907
+ "name": "name",
3908
+ "kind": "string",
3909
+ "description": "Free text name of Country",
3910
+ "uiLabel": "Name",
3911
+ "isOptional": true
3912
+ },
3913
+ {
3914
+ "name": "type",
3915
+ "kind": "unknown",
3916
+ "description": "Context type is always `country`",
3917
+ "uiLabel": "Type"
3918
+ }
3919
+ ]
3920
+ },
3921
+ "CountryIntent": {
3922
+ "name": "CountryIntent",
3923
+ "kind": "TypeAlias",
3924
+ "description": "FDC3 Intents available to a Country Column"
3925
+ },
3926
+ "CountryIntents": {
3927
+ "name": "CountryIntents",
3928
+ "kind": "TypeAlias",
3929
+ "description": "All available Country Intents"
3930
+ },
3762
3931
  "CustomDestination": {
3763
3932
  "name": "CustomDestination",
3764
3933
  "kind": "Interface",
@@ -5522,6 +5691,54 @@ exports.ADAPTABLE_METAMODEL = {
5522
5691
  }
5523
5692
  ]
5524
5693
  },
5694
+ "FDC3Column": {
5695
+ "name": "FDC3Column",
5696
+ "kind": "Interface",
5697
+ "description": "An FDC3 Column - will raise FDC3 intents and broadcast FDC3 messages",
5698
+ "properties": [
5699
+ {
5700
+ "name": "broadcastContextMenuLabel",
5701
+ "kind": "unknown",
5702
+ "description": "Label to display in Broadcast Context Menu Item",
5703
+ "uiLabel": "Broadcast Context Menu Label",
5704
+ "isOptional": true
5705
+ },
5706
+ {
5707
+ "name": "columnId",
5708
+ "kind": "string",
5709
+ "description": "Id of Column defined as FDC3",
5710
+ "uiLabel": "Column Id"
5711
+ },
5712
+ {
5713
+ "name": "intentContextMenuLabel",
5714
+ "kind": "unknown",
5715
+ "description": "Label to display in Intent Context Menu Item",
5716
+ "uiLabel": "Intent Context Menu Label",
5717
+ "isOptional": true
5718
+ },
5719
+ {
5720
+ "name": "intents",
5721
+ "kind": "unknown",
5722
+ "description": "FDC3 intents which the Column can raise",
5723
+ "uiLabel": "Intents",
5724
+ "isOptional": true
5725
+ },
5726
+ {
5727
+ "name": "nameColumnId",
5728
+ "kind": "string",
5729
+ "description": "If provided, will supply `name` property in FDC3 message",
5730
+ "uiLabel": "Name Column Id",
5731
+ "isOptional": true
5732
+ },
5733
+ {
5734
+ "name": "showBroadcastContextMenu",
5735
+ "kind": "boolean",
5736
+ "description": "Should Column display a 'Broadcast' context menu item",
5737
+ "uiLabel": "Show Broadcast Context Menu",
5738
+ "isOptional": true
5739
+ }
5740
+ ]
5741
+ },
5525
5742
  "FDC3Context": {
5526
5743
  "name": "FDC3Context",
5527
5744
  "kind": "Interface",
@@ -5530,25 +5747,31 @@ exports.ADAPTABLE_METAMODEL = {
5530
5747
  {
5531
5748
  "name": "id",
5532
5749
  "kind": "unknown",
5533
- "description": "An optional map of any equivalent identifiers for the context type, e.g. ISIN, CUSIP, etc. for an instrument.",
5750
+ "description": "Optional map of any equivalent identifiers for the context type, e.g. ISIN, CUSIP, etc. for Instrument",
5534
5751
  "uiLabel": "Id",
5535
5752
  "isOptional": true
5536
5753
  },
5537
5754
  {
5538
5755
  "name": "name",
5539
5756
  "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.",
5757
+ "description": "Name of the context data (optional) - a text string that describes the data being sent",
5541
5758
  "uiLabel": "Name",
5542
5759
  "isOptional": true
5543
5760
  },
5544
5761
  {
5545
5762
  "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"
5763
+ "kind": "REFERENCE",
5764
+ "description": "Type of context that uniquely identifies it, e.g. "instrument"; used to refer to the accepted context(s) when declaring intents",
5765
+ "uiLabel": "Type",
5766
+ "reference": "unknown"
5549
5767
  }
5550
5768
  ]
5551
5769
  },
5770
+ "FDC3Intent": {
5771
+ "name": "FDC3Intent",
5772
+ "kind": "TypeAlias",
5773
+ "description": "Full list of FDC3 Intents available - each FDC3 Column can use a subset"
5774
+ },
5552
5775
  "FilterActionOnDataChange": {
5553
5776
  "name": "FilterActionOnDataChange",
5554
5777
  "kind": "Interface",
@@ -5958,7 +6181,7 @@ exports.ADAPTABLE_METAMODEL = {
5958
6181
  {
5959
6182
  "name": "fdc3Columns",
5960
6183
  "kind": "unknown",
5961
- "description": "Columns to be defined as FDC3",
6184
+ "description": "Columns to be defined as FDC3-related",
5962
6185
  "uiLabel": "Fdc3Columns",
5963
6186
  "isOptional": true
5964
6187
  },
@@ -6696,6 +6919,15 @@ exports.ADAPTABLE_METAMODEL = {
6696
6919
  "uiLabel": "Custom Sort Comparers",
6697
6920
  "isOptional": true
6698
6921
  },
6922
+ {
6923
+ "name": "englishVariant",
6924
+ "kind": "unknown",
6925
+ "description": "English variant to use in UI labels",
6926
+ "uiLabel": "English Variant",
6927
+ "isOptional": true,
6928
+ "gridInfo": "item",
6929
+ "defaultValue": "'GB'"
6930
+ },
6699
6931
  {
6700
6932
  "name": "hideColumnWhenGrouped",
6701
6933
  "kind": "boolean",
@@ -7690,10 +7922,10 @@ exports.ADAPTABLE_METAMODEL = {
7690
7922
  {
7691
7923
  "name": "intents",
7692
7924
  "kind": "REFERENCE",
7693
- "description": "FDC3 Intents available to the Column",
7925
+ "description": "FDC3 Intents invoked by Column; can be: `ViewChart` `ViewQuote` `ViewNews` `ViewAnalysis` `ViewInstrument`",
7694
7926
  "uiLabel": "Intents",
7695
7927
  "isOptional": true,
7696
- "reference": "unknown"
7928
+ "reference": "InstrumentIntents"
7697
7929
  },
7698
7930
  {
7699
7931
  "name": "isinColumnId",
@@ -7735,26 +7967,70 @@ exports.ADAPTABLE_METAMODEL = {
7735
7967
  "InstrumentContext": {
7736
7968
  "name": "InstrumentContext",
7737
7969
  "kind": "Interface",
7738
- "description": "Built-in context to define a financial Instrument",
7970
+ "description": "FDC3 Context to define a financial Instrument",
7739
7971
  "properties": [
7740
7972
  {
7741
7973
  "name": "id",
7742
7974
  "kind": "unknown",
7743
- "description": "The instrument data",
7975
+ "description": "Instrument data: ticker, ISIN, CUSIP, SEDOL, RIC, BBG, PERMID, FIGI",
7744
7976
  "uiLabel": "Id",
7745
7977
  "isOptional": true
7746
7978
  },
7747
7979
  {
7748
7980
  "name": "name",
7749
7981
  "kind": "string",
7750
- "description": "Free text name of instrument",
7982
+ "description": "Free text name of the Instrument",
7751
7983
  "uiLabel": "Name",
7752
7984
  "isOptional": true
7753
7985
  },
7754
7986
  {
7755
7987
  "name": "type",
7756
7988
  "kind": "unknown",
7757
- "description": "Context type is always 'instrument'",
7989
+ "description": "Context type is always `instrument`",
7990
+ "uiLabel": "Type"
7991
+ }
7992
+ ]
7993
+ },
7994
+ "InstrumentIntent": {
7995
+ "name": "InstrumentIntent",
7996
+ "kind": "TypeAlias",
7997
+ "description": "FDC3 Intents available to an Instrument Column"
7998
+ },
7999
+ "InstrumentIntents": {
8000
+ "name": "InstrumentIntents",
8001
+ "kind": "TypeAlias",
8002
+ "description": "All available Instrument Intents"
8003
+ },
8004
+ "InstrumentListContext": {
8005
+ "name": "InstrumentListContext",
8006
+ "kind": "Interface",
8007
+ "description": "FDC3 Context to define an array of financial Instruments",
8008
+ "properties": [
8009
+ {
8010
+ "name": "id",
8011
+ "kind": "unknown",
8012
+ "description": "Optional Id",
8013
+ "uiLabel": "Id",
8014
+ "isOptional": true
8015
+ },
8016
+ {
8017
+ "name": "instruments",
8018
+ "kind": "unknown",
8019
+ "description": "The instrument data",
8020
+ "uiLabel": "Instruments",
8021
+ "isOptional": true
8022
+ },
8023
+ {
8024
+ "name": "name",
8025
+ "kind": "string",
8026
+ "description": "Free text name of list of Instruments (not set by AdapTable)",
8027
+ "uiLabel": "Name",
8028
+ "isOptional": true
8029
+ },
8030
+ {
8031
+ "name": "type",
8032
+ "kind": "unknown",
8033
+ "description": "Context type is always `instrumentList`",
7758
8034
  "uiLabel": "Type"
7759
8035
  }
7760
8036
  ]
@@ -8985,16 +9261,16 @@ exports.ADAPTABLE_METAMODEL = {
8985
9261
  "description": "A (String) Column which will be defined as an FDC3 Organization",
8986
9262
  "properties": [
8987
9263
  {
8988
- "name": "fds_IdColumnId",
9264
+ "name": "fds_idColumnId",
8989
9265
  "kind": "string",
8990
9266
  "description": "Column which contains an FDS_ID",
8991
- "uiLabel": "Fds_Id Column Id",
9267
+ "uiLabel": "Fds_id Column Id",
8992
9268
  "isOptional": true
8993
9269
  },
8994
9270
  {
8995
9271
  "name": "intents",
8996
9272
  "kind": "REFERENCE",
8997
- "description": "FDC3 Intents available to the Column",
9273
+ "description": "FDC3 Intents invoked by Column; can be: `ViewNews` `ViewAnalysis`",
8998
9274
  "uiLabel": "Intents",
8999
9275
  "isOptional": true,
9000
9276
  "reference": "unknown"
@@ -9007,14 +9283,46 @@ exports.ADAPTABLE_METAMODEL = {
9007
9283
  "isOptional": true
9008
9284
  },
9009
9285
  {
9010
- "name": "permIdColumnId",
9286
+ "name": "permidColumnId",
9011
9287
  "kind": "string",
9012
9288
  "description": "Column which contains a PermId",
9013
- "uiLabel": "Perm Id Column Id",
9289
+ "uiLabel": "Permid Column Id",
9014
9290
  "isOptional": true
9015
9291
  }
9016
9292
  ]
9017
9293
  },
9294
+ "OrganizationContext": {
9295
+ "name": "OrganizationContext",
9296
+ "kind": "Interface",
9297
+ "description": "FDC3 Context to define an Organization",
9298
+ "properties": [
9299
+ {
9300
+ "name": "id",
9301
+ "kind": "unknown",
9302
+ "description": "The Organization data: LEI, PERMID, FDS_ID",
9303
+ "uiLabel": "Id",
9304
+ "isOptional": true
9305
+ },
9306
+ {
9307
+ "name": "name",
9308
+ "kind": "string",
9309
+ "description": "Free text name of Organization",
9310
+ "uiLabel": "Name",
9311
+ "isOptional": true
9312
+ },
9313
+ {
9314
+ "name": "type",
9315
+ "kind": "unknown",
9316
+ "description": "Context type is always `organization`",
9317
+ "uiLabel": "Type"
9318
+ }
9319
+ ]
9320
+ },
9321
+ "OrganizationIntent": {
9322
+ "name": "OrganizationIntent",
9323
+ "kind": "TypeAlias",
9324
+ "description": "FDC3 Intents available to an Organization Column"
9325
+ },
9018
9326
  "PercentBarStyle": {
9019
9327
  "name": "PercentBarStyle",
9020
9328
  "kind": "Interface",
@@ -9251,6 +9559,40 @@ exports.ADAPTABLE_METAMODEL = {
9251
9559
  }
9252
9560
  ]
9253
9561
  },
9562
+ "PortfolioContext": {
9563
+ "name": "PortfolioContext",
9564
+ "kind": "Interface",
9565
+ "description": "FDC3 Context to define a financial Portfolio (array of Positions)",
9566
+ "properties": [
9567
+ {
9568
+ "name": "id",
9569
+ "kind": "unknown",
9570
+ "description": "Optional Id",
9571
+ "uiLabel": "Id",
9572
+ "isOptional": true
9573
+ },
9574
+ {
9575
+ "name": "name",
9576
+ "kind": "string",
9577
+ "description": "Free text name of portfolio",
9578
+ "uiLabel": "Name",
9579
+ "isOptional": true
9580
+ },
9581
+ {
9582
+ "name": "positions",
9583
+ "kind": "unknown",
9584
+ "description": "The position data",
9585
+ "uiLabel": "Positions",
9586
+ "isOptional": true
9587
+ },
9588
+ {
9589
+ "name": "type",
9590
+ "kind": "unknown",
9591
+ "description": "Context type is always `portfolio`",
9592
+ "uiLabel": "Type"
9593
+ }
9594
+ ]
9595
+ },
9254
9596
  "PositionColumn": {
9255
9597
  "name": "PositionColumn",
9256
9598
  "kind": "Interface",
@@ -9265,22 +9607,22 @@ exports.ADAPTABLE_METAMODEL = {
9265
9607
  {
9266
9608
  "name": "intents",
9267
9609
  "kind": "REFERENCE",
9268
- "description": "FDC3 Intents available to the Column",
9610
+ "description": "FDC3 Intents invoked by Column; can be: `ViewChart` `ViewNews` `ViewAnalysis`",
9269
9611
  "uiLabel": "Intents",
9270
9612
  "isOptional": true,
9271
- "reference": "unknown"
9613
+ "reference": "PositionIntents"
9272
9614
  }
9273
9615
  ]
9274
9616
  },
9275
9617
  "PositionContext": {
9276
9618
  "name": "PositionContext",
9277
9619
  "kind": "Interface",
9278
- "description": "Built-in context to define a financial position",
9620
+ "description": "FDC3 Context to define a financial Position (requires an Instrument)",
9279
9621
  "properties": [
9280
9622
  {
9281
9623
  "name": "holding",
9282
9624
  "kind": "number",
9283
- "description": "Holding in the Position",
9625
+ "description": "Holding in the Position (mandatory)",
9284
9626
  "uiLabel": "Holding"
9285
9627
  },
9286
9628
  {
@@ -9290,6 +9632,13 @@ exports.ADAPTABLE_METAMODEL = {
9290
9632
  "uiLabel": "Id",
9291
9633
  "isOptional": true
9292
9634
  },
9635
+ {
9636
+ "name": "instrument",
9637
+ "kind": "REFERENCE",
9638
+ "description": "The `InstrumentContext` of the relevant Instrument",
9639
+ "uiLabel": "Instrument",
9640
+ "reference": "InstrumentContext"
9641
+ },
9293
9642
  {
9294
9643
  "name": "name",
9295
9644
  "kind": "string",
@@ -9300,11 +9649,21 @@ exports.ADAPTABLE_METAMODEL = {
9300
9649
  {
9301
9650
  "name": "type",
9302
9651
  "kind": "unknown",
9303
- "description": "Context type is always 'position'",
9652
+ "description": "Context type is always `position`",
9304
9653
  "uiLabel": "Type"
9305
9654
  }
9306
9655
  ]
9307
9656
  },
9657
+ "PositionIntent": {
9658
+ "name": "PositionIntent",
9659
+ "kind": "TypeAlias",
9660
+ "description": "FDC3 Intents available to a Position Column"
9661
+ },
9662
+ "PositionIntents": {
9663
+ "name": "PositionIntents",
9664
+ "kind": "TypeAlias",
9665
+ "description": "All available Position Intents"
9666
+ },
9308
9667
  "PredefinedConfig": {
9309
9668
  "name": "PredefinedConfig",
9310
9669
  "kind": "Interface",
@@ -9454,6 +9813,14 @@ exports.ADAPTABLE_METAMODEL = {
9454
9813
  "isOptional": true,
9455
9814
  "reference": "ShortcutState"
9456
9815
  },
9816
+ {
9817
+ "name": "StatusBar",
9818
+ "kind": "REFERENCE",
9819
+ "description": "Configures the Adaptable Status Bar",
9820
+ "uiLabel": "Status Bar",
9821
+ "isOptional": true,
9822
+ "reference": "unknown"
9823
+ },
9457
9824
  {
9458
9825
  "name": "Theme",
9459
9826
  "kind": "REFERENCE",
@@ -9602,6 +9969,12 @@ exports.ADAPTABLE_METAMODEL = {
9602
9969
  "description": "Clears the Current Query",
9603
9970
  "uiLabel": "Clear Current Query"
9604
9971
  },
9972
+ {
9973
+ "name": "expandCurrentQuery",
9974
+ "kind": "function",
9975
+ "description": "Opens current query editor",
9976
+ "uiLabel": "Expand Current Query"
9977
+ },
9605
9978
  {
9606
9979
  "name": "getAllNamedQuery",
9607
9980
  "kind": "function",
@@ -9817,6 +10190,20 @@ exports.ADAPTABLE_METAMODEL = {
9817
10190
  }
9818
10191
  ]
9819
10192
  },
10193
+ "RaiseFDC3IntentContext": {
10194
+ "name": "RaiseFDC3IntentContext",
10195
+ "kind": "Interface",
10196
+ "description": "Context passed into Raise FDC3 Intent functions (e.g. get label)",
10197
+ "properties": [
10198
+ {
10199
+ "name": "intent",
10200
+ "kind": "REFERENCE",
10201
+ "description": "FDC3 Intent that was raised",
10202
+ "uiLabel": "Intent",
10203
+ "reference": "FDC3Intent"
10204
+ }
10205
+ ]
10206
+ },
9820
10207
  "ReactFrameworkComponent": {
9821
10208
  "name": "ReactFrameworkComponent",
9822
10209
  "kind": "TypeAlias",
@@ -11562,7 +11949,7 @@ exports.ADAPTABLE_METAMODEL = {
11562
11949
  {
11563
11950
  "name": "ToolPanels",
11564
11951
  "kind": "unknown",
11565
- "description": "ToolPanels visible",
11952
+ "description": "Adaptable Tool Panels which are viaible",
11566
11953
  "uiLabel": "Tool Panels",
11567
11954
  "isOptional": true,
11568
11955
  "defaultValue": "ToolPanels for all available Modules (subject to Entitlement rules)"
@@ -11774,6 +12161,15 @@ exports.ADAPTABLE_METAMODEL = {
11774
12161
  "isOptional": true,
11775
12162
  "reference": "AdaptableStyle"
11776
12163
  },
12164
+ {
12165
+ "name": "showAdapTableVersion",
12166
+ "kind": "boolean",
12167
+ "description": "Displays the AdapTable version in Grid Info section of Settings Panel",
12168
+ "uiLabel": "Show Adap Table Version",
12169
+ "isOptional": true,
12170
+ "gridInfo": "item",
12171
+ "defaultValue": "true"
12172
+ },
11777
12173
  {
11778
12174
  "name": "showDocumentationLinks",
11779
12175
  "kind": "boolean",