Skip to content

Releases: fabian-hiller/modular-forms

v0.19.0 (@modular-forms/qwik)

13 Jul 12:32
Compare
Choose a tag to compare
  • Add support for Valibot with valiField$ and valiForm$ 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)

13 Jul 12:30
Compare
Choose a tag to compare
  • Add support for Valibot with valiField and valiForm adapter

v0.5.0 (@modular-forms/react)

13 Jul 12:30
Compare
Choose a tag to compare
  • Add support for Valibot with valiField and valiForm adapter

v0.18.1 (@modular-forms/solid)

25 Jun 18:32
Compare
Choose a tag to compare

Many thanks to @susickypavel for contributing to this release.

  • Fix date support for insert and replace method
  • Fix invalid of attribute in Form component (issue #98)

v0.18.1 (@modular-forms/qwik)

25 Jun 18:34
Compare
Choose a tag to compare

Many thanks to @aurelienbobenrieth for contributing to this release.

  • Change SubmitHandler type due to strange behavior

v0.5.4 (@modular-forms/preact)

25 Jun 18:30
Compare
Choose a tag to compare
  • Fix date support for insert and replace method

v0.4.4 (@modular-forms/react)

25 Jun 18:31
Compare
Choose a tag to compare
  • Fix date support for insert and replace method

v0.18.0 (@modular-forms/solid)

23 Jun 15:44
Compare
Choose a tag to compare

Many thanks to @susickypavel and @og-dev for contributing to this release.

  • Rename autoFocus in Field component to autofocus (issue #92)
  • Rename noValidate in Form component to novalidate (issue #92)
  • Refactor getFilteredNames util
  • Refactor path index sorting in insert, move and remove method
  • Fix bug by removing invalid field array items (issue #85)

v0.18.0 (@modular-forms/qwik)

23 Jun 15:53
Compare
Choose a tag to compare

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 and remove 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.

v0.5.3 (@modular-forms/preact)

23 Jun 15:36
Compare
Choose a tag to compare

Many thanks to @og-dev for contributing to this release.

  • Refactor getFilteredNames util
  • Refactor path index sorting in insert, move and remove method
  • Fix bug by removing invalid field array items (issue #85)