@grafana/plugin-e2e 3.8.0-canary.2627.25728336037.0 → 3.8.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.
|
@@ -9,11 +9,11 @@ class MultiSelect extends ComponentBase.ComponentBase {
|
|
|
9
9
|
}
|
|
10
10
|
async selectOptions(values, options) {
|
|
11
11
|
const menu = await Select.openSelect(this, options);
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
const selected = [];
|
|
13
|
+
for (const value of values) {
|
|
14
|
+
selected.push(await Select.selectByValueOrLabel(value, menu, this.ctx, options));
|
|
15
|
+
}
|
|
16
|
+
return selected;
|
|
17
17
|
}
|
|
18
18
|
}
|
|
19
19
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@grafana/plugin-e2e",
|
|
3
|
-
"version": "3.8.0
|
|
3
|
+
"version": "3.8.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"uuid": "^13.0.0",
|
|
55
55
|
"yaml": "^2.3.4"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "a5b29c0663a14099383f2cda889ff86df36086ae"
|
|
58
58
|
}
|