@thoughtspot/ts-chart-sdk 1.1.0 → 1.2.0
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.
- package/dist/ts-chart-sdk.d.ts +134 -0
- package/lib/main/custom-chart-context.d.ts +2 -1
- package/lib/main/custom-chart-context.d.ts.map +1 -1
- package/lib/main/custom-chart-context.js.map +1 -1
- package/lib/types/actions.types.d.ts +123 -0
- package/lib/types/actions.types.d.ts.map +1 -0
- package/lib/types/actions.types.js +124 -0
- package/lib/types/actions.types.js.map +1 -0
- package/lib/types/chart-to-ts-event.types.d.ts +3 -0
- package/lib/types/chart-to-ts-event.types.d.ts.map +1 -1
- package/lib/types/chart-to-ts-event.types.js +3 -0
- package/lib/types/chart-to-ts-event.types.js.map +1 -1
- package/lib/types/common.types.d.ts +7 -0
- package/lib/types/common.types.d.ts.map +1 -1
- package/lib/types/common.types.js.map +1 -1
- package/lib/types/ts-to-chart-event.types.d.ts +2 -1
- package/lib/types/ts-to-chart-event.types.d.ts.map +1 -1
- package/lib/types/ts-to-chart-event.types.js.map +1 -1
- package/package.json +1 -1
- package/src/main/custom-chart-context.ts +8 -0
- package/src/types/actions.types.ts +1015 -0
- package/src/types/chart-to-ts-event.types.ts +17 -7
- package/src/types/common.types.ts +36 -0
- package/src/types/ts-to-chart-event.types.ts +11 -0
|
@@ -0,0 +1,1015 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview
|
|
3
|
+
* Defines enum for All action types supported in TS, includes context menu actions,
|
|
4
|
+
* answer actions liveboard actions and axis menu actions
|
|
5
|
+
* @author Harshmeet Singh <harshmeet.singh@thoughtspot.com>
|
|
6
|
+
* SDK @version 0.0.2-alpha.26
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
export enum Action {
|
|
10
|
+
/**
|
|
11
|
+
* The **Save** action for Custom Charts.
|
|
12
|
+
* Allows users to save chart customizations and configurations.
|
|
13
|
+
* @example
|
|
14
|
+
* ```js
|
|
15
|
+
* disabledActions: [Action.Save]
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
Save = 'save',
|
|
19
|
+
/**
|
|
20
|
+
* @hidden
|
|
21
|
+
*/
|
|
22
|
+
Update = 'update',
|
|
23
|
+
/**
|
|
24
|
+
* @hidden
|
|
25
|
+
*/
|
|
26
|
+
SaveUntitled = 'saveUntitled',
|
|
27
|
+
/**
|
|
28
|
+
* The **Save as View** action for Custom Charts.
|
|
29
|
+
* Saves a chart configuration as a reusable View object.
|
|
30
|
+
* @example
|
|
31
|
+
* ```js
|
|
32
|
+
* disabledActions: [Action.SaveAsView]
|
|
33
|
+
* ```
|
|
34
|
+
*/
|
|
35
|
+
SaveAsView = 'saveAsView',
|
|
36
|
+
/**
|
|
37
|
+
* The **Make a copy** action for Custom Charts.
|
|
38
|
+
* Creates a duplicate of the current chart with all its configurations.
|
|
39
|
+
* Useful for creating variations of existing chart visualizations.
|
|
40
|
+
* @example
|
|
41
|
+
* ```js
|
|
42
|
+
* disabledActions: [Action.MakeACopy]
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
MakeACopy = 'makeACopy',
|
|
46
|
+
/**
|
|
47
|
+
* The **Copy and Edit** action for Custom Charts.
|
|
48
|
+
* This action is now replaced with `Action.MakeACopy`.
|
|
49
|
+
* @example
|
|
50
|
+
* ```js
|
|
51
|
+
* disabledActions: [Action.EditACopy]
|
|
52
|
+
* ```
|
|
53
|
+
*/
|
|
54
|
+
EditACopy = 'editACopy',
|
|
55
|
+
/**
|
|
56
|
+
* The **Copy link** menu action for Custom Charts.
|
|
57
|
+
* Copies the chart configuration URL for sharing.
|
|
58
|
+
* @example
|
|
59
|
+
* ```js
|
|
60
|
+
* disabledActions: [Action.CopyLink]
|
|
61
|
+
* ```
|
|
62
|
+
*/
|
|
63
|
+
CopyLink = 'embedDocument',
|
|
64
|
+
/**
|
|
65
|
+
* @hidden
|
|
66
|
+
*/
|
|
67
|
+
ResetLayout = 'resetLayout',
|
|
68
|
+
/**
|
|
69
|
+
* The **Schedule** menu action for Custom Charts.
|
|
70
|
+
* Allows scheduling automated chart data updates.
|
|
71
|
+
* @example
|
|
72
|
+
* ```js
|
|
73
|
+
* disabledActions: [Action.Schedule]
|
|
74
|
+
* ```
|
|
75
|
+
*/
|
|
76
|
+
Schedule = 'subscription',
|
|
77
|
+
/**
|
|
78
|
+
* The **Manage schedules** menu action for Custom Charts.
|
|
79
|
+
* Allows users to manage and configure scheduled chart updates.
|
|
80
|
+
* @example
|
|
81
|
+
* ```js
|
|
82
|
+
* disabledActions: [Action.SchedulesList]
|
|
83
|
+
* ```
|
|
84
|
+
*/
|
|
85
|
+
SchedulesList = 'schedule-list',
|
|
86
|
+
/**
|
|
87
|
+
* The **Share** action for Custom Charts.
|
|
88
|
+
* Enables sharing chart configurations and visualizations.
|
|
89
|
+
* @example
|
|
90
|
+
* ```js
|
|
91
|
+
* disabledActions: [Action.Share]
|
|
92
|
+
* ```
|
|
93
|
+
*/
|
|
94
|
+
Share = 'share',
|
|
95
|
+
/**
|
|
96
|
+
* The **Add filter** action for Custom Charts.
|
|
97
|
+
* Allows adding data filters to customize chart visualization.
|
|
98
|
+
* @example
|
|
99
|
+
* ```js
|
|
100
|
+
* disabledActions: [Action.AddFilter]
|
|
101
|
+
* ```
|
|
102
|
+
*/
|
|
103
|
+
AddFilter = 'addFilter',
|
|
104
|
+
/**
|
|
105
|
+
* The **Add Data Panel Objects** action for Custom Charts.
|
|
106
|
+
* Provides menu options to add formulas, parameters, and other
|
|
107
|
+
* data objects to chart configurations.
|
|
108
|
+
* @example
|
|
109
|
+
* ```js
|
|
110
|
+
* disabledActions: [Action.AddDataPanelObjects]
|
|
111
|
+
* ```
|
|
112
|
+
*
|
|
113
|
+
*/
|
|
114
|
+
AddDataPanelObjects = 'addDataPanelObjects',
|
|
115
|
+
|
|
116
|
+
/**
|
|
117
|
+
* Filter configuration options for Custom Charts.
|
|
118
|
+
* Allows configuring data filter settings for chart visualizations.
|
|
119
|
+
* @example
|
|
120
|
+
* ```js
|
|
121
|
+
* disabledActions: [Action.ConfigureFilter]
|
|
122
|
+
* ```
|
|
123
|
+
*/
|
|
124
|
+
ConfigureFilter = 'configureFilter',
|
|
125
|
+
CollapseDataSources = 'collapseDataSources',
|
|
126
|
+
CollapseDataPanel = 'collapseDataPanel',
|
|
127
|
+
/**
|
|
128
|
+
* The **Choose sources** action for Custom Charts.
|
|
129
|
+
* Allows selecting data sources for chart visualizations.
|
|
130
|
+
* @example
|
|
131
|
+
* ```js
|
|
132
|
+
* disabledActions: [Action.ChooseDataSources]
|
|
133
|
+
* ```
|
|
134
|
+
*/
|
|
135
|
+
ChooseDataSources = 'chooseDataSources',
|
|
136
|
+
/**
|
|
137
|
+
* The **Create formula** action for Custom Charts.
|
|
138
|
+
* Enables adding custom formulas to enhance chart calculations.
|
|
139
|
+
* @example
|
|
140
|
+
* ```js
|
|
141
|
+
* disabledActions: [Action.AddFormula]
|
|
142
|
+
* ```
|
|
143
|
+
*/
|
|
144
|
+
AddFormula = 'addFormula',
|
|
145
|
+
/**
|
|
146
|
+
* The **Add parameter** action for Custom Charts.
|
|
147
|
+
* Allows adding configurable parameters to chart visualizations.
|
|
148
|
+
* @example
|
|
149
|
+
* ```js
|
|
150
|
+
* disabledActions: [Action.AddParameter]
|
|
151
|
+
* ```
|
|
152
|
+
*/
|
|
153
|
+
AddParameter = 'addParameter',
|
|
154
|
+
/**
|
|
155
|
+
* The **Add Column Set** action for Custom Charts.
|
|
156
|
+
* Enables adding column sets to organize chart data.
|
|
157
|
+
* @example
|
|
158
|
+
* ```js
|
|
159
|
+
* disabledActions: [Action.AddColumnSet]
|
|
160
|
+
* ```
|
|
161
|
+
*
|
|
162
|
+
*/
|
|
163
|
+
AddColumnSet = 'addSimpleCohort',
|
|
164
|
+
/**
|
|
165
|
+
* The **Add Query Set** action for Custom Charts.
|
|
166
|
+
* Allows adding query sets to define chart data sources.
|
|
167
|
+
* @example
|
|
168
|
+
* ```js
|
|
169
|
+
* disabledActions: [Action.AddQuerySet]
|
|
170
|
+
* ```
|
|
171
|
+
*
|
|
172
|
+
*/
|
|
173
|
+
AddQuerySet = 'addAdvancedCohort',
|
|
174
|
+
/**
|
|
175
|
+
* @hidden
|
|
176
|
+
*/
|
|
177
|
+
SearchOnTop = 'searchOnTop',
|
|
178
|
+
/**
|
|
179
|
+
* The **SpotIQ analyze** menu action for chart visualizations.
|
|
180
|
+
* Enables AI-powered analysis of chart data.
|
|
181
|
+
* @example
|
|
182
|
+
* ```js
|
|
183
|
+
* disabledActions: [Action.SpotIQAnalyze]
|
|
184
|
+
* ```
|
|
185
|
+
*/
|
|
186
|
+
SpotIQAnalyze = 'spotIQAnalyze',
|
|
187
|
+
/**
|
|
188
|
+
* @hidden
|
|
189
|
+
*/
|
|
190
|
+
ExplainInsight = 'explainInsight',
|
|
191
|
+
/**
|
|
192
|
+
* @hidden
|
|
193
|
+
*/
|
|
194
|
+
SpotIQFollow = 'spotIQFollow',
|
|
195
|
+
ShareViz = 'shareViz',
|
|
196
|
+
/**
|
|
197
|
+
* @hidden
|
|
198
|
+
*/
|
|
199
|
+
ReplaySearch = 'replaySearch',
|
|
200
|
+
/**
|
|
201
|
+
* The **Show underlying data** menu action for chart visualizations.
|
|
202
|
+
* Displays the raw data behind the visualization.
|
|
203
|
+
* @example
|
|
204
|
+
* ```js
|
|
205
|
+
* disabledActions: [Action.ShowUnderlyingData]
|
|
206
|
+
* ```
|
|
207
|
+
*/
|
|
208
|
+
ShowUnderlyingData = 'showUnderlyingData',
|
|
209
|
+
/**
|
|
210
|
+
* The **Download** menu action for Custom Charts.
|
|
211
|
+
* Enables downloading chart visualizations in various formats.
|
|
212
|
+
* @example
|
|
213
|
+
* ```js
|
|
214
|
+
* disabledActions: [Action.DownloadAsPng]
|
|
215
|
+
* ```
|
|
216
|
+
*/
|
|
217
|
+
Download = 'download',
|
|
218
|
+
/**
|
|
219
|
+
* The **Download** > **PNG** menu action for Custom Charts.
|
|
220
|
+
* Downloads the chart visualization as a PNG file.
|
|
221
|
+
* @example
|
|
222
|
+
* ```js
|
|
223
|
+
* disabledActions: [Action.DownloadAsPng]
|
|
224
|
+
* ```
|
|
225
|
+
*/
|
|
226
|
+
DownloadAsPng = 'downloadAsPng',
|
|
227
|
+
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* The **Download PDF** action for Custom Charts.
|
|
231
|
+
* Downloads the chart visualization as a PDF file.
|
|
232
|
+
*
|
|
233
|
+
* **NOTE**: The **Download** > **PDF** action is available for
|
|
234
|
+
* chart visualizations with tabular data format.
|
|
235
|
+
* @example
|
|
236
|
+
* ```js
|
|
237
|
+
* disabledActions: [Action.DownloadAsPdf]
|
|
238
|
+
* ```
|
|
239
|
+
*/
|
|
240
|
+
DownloadAsPdf = 'downloadAsPdf',
|
|
241
|
+
/**
|
|
242
|
+
* The **Download** > **CSV** menu action for Custom Charts.
|
|
243
|
+
* Downloads the chart data in CSV format.
|
|
244
|
+
* @example
|
|
245
|
+
* ```js
|
|
246
|
+
* disabledActions: [Action.DownloadAsCsv]
|
|
247
|
+
* ```
|
|
248
|
+
*/
|
|
249
|
+
DownloadAsCsv = 'downloadAsCSV',
|
|
250
|
+
/**
|
|
251
|
+
* The **Download** > **XLSX** menu action for Custom Charts.
|
|
252
|
+
* Downloads the chart data in XLSX format.
|
|
253
|
+
* @example
|
|
254
|
+
* ```js
|
|
255
|
+
* disabledActions: [Action.DownloadAsXlsx]
|
|
256
|
+
* ```
|
|
257
|
+
*/
|
|
258
|
+
DownloadAsXlsx = 'downloadAsXLSX',
|
|
259
|
+
/**
|
|
260
|
+
* @hidden
|
|
261
|
+
*/
|
|
262
|
+
DownloadTrace = 'downloadTrace',
|
|
263
|
+
/**
|
|
264
|
+
* The **Export TML** menu action for Custom Charts.
|
|
265
|
+
* Exports the chart configuration as a TML file.
|
|
266
|
+
* @example
|
|
267
|
+
* ```js
|
|
268
|
+
* disabledActions: [Action.ExportTML]
|
|
269
|
+
* ```
|
|
270
|
+
*/
|
|
271
|
+
ExportTML = 'exportTSL',
|
|
272
|
+
/**
|
|
273
|
+
* The **Import TML** menu action for Custom Charts.
|
|
274
|
+
* Imports TML configuration for chart customization.
|
|
275
|
+
* @example
|
|
276
|
+
* ```js
|
|
277
|
+
* disabledActions: [Action.ImportTML]
|
|
278
|
+
* ```
|
|
279
|
+
*/
|
|
280
|
+
ImportTML = 'importTSL',
|
|
281
|
+
/**
|
|
282
|
+
* The **Update TML** menu action for Custom Charts.
|
|
283
|
+
* Updates existing TML configuration of charts.
|
|
284
|
+
* @example
|
|
285
|
+
* ```js
|
|
286
|
+
* disabledActions: [Action.UpdateTML]
|
|
287
|
+
* ```
|
|
288
|
+
*/
|
|
289
|
+
UpdateTML = 'updateTSL',
|
|
290
|
+
/**
|
|
291
|
+
* The **Edit TML** menu action for Custom Charts.
|
|
292
|
+
* Opens the TML editor for chart configuration.
|
|
293
|
+
* @example
|
|
294
|
+
* ```js
|
|
295
|
+
* disabledActions: [Action.EditTML]
|
|
296
|
+
* ```
|
|
297
|
+
*/
|
|
298
|
+
EditTML = 'editTSL',
|
|
299
|
+
/**
|
|
300
|
+
* The **Present** menu action for Custom Charts.
|
|
301
|
+
* Enables presentation mode for chart visualizations.
|
|
302
|
+
* @example
|
|
303
|
+
* ```js
|
|
304
|
+
* disabledActions: [Action.Present]
|
|
305
|
+
* ```
|
|
306
|
+
*/
|
|
307
|
+
Present = 'present',
|
|
308
|
+
/**
|
|
309
|
+
* The resize options in the chart visualization menu.
|
|
310
|
+
* Allows switching between different chart size presets.
|
|
311
|
+
* @example
|
|
312
|
+
* ```js
|
|
313
|
+
* disabledActions: [Action.ToggleSize]
|
|
314
|
+
* ```
|
|
315
|
+
*/
|
|
316
|
+
ToggleSize = 'toggleSize',
|
|
317
|
+
/**
|
|
318
|
+
* The **Edit** action for Custom Charts.
|
|
319
|
+
* Opens the chart in edit mode for customization.
|
|
320
|
+
* @example
|
|
321
|
+
* ```js
|
|
322
|
+
* disabledActions: [Action.Edit]
|
|
323
|
+
* ```
|
|
324
|
+
*/
|
|
325
|
+
Edit = 'edit',
|
|
326
|
+
/**
|
|
327
|
+
* The text edit option for chart titles and labels.
|
|
328
|
+
* @example
|
|
329
|
+
* ```js
|
|
330
|
+
* disabledActions: [Action.EditTitle]
|
|
331
|
+
* ```
|
|
332
|
+
*/
|
|
333
|
+
EditTitle = 'editTitle',
|
|
334
|
+
|
|
335
|
+
/**
|
|
336
|
+
* The **Delete** menu action for Custom Charts.
|
|
337
|
+
* Deletes a chart visualization from the configuration.
|
|
338
|
+
* @example
|
|
339
|
+
* ```js
|
|
340
|
+
* disabledActions: [Action.Remove]
|
|
341
|
+
* ```
|
|
342
|
+
*/
|
|
343
|
+
Remove = 'delete',
|
|
344
|
+
/**
|
|
345
|
+
* @hidden
|
|
346
|
+
*/
|
|
347
|
+
Ungroup = 'ungroup',
|
|
348
|
+
/**
|
|
349
|
+
* @hidden
|
|
350
|
+
*/
|
|
351
|
+
Describe = 'describe',
|
|
352
|
+
/**
|
|
353
|
+
* @hidden
|
|
354
|
+
*/
|
|
355
|
+
Relate = 'relate',
|
|
356
|
+
/**
|
|
357
|
+
* @hidden
|
|
358
|
+
*/
|
|
359
|
+
CustomizeHeadlines = 'customizeHeadlines',
|
|
360
|
+
/**
|
|
361
|
+
* @hidden
|
|
362
|
+
*/
|
|
363
|
+
PinboardInfo = 'pinboardInfo',
|
|
364
|
+
/**
|
|
365
|
+
* The **Show Chart Details** menu action.
|
|
366
|
+
* Displays details such as the name, description, author,
|
|
367
|
+
* and timestamp of chart creation and updates.
|
|
368
|
+
* @example
|
|
369
|
+
* ```js
|
|
370
|
+
* disabledActions: [Action.LiveboardInfo]
|
|
371
|
+
* ```
|
|
372
|
+
*/
|
|
373
|
+
LiveboardInfo = 'pinboardInfo',
|
|
374
|
+
/**
|
|
375
|
+
* @hidden
|
|
376
|
+
*/
|
|
377
|
+
SendAnswerFeedback = 'sendFeedback',
|
|
378
|
+
/**
|
|
379
|
+
* @hidden
|
|
380
|
+
*/
|
|
381
|
+
DownloadEmbraceQueries = 'downloadEmbraceQueries',
|
|
382
|
+
/**
|
|
383
|
+
* The **Pin** menu action for Custom Charts.
|
|
384
|
+
* Allows pinning frequently used chart configurations.
|
|
385
|
+
* @example
|
|
386
|
+
* ```js
|
|
387
|
+
* disabledActions: [Action.Pin]
|
|
388
|
+
* ```
|
|
389
|
+
*/
|
|
390
|
+
Pin = 'pin',
|
|
391
|
+
/**
|
|
392
|
+
* @hidden
|
|
393
|
+
*/
|
|
394
|
+
AnalysisInfo = 'analysisInfo',
|
|
395
|
+
/**
|
|
396
|
+
* The **Schedule** menu action for Custom Charts.
|
|
397
|
+
* @example
|
|
398
|
+
* ```js
|
|
399
|
+
* disabledActions: [Action.Subscription]
|
|
400
|
+
* ```
|
|
401
|
+
*/
|
|
402
|
+
Subscription = 'subscription',
|
|
403
|
+
/**
|
|
404
|
+
* The **Explore** action for chart visualizations.
|
|
405
|
+
* Enables interactive exploration of chart data.
|
|
406
|
+
* @example
|
|
407
|
+
* ```js
|
|
408
|
+
* disabledActions: [Action.Explore]
|
|
409
|
+
* ```
|
|
410
|
+
*/
|
|
411
|
+
Explore = 'explore',
|
|
412
|
+
/**
|
|
413
|
+
* The action to include data points on a drilled-down chart
|
|
414
|
+
* visualization.
|
|
415
|
+
* @example
|
|
416
|
+
* ```js
|
|
417
|
+
* disabledActions: [Action.DrillInclude]
|
|
418
|
+
* ```
|
|
419
|
+
*/
|
|
420
|
+
DrillInclude = 'context-menu-item-include',
|
|
421
|
+
/**
|
|
422
|
+
* The action to exclude data points on a drilled-down chart
|
|
423
|
+
* visualization.
|
|
424
|
+
* @example
|
|
425
|
+
* ```js
|
|
426
|
+
* disabledActions: [Action.DrillExclude]
|
|
427
|
+
* ```
|
|
428
|
+
*/
|
|
429
|
+
DrillExclude = 'context-menu-item-exclude',
|
|
430
|
+
/**
|
|
431
|
+
* The **Copy to clipboard** menu action for chart data.
|
|
432
|
+
* Copies the selected data point.
|
|
433
|
+
* @example
|
|
434
|
+
* ```js
|
|
435
|
+
* disabledActions: [Action.CopyToClipboard]
|
|
436
|
+
* ```
|
|
437
|
+
*/
|
|
438
|
+
CopyToClipboard = 'context-menu-item-copy-to-clipboard',
|
|
439
|
+
CopyAndEdit = 'context-menu-item-copy-and-edit',
|
|
440
|
+
/**
|
|
441
|
+
* @hidden
|
|
442
|
+
*/
|
|
443
|
+
DrillEdit = 'context-menu-item-edit',
|
|
444
|
+
EditMeasure = 'context-menu-item-edit-measure',
|
|
445
|
+
Separator = 'context-menu-item-separator',
|
|
446
|
+
|
|
447
|
+
/**
|
|
448
|
+
* The **Drill down** menu action for Custom Charts.
|
|
449
|
+
* Enables drilling down to specific data points in a chart.
|
|
450
|
+
* @example
|
|
451
|
+
* ```js
|
|
452
|
+
* disabledActions: [Action.DrillDown]
|
|
453
|
+
* ```
|
|
454
|
+
*/
|
|
455
|
+
DrillDown = 'DRILL',
|
|
456
|
+
/**
|
|
457
|
+
* The request access action for Custom Charts.
|
|
458
|
+
* Allows users with view permissions to request edit access to a chart.
|
|
459
|
+
* @example
|
|
460
|
+
* ```js
|
|
461
|
+
* disabledActions: [Action.RequestAccess]
|
|
462
|
+
* ```
|
|
463
|
+
*/
|
|
464
|
+
RequestAccess = 'requestAccess',
|
|
465
|
+
/**
|
|
466
|
+
* The **Query visualizer** and **Query SQL** buttons in Query details panel
|
|
467
|
+
* for chart data exploration.
|
|
468
|
+
* @example
|
|
469
|
+
* ```js
|
|
470
|
+
* disabledActions: [Action.QueryDetailsButtons]
|
|
471
|
+
* ```
|
|
472
|
+
*/
|
|
473
|
+
QueryDetailsButtons = 'queryDetailsButtons',
|
|
474
|
+
/**
|
|
475
|
+
* The **Delete** action for chart configurations.
|
|
476
|
+
* @example
|
|
477
|
+
* ```js
|
|
478
|
+
* disabledActions: [Action.AnswerDelete]
|
|
479
|
+
* ```
|
|
480
|
+
*
|
|
481
|
+
*/
|
|
482
|
+
AnswerDelete = 'onDeleteAnswer',
|
|
483
|
+
/**
|
|
484
|
+
* The Chart switcher icon for switching between different visualization types.
|
|
485
|
+
* @example
|
|
486
|
+
* ```js
|
|
487
|
+
* disabledActions: [Action.AnswerChartSwitcher]
|
|
488
|
+
* ```
|
|
489
|
+
*
|
|
490
|
+
*/
|
|
491
|
+
AnswerChartSwitcher = 'answerChartSwitcher',
|
|
492
|
+
/**
|
|
493
|
+
* Favorites icon (*) for marking frequently used chart configurations
|
|
494
|
+
* @example
|
|
495
|
+
* ```js
|
|
496
|
+
* disabledActions: [Action.AddToFavorites]
|
|
497
|
+
* ```
|
|
498
|
+
*
|
|
499
|
+
*/
|
|
500
|
+
AddToFavorites = 'addToFavorites',
|
|
501
|
+
/**
|
|
502
|
+
* The edit icon for chart customization.
|
|
503
|
+
* @example
|
|
504
|
+
* ```js
|
|
505
|
+
* disabledActions: [Action.EditDetails]
|
|
506
|
+
* ```
|
|
507
|
+
*
|
|
508
|
+
*/
|
|
509
|
+
EditDetails = 'editDetails',
|
|
510
|
+
/**
|
|
511
|
+
* The Create alert action for KPI chart types.
|
|
512
|
+
* @example
|
|
513
|
+
* ```js
|
|
514
|
+
* disabledActions: [Action.CreateMonitor]
|
|
515
|
+
* ```
|
|
516
|
+
*
|
|
517
|
+
*/
|
|
518
|
+
CreateMonitor = 'createMonitor',
|
|
519
|
+
/**
|
|
520
|
+
* @deprecated
|
|
521
|
+
* Reports errors in chart rendering or data processing
|
|
522
|
+
* @example
|
|
523
|
+
* ```js
|
|
524
|
+
* disabledActions: [Action.ReportError]
|
|
525
|
+
* ```
|
|
526
|
+
*
|
|
527
|
+
*/
|
|
528
|
+
ReportError = 'reportError',
|
|
529
|
+
/**
|
|
530
|
+
* The **Sync to sheets** action for Custom Charts.
|
|
531
|
+
* Enables sending chart data to Google Sheets.
|
|
532
|
+
* @example
|
|
533
|
+
* ```js
|
|
534
|
+
* disabledActions: [Action.SyncToSheets]
|
|
535
|
+
* ```
|
|
536
|
+
*
|
|
537
|
+
*/
|
|
538
|
+
SyncToSheets = 'sync-to-sheets',
|
|
539
|
+
/**
|
|
540
|
+
* The **Sync to other apps** action for Custom Charts.
|
|
541
|
+
* Enables sending chart data to third-party apps like Slack,
|
|
542
|
+
* Salesforce, Microsoft Teams, etc.
|
|
543
|
+
* @example
|
|
544
|
+
* ```js
|
|
545
|
+
* disabledActions: [Action.SyncToOtherApps]
|
|
546
|
+
* ```
|
|
547
|
+
*
|
|
548
|
+
*/
|
|
549
|
+
SyncToOtherApps = 'sync-to-other-apps',
|
|
550
|
+
|
|
551
|
+
/**
|
|
552
|
+
* The **Manage pipelines** action for Custom Charts.
|
|
553
|
+
* Enables management of data sync pipelines to third-party apps.
|
|
554
|
+
* @example
|
|
555
|
+
* ```js
|
|
556
|
+
* disabledActions: [Action.SyncToOtherApps]
|
|
557
|
+
* ```
|
|
558
|
+
*
|
|
559
|
+
*/
|
|
560
|
+
ManagePipelines = 'manage-pipeline',
|
|
561
|
+
/**
|
|
562
|
+
* The **Filter** action for chart visualizations.
|
|
563
|
+
* Enables applying cross-filters on chart data.
|
|
564
|
+
* @example
|
|
565
|
+
* ```js
|
|
566
|
+
* disabledActions: [Action.CrossFilter]
|
|
567
|
+
* ```
|
|
568
|
+
*
|
|
569
|
+
*/
|
|
570
|
+
CrossFilter = 'context-menu-item-cross-filter',
|
|
571
|
+
/**
|
|
572
|
+
* The **Sync to Slack** action for chart visualizations.
|
|
573
|
+
* Enables sending chart data to Slack
|
|
574
|
+
* @example
|
|
575
|
+
* ```js
|
|
576
|
+
* disabledActions: [Action.SyncToSlack]
|
|
577
|
+
* ```
|
|
578
|
+
*
|
|
579
|
+
*/
|
|
580
|
+
SyncToSlack = 'syncToSlack',
|
|
581
|
+
/**
|
|
582
|
+
* The **Sync to Teams** action for chart visualizations.
|
|
583
|
+
* Enables sending chart data to Microsoft Teams
|
|
584
|
+
* @example
|
|
585
|
+
* ```js
|
|
586
|
+
* disabledActions: [Action.SyncToTeams]
|
|
587
|
+
* ```
|
|
588
|
+
*
|
|
589
|
+
*/
|
|
590
|
+
SyncToTeams = 'syncToTeams',
|
|
591
|
+
/**
|
|
592
|
+
* The **Remove** action for cross filters in charts.
|
|
593
|
+
* Removes applied filters from a chart visualization.
|
|
594
|
+
* @example
|
|
595
|
+
* ```js
|
|
596
|
+
* disabledActions: [Action.RemoveCrossFilter]
|
|
597
|
+
* ```
|
|
598
|
+
*
|
|
599
|
+
*/
|
|
600
|
+
RemoveCrossFilter = 'context-menu-item-remove-cross-filter',
|
|
601
|
+
/**
|
|
602
|
+
* The **Aggregate** option in chart axis customization.
|
|
603
|
+
* Provides aggregation options for analyzing chart data.
|
|
604
|
+
* @example
|
|
605
|
+
* ```js
|
|
606
|
+
* disabledActions: [Action.AxisMenuAggregate]
|
|
607
|
+
* ```
|
|
608
|
+
*
|
|
609
|
+
*/
|
|
610
|
+
AxisMenuAggregate = 'axisMenuAggregate',
|
|
611
|
+
/**
|
|
612
|
+
* The **Time bucket** option in chart axis customization.
|
|
613
|
+
* Enables defining time metrics for date comparison in charts.
|
|
614
|
+
* @example
|
|
615
|
+
* ```js
|
|
616
|
+
* disabledActions: [Action.AxisMenuTimeBucket]
|
|
617
|
+
* ```
|
|
618
|
+
*
|
|
619
|
+
*/
|
|
620
|
+
AxisMenuTimeBucket = 'axisMenuTimeBucket',
|
|
621
|
+
/**
|
|
622
|
+
* The **Filter** action in chart axis customization.
|
|
623
|
+
* @example
|
|
624
|
+
* ```js
|
|
625
|
+
* disabledActions: [Action.AxisMenuFilter]
|
|
626
|
+
* ```
|
|
627
|
+
*
|
|
628
|
+
*/
|
|
629
|
+
AxisMenuFilter = 'axisMenuFilter',
|
|
630
|
+
/**
|
|
631
|
+
* The **Conditional formatting** action for charts.
|
|
632
|
+
* Enables adding rules for conditional formatting of data points.
|
|
633
|
+
* @example
|
|
634
|
+
* ```js
|
|
635
|
+
* disabledActions: [Action.AxisMenuConditionalFormat]
|
|
636
|
+
* ```
|
|
637
|
+
*
|
|
638
|
+
*/
|
|
639
|
+
AxisMenuConditionalFormat = 'axisMenuConditionalFormat',
|
|
640
|
+
|
|
641
|
+
/**
|
|
642
|
+
* The **Sort** menu action for chart axes.
|
|
643
|
+
* Enables sorting data in ascending or descending order.
|
|
644
|
+
* @example
|
|
645
|
+
* ```js
|
|
646
|
+
* disabledActions: [Action.AxisMenuSort]
|
|
647
|
+
* ```
|
|
648
|
+
*
|
|
649
|
+
*/
|
|
650
|
+
AxisMenuSort = 'axisMenuSort',
|
|
651
|
+
/**
|
|
652
|
+
* The **Group** option in chart axis customization.
|
|
653
|
+
* Enables grouping data points using same measurement units.
|
|
654
|
+
* @example
|
|
655
|
+
* ```js
|
|
656
|
+
* disabledActions: [Action.AxisMenuGroup]
|
|
657
|
+
* ```
|
|
658
|
+
*
|
|
659
|
+
*/
|
|
660
|
+
AxisMenuGroup = 'axisMenuGroup',
|
|
661
|
+
/**
|
|
662
|
+
* The **Position** option in chart axis customization.
|
|
663
|
+
* Enables changing axis position in the chart.
|
|
664
|
+
* @example
|
|
665
|
+
* ```js
|
|
666
|
+
* disabledActions: [Action.AxisMenuPosition]
|
|
667
|
+
* ```
|
|
668
|
+
*
|
|
669
|
+
*/
|
|
670
|
+
AxisMenuPosition = 'axisMenuPosition',
|
|
671
|
+
/**
|
|
672
|
+
* The **Rename** option in chart axis customization.
|
|
673
|
+
* Enables renaming axis labels in the chart.
|
|
674
|
+
* @example
|
|
675
|
+
* ```js
|
|
676
|
+
* disabledActions: [Action.AxisMenuRename]
|
|
677
|
+
* ```
|
|
678
|
+
*
|
|
679
|
+
*/
|
|
680
|
+
AxisMenuRename = 'axisMenuRename',
|
|
681
|
+
/**
|
|
682
|
+
* The **Edit** action in chart axis customization.
|
|
683
|
+
* Enables editing axis properties including name, position, and format.
|
|
684
|
+
* @example
|
|
685
|
+
* ```js
|
|
686
|
+
* disabledActions: [Action.AxisMenuEdit]
|
|
687
|
+
* ```
|
|
688
|
+
*
|
|
689
|
+
*/
|
|
690
|
+
AxisMenuEdit = 'axisMenuEdit',
|
|
691
|
+
/**
|
|
692
|
+
* The **Number format** action for chart data labels.
|
|
693
|
+
* Enables customizing number formats in the chart.
|
|
694
|
+
* @example
|
|
695
|
+
* ```js
|
|
696
|
+
* disabledActions: [Action.AxisMenuNumberFormat]
|
|
697
|
+
* ```
|
|
698
|
+
*
|
|
699
|
+
*/
|
|
700
|
+
AxisMenuNumberFormat = 'axisMenuNumberFormat',
|
|
701
|
+
/**
|
|
702
|
+
* The **Text wrapping** action for chart labels.
|
|
703
|
+
* Enables text wrapping configuration in charts.
|
|
704
|
+
* @example
|
|
705
|
+
* ```js
|
|
706
|
+
* disabledActions: [Action.AxisMenuTextWrapping]
|
|
707
|
+
* ```
|
|
708
|
+
*
|
|
709
|
+
*/
|
|
710
|
+
AxisMenuTextWrapping = 'axisMenuTextWrapping',
|
|
711
|
+
/**
|
|
712
|
+
* The **Remove** action in chart axis customization.
|
|
713
|
+
* Enables removing axes or data labels from the chart.
|
|
714
|
+
* @example
|
|
715
|
+
* ```js
|
|
716
|
+
* disabledActions: [Action.AxisMenuRemove]
|
|
717
|
+
* ```
|
|
718
|
+
*
|
|
719
|
+
*/
|
|
720
|
+
AxisMenuRemove = 'axisMenuRemove',
|
|
721
|
+
/**
|
|
722
|
+
* @hidden
|
|
723
|
+
*/
|
|
724
|
+
InsertInToSlide = 'insertInToSlide',
|
|
725
|
+
/**
|
|
726
|
+
* The **Rename** menu action for chart configurations.
|
|
727
|
+
* Enables renaming charts and visualizations.
|
|
728
|
+
* @example
|
|
729
|
+
* ```js
|
|
730
|
+
* disabledActions: [Action.RenameModalTitleDescription]
|
|
731
|
+
* ```
|
|
732
|
+
*
|
|
733
|
+
*/
|
|
734
|
+
RenameModalTitleDescription = 'renameModalTitleDescription',
|
|
735
|
+
/**
|
|
736
|
+
* Request verification for chart configurations.
|
|
737
|
+
* @example
|
|
738
|
+
* ```js
|
|
739
|
+
* disabledActions: [Action.RequestVerification]
|
|
740
|
+
* ```
|
|
741
|
+
*
|
|
742
|
+
*/
|
|
743
|
+
RequestVerification = 'requestVerification',
|
|
744
|
+
|
|
745
|
+
/**
|
|
746
|
+
* Enables marking a chart configuration as verified.
|
|
747
|
+
* @example
|
|
748
|
+
* ```js
|
|
749
|
+
* disabledActions: [Action.MarkAsVerified]
|
|
750
|
+
* ```
|
|
751
|
+
*
|
|
752
|
+
*/
|
|
753
|
+
MarkAsVerified = 'markAsVerified',
|
|
754
|
+
/**
|
|
755
|
+
* The **Add Tab** action for chart organization.
|
|
756
|
+
* Enables adding new tabs to organize multiple charts.
|
|
757
|
+
* @example
|
|
758
|
+
* ```js
|
|
759
|
+
* disabledActions: [Action.AddTab]
|
|
760
|
+
* ```
|
|
761
|
+
*
|
|
762
|
+
*/
|
|
763
|
+
AddTab = 'addTab',
|
|
764
|
+
/**
|
|
765
|
+
* Initiates contextual change analysis on KPI charts.
|
|
766
|
+
* @example
|
|
767
|
+
* ```js
|
|
768
|
+
* disabledActions: [Action.EnableContextualChangeAnalysis]
|
|
769
|
+
* ```
|
|
770
|
+
*
|
|
771
|
+
*/
|
|
772
|
+
EnableContextualChangeAnalysis = 'enableContextualChangeAnalysis',
|
|
773
|
+
/**
|
|
774
|
+
* Displays the Sage query for chart data.
|
|
775
|
+
* @example
|
|
776
|
+
* ```js
|
|
777
|
+
* disabledActions: [Action.ShowSageQuery]
|
|
778
|
+
* ```
|
|
779
|
+
*
|
|
780
|
+
*/
|
|
781
|
+
ShowSageQuery = 'showSageQuery',
|
|
782
|
+
/**
|
|
783
|
+
* Enables editing AI-generated chart configurations.
|
|
784
|
+
* @example
|
|
785
|
+
* ```js
|
|
786
|
+
* disabledActions: [Action.EditSageAnswer]
|
|
787
|
+
* ```
|
|
788
|
+
*
|
|
789
|
+
*/
|
|
790
|
+
EditSageAnswer = 'editSageAnswer',
|
|
791
|
+
/**
|
|
792
|
+
* Enables providing feedback on AI-generated chart visualizations.
|
|
793
|
+
* @example
|
|
794
|
+
* ```js
|
|
795
|
+
* disabledActions: [Action.SageAnswerFeedback]
|
|
796
|
+
* ```
|
|
797
|
+
*
|
|
798
|
+
*/
|
|
799
|
+
SageAnswerFeedback = 'sageAnswerFeedback',
|
|
800
|
+
/**
|
|
801
|
+
* Allows modifications to AI-generated chart configurations.
|
|
802
|
+
* @example
|
|
803
|
+
* ```js
|
|
804
|
+
* disabledActions: [Action.ModifySageAnswer]
|
|
805
|
+
* ```
|
|
806
|
+
*
|
|
807
|
+
*/
|
|
808
|
+
ModifySageAnswer = 'modifySageAnswer',
|
|
809
|
+
/**
|
|
810
|
+
* The **Move to Tab** menu action for chart organization.
|
|
811
|
+
* Enables moving charts between different tabs.
|
|
812
|
+
* @example
|
|
813
|
+
* ```js
|
|
814
|
+
* disabledActions: [Action.MoveToTab]
|
|
815
|
+
* ```
|
|
816
|
+
*/
|
|
817
|
+
MoveToTab = 'onContainerMove',
|
|
818
|
+
/**
|
|
819
|
+
* The **Manage Alerts** menu action for KPI charts.
|
|
820
|
+
* @example
|
|
821
|
+
* ```js
|
|
822
|
+
* disabledActions: [Action.ManageMonitor]
|
|
823
|
+
* ```
|
|
824
|
+
*/
|
|
825
|
+
ManageMonitor = 'manageMonitor',
|
|
826
|
+
/**
|
|
827
|
+
* Action for Personalized Views dropdown in chart configuration
|
|
828
|
+
* @example
|
|
829
|
+
* ```js
|
|
830
|
+
* disabledActions: [Action.PersonalisedViewsDropdown]
|
|
831
|
+
* ```
|
|
832
|
+
*
|
|
833
|
+
*/
|
|
834
|
+
PersonalisedViewsDropdown = 'personalisedViewsDropdown',
|
|
835
|
+
/**
|
|
836
|
+
* Action for Recently Visited Users in chart views
|
|
837
|
+
* @example
|
|
838
|
+
* ```js
|
|
839
|
+
* disabledActions: [Action.LiveboardUsers]
|
|
840
|
+
* ```
|
|
841
|
+
*
|
|
842
|
+
*/
|
|
843
|
+
LiveboardUsers = 'liveboardUsers',
|
|
844
|
+
|
|
845
|
+
/**
|
|
846
|
+
* Action ID for the Parent TML action in chart configurations.
|
|
847
|
+
* The parent action **TML** must be included to access TML-related options
|
|
848
|
+
* for chart customization
|
|
849
|
+
* @example
|
|
850
|
+
* ```js
|
|
851
|
+
* // to include specific TML actions
|
|
852
|
+
* visibleActions: [Action.TML, Action.ExportTML, Action.EditTML]
|
|
853
|
+
*
|
|
854
|
+
* ```
|
|
855
|
+
* @example
|
|
856
|
+
* ```js
|
|
857
|
+
* hiddenAction: [Action.TML] // hide all TML actions
|
|
858
|
+
* disabledActions: [Action.TML] // to disable all TML actions
|
|
859
|
+
* ```
|
|
860
|
+
*
|
|
861
|
+
*/
|
|
862
|
+
TML = 'tml',
|
|
863
|
+
|
|
864
|
+
/**
|
|
865
|
+
* Action for creating new chart configurations
|
|
866
|
+
* @example
|
|
867
|
+
* ```js
|
|
868
|
+
* hiddenAction: [Action.CreateLiveboard]
|
|
869
|
+
* disabledActions: [Action.CreateLiveboard]
|
|
870
|
+
* ```
|
|
871
|
+
*
|
|
872
|
+
*/
|
|
873
|
+
CreateLiveboard = 'createLiveboard',
|
|
874
|
+
|
|
875
|
+
/**
|
|
876
|
+
* Action ID for displaying verified chart configurations
|
|
877
|
+
* @example
|
|
878
|
+
* ```js
|
|
879
|
+
* hiddenAction: [Action.VerifiedLiveboard]
|
|
880
|
+
* ```
|
|
881
|
+
*
|
|
882
|
+
*/
|
|
883
|
+
VerifiedLiveboard = 'verifiedLiveboard',
|
|
884
|
+
|
|
885
|
+
/**
|
|
886
|
+
* Action ID for AI assistant in chart creation
|
|
887
|
+
* @example
|
|
888
|
+
* ```js
|
|
889
|
+
* hiddenAction: [Action.AskAi]
|
|
890
|
+
* ```
|
|
891
|
+
*
|
|
892
|
+
*/
|
|
893
|
+
AskAi = 'AskAi',
|
|
894
|
+
|
|
895
|
+
/**
|
|
896
|
+
* The **Add KPI to Watchlist** action for monitoring charts.
|
|
897
|
+
* @example
|
|
898
|
+
* ```js
|
|
899
|
+
* disabledActions: [Action.AddToWatchlist]
|
|
900
|
+
* ```
|
|
901
|
+
*
|
|
902
|
+
*/
|
|
903
|
+
AddToWatchlist = 'addToWatchlist',
|
|
904
|
+
|
|
905
|
+
/**
|
|
906
|
+
* The **Remove from watchlist** menu action for chart monitoring.
|
|
907
|
+
* @example
|
|
908
|
+
* ```js
|
|
909
|
+
* disabledActions: [Action.RemoveFromWatchlist]
|
|
910
|
+
* ```
|
|
911
|
+
*
|
|
912
|
+
*/
|
|
913
|
+
RemoveFromWatchlist = 'removeFromWatchlist',
|
|
914
|
+
|
|
915
|
+
/**
|
|
916
|
+
* The **Organize Favorites** action for chart management.
|
|
917
|
+
* @example
|
|
918
|
+
* ```js
|
|
919
|
+
* disabledActions: [Action.OrganiseFavourites]
|
|
920
|
+
* ```
|
|
921
|
+
*
|
|
922
|
+
*/
|
|
923
|
+
OrganiseFavourites = 'organiseFavourites',
|
|
924
|
+
|
|
925
|
+
/**
|
|
926
|
+
* Action ID for AI-powered chart insights
|
|
927
|
+
* @example
|
|
928
|
+
* ```js
|
|
929
|
+
* hiddenAction: [Action.AIHighlights]
|
|
930
|
+
* ```
|
|
931
|
+
*
|
|
932
|
+
*/
|
|
933
|
+
AIHighlights = 'AIHighlights',
|
|
934
|
+
|
|
935
|
+
/**
|
|
936
|
+
* Action ID for editing scheduled chart updates
|
|
937
|
+
* @example
|
|
938
|
+
* ```js
|
|
939
|
+
* disabledActions: [Action.EditScheduleHomepage]
|
|
940
|
+
* ```
|
|
941
|
+
*
|
|
942
|
+
*/
|
|
943
|
+
EditScheduleHomepage = 'editScheduleHomepage',
|
|
944
|
+
|
|
945
|
+
/**
|
|
946
|
+
* Action ID for pausing scheduled chart updates
|
|
947
|
+
* @example
|
|
948
|
+
* ```js
|
|
949
|
+
* disabledActions: [Action.PauseScheduleHomepage]
|
|
950
|
+
* ```
|
|
951
|
+
*
|
|
952
|
+
*/
|
|
953
|
+
PauseScheduleHomepage = 'pauseScheduleHomepage',
|
|
954
|
+
|
|
955
|
+
/**
|
|
956
|
+
* Action ID for viewing scheduled chart update history
|
|
957
|
+
* @example
|
|
958
|
+
* ```js
|
|
959
|
+
* disabledActions: [Action.ViewScheduleRunHomepage]
|
|
960
|
+
* ```
|
|
961
|
+
*
|
|
962
|
+
*/
|
|
963
|
+
ViewScheduleRunHomepage = 'viewScheduleRunHomepage',
|
|
964
|
+
|
|
965
|
+
/**
|
|
966
|
+
* Action ID for unsubscribing from scheduled chart updates
|
|
967
|
+
* @example
|
|
968
|
+
* ```js
|
|
969
|
+
* disabledActions: [Action.UnsubscribeScheduleHomepage]
|
|
970
|
+
* ```
|
|
971
|
+
*
|
|
972
|
+
*/
|
|
973
|
+
UnsubscribeScheduleHomepage = 'unsubscribeScheduleHomepage',
|
|
974
|
+
|
|
975
|
+
/**
|
|
976
|
+
* The **Manage Tags** action for chart organization.
|
|
977
|
+
* @example
|
|
978
|
+
* ```js
|
|
979
|
+
* disabledActions: [Action.ManageTags]
|
|
980
|
+
* ```
|
|
981
|
+
*
|
|
982
|
+
*/
|
|
983
|
+
ManageTags = 'manageTags',
|
|
984
|
+
|
|
985
|
+
/**
|
|
986
|
+
* Action ID for deleting scheduled chart updates
|
|
987
|
+
* @example
|
|
988
|
+
* ```js
|
|
989
|
+
* disabledActions: [Action.DeleteScheduleHomepage]
|
|
990
|
+
* ```
|
|
991
|
+
*
|
|
992
|
+
*/
|
|
993
|
+
DeleteScheduleHomepage = 'deleteScheduleHomepage',
|
|
994
|
+
|
|
995
|
+
/**
|
|
996
|
+
* The **Analyze CTA** action for KPI charts.
|
|
997
|
+
* Enables deep analysis of KPI visualization data.
|
|
998
|
+
* @example
|
|
999
|
+
* ```js
|
|
1000
|
+
* disabledActions: [Action.KPIAnalysisCTA]
|
|
1001
|
+
* ```
|
|
1002
|
+
*
|
|
1003
|
+
*/
|
|
1004
|
+
KPIAnalysisCTA = 'kpiAnalysisCTA',
|
|
1005
|
+
|
|
1006
|
+
/**
|
|
1007
|
+
* Action ID for disabling reordering in chart configurations
|
|
1008
|
+
* @example
|
|
1009
|
+
* ```js
|
|
1010
|
+
* const disabledActions = [Action.DisableChipReorder]
|
|
1011
|
+
* ```
|
|
1012
|
+
*
|
|
1013
|
+
*/
|
|
1014
|
+
DisableChipReorder = 'disableChipReorder',
|
|
1015
|
+
}
|