styled-content-loader icon indicating copy to clipboard operation
styled-content-loader copied to clipboard

chore: bump react-hook-form from 6.14.2 to 7.42.1 in /docs

Open dependabot[bot] opened this issue 3 years ago • 0 comments

Bumps react-hook-form from 6.14.2 to 7.42.1.

Release notes

Sourced from react-hook-form's releases.

Version 7.42.1

🐞 fix #9773 useFormState missing state update (#9777) 🐞 fix #9765 fix issue with strictMode with isValid state (#9771)

Version 7.42.0

📽 feature: validate function to include form values (#9079)

type FormValues = {
  number1: number;
  number2: number;
};

// Making exported validate function isolated for validation export function validateNumber(_: number, formValues: FormValues) { return formValues.number1 + formValues.number2 === 3; }

export default function App() { const { register, handleSubmit } = useForm({ defaultValues: { number1: 0, number2: 0 } });

return ( <form onSubmit={handleSubmit((data) => console.log(data))}> <input type="number" {...register("number1", { validate: validateNumber, valueAsNumber: true })} /> <input type="number" {...register("number2", { validate: validateNumber, valueAsNumber: true })} /> <button>submit</button> </form> ); }

🛤️ keep track of traversed types to avoid self-referencing while constructing paths for a type (#9540) 🏋🏻‍♀️ reduced code with unset by weight reduction of 1% (#9575)

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

dependabot[bot] avatar Jan 16 '23 08:01 dependabot[bot]