@vaadin/a11y-base 24.3.2 → 24.4.0-dev.223e39f050
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.
|
|
3
|
+
"version": "24.4.0-dev.223e39f050",
|
|
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": "
|
|
35
|
+
"@vaadin/component-base": "24.4.0-dev.223e39f050",
|
|
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": "5e2e3bfc811c95aed9354235fab93fdbf43eb354"
|
|
44
44
|
}
|
package/src/active-mixin.js
CHANGED
|
@@ -17,6 +17,8 @@ import { KeyboardMixin } from './keyboard-mixin.js';
|
|
|
17
17
|
* by the pointer or by releasing the activation key.
|
|
18
18
|
*
|
|
19
19
|
* @polymerMixin
|
|
20
|
+
* @mixes DisabledMixin
|
|
21
|
+
* @mixes KeyboardMixin
|
|
20
22
|
*/
|
|
21
23
|
export const ActiveMixin = (superclass) =>
|
|
22
24
|
class ActiveMixinClass extends DisabledMixin(KeyboardMixin(superclass)) {
|
|
@@ -3,11 +3,7 @@
|
|
|
3
3
|
* Copyright (c) 2021 - 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 {
|
|
7
|
-
removeAriaIDReference,
|
|
8
|
-
restoreGeneratedAriaIDReference,
|
|
9
|
-
setAriaIDReference,
|
|
10
|
-
} from '@vaadin/a11y-base/src/aria-id-reference.js';
|
|
6
|
+
import { removeAriaIDReference, restoreGeneratedAriaIDReference, setAriaIDReference } from './aria-id-reference.js';
|
|
11
7
|
|
|
12
8
|
/**
|
|
13
9
|
* A controller for managing ARIA attributes for a field element:
|