🐛 Add missing fields to schema:dissolve-animation

This commit is contained in:
Miguel de Benito Delgado 2025-11-11 19:46:30 +00:00
parent 5148998e36
commit 4f10fa2072
1 changed files with 4 additions and 1 deletions

View File

@ -75,7 +75,10 @@
[:map {:title "AnimationDisolve"}
[:animation-type [:= :dissolve]]
[:duration ::sm/safe-int]
[:easing [::sm/one-of easing-types]]])
[:easing [::sm/one-of easing-types]]
[:way {:optional true} [::sm/one-of way-types]]
[:offset-effect :boolean]
[:direction {:optional true} [::sm/one-of direction-types]]])
(def schema:slide-animation
[:map {:title "AnimationSlide"}