@rachelallyson/hero-hook-form 2.0.0 → 2.1.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/CHANGELOG.md +16 -0
- package/README.md +176 -0
- package/dist/index.d.ts +147 -98
- package/dist/index.js +1069 -689
- package/dist/react/index.d.ts +147 -98
- package/dist/react/index.js +1069 -689
- package/package.json +58 -33
package/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rachelallyson/hero-hook-form",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "Typed form helpers that combine React Hook Form and HeroUI components.",
|
|
5
5
|
"author": "Rachel Higley",
|
|
6
|
-
"homepage": "https://github.
|
|
6
|
+
"homepage": "https://rachelallyson.github.io/hero-hook-form/",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "git+https://github.com/rachelallyson/hero-hook-form.git"
|
|
@@ -27,7 +27,10 @@
|
|
|
27
27
|
"react-forms",
|
|
28
28
|
"form-validation",
|
|
29
29
|
"hero-ui",
|
|
30
|
-
"form-components"
|
|
30
|
+
"form-components",
|
|
31
|
+
"nextjs",
|
|
32
|
+
"server-actions",
|
|
33
|
+
"next.js"
|
|
31
34
|
],
|
|
32
35
|
"license": "ISC",
|
|
33
36
|
"sideEffects": false,
|
|
@@ -67,45 +70,53 @@
|
|
|
67
70
|
"cy:run": "cypress run --component",
|
|
68
71
|
"prepublishOnly": "npm run build && npm run typecheck",
|
|
69
72
|
"test": "npm run typecheck && npm run cy:run",
|
|
70
|
-
"clean": "rm -rf dist node_modules package-lock.json"
|
|
73
|
+
"clean": "rm -rf dist node_modules package-lock.json",
|
|
74
|
+
"docs:dev": "cd docs && npm run dev",
|
|
75
|
+
"docs:build": "cd docs && npm run build",
|
|
76
|
+
"docs:start": "cd docs && npm run start",
|
|
77
|
+
"docs:api": "typedoc"
|
|
71
78
|
},
|
|
72
79
|
"devDependencies": {
|
|
73
|
-
"@cypress/vite-dev-server": "^7.0.
|
|
74
|
-
"@eslint/js": "^9.
|
|
75
|
-
"@heroui/button": "^2.2.
|
|
76
|
-
"@heroui/checkbox": "^2.3.
|
|
77
|
-
"@heroui/date-input": "^2.3.
|
|
78
|
-
"@heroui/date-picker": "^2.3.
|
|
79
|
-
"@heroui/input": "^2.4.
|
|
80
|
-
"@heroui/radio": "^2.3.
|
|
81
|
-
"@heroui/react": "^2.8.
|
|
82
|
-
"@heroui/select": "^2.4.
|
|
83
|
-
"@heroui/slider": "^2.4.
|
|
84
|
-
"@heroui/spinner": "^2.2.
|
|
85
|
-
"@heroui/switch": "^2.2.
|
|
86
|
-
"@heroui/system": "^2.4.
|
|
80
|
+
"@cypress/vite-dev-server": "^7.0.1",
|
|
81
|
+
"@eslint/js": "^9.39.2",
|
|
82
|
+
"@heroui/button": "^2.2.29",
|
|
83
|
+
"@heroui/checkbox": "^2.3.29",
|
|
84
|
+
"@heroui/date-input": "^2.3.29",
|
|
85
|
+
"@heroui/date-picker": "^2.3.30",
|
|
86
|
+
"@heroui/input": "^2.4.30",
|
|
87
|
+
"@heroui/radio": "^2.3.29",
|
|
88
|
+
"@heroui/react": "^2.8.7",
|
|
89
|
+
"@heroui/select": "^2.4.30",
|
|
90
|
+
"@heroui/slider": "^2.4.26",
|
|
91
|
+
"@heroui/spinner": "^2.2.26",
|
|
92
|
+
"@heroui/switch": "^2.2.26",
|
|
93
|
+
"@heroui/system": "^2.4.25",
|
|
94
|
+
"@rachelallyson/eslint-config-node": "^1.0.1",
|
|
87
95
|
"@rachelallyson/heroui-font-picker": "^1.0.0",
|
|
88
|
-
"@types/node": "^
|
|
89
|
-
"@types/react": "^19.2.
|
|
90
|
-
"@types/react-dom": "^19.2.
|
|
91
|
-
"@vitejs/plugin-react": "^5.
|
|
92
|
-
"cypress": "^15.
|
|
96
|
+
"@types/node": "^25.0.6",
|
|
97
|
+
"@types/react": "^19.2.8",
|
|
98
|
+
"@types/react-dom": "^19.2.3",
|
|
99
|
+
"@vitejs/plugin-react": "^5.1.2",
|
|
100
|
+
"cypress": "^15.8.2",
|
|
93
101
|
"cypress-terminal-report": "^7.3.3",
|
|
94
|
-
"eslint": "^9.
|
|
102
|
+
"eslint": "^9.39.2",
|
|
103
|
+
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
95
104
|
"eslint-plugin-prettier": "^5.5.4",
|
|
105
|
+
"eslint-plugin-react": "^7.37.5",
|
|
96
106
|
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
97
107
|
"eslint-plugin-sort-destructure-keys": "^2.0.0",
|
|
98
108
|
"eslint-plugin-sort-keys-fix": "^1.1.2",
|
|
99
109
|
"eslint-plugin-unused-imports": "^4.3.0",
|
|
100
|
-
"jsdom": "^27.0
|
|
101
|
-
"react": "^19.2.
|
|
102
|
-
"react-dom": "^19.2.
|
|
103
|
-
"react-hook-form": "^7.
|
|
104
|
-
"tsup": "^8.5.
|
|
110
|
+
"jsdom": "^27.4.0",
|
|
111
|
+
"react": "^19.2.3",
|
|
112
|
+
"react-dom": "^19.2.3",
|
|
113
|
+
"react-hook-form": "^7.71.0",
|
|
114
|
+
"tsup": "^8.5.1",
|
|
115
|
+
"typedoc-plugin-markdown": "^4.9.0",
|
|
105
116
|
"typescript": "^5.9.3",
|
|
106
|
-
"typescript-eslint": "^8.
|
|
107
|
-
"vite": "^7.1
|
|
108
|
-
"zod": "^4.
|
|
117
|
+
"typescript-eslint": "^8.52.0",
|
|
118
|
+
"vite": "^7.3.1",
|
|
119
|
+
"zod": "^4.3.5"
|
|
109
120
|
},
|
|
110
121
|
"peerDependencies": {
|
|
111
122
|
"@heroui/button": ">=2 <3",
|
|
@@ -169,5 +180,19 @@
|
|
|
169
180
|
},
|
|
170
181
|
"dependencies": {
|
|
171
182
|
"@hookform/resolvers": "^5.2.2"
|
|
183
|
+
},
|
|
184
|
+
"overrides": {
|
|
185
|
+
"@heroui/button": "^2.2.29",
|
|
186
|
+
"@heroui/checkbox": "^2.3.29",
|
|
187
|
+
"@heroui/date-input": "^2.3.29",
|
|
188
|
+
"@heroui/date-picker": "^2.3.30",
|
|
189
|
+
"@heroui/input": "^2.4.30",
|
|
190
|
+
"@heroui/radio": "^2.3.29",
|
|
191
|
+
"@heroui/select": "^2.4.30",
|
|
192
|
+
"@heroui/slider": "^2.4.26",
|
|
193
|
+
"@heroui/spinner": "^2.2.26",
|
|
194
|
+
"@heroui/switch": "^2.2.26",
|
|
195
|
+
"@heroui/system": "^2.4.25",
|
|
196
|
+
"@heroui/theme": "^2.4.25"
|
|
172
197
|
}
|
|
173
|
-
}
|
|
198
|
+
}
|