remove slide and scale transitions

This commit is contained in:
Keviin Åberg Kultalahti 2021-03-01 17:03:13 +01:00
parent b36d4c8a76
commit 58f0c45085
2 changed files with 4 additions and 3 deletions

View File

@ -25,7 +25,7 @@
]
const transitions = [
'fade', 'blur', 'slide', 'fly', 'scale'
'fade', 'blur', 'fly' // slide and scale are hidden because they do not seem to result in any effect
]
$: groups = componentDefinition?.styleable ? Object.keys(allStyles) : []

View File

@ -4,8 +4,9 @@ import { fade, blur, slide, fly } from "svelte/transition"
const transitions = new Map([
["fade", { tn: fade, opt: {} }],
["blur", { tn: blur, opt: {} }],
["slide", { tn: slide, opt: {} }],
["scale", { tn: slide, opt: {} }],
// These two seem to not result in any effect
// ["slide", { tn: slide, opt: {} }],
// ["scale", { tn: slide, opt: {} }],
["fly", { tn: fly, opt: { y: 80 } }],
])