@vaadin/combo-box 22.0.20 → 22.0.22
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 +13 -13
- package/src/vaadin-combo-box-scroller.js +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/combo-box",
|
|
3
|
-
"version": "22.0.
|
|
3
|
+
"version": "22.0.22",
|
|
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.
|
|
37
|
-
"@vaadin/field-base": "^22.0.
|
|
38
|
-
"@vaadin/input-container": "^22.0.
|
|
39
|
-
"@vaadin/item": "^22.0.
|
|
40
|
-
"@vaadin/vaadin-lumo-styles": "^22.0.
|
|
41
|
-
"@vaadin/vaadin-material-styles": "^22.0.
|
|
42
|
-
"@vaadin/vaadin-overlay": "^22.0.
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "^22.0.
|
|
36
|
+
"@vaadin/component-base": "^22.0.22",
|
|
37
|
+
"@vaadin/field-base": "^22.0.22",
|
|
38
|
+
"@vaadin/input-container": "^22.0.22",
|
|
39
|
+
"@vaadin/item": "^22.0.22",
|
|
40
|
+
"@vaadin/vaadin-lumo-styles": "^22.0.22",
|
|
41
|
+
"@vaadin/vaadin-material-styles": "^22.0.22",
|
|
42
|
+
"@vaadin/vaadin-overlay": "^22.0.22",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "^22.0.22"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@esm-bundle/chai": "^4.3.4",
|
|
47
|
-
"@vaadin/dialog": "^22.0.
|
|
48
|
-
"@vaadin/polymer-legacy-adapter": "^22.0.
|
|
47
|
+
"@vaadin/dialog": "^22.0.22",
|
|
48
|
+
"@vaadin/polymer-legacy-adapter": "^22.0.22",
|
|
49
49
|
"@vaadin/testing-helpers": "^0.3.2",
|
|
50
|
-
"@vaadin/text-field": "^22.0.
|
|
50
|
+
"@vaadin/text-field": "^22.0.22",
|
|
51
51
|
"lit": "^2.0.0",
|
|
52
52
|
"sinon": "^9.2.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "3911915e4921e0338ff812cff30d4c65900225d2"
|
|
55
55
|
}
|
|
@@ -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);
|