@vaadin/multi-select-combo-box 23.3.4 → 23.3.6

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.3.4",
3
+ "version": "23.3.6",
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.3.4",
41
- "@vaadin/component-base": "~23.3.4",
42
- "@vaadin/field-base": "~23.3.4",
43
- "@vaadin/input-container": "~23.3.4",
44
- "@vaadin/lit-renderer": "~23.3.4",
45
- "@vaadin/vaadin-lumo-styles": "~23.3.4",
46
- "@vaadin/vaadin-material-styles": "~23.3.4",
47
- "@vaadin/vaadin-themable-mixin": "~23.3.4"
40
+ "@vaadin/combo-box": "~23.3.6",
41
+ "@vaadin/component-base": "~23.3.6",
42
+ "@vaadin/field-base": "~23.3.6",
43
+ "@vaadin/input-container": "~23.3.6",
44
+ "@vaadin/lit-renderer": "~23.3.6",
45
+ "@vaadin/vaadin-lumo-styles": "~23.3.6",
46
+ "@vaadin/vaadin-material-styles": "~23.3.6",
47
+ "@vaadin/vaadin-themable-mixin": "~23.3.6"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@esm-bundle/chai": "^4.3.4",
@@ -56,5 +56,5 @@
56
56
  "web-types.json",
57
57
  "web-types.lit.json"
58
58
  ],
59
- "gitHead": "e896534f360fb7b7eed1ed6b3e660ca1fe44e028"
59
+ "gitHead": "3ea0e9875f51cca9c4f78cf731fd8009c5a45ddb"
60
60
  }
@@ -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
  }
@@ -865,7 +865,7 @@ class MultiSelectComboBox extends ResizeMixin(InputControlMixin(ThemableMixin(El
865
865
 
866
866
  /** @private */
867
867
  __updateChips() {
868
- if (!this._inputField) {
868
+ if (!this._inputField || !this.inputElement) {
869
869
  return;
870
870
  }
871
871
 
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.3.4",
4
+ "version": "23.3.6",
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.3.4",
4
+ "version": "23.3.6",
5
5
  "description-markup": "markdown",
6
6
  "framework": "lit",
7
7
  "framework-config": {