@vaadin/checkbox 24.0.0-alpha11 → 24.0.0-alpha13
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.js +1 -1
- 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.0.0-
|
|
3
|
+
"version": "24.0.0-alpha13",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,20 +36,20 @@
|
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@polymer/polymer": "^3.0.0",
|
|
39
|
-
"@vaadin/component-base": "24.0.0-
|
|
40
|
-
"@vaadin/field-base": "24.0.0-
|
|
41
|
-
"@vaadin/vaadin-lumo-styles": "24.0.0-
|
|
42
|
-
"@vaadin/vaadin-material-styles": "24.0.0-
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "24.0.0-
|
|
39
|
+
"@vaadin/component-base": "24.0.0-alpha13",
|
|
40
|
+
"@vaadin/field-base": "24.0.0-alpha13",
|
|
41
|
+
"@vaadin/vaadin-lumo-styles": "24.0.0-alpha13",
|
|
42
|
+
"@vaadin/vaadin-material-styles": "24.0.0-alpha13",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "24.0.0-alpha13"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@esm-bundle/chai": "^4.3.4",
|
|
47
|
-
"@vaadin/testing-helpers": "^0.
|
|
47
|
+
"@vaadin/testing-helpers": "^0.4.0",
|
|
48
48
|
"sinon": "^13.0.2"
|
|
49
49
|
},
|
|
50
50
|
"web-types": [
|
|
51
51
|
"web-types.json",
|
|
52
52
|
"web-types.lit.json"
|
|
53
53
|
],
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "a423ad309c12b4e4f847737ee9f491f83ea60ff0"
|
|
55
55
|
}
|
package/src/vaadin-checkbox.js
CHANGED
|
@@ -117,7 +117,7 @@ class Checkbox extends LabelMixin(
|
|
|
117
117
|
}
|
|
118
118
|
</style>
|
|
119
119
|
<div class="vaadin-checkbox-container">
|
|
120
|
-
<div part="checkbox"></div>
|
|
120
|
+
<div part="checkbox" aria-hidden="true"></div>
|
|
121
121
|
<slot name="input"></slot>
|
|
122
122
|
<slot name="label"></slot>
|
|
123
123
|
</div>
|
package/web-types.json
CHANGED