chore: bump react-hook-form from 6.14.2 to 7.42.1 in /docs
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
aaa23297.42.10f3e19e🐞 fix #9773useFormStatemissing state update (#9777)3b2dee3🐞 fix #9765 fix issue with strictMode withisValidstate (#9771)4b4f1d8👔 update changelog0d029e37.42.083153f7🙆🏻♂️ fix: revert fieldState.invalid deprecated (#9760)3ad41d6⏭️ next (7.42.0) (#9603)09ab003🇪🇸 fix spanish translation (#9737)bab87067.41.5c048daa🐞 fix #9713 regression on validate function with react native (#9714)- Additional commits viewable in compare view
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 rebasewill rebase this PR -
@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it -
@dependabot mergewill merge this PR after your CI passes on it -
@dependabot squash and mergewill squash and merge this PR after your CI passes on it -
@dependabot cancel mergewill cancel a previously requested merge and block automerging -
@dependabot reopenwill reopen this PR if it is closed -
@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually -
@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)