@vaadin/select 23.0.0-alpha1 → 23.0.0-alpha2

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": "23.0.0-alpha1",
3
+ "version": "23.0.0-alpha2",
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": "23.0.0-alpha1",
38
- "@vaadin/component-base": "23.0.0-alpha1",
39
- "@vaadin/field-base": "23.0.0-alpha1",
40
- "@vaadin/input-container": "23.0.0-alpha1",
41
- "@vaadin/item": "23.0.0-alpha1",
42
- "@vaadin/list-box": "23.0.0-alpha1",
43
- "@vaadin/vaadin-list-mixin": "23.0.0-alpha1",
44
- "@vaadin/vaadin-lumo-styles": "23.0.0-alpha1",
45
- "@vaadin/vaadin-material-styles": "23.0.0-alpha1",
46
- "@vaadin/vaadin-overlay": "23.0.0-alpha1",
47
- "@vaadin/vaadin-themable-mixin": "23.0.0-alpha1"
37
+ "@vaadin/button": "23.0.0-alpha2",
38
+ "@vaadin/component-base": "23.0.0-alpha2",
39
+ "@vaadin/field-base": "23.0.0-alpha2",
40
+ "@vaadin/input-container": "23.0.0-alpha2",
41
+ "@vaadin/item": "23.0.0-alpha2",
42
+ "@vaadin/list-box": "23.0.0-alpha2",
43
+ "@vaadin/vaadin-list-mixin": "23.0.0-alpha2",
44
+ "@vaadin/vaadin-lumo-styles": "23.0.0-alpha2",
45
+ "@vaadin/vaadin-material-styles": "23.0.0-alpha2",
46
+ "@vaadin/vaadin-overlay": "23.0.0-alpha2",
47
+ "@vaadin/vaadin-themable-mixin": "23.0.0-alpha2"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@esm-bundle/chai": "^4.3.4",
51
- "@vaadin/polymer-legacy-adapter": "23.0.0-alpha1",
51
+ "@vaadin/polymer-legacy-adapter": "23.0.0-alpha2",
52
52
  "@vaadin/testing-helpers": "^0.3.2",
53
53
  "lit": "^2.0.0",
54
54
  "sinon": "^9.2.0"
55
55
  },
56
- "gitHead": "fbcb07328fdf88260e3b461088d207426b21c710"
56
+ "gitHead": "070f586dead02ca41b66717820c647f48bf1665f"
57
57
  }
@@ -549,13 +549,9 @@ class Select extends DelegateFocusMixin(FieldMixin(SlotMixin(ElementMixin(Themab
549
549
 
550
550
  this._menuElement.focus();
551
551
  } else if (wasOpened) {
552
- if (this._phone) {
553
- this._setFocused(false);
554
- } else {
555
- this.focus();
556
- if (this._openedWithFocusRing) {
557
- this.setAttribute('focus-ring', '');
558
- }
552
+ this.focus();
553
+ if (this._openedWithFocusRing) {
554
+ this.setAttribute('focus-ring', '');
559
555
  }
560
556
  this.validate();
561
557
  }