@rachelallyson/hero-hook-form 1.0.1 → 1.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 +54 -42
- package/README.md +131 -178
- package/dist/index.d.ts +73 -4
- package/dist/index.js +170 -80
- package/dist/react/index.d.ts +73 -4
- package/dist/react/index.js +170 -80
- package/package.json +41 -32
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rachelallyson/hero-hook-form",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Typed form helpers that combine React Hook Form and HeroUI components.",
|
|
5
5
|
"author": "Rachel Higley",
|
|
6
6
|
"homepage": "https://github.com/rachelallyson/hero-hook-form#readme",
|
|
@@ -67,35 +67,41 @@
|
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
69
|
"@cypress/vite-dev-server": "^7.0.0",
|
|
70
|
-
"@eslint/js": "^9.
|
|
71
|
-
"@heroui/button": "^2.2.
|
|
72
|
-
"@heroui/checkbox": "^2.3.
|
|
73
|
-
"@heroui/date-input": "^2.3.
|
|
74
|
-
"@heroui/date-picker": "^2.3.
|
|
75
|
-
"@heroui/input": "^2.4.
|
|
76
|
-
"@heroui/radio": "^2.3.
|
|
77
|
-
"@heroui/react": "^2.8.
|
|
78
|
-
"@heroui/select": "^2.4.
|
|
79
|
-
"@heroui/slider": "^2.4.
|
|
80
|
-
"@heroui/spinner": "^2.2.
|
|
81
|
-
"@heroui/switch": "^2.2.
|
|
82
|
-
"@heroui/system": "^2.
|
|
83
|
-
"@
|
|
84
|
-
"@types/
|
|
85
|
-
"@types/react
|
|
86
|
-
"@
|
|
87
|
-
"
|
|
88
|
-
"cypress
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
70
|
+
"@eslint/js": "^9.38.0",
|
|
71
|
+
"@heroui/button": "^2.2.27",
|
|
72
|
+
"@heroui/checkbox": "^2.3.27",
|
|
73
|
+
"@heroui/date-input": "^2.3.27",
|
|
74
|
+
"@heroui/date-picker": "^2.3.28",
|
|
75
|
+
"@heroui/input": "^2.4.28",
|
|
76
|
+
"@heroui/radio": "^2.3.27",
|
|
77
|
+
"@heroui/react": "^2.8.5",
|
|
78
|
+
"@heroui/select": "^2.4.28",
|
|
79
|
+
"@heroui/slider": "^2.4.24",
|
|
80
|
+
"@heroui/spinner": "^2.2.24",
|
|
81
|
+
"@heroui/switch": "^2.2.24",
|
|
82
|
+
"@heroui/system": "^2.4.23",
|
|
83
|
+
"@rachelallyson/heroui-font-picker": "^1.0.0",
|
|
84
|
+
"@types/node": "^24.9.1",
|
|
85
|
+
"@types/react": "^19.2.2",
|
|
86
|
+
"@types/react-dom": "^19.2.2",
|
|
87
|
+
"@vitejs/plugin-react": "^5.0.4",
|
|
88
|
+
"cypress": "^15.5.0",
|
|
89
|
+
"cypress-terminal-report": "^7.3.3",
|
|
90
|
+
"eslint": "^9.38.0",
|
|
91
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
92
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
93
|
+
"eslint-plugin-sort-destructure-keys": "^2.0.0",
|
|
94
|
+
"eslint-plugin-sort-keys-fix": "^1.1.2",
|
|
95
|
+
"eslint-plugin-unused-imports": "^4.3.0",
|
|
96
|
+
"jsdom": "^27.0.1",
|
|
97
|
+
"react": "^19.2.0",
|
|
98
|
+
"react-dom": "^19.2.0",
|
|
99
|
+
"react-hook-form": "^7.65.0",
|
|
94
100
|
"tsup": "^8.5.0",
|
|
95
|
-
"typescript": "^5.9.
|
|
96
|
-
"typescript-eslint": "^8.
|
|
97
|
-
"vite": "^7.1.
|
|
98
|
-
"zod": "^4.1.
|
|
101
|
+
"typescript": "^5.9.3",
|
|
102
|
+
"typescript-eslint": "^8.46.2",
|
|
103
|
+
"vite": "^7.1.11",
|
|
104
|
+
"zod": "^4.1.12"
|
|
99
105
|
},
|
|
100
106
|
"peerDependencies": {
|
|
101
107
|
"@heroui/button": ">=2 <3",
|
|
@@ -110,6 +116,7 @@
|
|
|
110
116
|
"@heroui/spinner": ">=2 <3",
|
|
111
117
|
"@heroui/switch": ">=2 <3",
|
|
112
118
|
"@heroui/system": ">=2 <3",
|
|
119
|
+
"@rachelallyson/heroui-font-picker": ">=1.0.0",
|
|
113
120
|
"react": ">=18.2.0 <20",
|
|
114
121
|
"react-dom": ">=18.2.0 <20",
|
|
115
122
|
"react-hook-form": ">=7 <8",
|
|
@@ -151,7 +158,9 @@
|
|
|
151
158
|
},
|
|
152
159
|
"@heroui/system": {
|
|
153
160
|
"optional": true
|
|
161
|
+
},
|
|
162
|
+
"@rachelallyson/heroui-font-picker": {
|
|
163
|
+
"optional": true
|
|
154
164
|
}
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
}
|
|
165
|
+
}
|
|
166
|
+
}
|