@vaadin/multi-select-combo-box 23.2.0-alpha4 → 23.2.0-alpha5

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/README.md CHANGED
@@ -1,7 +1,5 @@
1
1
  # @vaadin/multi-select-combo-box
2
2
 
3
- > ⚠️ Work in progress, please do not use this component yet.
4
-
5
3
  A web component that wraps `<vaadin-combo-box>` and allows selecting multiple items.
6
4
 
7
5
  ```html
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/multi-select-combo-box",
3
- "version": "23.2.0-alpha4",
3
+ "version": "23.2.0-alpha5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -37,14 +37,14 @@
37
37
  ],
38
38
  "dependencies": {
39
39
  "@polymer/polymer": "^3.0.0",
40
- "@vaadin/combo-box": "23.2.0-alpha4",
41
- "@vaadin/component-base": "23.2.0-alpha4",
42
- "@vaadin/field-base": "23.2.0-alpha4",
43
- "@vaadin/input-container": "23.2.0-alpha4",
44
- "@vaadin/lit-renderer": "23.2.0-alpha4",
45
- "@vaadin/vaadin-lumo-styles": "23.2.0-alpha4",
46
- "@vaadin/vaadin-material-styles": "23.2.0-alpha4",
47
- "@vaadin/vaadin-themable-mixin": "23.2.0-alpha4"
40
+ "@vaadin/combo-box": "23.2.0-alpha5",
41
+ "@vaadin/component-base": "23.2.0-alpha5",
42
+ "@vaadin/field-base": "23.2.0-alpha5",
43
+ "@vaadin/input-container": "23.2.0-alpha5",
44
+ "@vaadin/lit-renderer": "23.2.0-alpha5",
45
+ "@vaadin/vaadin-lumo-styles": "23.2.0-alpha5",
46
+ "@vaadin/vaadin-material-styles": "23.2.0-alpha5",
47
+ "@vaadin/vaadin-themable-mixin": "23.2.0-alpha5"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@esm-bundle/chai": "^4.3.4",
@@ -55,5 +55,5 @@
55
55
  "web-types.json",
56
56
  "web-types.lit.json"
57
57
  ],
58
- "gitHead": "cbf5f1d0f38ac9b81c65cf9ef5660182e176e598"
58
+ "gitHead": "c6247fd741d61096d75a71feda4a1faf88b6f0ce"
59
59
  }
@@ -38,7 +38,6 @@ class MultiSelectComboBoxInternal extends ComboBoxDataProviderMixin(ComboBoxMixi
38
38
 
39
39
  <vaadin-multi-select-combo-box-overlay
40
40
  id="overlay"
41
- hidden$="[[_isOverlayHidden(filteredItems, loading)]]"
42
41
  opened="[[_overlayOpened]]"
43
42
  loading$="[[loading]]"
44
43
  theme$="[[_theme]]"
@@ -23,6 +23,7 @@ import type { InputMixinClass } from '@vaadin/field-base/src/input-mixin.js';
23
23
  import type { LabelMixinClass } from '@vaadin/field-base/src/label-mixin.js';
24
24
  import type { ValidateMixinClass } from '@vaadin/field-base/src/validate-mixin.js';
25
25
  import type { ThemableMixinClass } from '@vaadin/vaadin-themable-mixin/vaadin-themable-mixin.js';
26
+ import type { ThemePropertyMixinClass } from '@vaadin/vaadin-themable-mixin/vaadin-theme-property-mixin.js';
26
27
 
27
28
  export type MultiSelectComboBoxRenderer<TItem> = (
28
29
  root: HTMLElement,
@@ -343,6 +344,7 @@ interface MultiSelectComboBox
343
344
  DelegateFocusMixinClass,
344
345
  ResizeMixinClass,
345
346
  ThemableMixinClass,
347
+ ThemePropertyMixinClass,
346
348
  ElementMixinClass,
347
349
  ControllerMixinClass {}
348
350
 
package/web-types.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/multi-select-combo-box",
4
- "version": "23.2.0-alpha4",
4
+ "version": "23.2.0-alpha5",
5
5
  "description-markup": "markdown",
6
6
  "contributions": {
7
7
  "html": {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "$schema": "https://json.schemastore.org/web-types",
3
3
  "name": "@vaadin/multi-select-combo-box",
4
- "version": "23.2.0-alpha4",
4
+ "version": "23.2.0-alpha5",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {