@vaadin/a11y-base 24.8.0-alpha15 → 24.8.0-alpha16
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.8.0-
|
|
3
|
+
"version": "24.8.0-alpha16",
|
|
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.0-
|
|
35
|
+
"@vaadin/component-base": "24.8.0-alpha16",
|
|
36
36
|
"lit": "^3.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@vaadin/chai-plugins": "24.8.0-
|
|
40
|
-
"@vaadin/test-runner-commands": "24.8.0-
|
|
39
|
+
"@vaadin/chai-plugins": "24.8.0-alpha16",
|
|
40
|
+
"@vaadin/test-runner-commands": "24.8.0-alpha16",
|
|
41
41
|
"@vaadin/testing-helpers": "^1.1.0",
|
|
42
42
|
"sinon": "^18.0.0"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "ac26cb142cd3d6374423ca699677d47557399d47"
|
|
45
45
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Copyright (c) 2021 - 2025 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
|
-
import {
|
|
6
|
+
import { dedupeMixin } from '@open-wc/dedupe-mixin';
|
|
7
7
|
import { FocusMixin } from './focus-mixin.js';
|
|
8
8
|
import { TabindexMixin } from './tabindex-mixin.js';
|
|
9
9
|
|
|
@@ -14,7 +14,7 @@ import { TabindexMixin } from './tabindex-mixin.js';
|
|
|
14
14
|
* @mixes FocusMixin
|
|
15
15
|
* @mixes TabindexMixin
|
|
16
16
|
*/
|
|
17
|
-
export const DelegateFocusMixin =
|
|
17
|
+
export const DelegateFocusMixin = dedupeMixin(
|
|
18
18
|
(superclass) =>
|
|
19
19
|
class DelegateFocusMixinClass extends FocusMixin(TabindexMixin(superclass)) {
|
|
20
20
|
static get properties() {
|
package/src/disabled-mixin.js
CHANGED
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
* Copyright (c) 2021 - 2025 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
|
-
import {
|
|
6
|
+
import { dedupeMixin } from '@open-wc/dedupe-mixin';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* A mixin to provide disabled property for field components.
|
|
10
10
|
*
|
|
11
11
|
* @polymerMixin
|
|
12
12
|
*/
|
|
13
|
-
export const DisabledMixin =
|
|
13
|
+
export const DisabledMixin = dedupeMixin(
|
|
14
14
|
(superclass) =>
|
|
15
15
|
class DisabledMixinClass extends superclass {
|
|
16
16
|
static get properties() {
|
package/src/focus-mixin.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Copyright (c) 2021 - 2025 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
|
-
import {
|
|
6
|
+
import { dedupeMixin } from '@open-wc/dedupe-mixin';
|
|
7
7
|
import { isKeyboardActive } from './focus-utils.js';
|
|
8
8
|
|
|
9
9
|
/**
|
|
@@ -11,7 +11,7 @@ import { isKeyboardActive } from './focus-utils.js';
|
|
|
11
11
|
*
|
|
12
12
|
* @polymerMixin
|
|
13
13
|
*/
|
|
14
|
-
export const FocusMixin =
|
|
14
|
+
export const FocusMixin = dedupeMixin(
|
|
15
15
|
(superclass) =>
|
|
16
16
|
class FocusMixinClass extends superclass {
|
|
17
17
|
/**
|
package/src/keyboard-mixin.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Copyright (c) 2021 - 2025 Vaadin Ltd.
|
|
4
4
|
* This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
|
|
5
5
|
*/
|
|
6
|
-
import {
|
|
6
|
+
import { dedupeMixin } from '@open-wc/dedupe-mixin';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* A mixin that manages keyboard handling.
|
|
@@ -12,7 +12,7 @@ import { dedupingMixin } from '@polymer/polymer/lib/utils/mixin.js';
|
|
|
12
12
|
*
|
|
13
13
|
* @polymerMixin
|
|
14
14
|
*/
|
|
15
|
-
export const KeyboardMixin =
|
|
15
|
+
export const KeyboardMixin = dedupeMixin(
|
|
16
16
|
(superclass) =>
|
|
17
17
|
class KeyboardMixinClass extends superclass {
|
|
18
18
|
/** @protected */
|