@vaadin/a11y-base 24.3.0-rc1 → 24.3.0
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.d.ts +0 -5
- package/src/list-mixin.js +0 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/a11y-base",
|
|
3
|
-
"version": "24.3.0
|
|
3
|
+
"version": "24.3.0",
|
|
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.3.0
|
|
35
|
+
"@vaadin/component-base": "~24.3.0",
|
|
36
36
|
"lit": "^3.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
@@ -40,5 +40,5 @@
|
|
|
40
40
|
"@vaadin/testing-helpers": "^0.6.0",
|
|
41
41
|
"sinon": "^13.0.2"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "713c37a239d9230774eddc10436c7587a1de09d1"
|
|
44
44
|
}
|
package/src/list-mixin.d.ts
CHANGED
|
@@ -15,11 +15,6 @@ export declare function ListMixin<T extends Constructor<HTMLElement>>(
|
|
|
15
15
|
): Constructor<KeyboardDirectionMixinClass> & Constructor<KeyboardMixinClass> & Constructor<ListMixinClass> & T;
|
|
16
16
|
|
|
17
17
|
export declare class ListMixinClass {
|
|
18
|
-
/**
|
|
19
|
-
* Used for mixin detection because `instanceof` does not work with mixins.
|
|
20
|
-
*/
|
|
21
|
-
_hasVaadinListMixin: boolean;
|
|
22
|
-
|
|
23
18
|
/**
|
|
24
19
|
* If true, the user cannot interact with this element.
|
|
25
20
|
* When the element is disabled, the selected item is
|
package/src/list-mixin.js
CHANGED
|
@@ -20,14 +20,6 @@ export const ListMixin = (superClass) =>
|
|
|
20
20
|
class ListMixinClass extends KeyboardDirectionMixin(superClass) {
|
|
21
21
|
static get properties() {
|
|
22
22
|
return {
|
|
23
|
-
/**
|
|
24
|
-
* Used for mixin detection because `instanceof` does not work with mixins.
|
|
25
|
-
* @type {boolean}
|
|
26
|
-
*/
|
|
27
|
-
_hasVaadinListMixin: {
|
|
28
|
-
value: true,
|
|
29
|
-
},
|
|
30
|
-
|
|
31
23
|
/**
|
|
32
24
|
* If true, the user cannot interact with this element.
|
|
33
25
|
* When the element is disabled, the selected item is
|