@vaadin/combo-box 23.0.12 → 23.0.13
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-combo-box-mixin.js +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/combo-box",
|
|
3
|
-
"version": "23.0.
|
|
3
|
+
"version": "23.0.13",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -34,23 +34,23 @@
|
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
36
36
|
"@polymer/polymer": "^3.0.0",
|
|
37
|
-
"@vaadin/component-base": "^23.0.
|
|
38
|
-
"@vaadin/field-base": "^23.0.
|
|
39
|
-
"@vaadin/input-container": "^23.0.
|
|
40
|
-
"@vaadin/item": "^23.0.
|
|
41
|
-
"@vaadin/vaadin-lumo-styles": "^23.0.
|
|
42
|
-
"@vaadin/vaadin-material-styles": "^23.0.
|
|
43
|
-
"@vaadin/vaadin-overlay": "^23.0.
|
|
44
|
-
"@vaadin/vaadin-themable-mixin": "^23.0.
|
|
37
|
+
"@vaadin/component-base": "^23.0.13",
|
|
38
|
+
"@vaadin/field-base": "^23.0.13",
|
|
39
|
+
"@vaadin/input-container": "^23.0.13",
|
|
40
|
+
"@vaadin/item": "^23.0.13",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "^23.0.13",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "^23.0.13",
|
|
43
|
+
"@vaadin/vaadin-overlay": "^23.0.13",
|
|
44
|
+
"@vaadin/vaadin-themable-mixin": "^23.0.13"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@esm-bundle/chai": "^4.3.4",
|
|
48
|
-
"@vaadin/dialog": "^23.0.
|
|
49
|
-
"@vaadin/polymer-legacy-adapter": "^23.0.
|
|
48
|
+
"@vaadin/dialog": "^23.0.13",
|
|
49
|
+
"@vaadin/polymer-legacy-adapter": "^23.0.13",
|
|
50
50
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
51
|
-
"@vaadin/text-field": "^23.0.
|
|
51
|
+
"@vaadin/text-field": "^23.0.13",
|
|
52
52
|
"lit": "^2.0.0",
|
|
53
53
|
"sinon": "^9.2.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "e915550ec6400b5eae6c779fe0afeb1931399312"
|
|
56
56
|
}
|
|
@@ -1100,6 +1100,12 @@ export const ComboBoxMixin = (subclass) =>
|
|
|
1100
1100
|
|
|
1101
1101
|
/** @private */
|
|
1102
1102
|
_onFocusout(event) {
|
|
1103
|
+
// VoiceOver on iOS fires `focusout` event when moving focus to the item in the dropdown.
|
|
1104
|
+
// Do not focus the input in this case, because it would break announcement for the item.
|
|
1105
|
+
if (event.relatedTarget && this._getItemElements().includes(event.relatedTarget)) {
|
|
1106
|
+
return;
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1103
1109
|
// Fixes the problem with `focusout` happening when clicking on the scroll bar on Edge
|
|
1104
1110
|
if (event.relatedTarget === this.$.dropdown.$.overlay) {
|
|
1105
1111
|
event.composedPath()[0].focus();
|