jervis-form 0.0.0-alpha.1 → 0.0.0-alpha.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.
- package/README.md +15 -0
- package/dist/jervis-form.js +13805 -12136
- package/dist/style.css +1 -1
- package/package.json +6 -1
package/README.md
CHANGED
|
@@ -24,6 +24,21 @@ Make sure these are installed in your app:
|
|
|
24
24
|
npm run build
|
|
25
25
|
```
|
|
26
26
|
|
|
27
|
+
## Documentation (VitePress)
|
|
28
|
+
|
|
29
|
+
Run docs locally:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
npm run docs:dev
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Build docs for static hosting:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm run docs:build
|
|
39
|
+
npm run docs:preview
|
|
40
|
+
```
|
|
41
|
+
|
|
27
42
|
## Custom Input Registration
|
|
28
43
|
|
|
29
44
|
Register custom field components globally with the plugin:
|