@adaptabletools/adaptable 11.0.0-canary.4 → 11.0.0-canary.5

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 (147) hide show
  1. package/base.css +130 -67
  2. package/bundle.cjs.js +86 -86
  3. package/index.css +130 -67
  4. package/package.json +2 -2
  5. package/publishTimestamp.d.ts +1 -1
  6. package/publishTimestamp.js +1 -1
  7. package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +7 -5
  8. package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +1 -3
  9. package/src/AdaptableOptions/AdaptableOptions.d.ts +10 -1
  10. package/src/AdaptableOptions/AlertOptions.d.ts +82 -0
  11. package/src/AdaptableOptions/AlertOptions.js +2 -0
  12. package/src/AdaptableOptions/ContainerOptions.d.ts +1 -1
  13. package/src/AdaptableOptions/FilterOptions.d.ts +1 -1
  14. package/src/AdaptableOptions/NotificationsOptions.d.ts +1 -78
  15. package/src/AdaptableOptions/QueryLanguageOptions.d.ts +0 -4
  16. package/src/AdaptableOptions/StateOptions.d.ts +2 -1
  17. package/src/AdaptableOptions/TeamSharingOptions.d.ts +2 -2
  18. package/src/AdaptableOptions/ToolPanelOptions.d.ts +0 -2
  19. package/src/AdaptableOptions/UserInterfaceOptions.d.ts +2 -2
  20. package/src/Api/AdaptableApi.d.ts +1 -0
  21. package/src/Api/AlertApi.d.ts +2 -3
  22. package/src/Api/EventApi.d.ts +8 -3
  23. package/src/Api/Events/GridDataChanged.d.ts +4 -2
  24. package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +1 -1
  25. package/src/Api/FreeTextColumnApi.d.ts +0 -12
  26. package/src/Api/IPushPullApi.d.ts +1 -1
  27. package/src/Api/Implementation/AlertApiImpl.d.ts +1 -2
  28. package/src/Api/Implementation/AlertApiImpl.js +15 -9
  29. package/src/Api/Implementation/ApiBase.d.ts +2 -0
  30. package/src/Api/Implementation/ApiBase.js +3 -0
  31. package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +0 -5
  32. package/src/Api/Implementation/FreeTextColumnApiImpl.js +0 -9
  33. package/src/Api/Implementation/InternalApiImpl.js +1 -1
  34. package/src/Api/Implementation/LayoutApiImpl.d.ts +2 -0
  35. package/src/Api/Implementation/LayoutApiImpl.js +11 -0
  36. package/src/Api/Implementation/QueryApiImpl.js +4 -1
  37. package/src/Api/Implementation/QueryLanguageApiImpl.js +4 -5
  38. package/src/Api/LayoutApi.d.ts +7 -0
  39. package/src/Api/OpenFinApi.d.ts +5 -0
  40. package/src/Api/PluginsApi.d.ts +29 -0
  41. package/src/Api/UserInterfaceApi.d.ts +5 -2
  42. package/src/PredefinedConfig/AlertState.d.ts +2 -4
  43. package/src/PredefinedConfig/CalculatedColumnState.d.ts +0 -1
  44. package/src/PredefinedConfig/Common/FDC3Context.d.ts +4 -12
  45. package/src/PredefinedConfig/CustomSortState.d.ts +0 -1
  46. package/src/PredefinedConfig/FlashingCellState.d.ts +3 -1
  47. package/src/PredefinedConfig/FreeTextColumnState.d.ts +1 -1
  48. package/src/PredefinedConfig/LayoutState.d.ts +0 -2
  49. package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -2
  50. package/src/Redux/ActionsReducers/ApplicationRedux.js +9 -3
  51. package/src/Redux/ActionsReducers/FlashingCellRedux.js +4 -8
  52. package/src/Redux/ActionsReducers/GridRedux.js +3 -1
  53. package/src/Redux/ActionsReducers/PopupRedux.js +13 -3
  54. package/src/Redux/ActionsReducers/QuickSearchRedux.js +3 -1
  55. package/src/Redux/ActionsReducers/SystemRedux.js +3 -1
  56. package/src/Redux/ActionsReducers/ThemeRedux.js +3 -1
  57. package/src/Redux/Store/AdaptableStore.js +5 -4
  58. package/src/Strategy/AlertModule.js +4 -3
  59. package/src/Strategy/ConditionalStyleModule.js +4 -0
  60. package/src/Strategy/FlashingCellModule.js +2 -2
  61. package/src/Strategy/FreeTextColumnModule.d.ts +2 -2
  62. package/src/Strategy/FreeTextColumnModule.js +10 -0
  63. package/src/Strategy/LayoutModule.js +1 -6
  64. package/src/Strategy/ToolPanelModule.js +5 -3
  65. package/src/Strategy/Utilities/getFormatColumnSettingsViewItems.js +1 -1
  66. package/src/Strategy/Utilities/getRuleViewItems.d.ts +0 -1
  67. package/src/Strategy/Utilities/getRuleViewItems.js +0 -1
  68. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +6 -4
  69. package/src/Utilities/ExpressionFunctions/dateUtils.d.ts +1 -0
  70. package/src/Utilities/ExpressionFunctions/dateUtils.js +13 -0
  71. package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +13 -4
  72. package/src/Utilities/Helpers/AdaptableHelper.js +1 -0
  73. package/src/Utilities/Helpers/CalendarHelper.js +220 -55
  74. package/src/Utilities/Interface/MessagePopups.d.ts +6 -2
  75. package/src/Utilities/ObjectFactory.js +1 -0
  76. package/src/Utilities/Services/DataService.js +6 -1
  77. package/src/Utilities/Services/QueryLanguageService.js +16 -11
  78. package/src/Utilities/Services/ReportService.js +6 -2
  79. package/src/Utilities/Services/TeamSharingService.js +5 -3
  80. package/src/View/AdaptablePopover/index.js +6 -1
  81. package/src/View/AdaptableView.js +1 -1
  82. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +5 -1
  83. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationForm.js +5 -2
  84. package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/index.js +4 -1
  85. package/src/View/AdaptableWizardView/helper.js +3 -1
  86. package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +1 -1
  87. package/src/View/Alert/Wizard/AlertButtonsEditor.js +5 -1
  88. package/src/View/CellSummary/CellSummaryViewPanel.js +1 -2
  89. package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +5 -2
  90. package/src/View/Components/FilterForm/FilterForm.js +0 -2
  91. package/src/View/Components/FilterForm/QuickFilterForm.js +4 -1
  92. package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
  93. package/src/View/Components/Panels/PanelWithImage.d.ts +1 -1
  94. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +3 -1
  95. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.d.ts +1 -0
  96. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +25 -1
  97. package/src/View/Components/Popups/AdaptablePopup/TopBar.js +5 -4
  98. package/src/View/Components/Popups/AdaptablePopupConfirmation.js +3 -1
  99. package/src/View/Components/Popups/AdaptablePopupPrompt.d.ts +5 -12
  100. package/src/View/Components/Popups/AdaptablePopupPrompt.js +38 -37
  101. package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +4 -1
  102. package/src/View/Components/ScopeComponent.js +4 -1
  103. package/src/View/Components/ToolPanel/CustomToolPanelContent.js +5 -1
  104. package/src/View/Components/ToolPanel/ToolPanelPopup.js +3 -1
  105. package/src/View/Components/ToolPanel/ToolPanelWrapper.js +1 -1
  106. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.d.ts +8 -0
  107. package/src/View/ConditionalStyle/Wizard/ConditionalStyleSettingsWizardSettings.js +27 -0
  108. package/src/View/ConditionalStyle/Wizard/ConditionalStyleWizard.js +7 -0
  109. package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +3 -1
  110. package/src/View/Dashboard/CustomToolbarWrapper.js +5 -1
  111. package/src/View/Dashboard/Dashboard.js +1 -1
  112. package/src/View/Dashboard/DashboardPopup.js +3 -1
  113. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +2 -1
  114. package/src/View/Export/Wizard/ReportColumnTypeWizard.js +3 -1
  115. package/src/View/Export/Wizard/ReportRowTypeWizard.js +3 -1
  116. package/src/View/Filter/FilterViewPanel.d.ts +1 -4
  117. package/src/View/Filter/FilterViewPanel.js +1 -3
  118. package/src/View/FreeTextColumn/FreeTextColumnSummary.js +1 -2
  119. package/src/View/GridInfo/AdaptableOptionsComponent.js +4 -1
  120. package/src/View/Layout/Wizard/LayoutEditor/index.js +5 -1
  121. package/src/View/Layout/Wizard/LayoutEditorWizard.js +7 -1
  122. package/src/View/Query/ExpandedQueryPopup.js +9 -2
  123. package/src/View/Query/QueryViewPanel.js +3 -1
  124. package/src/View/QuickSearch/QuickSearchPopup.js +3 -3
  125. package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +12 -2
  126. package/src/View/UIHelper.js +4 -1
  127. package/src/View/Wizard/AdaptableWizard.js +12 -3
  128. package/src/View/Wizard/OnePageAdaptableWizard.js +5 -1
  129. package/src/agGrid/Adaptable.d.ts +2 -3
  130. package/src/agGrid/Adaptable.js +96 -54
  131. package/src/agGrid/editors/AdaptableDateEditor/index.js +1 -1
  132. package/src/agGrid/editors/AdaptableNumberEditor/index.js +1 -1
  133. package/src/components/ApplicationIcon.d.ts +1 -0
  134. package/src/components/ApplicationIcon.js +2 -2
  135. package/src/components/Dashboard/Dashboard.js +4 -1
  136. package/src/components/Dropdown/index.js +8 -1
  137. package/src/components/ExpressionEditor/EditorInputReactive.js +3 -1
  138. package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.js +4 -1
  139. package/src/components/ExpressionEditor/index.js +9 -2
  140. package/src/components/SizedContainer/index.js +7 -1
  141. package/src/components/WindowModal/WindowModal.js +4 -1
  142. package/src/metamodel/adaptable.metamodel.d.ts +55 -24
  143. package/src/metamodel/adaptable.metamodel.js +179 -98
  144. package/src/types.d.ts +2 -1
  145. package/themes/dark.css +4 -4
  146. package/version.d.ts +1 -1
  147. package/version.js +1 -1
@@ -296,13 +296,6 @@ exports.ADAPTABLE_METAMODEL = {
296
296
  "uiLabel": "Grid Api",
297
297
  "reference": "GridApi"
298
298
  },
299
- {
300
- "name": "internalApi",
301
- "kind": "REFERENCE",
302
- "description": "Api methods used *internally* within AdapTable.",
303
- "uiLabel": "Internal Api",
304
- "reference": "unknown"
305
- },
306
299
  {
307
300
  "name": "layoutApi",
308
301
  "kind": "REFERENCE",
@@ -931,6 +924,15 @@ exports.ADAPTABLE_METAMODEL = {
931
924
  "gridInfo": "item",
932
925
  "defaultValue": "`adaptableId` value"
933
926
  },
927
+ {
928
+ "name": "alertOptions",
929
+ "kind": "REFERENCE",
930
+ "description": "Options for managing Alerts in AdapTable",
931
+ "uiLabel": "Alert Options",
932
+ "isOptional": true,
933
+ "gridInfo": "container",
934
+ "reference": "AlertOptions"
935
+ },
934
936
  {
935
937
  "name": "autogeneratePrimaryKey",
936
938
  "kind": "boolean",
@@ -1061,6 +1063,13 @@ exports.ADAPTABLE_METAMODEL = {
1061
1063
  "gridInfo": "container",
1062
1064
  "reference": "MenuOptions"
1063
1065
  },
1066
+ {
1067
+ "name": "modules",
1068
+ "kind": "unknown",
1069
+ "description": "AG Grid Modules that should be provided - needs to be provided separately",
1070
+ "uiLabel": "Modules",
1071
+ "isOptional": true
1072
+ },
1064
1073
  {
1065
1074
  "name": "notificationsOptions",
1066
1075
  "kind": "REFERENCE",
@@ -1812,6 +1821,61 @@ exports.ADAPTABLE_METAMODEL = {
1812
1821
  "kind": "TypeAlias",
1813
1822
  "description": "Form to show in an Alert"
1814
1823
  },
1824
+ "AlertOptions": {
1825
+ "name": "AlertOptions",
1826
+ "kind": "Interface",
1827
+ "description": "Options related to Alerts in Adaptable.",
1828
+ "properties": [
1829
+ {
1830
+ "name": "actionHandlers",
1831
+ "kind": "unknown",
1832
+ "description": "onClick Handlers for Alert Buttons (defined in Alert State)",
1833
+ "uiLabel": "Action Handlers",
1834
+ "isOptional": true
1835
+ },
1836
+ {
1837
+ "name": "alertForms",
1838
+ "kind": "unknown",
1839
+ "description": "Full definitions of Alert Forms - the names of which are provided in Alert State",
1840
+ "uiLabel": "Alert Forms",
1841
+ "isOptional": true
1842
+ },
1843
+ {
1844
+ "name": "alertMessageText",
1845
+ "kind": "unknown",
1846
+ "description": "Function providing Message to display in Alert; if empty, AdapTable provides dynamically",
1847
+ "uiLabel": "Alert Message Text",
1848
+ "isOptional": true
1849
+ },
1850
+ {
1851
+ "name": "cellHighlightDuration",
1852
+ "kind": "number",
1853
+ "description": "How long (in ms) a cell will be highlighted",
1854
+ "uiLabel": "Cell Highlight Duration",
1855
+ "isOptional": true,
1856
+ "gridInfo": "item",
1857
+ "defaultValue": "3000"
1858
+ },
1859
+ {
1860
+ "name": "dataChangeDetectionPolicy",
1861
+ "kind": "unknown",
1862
+ "description": "Whether Alert rule is evaluated against the `rawValue` or `formattedValue` of the changed cell data",
1863
+ "uiLabel": "Data Change Detection Policy",
1864
+ "isOptional": true,
1865
+ "gridInfo": "item",
1866
+ "defaultValue": "'rawValue'"
1867
+ },
1868
+ {
1869
+ "name": "maxAlertsInStore",
1870
+ "kind": "number",
1871
+ "description": "How many alerts held in State at any one time; when limit is breached, oldest alert will be removed",
1872
+ "uiLabel": "Max Alerts In Store",
1873
+ "isOptional": true,
1874
+ "gridInfo": "item",
1875
+ "defaultValue": "20"
1876
+ }
1877
+ ]
1878
+ },
1815
1879
  "AlertProperties": {
1816
1880
  "name": "AlertProperties",
1817
1881
  "kind": "Interface",
@@ -1855,9 +1919,10 @@ exports.ADAPTABLE_METAMODEL = {
1855
1919
  {
1856
1920
  "name": "PreventEdit",
1857
1921
  "kind": "boolean",
1858
- "description": "Automatically prevent any cell edit which triggered the Alert (i.e. validation) false",
1922
+ "description": "Automatically prevent any cell edit which triggered the Alert (i.e. validation)",
1859
1923
  "uiLabel": "Prevent Edit",
1860
- "isOptional": true
1924
+ "isOptional": true,
1925
+ "defaultValue": "false"
1861
1926
  },
1862
1927
  {
1863
1928
  "name": "ShowInDiv",
@@ -1878,8 +1943,7 @@ exports.ADAPTABLE_METAMODEL = {
1878
1943
  "kind": "unknown",
1879
1944
  "description": "Alert Definitions - will trigger Alerts when rule is met",
1880
1945
  "uiLabel": "Alert Definitions",
1881
- "isOptional": true,
1882
- "defaultValue": "null"
1946
+ "isOptional": true
1883
1947
  }
1884
1948
  ]
1885
1949
  },
@@ -2215,8 +2279,7 @@ exports.ADAPTABLE_METAMODEL = {
2215
2279
  "kind": "unknown",
2216
2280
  "description": "Collection of Calculated Columns",
2217
2281
  "uiLabel": "Calculated Columns",
2218
- "isOptional": true,
2219
- "defaultValue": "empty"
2282
+ "isOptional": true
2220
2283
  }
2221
2284
  ]
2222
2285
  },
@@ -3264,7 +3327,7 @@ exports.ADAPTABLE_METAMODEL = {
3264
3327
  },
3265
3328
  {
3266
3329
  "name": "modalContainer",
3267
- "kind": "string",
3330
+ "kind": "unknown",
3268
3331
  "description": "Name of div where modals appear (if null, will be centre of page)",
3269
3332
  "uiLabel": "Modal Container",
3270
3333
  "isOptional": true,
@@ -3527,8 +3590,7 @@ exports.ADAPTABLE_METAMODEL = {
3527
3590
  "kind": "unknown",
3528
3591
  "description": "Collection of Custom Sort objects.",
3529
3592
  "uiLabel": "Custom Sorts",
3530
- "isOptional": true,
3531
- "defaultValue": "[]"
3593
+ "isOptional": true
3532
3594
  }
3533
3595
  ]
3534
3596
  },
@@ -5055,12 +5117,6 @@ exports.ADAPTABLE_METAMODEL = {
5055
5117
  "kind": "Interface",
5056
5118
  "description": "General-purpose context type, as defined by [FDC3](https://fdc3.finos.org/docs/1.0/context-intro). A context object is a well-understood datum that is streamable between FDC3 participants. As a result it has a field describing what type it is, and data indicating its identity. Use this as a base to derive your own with any custom properties or metadata.",
5057
5119
  "properties": [
5058
- {
5059
- "name": "(indexer)",
5060
- "kind": "indexType",
5061
- "description": "Custom properties and metadata. This can be extended in specific context object.",
5062
- "uiLabel": "(indexer)"
5063
- },
5064
5120
  {
5065
5121
  "name": "id",
5066
5122
  "kind": "unknown",
@@ -5417,7 +5473,7 @@ exports.ADAPTABLE_METAMODEL = {
5417
5473
  {
5418
5474
  "name": "useAgGridFilterFormStyle",
5419
5475
  "kind": "boolean",
5420
- "description": "Styles Adaptable Filter Form to match AG Grid's current styling",
5476
+ "description": "Styles Adaptable Filter Form to match AG Grid's styling (if using Balham theme)",
5421
5477
  "uiLabel": "Use Ag Grid Filter Form Style",
5422
5478
  "isOptional": true,
5423
5479
  "gridInfo": "item",
@@ -5433,9 +5489,10 @@ exports.ADAPTABLE_METAMODEL = {
5433
5489
  {
5434
5490
  "name": "suppressFilterSearchBar",
5435
5491
  "kind": "boolean",
5436
- "description": "Prevents AdapTable from filtering the list of values client-side; When true, values is called each time the search bar is changed false",
5492
+ "description": "Prevents AdapTable from filtering the list of values client-side; When true, values is called each time the search bar is changed",
5437
5493
  "uiLabel": "Suppress Filter Search Bar",
5438
- "isOptional": true
5494
+ "isOptional": true,
5495
+ "defaultValue": "false"
5439
5496
  }
5440
5497
  ]
5441
5498
  },
@@ -5730,8 +5787,7 @@ exports.ADAPTABLE_METAMODEL = {
5730
5787
  "kind": "unknown",
5731
5788
  "description": "Flashing Cell Definitions - will colour cells/rows when rule is met",
5732
5789
  "uiLabel": "Flashing Cell Definitions",
5733
- "isOptional": true,
5734
- "defaultValue": "null"
5790
+ "isOptional": true
5735
5791
  }
5736
5792
  ]
5737
5793
  },
@@ -6018,7 +6074,6 @@ exports.ADAPTABLE_METAMODEL = {
6018
6074
  "kind": "unknown",
6019
6075
  "description": "Whether Column is String, Number, Boolean or Date",
6020
6076
  "uiLabel": "Data Type",
6021
- "isOptional": true,
6022
6077
  "defaultValue": "'String'"
6023
6078
  },
6024
6079
  {
@@ -6089,12 +6144,6 @@ exports.ADAPTABLE_METAMODEL = {
6089
6144
  "description": "Checks if a User Edit was in a Free Text Column",
6090
6145
  "uiLabel": "Check Free Text Column For Data Change"
6091
6146
  },
6092
- {
6093
- "name": "createFreeTextColumn",
6094
- "kind": "function",
6095
- "description": "Creates new FreeTextColumn and adds it to Adaptable State",
6096
- "uiLabel": "Create Free Text Column"
6097
- },
6098
6147
  {
6099
6148
  "name": "deleteFreeTextColumn",
6100
6149
  "kind": "function",
@@ -7074,9 +7123,15 @@ exports.ADAPTABLE_METAMODEL = {
7074
7123
  {
7075
7124
  "name": "dataRows",
7076
7125
  "kind": "unknown",
7077
- "description": "Rows that have been added, updated, or deleted",
7126
+ "description": "Data rows that have been added, updated, or deleted",
7078
7127
  "uiLabel": "Data Rows"
7079
7128
  },
7129
+ {
7130
+ "name": "rowNodes",
7131
+ "kind": "unknown",
7132
+ "description": "AG Grid Row Nodes that were affected by the Change",
7133
+ "uiLabel": "Row Nodes"
7134
+ },
7080
7135
  {
7081
7136
  "name": "rowTrigger",
7082
7137
  "kind": "unknown",
@@ -7203,19 +7258,19 @@ exports.ADAPTABLE_METAMODEL = {
7203
7258
  {
7204
7259
  "name": "id",
7205
7260
  "kind": "unknown",
7206
- "description": "The instrument data. Can contain some or all of: * `ticker`: a ticker * `ISIN`: [ISIN](https://www.isin.org/isin/) * `CUSIP`: [CUSIP](https://www.cusip.com/cusip/index.htm) * `SEDOL`: [SEDOL](https://www.londonstockexchange.com/products-and-services/reference-data/sedol-master-file/sedol-master-file.htm) * `RIC`: [Reuters Instrument Code (RIC)](https://en.wikipedia.org/wiki/Reuters_Instrument_Code) * `BBG`: [Bloomberg Ticker](https://www.bloomberg.com/professional/product/market-data/) * `PERMID`: [PERMID](https://permid.org/) * `FIGI`: [FIGI](https://www.openfigi.com/about/figi)",
7261
+ "description": "The instrument data",
7207
7262
  "uiLabel": "Id"
7208
7263
  },
7209
7264
  {
7210
7265
  "name": "name",
7211
7266
  "kind": "string",
7212
- "description": "Free text name of the instrument.",
7267
+ "description": "Free text name of instrument",
7213
7268
  "uiLabel": "Name"
7214
7269
  },
7215
7270
  {
7216
7271
  "name": "type",
7217
7272
  "kind": "unknown",
7218
- "description": "The context type is always 'instrument'.",
7273
+ "description": "Context type is always 'instrument'",
7219
7274
  "uiLabel": "Type"
7220
7275
  }
7221
7276
  ]
@@ -7756,6 +7811,12 @@ exports.ADAPTABLE_METAMODEL = {
7756
7811
  "description": "Whether this Layout should be auto saved (based on Layout State and Layout Options)",
7757
7812
  "uiLabel": "Should Auto Save Layout"
7758
7813
  },
7814
+ {
7815
+ "name": "showChangeColumnCaption",
7816
+ "kind": "function",
7817
+ "description": "Opens change column caption popup",
7818
+ "uiLabel": "Show Change Column Caption"
7819
+ },
7759
7820
  {
7760
7821
  "name": "showLayoutPopup",
7761
7822
  "kind": "function",
@@ -7853,16 +7914,14 @@ exports.ADAPTABLE_METAMODEL = {
7853
7914
  "kind": "string",
7854
7915
  "description": "Layout which will be loaded when AdapTable starts - must match `Name` property in Layout",
7855
7916
  "uiLabel": "Current Layout",
7856
- "isOptional": true,
7857
- "defaultValue": "''"
7917
+ "isOptional": true
7858
7918
  },
7859
7919
  {
7860
7920
  "name": "Layouts",
7861
7921
  "kind": "unknown",
7862
7922
  "description": "Collection of Layout objects - listed in Layout toolbar and Tool Panel",
7863
7923
  "uiLabel": "Layouts",
7864
- "isOptional": true,
7865
- "defaultValue": "null"
7924
+ "isOptional": true
7866
7925
  }
7867
7926
  ]
7868
7927
  },
@@ -8005,38 +8064,8 @@ exports.ADAPTABLE_METAMODEL = {
8005
8064
  "NotificationsOptions": {
8006
8065
  "name": "NotificationsOptions",
8007
8066
  "kind": "Interface",
8008
- "description": "Options related to Alerts, System Status Messages and Notifications in Adaptable.",
8067
+ "description": "Options related to System Status Messages and Notifications in Adaptable.",
8009
8068
  "properties": [
8010
- {
8011
- "name": "actionHandlers",
8012
- "kind": "unknown",
8013
- "description": "onClick Handlers for Alert Buttons (defined in Alert State)",
8014
- "uiLabel": "Action Handlers",
8015
- "isOptional": true
8016
- },
8017
- {
8018
- "name": "alertForms",
8019
- "kind": "unknown",
8020
- "description": "Full definitions of Alert Forms - the names of which are provided in Alert State",
8021
- "uiLabel": "Alert Forms",
8022
- "isOptional": true
8023
- },
8024
- {
8025
- "name": "alertMessageText",
8026
- "kind": "unknown",
8027
- "description": "Function providing Message to display in Alert; if empty, AdapTable provides dynamically",
8028
- "uiLabel": "Alert Message Text",
8029
- "isOptional": true
8030
- },
8031
- {
8032
- "name": "cellHighlightDuration",
8033
- "kind": "number",
8034
- "description": "How long (in ms) a cell will be highlighted",
8035
- "uiLabel": "Cell Highlight Duration",
8036
- "isOptional": true,
8037
- "gridInfo": "item",
8038
- "defaultValue": "3000"
8039
- },
8040
8069
  {
8041
8070
  "name": "closeWhenClicked",
8042
8071
  "kind": "boolean",
@@ -8046,15 +8075,6 @@ exports.ADAPTABLE_METAMODEL = {
8046
8075
  "gridInfo": "item",
8047
8076
  "defaultValue": "false"
8048
8077
  },
8049
- {
8050
- "name": "dataChangeDetectionPolicy",
8051
- "kind": "unknown",
8052
- "description": "Whether Alert rule is evaluated against the `rawValue` or `formattedValue` of the changed cell data",
8053
- "uiLabel": "Data Change Detection Policy",
8054
- "isOptional": true,
8055
- "gridInfo": "item",
8056
- "defaultValue": "'rawValue'"
8057
- },
8058
8078
  {
8059
8079
  "name": "duration",
8060
8080
  "kind": "unknown",
@@ -8073,15 +8093,6 @@ exports.ADAPTABLE_METAMODEL = {
8073
8093
  "gridInfo": "item",
8074
8094
  "defaultValue": "false"
8075
8095
  },
8076
- {
8077
- "name": "maxAlertsInStore",
8078
- "kind": "number",
8079
- "description": "How many alerts held in State at any one time; when limit is breached, oldest alert will be removed",
8080
- "uiLabel": "Max Alerts In Store",
8081
- "isOptional": true,
8082
- "gridInfo": "item",
8083
- "defaultValue": "20"
8084
- },
8085
8096
  {
8086
8097
  "name": "maxNotifications",
8087
8098
  "kind": "number",
@@ -8237,6 +8248,12 @@ exports.ADAPTABLE_METAMODEL = {
8237
8248
  "description": "Clears any objects in internal OpenFin state created by AdapTable",
8238
8249
  "uiLabel": "Clear Open Fin Internal State"
8239
8250
  },
8251
+ {
8252
+ "name": "getAlertOptions",
8253
+ "kind": "function",
8254
+ "description": "Gets the Alert section from Adaptable Options",
8255
+ "uiLabel": "Get Alert Options"
8256
+ },
8240
8257
  {
8241
8258
  "name": "getCurrentLiveOpenFinReport",
8242
8259
  "kind": "function",
@@ -8433,7 +8450,57 @@ exports.ADAPTABLE_METAMODEL = {
8433
8450
  "PluginsApi": {
8434
8451
  "name": "PluginsApi",
8435
8452
  "kind": "Interface",
8436
- "description": "API methods dealing with AdapTable plugins"
8453
+ "description": "API methods dealing with AdapTable plugins",
8454
+ "properties": [
8455
+ {
8456
+ "name": "getFinancePluginApi",
8457
+ "kind": "function",
8458
+ "description": "Returns Finance API class in Adaptable API",
8459
+ "uiLabel": "Get Finance Plugin Api"
8460
+ },
8461
+ {
8462
+ "name": "getGlue42PluginApi",
8463
+ "kind": "function",
8464
+ "description": "Returns Glue42 API class in Adaptable API",
8465
+ "uiLabel": "Get Glue42Plugin Api"
8466
+ },
8467
+ {
8468
+ "name": "getipushpullPluginApi",
8469
+ "kind": "function",
8470
+ "description": "Returns ipushpull API class in Adaptable API",
8471
+ "uiLabel": "Getipushpull Plugin Api"
8472
+ },
8473
+ {
8474
+ "name": "getOpenFinPluginApi",
8475
+ "kind": "function",
8476
+ "description": "Returns OpenFin API class in Adaptable API",
8477
+ "uiLabel": "Get Open Fin Plugin Api"
8478
+ },
8479
+ {
8480
+ "name": "getPluginsState",
8481
+ "kind": "function",
8482
+ "description": "Retrieves the Plugin State (internal only)",
8483
+ "uiLabel": "Get Plugins State"
8484
+ },
8485
+ {
8486
+ "name": "getPluginState",
8487
+ "kind": "function",
8488
+ "description": "Gets the State for a given Plugin",
8489
+ "uiLabel": "Get Plugin State"
8490
+ },
8491
+ {
8492
+ "name": "registerPlugin",
8493
+ "kind": "function",
8494
+ "description": "Registers a Plugin (internal method)",
8495
+ "uiLabel": "Register Plugin"
8496
+ },
8497
+ {
8498
+ "name": "setPluginState",
8499
+ "kind": "function",
8500
+ "description": "Sets the initial state for a given plugin (internal method)",
8501
+ "uiLabel": "Set Plugin State"
8502
+ }
8503
+ ]
8437
8504
  },
8438
8505
  "PlusMinusApi": {
8439
8506
  "name": "PlusMinusApi",
@@ -8564,7 +8631,7 @@ exports.ADAPTABLE_METAMODEL = {
8564
8631
  {
8565
8632
  "name": "Alert",
8566
8633
  "kind": "REFERENCE",
8567
- "description": "Supplies a collection of *Alert Definition* objects which will fire when their definition is triggered, and where Alerts are displayed",
8634
+ "description": "Collection of `AlertDefinitions` which will fire Alerts when the rule is met",
8568
8635
  "uiLabel": "Alert",
8569
8636
  "isOptional": true,
8570
8637
  "reference": "AlertState"
@@ -8633,6 +8700,14 @@ exports.ADAPTABLE_METAMODEL = {
8633
8700
  "isOptional": true,
8634
8701
  "reference": "FilterState"
8635
8702
  },
8703
+ {
8704
+ "name": "FlashingCell",
8705
+ "kind": "REFERENCE",
8706
+ "description": "* Objects which define which cells flash in response to data changes",
8707
+ "uiLabel": "Flashing Cell",
8708
+ "isOptional": true,
8709
+ "reference": "FlashingCellState"
8710
+ },
8636
8711
  {
8637
8712
  "name": "FormatColumn",
8638
8713
  "kind": "REFERENCE",
@@ -10328,7 +10403,7 @@ exports.ADAPTABLE_METAMODEL = {
10328
10403
  "SystemStatusMessageDisplayedInfo": {
10329
10404
  "name": "SystemStatusMessageDisplayedInfo",
10330
10405
  "kind": "Interface",
10331
- "description": "Object returned by the SystemStatusMessageDisplayed' event",
10406
+ "description": "Object returned by the `SystemStatusMessageDisplayed` event",
10332
10407
  "properties": [
10333
10408
  {
10334
10409
  "name": "systemStatusMessageInfo",
@@ -10452,14 +10527,14 @@ exports.ADAPTABLE_METAMODEL = {
10452
10527
  {
10453
10528
  "name": "getSharedEntities",
10454
10529
  "kind": "unknown",
10455
- "description": "Function which retrieves available Shared Entities that user can download and merge automatically with Adaptable State",
10530
+ "description": "Async function which retrieves available Shared Entities that user can download and merge automatically with Adaptable State",
10456
10531
  "uiLabel": "Get Shared Entities",
10457
10532
  "defaultValue": "null"
10458
10533
  },
10459
10534
  {
10460
10535
  "name": "setSharedEntities",
10461
10536
  "kind": "unknown",
10462
- "description": "Function which uploads Shared Entities so they can be downloaded by other members of the team",
10537
+ "description": "Async function which uploads Shared Entities so they can be downloaded by other members of the team",
10463
10538
  "uiLabel": "Set Shared Entities",
10464
10539
  "defaultValue": "null"
10465
10540
  },
@@ -10851,6 +10926,12 @@ exports.ADAPTABLE_METAMODEL = {
10851
10926
  "description": "Retrieves `permittedValues` property from User Interface Options",
10852
10927
  "uiLabel": "Get All Permitted Values Items"
10853
10928
  },
10929
+ {
10930
+ "name": "getBulkUpdatePermittedValuesForColumn",
10931
+ "kind": "function",
10932
+ "description": "Retrieves Permitted values for Bulk Update Module",
10933
+ "uiLabel": "Get Bulk Update Permitted Values For Column"
10934
+ },
10854
10935
  {
10855
10936
  "name": "getColorPalette",
10856
10937
  "kind": "function",
@@ -10860,7 +10941,7 @@ exports.ADAPTABLE_METAMODEL = {
10860
10941
  {
10861
10942
  "name": "getCustomSortPermittedValuesForColumn",
10862
10943
  "kind": "function",
10863
- "description": "Retrieves Permitted values for Custom sort.",
10944
+ "description": "Retrieves Permitted values for Custom Sort Module",
10864
10945
  "uiLabel": "Get Custom Sort Permitted Values For Column"
10865
10946
  },
10866
10947
  {
@@ -10884,7 +10965,7 @@ exports.ADAPTABLE_METAMODEL = {
10884
10965
  {
10885
10966
  "name": "getFilterPermittedValuesForColumn",
10886
10967
  "kind": "function",
10887
- "description": "Retrieves Permitted values for filtering by column values in Floating Filter and dropdown Filter.",
10968
+ "description": "Retrieves Permitted values for filtering by column values in Floating Filter and Quick Filter Bar",
10888
10969
  "uiLabel": "Get Filter Permitted Values For Column"
10889
10970
  },
10890
10971
  {
package/src/types.d.ts CHANGED
@@ -4,7 +4,8 @@ export type { AdaptableOptions } from './AdaptableOptions/AdaptableOptions';
4
4
  export { AdaptablePlugin } from './AdaptableOptions/AdaptablePlugin';
5
5
  export type { ContainerOptions } from './AdaptableOptions/ContainerOptions';
6
6
  export type { FlashingCellOptions } from './AdaptableOptions/FlashingCellOptions';
7
- export type { ActionHandler, AlertForm, AlertButtonContext, NotificationsOptions, } from './AdaptableOptions/NotificationsOptions';
7
+ export type { NotificationsOptions } from './AdaptableOptions/NotificationsOptions';
8
+ export type { AlertOptions, ActionHandler, AlertForm, AlertButtonContext, } from './AdaptableOptions/AlertOptions';
8
9
  export type { DashboardOptions, CustomToolbar, DashboardButtonContext, CustomToolbarButtonContext, } from './AdaptableOptions/DashboardOptions';
9
10
  export type { EditOptions, ValidationResult } from './AdaptableOptions/EditOptions';
10
11
  export type { ExportOptions, SystemExportDestination, SystemExportDestinations, CustomDestination, CustomReport, DataFormatType, ExportButtonContext, } from './AdaptableOptions/ExportOptions';
package/themes/dark.css CHANGED
@@ -3,14 +3,14 @@ html.ab--theme-dark {
3
3
  --ab-theme-loaded: dark;
4
4
  --ab-cmp-input--disabled__background: #232323;
5
5
  --ab-color-defaultbackground: #3e444c;
6
- --ab-color-text-on-defaultbackground: #E2E2E2;
6
+ --ab-color-text-on-defaultbackground: #e2e2e2;
7
7
  --ab-color-primary: #262d2f;
8
8
  --ab-color-primarylight: #2d3537;
9
9
  --ab-color-primarydark: #1c2021;
10
- --ab-color-text-on-primary: #E2E2E2 ;
10
+ --ab-color-text-on-primary: #e2e2e2;
11
11
  --ab-dashboard__border: #555;
12
12
  --ab-cmp-dropdownbutton-list-separator__border: 1px solid #555;
13
13
  --ab-gridheader--filtered__background: var(--ab-color-defaultbackground); }
14
- html.ab--theme-dark input[type="number"].ab-Input::-webkit-outer-spin-button,
15
- html.ab--theme-dark input[type="number"].ab-Input::-webkit-inner-spin-button {
14
+ html.ab--theme-dark input[type='number'].ab-Input::-webkit-outer-spin-button,
15
+ html.ab--theme-dark input[type='number'].ab-Input::-webkit-inner-spin-button {
16
16
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18" height="20" viewBox="4 0 18 18" version="1.1"><path fill="%23f7f7f7" d="M7 10l5 5 5-5z" transform="translate(0, 2)"/><path fill="%23f7f7f7" d="M7 14l5-5 5 5z" transform="translate(0, -6)"/></svg>') no-repeat center center; }
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "11.0.0-canary.4";
1
+ declare const _default: "11.0.0-canary.5";
2
2
  export default _default;
package/version.js CHANGED
@@ -1,3 +1,3 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.default = '11.0.0-canary.4'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version
3
+ exports.default = '11.0.0-canary.5'; // PLEASE DONT UPDATE THIS!!! - will be updated at build time with the correct version