@vaadin/select 22.0.0-beta2 → 22.0.2

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/select",
3
- "version": "22.0.0-beta2",
3
+ "version": "22.0.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,24 +34,24 @@
34
34
  "dependencies": {
35
35
  "@polymer/iron-media-query": "^3.0.0",
36
36
  "@polymer/polymer": "^3.2.0",
37
- "@vaadin/button": "22.0.0-beta2",
38
- "@vaadin/component-base": "22.0.0-beta2",
39
- "@vaadin/field-base": "22.0.0-beta2",
40
- "@vaadin/input-container": "22.0.0-beta2",
41
- "@vaadin/item": "22.0.0-beta2",
42
- "@vaadin/list-box": "22.0.0-beta2",
43
- "@vaadin/vaadin-list-mixin": "22.0.0-beta2",
44
- "@vaadin/vaadin-lumo-styles": "22.0.0-beta2",
45
- "@vaadin/vaadin-material-styles": "22.0.0-beta2",
46
- "@vaadin/vaadin-overlay": "22.0.0-beta2",
47
- "@vaadin/vaadin-themable-mixin": "22.0.0-beta2"
37
+ "@vaadin/button": "^22.0.2",
38
+ "@vaadin/component-base": "^22.0.2",
39
+ "@vaadin/field-base": "^22.0.2",
40
+ "@vaadin/input-container": "^22.0.2",
41
+ "@vaadin/item": "^22.0.2",
42
+ "@vaadin/list-box": "^22.0.2",
43
+ "@vaadin/vaadin-list-mixin": "^22.0.2",
44
+ "@vaadin/vaadin-lumo-styles": "^22.0.2",
45
+ "@vaadin/vaadin-material-styles": "^22.0.2",
46
+ "@vaadin/vaadin-overlay": "^22.0.2",
47
+ "@vaadin/vaadin-themable-mixin": "^22.0.2"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@esm-bundle/chai": "^4.3.4",
51
- "@vaadin/polymer-legacy-adapter": "22.0.0-beta2",
52
- "@vaadin/testing-helpers": "^0.3.0",
51
+ "@vaadin/polymer-legacy-adapter": "^22.0.2",
52
+ "@vaadin/testing-helpers": "^0.3.2",
53
53
  "lit": "^2.0.0",
54
54
  "sinon": "^9.2.0"
55
55
  },
56
- "gitHead": "f13833683e6667f6ca6678452db14aa6b7eac4a4"
56
+ "gitHead": "df21370c4a655a38eac11f79686021ab3b0887ad"
57
57
  }
@@ -489,13 +489,9 @@ class Select extends DelegateFocusMixin(FieldMixin(SlotMixin(ElementMixin(Themab
489
489
 
490
490
  this._menuElement.focus();
491
491
  } else if (wasOpened) {
492
- if (this._phone) {
493
- this._setFocused(false);
494
- } else {
495
- this.focus();
496
- if (this._openedWithFocusRing) {
497
- this.setAttribute('focus-ring', '');
498
- }
492
+ this.focus();
493
+ if (this._openedWithFocusRing) {
494
+ this.setAttribute('focus-ring', '');
499
495
  }
500
496
  this.validate();
501
497
  }