@vuehookform/core 0.2.11 → 0.3.0
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 +26 -28
- package/dist/core/domSync.d.ts +0 -7
- package/dist/core/formContext.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/types.d.ts +324 -35
- package/dist/utils/devWarnings.d.ts +59 -0
- package/dist/vuehookform.cjs +184 -21
- package/dist/vuehookform.js +397 -21
- package/package.json +19 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuehookform/core",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "TypeScript-first form library for Vue 3, inspired by React Hook Form. Form-level state management with Zod validation.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/vuehookform.cjs",
|
|
@@ -36,7 +36,8 @@
|
|
|
36
36
|
"test:run": "vitest run",
|
|
37
37
|
"test:coverage": "vitest run --coverage",
|
|
38
38
|
"prepublishOnly": "npm run build:lib",
|
|
39
|
-
"postversion": "git push && git push --tags"
|
|
39
|
+
"postversion": "git push && git push --tags",
|
|
40
|
+
"prepare": "husky"
|
|
40
41
|
},
|
|
41
42
|
"repository": {
|
|
42
43
|
"type": "git",
|
|
@@ -68,8 +69,8 @@
|
|
|
68
69
|
"zod": "^3.0.0 || ^4.0.0"
|
|
69
70
|
},
|
|
70
71
|
"devDependencies": {
|
|
71
|
-
"@tailwindcss/vite": "^4.1.18",
|
|
72
72
|
"@prettier/plugin-oxc": "^0.0.5",
|
|
73
|
+
"@tailwindcss/vite": "^4.1.18",
|
|
73
74
|
"@tsconfig/node24": "^24.0.3",
|
|
74
75
|
"@types/node": "^24.10.1",
|
|
75
76
|
"@vitejs/plugin-vue": "^6.0.2",
|
|
@@ -81,11 +82,16 @@
|
|
|
81
82
|
"eslint-plugin-oxlint": "~1.29.0",
|
|
82
83
|
"eslint-plugin-vue": "~10.5.1",
|
|
83
84
|
"happy-dom": "^20.0.11",
|
|
85
|
+
"husky": "^9.1.7",
|
|
84
86
|
"jiti": "^2.6.1",
|
|
87
|
+
"lint-staged": "^16.2.7",
|
|
88
|
+
"material-icons": "^1.13.14",
|
|
89
|
+
"material-symbols": "^0.40.2",
|
|
85
90
|
"npm-run-all2": "^8.0.4",
|
|
86
91
|
"oxlint": "~1.29.0",
|
|
87
92
|
"pinia": "^3.0.4",
|
|
88
93
|
"prettier": "3.6.2",
|
|
94
|
+
"tailwindcss": "^4.1.18",
|
|
89
95
|
"typescript": "~5.9.0",
|
|
90
96
|
"vite": "npm:rolldown-vite@latest",
|
|
91
97
|
"vite-plugin-compression2": "^2.4.0",
|
|
@@ -94,9 +100,15 @@
|
|
|
94
100
|
"vue": "^3.5.25",
|
|
95
101
|
"vue-router": "^4.6.3",
|
|
96
102
|
"vue-tsc": "^3.1.5",
|
|
97
|
-
"zod": "^4.2.1"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
"
|
|
103
|
+
"zod": "^4.2.1"
|
|
104
|
+
},
|
|
105
|
+
"lint-staged": {
|
|
106
|
+
"*.{ts,tsx,vue}": [
|
|
107
|
+
"oxlint --fix -D correctness",
|
|
108
|
+
"eslint --fix"
|
|
109
|
+
],
|
|
110
|
+
"*.{ts,tsx,vue,json,md}": [
|
|
111
|
+
"prettier --write --experimental-cli"
|
|
112
|
+
]
|
|
101
113
|
}
|
|
102
114
|
}
|