Releases: fabian-hiller/modular-forms
Releases · fabian-hiller/modular-forms
v0.19.0 (@modular-forms/qwik)
- Add support for Valibot with
valiField$
andvaliForm$
adapter - Require Qwik v1.1.5 due to a bug in production build step in v.1.2.X
v0.6.0 (@modular-forms/preact)
- Add support for Valibot with
valiField
andvaliForm
adapter
v0.5.0 (@modular-forms/react)
- Add support for Valibot with
valiField
andvaliForm
adapter
v0.18.1 (@modular-forms/solid)
Many thanks to @susickypavel for contributing to this release.
- Fix date support for
insert
andreplace
method - Fix invalid
of
attribute inForm
component (issue #98)
v0.18.1 (@modular-forms/qwik)
Many thanks to @aurelienbobenrieth for contributing to this release.
- Change
SubmitHandler
type due to strange behavior
v0.5.4 (@modular-forms/preact)
- Fix date support for
insert
andreplace
method
v0.4.4 (@modular-forms/react)
- Fix date support for
insert
andreplace
method
v0.18.0 (@modular-forms/solid)
Many thanks to @susickypavel and @og-dev for contributing to this release.
v0.18.0 (@modular-forms/qwik)
Many thanks to @wmertens, @og-dev and @ffMathy for contributing to this release.
- Require validation when using
formAction$
(issue #57) - Refactor
getFilteredNames
util - Refactor path index sorting in
insert
,move
andremove
method - Fix bug by removing invalid field array items (issue #85)
- Change
FormOptions
and initialization of field arrays
Migration guide
The revision of the initialization of field arrays requires that the paths to field arrays are specified.
const [todoForm, { Form, Field, FieldArray }] = useForm<TodoForm>({
loader: useFormLoader(),
fieldArrays: ['todos'], // This is new
});
For more information, check out the docs.