Releases: BearStudio/formiz
Releases · BearStudio/formiz
v1.0.0-rc.4
Fix all validations rules to accept "empty" (null
, undefined
, ""
) value.
Because this rule is handled with the isRequired()
rule (or required
property).
Issue #10
v1.0.0-rc.3
Fix type error in FormizStep
v1.0.0-rc.2
Prevent import errors in TypeScript projects
✨ Release Candidate
This version is available for tests before 1.0.0 release.
There will be no longer breaking change now in the API 👌
Feel free to test it out and open issues if you facing some bugs 😊
Visit the documentation website for more information: formiz-react.com
Or the examples website for more real-life examples: formiz-examples.netlify.com
v1.0.0-alpha.25
Add valueDebounced
value in useField() hook to access the debounced value
v1.0.0-alpha.24
- BREAKING CHANGE - rename
isRequired
property torequired
. - Improve validations update (remove JSON.stringify)
v1.0.0-alpha.23
Add formatValue property to fields to allow formating the value before saving it into the state.
v1.0.0-alpha.22
- BREAKING CHANGE - Remove values argument from validations rules and add deps key to handle external dependencies in validations. Allow enabling validation memoization.
- Fix field value not changing when the value is the same as defaultValue.
v1.0.0-alpha.21
- Use internal id for fields instead of the name to prevent unwanted unregister of fields with array syntax.
v1.0.0-alpha.20
- Fix error of wrong values and validations for fields with array names
- Expose
resetKey
in useForm hook - Prevent html native validation when
autoForm
is enabled