@grafana/plugin-e2e 1.2.0-canary.892.e66359c.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.
|
@@ -97,6 +97,7 @@ export declare const versionedComponents: {
|
|
|
97
97
|
PanelEditor: {
|
|
98
98
|
General: {
|
|
99
99
|
content: {
|
|
100
|
+
'11.1.0': string;
|
|
100
101
|
"8.0.0": string;
|
|
101
102
|
};
|
|
102
103
|
};
|
|
@@ -110,6 +111,7 @@ export declare const versionedComponents: {
|
|
|
110
111
|
};
|
|
111
112
|
OptionsPane: {
|
|
112
113
|
content: {
|
|
114
|
+
'11.1.0': string;
|
|
113
115
|
"8.0.0": string;
|
|
114
116
|
};
|
|
115
117
|
fieldLabel: {
|
|
@@ -164,9 +166,11 @@ export declare const versionedComponents: {
|
|
|
164
166
|
};
|
|
165
167
|
OptionsGroup: {
|
|
166
168
|
group: {
|
|
169
|
+
'11.1.0': (title?: string) => string;
|
|
167
170
|
"8.0.0": (title?: string) => string;
|
|
168
171
|
};
|
|
169
172
|
toggle: {
|
|
173
|
+
'11.1.0': (title?: string) => string;
|
|
170
174
|
"8.0.0": (title?: string) => string;
|
|
171
175
|
};
|
|
172
176
|
groupTitle: {
|
|
@@ -96,6 +96,7 @@ exports.versionedComponents = {
|
|
|
96
96
|
PanelEditor: {
|
|
97
97
|
General: {
|
|
98
98
|
content: {
|
|
99
|
+
'11.1.0': 'data-testid Panel editor content',
|
|
99
100
|
[constants_1.MIN_GRAFANA_VERSION]: 'Panel editor content',
|
|
100
101
|
},
|
|
101
102
|
},
|
|
@@ -109,6 +110,7 @@ exports.versionedComponents = {
|
|
|
109
110
|
},
|
|
110
111
|
OptionsPane: {
|
|
111
112
|
content: {
|
|
113
|
+
'11.1.0': 'data-testid Panel editor option pane content',
|
|
112
114
|
[constants_1.MIN_GRAFANA_VERSION]: 'Panel editor option pane content',
|
|
113
115
|
},
|
|
114
116
|
fieldLabel: {
|
|
@@ -164,9 +166,11 @@ exports.versionedComponents = {
|
|
|
164
166
|
},
|
|
165
167
|
OptionsGroup: {
|
|
166
168
|
group: {
|
|
169
|
+
'11.1.0': (title) => (title ? `data-testid Options group ${title}` : 'data-testid Options group'),
|
|
167
170
|
[constants_1.MIN_GRAFANA_VERSION]: (title) => (title ? `Options group ${title}` : 'Options group'),
|
|
168
171
|
},
|
|
169
172
|
toggle: {
|
|
173
|
+
'11.1.0': (title) => title ? `data-testid Options group ${title} toggle` : 'data-testid Options group toggle',
|
|
170
174
|
[constants_1.MIN_GRAFANA_VERSION]: (title) => (title ? `Options group ${title} toggle` : 'Options group toggle'),
|
|
171
175
|
},
|
|
172
176
|
groupTitle: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/plugin-e2e",
|
|
3
|
-
"version": "1.2.0
|
|
3
|
+
"version": "1.2.0",
|
|
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": "96389ff99fec497ed6b2ab509709d578ecaf13f0"
|
|
59
59
|
}
|