@vaadin/a11y-base 25.2.0-beta1 → 25.2.0-beta2
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 +6 -6
- package/src/active-mixin.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/a11y-base",
|
|
3
|
-
"version": "25.2.0-
|
|
3
|
+
"version": "25.2.0-beta2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
35
|
-
"@vaadin/component-base": "25.2.0-
|
|
35
|
+
"@vaadin/component-base": "25.2.0-beta2",
|
|
36
36
|
"lit": "^3.0.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@vaadin/chai-plugins": "25.2.0-
|
|
40
|
-
"@vaadin/test-runner-commands": "25.2.0-
|
|
39
|
+
"@vaadin/chai-plugins": "25.2.0-beta2",
|
|
40
|
+
"@vaadin/test-runner-commands": "25.2.0-beta2",
|
|
41
41
|
"@vaadin/testing-helpers": "^2.0.0",
|
|
42
|
-
"sinon": "^
|
|
42
|
+
"sinon": "^22.0.0"
|
|
43
43
|
},
|
|
44
44
|
"customElements": "custom-elements.json",
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "9e18feb8057baf278b72fec4e42657b19e48f499"
|
|
46
46
|
}
|
package/src/active-mixin.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ export declare class ActiveMixinClass {
|
|
|
32
32
|
/**
|
|
33
33
|
* Override to define if the component needs to be activated.
|
|
34
34
|
*/
|
|
35
|
-
protected
|
|
35
|
+
protected _shouldSetActive(event: KeyboardEvent | MouseEvent): boolean;
|
|
36
36
|
|
|
37
37
|
/**
|
|
38
38
|
* Toggles the `active` attribute on the element.
|