You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
documentation needs to be updated so that anything to do with validation (currently validation-function, timing, and invalid-feedback) needs to be marked as deprecated if it is not in the new validation map
Example:
old:
(def text-form [ :example {:label "test" :validation-function #(not= nil %) :invalid-feedback "must not be empty"}])
new:
(def text-form [ :example {:label "test"
:validation {validation-function #(not= nil %) :invalid-feedback "must not be empty"}}])
The text was updated successfully, but these errors were encountered:
documentation needs to be updated so that anything to do with validation (currently validation-function, timing, and invalid-feedback) needs to be marked as deprecated if it is not in the new validation map
Example:
old:
(def text-form [ :example {:label "test" :validation-function #(not= nil %) :invalid-feedback "must not be empty"}])
new:
(def text-form [ :example {:label "test"
:validation {validation-function #(not= nil %) :invalid-feedback "must not be empty"}}])
The text was updated successfully, but these errors were encountered: