Skip to content

Releases: webblocksapp/solid-form-handler

v1.1.0-alpha.1

14 Mar 21:59
Compare
Choose a tag to compare

solid-form-handler pre-release version:

  • Added Field component to ease component-driven development.
  • Updated website docs to implement the Field component for validating native HTML form fields and building SolidJS form field components.
  • Removed refreshFormField method.
  • The getFormState method becomes private.
  • Redefined form state signature and handling for validating complex data structures which weren't validated correctly.

v1.0.0-alpha.7

10 Feb 17:04
Compare
Choose a tag to compare

solid-form-handler pre-release version:

Fixed issues:

  • Removed unneeded dependencies in the bundle.
  • Fixed issue when undefined arrives to set util function.
  • Removed interacted prop. from FieldState.
  • Fixed error message not rendered in triggers.

v1.0.0-alpha.6

29 Jan 21:32
Compare
Choose a tag to compare

solid-form-handler pre-release version:

Fixed issues:

  • Now use form handler supports Zod validator #2
  • Added support for CJS #1

v1.0.0-alpha.5

21 Nov 21:32
Compare
Choose a tag to compare

solid-form-handler pre-release version:

  • Hotfix: Fixed regex for getFieldError when a nested object is given.

v1.0.0-alpha.4

02 Nov 20:13
Compare
Choose a tag to compare

Pre-release version of solid-form-handler library.

This release introduces some minor breaking changes that remove the mountField and unmountField methods.
Conditional validation is only handled by the triggers API.

v1.0.0-alpha.3

25 Oct 21:51
Compare
Choose a tag to compare

Pre-release version of solid-form-handler library.

  • Added dependant validations APIs for triggering validations of another field.
  • You can specify single or multiple events in which your form fields can be validated, for example, to be validated only on input or on input and on blur. For this, you can use the form handler option validateOn which receives an array of the desired events.
  • Added conditional rendering form handler optimizations.
  • Now validations can be delayed to avoid expensive validations on every value change. The form handler will debounce them, especially if you need to work with async validations.

v1.0.0-alpha.2

04 Oct 20:01
Compare
Choose a tag to compare

Pre-release version of solid-form-handler library.

  • Fixed reactivity for refreshFormField and setFieldDefaultValue

v1.0.0-alpha.1

04 Oct 02:02
Compare
Choose a tag to compare

Pre-release version of solid-form-handler library.

  • Added support for conditional validation.

v1.0.0-alpha

28 Sep 20:17
Compare
Choose a tag to compare

Pre-release version of solid-form-handler library.

  • Main core APIs are available for developing your custom form components.
  • Secondary APIs will be added on the first release.