@vaadin/vaadin-select 2.4.2 → 2.4.3
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/package.json +8 -7
- package/src/vaadin-select.js +5 -1
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"repository": "vaadin/vaadin-select",
|
|
11
11
|
"homepage": "https://vaadin.com/components",
|
|
12
12
|
"name": "@vaadin/vaadin-select",
|
|
13
|
-
"version": "2.4.
|
|
13
|
+
"version": "2.4.3",
|
|
14
14
|
"main": "vaadin-select.js",
|
|
15
15
|
"author": "Vaadin Ltd",
|
|
16
16
|
"license": "Apache-2.0",
|
|
@@ -25,8 +25,6 @@
|
|
|
25
25
|
"theme"
|
|
26
26
|
],
|
|
27
27
|
"resolutions": {
|
|
28
|
-
"es-abstract": "1.17.6",
|
|
29
|
-
"@types/doctrine": "0.0.3",
|
|
30
28
|
"inherits": "2.0.3",
|
|
31
29
|
"samsam": "1.1.3",
|
|
32
30
|
"supports-color": "3.1.2",
|
|
@@ -47,10 +45,9 @@
|
|
|
47
45
|
"@vaadin/vaadin-material-styles": "^1.3.2",
|
|
48
46
|
"@vaadin/vaadin-element-mixin": "^2.4.1"
|
|
49
47
|
},
|
|
50
|
-
"
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
"devDependencies": {
|
|
48
|
+
"devDependencies": {
|
|
49
|
+
"@web-padawan/gen-typescript-declarations": "^1.6.2",
|
|
50
|
+
"web-component-tester": "6.9.2",
|
|
54
51
|
"@polymer/iron-test-helpers": "^3.0.0",
|
|
55
52
|
"@polymer/iron-component-page": "^4.0.0",
|
|
56
53
|
"@polymer/iron-form": "^3.0.0",
|
|
@@ -60,5 +57,9 @@
|
|
|
60
57
|
"@vaadin/vaadin-demo-helpers": "^3.1.0",
|
|
61
58
|
"@vaadin/vaadin-button": "^2.4.0",
|
|
62
59
|
"@vaadin/vaadin-icons": "^4.3.1"
|
|
60
|
+
},
|
|
61
|
+
"scripts": {
|
|
62
|
+
"generate-typings": "gen-typescript-declarations --outDir . --verify",
|
|
63
|
+
"test": "wct --npm"
|
|
63
64
|
}
|
|
64
65
|
}
|
package/src/vaadin-select.js
CHANGED
|
@@ -178,7 +178,7 @@ class SelectElement extends
|
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
static get version() {
|
|
181
|
-
return '2.4.
|
|
181
|
+
return '2.4.3';
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
static get properties() {
|
|
@@ -405,6 +405,10 @@ class SelectElement extends
|
|
|
405
405
|
* Manually invoke existing renderer.
|
|
406
406
|
*/
|
|
407
407
|
render() {
|
|
408
|
+
if (!this._overlayElement) {
|
|
409
|
+
return;
|
|
410
|
+
}
|
|
411
|
+
|
|
408
412
|
this._overlayElement.render();
|
|
409
413
|
if (this._menuElement && this._menuElement.items) {
|
|
410
414
|
this._updateSelectedItem(this.value, this._menuElement.items);
|