Download Latest Version Version 7.72.1 source code.tar.gz (3.2 MB)
Email in envelope

Get an email when there's a new version of React Hook Form

Home / v7.72.0
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2026-03-22 727 Bytes
Version 7.72.0 source code.tar.gz 2026-03-22 3.2 MB
Version 7.72.0 source code.zip 2026-03-22 3.5 MB
Totals: 3 Items   6.7 MB 0

⚓️ feat: built-in form level validate (#13195)

:::tsx
const { register, formState: { errors } } = useForm({
  validate: async (formValue) => {
    if (formValue.test1.length > formValue.test.length) {
      return {
        type: 'formError',
        message: 'something is wrong here',
      };
    }

    if (formValue.test === 'test') {
      return 'direct error message';
    }

    return true;
  },
});

🐞 fix: prevent useFieldArray from marking unrelated fields as dirty (#13299) 🐞 fix [#13300] checkbox form validation ignored with native validation (#13310) 🌉 allow subscribe formState to track submit state (#13319)

Source: README.md, updated 2026-03-22