Skip to content
This repository was archived by the owner on Aug 23, 2022. It is now read-only.

v0.12.2

Compare
Choose a tag to compare
@davidkpiano davidkpiano released this 09 May 14:06
· 1193 commits to master since this release
  • New (mostly internal) field flag: .validated indicates whether the field's current value has been validated or not.
    • Whenever the value changes (CHANGE action), .validated will be reset to false since that value has not been validated yet.
    • Once it is validated, .validated = true.
  • Enhancement: now, validators defined on <Field> will get executed whenever it detects that its model's value has changed.
    • This means you don't have to directly interact with the field in order to trigger validation. External changes will also trigger validation. UX and DX win!
    • For more info, see #183 and #195