@formity/react 1.0.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.
Files changed (2) hide show
  1. package/README.md +27 -16
  2. package/package.json +8 -6
package/README.md CHANGED
@@ -1,32 +1,43 @@
1
- <!-- markdownlint-disable MD033 -->
2
- <!-- markdownlint-disable MD041 -->
1
+ <h1 align="center">Formity</h1>
3
2
 
4
3
  <div align="center">
5
- <a href="https://formity.app/" title="Formity - Build The Most Powerful Forms, Without The Hassle">
6
- <img src="https://raw.githubusercontent.com/martiserra99/formity/main/image.svg" alt="Formity Logo" />
7
- </a>
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
- ## @formity/react
11
+ ---
12
+
13
+ ![preview](https://raw.githubusercontent.com/martiserra99/formity/main/images/preview.gif)
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
- A highly customizable React library for creating advanced multi-step forms.
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
- ## Website
25
+ ## Key features of formity
15
26
 
16
- **Visit [https://formity.app](https://formity.app) to get started with Formity.**
27
+ ### Advanced logic
17
28
 
18
- ## About
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
- Formity is an advanced form-building package designed to help React developers create advanced multi-step forms.
31
+ ### Integration with any form library
21
32
 
22
- ## Features
33
+ Formity integrates seamlessly with your favorite form library — React Hook Form, Formik, TanStack Form or any other form-handling tool.
23
34
 
24
- - Create advanced multi-step forms where each step adapts based on the user's previous responses.
35
+ ### Advanced type inference
25
36
 
26
- - Integrate your custom components seamlessly, with no restrictions or limitations.
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
- - Fully compatible with any form library of your choice.
39
+ ![advanced type inference](https://raw.githubusercontent.com/martiserra99/formity/main/images/type-inference.png)
29
40
 
30
41
  ## License
31
42
 
32
- This package is licensed under the [MIT license](../../LICENSE).
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": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "license": "MIT",
5
5
  "private": false,
6
- "description": "A highly customizable React library for creating advanced multi-step forms.",
6
+ "description": "React multi-step forms where logic has no limits - for any use case",
7
7
  "keywords": [
8
8
  "react",
9
- "formity",
9
+ "forms",
10
10
  "form",
11
- "multi-step form",
12
- "dynamic form"
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": "^1.0.0"
35
+ "@formity/system": "^1.0.1"
34
36
  },
35
37
  "devDependencies": {
36
38
  "@types/react": "^18.3.12"