@vaadin/combo-box 23.0.4 → 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 +13 -13
- package/src/vaadin-combo-box-light.js +1 -1
- package/src/vaadin-combo-box.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/combo-box",
|
|
3
|
-
"version": "23.0
|
|
3
|
+
"version": "23.1.0-alpha1",
|
|
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": "
|
|
38
|
-
"@vaadin/field-base": "
|
|
39
|
-
"@vaadin/input-container": "
|
|
40
|
-
"@vaadin/item": "
|
|
41
|
-
"@vaadin/vaadin-lumo-styles": "
|
|
42
|
-
"@vaadin/vaadin-material-styles": "
|
|
43
|
-
"@vaadin/vaadin-overlay": "
|
|
44
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
37
|
+
"@vaadin/component-base": "23.1.0-alpha1",
|
|
38
|
+
"@vaadin/field-base": "23.1.0-alpha1",
|
|
39
|
+
"@vaadin/input-container": "23.1.0-alpha1",
|
|
40
|
+
"@vaadin/item": "23.1.0-alpha1",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "23.1.0-alpha1",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "23.1.0-alpha1",
|
|
43
|
+
"@vaadin/vaadin-overlay": "23.1.0-alpha1",
|
|
44
|
+
"@vaadin/vaadin-themable-mixin": "23.1.0-alpha1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@esm-bundle/chai": "^4.3.4",
|
|
48
|
-
"@vaadin/dialog": "
|
|
49
|
-
"@vaadin/polymer-legacy-adapter": "
|
|
48
|
+
"@vaadin/dialog": "23.1.0-alpha1",
|
|
49
|
+
"@vaadin/polymer-legacy-adapter": "23.1.0-alpha1",
|
|
50
50
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
51
|
-
"@vaadin/text-field": "
|
|
51
|
+
"@vaadin/text-field": "23.1.0-alpha1",
|
|
52
52
|
"lit": "^2.0.0",
|
|
53
53
|
"sinon": "^9.2.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "5d0cdee069f866037c507265fafb4d0476795333"
|
|
56
56
|
}
|
|
@@ -86,7 +86,7 @@ class ComboBoxLight extends ComboBoxDataProviderMixin(ComboBoxMixin(ThemableMixi
|
|
|
86
86
|
_item-id-path="[[itemIdPath]]"
|
|
87
87
|
_item-label-path="[[itemLabelPath]]"
|
|
88
88
|
loading="[[loading]]"
|
|
89
|
-
theme="[[
|
|
89
|
+
theme="[[_theme]]"
|
|
90
90
|
></vaadin-combo-box-dropdown>
|
|
91
91
|
`;
|
|
92
92
|
}
|
package/src/vaadin-combo-box.js
CHANGED
|
@@ -179,7 +179,7 @@ class ComboBox extends ComboBoxDataProviderMixin(
|
|
|
179
179
|
readonly="[[readonly]]"
|
|
180
180
|
disabled="[[disabled]]"
|
|
181
181
|
invalid="[[invalid]]"
|
|
182
|
-
theme$="[[
|
|
182
|
+
theme$="[[_theme]]"
|
|
183
183
|
>
|
|
184
184
|
<slot name="prefix" slot="prefix"></slot>
|
|
185
185
|
<slot name="input"></slot>
|
|
@@ -207,7 +207,7 @@ class ComboBox extends ComboBoxDataProviderMixin(
|
|
|
207
207
|
_item-id-path="[[itemIdPath]]"
|
|
208
208
|
_item-label-path="[[itemLabelPath]]"
|
|
209
209
|
loading="[[loading]]"
|
|
210
|
-
theme="[[
|
|
210
|
+
theme="[[_theme]]"
|
|
211
211
|
></vaadin-combo-box-dropdown>
|
|
212
212
|
`;
|
|
213
213
|
}
|