@vaadin/checkbox 24.2.2 → 24.2.4
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 +8 -8
- package/src/vaadin-checkbox-mixin.js +12 -0
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/checkbox",
|
|
3
|
-
"version": "24.2.
|
|
3
|
+
"version": "24.2.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,12 +39,12 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
41
41
|
"@polymer/polymer": "^3.0.0",
|
|
42
|
-
"@vaadin/a11y-base": "~24.2.
|
|
43
|
-
"@vaadin/component-base": "~24.2.
|
|
44
|
-
"@vaadin/field-base": "~24.2.
|
|
45
|
-
"@vaadin/vaadin-lumo-styles": "~24.2.
|
|
46
|
-
"@vaadin/vaadin-material-styles": "~24.2.
|
|
47
|
-
"@vaadin/vaadin-themable-mixin": "~24.2.
|
|
42
|
+
"@vaadin/a11y-base": "~24.2.4",
|
|
43
|
+
"@vaadin/component-base": "~24.2.4",
|
|
44
|
+
"@vaadin/field-base": "~24.2.4",
|
|
45
|
+
"@vaadin/vaadin-lumo-styles": "~24.2.4",
|
|
46
|
+
"@vaadin/vaadin-material-styles": "~24.2.4",
|
|
47
|
+
"@vaadin/vaadin-themable-mixin": "~24.2.4",
|
|
48
48
|
"lit": "^2.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"web-types.json",
|
|
57
57
|
"web-types.lit.json"
|
|
58
58
|
],
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "885416de13069b7409ac90c1b323a58ac87da6ce"
|
|
60
60
|
}
|
|
@@ -48,6 +48,18 @@ export const CheckboxMixin = (superclass) =>
|
|
|
48
48
|
type: String,
|
|
49
49
|
value: '',
|
|
50
50
|
},
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Indicates whether the element can be focused and where it participates in sequential keyboard navigation.
|
|
54
|
+
*
|
|
55
|
+
* @override
|
|
56
|
+
* @protected
|
|
57
|
+
*/
|
|
58
|
+
tabindex: {
|
|
59
|
+
type: Number,
|
|
60
|
+
value: 0,
|
|
61
|
+
reflectToAttribute: true,
|
|
62
|
+
},
|
|
51
63
|
};
|
|
52
64
|
}
|
|
53
65
|
|
package/web-types.json
CHANGED