@vaadin/radio-group 24.5.0-alpha7 → 24.5.0-alpha9
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/README.md +1 -1
- package/package.json +11 -11
- package/theme/lumo/vaadin-radio-button-styles.js +2 -2
- package/web-types.json +1 -1
- package/web-types.lit.json +1 -1
package/README.md
CHANGED
|
@@ -53,7 +53,7 @@ import '@vaadin/radio-group/src/vaadin-radio-group.js';
|
|
|
53
53
|
|
|
54
54
|
## Contributing
|
|
55
55
|
|
|
56
|
-
Read the [contributing guide](https://vaadin.com/docs/latest/contributing
|
|
56
|
+
Read the [contributing guide](https://vaadin.com/docs/latest/contributing) to learn about our development process, how to propose bugfixes and improvements, and how to test your changes to Vaadin components.
|
|
57
57
|
|
|
58
58
|
## License
|
|
59
59
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/radio-group",
|
|
3
|
-
"version": "24.5.0-
|
|
3
|
+
"version": "24.5.0-alpha9",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -43,22 +43,22 @@
|
|
|
43
43
|
"dependencies": {
|
|
44
44
|
"@open-wc/dedupe-mixin": "^1.3.0",
|
|
45
45
|
"@polymer/polymer": "^3.0.0",
|
|
46
|
-
"@vaadin/a11y-base": "24.5.0-
|
|
47
|
-
"@vaadin/component-base": "24.5.0-
|
|
48
|
-
"@vaadin/field-base": "24.5.0-
|
|
49
|
-
"@vaadin/vaadin-lumo-styles": "24.5.0-
|
|
50
|
-
"@vaadin/vaadin-material-styles": "24.5.0-
|
|
51
|
-
"@vaadin/vaadin-themable-mixin": "24.5.0-
|
|
46
|
+
"@vaadin/a11y-base": "24.5.0-alpha9",
|
|
47
|
+
"@vaadin/component-base": "24.5.0-alpha9",
|
|
48
|
+
"@vaadin/field-base": "24.5.0-alpha9",
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "24.5.0-alpha9",
|
|
50
|
+
"@vaadin/vaadin-material-styles": "24.5.0-alpha9",
|
|
51
|
+
"@vaadin/vaadin-themable-mixin": "24.5.0-alpha9",
|
|
52
52
|
"lit": "^3.0.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@
|
|
56
|
-
"@vaadin/testing-helpers": "^0.
|
|
57
|
-
"sinon": "^
|
|
55
|
+
"@vaadin/chai-plugins": "24.5.0-alpha9",
|
|
56
|
+
"@vaadin/testing-helpers": "^1.0.0",
|
|
57
|
+
"sinon": "^18.0.0"
|
|
58
58
|
},
|
|
59
59
|
"web-types": [
|
|
60
60
|
"web-types.json",
|
|
61
61
|
"web-types.lit.json"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "804744762f3bec0a2247c4bbcbbb204dbcd78bc0"
|
|
64
64
|
}
|
|
@@ -134,11 +134,11 @@ registerStyles(
|
|
|
134
134
|
}
|
|
135
135
|
|
|
136
136
|
:host([disabled]) [part='radio'] {
|
|
137
|
-
background-color: var(--lumo-contrast-10pct);
|
|
137
|
+
background-color: var(--vaadin-radio-button-disabled-background, var(--lumo-contrast-10pct));
|
|
138
138
|
}
|
|
139
139
|
|
|
140
140
|
:host([disabled]) [part='radio']::after {
|
|
141
|
-
border-color: var(--lumo-contrast-30pct);
|
|
141
|
+
border-color: var(--vaadin-radio-button-disabled-dot-color, var(--lumo-contrast-30pct));
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
/* RTL specific styles */
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED