Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.
Compare
Choose a tag to compare
@github-actions github-actions released this 28 Aug 06:58
· 47 commits to main since this release
2b7d961

Patch Changes

  • e318e19 Thanks
    @anubra266! - First working release!

  • 64bc9a5 Thanks
    @anubra266! - - Support field level validation

    <input
      {...api.getFieldProps("name", {
        validate: (value) => (value.length < 5 ? "Name must have at least 5 letters" : null),
      })}
    />
    • Add validation option to the form machine config. It can be set to submit, blur or change to validate only
      on those events.