@vaadin/select 23.1.0-rc1 → 23.1.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/package.json +15 -15
- package/src/vaadin-select.js +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/select",
|
|
3
|
-
"version": "23.1.0
|
|
3
|
+
"version": "23.1.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,25 +36,25 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.2.0",
|
|
39
|
-
"@vaadin/button": "23.1.0
|
|
40
|
-
"@vaadin/component-base": "23.1.0
|
|
41
|
-
"@vaadin/field-base": "23.1.0
|
|
42
|
-
"@vaadin/input-container": "23.1.0
|
|
43
|
-
"@vaadin/item": "23.1.0
|
|
44
|
-
"@vaadin/list-box": "23.1.0
|
|
45
|
-
"@vaadin/lit-renderer": "23.1.0
|
|
46
|
-
"@vaadin/vaadin-list-mixin": "23.1.0
|
|
47
|
-
"@vaadin/vaadin-lumo-styles": "23.1.0
|
|
48
|
-
"@vaadin/vaadin-material-styles": "23.1.0
|
|
49
|
-
"@vaadin/vaadin-overlay": "23.1.0
|
|
50
|
-
"@vaadin/vaadin-themable-mixin": "23.1.0
|
|
39
|
+
"@vaadin/button": "^23.1.0",
|
|
40
|
+
"@vaadin/component-base": "^23.1.0",
|
|
41
|
+
"@vaadin/field-base": "^23.1.0",
|
|
42
|
+
"@vaadin/input-container": "^23.1.0",
|
|
43
|
+
"@vaadin/item": "^23.1.0",
|
|
44
|
+
"@vaadin/list-box": "^23.1.0",
|
|
45
|
+
"@vaadin/lit-renderer": "^23.1.0",
|
|
46
|
+
"@vaadin/vaadin-list-mixin": "^23.1.0",
|
|
47
|
+
"@vaadin/vaadin-lumo-styles": "^23.1.0",
|
|
48
|
+
"@vaadin/vaadin-material-styles": "^23.1.0",
|
|
49
|
+
"@vaadin/vaadin-overlay": "^23.1.0",
|
|
50
|
+
"@vaadin/vaadin-themable-mixin": "^23.1.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@esm-bundle/chai": "^4.3.4",
|
|
54
|
-
"@vaadin/polymer-legacy-adapter": "23.1.0
|
|
54
|
+
"@vaadin/polymer-legacy-adapter": "^23.1.0",
|
|
55
55
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
56
56
|
"lit": "^2.0.0",
|
|
57
57
|
"sinon": "^13.0.2"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "322bba42b83f908a78cd972b06acadc5da95a69d"
|
|
60
60
|
}
|
package/src/vaadin-select.js
CHANGED
|
@@ -484,7 +484,11 @@ class Select extends DelegateFocusMixin(FieldMixin(SlotMixin(ElementMixin(Themab
|
|
|
484
484
|
*
|
|
485
485
|
* @private
|
|
486
486
|
*/
|
|
487
|
-
_onClick() {
|
|
487
|
+
_onClick(event) {
|
|
488
|
+
// Prevent parent components such as `vaadin-grid`
|
|
489
|
+
// from handling the click event after it bubbles.
|
|
490
|
+
event.preventDefault();
|
|
491
|
+
|
|
488
492
|
this.opened = !this.readonly;
|
|
489
493
|
}
|
|
490
494
|
|