@macrulez/vue-form-schema 0.1.0 → 0.1.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.
- package/README.md +10 -0
- package/package.json +19 -1
package/README.md
CHANGED
|
@@ -827,3 +827,13 @@ All entry points are tree-shakeable ESM + CJS dual builds.
|
|
|
827
827
|
## License
|
|
828
828
|
|
|
829
829
|
MIT
|
|
830
|
+
|
|
831
|
+
---
|
|
832
|
+
|
|
833
|
+
## Author
|
|
834
|
+
|
|
835
|
+
Danil Lisin Vladimirovich aka Macrulez
|
|
836
|
+
|
|
837
|
+
GitHub: [macrulezru](https://github.com/macrulezru) · Website: [macrulez.ru/en](https://macrulez.ru/en)
|
|
838
|
+
|
|
839
|
+
Questions and bugs — [issues](https://github.com/macrulezru/vue-form-schema/issues)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@macrulez/vue-form-schema",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Reactive forms from JSON/Zod/Yup schema with validation, masking and conditional UI for Vue 3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -42,6 +42,24 @@
|
|
|
42
42
|
"test:coverage": "vitest --coverage",
|
|
43
43
|
"typecheck": "tsc --noEmit"
|
|
44
44
|
},
|
|
45
|
+
"keywords": [
|
|
46
|
+
"vue",
|
|
47
|
+
"vue3",
|
|
48
|
+
"form",
|
|
49
|
+
"schema",
|
|
50
|
+
"validation",
|
|
51
|
+
"zod",
|
|
52
|
+
"yup",
|
|
53
|
+
"composable",
|
|
54
|
+
"mask",
|
|
55
|
+
"reactive"
|
|
56
|
+
],
|
|
57
|
+
"author": "macrulez",
|
|
58
|
+
"license": "MIT",
|
|
59
|
+
"bugs": {
|
|
60
|
+
"url": "https://github.com/macrulezru/vue-form-schema"
|
|
61
|
+
},
|
|
62
|
+
"homepage": "https://macrulez.ru/en",
|
|
45
63
|
"peerDependencies": {
|
|
46
64
|
"vue": "^3.3.0"
|
|
47
65
|
},
|