@vaadin/combo-box 23.0.11 → 23.0.14

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/combo-box",
3
- "version": "23.0.11",
3
+ "version": "23.0.14",
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.11",
38
- "@vaadin/field-base": "^23.0.11",
39
- "@vaadin/input-container": "^23.0.11",
40
- "@vaadin/item": "^23.0.11",
41
- "@vaadin/vaadin-lumo-styles": "^23.0.11",
42
- "@vaadin/vaadin-material-styles": "^23.0.11",
43
- "@vaadin/vaadin-overlay": "^23.0.11",
44
- "@vaadin/vaadin-themable-mixin": "^23.0.11"
37
+ "@vaadin/component-base": "~23.0.14",
38
+ "@vaadin/field-base": "~23.0.14",
39
+ "@vaadin/input-container": "~23.0.14",
40
+ "@vaadin/item": "~23.0.14",
41
+ "@vaadin/vaadin-lumo-styles": "~23.0.14",
42
+ "@vaadin/vaadin-material-styles": "~23.0.14",
43
+ "@vaadin/vaadin-overlay": "~23.0.14",
44
+ "@vaadin/vaadin-themable-mixin": "~23.0.14"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@esm-bundle/chai": "^4.3.4",
48
- "@vaadin/dialog": "^23.0.11",
49
- "@vaadin/polymer-legacy-adapter": "^23.0.11",
48
+ "@vaadin/dialog": "~23.0.14",
49
+ "@vaadin/polymer-legacy-adapter": "~23.0.14",
50
50
  "@vaadin/testing-helpers": "^0.3.2",
51
- "@vaadin/text-field": "^23.0.11",
51
+ "@vaadin/text-field": "~23.0.14",
52
52
  "lit": "^2.0.0",
53
53
  "sinon": "^9.2.0"
54
54
  },
55
- "gitHead": "10838304fe6f5c98b838ec3a90bdcf49cbf4650b"
55
+ "gitHead": "4bf78ed9737b5147dfb74c802d116354caa98992"
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();