react-hook-form 7.44.2 → 7.44.3-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/controller.d.ts +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.mjs +8 -8
- package/dist/index.esm.mjs.map +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/tsdoc-metadata.json +11 -0
- package/dist/types/fieldArray.d.ts +8 -8
- package/dist/types/form.d.ts +18 -18
- package/dist/useController.d.ts +1 -1
- package/dist/useFieldArray.d.ts +1 -1
- package/dist/useForm.d.ts +1 -1
- package/dist/useFormContext.d.ts +2 -2
- package/dist/useFormState.d.ts +1 -1
- package/dist/useWatch.d.ts +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
@@ -15,7 +15,7 @@
|
|
15
15
|
|
16
16
|
<p align="center">
|
17
17
|
<a href="https://react-hook-form.com/get-started">Get started</a> |
|
18
|
-
<a href="https://react-hook-form.com/
|
18
|
+
<a href="https://react-hook-form.com/docs">API</a> |
|
19
19
|
<a href="https://react-hook-form.com/form-builder">Form Builder</a> |
|
20
20
|
<a href="https://react-hook-form.com/faqs">FAQs</a> |
|
21
21
|
<a href="https://github.com/bluebill1049/react-hook-form/tree/master/examples">Examples</a>
|
package/dist/controller.d.ts
CHANGED
@@ -4,7 +4,7 @@ import { ControllerProps, FieldPath, FieldValues } from './types';
|
|
4
4
|
* Component based on `useController` hook to work with controlled component.
|
5
5
|
*
|
6
6
|
* @remarks
|
7
|
-
* [API](https://react-hook-form.com/
|
7
|
+
* [API](https://react-hook-form.com/docs/usecontroller/controller) • [Demo](https://codesandbox.io/s/react-hook-form-v6-controller-ts-jwyzw) • [Video](https://www.youtube.com/watch?v=N2UNk_UCVyA)
|
8
8
|
*
|
9
9
|
* @param props - the path name to the form field value, and validation rules.
|
10
10
|
*
|