v5.31.3
- Refactor
FormValidator
class.- To set a validation rule, you must now use
FormValidator.rule("email")
instead ofFormValidator("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.
- To set a validation rule, you must now use
- Fix autofocus on
Field
's inNyForm
- Small refactor to toast widget