srcdev-nuxt-components 6.1.37 → 6.1.39
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.
|
@@ -294,13 +294,23 @@ watch(
|
|
|
294
294
|
}
|
|
295
295
|
|
|
296
296
|
&.show {
|
|
297
|
-
|
|
298
|
-
|
|
297
|
+
@supports (animation-timing-function: linear(0, 1)) {
|
|
298
|
+
animation: show v-bind(revealDurationMs) var(--spring-easing) forwards;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
@supports not (animation-timing-function: linear(0, 1)) {
|
|
302
|
+
animation: show v-bind(revealDurationMs) linear forwards;
|
|
303
|
+
}
|
|
299
304
|
}
|
|
300
305
|
|
|
301
306
|
&.hide {
|
|
302
|
-
|
|
303
|
-
|
|
307
|
+
@supports (animation-timing-function: linear(0, 1)) {
|
|
308
|
+
animation: hide v-bind(revealDurationMs) var(--spring-easing) forwards;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
@supports not (animation-timing-function: linear(0, 1)) {
|
|
312
|
+
animation: hide v-bind(revealDurationMs) linear forwards;
|
|
313
|
+
}
|
|
304
314
|
}
|
|
305
315
|
|
|
306
316
|
&.full-width {
|
package/package.json
CHANGED