@vaadin/multi-select-combo-box 24.4.0-alpha5 → 24.4.0-alpha7
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 +13 -13
- package/src/vaadin-multi-select-combo-box.js +3 -0
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/multi-select-combo-box",
|
|
3
|
-
"version": "24.4.0-
|
|
3
|
+
"version": "24.4.0-alpha7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,17 +38,17 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@polymer/polymer": "^3.0.0",
|
|
41
|
-
"@vaadin/a11y-base": "24.4.0-
|
|
42
|
-
"@vaadin/combo-box": "24.4.0-
|
|
43
|
-
"@vaadin/component-base": "24.4.0-
|
|
44
|
-
"@vaadin/field-base": "24.4.0-
|
|
45
|
-
"@vaadin/input-container": "24.4.0-
|
|
46
|
-
"@vaadin/item": "24.4.0-
|
|
47
|
-
"@vaadin/lit-renderer": "24.4.0-
|
|
48
|
-
"@vaadin/overlay": "24.4.0-
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "24.4.0-
|
|
50
|
-
"@vaadin/vaadin-material-styles": "24.4.0-
|
|
51
|
-
"@vaadin/vaadin-themable-mixin": "24.4.0-
|
|
41
|
+
"@vaadin/a11y-base": "24.4.0-alpha7",
|
|
42
|
+
"@vaadin/combo-box": "24.4.0-alpha7",
|
|
43
|
+
"@vaadin/component-base": "24.4.0-alpha7",
|
|
44
|
+
"@vaadin/field-base": "24.4.0-alpha7",
|
|
45
|
+
"@vaadin/input-container": "24.4.0-alpha7",
|
|
46
|
+
"@vaadin/item": "24.4.0-alpha7",
|
|
47
|
+
"@vaadin/lit-renderer": "24.4.0-alpha7",
|
|
48
|
+
"@vaadin/overlay": "24.4.0-alpha7",
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "24.4.0-alpha7",
|
|
50
|
+
"@vaadin/vaadin-material-styles": "24.4.0-alpha7",
|
|
51
|
+
"@vaadin/vaadin-themable-mixin": "24.4.0-alpha7"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"web-types.json",
|
|
61
61
|
"web-types.lit.json"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "12359cbbdd3986af34cd4479c93aae5c3f568c37"
|
|
64
64
|
}
|
|
@@ -1067,6 +1067,9 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
|
|
|
1067
1067
|
_onClearButtonTouchend(event) {
|
|
1068
1068
|
// Cancel the following click and focus events
|
|
1069
1069
|
event.preventDefault();
|
|
1070
|
+
// Prevent default combo box behavior which can otherwise unnecessarily
|
|
1071
|
+
// clear the input and filter
|
|
1072
|
+
event.stopPropagation();
|
|
1070
1073
|
|
|
1071
1074
|
this.clear();
|
|
1072
1075
|
}
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED