Skip to content

Releases: react-hook-form/react-hook-form

Version 3.0.3

01 May 11:08
Compare
Choose a tag to compare
  • fix a bug on Yup validation schema for onBlur and onChange #23

Version 3.0.2

23 Apr 04:47
Compare
Choose a tag to compare
  • fix a bug on radio bug

Version 3.0.0

21 Apr 10:58
Compare
Choose a tag to compare

React Hook Form return a new formState: Object which contain the following information

  • dirty: when user interactive any fields
  • touched: what are the fields have interacted
  • isSubmitted: whether the form have been triggered with submitting

example:

const { formState: { dirty, touched, isSubmitted} } = useForm();

Version 2.1.18

20 Apr 02:03
Compare
Choose a tag to compare
  • fix a bug around remove events listener
  • simplify async validation code
  • type improvement

Version 2.1.17

15 Apr 03:20
Compare
Choose a tag to compare
  • fix a bug on safari checkbox with input event

Version 2.1.16

13 Apr 01:48
29f7989
Compare
Choose a tag to compare
  • provider warning when name is supplied during register

Version 2.1.5

12 Apr 22:47
Compare
Choose a tag to compare
  • fix the issue for server side rendering #16
  • fix an issue when event return undefined

Version 2.1.14

08 Apr 10:02
Compare
Choose a tag to compare
  • reset isSubmitted with useEffect

Version 2.1.13

08 Apr 09:40
Compare
Choose a tag to compare
  • watch() fields no longer trigger validation error with onSubmit mode

Version 2.1.11

08 Apr 03:16
Compare
Choose a tag to compare
  • include proper object compare