notform 2.0.0-alpha.3 → 2.0.0-alpha.5
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 +10 -23
- package/dist/index.d.ts +218 -2862
- package/dist/index.js +197 -120
- package/package.json +2 -5
package/README.md
CHANGED
|
@@ -1,29 +1,16 @@
|
|
|
1
|
-
#
|
|
1
|
+
# notform
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/notform)
|
|
4
|
+
[](https://www.npmjs.com/package/notform)
|
|
5
|
+
[](https://github.com/favorodera/notform/blob/main/LICENSE)
|
|
6
|
+
[](https://bundlephobia.com/package/notform)
|
|
4
7
|
|
|
5
|
-
|
|
8
|
+
**The core engine for "Vue Forms Without the Friction."**
|
|
6
9
|
|
|
7
|
-
|
|
10
|
+
`notform` is the backbone of the NotForm ecosystem, providing the core composables and state management logic for building robust forms in Vue 3.
|
|
8
11
|
|
|
9
|
-
|
|
10
|
-
npm install
|
|
11
|
-
```
|
|
12
|
+
## Documentation
|
|
12
13
|
|
|
13
|
-
|
|
14
|
+
For detailed guides, API reference, and examples, visit:
|
|
15
|
+
**[notform-docs.vercel.app](https://notform-docs.vercel.app/)**
|
|
14
16
|
|
|
15
|
-
```bash
|
|
16
|
-
npm run playground
|
|
17
|
-
```
|
|
18
|
-
|
|
19
|
-
- Run the unit tests:
|
|
20
|
-
|
|
21
|
-
```bash
|
|
22
|
-
npm run test
|
|
23
|
-
```
|
|
24
|
-
|
|
25
|
-
- Build the library:
|
|
26
|
-
|
|
27
|
-
```bash
|
|
28
|
-
npm run build
|
|
29
|
-
```
|