@grafana/plugin-e2e 0.25.0 → 0.25.1
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.
|
@@ -28,6 +28,15 @@ export type Components = {
|
|
|
28
28
|
applyTimeRange: string;
|
|
29
29
|
absoluteTimeRangeTitle: string;
|
|
30
30
|
};
|
|
31
|
+
Menu: {
|
|
32
|
+
MenuComponent: (title: string) => string;
|
|
33
|
+
MenuGroup: (title: string) => string;
|
|
34
|
+
MenuItem: (title: string) => string;
|
|
35
|
+
SubMenu: {
|
|
36
|
+
container: string;
|
|
37
|
+
icon: string;
|
|
38
|
+
};
|
|
39
|
+
};
|
|
31
40
|
Panels: {
|
|
32
41
|
Panel: {
|
|
33
42
|
title: (title: string) => string;
|
|
@@ -53,6 +62,8 @@ export type Components = {
|
|
|
53
62
|
applyButton: string;
|
|
54
63
|
toggleVizPicker: string;
|
|
55
64
|
OptionsPane: {
|
|
65
|
+
content: string;
|
|
66
|
+
fieldLabel: (type: string) => string;
|
|
56
67
|
fieldInput: (title: string) => string;
|
|
57
68
|
};
|
|
58
69
|
};
|
|
@@ -20,6 +20,27 @@ export declare const versionedComponents: {
|
|
|
20
20
|
"8.0.0": string;
|
|
21
21
|
};
|
|
22
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
|
+
};
|
|
23
44
|
Panels: {
|
|
24
45
|
Panel: {
|
|
25
46
|
title: {
|
|
@@ -72,6 +93,12 @@ export declare const versionedComponents: {
|
|
|
72
93
|
"8.0.0": string;
|
|
73
94
|
};
|
|
74
95
|
OptionsPane: {
|
|
96
|
+
content: {
|
|
97
|
+
"8.0.0": string;
|
|
98
|
+
};
|
|
99
|
+
fieldLabel: {
|
|
100
|
+
"8.0.0": (type: string) => string;
|
|
101
|
+
};
|
|
75
102
|
fieldInput: {
|
|
76
103
|
'11.0.0': (title: string) => string;
|
|
77
104
|
};
|
|
@@ -24,6 +24,25 @@ exports.versionedComponents = {
|
|
|
24
24
|
[constants_1.MIN_GRAFANA_VERSION]: 'data-testid-absolute-time-range-narrow',
|
|
25
25
|
},
|
|
26
26
|
},
|
|
27
|
+
Menu: {
|
|
28
|
+
MenuComponent: {
|
|
29
|
+
[constants_1.MIN_GRAFANA_VERSION]: (title) => `${title} menu`,
|
|
30
|
+
},
|
|
31
|
+
MenuGroup: {
|
|
32
|
+
[constants_1.MIN_GRAFANA_VERSION]: (title) => `${title} menu group`,
|
|
33
|
+
},
|
|
34
|
+
MenuItem: { [constants_1.MIN_GRAFANA_VERSION]: (title) => `${title} menu item` },
|
|
35
|
+
SubMenu: {
|
|
36
|
+
container: {
|
|
37
|
+
'10.3.0': 'data-testid SubMenu container',
|
|
38
|
+
[constants_1.MIN_GRAFANA_VERSION]: 'SubMenu',
|
|
39
|
+
},
|
|
40
|
+
icon: {
|
|
41
|
+
'10.3.0': 'data-testid SubMenu icon',
|
|
42
|
+
[constants_1.MIN_GRAFANA_VERSION]: 'SubMenu icon',
|
|
43
|
+
},
|
|
44
|
+
},
|
|
45
|
+
},
|
|
27
46
|
Panels: {
|
|
28
47
|
Panel: {
|
|
29
48
|
title: {
|
|
@@ -77,6 +96,12 @@ exports.versionedComponents = {
|
|
|
77
96
|
[constants_1.MIN_GRAFANA_VERSION]: 'toggle-viz-picker',
|
|
78
97
|
},
|
|
79
98
|
OptionsPane: {
|
|
99
|
+
content: {
|
|
100
|
+
[constants_1.MIN_GRAFANA_VERSION]: 'Panel editor option pane content',
|
|
101
|
+
},
|
|
102
|
+
fieldLabel: {
|
|
103
|
+
[constants_1.MIN_GRAFANA_VERSION]: (type) => `${type} field property editor`,
|
|
104
|
+
},
|
|
80
105
|
fieldInput: {
|
|
81
106
|
'11.0.0': (title) => `data-testid Panel editor option pane field input ${title}`,
|
|
82
107
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/plugin-e2e",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.1",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -55,5 +55,5 @@
|
|
|
55
55
|
"start": "cls || clear"
|
|
56
56
|
}
|
|
57
57
|
},
|
|
58
|
-
"gitHead": "
|
|
58
|
+
"gitHead": "47290fa2f4c959794e3146240552b01905fbe7dd"
|
|
59
59
|
}
|