@vaadin/radio-group 24.5.0-alpha1 → 24.5.0-alpha11
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
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-alpha11",
|
|
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-alpha11",
|
|
47
|
+
"@vaadin/component-base": "24.5.0-alpha11",
|
|
48
|
+
"@vaadin/field-base": "24.5.0-alpha11",
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "24.5.0-alpha11",
|
|
50
|
+
"@vaadin/vaadin-material-styles": "24.5.0-alpha11",
|
|
51
|
+
"@vaadin/vaadin-themable-mixin": "24.5.0-alpha11",
|
|
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-alpha11",
|
|
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": "8426cea2803a10db518fc85752eeea4c5c755687"
|
|
64
64
|
}
|
|
@@ -41,7 +41,9 @@ registerStyles(
|
|
|
41
41
|
position: relative;
|
|
42
42
|
border-radius: 50%;
|
|
43
43
|
background: var(--vaadin-radio-button-background, var(--lumo-contrast-20pct));
|
|
44
|
-
transition:
|
|
44
|
+
transition:
|
|
45
|
+
transform 0.2s cubic-bezier(0.12, 0.32, 0.54, 2),
|
|
46
|
+
background-color 0.15s;
|
|
45
47
|
will-change: transform;
|
|
46
48
|
cursor: var(--lumo-clickable-cursor);
|
|
47
49
|
/* Default field border color */
|
|
@@ -59,7 +61,9 @@ registerStyles(
|
|
|
59
61
|
background-color: inherit;
|
|
60
62
|
transform: scale(1.4);
|
|
61
63
|
opacity: 0;
|
|
62
|
-
transition:
|
|
64
|
+
transition:
|
|
65
|
+
transform 0.1s,
|
|
66
|
+
opacity 0.8s;
|
|
63
67
|
will-change: transform, opacity;
|
|
64
68
|
}
|
|
65
69
|
|
|
@@ -113,7 +117,9 @@ registerStyles(
|
|
|
113
117
|
}
|
|
114
118
|
|
|
115
119
|
:host([focus-ring]) [part='radio'] {
|
|
116
|
-
box-shadow:
|
|
120
|
+
box-shadow:
|
|
121
|
+
0 0 0 1px var(--lumo-base-color),
|
|
122
|
+
0 0 0 calc(var(--_focus-ring-width) + 1px) var(--_focus-ring-color),
|
|
117
123
|
inset 0 0 0 var(--_input-border-width, 0) var(--_input-border-color);
|
|
118
124
|
}
|
|
119
125
|
|
|
@@ -128,11 +134,11 @@ registerStyles(
|
|
|
128
134
|
}
|
|
129
135
|
|
|
130
136
|
:host([disabled]) [part='radio'] {
|
|
131
|
-
background-color: var(--lumo-contrast-10pct);
|
|
137
|
+
background-color: var(--vaadin-radio-button-disabled-background, var(--lumo-contrast-10pct));
|
|
132
138
|
}
|
|
133
139
|
|
|
134
140
|
:host([disabled]) [part='radio']::after {
|
|
135
|
-
border-color: var(--lumo-contrast-30pct);
|
|
141
|
+
border-color: var(--vaadin-radio-button-disabled-dot-color, var(--lumo-contrast-30pct));
|
|
136
142
|
}
|
|
137
143
|
|
|
138
144
|
/* RTL specific styles */
|
|
@@ -26,7 +26,9 @@ registerStyles(
|
|
|
26
26
|
border: 2px solid;
|
|
27
27
|
border-radius: 50%;
|
|
28
28
|
background-color: transparent;
|
|
29
|
-
transition:
|
|
29
|
+
transition:
|
|
30
|
+
transform 0.2s cubic-bezier(0.12, 0.32, 0.54, 2),
|
|
31
|
+
background-color 0.15s;
|
|
30
32
|
will-change: transform;
|
|
31
33
|
}
|
|
32
34
|
|
|
@@ -41,7 +43,9 @@ registerStyles(
|
|
|
41
43
|
background-color: var(--material-primary-color);
|
|
42
44
|
transform: scale(2.5);
|
|
43
45
|
opacity: 0;
|
|
44
|
-
transition:
|
|
46
|
+
transition:
|
|
47
|
+
transform 0.1s,
|
|
48
|
+
opacity 0.8s;
|
|
45
49
|
}
|
|
46
50
|
|
|
47
51
|
:host([checked]) [part='radio'] {
|
package/web-types.json
CHANGED
package/web-types.lit.json
CHANGED