@vaadin/radio-group 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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/radio-group",
|
|
3
|
-
"version": "24.2.
|
|
3
|
+
"version": "24.2.4",
|
|
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.2.
|
|
42
|
-
"@vaadin/component-base": "~24.2.
|
|
43
|
-
"@vaadin/field-base": "~24.2.
|
|
44
|
-
"@vaadin/vaadin-lumo-styles": "~24.2.
|
|
45
|
-
"@vaadin/vaadin-material-styles": "~24.2.
|
|
46
|
-
"@vaadin/vaadin-themable-mixin": "~24.2.
|
|
41
|
+
"@vaadin/a11y-base": "~24.2.4",
|
|
42
|
+
"@vaadin/component-base": "~24.2.4",
|
|
43
|
+
"@vaadin/field-base": "~24.2.4",
|
|
44
|
+
"@vaadin/vaadin-lumo-styles": "~24.2.4",
|
|
45
|
+
"@vaadin/vaadin-material-styles": "~24.2.4",
|
|
46
|
+
"@vaadin/vaadin-themable-mixin": "~24.2.4"
|
|
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": "885416de13069b7409ac90c1b323a58ac87da6ce"
|
|
58
58
|
}
|
|
@@ -156,6 +156,18 @@ class RadioButton extends LabelMixin(
|
|
|
156
156
|
type: String,
|
|
157
157
|
value: '',
|
|
158
158
|
},
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* Indicates whether the element can be focused and where it participates in sequential keyboard navigation.
|
|
162
|
+
*
|
|
163
|
+
* @override
|
|
164
|
+
* @protected
|
|
165
|
+
*/
|
|
166
|
+
tabindex: {
|
|
167
|
+
type: Number,
|
|
168
|
+
value: 0,
|
|
169
|
+
reflectToAttribute: true,
|
|
170
|
+
},
|
|
159
171
|
};
|
|
160
172
|
}
|
|
161
173
|
|
|
@@ -30,6 +30,11 @@ const radioGroup = css`
|
|
|
30
30
|
flex-direction: column;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
|
+
:host([disabled]) [part='label'] {
|
|
34
|
+
color: var(--lumo-disabled-text-color);
|
|
35
|
+
-webkit-text-fill-color: var(--lumo-disabled-text-color);
|
|
36
|
+
}
|
|
37
|
+
|
|
33
38
|
:host([focused]:not([readonly])) [part='label'] {
|
|
34
39
|
color: var(--lumo-primary-text-color);
|
|
35
40
|
}
|
package/web-types.json
CHANGED