This commit is contained in:
Miguel de Benito Delgado 2026-01-08 15:30:32 +00:00 committed by GitHub
commit e95a0f9121
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View File

@ -63,6 +63,8 @@
[:id ::sm/uuid]
[:fullname [::sm/word-string {:max 250}]]
[:email ::sm/email]
[:theme {:optional true} :string]
[:is-admin {:optional true} ::sm/boolean]
[:is-active {:optional true} ::sm/boolean]
[:is-blocked {:optional true} ::sm/boolean]
[:is-demo {:optional true} ::sm/boolean]

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"}