suprform 1.0.2 → 1.0.3

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 +3 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,9 +18,8 @@ A lightweight, **design system agnostic** React form library built as a powerful
18
18
 
19
19
  ## Installation
20
20
 
21
- ```bash
22
- npm install suprform react-hook-form react react-dom
23
- ```
21
+ ````bash
22
+ npm install suprform
24
23
 
25
24
  ## Quick Start with SuprForm.Control
26
25
 
@@ -65,7 +64,7 @@ function LoginForm() {
65
64
  </SuprForm>
66
65
  );
67
66
  }
68
- ```
67
+ ````
69
68
 
70
69
  **That's it!** `SuprForm.Control` automatically:
71
70
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "suprform",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "A headless React form library for managing complex state, validation, and error handling",
5
5
  "type": "module",
6
6
  "main": "./dist/suprform.cjs.js",