@vaadin/multi-select-combo-box 23.2.13 → 23.2.15

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/multi-select-combo-box",
3
- "version": "23.2.13",
3
+ "version": "23.2.15",
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.13",
41
- "@vaadin/component-base": "~23.2.13",
42
- "@vaadin/field-base": "~23.2.13",
43
- "@vaadin/input-container": "~23.2.13",
44
- "@vaadin/lit-renderer": "~23.2.13",
45
- "@vaadin/vaadin-lumo-styles": "~23.2.13",
46
- "@vaadin/vaadin-material-styles": "~23.2.13",
47
- "@vaadin/vaadin-themable-mixin": "~23.2.13"
40
+ "@vaadin/combo-box": "~23.2.15",
41
+ "@vaadin/component-base": "~23.2.15",
42
+ "@vaadin/field-base": "~23.2.15",
43
+ "@vaadin/input-container": "~23.2.15",
44
+ "@vaadin/lit-renderer": "~23.2.15",
45
+ "@vaadin/vaadin-lumo-styles": "~23.2.15",
46
+ "@vaadin/vaadin-material-styles": "~23.2.15",
47
+ "@vaadin/vaadin-themable-mixin": "~23.2.15"
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": "0b8786d43b6b4e419d8482f29595719bf0c9e5e5"
58
+ "gitHead": "4e15a8705bf33c928a9cb6e9d79d47a00b30814c"
59
59
  }
@@ -24,14 +24,11 @@ class MultiSelectComboBoxScroller extends ComboBoxScroller {
24
24
  this.setAttribute('aria-multiselectable', 'true');
25
25
  }
26
26
 
27
- /** @private */
28
- __getAriaSelected(_focusedIndex, itemIndex) {
29
- const item = this.items[itemIndex];
30
- return this.__isItemSelected(item, null, this.itemIdPath).toString();
31
- }
32
-
33
- /** @private */
34
- __isItemSelected(item, _selectedItem, itemIdPath) {
27
+ /**
28
+ * @protected
29
+ * @override
30
+ */
31
+ _isItemSelected(item, _selectedItem, itemIdPath) {
35
32
  if (item instanceof ComboBoxPlaceholder) {
36
33
  return false;
37
34
  }
@@ -857,7 +857,7 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
857
857
 
858
858
  /** @private */
859
859
  __updateChips() {
860
- if (!this._inputField) {
860
+ if (!this._inputField || !this.inputElement) {
861
861
  return;
862
862
  }
863
863
 
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.13",
4
+ "version": "23.2.15",
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.13",
4
+ "version": "23.2.15",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {