@grafana/plugin-e2e 1.10.0 → 1.11.0-canary.1123.a8691fd.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/fixtures/selectors.d.ts +2 -3
- package/dist/fixtures/selectors.js +9 -9
- package/dist/index.d.ts +0 -2
- package/dist/index.js +1 -3
- package/dist/models/pages/AnnotationEditPage.js +1 -1
- package/dist/models/pages/AnnotationPage.js +2 -8
- package/dist/models/pages/DashboardPage.js +2 -2
- package/dist/models/pages/ExplorePage.js +2 -1
- package/dist/models/pages/PanelEditPage.js +4 -3
- package/dist/models/pages/VariableEditPage.js +1 -1
- package/dist/models/pages/VariablePage.js +2 -2
- package/dist/{e2e-selectors/versioned/apis.d.ts → selectors/versionedAPIs.d.ts} +2 -1
- package/dist/selectors/versionedAPIs.js +47 -0
- package/dist/selectors/versionedConstants.d.ts +9 -0
- package/dist/selectors/versionedConstants.js +12 -0
- package/dist/types.d.ts +11 -3
- package/package.json +4 -3
- package/dist/e2e-selectors/index.d.ts +0 -2
- package/dist/e2e-selectors/index.js +0 -20
- package/dist/e2e-selectors/resolver.d.ts +0 -10
- package/dist/e2e-selectors/resolver.js +0 -50
- package/dist/e2e-selectors/resolver.test.d.ts +0 -1
- package/dist/e2e-selectors/resolver.test.js +0 -34
- package/dist/e2e-selectors/types.d.ts +0 -255
- package/dist/e2e-selectors/types.js +0 -2
- package/dist/e2e-selectors/versioned/apis.js +0 -47
- package/dist/e2e-selectors/versioned/components.d.ts +0 -288
- package/dist/e2e-selectors/versioned/components.js +0 -271
- package/dist/e2e-selectors/versioned/index.d.ts +0 -2
- package/dist/e2e-selectors/versioned/index.js +0 -7
- package/dist/e2e-selectors/versioned/pages.d.ts +0 -186
- package/dist/e2e-selectors/versioned/pages.js +0 -190
- package/dist/e2e-selectors/versioned/types.d.ts +0 -8
- package/dist/e2e-selectors/versioned/types.js +0 -2
- /package/dist/{e2e-selectors/versioned/constants.d.ts → selectors/minGrafanaVersion.d.ts} +0 -0
- /package/dist/{e2e-selectors/versioned/constants.js → selectors/minGrafanaVersion.js} +0 -0
|
@@ -1,255 +0,0 @@
|
|
|
1
|
-
export type E2ESelectors = {
|
|
2
|
-
pages: Pages;
|
|
3
|
-
components: Components;
|
|
4
|
-
apis: APIs;
|
|
5
|
-
};
|
|
6
|
-
export type APIs = {
|
|
7
|
-
Alerting: {
|
|
8
|
-
eval: string;
|
|
9
|
-
};
|
|
10
|
-
DataSource: {
|
|
11
|
-
resourcePattern: string;
|
|
12
|
-
resourceUIDPattern: string;
|
|
13
|
-
queryPattern: string;
|
|
14
|
-
query: string;
|
|
15
|
-
health: (uid: string, id: string) => string;
|
|
16
|
-
datasourceByUID: (uid: string) => string;
|
|
17
|
-
proxy: (uid: string, id: string) => string;
|
|
18
|
-
};
|
|
19
|
-
Dashboard: {
|
|
20
|
-
delete: (uid: string) => string;
|
|
21
|
-
};
|
|
22
|
-
Plugin: {
|
|
23
|
-
settings: (pluginId: string) => string;
|
|
24
|
-
};
|
|
25
|
-
};
|
|
26
|
-
export type Components = {
|
|
27
|
-
TimePicker: {
|
|
28
|
-
openButton: string;
|
|
29
|
-
fromField: string;
|
|
30
|
-
toField: string;
|
|
31
|
-
applyTimeRange: string;
|
|
32
|
-
absoluteTimeRangeTitle: string;
|
|
33
|
-
};
|
|
34
|
-
Menu: {
|
|
35
|
-
MenuComponent: (title: string) => string;
|
|
36
|
-
MenuGroup: (title: string) => string;
|
|
37
|
-
MenuItem: (title: string) => string;
|
|
38
|
-
SubMenu: {
|
|
39
|
-
container: string;
|
|
40
|
-
icon: string;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
Panels: {
|
|
44
|
-
Panel: {
|
|
45
|
-
title: (title: string) => string;
|
|
46
|
-
headerCornerInfo: (mode: string) => string;
|
|
47
|
-
status: (status: string) => string;
|
|
48
|
-
toggleTableViewPanel: (title: string) => string;
|
|
49
|
-
PanelDataErrorMessage: string;
|
|
50
|
-
menuItems: (item: string) => string;
|
|
51
|
-
menu: (title: string) => string;
|
|
52
|
-
};
|
|
53
|
-
Visualization: {
|
|
54
|
-
Table: {
|
|
55
|
-
header: string;
|
|
56
|
-
footer: string;
|
|
57
|
-
body: string;
|
|
58
|
-
};
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
VizLegend: {
|
|
62
|
-
seriesName: (name: string) => string;
|
|
63
|
-
};
|
|
64
|
-
Drawer: {
|
|
65
|
-
General: {
|
|
66
|
-
title: (title: string) => string;
|
|
67
|
-
};
|
|
68
|
-
};
|
|
69
|
-
PanelEditor: {
|
|
70
|
-
General: {
|
|
71
|
-
content: string;
|
|
72
|
-
};
|
|
73
|
-
applyButton: string;
|
|
74
|
-
toggleVizPicker: string;
|
|
75
|
-
OptionsPane: {
|
|
76
|
-
content: string;
|
|
77
|
-
fieldLabel: (type: string) => string;
|
|
78
|
-
fieldInput: (title: string) => string;
|
|
79
|
-
};
|
|
80
|
-
};
|
|
81
|
-
RefreshPicker: {
|
|
82
|
-
runButtonV2: string;
|
|
83
|
-
};
|
|
84
|
-
QueryTab: {
|
|
85
|
-
addQuery: string;
|
|
86
|
-
addExpression: string;
|
|
87
|
-
};
|
|
88
|
-
QueryEditorRows: {
|
|
89
|
-
rows: string;
|
|
90
|
-
};
|
|
91
|
-
QueryEditorRow: {
|
|
92
|
-
title: (refId: string) => string;
|
|
93
|
-
actionButton: (title: string) => string;
|
|
94
|
-
};
|
|
95
|
-
AlertRules: {
|
|
96
|
-
previewButton: string;
|
|
97
|
-
ruleNameField: string;
|
|
98
|
-
newFolderButton: string;
|
|
99
|
-
newFolderNameCreateButton: string;
|
|
100
|
-
newEvaluationGroupButton: string;
|
|
101
|
-
newFolderNameField: string;
|
|
102
|
-
newEvaluationGroupName: string;
|
|
103
|
-
newEvaluationGroupInterval: string;
|
|
104
|
-
newEvaluationGroupCreate: string;
|
|
105
|
-
};
|
|
106
|
-
Alert: {
|
|
107
|
-
alertV2: (severity: string) => string;
|
|
108
|
-
};
|
|
109
|
-
NavToolbar: {
|
|
110
|
-
editDashboard: {
|
|
111
|
-
backToDashboardButton: string;
|
|
112
|
-
editButton: string;
|
|
113
|
-
};
|
|
114
|
-
};
|
|
115
|
-
PageToolbar: {
|
|
116
|
-
item: (tooltip: string) => string;
|
|
117
|
-
showMoreItems: string;
|
|
118
|
-
itemButton: (title: string) => string;
|
|
119
|
-
itemButtonTitle: string;
|
|
120
|
-
};
|
|
121
|
-
OptionsGroup: {
|
|
122
|
-
group: (title?: string) => string;
|
|
123
|
-
toggle: (title?: string) => string;
|
|
124
|
-
groupTitle: string;
|
|
125
|
-
};
|
|
126
|
-
PluginVisualization: {
|
|
127
|
-
item: (title: string) => string;
|
|
128
|
-
};
|
|
129
|
-
Select: {
|
|
130
|
-
option: string;
|
|
131
|
-
input: () => string;
|
|
132
|
-
singleValue: () => string;
|
|
133
|
-
};
|
|
134
|
-
DataSourcePicker: {
|
|
135
|
-
container: string;
|
|
136
|
-
};
|
|
137
|
-
TimeZonePicker: {
|
|
138
|
-
containerV2: string;
|
|
139
|
-
changeTimeSettingsButton: string;
|
|
140
|
-
};
|
|
141
|
-
CodeEditor: {
|
|
142
|
-
container: string;
|
|
143
|
-
};
|
|
144
|
-
Annotations: {
|
|
145
|
-
editor: {
|
|
146
|
-
testButton: string;
|
|
147
|
-
resultContainer: string;
|
|
148
|
-
};
|
|
149
|
-
};
|
|
150
|
-
QueryField: {
|
|
151
|
-
container: string;
|
|
152
|
-
};
|
|
153
|
-
};
|
|
154
|
-
export type Pages = {
|
|
155
|
-
Home: {
|
|
156
|
-
url: string;
|
|
157
|
-
};
|
|
158
|
-
Alerting: {
|
|
159
|
-
AddAlertRule: {
|
|
160
|
-
url: string;
|
|
161
|
-
};
|
|
162
|
-
EditAlertRule: {
|
|
163
|
-
url: (alertRuleUid: string) => string;
|
|
164
|
-
};
|
|
165
|
-
};
|
|
166
|
-
DataSource: {
|
|
167
|
-
name: string;
|
|
168
|
-
delete: string;
|
|
169
|
-
readOnly: string;
|
|
170
|
-
saveAndTest: string;
|
|
171
|
-
alert: string;
|
|
172
|
-
};
|
|
173
|
-
EditDataSource: {
|
|
174
|
-
url: (dataSourceUid: string) => string;
|
|
175
|
-
};
|
|
176
|
-
AddDashboard: {
|
|
177
|
-
url: string;
|
|
178
|
-
itemButton: (title: string) => string;
|
|
179
|
-
addNewPanel: string;
|
|
180
|
-
itemButtonAddViz: string;
|
|
181
|
-
Settings: {
|
|
182
|
-
Annotations: {
|
|
183
|
-
List: {
|
|
184
|
-
url: string;
|
|
185
|
-
};
|
|
186
|
-
Edit: {
|
|
187
|
-
url: (annotationIndex: string) => string;
|
|
188
|
-
};
|
|
189
|
-
};
|
|
190
|
-
Variables: {
|
|
191
|
-
List: {
|
|
192
|
-
url: string;
|
|
193
|
-
};
|
|
194
|
-
Edit: {
|
|
195
|
-
url: (variableIndex: string) => string;
|
|
196
|
-
};
|
|
197
|
-
};
|
|
198
|
-
};
|
|
199
|
-
};
|
|
200
|
-
Dashboard: {
|
|
201
|
-
url: (uid: string) => string;
|
|
202
|
-
Settings: {
|
|
203
|
-
Actions: {
|
|
204
|
-
close: string;
|
|
205
|
-
};
|
|
206
|
-
Annotations: {
|
|
207
|
-
Edit: {
|
|
208
|
-
url: (dashboardUid: string, annotationIndex: string) => string;
|
|
209
|
-
};
|
|
210
|
-
List: {
|
|
211
|
-
url: (uid: string) => string;
|
|
212
|
-
addAnnotationCTA: string;
|
|
213
|
-
addAnnotationCTAV2: string;
|
|
214
|
-
};
|
|
215
|
-
};
|
|
216
|
-
Variables: {
|
|
217
|
-
List: {
|
|
218
|
-
url: (dashboardUid: string) => string;
|
|
219
|
-
newButton: string;
|
|
220
|
-
addVariableCTAV2: (variableName: string) => string;
|
|
221
|
-
addVariableCTAV2Item: string;
|
|
222
|
-
table: string;
|
|
223
|
-
};
|
|
224
|
-
Edit: {
|
|
225
|
-
url: (dashboardUid: string, editIndex: string) => string;
|
|
226
|
-
General: {
|
|
227
|
-
selectionOptionsIncludeAllSwitch: string;
|
|
228
|
-
generalTypeSelectV2: string;
|
|
229
|
-
previewOfValuesOption: string;
|
|
230
|
-
submitButton: string;
|
|
231
|
-
generalNameInputV2: string;
|
|
232
|
-
applyButton: string;
|
|
233
|
-
};
|
|
234
|
-
};
|
|
235
|
-
};
|
|
236
|
-
};
|
|
237
|
-
SubMenu: {
|
|
238
|
-
submenuItemLabels: (item: string) => string;
|
|
239
|
-
submenuItemValueDropDownValueLinkTexts: (item: string) => string;
|
|
240
|
-
submenuItemValueDropDownDropDown: string;
|
|
241
|
-
submenuItemValueDropDownOptionTexts: (item: string) => string;
|
|
242
|
-
};
|
|
243
|
-
SaveDashboardAsModal: {
|
|
244
|
-
saveButton: string;
|
|
245
|
-
newName: string;
|
|
246
|
-
save: string;
|
|
247
|
-
};
|
|
248
|
-
};
|
|
249
|
-
Explore: {
|
|
250
|
-
url: string;
|
|
251
|
-
};
|
|
252
|
-
Plugin: {
|
|
253
|
-
url: (pluginId: string) => string;
|
|
254
|
-
};
|
|
255
|
-
};
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.versionedAPIs = void 0;
|
|
4
|
-
const constants_1 = require("./constants");
|
|
5
|
-
exports.versionedAPIs = {
|
|
6
|
-
Alerting: {
|
|
7
|
-
eval: {
|
|
8
|
-
[constants_1.MIN_GRAFANA_VERSION]: '/api/v1/eval',
|
|
9
|
-
},
|
|
10
|
-
},
|
|
11
|
-
DataSource: {
|
|
12
|
-
resourcePattern: {
|
|
13
|
-
[constants_1.MIN_GRAFANA_VERSION]: '/api/datasources/*/resources',
|
|
14
|
-
},
|
|
15
|
-
resourceUIDPattern: {
|
|
16
|
-
'9.4.4': '/api/datasources/uid/*/resources',
|
|
17
|
-
[constants_1.MIN_GRAFANA_VERSION]: '/api/datasources/*/resources',
|
|
18
|
-
},
|
|
19
|
-
queryPattern: {
|
|
20
|
-
[constants_1.MIN_GRAFANA_VERSION]: '*/**/api/ds/query*',
|
|
21
|
-
},
|
|
22
|
-
query: {
|
|
23
|
-
[constants_1.MIN_GRAFANA_VERSION]: '/api/ds/query',
|
|
24
|
-
},
|
|
25
|
-
health: {
|
|
26
|
-
['9.5.0']: (uid, _) => `/api/datasources/uid/${uid}/health`,
|
|
27
|
-
[constants_1.MIN_GRAFANA_VERSION]: (_, id) => `/api/datasources/${id}/health`,
|
|
28
|
-
},
|
|
29
|
-
datasourceByUID: {
|
|
30
|
-
[constants_1.MIN_GRAFANA_VERSION]: (uid) => `/api/datasources/uid/${uid}`,
|
|
31
|
-
},
|
|
32
|
-
proxy: {
|
|
33
|
-
'9.4.0': (uid, _) => `api/datasources/proxy/uid/${uid}`,
|
|
34
|
-
[constants_1.MIN_GRAFANA_VERSION]: (_, id) => `/api/datasources/proxy/${id}`,
|
|
35
|
-
},
|
|
36
|
-
},
|
|
37
|
-
Dashboard: {
|
|
38
|
-
delete: {
|
|
39
|
-
[constants_1.MIN_GRAFANA_VERSION]: (uid) => `/api/dashboards/uid/${uid}`,
|
|
40
|
-
},
|
|
41
|
-
},
|
|
42
|
-
Plugin: {
|
|
43
|
-
settings: {
|
|
44
|
-
[constants_1.MIN_GRAFANA_VERSION]: (pluginId) => `/api/plugins/${pluginId}/settings`,
|
|
45
|
-
},
|
|
46
|
-
},
|
|
47
|
-
};
|
|
@@ -1,288 +0,0 @@
|
|
|
1
|
-
export declare const versionedComponents: {
|
|
2
|
-
TimePicker: {
|
|
3
|
-
openButton: {
|
|
4
|
-
'8.1.0': string;
|
|
5
|
-
"8.0.0": string;
|
|
6
|
-
};
|
|
7
|
-
fromField: {
|
|
8
|
-
'10.2.3': string;
|
|
9
|
-
"8.0.0": string;
|
|
10
|
-
};
|
|
11
|
-
toField: {
|
|
12
|
-
'10.2.3': string;
|
|
13
|
-
"8.0.0": string;
|
|
14
|
-
};
|
|
15
|
-
applyTimeRange: {
|
|
16
|
-
'8.1.0': string;
|
|
17
|
-
"8.0.0": string;
|
|
18
|
-
};
|
|
19
|
-
absoluteTimeRangeTitle: {
|
|
20
|
-
"8.0.0": string;
|
|
21
|
-
};
|
|
22
|
-
};
|
|
23
|
-
Menu: {
|
|
24
|
-
MenuComponent: {
|
|
25
|
-
"8.0.0": (title: string) => string;
|
|
26
|
-
};
|
|
27
|
-
MenuGroup: {
|
|
28
|
-
"8.0.0": (title: string) => string;
|
|
29
|
-
};
|
|
30
|
-
MenuItem: {
|
|
31
|
-
"8.0.0": (title: string) => string;
|
|
32
|
-
};
|
|
33
|
-
SubMenu: {
|
|
34
|
-
container: {
|
|
35
|
-
'10.3.0': string;
|
|
36
|
-
"8.0.0": string;
|
|
37
|
-
};
|
|
38
|
-
icon: {
|
|
39
|
-
'10.3.0': string;
|
|
40
|
-
"8.0.0": string;
|
|
41
|
-
};
|
|
42
|
-
};
|
|
43
|
-
};
|
|
44
|
-
Panels: {
|
|
45
|
-
Panel: {
|
|
46
|
-
title: {
|
|
47
|
-
'8.1.2': (title: string) => string;
|
|
48
|
-
"8.0.0": (title: string) => string;
|
|
49
|
-
};
|
|
50
|
-
headerCornerInfo: {
|
|
51
|
-
"8.0.0": (mode: string) => string;
|
|
52
|
-
};
|
|
53
|
-
status: {
|
|
54
|
-
"10.2.0": (status: string) => string;
|
|
55
|
-
"8.0.0": (_: string) => string;
|
|
56
|
-
};
|
|
57
|
-
toggleTableViewPanel: {
|
|
58
|
-
'10.4.0': (title: string) => string;
|
|
59
|
-
"8.0.0": (_: string) => string;
|
|
60
|
-
};
|
|
61
|
-
PanelDataErrorMessage: {
|
|
62
|
-
'10.4.0': string;
|
|
63
|
-
};
|
|
64
|
-
menuItems: {
|
|
65
|
-
'9.5.0': (item: string) => string;
|
|
66
|
-
};
|
|
67
|
-
menu: {
|
|
68
|
-
'9.5.0': (item: string) => string;
|
|
69
|
-
};
|
|
70
|
-
};
|
|
71
|
-
Visualization: {
|
|
72
|
-
Table: {
|
|
73
|
-
header: {
|
|
74
|
-
"8.0.0": string;
|
|
75
|
-
};
|
|
76
|
-
footer: {
|
|
77
|
-
"8.0.0": string;
|
|
78
|
-
};
|
|
79
|
-
body: {
|
|
80
|
-
'10.2.0': string;
|
|
81
|
-
};
|
|
82
|
-
};
|
|
83
|
-
};
|
|
84
|
-
};
|
|
85
|
-
VizLegend: {
|
|
86
|
-
seriesName: {
|
|
87
|
-
"8.0.0": (name: string) => string;
|
|
88
|
-
};
|
|
89
|
-
};
|
|
90
|
-
Drawer: {
|
|
91
|
-
General: {
|
|
92
|
-
title: {
|
|
93
|
-
"8.0.0": (title: string) => string;
|
|
94
|
-
};
|
|
95
|
-
};
|
|
96
|
-
};
|
|
97
|
-
PanelEditor: {
|
|
98
|
-
General: {
|
|
99
|
-
content: {
|
|
100
|
-
'11.1.0': string;
|
|
101
|
-
"8.0.0": string;
|
|
102
|
-
};
|
|
103
|
-
};
|
|
104
|
-
applyButton: {
|
|
105
|
-
'9.2.0': string;
|
|
106
|
-
"8.0.0": string;
|
|
107
|
-
};
|
|
108
|
-
toggleVizPicker: {
|
|
109
|
-
'10.0.0': string;
|
|
110
|
-
"8.0.0": string;
|
|
111
|
-
};
|
|
112
|
-
OptionsPane: {
|
|
113
|
-
content: {
|
|
114
|
-
'11.1.0': string;
|
|
115
|
-
"8.0.0": string;
|
|
116
|
-
};
|
|
117
|
-
fieldLabel: {
|
|
118
|
-
"8.0.0": (type: string) => string;
|
|
119
|
-
};
|
|
120
|
-
fieldInput: {
|
|
121
|
-
'11.0.0': (title: string) => string;
|
|
122
|
-
};
|
|
123
|
-
};
|
|
124
|
-
};
|
|
125
|
-
RefreshPicker: {
|
|
126
|
-
runButtonV2: {
|
|
127
|
-
"8.3.0": string;
|
|
128
|
-
"8.0.0": string;
|
|
129
|
-
};
|
|
130
|
-
};
|
|
131
|
-
QueryTab: {
|
|
132
|
-
addQuery: {
|
|
133
|
-
'10.2.0': string;
|
|
134
|
-
"8.0.0": string;
|
|
135
|
-
};
|
|
136
|
-
addExpression: {
|
|
137
|
-
'11.0.0': string;
|
|
138
|
-
'9.5.2': string;
|
|
139
|
-
};
|
|
140
|
-
};
|
|
141
|
-
QueryEditorRows: {
|
|
142
|
-
rows: {
|
|
143
|
-
"8.0.0": string;
|
|
144
|
-
};
|
|
145
|
-
};
|
|
146
|
-
QueryEditorRow: {
|
|
147
|
-
title: {
|
|
148
|
-
"8.0.0": (refId: string) => string;
|
|
149
|
-
};
|
|
150
|
-
actionButton: {
|
|
151
|
-
'10.4.0': (title: string) => string;
|
|
152
|
-
"8.0.0": (title: string) => string;
|
|
153
|
-
};
|
|
154
|
-
};
|
|
155
|
-
AlertRules: {
|
|
156
|
-
previewButton: {
|
|
157
|
-
'11.1.0': string;
|
|
158
|
-
};
|
|
159
|
-
ruleNameField: {
|
|
160
|
-
'11.1.0': string;
|
|
161
|
-
};
|
|
162
|
-
newFolderButton: {
|
|
163
|
-
'11.1.0': string;
|
|
164
|
-
};
|
|
165
|
-
newFolderNameField: {
|
|
166
|
-
'11.1.0': string;
|
|
167
|
-
};
|
|
168
|
-
newFolderNameCreateButton: {
|
|
169
|
-
'11.1.0': string;
|
|
170
|
-
};
|
|
171
|
-
newEvaluationGroupButton: {
|
|
172
|
-
'11.1.0': string;
|
|
173
|
-
};
|
|
174
|
-
newEvaluationGroupName: {
|
|
175
|
-
'11.1.0': string;
|
|
176
|
-
};
|
|
177
|
-
newEvaluationGroupInterval: {
|
|
178
|
-
'11.1.0': string;
|
|
179
|
-
};
|
|
180
|
-
newEvaluationGroupCreate: {
|
|
181
|
-
'11.1.0': string;
|
|
182
|
-
};
|
|
183
|
-
};
|
|
184
|
-
Alert: {
|
|
185
|
-
alertV2: {
|
|
186
|
-
'8.3.0': (severity: string) => string;
|
|
187
|
-
"8.0.0": (severity: string) => string;
|
|
188
|
-
};
|
|
189
|
-
};
|
|
190
|
-
NavToolbar: {
|
|
191
|
-
editDashboard: {
|
|
192
|
-
editButton: {
|
|
193
|
-
'11.1.0': string;
|
|
194
|
-
};
|
|
195
|
-
backToDashboardButton: {
|
|
196
|
-
'11.1.0': string;
|
|
197
|
-
};
|
|
198
|
-
};
|
|
199
|
-
};
|
|
200
|
-
PageToolbar: {
|
|
201
|
-
item: {
|
|
202
|
-
"8.0.0": (tooltip: string) => string;
|
|
203
|
-
};
|
|
204
|
-
showMoreItems: {
|
|
205
|
-
"8.0.0": string;
|
|
206
|
-
};
|
|
207
|
-
itemButton: {
|
|
208
|
-
"9.5.0": (title: string) => string;
|
|
209
|
-
};
|
|
210
|
-
itemButtonTitle: {
|
|
211
|
-
'10.1.0': string;
|
|
212
|
-
"8.0.0": string;
|
|
213
|
-
};
|
|
214
|
-
};
|
|
215
|
-
QueryEditorToolbarItem: {
|
|
216
|
-
button: {
|
|
217
|
-
"8.0.0": (title: string) => string;
|
|
218
|
-
};
|
|
219
|
-
};
|
|
220
|
-
OptionsGroup: {
|
|
221
|
-
group: {
|
|
222
|
-
'11.1.0': (title?: string) => string;
|
|
223
|
-
"8.0.0": (title?: string) => string;
|
|
224
|
-
};
|
|
225
|
-
toggle: {
|
|
226
|
-
'11.1.0': (title?: string) => string;
|
|
227
|
-
"8.0.0": (title?: string) => string;
|
|
228
|
-
};
|
|
229
|
-
groupTitle: {
|
|
230
|
-
"8.0.0": string;
|
|
231
|
-
};
|
|
232
|
-
};
|
|
233
|
-
PluginVisualization: {
|
|
234
|
-
item: {
|
|
235
|
-
"8.0.0": (title: string) => string;
|
|
236
|
-
};
|
|
237
|
-
};
|
|
238
|
-
Select: {
|
|
239
|
-
option: {
|
|
240
|
-
'11.1.0': string;
|
|
241
|
-
"8.0.0": string;
|
|
242
|
-
};
|
|
243
|
-
input: {
|
|
244
|
-
'8.3.0': () => string;
|
|
245
|
-
"8.0.0": () => string;
|
|
246
|
-
};
|
|
247
|
-
singleValue: {
|
|
248
|
-
"8.0.0": () => string;
|
|
249
|
-
};
|
|
250
|
-
};
|
|
251
|
-
DataSourcePicker: {
|
|
252
|
-
container: {
|
|
253
|
-
'10.0.0': string;
|
|
254
|
-
'8.3.0': string;
|
|
255
|
-
};
|
|
256
|
-
};
|
|
257
|
-
TimeZonePicker: {
|
|
258
|
-
containerV2: {
|
|
259
|
-
'8.3.0': string;
|
|
260
|
-
"8.0.0": string;
|
|
261
|
-
};
|
|
262
|
-
changeTimeSettingsButton: {
|
|
263
|
-
'11.0.0': string;
|
|
264
|
-
};
|
|
265
|
-
};
|
|
266
|
-
CodeEditor: {
|
|
267
|
-
container: {
|
|
268
|
-
'10.2.3': string;
|
|
269
|
-
"8.0.0": string;
|
|
270
|
-
};
|
|
271
|
-
};
|
|
272
|
-
Annotations: {
|
|
273
|
-
editor: {
|
|
274
|
-
testButton: {
|
|
275
|
-
'11.0.0': string;
|
|
276
|
-
};
|
|
277
|
-
resultContainer: {
|
|
278
|
-
'11.0.0': string;
|
|
279
|
-
};
|
|
280
|
-
};
|
|
281
|
-
};
|
|
282
|
-
QueryField: {
|
|
283
|
-
container: {
|
|
284
|
-
'10.3.0': string;
|
|
285
|
-
"8.0.0": string;
|
|
286
|
-
};
|
|
287
|
-
};
|
|
288
|
-
};
|