srcdev-nuxt-components 2.5.7 → 2.5.8

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.
@@ -532,7 +532,9 @@ watch(
532
532
  height: calc(var(--_icon-size) - var(--_border-width) * 2 - var(--_outline-width) * 2);
533
533
 
534
534
  opacity: 0;
535
- transition: opacity 0.2s ease-in-out;
535
+ transition-property: opacity, transform; /* For reference */
536
+ transition-timing-function: linear; /* For reference */
537
+ transition-duration: 0.2s; /* For reference */
536
538
 
537
539
  &.show {
538
540
  opacity: 1;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "srcdev-nuxt-components",
3
3
  "type": "module",
4
- "version": "2.5.7",
4
+ "version": "2.5.8",
5
5
  "main": "nuxt.config.ts",
6
6
  "scripts": {
7
7
  "clean": "rm -rf .nuxt && rm -rf .output && rm -rf .playground/.nuxt && rm -rf .playground/.output",