@vaadin/combo-box 22.0.21 → 22.0.23

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": "22.0.21",
3
+ "version": "22.0.23",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -33,23 +33,23 @@
33
33
  "dependencies": {
34
34
  "@open-wc/dedupe-mixin": "^1.3.0",
35
35
  "@polymer/polymer": "^3.0.0",
36
- "@vaadin/component-base": "^22.0.21",
37
- "@vaadin/field-base": "^22.0.21",
38
- "@vaadin/input-container": "^22.0.21",
39
- "@vaadin/item": "^22.0.21",
40
- "@vaadin/vaadin-lumo-styles": "^22.0.21",
41
- "@vaadin/vaadin-material-styles": "^22.0.21",
42
- "@vaadin/vaadin-overlay": "^22.0.21",
43
- "@vaadin/vaadin-themable-mixin": "^22.0.21"
36
+ "@vaadin/component-base": "^22.0.23",
37
+ "@vaadin/field-base": "^22.0.23",
38
+ "@vaadin/input-container": "^22.0.23",
39
+ "@vaadin/item": "^22.0.23",
40
+ "@vaadin/vaadin-lumo-styles": "^22.0.23",
41
+ "@vaadin/vaadin-material-styles": "^22.0.23",
42
+ "@vaadin/vaadin-overlay": "^22.0.23",
43
+ "@vaadin/vaadin-themable-mixin": "^22.0.23"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@esm-bundle/chai": "^4.3.4",
47
- "@vaadin/dialog": "^22.0.21",
48
- "@vaadin/polymer-legacy-adapter": "^22.0.21",
47
+ "@vaadin/dialog": "^22.0.23",
48
+ "@vaadin/polymer-legacy-adapter": "^22.0.23",
49
49
  "@vaadin/testing-helpers": "^0.3.2",
50
- "@vaadin/text-field": "^22.0.21",
50
+ "@vaadin/text-field": "^22.0.23",
51
51
  "lit": "^2.0.0",
52
52
  "sinon": "^9.2.0"
53
53
  },
54
- "gitHead": "f0a522c6e48a10c4850abc7be8bb2fbe3fdcc8f3"
54
+ "gitHead": "22d985fbd88ad5d3ae75ab93a8870d1df723d0e9"
55
55
  }
@@ -62,6 +62,7 @@ export class ComboBoxOverlay extends PositionMixin(OverlayElement) {
62
62
  loader.setAttribute('part', 'loader');
63
63
  const content = this.shadowRoot.querySelector('[part~="content"]');
64
64
  content.parentNode.insertBefore(loader, content);
65
+ this.requiredVerticalSpace = 200;
65
66
  }
66
67
 
67
68
  _outsideClickListener(event) {
@@ -237,8 +237,6 @@ export class ComboBoxScroller extends PolymerElement {
237
237
  if (this.__virtualizer && items) {
238
238
  this.__virtualizer.size = items.length;
239
239
  this.__virtualizer.flush();
240
- // Ensure the total count of items is properly announced.
241
- this.setAttribute('aria-setsize', items.length);
242
240
  this.requestContentUpdate();
243
241
  }
244
242
  }
@@ -304,6 +302,7 @@ export class ComboBoxScroller extends PolymerElement {
304
302
  el.setAttribute('role', this.__getAriaRole(index));
305
303
  el.setAttribute('aria-selected', this.__getAriaSelected(focusedIndex, index));
306
304
  el.setAttribute('aria-posinset', index + 1);
305
+ el.setAttribute('aria-setsize', this.items.length);
307
306
 
308
307
  if (this.theme) {
309
308
  el.setAttribute('theme', this.theme);