github react-hook-form/react-hook-form v7.34.1
Version 7.34.1

latest releases: v7.51.3, v7.51.2, v7.51.1...
20 months ago

๐Ÿž fix(path): keys of Date | FileList | File shouldn't be add to the PathImpl #8804
๐Ÿž fix Date, FileList, File and Blob FieldErrors mapping #8772
๐ŸšŒ update isSubmitting state after valid form #8829

function App() {
  const { formState: { isSubmitting }, register } = useForm()

  console.log(isSubmitting) // isSubmitting will remain false if form is invalid during submission

  return <form onSubmit={handleSubmit(async () => await sleep(1000))}>
    <input {...register('test', { required: true })} />
  </form>
}

๐Ÿงƒ upgrade to cypress 10 #8769
๐Ÿ“– fix nested fields example #8840
๐Ÿ“– add nested form example #8703
๐Ÿ“– improve doc of single watch #8773
๐Ÿ“– fixing typo (Contruรญdo to Construรญdo) on pt-BR translation #8762

thanks to @HarmonyEarth, @yleflour, @glekner, @vemoo, @ronny1020 and @joaoeffting

Don't miss a new react-hook-form release

NewReleases is sending notifications on new releases.