@vaadin/radio-group 24.1.0-alpha6 → 24.1.0-alpha7
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-radio-button.js +13 -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/radio-group",
|
|
3
|
-
"version": "24.1.0-
|
|
3
|
+
"version": "24.1.0-alpha7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -38,12 +38,12 @@
|
|
|
38
38
|
],
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@polymer/polymer": "^3.0.0",
|
|
41
|
-
"@vaadin/a11y-base": "24.1.0-
|
|
42
|
-
"@vaadin/component-base": "24.1.0-
|
|
43
|
-
"@vaadin/field-base": "24.1.0-
|
|
44
|
-
"@vaadin/vaadin-lumo-styles": "24.1.0-
|
|
45
|
-
"@vaadin/vaadin-material-styles": "24.1.0-
|
|
46
|
-
"@vaadin/vaadin-themable-mixin": "24.1.0-
|
|
41
|
+
"@vaadin/a11y-base": "24.1.0-alpha7",
|
|
42
|
+
"@vaadin/component-base": "24.1.0-alpha7",
|
|
43
|
+
"@vaadin/field-base": "24.1.0-alpha7",
|
|
44
|
+
"@vaadin/vaadin-lumo-styles": "24.1.0-alpha7",
|
|
45
|
+
"@vaadin/vaadin-material-styles": "24.1.0-alpha7",
|
|
46
|
+
"@vaadin/vaadin-themable-mixin": "24.1.0-alpha7"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@esm-bundle/chai": "^4.3.4",
|
|
@@ -54,5 +54,5 @@
|
|
|
54
54
|
"web-types.json",
|
|
55
55
|
"web-types.lit.json"
|
|
56
56
|
],
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "6711b6ac7b49e2ddc0990c34de9718b58c2d16b3"
|
|
58
58
|
}
|
|
@@ -119,6 +119,19 @@ class RadioButton extends LabelMixin(
|
|
|
119
119
|
align-self: stretch;
|
|
120
120
|
-webkit-appearance: none;
|
|
121
121
|
}
|
|
122
|
+
|
|
123
|
+
@media (forced-colors: active) {
|
|
124
|
+
[part='radio'] {
|
|
125
|
+
outline: 1px solid;
|
|
126
|
+
outline-offset: -1px;
|
|
127
|
+
}
|
|
128
|
+
:host([focused]) [part='radio'] {
|
|
129
|
+
outline-width: 2px;
|
|
130
|
+
}
|
|
131
|
+
:host([disabled]) [part='radio'] {
|
|
132
|
+
outline-color: GrayText;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
122
135
|
</style>
|
|
123
136
|
<div class="vaadin-radio-button-container">
|
|
124
137
|
<div part="radio" aria-hidden="true"></div>
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED