@vaadin/vaadin-material-styles 24.4.7 → 24.5.0-alpha10
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/mixins/input-field-shared.js +7 -2
- package/mixins/loader.js +6 -2
- package/package.json +4 -4
|
@@ -111,7 +111,10 @@ const inputField = css`
|
|
|
111
111
|
|
|
112
112
|
[part='label'] {
|
|
113
113
|
width: 133%;
|
|
114
|
-
transition:
|
|
114
|
+
transition:
|
|
115
|
+
transform 0.175s,
|
|
116
|
+
color 0.175s,
|
|
117
|
+
width 0.175s;
|
|
115
118
|
transition-timing-function: ease, ease, step-end;
|
|
116
119
|
}
|
|
117
120
|
|
|
@@ -127,7 +130,9 @@ const inputField = css`
|
|
|
127
130
|
:host([invalid]) [part='input-field']::after {
|
|
128
131
|
opacity: 1;
|
|
129
132
|
transform: none;
|
|
130
|
-
transition:
|
|
133
|
+
transition:
|
|
134
|
+
transform 0.175s,
|
|
135
|
+
opacity 0.175s;
|
|
131
136
|
}
|
|
132
137
|
|
|
133
138
|
:host([invalid]) [part='input-field']::after {
|
package/mixins/loader.js
CHANGED
|
@@ -32,7 +32,9 @@ const loader = css`
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
:host([loading]) [part='loader'] {
|
|
35
|
-
animation:
|
|
35
|
+
animation:
|
|
36
|
+
3s linear infinite material-loader-progress,
|
|
37
|
+
0.3s 0.1s both material-loader-fade-in;
|
|
36
38
|
}
|
|
37
39
|
|
|
38
40
|
[part='loader']::before {
|
|
@@ -100,7 +102,9 @@ const loader = css`
|
|
|
100
102
|
}
|
|
101
103
|
|
|
102
104
|
:host([loading][dir='rtl']) [part='loader'] {
|
|
103
|
-
animation:
|
|
105
|
+
animation:
|
|
106
|
+
3s linear infinite material-loader-progress-rtl,
|
|
107
|
+
0.3s 0.1s both material-loader-fade-in;
|
|
104
108
|
}
|
|
105
109
|
`;
|
|
106
110
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vaadin/vaadin-material-styles",
|
|
3
|
-
"version": "24.
|
|
3
|
+
"version": "24.5.0-alpha10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
],
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@polymer/polymer": "^3.0.0",
|
|
42
|
-
"@vaadin/component-base": "
|
|
43
|
-
"@vaadin/vaadin-themable-mixin": "
|
|
42
|
+
"@vaadin/component-base": "24.5.0-alpha10",
|
|
43
|
+
"@vaadin/vaadin-themable-mixin": "24.5.0-alpha10"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"gulp": "^4.0.2",
|
|
@@ -49,5 +49,5 @@
|
|
|
49
49
|
"gulp-sort": "^2.0.0",
|
|
50
50
|
"gulp-svgmin": "^4.1.0"
|
|
51
51
|
},
|
|
52
|
-
"gitHead": "
|
|
52
|
+
"gitHead": "6f9c37308031af872a98017bfab4de89aeacda51"
|
|
53
53
|
}
|