@vaadin/combo-box
Advanced tools
Comparing version 22.0.17 to 22.0.18
{ | ||
"name": "@vaadin/combo-box", | ||
"version": "22.0.17", | ||
"version": "22.0.18", | ||
"publishConfig": { | ||
@@ -36,21 +36,21 @@ "access": "public" | ||
"@polymer/polymer": "^3.0.0", | ||
"@vaadin/component-base": "^22.0.17", | ||
"@vaadin/field-base": "^22.0.17", | ||
"@vaadin/input-container": "^22.0.17", | ||
"@vaadin/item": "^22.0.17", | ||
"@vaadin/vaadin-lumo-styles": "^22.0.17", | ||
"@vaadin/vaadin-material-styles": "^22.0.17", | ||
"@vaadin/vaadin-overlay": "^22.0.17", | ||
"@vaadin/vaadin-themable-mixin": "^22.0.17" | ||
"@vaadin/component-base": "^22.0.18", | ||
"@vaadin/field-base": "^22.0.18", | ||
"@vaadin/input-container": "^22.0.18", | ||
"@vaadin/item": "^22.0.18", | ||
"@vaadin/vaadin-lumo-styles": "^22.0.18", | ||
"@vaadin/vaadin-material-styles": "^22.0.18", | ||
"@vaadin/vaadin-overlay": "^22.0.18", | ||
"@vaadin/vaadin-themable-mixin": "^22.0.18" | ||
}, | ||
"devDependencies": { | ||
"@esm-bundle/chai": "^4.3.4", | ||
"@vaadin/dialog": "^22.0.17", | ||
"@vaadin/polymer-legacy-adapter": "^22.0.17", | ||
"@vaadin/dialog": "^22.0.18", | ||
"@vaadin/polymer-legacy-adapter": "^22.0.18", | ||
"@vaadin/testing-helpers": "^0.3.2", | ||
"@vaadin/text-field": "^22.0.17", | ||
"@vaadin/text-field": "^22.0.18", | ||
"lit": "^2.0.0", | ||
"sinon": "^9.2.0" | ||
}, | ||
"gitHead": "4ba77c19889036fb954052cf1f32bc96089fcc25" | ||
"gitHead": "8f5d45192adbb084661af01c8837d0898cd68a23" | ||
} |
@@ -1093,2 +1093,8 @@ /** | ||
_onFocusout(event) { | ||
// VoiceOver on iOS fires `focusout` event when moving focus to the item in the dropdown. | ||
// Do not focus the input in this case, because it would break announcement for the item. | ||
if (event.relatedTarget && this._getItemElements().includes(event.relatedTarget)) { | ||
return; | ||
} | ||
// Fixes the problem with `focusout` happening when clicking on the scroll bar on Edge | ||
@@ -1095,0 +1101,0 @@ if (event.relatedTarget === this.$.dropdown.$.overlay) { |
134163
3395
Updated@vaadin/field-base@^22.0.18
Updated@vaadin/item@^22.0.18