@formity/react 0.5.0 → 1.0.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 +27 -16
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -1,32 +1,43 @@
|
|
|
1
|
-
|
|
2
|
-
<!-- markdownlint-disable MD041 -->
|
|
1
|
+
<h1 align="center">Formity</h1>
|
|
3
2
|
|
|
4
3
|
<div align="center">
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
|
|
5
|
+
Formity is a React library that treats multi-step forms as programs — giving you the full power of code to build dynamic forms that adapt to every user, from onboarding flows to surveys.
|
|
6
|
+
|
|
7
|
+
[Website](https://formity.app/) · [Formity UI](https://ui.formity.app/) · [Discord](https://discord.gg/m8UrssFUBQ)
|
|
8
|
+
|
|
8
9
|
</div>
|
|
9
10
|
|
|
10
|
-
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+

|
|
14
|
+
|
|
15
|
+
## Featured by
|
|
16
|
+
|
|
17
|
+
> "I highly recommend Formity for creating multi-step forms. It saves you from building it yourself, which is an enormous pain. After building these a million times myself, it's awesome to finally see one that handles everything so well."
|
|
18
|
+
>
|
|
19
|
+
> — **midudev (500k+ subscribers)** | [Watch video](https://youtu.be/0apXgMZ52nM?si=N3WYhh1Cn6XydvVs)
|
|
11
20
|
|
|
12
|
-
|
|
21
|
+
> "With Formity's pattern for steps, logic, and animations, you can give your coding agent a skill for building multi-step forms - so any time you need one, your forms are way more consistent and follow the same structure."
|
|
22
|
+
>
|
|
23
|
+
> — **Hamed Bahram (200k+ subscribers)** | [Watch video](https://youtu.be/0wGxiucgLvM?si=KNvWkRlo3-JSkqMq)
|
|
13
24
|
|
|
14
|
-
##
|
|
25
|
+
## Key features of formity
|
|
15
26
|
|
|
16
|
-
|
|
27
|
+
### Advanced logic
|
|
17
28
|
|
|
18
|
-
|
|
29
|
+
You can add sophisticated logic to your multi-step forms using conditions, loops, and variables — creating truly dynamic forms where the flow adapts to every user.
|
|
19
30
|
|
|
20
|
-
|
|
31
|
+
### Integration with any form library
|
|
21
32
|
|
|
22
|
-
|
|
33
|
+
Formity integrates seamlessly with your favorite form library — React Hook Form, Formik, TanStack Form or any other form-handling tool.
|
|
23
34
|
|
|
24
|
-
|
|
35
|
+
### Advanced type inference
|
|
25
36
|
|
|
26
|
-
|
|
37
|
+
For TypeScript users, Formity offers advanced type inference for a smooth and error-free developer experience — with better autocomplete and improved type safety.
|
|
27
38
|
|
|
28
|
-
|
|
39
|
+

|
|
29
40
|
|
|
30
41
|
## License
|
|
31
42
|
|
|
32
|
-
|
|
43
|
+
These packages are licensed under the [MIT license](./LICENSE).
|
package/package.json
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@formity/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
|
-
"description": "
|
|
6
|
+
"description": "React multi-step forms where logic has no limits - for any use case",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"react",
|
|
9
|
-
"
|
|
9
|
+
"forms",
|
|
10
10
|
"form",
|
|
11
|
-
"multi-step
|
|
12
|
-
"
|
|
11
|
+
"multi-step",
|
|
12
|
+
"multi-step-form",
|
|
13
|
+
"multi-step-forms",
|
|
14
|
+
"formity"
|
|
13
15
|
],
|
|
14
16
|
"repository": {
|
|
15
17
|
"type": "git",
|
|
@@ -30,7 +32,7 @@
|
|
|
30
32
|
"dev": "rollup --config rollup.config.mjs --watch"
|
|
31
33
|
},
|
|
32
34
|
"dependencies": {
|
|
33
|
-
"@formity/system": "^0.
|
|
35
|
+
"@formity/system": "^1.0.1"
|
|
34
36
|
},
|
|
35
37
|
"devDependencies": {
|
|
36
38
|
"@types/react": "^18.3.12"
|