@vaadin/select 23.0.2 → 23.1.0-alpha1

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.2",
3
+ "version": "23.1.0-alpha1",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -34,24 +34,24 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@polymer/polymer": "^3.2.0",
37
- "@vaadin/button": "^23.0.2",
38
- "@vaadin/component-base": "^23.0.2",
39
- "@vaadin/field-base": "^23.0.2",
40
- "@vaadin/input-container": "^23.0.2",
41
- "@vaadin/item": "^23.0.2",
42
- "@vaadin/list-box": "^23.0.2",
43
- "@vaadin/vaadin-list-mixin": "^23.0.2",
44
- "@vaadin/vaadin-lumo-styles": "^23.0.2",
45
- "@vaadin/vaadin-material-styles": "^23.0.2",
46
- "@vaadin/vaadin-overlay": "^23.0.2",
47
- "@vaadin/vaadin-themable-mixin": "^23.0.2"
37
+ "@vaadin/button": "23.1.0-alpha1",
38
+ "@vaadin/component-base": "23.1.0-alpha1",
39
+ "@vaadin/field-base": "23.1.0-alpha1",
40
+ "@vaadin/input-container": "23.1.0-alpha1",
41
+ "@vaadin/item": "23.1.0-alpha1",
42
+ "@vaadin/list-box": "23.1.0-alpha1",
43
+ "@vaadin/vaadin-list-mixin": "23.1.0-alpha1",
44
+ "@vaadin/vaadin-lumo-styles": "23.1.0-alpha1",
45
+ "@vaadin/vaadin-material-styles": "23.1.0-alpha1",
46
+ "@vaadin/vaadin-overlay": "23.1.0-alpha1",
47
+ "@vaadin/vaadin-themable-mixin": "23.1.0-alpha1"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@esm-bundle/chai": "^4.3.4",
51
- "@vaadin/polymer-legacy-adapter": "^23.0.2",
51
+ "@vaadin/polymer-legacy-adapter": "23.1.0-alpha1",
52
52
  "@vaadin/testing-helpers": "^0.3.2",
53
53
  "lit": "^2.0.0",
54
54
  "sinon": "^9.2.0"
55
55
  },
56
- "gitHead": "a50f708dc0fe7d0cc10763f413838d71b1a0788b"
56
+ "gitHead": "5d0cdee069f866037c507265fafb4d0476795333"
57
57
  }
@@ -157,7 +157,7 @@ class Select extends DelegateFocusMixin(FieldMixin(SlotMixin(ElementMixin(Themab
157
157
  readonly="[[readonly]]"
158
158
  disabled="[[disabled]]"
159
159
  invalid="[[invalid]]"
160
- theme$="[[theme]]"
160
+ theme$="[[_theme]]"
161
161
  on-click="_onClick"
162
162
  >
163
163
  <slot name="prefix" slot="prefix"></slot>
@@ -179,7 +179,7 @@ class Select extends DelegateFocusMixin(FieldMixin(SlotMixin(ElementMixin(Themab
179
179
  opened="{{opened}}"
180
180
  with-backdrop="[[_phone]]"
181
181
  phone$="[[_phone]]"
182
- theme$="[[theme]]"
182
+ theme$="[[_theme]]"
183
183
  ></vaadin-select-overlay>
184
184
  `;
185
185
  }
@@ -27,6 +27,10 @@ const select = css`
27
27
  color: var(--lumo-body-text-color);
28
28
  }
29
29
 
30
+ :host([readonly]) [part='input-field'] ::slotted([slot='value']:not([placeholder])) {
31
+ color: var(--lumo-secondary-text-color);
32
+ }
33
+
30
34
  /* placeholder styles */
31
35
  [part='input-field'] ::slotted([slot='value'][placeholder]) {
32
36
  color: inherit;