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.
Files changed (4) hide show
  1. package/README.md +10 -23
  2. package/dist/index.d.ts +218 -2862
  3. package/dist/index.js +197 -120
  4. package/package.json +2 -5
package/README.md CHANGED
@@ -1,29 +1,16 @@
1
- # vue-components-starter
1
+ # notform
2
2
 
3
- A starter for creating a Vue component library.
3
+ [![npm version](https://img.shields.io/npm/v/notform.svg?style=flat-square)](https://www.npmjs.com/package/notform)
4
+ [![npm downloads](https://img.shields.io/npm/dm/notform.svg?style=flat-square)](https://www.npmjs.com/package/notform)
5
+ [![license](https://img.shields.io/github/license/favorodera/notform.svg?style=flat-square)](https://github.com/favorodera/notform/blob/main/LICENSE)
6
+ [![Bundle Size](https://img.shields.io/bundlephobia/minzip/notform.svg?style=flat-square)](https://bundlephobia.com/package/notform)
4
7
 
5
- ## Development
8
+ **The core engine for "Vue Forms Without the Friction."**
6
9
 
7
- - Install dependencies:
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
- ```bash
10
- npm install
11
- ```
12
+ ## Documentation
12
13
 
13
- - Run the playground:
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
- ```