Skip to content

Version 7.34.1

Compare
Choose a tag to compare
@bluebill1049 bluebill1049 released this 12 Aug 23:07
· 354 commits to master since this release

馃悶 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