fix: package-lock

This commit is contained in:
Alexandr
2022-07-23 12:18:48 +03:00
parent 6f8d772a3e
commit 2f750f804f
3 changed files with 252 additions and 5314 deletions

5546
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -21,9 +21,9 @@
"dev": "vitepress dev docs", "dev": "vitepress dev docs",
"serve": "vitepress serve docs", "serve": "vitepress serve docs",
"build:docs": "vitepress build docs", "build:docs": "vitepress build docs",
"build:package": "npm run build-types && npm run build", "build:package": "npm run build:types && npm run build",
"build:types": "vue-tsc --declaration --emitDeclarationOnly",
"build": "vite build", "build": "vite build",
"build-types": "vue-tsc --declaration --emitDeclarationOnly",
"lint": "eslint --ext .ts,.vue --ignore-path .gitignore --fix src", "lint": "eslint --ext .ts,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write", "format": "prettier . --write",
"test": "vitest", "test": "vitest",

View File

@@ -1,9 +1,9 @@
/* to right */ /* to right */
.to-right-enter-active, .to-right-enter-active,
.to-right-leave-to { transform: translateX(-10px) } .to-right-leave-to { opacity: 0; transform: translateX(-10px) }
.to-right-leave, .to-right-leave,
.to-right-enter-to { transform: translateX(0) } .to-right-enter-to { opacity: 1; transform: translateX(0) }
.to-right-enter-active, .to-right-enter-active,
.to-right-leave-active { transition: all 250ms } .to-right-leave-active { transition: all 250ms }
@@ -12,30 +12,30 @@
/* to left */ /* to left */
.to-left-enter-active, .to-left-enter-active,
.to-left-leave-to { transform: translateX(10px) } .to-left-leave-to { opacity: 0; transform: translateX(10px) }
.to-left-leave, .to-left-leave,
.to-left-enter-to { transform: translateX(0) } .to-left-enter-to { opacity: 1; transform: translateX(0) }
.to-left-enter-active, .to-left-enter-active,
.to-left-leave-active { transition: all 250ms } .to-left-leave-active { transition: all 250ms }
/* to top */ /* to top */
.to-top-enter-active, .to-top-enter-active,
.to-top-leave-to { transform: translateY(10px) } .to-top-leave-to { opacity: 0; transform: translateY(10px) }
.to-top-leave, .to-top-leave,
.to-top-enter-to { transform: translateY(0) } .to-top-enter-to { opacity: 1; transform: translateY(0) }
.to-top-enter-active, .to-top-enter-active,
.to-top-leave-active { transition: all 250ms } .to-top-leave-active { transition: all 250ms }
/* to bottom */ /* to bottom */
.to-bottom-enter-active, .to-bottom-enter-active,
.to-bottom-leave-to { transform: translateY(-10px) } .to-bottom-leave-to { opacity: 0; transform: translateY(-10px) }
.to-bottom-leave, .to-bottom-leave,
.to-bottom-enter-to { transform: translateY(0) } .to-bottom-enter-to { opacity: 1; transform: translateY(0) }
.to-bottom-enter-active, .to-bottom-enter-active,
.to-bottom-leave-active { transition: all 250ms } .to-bottom-leave-active { transition: all 250ms }