@grafana/plugin-e2e 0.5.0 → 0.6.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/e2e-selectors/resolver.test.js +0 -6
- package/dist/e2e-selectors/types.d.ts +0 -552
- package/dist/e2e-selectors/versioned/components.d.ts +49 -385
- package/dist/e2e-selectors/versioned/components.js +50 -387
- package/dist/e2e-selectors/versioned/pages.d.ts +57 -299
- package/dist/e2e-selectors/versioned/pages.js +60 -300
- package/package.json +2 -2
|
@@ -4,7 +4,6 @@ const resolver_1 = require("./resolver");
|
|
|
4
4
|
const versioned_1 = require("./versioned");
|
|
5
5
|
const apis_1 = require("./versioned/apis");
|
|
6
6
|
const constants_1 = require("./versioned/constants");
|
|
7
|
-
const GRAFANA_VERSION = '10.2.0';
|
|
8
7
|
let versionedSelectors = {
|
|
9
8
|
components: versioned_1.versionedComponents,
|
|
10
9
|
pages: versioned_1.versionedPages,
|
|
@@ -15,11 +14,6 @@ describe('resolveSelectors', () => {
|
|
|
15
14
|
afterEach(() => {
|
|
16
15
|
versionedSelectors = originalVersionedSelectors;
|
|
17
16
|
});
|
|
18
|
-
test('handles selector without version', () => {
|
|
19
|
-
versionedSelectors.components.PanelEditor.General.content = 'Panel editor content';
|
|
20
|
-
const selectors = (0, resolver_1.resolveSelectors)(versionedSelectors, GRAFANA_VERSION);
|
|
21
|
-
expect(selectors.components.PanelEditor.General.content).toBe('Panel editor content');
|
|
22
|
-
});
|
|
23
17
|
test('returns the right selector value when it has multiple versions', () => {
|
|
24
18
|
versionedSelectors.components.CodeEditor.container = {
|
|
25
19
|
'10.2.3': 'data-testid Code editor container',
|
|
@@ -17,356 +17,61 @@ export type APIs = {
|
|
|
17
17
|
};
|
|
18
18
|
};
|
|
19
19
|
export type Components = {
|
|
20
|
-
Breadcrumbs: {
|
|
21
|
-
breadcrumb: (title: string) => string;
|
|
22
|
-
};
|
|
23
20
|
TimePicker: {
|
|
24
21
|
openButton: string;
|
|
25
22
|
fromField: string;
|
|
26
23
|
toField: string;
|
|
27
24
|
applyTimeRange: string;
|
|
28
|
-
calendar: {
|
|
29
|
-
label: string;
|
|
30
|
-
openButton: string;
|
|
31
|
-
closeButton: string;
|
|
32
|
-
};
|
|
33
25
|
absoluteTimeRangeTitle: string;
|
|
34
26
|
};
|
|
35
|
-
DataSourcePermissions: {
|
|
36
|
-
roleType: string;
|
|
37
|
-
rolePicker: string;
|
|
38
|
-
permissionLevel: string;
|
|
39
|
-
};
|
|
40
|
-
DataSource: {
|
|
41
|
-
TestData: {
|
|
42
|
-
QueryTab: {
|
|
43
|
-
scenarioSelectContainer: string;
|
|
44
|
-
scenarioSelect: string;
|
|
45
|
-
max: string;
|
|
46
|
-
min: string;
|
|
47
|
-
noise: string;
|
|
48
|
-
seriesCount: string;
|
|
49
|
-
spread: string;
|
|
50
|
-
startValue: string;
|
|
51
|
-
drop: string;
|
|
52
|
-
};
|
|
53
|
-
};
|
|
54
|
-
DataSourceHttpSettings: {
|
|
55
|
-
urlInput: string;
|
|
56
|
-
};
|
|
57
|
-
Jaeger: {
|
|
58
|
-
traceIDInput: string;
|
|
59
|
-
};
|
|
60
|
-
Prometheus: {
|
|
61
|
-
configPage: {
|
|
62
|
-
connectionSettings: string;
|
|
63
|
-
exemplarsAddButton: string;
|
|
64
|
-
internalLinkSwitch: string;
|
|
65
|
-
};
|
|
66
|
-
exemplarMarker: string;
|
|
67
|
-
};
|
|
68
|
-
};
|
|
69
|
-
Menu: {
|
|
70
|
-
SubMenu: {
|
|
71
|
-
container: string;
|
|
72
|
-
icon: string;
|
|
73
|
-
};
|
|
74
|
-
};
|
|
75
27
|
Panels: {
|
|
76
28
|
Panel: {
|
|
77
|
-
title: (title: string) => string;
|
|
78
|
-
headerItems: (item: string) => string;
|
|
79
|
-
menuItems: (item: string) => string;
|
|
80
|
-
menu: (title: string) => string;
|
|
81
|
-
containerByTitle: (title: string) => string;
|
|
82
29
|
headerCornerInfo: (mode: string) => string;
|
|
83
30
|
status: (status: string) => string;
|
|
84
|
-
loadingBar: () => string;
|
|
85
|
-
HoverWidget: {
|
|
86
|
-
container: string;
|
|
87
|
-
dragIcon: string;
|
|
88
|
-
};
|
|
89
|
-
};
|
|
90
|
-
Visualization: {
|
|
91
|
-
Graph: {
|
|
92
|
-
container: string;
|
|
93
|
-
VisualizationTab: {
|
|
94
|
-
legendSection: string;
|
|
95
|
-
};
|
|
96
|
-
Legend: {
|
|
97
|
-
showLegendSwitch: string;
|
|
98
|
-
};
|
|
99
|
-
xAxis: {};
|
|
100
|
-
};
|
|
101
|
-
BarGauge: {
|
|
102
|
-
value: string;
|
|
103
|
-
valueV2: string;
|
|
104
|
-
};
|
|
105
|
-
PieChart: {
|
|
106
|
-
svgSlice: string;
|
|
107
|
-
};
|
|
108
|
-
Text: {};
|
|
109
|
-
Table: {
|
|
110
|
-
header: string;
|
|
111
|
-
footer: string;
|
|
112
|
-
body: string;
|
|
113
|
-
};
|
|
114
|
-
};
|
|
115
|
-
};
|
|
116
|
-
VizLegend: {
|
|
117
|
-
seriesName: (name: string) => string;
|
|
118
|
-
};
|
|
119
|
-
Drawer: {
|
|
120
|
-
General: {
|
|
121
|
-
expand: string;
|
|
122
|
-
contract: string;
|
|
123
|
-
close: string;
|
|
124
31
|
};
|
|
125
32
|
};
|
|
126
33
|
PanelEditor: {
|
|
127
34
|
General: {
|
|
128
35
|
content: string;
|
|
129
36
|
};
|
|
130
|
-
OptionsPane: {
|
|
131
|
-
content: string;
|
|
132
|
-
select: string;
|
|
133
|
-
};
|
|
134
|
-
DataPane: {
|
|
135
|
-
content: string;
|
|
136
|
-
};
|
|
137
37
|
applyButton: string;
|
|
138
38
|
toggleVizPicker: string;
|
|
139
|
-
toggleVizOptions: string;
|
|
140
|
-
toggleTableView: string;
|
|
141
|
-
showZoomField: string;
|
|
142
|
-
showAttributionField: string;
|
|
143
|
-
showScaleField: string;
|
|
144
|
-
showMeasureField: string;
|
|
145
|
-
showDebugField: string;
|
|
146
|
-
measureButton: string;
|
|
147
|
-
};
|
|
148
|
-
PanelInspector: {
|
|
149
|
-
Data: {
|
|
150
|
-
content: string;
|
|
151
|
-
};
|
|
152
|
-
Stats: {
|
|
153
|
-
content: string;
|
|
154
|
-
};
|
|
155
|
-
Json: {
|
|
156
|
-
content: string;
|
|
157
|
-
};
|
|
158
|
-
Query: {
|
|
159
|
-
content: string;
|
|
160
|
-
refreshButton: string;
|
|
161
|
-
};
|
|
162
|
-
};
|
|
163
|
-
Tab: {
|
|
164
|
-
title: (title: string) => string;
|
|
165
|
-
active: () => string;
|
|
166
39
|
};
|
|
167
40
|
RefreshPicker: {
|
|
168
|
-
runButton: string;
|
|
169
|
-
intervalButton: string;
|
|
170
41
|
runButtonV2: string;
|
|
171
|
-
intervalButtonV2: string;
|
|
172
|
-
};
|
|
173
|
-
QueryTab: {
|
|
174
|
-
content: string;
|
|
175
|
-
queryInspectorButton: string;
|
|
176
|
-
queryHistoryButton: string;
|
|
177
|
-
addQuery: string;
|
|
178
|
-
};
|
|
179
|
-
QueryHistory: {
|
|
180
|
-
queryText: string;
|
|
181
42
|
};
|
|
182
43
|
QueryEditorRows: {
|
|
183
44
|
rows: string;
|
|
184
45
|
};
|
|
185
46
|
QueryEditorRow: {
|
|
186
|
-
actionButton: (title: string) => string;
|
|
187
47
|
title: (refId: string) => string;
|
|
188
|
-
container: (refId: string) => string;
|
|
189
|
-
};
|
|
190
|
-
AlertTab: {
|
|
191
|
-
content: string;
|
|
192
48
|
};
|
|
193
49
|
Alert: {
|
|
194
|
-
/**
|
|
195
|
-
* @deprecated use alertV2 from Grafana 8.3 instead
|
|
196
|
-
*/
|
|
197
|
-
alert: (severity: string) => string;
|
|
198
50
|
alertV2: (severity: string) => string;
|
|
199
51
|
};
|
|
200
|
-
TransformTab: {
|
|
201
|
-
content: string;
|
|
202
|
-
};
|
|
203
|
-
Transforms: {
|
|
204
|
-
Reduce: {
|
|
205
|
-
modeLabel: string;
|
|
206
|
-
calculationsLabel: string;
|
|
207
|
-
};
|
|
208
|
-
SpatialOperations: {
|
|
209
|
-
actionLabel: string;
|
|
210
|
-
locationLabel: string;
|
|
211
|
-
location: {
|
|
212
|
-
autoOption: string;
|
|
213
|
-
coords: {
|
|
214
|
-
option: string;
|
|
215
|
-
latitudeFieldLabel: string;
|
|
216
|
-
longitudeFieldLabel: string;
|
|
217
|
-
};
|
|
218
|
-
geohash: {
|
|
219
|
-
option: string;
|
|
220
|
-
geohashFieldLabel: string;
|
|
221
|
-
};
|
|
222
|
-
lookup: {
|
|
223
|
-
option: string;
|
|
224
|
-
lookupFieldLabel: string;
|
|
225
|
-
gazetteerFieldLabel: string;
|
|
226
|
-
};
|
|
227
|
-
};
|
|
228
|
-
};
|
|
229
|
-
searchInput: string;
|
|
230
|
-
addTransformationButton: string;
|
|
231
|
-
};
|
|
232
|
-
NavBar: {
|
|
233
|
-
Configuration: {
|
|
234
|
-
button: string;
|
|
235
|
-
};
|
|
236
|
-
Toggle: {
|
|
237
|
-
button: string;
|
|
238
|
-
};
|
|
239
|
-
Reporting: {
|
|
240
|
-
button: string;
|
|
241
|
-
};
|
|
242
|
-
};
|
|
243
|
-
NavMenu: {
|
|
244
|
-
item: string;
|
|
245
|
-
};
|
|
246
|
-
NavToolbar: {
|
|
247
|
-
container: string;
|
|
248
|
-
};
|
|
249
52
|
PageToolbar: {
|
|
250
53
|
item: (tooltip: string) => string;
|
|
251
54
|
shotMoreItems: string;
|
|
252
|
-
container: string;
|
|
253
55
|
itemButton: (title: string) => string;
|
|
254
56
|
itemButtonTitle: string;
|
|
255
57
|
};
|
|
256
|
-
QueryEditorToolbarItem: {};
|
|
257
|
-
BackButton: {
|
|
258
|
-
backArrow: string;
|
|
259
|
-
};
|
|
260
58
|
OptionsGroup: {
|
|
261
59
|
group: (title?: string) => string;
|
|
262
60
|
toggle: (title?: string) => string;
|
|
263
61
|
groupTitle: string;
|
|
264
62
|
};
|
|
265
63
|
PluginVisualization: {
|
|
266
|
-
current: string;
|
|
267
64
|
item: (title: string) => string;
|
|
268
65
|
};
|
|
269
|
-
Select: {
|
|
270
|
-
option: string;
|
|
271
|
-
};
|
|
272
|
-
FieldConfigEditor: {
|
|
273
|
-
content: string;
|
|
274
|
-
};
|
|
275
|
-
OverridesConfigEditor: {
|
|
276
|
-
content: string;
|
|
277
|
-
};
|
|
278
|
-
FolderPicker: {
|
|
279
|
-
container: string;
|
|
280
|
-
containerV2: string;
|
|
281
|
-
input: string;
|
|
282
|
-
};
|
|
283
|
-
ReadonlyFolderPicker: {
|
|
284
|
-
container: string;
|
|
285
|
-
};
|
|
286
66
|
DataSourcePicker: {
|
|
287
67
|
container: string;
|
|
288
|
-
inputV2: string;
|
|
289
68
|
};
|
|
290
69
|
TimeZonePicker: {
|
|
291
|
-
container: string;
|
|
292
70
|
containerV2: string;
|
|
293
71
|
};
|
|
294
|
-
WeekStartPicker: {
|
|
295
|
-
container: string;
|
|
296
|
-
containerV2: string;
|
|
297
|
-
placeholder: string;
|
|
298
|
-
};
|
|
299
|
-
TraceViewer: {
|
|
300
|
-
spanBar: string;
|
|
301
|
-
};
|
|
302
|
-
QueryField: {
|
|
303
|
-
container: string;
|
|
304
|
-
};
|
|
305
|
-
QueryBuilder: {
|
|
306
|
-
queryPatterns: string;
|
|
307
|
-
labelSelect: string;
|
|
308
|
-
valueSelect: string;
|
|
309
|
-
matchOperatorSelect: string;
|
|
310
|
-
};
|
|
311
|
-
ValuePicker: {};
|
|
312
|
-
Search: {
|
|
313
|
-
section: string;
|
|
314
|
-
sectionV2: string;
|
|
315
|
-
items: string;
|
|
316
|
-
itemsV2: string;
|
|
317
|
-
cards: string;
|
|
318
|
-
dashboardItems: string;
|
|
319
|
-
};
|
|
320
|
-
DashboardLinks: {
|
|
321
|
-
container: string;
|
|
322
|
-
dropDown: string;
|
|
323
|
-
link: string;
|
|
324
|
-
};
|
|
325
|
-
LoadingIndicator: {
|
|
326
|
-
icon: string;
|
|
327
|
-
};
|
|
328
|
-
CallToActionCard: {};
|
|
329
|
-
DataLinksContextMenu: {
|
|
330
|
-
singleLink: string;
|
|
331
|
-
};
|
|
332
72
|
CodeEditor: {
|
|
333
73
|
container: string;
|
|
334
74
|
};
|
|
335
|
-
DashboardImportPage: {
|
|
336
|
-
textarea: string;
|
|
337
|
-
submit: string;
|
|
338
|
-
};
|
|
339
|
-
ImportDashboardForm: {
|
|
340
|
-
name: string;
|
|
341
|
-
submit: string;
|
|
342
|
-
};
|
|
343
|
-
PanelAlertTabContent: {
|
|
344
|
-
content: string;
|
|
345
|
-
};
|
|
346
|
-
VisualizationPreview: {};
|
|
347
|
-
ColorSwatch: {
|
|
348
|
-
name: string;
|
|
349
|
-
};
|
|
350
|
-
DashboardRow: {};
|
|
351
|
-
UserProfile: {
|
|
352
|
-
profileSaveButton: string;
|
|
353
|
-
preferencesSaveButton: string;
|
|
354
|
-
orgsTable: string;
|
|
355
|
-
sessionsTable: string;
|
|
356
|
-
};
|
|
357
|
-
FileUpload: {
|
|
358
|
-
inputField: string;
|
|
359
|
-
fileNameSpan: string;
|
|
360
|
-
};
|
|
361
|
-
DebugOverlay: {
|
|
362
|
-
wrapper: string;
|
|
363
|
-
};
|
|
364
|
-
OrgRolePicker: {
|
|
365
|
-
input: string;
|
|
366
|
-
};
|
|
367
|
-
AnalyticsToolbarButton: {
|
|
368
|
-
button: string;
|
|
369
|
-
};
|
|
370
75
|
Variables: {
|
|
371
76
|
variableOption: string;
|
|
372
77
|
};
|
|
@@ -379,13 +84,6 @@ export type Components = {
|
|
|
379
84
|
};
|
|
380
85
|
};
|
|
381
86
|
export type Pages = {
|
|
382
|
-
Login: {
|
|
383
|
-
url: string;
|
|
384
|
-
username: string;
|
|
385
|
-
password: string;
|
|
386
|
-
submit: string;
|
|
387
|
-
skip: string;
|
|
388
|
-
};
|
|
389
87
|
Home: {
|
|
390
88
|
url: string;
|
|
391
89
|
};
|
|
@@ -396,29 +94,13 @@ export type Pages = {
|
|
|
396
94
|
saveAndTest: string;
|
|
397
95
|
alert: string;
|
|
398
96
|
};
|
|
399
|
-
DataSources: {
|
|
400
|
-
url: string;
|
|
401
|
-
dataSources: (dataSourceName: string) => string;
|
|
402
|
-
};
|
|
403
97
|
EditDataSource: {
|
|
404
98
|
url: (dataSourceUid: string) => string;
|
|
405
|
-
settings: string;
|
|
406
|
-
};
|
|
407
|
-
AddDataSource: {
|
|
408
|
-
url: string;
|
|
409
|
-
/** @deprecated Use dataSourcePluginsV2 */
|
|
410
|
-
dataSourcePlugins: (pluginName: string) => string;
|
|
411
|
-
dataSourcePluginsV2: (pluginName: string) => string;
|
|
412
|
-
};
|
|
413
|
-
ConfirmModal: {
|
|
414
|
-
delete: string;
|
|
415
99
|
};
|
|
416
100
|
AddDashboard: {
|
|
417
101
|
url: string;
|
|
418
102
|
itemButton: (title: string) => string;
|
|
419
103
|
addNewPanel: string;
|
|
420
|
-
addNewRow: string;
|
|
421
|
-
addNewPanelLibrary: string;
|
|
422
104
|
itemButtonAddViz: string;
|
|
423
105
|
Settings: {
|
|
424
106
|
Annotations: {
|
|
@@ -441,36 +123,7 @@ export type Pages = {
|
|
|
441
123
|
};
|
|
442
124
|
Dashboard: {
|
|
443
125
|
url: (uid: string) => string;
|
|
444
|
-
DashNav: {
|
|
445
|
-
nav: string;
|
|
446
|
-
navV2: string;
|
|
447
|
-
publicDashboardTag: string;
|
|
448
|
-
};
|
|
449
|
-
SubMenu: {
|
|
450
|
-
submenu: string;
|
|
451
|
-
submenuItem: string;
|
|
452
|
-
submenuItemLabels: (item: string) => string;
|
|
453
|
-
submenuItemValueDropDownValueLinkTexts: (item: string) => string;
|
|
454
|
-
submenuItemValueDropDownDropDown: string;
|
|
455
|
-
submenuItemValueDropDownOptionTexts: (item: string) => string;
|
|
456
|
-
Annotations: {
|
|
457
|
-
annotationsWrapper: string;
|
|
458
|
-
annotationLabel: (label: string) => string;
|
|
459
|
-
annotationToggle: (label: string) => string;
|
|
460
|
-
};
|
|
461
|
-
};
|
|
462
126
|
Settings: {
|
|
463
|
-
Actions: {
|
|
464
|
-
close: string;
|
|
465
|
-
};
|
|
466
|
-
General: {
|
|
467
|
-
deleteDashBoard: string;
|
|
468
|
-
sectionItems: (item: string) => string;
|
|
469
|
-
saveDashBoard: string;
|
|
470
|
-
saveAsDashBoard: string;
|
|
471
|
-
timezone: string;
|
|
472
|
-
title: string;
|
|
473
|
-
};
|
|
474
127
|
Annotations: {
|
|
475
128
|
Edit: {
|
|
476
129
|
url: (dashboardUid: string, annotationIndex: string) => string;
|
|
@@ -483,231 +136,26 @@ export type Pages = {
|
|
|
483
136
|
addAnnotationCTA: string;
|
|
484
137
|
addAnnotationCTAV2: string;
|
|
485
138
|
};
|
|
486
|
-
Settings: {
|
|
487
|
-
name: string;
|
|
488
|
-
};
|
|
489
|
-
NewAnnotation: {
|
|
490
|
-
panelFilterSelect: string;
|
|
491
|
-
showInLabel: string;
|
|
492
|
-
previewInDashboard: string;
|
|
493
|
-
};
|
|
494
139
|
};
|
|
495
140
|
Variables: {
|
|
496
141
|
List: {
|
|
497
142
|
url: (dashboardUid: string) => string;
|
|
498
143
|
newButton: string;
|
|
499
|
-
table: string;
|
|
500
|
-
tableRowNameFields: (variableName: string) => string;
|
|
501
|
-
tableRowDefinitionFields: (variableName: string) => string;
|
|
502
|
-
tableRowArrowUpButtons: (variableName: string) => string;
|
|
503
|
-
tableRowArrowDownButtons: (variableName: string) => string;
|
|
504
|
-
tableRowDuplicateButtons: (variableName: string) => string;
|
|
505
|
-
tableRowRemoveButtons: (variableName: string) => string;
|
|
506
144
|
addVariableCTAV2: (variableName: string) => string;
|
|
507
145
|
addVariableCTAV2Item: string;
|
|
508
146
|
};
|
|
509
147
|
Edit: {
|
|
510
148
|
url: (dashboardUid: string, editIndex: string) => string;
|
|
511
149
|
General: {
|
|
512
|
-
headerLink: string;
|
|
513
|
-
modeLabelNew: string;
|
|
514
|
-
modeLabelEdit: string;
|
|
515
|
-
generalNameInput: string;
|
|
516
|
-
generalNameInputV2: string;
|
|
517
|
-
generalTypeSelect: string;
|
|
518
150
|
generalTypeSelectV2: string;
|
|
519
|
-
generalLabelInput: string;
|
|
520
|
-
generalLabelInputV2: string;
|
|
521
|
-
generalHideSelect: string;
|
|
522
|
-
generalHideSelectV2: string;
|
|
523
|
-
selectionOptionsMultiSwitch: string;
|
|
524
|
-
selectionOptionsIncludeAllSwitch: string;
|
|
525
|
-
selectionOptionsCustomAllInput: string;
|
|
526
|
-
selectionOptionsCustomAllInputV2: string;
|
|
527
151
|
previewOfValuesOption: string;
|
|
528
152
|
submitButton: string;
|
|
529
|
-
applyButton: string;
|
|
530
|
-
};
|
|
531
|
-
QueryVariable: {
|
|
532
|
-
queryOptionsRefreshSelect: string;
|
|
533
|
-
queryOptionsRefreshSelectV2: string;
|
|
534
|
-
queryOptionsRegExInput: string;
|
|
535
|
-
queryOptionsRegExInputV2: string;
|
|
536
|
-
queryOptionsSortSelect: string;
|
|
537
|
-
queryOptionsSortSelectV2: string;
|
|
538
|
-
queryOptionsQueryInput: string;
|
|
539
|
-
valueGroupsTagsEnabledSwitch: string;
|
|
540
|
-
valueGroupsTagsTagsQueryInput: string;
|
|
541
|
-
valueGroupsTagsTagsValuesQueryInput: string;
|
|
542
|
-
};
|
|
543
|
-
ConstantVariable: {
|
|
544
|
-
constantOptionsQueryInput: string;
|
|
545
|
-
constantOptionsQueryInputV2: string;
|
|
546
|
-
};
|
|
547
|
-
DatasourceVariable: {
|
|
548
|
-
datasourceSelect: string;
|
|
549
|
-
};
|
|
550
|
-
TextBoxVariable: {
|
|
551
|
-
textBoxOptionsQueryInput: string;
|
|
552
|
-
textBoxOptionsQueryInputV2: string;
|
|
553
153
|
};
|
|
554
|
-
CustomVariable: {
|
|
555
|
-
customValueInput: string;
|
|
556
|
-
};
|
|
557
|
-
IntervalVariable: {
|
|
558
|
-
intervalsValueInput: string;
|
|
559
|
-
};
|
|
560
|
-
};
|
|
561
|
-
};
|
|
562
|
-
};
|
|
563
|
-
Annotations: {
|
|
564
|
-
marker: string;
|
|
565
|
-
};
|
|
566
|
-
Rows: {
|
|
567
|
-
Repeated: {
|
|
568
|
-
ConfigSection: {
|
|
569
|
-
warningMessage: string;
|
|
570
154
|
};
|
|
571
155
|
};
|
|
572
156
|
};
|
|
573
157
|
};
|
|
574
|
-
Dashboards: {
|
|
575
|
-
url: string;
|
|
576
|
-
dashboards: (title: string) => string;
|
|
577
|
-
};
|
|
578
|
-
SaveDashboardAsModal: {
|
|
579
|
-
newName: string;
|
|
580
|
-
save: string;
|
|
581
|
-
};
|
|
582
|
-
SaveDashboardModal: {
|
|
583
|
-
save: string;
|
|
584
|
-
saveVariables: string;
|
|
585
|
-
saveTimerange: string;
|
|
586
|
-
};
|
|
587
|
-
SharePanelModal: {
|
|
588
|
-
linkToRenderedImage: string;
|
|
589
|
-
};
|
|
590
|
-
ShareDashboardModal: {
|
|
591
|
-
shareButton: string;
|
|
592
|
-
PublicDashboard: {
|
|
593
|
-
Tab: string;
|
|
594
|
-
WillBePublicCheckbox: string;
|
|
595
|
-
LimitedDSCheckbox: string;
|
|
596
|
-
CostIncreaseCheckbox: string;
|
|
597
|
-
PauseSwitch: string;
|
|
598
|
-
EnableAnnotationsSwitch: string;
|
|
599
|
-
CreateButton: string;
|
|
600
|
-
DeleteButton: string;
|
|
601
|
-
CopyUrlInput: string;
|
|
602
|
-
CopyUrlButton: string;
|
|
603
|
-
SettingsDropdown: string;
|
|
604
|
-
TemplateVariablesWarningAlert: string;
|
|
605
|
-
UnsupportedDataSourcesWarningAlert: string;
|
|
606
|
-
NoUpsertPermissionsWarningAlert: string;
|
|
607
|
-
EnableTimeRangeSwitch: string;
|
|
608
|
-
EmailSharingConfiguration: {
|
|
609
|
-
Container: string;
|
|
610
|
-
ShareType: string;
|
|
611
|
-
EmailSharingInput: string;
|
|
612
|
-
EmailSharingInviteButton: string;
|
|
613
|
-
EmailSharingList: string;
|
|
614
|
-
DeleteEmail: string;
|
|
615
|
-
ReshareLink: string;
|
|
616
|
-
};
|
|
617
|
-
};
|
|
618
|
-
};
|
|
619
|
-
PublicDashboard: {
|
|
620
|
-
page: string;
|
|
621
|
-
NotAvailable: {
|
|
622
|
-
container: string;
|
|
623
|
-
title: string;
|
|
624
|
-
pausedDescription: string;
|
|
625
|
-
};
|
|
626
|
-
};
|
|
627
|
-
RequestViewAccess: {
|
|
628
|
-
form: string;
|
|
629
|
-
recipientInput: string;
|
|
630
|
-
submitButton: string;
|
|
631
|
-
};
|
|
632
158
|
Explore: {
|
|
633
159
|
url: string;
|
|
634
|
-
General: {
|
|
635
|
-
container: string;
|
|
636
|
-
graph: string;
|
|
637
|
-
table: string;
|
|
638
|
-
scrollView: string;
|
|
639
|
-
};
|
|
640
|
-
};
|
|
641
|
-
SoloPanel: {
|
|
642
|
-
url: (page: string) => string;
|
|
643
|
-
};
|
|
644
|
-
PluginsList: {
|
|
645
|
-
page: string;
|
|
646
|
-
list: string;
|
|
647
|
-
listItem: string;
|
|
648
|
-
signatureErrorNotice: string;
|
|
649
|
-
};
|
|
650
|
-
PluginPage: {
|
|
651
|
-
page: string;
|
|
652
|
-
signatureInfo: string;
|
|
653
|
-
disabledInfo: string;
|
|
654
|
-
};
|
|
655
|
-
PlaylistForm: {
|
|
656
|
-
name: string;
|
|
657
|
-
interval: string;
|
|
658
|
-
itemDelete: string;
|
|
659
|
-
};
|
|
660
|
-
BrowseDashboards: {
|
|
661
|
-
table: {
|
|
662
|
-
body: string;
|
|
663
|
-
row: (uid: string) => string;
|
|
664
|
-
checkbox: (uid: string) => string;
|
|
665
|
-
};
|
|
666
|
-
};
|
|
667
|
-
Search: {
|
|
668
|
-
url: string;
|
|
669
|
-
FolderView: {
|
|
670
|
-
url: string;
|
|
671
|
-
};
|
|
672
|
-
};
|
|
673
|
-
PublicDashboards: {
|
|
674
|
-
ListItem: {
|
|
675
|
-
linkButton: string;
|
|
676
|
-
configButton: string;
|
|
677
|
-
trashcanButton: string;
|
|
678
|
-
pauseSwitch: string;
|
|
679
|
-
};
|
|
680
|
-
};
|
|
681
|
-
UserListPage: {
|
|
682
|
-
tabs: {
|
|
683
|
-
allUsers: string;
|
|
684
|
-
orgUsers: string;
|
|
685
|
-
publicDashboardsUsers: string;
|
|
686
|
-
users: string;
|
|
687
|
-
};
|
|
688
|
-
org: {
|
|
689
|
-
url: string;
|
|
690
|
-
};
|
|
691
|
-
admin: {
|
|
692
|
-
url: string;
|
|
693
|
-
};
|
|
694
|
-
publicDashboards: {
|
|
695
|
-
container: string;
|
|
696
|
-
};
|
|
697
|
-
UserListAdminPage: {
|
|
698
|
-
container: string;
|
|
699
|
-
};
|
|
700
|
-
UsersListPage: {
|
|
701
|
-
container: string;
|
|
702
|
-
};
|
|
703
|
-
UsersListPublicDashboardsPage: {
|
|
704
|
-
container: string;
|
|
705
|
-
DashboardsListModal: {
|
|
706
|
-
listItem: (uid: string) => string;
|
|
707
|
-
};
|
|
708
|
-
};
|
|
709
|
-
};
|
|
710
|
-
ProfilePage: {
|
|
711
|
-
url: string;
|
|
712
160
|
};
|
|
713
161
|
};
|