@adaptabletools/adaptable 11.1.6 → 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 (184) 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 +58 -17
  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/GridApiImpl.js +0 -4
  22. package/src/Api/Implementation/InternalApiImpl.d.ts +2 -1
  23. package/src/Api/Implementation/InternalApiImpl.js +29 -7
  24. package/src/Api/Implementation/QueryApiImpl.d.ts +1 -0
  25. package/src/Api/Implementation/QueryApiImpl.js +12 -0
  26. package/src/Api/Implementation/StatusBarApiImpl.d.ts +8 -0
  27. package/src/Api/Implementation/StatusBarApiImpl.js +17 -0
  28. package/src/Api/InternalApi.d.ts +2 -1
  29. package/src/Api/QueryApi.d.ts +6 -0
  30. package/src/Api/StatusBarApi.d.ts +10 -0
  31. package/src/Api/StatusBarApi.js +2 -0
  32. package/src/PredefinedConfig/AdaptableState.d.ts +2 -0
  33. package/src/PredefinedConfig/Common/FDC3Context.d.ts +61 -29
  34. package/src/PredefinedConfig/Common/Types.d.ts +4 -2
  35. package/src/PredefinedConfig/Common/Types.js +32 -1
  36. package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
  37. package/src/PredefinedConfig/GridState.d.ts +1 -1
  38. package/src/PredefinedConfig/PredefinedConfig.d.ts +5 -0
  39. package/src/PredefinedConfig/StatusBarState.d.ts +27 -0
  40. package/src/PredefinedConfig/StatusBarState.js +7 -0
  41. package/src/PredefinedConfig/ToolPanelState.d.ts +1 -1
  42. package/src/Redux/ActionsReducers/GridRedux.d.ts +2 -2
  43. package/src/Redux/ActionsReducers/GridRedux.js +4 -4
  44. package/src/Redux/ActionsReducers/StatusBarRedux.d.ts +22 -0
  45. package/src/Redux/ActionsReducers/StatusBarRedux.js +31 -0
  46. package/src/Redux/ActionsReducers/SystemRedux.d.ts +8 -3
  47. package/src/Redux/ActionsReducers/SystemRedux.js +22 -5
  48. package/src/Redux/Store/AdaptableReduxMerger.js +2 -2
  49. package/src/Redux/Store/AdaptableStore.js +24 -10
  50. package/src/Strategy/AlertModule.d.ts +3 -0
  51. package/src/Strategy/AlertModule.js +6 -0
  52. package/src/Strategy/CellSummaryModule.d.ts +6 -0
  53. package/src/Strategy/CellSummaryModule.js +14 -0
  54. package/src/Strategy/DataChangeHistoryModule.d.ts +7 -0
  55. package/src/Strategy/DataChangeHistoryModule.js +11 -0
  56. package/src/Strategy/ExportModule.d.ts +1 -0
  57. package/src/Strategy/ExportModule.js +1 -0
  58. package/src/Strategy/FilterModule.d.ts +6 -0
  59. package/src/Strategy/FilterModule.js +21 -0
  60. package/src/Strategy/Interface/IModule.d.ts +21 -10
  61. package/src/Strategy/LayoutModule.d.ts +7 -0
  62. package/src/Strategy/LayoutModule.js +13 -0
  63. package/src/Strategy/QueryModule.d.ts +8 -0
  64. package/src/Strategy/QueryModule.js +18 -0
  65. package/src/Strategy/QuickSearchModule.d.ts +6 -0
  66. package/src/Strategy/QuickSearchModule.js +10 -0
  67. package/src/Strategy/StatusBarModule.d.ts +8 -0
  68. package/src/Strategy/StatusBarModule.js +39 -0
  69. package/src/Strategy/SystemStatusModule.d.ts +6 -0
  70. package/src/Strategy/SystemStatusModule.js +10 -0
  71. package/src/Strategy/ThemeModule.d.ts +7 -0
  72. package/src/Strategy/ThemeModule.js +12 -0
  73. package/src/Strategy/Utilities/getAlertBehaviourViewItems.js +1 -1
  74. package/src/Utilities/Constants/ModuleConstants.d.ts +1 -0
  75. package/src/Utilities/Constants/ModuleConstants.js +2 -1
  76. package/src/Utilities/Defaults/DefaultAdaptableOptions.js +4 -1
  77. package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -0
  78. package/src/Utilities/Services/ModuleService.js +6 -6
  79. package/src/View/AdaptablePopover/index.d.ts +1 -0
  80. package/src/View/AdaptablePopover/index.js +5 -2
  81. package/src/View/AdaptableViewFactory.js +2 -2
  82. package/src/View/Alert/AlertStatusSubPanel.d.ts +2 -0
  83. package/src/View/Alert/AlertStatusSubPanel.js +56 -0
  84. package/src/View/Alert/AlertViewPanel.js +6 -7
  85. package/src/View/Alert/AlertsPanel.d.ts +1 -1
  86. package/src/View/Alert/AlertsPanel.js +2 -1
  87. package/src/View/Alert/Utilities/getAlertButtonStyle.d.ts +5 -0
  88. package/src/View/Alert/Utilities/getAlertButtonStyle.js +15 -0
  89. package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +18 -7
  90. package/src/View/Alert/Wizard/AlertButtonsEditor.js +1 -8
  91. package/src/View/Alert/Wizard/AlertWizard.js +3 -2
  92. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.d.ts +2 -0
  93. package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +15 -0
  94. package/src/View/CellSummary/CellSummaryStatusPanel.d.ts +2 -0
  95. package/src/View/CellSummary/CellSummaryStatusPanel.js +36 -0
  96. package/src/View/CellSummary/CellSummaryViewPanel.js +2 -20
  97. package/src/View/ColorPicker.d.ts +1 -1
  98. package/src/View/Components/AdaptableDateInput/index.d.ts +1 -1
  99. package/src/View/Components/AdaptableInput/index.d.ts +1 -1
  100. package/src/View/Components/Buttons/ButtonDelete.d.ts +1 -1
  101. package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
  102. package/src/View/Components/Forms/AdaptableFormControlTextClear.js +1 -1
  103. package/src/View/Components/Panels/PanelWithImage.d.ts +2 -2
  104. package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +6 -5
  105. package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +1 -1
  106. package/src/View/Components/RangesComponent.js +6 -2
  107. package/src/View/Components/StyleComponent.js +18 -6
  108. package/src/View/Components/ToolPanel/AdaptableToolPanel.js +1 -1
  109. package/src/View/Components/ToolPanel/ToolPanelPopup.js +3 -3
  110. package/src/View/Dashboard/DashboardPopup.js +2 -2
  111. package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +5 -13
  112. package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.d.ts +2 -0
  113. package/src/View/DataChangeHistory/DataChangeHistoryStatusBarContent.js +9 -0
  114. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.d.ts +4 -16
  115. package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +32 -40
  116. package/src/View/Filter/ActiveFiltersPanel.d.ts +0 -2
  117. package/src/View/Filter/FilterStatusBarSubPanelPopover.d.ts +2 -0
  118. package/src/View/Filter/FilterStatusBarSubPanelPopover.js +18 -0
  119. package/src/View/Filter/FilterViewPanel.js +1 -1
  120. package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +1 -1
  121. package/src/View/GridInfo/GridInfoPopup.js +4 -1
  122. package/src/View/Layout/EditCurrentLayoutButton.d.ts +2 -0
  123. package/src/View/Layout/EditCurrentLayoutButton.js +14 -0
  124. package/src/View/Layout/LayoutPopup.d.ts +1 -1
  125. package/src/View/Layout/LayoutPopup.js +3 -3
  126. package/src/View/Layout/LayoutRadioSelector.d.ts +1 -0
  127. package/src/View/Layout/LayoutRadioSelector.js +2 -2
  128. package/src/View/Layout/LayoutStatusBarSubPanelPopover.d.ts +2 -0
  129. package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +29 -0
  130. package/src/View/Layout/Wizard/LayoutEditor/ColumnLabels.js +2 -1
  131. package/src/View/Layout/Wizard/LayoutEditorWizard.js +2 -1
  132. package/src/View/Query/EditCurrentQueryButton.d.ts +2 -0
  133. package/src/View/Query/EditCurrentQueryButton.js +15 -0
  134. package/src/View/Query/QueryViewPanel.d.ts +0 -1
  135. package/src/View/Query/QueryViewPanel.js +2 -11
  136. package/src/View/QuickSearch/QuickSearchPopup.js +1 -1
  137. package/src/View/QuickSearch/QuickSearchStatusBarContent.d.ts +2 -0
  138. package/src/View/QuickSearch/QuickSearchStatusBarContent.js +16 -0
  139. package/src/View/StatusBar/AdaptableStatusBar.d.ts +3 -0
  140. package/src/View/StatusBar/AdaptableStatusBar.js +44 -0
  141. package/src/View/StatusBar/StatusBarPanel.d.ts +42 -0
  142. package/src/View/StatusBar/StatusBarPanel.js +45 -0
  143. package/src/View/StatusBar/StatusBarPopup.d.ts +3 -0
  144. package/src/View/StatusBar/StatusBarPopup.js +43 -0
  145. package/src/View/SystemStatus/SystemStatusStatusBarContent.d.ts +2 -0
  146. package/src/View/SystemStatus/SystemStatusStatusBarContent.js +15 -0
  147. package/src/View/SystemStatus/SystemStatusViewPanel.js +3 -7
  148. package/src/View/SystemStatus/Utilities/getStatusItemStyle.d.ts +5 -0
  149. package/src/View/SystemStatus/Utilities/getStatusItemStyle.js +16 -0
  150. package/src/View/Theme/ThemeStatusPanelPopover.d.ts +2 -0
  151. package/src/View/Theme/ThemeStatusPanelPopover.js +36 -0
  152. package/src/agGrid/Adaptable.d.ts +2 -0
  153. package/src/agGrid/Adaptable.js +27 -0
  154. package/src/agGrid/agGridHelper.js +2 -0
  155. package/src/agGrid/createAgStatusPanelComponent.d.ts +21 -0
  156. package/src/agGrid/createAgStatusPanelComponent.js +31 -0
  157. package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +1 -1
  158. package/src/components/Dashboard/DashboardManager.js +9 -162
  159. package/src/components/Datepicker/index.d.ts +1 -1
  160. package/src/components/DragAndDropContext/DragAndDropContext.d.ts +7 -0
  161. package/src/components/DragAndDropContext/DragAndDropContext.js +14 -0
  162. package/src/components/DragAndDropContext/ModuleManager.d.ts +17 -0
  163. package/src/components/DragAndDropContext/ModuleManager.js +81 -0
  164. package/src/components/DragAndDropContext/TabList.d.ts +29 -0
  165. package/src/components/DragAndDropContext/TabList.js +72 -0
  166. package/src/components/DragAndDropContext/UnusedPanel.d.ts +6 -0
  167. package/src/components/DragAndDropContext/UnusedPanel.js +46 -0
  168. package/src/components/DragAndDropContext/types.d.ts +8 -0
  169. package/src/components/DragAndDropContext/types.js +2 -0
  170. package/src/components/Input/index.d.ts +1 -1
  171. package/src/components/List/ListGroupItem/index.d.ts +1 -1
  172. package/src/components/PopupWithFooter.d.ts +1 -1
  173. package/src/components/SimpleButton/index.js +3 -0
  174. package/src/components/Textarea/index.d.ts +1 -1
  175. package/src/components/icons/DefaultIcon.d.ts +2 -1
  176. package/src/components/icons/DefaultIcon.js +2 -2
  177. package/src/components/icons/index.js +2 -0
  178. package/src/components/icons/statusbar.d.ts +3 -0
  179. package/src/components/icons/statusbar.js +8 -0
  180. package/src/metamodel/adaptable.metamodel.d.ts +231 -0
  181. package/src/metamodel/adaptable.metamodel.js +433 -37
  182. package/src/types.d.ts +4 -3
  183. package/version.d.ts +1 -1
  184. package/version.js +1 -1
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StatusBarApiImpl = void 0;
4
+ const StatusBarRedux_1 = require("../../Redux/ActionsReducers/StatusBarRedux");
5
+ const ApiBase_1 = require("./ApiBase");
6
+ class StatusBarApiImpl extends ApiBase_1.ApiBase {
7
+ getStatusPanels() {
8
+ return StatusBarRedux_1.getStatusPanelsSelector(this.getAdaptableState());
9
+ }
10
+ getAgGridStatusPanels() {
11
+ return this.adaptable.getAgGridStatusPanels();
12
+ }
13
+ setStatusPanels(statusPanels) {
14
+ this.getAdaptableApi().internalApi.dispatchReduxAction(StatusBarRedux_1.StatusBarSetPanels(statusPanels));
15
+ }
16
+ }
17
+ exports.StatusBarApiImpl = StatusBarApiImpl;
@@ -65,7 +65,7 @@ export interface InternalApi {
65
65
  hidePopupScreen(): void;
66
66
  hidePopupAlert(): void;
67
67
  setColumns(columns: AdaptableColumn[]): void;
68
- setModuleDropdownMenuItems(menuItems: AdaptableMenuItem[]): void;
68
+ setSettingPanelModuleMenuItems(menuItems: AdaptableMenuItem[]): void;
69
69
  setModuleButtonMenuItems(menuItems: AdaptableMenuItem[]): void;
70
70
  setSelectedCells(selectedCellInfo: SelectedCellInfo): void;
71
71
  setSelectedRows(selectedRowInfo: SelectedRowInfo): void;
@@ -123,4 +123,5 @@ export interface InternalApi {
123
123
  isTextComparisonCaseSensitive(): boolean;
124
124
  executeWithProgressIndicator(label: string, executeFn: () => unknown): void;
125
125
  hideProgressIndicator(): void;
126
+ getCorrectEnglishVariant(wordToSpell: string): string;
126
127
  }
@@ -56,4 +56,10 @@ export interface QueryApi {
56
56
  * Returns the Current Query
57
57
  */
58
58
  getCurrentQuery(): string | undefined;
59
+ /**
60
+ * Opens current query editor
61
+ *
62
+ * @param query - query to edit
63
+ */
64
+ expandCurrentQuery(query?: string): void;
59
65
  }
@@ -0,0 +1,10 @@
1
+ import { GridOptions } from '@ag-grid-community/all-modules';
2
+ import { AdaptableStatusBar } from '../PredefinedConfig/StatusBarState';
3
+ export interface StatusBarApi {
4
+ /**
5
+ * Retrieves the current AG Grid Status Bar Panels
6
+ */
7
+ getAgGridStatusPanels: () => GridOptions['statusBar']['statusPanels'];
8
+ getStatusPanels: () => AdaptableStatusBar[];
9
+ setStatusPanels: (statusPanels: AdaptableStatusBar[]) => void;
10
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -23,6 +23,7 @@ import { ApplicationState } from './ApplicationState';
23
23
  import { ToolPanelState } from './ToolPanelState';
24
24
  import { QueryState } from './QueryState';
25
25
  import { FlashingCellState } from './FlashingCellState';
26
+ import { StatusBarState } from './StatusBarState';
26
27
  /**
27
28
  * The main state object that Adaptable persists
28
29
  */
@@ -52,6 +53,7 @@ export interface AdaptableState {
52
53
  QuickSearch: QuickSearchState;
53
54
  Schedule: ScheduleState;
54
55
  Shortcut: ShortcutState;
56
+ StatusBar: StatusBarState;
55
57
  TeamSharing: TeamSharingState;
56
58
  Theme: ThemeState;
57
59
  ToolPanel: ToolPanelState;
@@ -8,17 +8,15 @@ import { FDC3Intent } from '../../types';
8
8
  */
9
9
  export interface FDC3Context {
10
10
  /**
11
- * The type of the context that uniquely identifies it, e.g. "instrument".
12
- * This is used to refer to the accepted context(s) when declaring intents. See [[AppDirIntent]].
11
+ * Type of context that uniquely identifies it, e.g. "instrument"; used to refer to the accepted context(s) when declaring intents
13
12
  */
14
- type: string;
13
+ type: ContextType;
15
14
  /**
16
- * The name of the context data (optional). This is a text string that describes the data being sent.
17
- * Implementors of context may choose to make the name mandatory.
15
+ * Name of the context data (optional) - a text string that describes the data being sent
18
16
  */
19
17
  name?: string;
20
18
  /**
21
- * An optional map of any equivalent identifiers for the context type, e.g. ISIN, CUSIP, etc. for an instrument.
19
+ * Optional map of any equivalent identifiers for the context type, e.g. ISIN, CUSIP, etc. for Instrument
22
20
  */
23
21
  id?: {
24
22
  [key: string]: string | undefined;
@@ -30,19 +28,19 @@ export interface FDC3Context {
30
28
  [key: string]: unknown;
31
29
  }
32
30
  /**
33
- * Built-in context to define a financial Instrument
31
+ * FDC3 Context to define a financial Instrument
34
32
  */
35
33
  export interface InstrumentContext extends FDC3Context {
36
34
  /**
37
- * Context type is always 'instrument'
35
+ * Context type is always `instrument`
38
36
  */
39
37
  type: 'instrument';
40
38
  /**
41
- * Free text name of instrument
39
+ * Free text name of the Instrument
42
40
  */
43
41
  name?: string;
44
42
  /**
45
- * The instrument data
43
+ * Instrument data: ticker, ISIN, CUSIP, SEDOL, RIC, BBG, PERMID, FIGI
46
44
  */
47
45
  id?: {
48
46
  [key: string]: string;
@@ -57,13 +55,16 @@ export interface InstrumentContext extends FDC3Context {
57
55
  FIGI?: string;
58
56
  };
59
57
  }
58
+ /**
59
+ * FDC3 Context to define an array of financial Instruments
60
+ */
60
61
  export interface InstrumentListContext extends FDC3Context {
61
62
  /**
62
- * Context type is always 'instrumentList'
63
+ * Context type is always `instrumentList`
63
64
  */
64
65
  type: 'instrumentList';
65
66
  /**
66
- * Free text name of instrument list
67
+ * Free text name of list of Instruments (not set by AdapTable)
67
68
  */
68
69
  name?: string;
69
70
  /**
@@ -76,13 +77,16 @@ export interface InstrumentListContext extends FDC3Context {
76
77
  instruments?: InstrumentContext[];
77
78
  }
78
79
  /**
79
- * Built-in context to define a financial position
80
+ * FDC3 Context to define a financial Position (requires an Instrument)
80
81
  */
81
82
  export interface PositionContext extends FDC3Context {
82
83
  /**
83
- * Context type is always 'position'
84
+ * Context type is always `position`
84
85
  */
85
86
  type: 'position';
87
+ /**
88
+ * The `InstrumentContext` of the relevant Instrument
89
+ */
86
90
  instrument: InstrumentContext;
87
91
  /**
88
92
  * Free text name of Position
@@ -93,13 +97,16 @@ export interface PositionContext extends FDC3Context {
93
97
  */
94
98
  id?: any;
95
99
  /**
96
- * Holding in the Position
100
+ * Holding in the Position (mandatory)
97
101
  */
98
102
  holding: number;
99
103
  }
104
+ /**
105
+ * FDC3 Context to define a financial Portfolio (array of Positions)
106
+ */
100
107
  export interface PortfolioContext extends FDC3Context {
101
108
  /**
102
- * Context type is always 'portfolio'
109
+ * Context type is always `portfolio`
103
110
  */
104
111
  type: 'portfolio';
105
112
  /**
@@ -115,17 +122,20 @@ export interface PortfolioContext extends FDC3Context {
115
122
  */
116
123
  positions?: PositionContext[];
117
124
  }
125
+ /**
126
+ * FDC3 Context to define a Contact
127
+ */
118
128
  export interface ContactContext extends FDC3Context {
119
129
  /**
120
- * Context type is always 'contact'
130
+ * Context type is always `contact`
121
131
  */
122
132
  type: 'contact';
123
133
  /**
124
- * Free text name of contact
134
+ * Free text name of Contact
125
135
  */
126
136
  name?: string;
127
137
  /**
128
- * The contact data
138
+ * The Contact data: email, FDS_ID
129
139
  */
130
140
  id?: {
131
141
  [key: string]: string;
@@ -134,13 +144,16 @@ export interface ContactContext extends FDC3Context {
134
144
  FDS_ID?: string;
135
145
  };
136
146
  }
147
+ /**
148
+ * FDC3 Context to define a list of Contacts
149
+ */
137
150
  export interface ContactListContext extends FDC3Context {
138
151
  /**
139
- * Context type is always 'contactList'
152
+ * Context type is always `contactList`
140
153
  */
141
154
  type: 'contactList';
142
155
  /**
143
- * Free text name of contact list
156
+ * Free text name of Contact list
144
157
  */
145
158
  name?: string;
146
159
  /**
@@ -148,21 +161,24 @@ export interface ContactListContext extends FDC3Context {
148
161
  */
149
162
  id?: any;
150
163
  /**
151
- * The contact data
164
+ * The array of Contacts
152
165
  */
153
166
  contacts?: ContactContext[];
154
167
  }
168
+ /**
169
+ * FDC3 Context to define an Organization
170
+ */
155
171
  export interface OrganizationContext extends FDC3Context {
156
172
  /**
157
- * Context type is always 'organization'
173
+ * Context type is always `organization`
158
174
  */
159
175
  type: 'organization';
160
176
  /**
161
- * Free text name of organization
177
+ * Free text name of Organization
162
178
  */
163
179
  name?: string;
164
180
  /**
165
- * The organization data
181
+ * The Organization data: LEI, PERMID, FDS_ID
166
182
  */
167
183
  id?: {
168
184
  [key: string]: string;
@@ -172,17 +188,20 @@ export interface OrganizationContext extends FDC3Context {
172
188
  FDS_ID?: string;
173
189
  };
174
190
  }
191
+ /**
192
+ * FDC3 Context to define a Country
193
+ */
175
194
  export interface CountryContext extends FDC3Context {
176
195
  /**
177
- * Context type is always 'country'
196
+ * Context type is always `country`
178
197
  */
179
198
  type: 'country';
180
199
  /**
181
- * Free text name of country
200
+ * Free text name of Country
182
201
  */
183
202
  name?: string;
184
203
  /**
185
- * The country data
204
+ * The Country data: ISOALPHA2, ISOALPHA3
186
205
  */
187
206
  id?: {
188
207
  [key: string]: string;
@@ -191,8 +210,21 @@ export interface CountryContext extends FDC3Context {
191
210
  ISOALPHA3?: string;
192
211
  };
193
212
  }
213
+ /**
214
+ * EventInfo returned by `FDC3MessageSent` event
215
+ */
194
216
  export interface AdaptableFDC3EventInfo extends BaseEventInfo {
195
- type: 'RaiseIntent' | 'BroadcastMessage';
217
+ /**
218
+ * Type of Event: `RaiseIntent` or `BroadcastMessage`
219
+ */
220
+ eventType: 'RaiseIntent' | 'BroadcastMessage';
221
+ /**
222
+ * The FDC3 Intent which caused Event to fire (if type is `RaiseIntent`)
223
+ */
196
224
  intent?: FDC3Intent;
225
+ /**
226
+ * Full FDC3 Context for the object related to the event
227
+ */
197
228
  context: FDC3Context;
198
229
  }
230
+ export declare type ContextType = 'instrument' | 'instrumentList' | 'position' | 'portfolio' | 'contact' | 'contactList' | 'organization' | 'country';
@@ -7,6 +7,8 @@ export declare type AdaptableDashboardToolbars = AdaptableDashboardToolbar[];
7
7
  */
8
8
  export declare type AdaptableDashboardToolbar = 'Alert' | 'BulkUpdate' | 'CellSummary' | 'DataChangeHistory' | 'DataSource' | 'Export' | 'Filter' | 'Glue42' | 'IPushPull' | 'Layout' | 'OpenFin' | 'Query' | 'QuickSearch' | 'SmartEdit' | 'StateManagement' | 'SystemStatus' | 'Theme';
9
9
  export declare const ALL_TOOLBARS: AdaptableDashboardToolbar[];
10
+ export declare type AdaptableStatusBarPanel = 'CellSummary' | 'Alert' | 'GridInfo' | 'Dashboard' | 'ToolPanel' | 'StatusBar' | 'StateManagement' | 'Alert' | 'CalculatedColumn' | 'ConditionalStyle' | 'CustomSort' | 'DataSource' | 'Export' | 'Filter' | 'FlashingCell' | 'FormatColumn' | 'FreeTextColumn' | 'Layout' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'Shortcut' | 'SystemStatus' | 'DataChangeHistory' | 'TeamSharing' | 'Theme' | 'BulkUpdate' | 'SettingsPanel' | 'SmartEdit';
11
+ export declare const ALL_STATUS_SUB_PANELS: AdaptableStatusBarPanel[];
10
12
  export declare type AdaptableToolPanels = AdaptableToolPanel[];
11
13
  export declare type AdaptableToolPanel = 'Alert' | 'BulkUpdate' | 'CellSummary' | 'Dashboard' | 'DataChangeHistory' | 'Export' | 'Filter' | 'IPushPull' | 'Layout' | 'OpenFin' | 'Query' | 'QuickSearch' | 'SmartEdit' | 'StateManagement' | 'SystemStatus' | 'Theme';
12
14
  export declare const ALL_TOOL_PANELS: AdaptableToolPanels;
@@ -25,8 +27,8 @@ export declare type AdaptableStateKey = 'Alert' | 'FlashingCell' | 'Application'
25
27
  /**
26
28
  * Modules provided by AdapTable, subject to Entitlements and usually have Predefined Config
27
29
  */
28
- export declare type AdaptableModule = 'Alert' | 'BulkUpdate' | 'CalculatedColumn' | 'CellSummary' | 'Charting' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | 'DataSource' | 'Export' | 'Filter' | 'FlashingCell' | 'FormatColumn' | 'FreeTextColumn' | 'Glue42' | 'GridInfo' | 'IPushPull' | 'Layout' | 'OpenFin' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'SettingsPanel' | 'Shortcut' | 'SmartEdit' | 'StateManagement' | 'SystemStatus' | 'TeamSharing' | 'Theme' | 'ToolPanel';
29
- export declare type AdaptableSettingsPanel = 'Alert' | 'CalculatedColumn' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | 'DataSource' | 'Export' | 'Filter' | 'FlashingCell' | 'FormatColumn' | 'FreeTextColumn' | 'GridInfo' | 'Layout' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'Shortcut' | 'StateManagement' | 'SystemStatus' | 'TeamSharing' | 'Theme' | 'ToolPanel';
30
+ export declare type AdaptableModule = 'Alert' | 'BulkUpdate' | 'CalculatedColumn' | 'CellSummary' | 'Charting' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | 'DataSource' | 'Export' | 'Filter' | 'FlashingCell' | 'FormatColumn' | 'FreeTextColumn' | 'Glue42' | 'GridInfo' | 'IPushPull' | 'Layout' | 'OpenFin' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'SettingsPanel' | 'Shortcut' | 'SmartEdit' | 'StateManagement' | 'StatusBar' | 'SystemStatus' | 'TeamSharing' | 'Theme' | 'ToolPanel';
31
+ export declare type AdaptableSettingsPanel = 'Alert' | 'CalculatedColumn' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | 'DataSource' | 'Export' | 'Filter' | 'FlashingCell' | 'FormatColumn' | 'FreeTextColumn' | 'GridInfo' | 'Layout' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'Shortcut' | 'StateManagement' | 'StatusBar' | 'SystemStatus' | 'TeamSharing' | 'Theme' | 'ToolPanel';
30
32
  export declare type TypeHint<Base, Literals> = (Base & {
31
33
  __subType?: true;
32
34
  }) | Literals;
@@ -3,7 +3,7 @@
3
3
  This page includes frequently used typed - particularly helpful for State and Api where we can strongly type stuff
4
4
  */
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.ALL_TOOL_PANELS = exports.ALL_TOOLBARS = void 0;
6
+ exports.ALL_TOOL_PANELS = exports.ALL_STATUS_SUB_PANELS = exports.ALL_TOOLBARS = void 0;
7
7
  exports.ALL_TOOLBARS = [
8
8
  'Alert',
9
9
  'BulkUpdate',
@@ -23,6 +23,37 @@ exports.ALL_TOOLBARS = [
23
23
  'SystemStatus',
24
24
  'Theme',
25
25
  ];
26
+ exports.ALL_STATUS_SUB_PANELS = [
27
+ 'Alert',
28
+ 'BulkUpdate',
29
+ 'CalculatedColumn',
30
+ 'CellSummary',
31
+ 'ConditionalStyle',
32
+ 'CustomSort',
33
+ 'Dashboard',
34
+ 'DataChangeHistory',
35
+ 'DataSource',
36
+ 'Export',
37
+ 'Filter',
38
+ 'FlashingCell',
39
+ 'FormatColumn',
40
+ 'FreeTextColumn',
41
+ 'GridInfo',
42
+ 'Layout',
43
+ 'PlusMinus',
44
+ 'Query',
45
+ 'QuickSearch',
46
+ 'Schedule',
47
+ 'SettingsPanel',
48
+ 'Shortcut',
49
+ 'SmartEdit',
50
+ 'StateManagement',
51
+ 'StatusBar',
52
+ 'SystemStatus',
53
+ 'TeamSharing',
54
+ 'Theme',
55
+ 'ToolPanel',
56
+ ];
26
57
  exports.ALL_TOOL_PANELS = [
27
58
  'Alert',
28
59
  'BulkUpdate',
@@ -138,7 +138,7 @@ export interface ColumnComparison {
138
138
  */
139
139
  MaxValue: number | string;
140
140
  /**
141
- * Colour to use for the Percent bar
141
+ * Colour to use for the Comparison
142
142
  */
143
143
  Color: string;
144
144
  }
@@ -16,7 +16,7 @@ export interface GridState extends InternalState {
16
16
  SelectedCellInfo: SelectedCellInfo;
17
17
  SelectedRowInfo: SelectedRowInfo;
18
18
  CellSummary: CellSummmary;
19
- ModuleDropdownMenuItems: AdaptableMenuItem[];
19
+ SettingPanelModuleMenuItems: AdaptableMenuItem[];
20
20
  ModuleButtonMenuItems: AdaptableMenuItem[];
21
21
  IsGridInPivotMode: boolean;
22
22
  IsGridInTreeMode: boolean;
@@ -18,6 +18,7 @@ import { ShortcutState } from './ShortcutState';
18
18
  import { ThemeState } from './ThemeState';
19
19
  import { ToolPanelState } from './ToolPanelState';
20
20
  import { QueryState } from './QueryState';
21
+ import { StatusBarState } from './StatusBarState';
21
22
  /**
22
23
  * This is the main Predefined Config interface which developers will populate at design-time
23
24
  */
@@ -94,6 +95,10 @@ export interface PredefinedConfig {
94
95
  * Supplies a collection of *Shortcut* objects to aid data entry and prevent 'fat finger' issues
95
96
  */
96
97
  Shortcut?: ShortcutState;
98
+ /**
99
+ * Configures the Adaptable Status Bar
100
+ */
101
+ StatusBar?: StatusBarState;
97
102
  /**
98
103
  * Specifies the current Theme and lists the User and System themes available for selection.
99
104
  */
@@ -0,0 +1,27 @@
1
+ import { ConfigState } from '../types';
2
+ import { AdaptableStatusBarPanel } from './Common/Types';
3
+ /**
4
+ * Predefined Configuration for the Adaptable Status Bar
5
+ */
6
+ export interface StatusBarState extends ConfigState {
7
+ /**
8
+ * Adaptable Status Bars to display - up to 3 can be shown
9
+ * @defaultValue null
10
+ */
11
+ StatusBars?: AdaptableStatusBar[];
12
+ }
13
+ /**
14
+ * Name of the component specified in ag-grid gridOptions.statusBar.statusPanels
15
+ */
16
+ export declare const ADAPTABLE_STATUS_PANEL = "AdaptableStatusPanel";
17
+ export interface AdaptableStatusBar {
18
+ /**
19
+ * Key of status panel defined in AG Grid gridConfig - make sure that keys are the same
20
+ * Note: AG Grid statusPanel has a lowercase 'key'
21
+ */
22
+ Key: string;
23
+ /**
24
+ * Module Panels to render inside the Adaptable Status Bar
25
+ */
26
+ StatusBarPanels?: AdaptableStatusBarPanel[];
27
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ADAPTABLE_STATUS_PANEL = void 0;
4
+ /**
5
+ * Name of the component specified in ag-grid gridOptions.statusBar.statusPanels
6
+ */
7
+ exports.ADAPTABLE_STATUS_PANEL = 'AdaptableStatusPanel';
@@ -5,7 +5,7 @@ import { AdaptableModuleButtons, AdaptableToolPanel } from './Common/Types';
5
5
  */
6
6
  export interface ToolPanelState extends ConfigState {
7
7
  /**
8
- * ToolPanels visible
8
+ * Adaptable Tool Panels which are viaible
9
9
  * @defaultValue ToolPanels for all available Modules (subject to Entitlement rules)
10
10
  */
11
11
  ToolPanels?: AdaptableToolPanelDefinition[];
@@ -133,7 +133,7 @@ export interface GridRefreshCellsAction extends Redux.Action {
133
133
  rowNodes: RowNode[];
134
134
  columnIds: string[];
135
135
  }
136
- export interface SetModuleDropdownMenuItemsAction extends Redux.Action {
136
+ export interface SetSettingPanelModuleMenuItemsAction extends Redux.Action {
137
137
  menuItems: AdaptableMenuItem[];
138
138
  }
139
139
  export interface SetModuleButtonMenuItemsAction extends Redux.Action {
@@ -167,6 +167,6 @@ export declare const SetPivotModeOn: () => SetPivotModeOnAction;
167
167
  export declare const SetPivotModeOff: () => SetPivotModeOffAction;
168
168
  export declare const SetTreeModeOn: () => SetTreeModeOnAction;
169
169
  export declare const SetTreeModeOff: () => SetTreeModeOffAction;
170
- export declare const SetModuleDropdownMenuItems: (MenuItems: AdaptableMenuItem[]) => SetModuleDropdownMenuItemsAction;
170
+ export declare const SetSettingPanelModuleMenuItems: (MenuItems: AdaptableMenuItem[]) => SetSettingPanelModuleMenuItemsAction;
171
171
  export declare const SetModuleButtonMenuItems: (MenuItems: AdaptableMenuItem[]) => SetModuleButtonMenuItemsAction;
172
172
  export declare const GridReducer: Redux.Reducer<GridState>;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.GridReducer = exports.SetModuleButtonMenuItems = exports.SetModuleDropdownMenuItems = exports.SetTreeModeOff = exports.SetTreeModeOn = exports.SetPivotModeOff = exports.SetPivotModeOn = exports.GridRefreshCells = exports.GridSetCellSummary = exports.GridCreateCellSummary = exports.GridSetSelectedRows = exports.GridSetSelectedCells = exports.GridClearSort = exports.GridSetSort = exports.GridEditColumn = exports.GridRemoveColumn = exports.GridAddColumns = exports.GridAddColumn = exports.GridSetColumns = exports.GRID_SET_TREE_MODE_OFF = exports.GRID_SET_TREE_MODE_ON = exports.GRID_SET_PIVOT_MODE_OFF = exports.GRID_SET_PIVOT_MODE_ON = exports.GRID_SET_MODULE_BUTTON_MENUITEMS = exports.GRID_SET_MODULE_DROPDOWN_MENUITEMS = exports.GRID_REFRESH_CELLS = exports.GRID_SET_CELLS_SUMMARY = exports.GRID_CREATE_CELLS_SUMMARY = exports.GRID_SET_SELECTED_ROWS = exports.GRID_SET_SELECTED_CELLS = exports.GRID_CLEAR_SORT = exports.GRID_SET_SORT = exports.GRID_EDIT_COLUMN = exports.GRID_REMOVE_COLUMN = exports.GRID_ADD_COLUMNS = exports.GRID_ADD_COLUMN = exports.GRID_SET_COLUMNS = void 0;
3
+ exports.GridReducer = exports.SetModuleButtonMenuItems = exports.SetSettingPanelModuleMenuItems = exports.SetTreeModeOff = exports.SetTreeModeOn = exports.SetPivotModeOff = exports.SetPivotModeOn = exports.GridRefreshCells = exports.GridSetCellSummary = exports.GridCreateCellSummary = exports.GridSetSelectedRows = exports.GridSetSelectedCells = exports.GridClearSort = exports.GridSetSort = exports.GridEditColumn = exports.GridRemoveColumn = exports.GridAddColumns = exports.GridAddColumn = exports.GridSetColumns = exports.GRID_SET_TREE_MODE_OFF = exports.GRID_SET_TREE_MODE_ON = exports.GRID_SET_PIVOT_MODE_OFF = exports.GRID_SET_PIVOT_MODE_ON = exports.GRID_SET_MODULE_BUTTON_MENUITEMS = exports.GRID_SET_MODULE_DROPDOWN_MENUITEMS = exports.GRID_REFRESH_CELLS = exports.GRID_SET_CELLS_SUMMARY = exports.GRID_CREATE_CELLS_SUMMARY = exports.GRID_SET_SELECTED_ROWS = exports.GRID_SET_SELECTED_CELLS = exports.GRID_CLEAR_SORT = exports.GRID_SET_SORT = exports.GRID_EDIT_COLUMN = exports.GRID_REMOVE_COLUMN = exports.GRID_ADD_COLUMNS = exports.GRID_ADD_COLUMN = exports.GRID_SET_COLUMNS = void 0;
4
4
  const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
5
5
  const LayoutRedux_1 = require("./LayoutRedux");
6
6
  /**
@@ -134,7 +134,7 @@ exports.SetTreeModeOn = () => ({
134
134
  exports.SetTreeModeOff = () => ({
135
135
  type: exports.GRID_SET_TREE_MODE_OFF,
136
136
  });
137
- exports.SetModuleDropdownMenuItems = (MenuItems) => ({
137
+ exports.SetSettingPanelModuleMenuItems = (MenuItems) => ({
138
138
  type: exports.GRID_SET_MODULE_DROPDOWN_MENUITEMS,
139
139
  menuItems: MenuItems,
140
140
  });
@@ -149,7 +149,7 @@ const initialState = {
149
149
  SelectedCellInfo: null,
150
150
  SelectedRowInfo: null,
151
151
  CellSummary: null,
152
- ModuleDropdownMenuItems: GeneralConstants_1.EMPTY_ARRAY,
152
+ SettingPanelModuleMenuItems: GeneralConstants_1.EMPTY_ARRAY,
153
153
  ModuleButtonMenuItems: GeneralConstants_1.EMPTY_ARRAY,
154
154
  IsGridInPivotMode: false,
155
155
  IsGridInTreeMode: false,
@@ -197,7 +197,7 @@ exports.GridReducer = (state = initialState, action) => {
197
197
  case exports.GRID_SET_MODULE_DROPDOWN_MENUITEMS: {
198
198
  const actionTyped = action;
199
199
  const menuItems = actionTyped.menuItems.sort((a, b) => a.label < b.label ? -1 : a.label > b.label ? 1 : 0);
200
- return Object.assign({}, state, { ModuleDropdownMenuItems: menuItems });
200
+ return Object.assign({}, state, { SettingPanelModuleMenuItems: menuItems });
201
201
  }
202
202
  case exports.GRID_SET_MODULE_BUTTON_MENUITEMS: {
203
203
  const actionTyped = action;
@@ -0,0 +1,22 @@
1
+ import * as Redux from 'redux';
2
+ import { AdaptableState } from '../../../types';
3
+ import { StatusBarState, AdaptableStatusBar } from '../../PredefinedConfig/StatusBarState';
4
+ /**
5
+ * @ReduxAction Sets status bar panels
6
+ */
7
+ export declare const SET_STATUS_BAR_PANELS = "SET_STATUS_BAR_PANELS";
8
+ /**
9
+ * @ReduxAction AdapTable Status Bar is ready
10
+ */
11
+ export declare const STATUS_BAR_READY = "STATUS_BAR_READY";
12
+ export interface StatusBarSetPanelsAction extends Redux.Action {
13
+ statusPanels: AdaptableStatusBar[];
14
+ }
15
+ export interface StatusBarReadyAction extends Redux.Action {
16
+ statusBarState: StatusBarState;
17
+ }
18
+ export declare const StatusBarSetPanels: (statusPanels: AdaptableStatusBar[]) => StatusBarSetPanelsAction;
19
+ export declare const initialState: StatusBarState;
20
+ export declare const getStatusPanelsSelector: (state: AdaptableState) => AdaptableStatusBar[];
21
+ export declare const ToolPanelReady: (statusBarState: StatusBarState) => StatusBarReadyAction;
22
+ export declare const StatusBarReducer: Redux.Reducer<StatusBarState>;
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.StatusBarReducer = exports.ToolPanelReady = exports.getStatusPanelsSelector = exports.initialState = exports.StatusBarSetPanels = exports.STATUS_BAR_READY = exports.SET_STATUS_BAR_PANELS = void 0;
4
+ /**
5
+ * @ReduxAction Sets status bar panels
6
+ */
7
+ exports.SET_STATUS_BAR_PANELS = 'SET_STATUS_BAR_PANELS';
8
+ /**
9
+ * @ReduxAction AdapTable Status Bar is ready
10
+ */
11
+ exports.STATUS_BAR_READY = 'STATUS_BAR_READY';
12
+ exports.StatusBarSetPanels = (statusPanels) => ({
13
+ statusPanels: statusPanels,
14
+ type: exports.SET_STATUS_BAR_PANELS,
15
+ });
16
+ exports.initialState = {
17
+ StatusBars: [],
18
+ };
19
+ exports.getStatusPanelsSelector = (state) => state.StatusBar.StatusBars;
20
+ exports.ToolPanelReady = (statusBarState) => ({
21
+ type: exports.STATUS_BAR_READY,
22
+ statusBarState,
23
+ });
24
+ exports.StatusBarReducer = (state = exports.initialState, action) => {
25
+ switch (action.type) {
26
+ case exports.SET_STATUS_BAR_PANELS:
27
+ const newPanels = action.statusPanels;
28
+ return Object.assign(Object.assign({}, state), { StatusBars: newPanels });
29
+ }
30
+ return state;
31
+ };
@@ -18,7 +18,8 @@ export declare const FLASHING_CELL_ROW_KEY = "__ROW";
18
18
  export declare const SYSTEM_ALERT_ADD = "SYSTEM_ALERT_ADD";
19
19
  export declare const SYSTEM_ALERT_DELETE = "SYSTEM_ALERT_DELETE";
20
20
  export declare const SYSTEM_ALERT_DELETE_ALL = "SYSTEM_ALERT_DELETE_ALL";
21
- export declare const SYSTEM_ALERT_REMOVE_HIGHLIGHT = "SYSTEM_ALERT_REMOVE_HIGHLIGHT";
21
+ export declare const SYSTEM_ALERT_REMOVE_CELL_HIGHLIGHT = "SYSTEM_ALERT_REMOVE_CELL_HIGHLIGHT";
22
+ export declare const SYSTEM_ALERT_REMOVE_ROW_HIGHLIGHT = "SYSTEM_ALERT_REMOVE_ROW_HIGHLIGHT";
22
23
  export declare const SYSTEM_FLASHING_CELL_ADD = "SYSTEM_FLASHING_CELL_ADD";
23
24
  export declare const SYSTEM_FLASHING_CELL_DELETE = "SYSTEM_FLASHING_CELL_DELETE";
24
25
  export declare const SYSTEM_FLASHING_CELL_DELETE_ALL = "SYSTEM_FLASHING_CELL_DELETE_ALL";
@@ -91,7 +92,10 @@ export interface SystemAlertDeleteAction extends Redux.Action {
91
92
  export interface SystemAlertDeleteAllAction extends Redux.Action {
92
93
  alerts: AdaptableAlert[];
93
94
  }
94
- export interface SystemAlertRemoveHighlightAction extends Redux.Action {
95
+ export interface SystemAlertRemoveCellHighlightAction extends Redux.Action {
96
+ alert: AdaptableAlert;
97
+ }
98
+ export interface SystemAlertRemoveRowHighlightAction extends Redux.Action {
95
99
  alert: AdaptableAlert;
96
100
  }
97
101
  export interface SystemFlashingCellAddAction extends Redux.Action {
@@ -212,7 +216,8 @@ export declare const SystemHighlightRowDeleteAll: () => SystemHighlightRowDelete
212
216
  export declare const SystemAlertAdd: (alert: AdaptableAlert, maxAlerts: number) => SystemAlertAddAction;
213
217
  export declare const SystemAlertDelete: (alert: AdaptableAlert) => SystemAlertDeleteAction;
214
218
  export declare const SystemAlertDeleteAll: (alerts: AdaptableAlert[]) => SystemAlertDeleteAllAction;
215
- export declare const SystemAlertRemoveHighlight: (alert: AdaptableAlert) => SystemAlertRemoveHighlightAction;
219
+ export declare const SystemAlertRemoveCellHighlight: (alert: AdaptableAlert) => SystemAlertRemoveCellHighlightAction;
220
+ export declare const SystemAlertRemoveRowHighlight: (alert: AdaptableAlert) => SystemAlertRemoveRowHighlightAction;
216
221
  export declare const SystemFlashingCellAdd: (flashingCell: AdaptableFlashingCell) => SystemFlashingCellAddAction;
217
222
  export declare const SystemFlashingCellDelete: (flashingCell: AdaptableFlashingCell) => SystemFlashingCellDeleteAction;
218
223
  export declare const SystemFlashingCellDeleteAll: (flashingCells: AdaptableFlashingCell[]) => SystemFlashingCellDeleteAllAction;