@vaadin/a11y-base 24.2.0-alpha5 → 24.2.0-alpha6
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 +3 -3
- package/src/list-mixin.js +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/a11y-base",
|
|
3
|
-
"version": "24.2.0-
|
|
3
|
+
"version": "24.2.0-alpha6",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
34
34
|
"@polymer/polymer": "^3.0.0",
|
|
35
|
-
"@vaadin/component-base": "24.2.0-
|
|
35
|
+
"@vaadin/component-base": "24.2.0-alpha6",
|
|
36
36
|
"lit": "^2.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"@vaadin/testing-helpers": "^0.4.3",
|
|
41
41
|
"sinon": "^13.0.2"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "3ef6e6cd66919b3ef7637e42916e4c54656beb51"
|
|
44
44
|
}
|
package/src/list-mixin.js
CHANGED
|
@@ -3,10 +3,11 @@
|
|
|
3
3
|
* Copyright (c) 2017 - 2023 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
|
-
import { FlattenedNodesObserver } from '@polymer/polymer/lib/utils/flattened-nodes-observer.js';
|
|
7
6
|
import { timeOut } from '@vaadin/component-base/src/async.js';
|
|
8
7
|
import { Debouncer } from '@vaadin/component-base/src/debounce.js';
|
|
9
8
|
import { getNormalizedScrollLeft, setNormalizedScrollLeft } from '@vaadin/component-base/src/dir-utils.js';
|
|
9
|
+
import { getFlattenedElements } from '@vaadin/component-base/src/dom-utils.js';
|
|
10
|
+
import { SlotObserver } from '@vaadin/component-base/src/slot-observer.js';
|
|
10
11
|
import { KeyboardDirectionMixin } from './keyboard-direction-mixin.js';
|
|
11
12
|
|
|
12
13
|
/**
|
|
@@ -134,8 +135,9 @@ export const ListMixin = (superClass) =>
|
|
|
134
135
|
|
|
135
136
|
this.addEventListener('click', (e) => this._onClick(e));
|
|
136
137
|
|
|
137
|
-
|
|
138
|
-
|
|
138
|
+
const slot = this.shadowRoot.querySelector('slot:not([name])');
|
|
139
|
+
this._observer = new SlotObserver(slot, () => {
|
|
140
|
+
this._setItems(this._filterItems(getFlattenedElements(this)));
|
|
139
141
|
});
|
|
140
142
|
}
|
|
141
143
|
|