@vaadin/combo-box 23.0.6 → 23.1.0-alpha3

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.6",
3
+ "version": "23.1.0-alpha3",
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.6",
38
- "@vaadin/field-base": "^23.0.6",
39
- "@vaadin/input-container": "^23.0.6",
40
- "@vaadin/item": "^23.0.6",
41
- "@vaadin/vaadin-lumo-styles": "^23.0.6",
42
- "@vaadin/vaadin-material-styles": "^23.0.6",
43
- "@vaadin/vaadin-overlay": "^23.0.6",
44
- "@vaadin/vaadin-themable-mixin": "^23.0.6"
37
+ "@vaadin/component-base": "23.1.0-alpha3",
38
+ "@vaadin/field-base": "23.1.0-alpha3",
39
+ "@vaadin/input-container": "23.1.0-alpha3",
40
+ "@vaadin/item": "23.1.0-alpha3",
41
+ "@vaadin/vaadin-lumo-styles": "23.1.0-alpha3",
42
+ "@vaadin/vaadin-material-styles": "23.1.0-alpha3",
43
+ "@vaadin/vaadin-overlay": "23.1.0-alpha3",
44
+ "@vaadin/vaadin-themable-mixin": "23.1.0-alpha3"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@esm-bundle/chai": "^4.3.4",
48
- "@vaadin/dialog": "^23.0.6",
49
- "@vaadin/polymer-legacy-adapter": "^23.0.6",
48
+ "@vaadin/dialog": "23.1.0-alpha3",
49
+ "@vaadin/polymer-legacy-adapter": "23.1.0-alpha3",
50
50
  "@vaadin/testing-helpers": "^0.3.2",
51
- "@vaadin/text-field": "^23.0.6",
51
+ "@vaadin/text-field": "23.1.0-alpha3",
52
52
  "lit": "^2.0.0",
53
- "sinon": "^9.2.0"
53
+ "sinon": "^13.0.2"
54
54
  },
55
- "gitHead": "82ca8522e24a63343fb28bcb4c686e55d25c8858"
55
+ "gitHead": "8c9e64e8dfa158dd52a9bf6da351ff038c88ca85"
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="[[theme]]"
89
+ theme="[[_theme]]"
90
90
  ></vaadin-combo-box-dropdown>
91
91
  `;
92
92
  }
@@ -691,11 +691,6 @@ export const ComboBoxMixin = (subclass) =>
691
691
 
692
692
  /** @private */
693
693
  _onClosed() {
694
- // Happens when the overlay is closed by clicking outside
695
- if (this.opened) {
696
- this.close();
697
- }
698
-
699
694
  if (!this.loading || this.allowCustomValue) {
700
695
  this._commitValue();
701
696
  }
@@ -179,7 +179,7 @@ class ComboBox extends ComboBoxDataProviderMixin(
179
179
  readonly="[[readonly]]"
180
180
  disabled="[[disabled]]"
181
181
  invalid="[[invalid]]"
182
- theme$="[[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="[[theme]]"
210
+ theme="[[_theme]]"
211
211
  ></vaadin-combo-box-dropdown>
212
212
  `;
213
213
  }