@refinedev/react-hook-form 4.8.12 → 4.8.13
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 +4 -20
- package/dist/iife/index.js +30 -49
- package/dist/iife/index.js.map +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<div align="center" style="margin: 30px;">
|
|
2
2
|
<a href="https://refine.dev">
|
|
3
|
-
<img src="https://refine.ams3.cdn.digitaloceanspaces.com/
|
|
3
|
+
<img alt="refine logo" src="https://refine.ams3.cdn.digitaloceanspaces.com/readme/refine-readme-banner.png">
|
|
4
4
|
</a>
|
|
5
5
|
</div>
|
|
6
6
|
|
|
@@ -19,43 +19,27 @@
|
|
|
19
19
|
[](https://discord.gg/refine)
|
|
20
20
|
[](https://twitter.com/refine_dev)
|
|
21
21
|
|
|
22
|
-
|
|
23
22
|
<a href="https://www.producthunt.com/posts/refine-3?utm_source=badge-top-post-badge&utm_medium=badge&utm_souce=badge-refine-3" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=362220&theme=light&period=daily" alt="refine - 100% open source React framework to build web apps 3x faster | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
|
|
24
23
|
|
|
25
24
|
</div>
|
|
26
25
|
|
|
27
|
-
|
|
28
26
|
<br/>
|
|
29
27
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
28
|
<div align="center">refine is an open-source, headless React framework for developers building enterprise internal tools, admin panels, dashboards, B2B applications.
|
|
36
29
|
|
|
37
30
|
<br/>
|
|
38
31
|
|
|
39
|
-
It eliminates repetitive tasks in CRUD operations and provides industry-standard solutions for critical project components like **authentication**, **access control**, **routing**, **networking**, **state management**, and **i18n**.
|
|
32
|
+
It eliminates repetitive tasks in CRUD operations and provides industry-standard solutions for critical project components like **authentication**, **access control**, **routing**, **networking**, **state management**, and **i18n**.
|
|
40
33
|
|
|
41
34
|
</div>
|
|
42
35
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
36
|
# React Hook Form integration for refine
|
|
48
37
|
|
|
49
|
-
|
|
50
38
|
[React Hook Form](https://react-hook-form.com/) is one such library that helps to manage complex forms.
|
|
51
39
|
|
|
52
40
|
[refine](https://refine.dev/) is **headless by design**, offering unlimited styling and customization options. Moreover, refine ships with ready-made integrations for [Ant Design](https://ant.design/), [Material UI](https://mui.com/material-ui/getting-started/overview/), [Mantine](https://mantine.dev/), and [Chakra UI](https://chakra-ui.com/) for convenience.
|
|
53
41
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
42
|
+
refine has connectors for 15+ backend services, including REST API, [GraphQL](https://graphql.org/), and popular services like [Airtable](https://www.airtable.com/), [Strapi](https://strapi.io/), [Supabase](https://supabase.com/), [Firebase](https://firebase.google.com/), and [NestJS](https://nestjs.com/).
|
|
59
43
|
|
|
60
44
|
## Installation & Usage
|
|
61
45
|
|
|
@@ -76,10 +60,10 @@ const EditPost = () => {
|
|
|
76
60
|
|
|
77
61
|
return; /* ... */
|
|
78
62
|
};
|
|
79
|
-
|
|
80
63
|
```
|
|
81
64
|
|
|
82
65
|
## Documentation
|
|
66
|
+
|
|
83
67
|
- For more detailed information and usage, refer to the [refine React Hook Form documentation](https://refine.dev/docs/packages/documentation/react-hook-form/useForm/).
|
|
84
68
|
- [Refer to documentation for more info about refine](https://refine.dev/docs/).
|
|
85
69
|
- [Step up to refine tutorials](https://refine.dev/docs/tutorial/introduction/index/).
|