@vaadin/a11y-base 24.7.0-alpha5 → 24.7.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vaadin/a11y-base",
3
- "version": "24.7.0-alpha5",
3
+ "version": "24.7.0-alpha6",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -32,13 +32,13 @@
32
32
  "dependencies": {
33
33
  "@open-wc/dedupe-mixin": "^1.3.0",
34
34
  "@polymer/polymer": "^3.0.0",
35
- "@vaadin/component-base": "24.7.0-alpha5",
35
+ "@vaadin/component-base": "24.7.0-alpha6",
36
36
  "lit": "^3.0.0"
37
37
  },
38
38
  "devDependencies": {
39
- "@vaadin/chai-plugins": "24.7.0-alpha5",
39
+ "@vaadin/chai-plugins": "24.7.0-alpha6",
40
40
  "@vaadin/testing-helpers": "^1.1.0",
41
41
  "sinon": "^18.0.0"
42
42
  },
43
- "gitHead": "f9fa2bd652780a344d5e0329b8aafbcbd72ebd14"
43
+ "gitHead": "6255a512997a648da91fed37de4d5000809eaebf"
44
44
  }
package/src/list-mixin.js CHANGED
@@ -265,15 +265,6 @@ export const ListMixin = (superClass) =>
265
265
  super._onKeyDown(event);
266
266
  }
267
267
 
268
- /**
269
- * @param {!Element} item
270
- * @return {boolean}
271
- * @protected
272
- */
273
- _isItemHidden(item) {
274
- return getComputedStyle(item).display === 'none';
275
- }
276
-
277
268
  /**
278
269
  * @param {number} idx
279
270
  * @protected