Bill

Results 28 issues of Bill

Field Array context API ```tsx type FormValues = { test: { name: string }[]; }; const Test = () => { const context = useFormContext(); return ( {context?.fieldArrays?.test.map((field) => (...

- using TS 4.8 Beta

Thanks for this amazing package! found a quite serious bug, which even crashes on the website. screenshoot with crash: **Steps to reproduce** - go to the website: https://probablyup.com/markdown-to-jsx/ - `![Drag...

bug
help wanted

- provide an example for min length check for useFieldArray for build in validation

enhancement

## Context The new method will retrieve the latest store value when an action is performed, this is great for usage such as re-render is not required and yet you...

## Description Allow user to read defaultValues within `useForm` and `useFormState` hook - feature-request: https://github.com/react-hook-form/react-hook-form/issues/7289 - Twitter poll: https://twitter.com/HookForm/status/1564869849095933952 ## Example CSB: https://codesandbox.io/s/react-hook-form-v7-ts-template-forked-qhqnfc?file=/src/App.tsx ```tsx const { formState: { defaultValues }...

RFC: https://github.com/react-hook-form/react-hook-form/discussions/9046 ## Proposal Syntax The following syntax will support async `defaultValues`, so we will manage the `reset` form internally and update `isLoading` `formState` accordingly. ```tsx const fetchFormValues = ()...