@vaadin/radio-group 24.5.0-alpha5 → 24.5.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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/radio-group",
|
|
3
|
-
"version": "24.5.0-
|
|
3
|
+
"version": "24.5.0-alpha7",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -43,12 +43,12 @@
|
|
|
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-alpha7",
|
|
47
|
+
"@vaadin/component-base": "24.5.0-alpha7",
|
|
48
|
+
"@vaadin/field-base": "24.5.0-alpha7",
|
|
49
|
+
"@vaadin/vaadin-lumo-styles": "24.5.0-alpha7",
|
|
50
|
+
"@vaadin/vaadin-material-styles": "24.5.0-alpha7",
|
|
51
|
+
"@vaadin/vaadin-themable-mixin": "24.5.0-alpha7",
|
|
52
52
|
"lit": "^3.0.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"web-types.json",
|
|
61
61
|
"web-types.lit.json"
|
|
62
62
|
],
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "89f77a69ae0eba6247f2b3084941f9395d7134e1"
|
|
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
|
|
|
@@ -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