@vaadin/a11y-base 24.8.6 → 24.8.7
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 +5 -5
- package/src/list-mixin.js +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/a11y-base",
|
|
3
|
-
"version": "24.8.
|
|
3
|
+
"version": "24.8.7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
34
34
|
"@polymer/polymer": "^3.0.0",
|
|
35
|
-
"@vaadin/component-base": "~24.8.
|
|
35
|
+
"@vaadin/component-base": "~24.8.7",
|
|
36
36
|
"lit": "^3.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@vaadin/chai-plugins": "~24.8.
|
|
40
|
-
"@vaadin/test-runner-commands": "~24.8.
|
|
39
|
+
"@vaadin/chai-plugins": "~24.8.7",
|
|
40
|
+
"@vaadin/test-runner-commands": "~24.8.7",
|
|
41
41
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
42
42
|
"sinon": "^18.0.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "5136ca7537273974e8cf01af79f27963f49cb876"
|
|
45
45
|
}
|
package/src/list-mixin.js
CHANGED
|
@@ -6,7 +6,6 @@
|
|
|
6
6
|
import { timeOut } from '@vaadin/component-base/src/async.js';
|
|
7
7
|
import { Debouncer } from '@vaadin/component-base/src/debounce.js';
|
|
8
8
|
import { getNormalizedScrollLeft, setNormalizedScrollLeft } from '@vaadin/component-base/src/dir-utils.js';
|
|
9
|
-
import { getFlattenedElements } from '@vaadin/component-base/src/dom-utils.js';
|
|
10
9
|
import { SlotObserver } from '@vaadin/component-base/src/slot-observer.js';
|
|
11
10
|
import { isElementHidden } from './focus-utils.js';
|
|
12
11
|
import { KeyboardDirectionMixin } from './keyboard-direction-mixin.js';
|
|
@@ -138,7 +137,7 @@ export const ListMixin = (superClass) =>
|
|
|
138
137
|
|
|
139
138
|
const slot = this.shadowRoot.querySelector('slot:not([name])');
|
|
140
139
|
this._observer = new SlotObserver(slot, () => {
|
|
141
|
-
this._setItems(this._filterItems(
|
|
140
|
+
this._setItems(this._filterItems([...this.children]));
|
|
142
141
|
});
|
|
143
142
|
}
|
|
144
143
|
|