Skip to content

v5.31.3

Compare
Choose a tag to compare
@agordn52 agordn52 released this 08 Jul 03:00
· 32 commits to 6.x since this release
  • Refactor FormValidator class.
    • To set a validation rule, you must now use FormValidator.rule("email") instead of FormValidator("email")
    • You can now join multiple validation rules. E.g. FormValidator().minLength(5).uppercase() will check if the value is at least 5 characters long and is uppercase.
  • Fix autofocus on Field's in NyForm
  • Small refactor to toast widget