From 4f10fa2072e7816914f235ac0c993a66b54093e4 Mon Sep 17 00:00:00 2001 From: Miguel de Benito Delgado Date: Tue, 11 Nov 2025 19:46:30 +0000 Subject: [PATCH] :bug: Add missing fields to schema:dissolve-animation --- common/src/app/common/types/shape/interactions.cljc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/src/app/common/types/shape/interactions.cljc b/common/src/app/common/types/shape/interactions.cljc index 8dd4ea457c..1acbd84ac3 100644 --- a/common/src/app/common/types/shape/interactions.cljc +++ b/common/src/app/common/types/shape/interactions.cljc @@ -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"}