@saas-ui/forms 3.0.0-next.4 → 3.0.0-next.40
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/LICENSE +21 -0
- package/dist/index.d.mts +60 -83
- package/dist/index.d.ts +60 -83
- package/dist/index.js +55 -21
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +56 -22
- package/dist/index.mjs.map +1 -1
- package/package.json +25 -25
- package/CHANGELOG.md +0 -1722
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@saas-ui/forms",
|
3
|
-
"version": "3.0.0-next.
|
3
|
+
"version": "3.0.0-next.40",
|
4
4
|
"description": "Fully functional forms for Chakra UI.",
|
5
5
|
"exports": {
|
6
6
|
".": {
|
@@ -35,17 +35,6 @@
|
|
35
35
|
"main": "./dist/index.js",
|
36
36
|
"module": "./dist/index.mjs",
|
37
37
|
"types": "./dist/index.d.ts",
|
38
|
-
"scripts": {
|
39
|
-
"clean": "rimraf --no-glob ./dist",
|
40
|
-
"build": "yarn build:package && yarn build:yup && yarn build:zod",
|
41
|
-
"build:package": "tsup src/index.ts --config tsup.config.ts",
|
42
|
-
"build:yup": "tsup yup/src/index.ts --config yup/tsup.config.ts",
|
43
|
-
"build:zod": "tsup zod/src/index.ts --config zod/tsup.config.ts",
|
44
|
-
"lint": "eslint src --ext .ts,.tsx,.js,.jsx --config ../../.eslintrc.js",
|
45
|
-
"lint:staged": "lint-staged --allow-empty --config ../../lint-staged.config.js",
|
46
|
-
"typecheck": "tsc --noEmit",
|
47
|
-
"tsd": "tsd"
|
48
|
-
},
|
49
38
|
"files": [
|
50
39
|
"dist"
|
51
40
|
],
|
@@ -81,30 +70,41 @@
|
|
81
70
|
"url": "https://storybook.saas-ui.dev"
|
82
71
|
},
|
83
72
|
"dependencies": {
|
84
|
-
"@hookform/resolvers": "^
|
85
|
-
"@
|
86
|
-
"
|
87
|
-
"
|
88
|
-
"
|
73
|
+
"@hookform/resolvers": "^5.0.0",
|
74
|
+
"@standard-schema/spec": "^1.0.0",
|
75
|
+
"react-hook-form": "^7.55.0",
|
76
|
+
"zod": "^3.24.2",
|
77
|
+
"@saas-ui/core": "3.0.0-next.11",
|
78
|
+
"@saas-ui/react": "3.0.0-next.40"
|
89
79
|
},
|
90
80
|
"peerDependencies": {
|
91
|
-
"@chakra-ui/react": "^3.
|
81
|
+
"@chakra-ui/react": "^3.20.0",
|
92
82
|
"@emotion/react": ">=11.0.0",
|
93
83
|
"react": ">=18.0.0",
|
94
84
|
"react-dom": ">=18.0.0"
|
95
85
|
},
|
96
86
|
"devDependencies": {
|
97
|
-
"@types/json-schema": "^7.0.15",
|
98
|
-
"ajv": "^8.17.1",
|
99
|
-
"ajv-errors": "^3.0.0",
|
100
|
-
"json-schema-to-ts": "^3.1.1",
|
101
87
|
"tsd": "^0.31.2",
|
102
88
|
"tsup": "^8.4.0",
|
103
|
-
"
|
104
|
-
"
|
105
|
-
"
|
89
|
+
"zod": "^3.24.2",
|
90
|
+
"typescript": "^5.8.3",
|
91
|
+
"react": "^19.0.0",
|
92
|
+
"react-dom": "^19.0.0",
|
93
|
+
"@types/react": "^19.0.12",
|
94
|
+
"@types/react-dom": "^19.0.4"
|
106
95
|
},
|
107
96
|
"tsd": {
|
108
97
|
"directory": "tests"
|
98
|
+
},
|
99
|
+
"scripts": {
|
100
|
+
"clean": "rimraf --no-glob ./dist",
|
101
|
+
"build": "pnpm build:package && pnpm build:yup && pnpm build:zod",
|
102
|
+
"build:package": "tsup src/index.ts --config tsup.config.ts",
|
103
|
+
"build:yup": "tsup yup/src/index.ts --config yup/tsup.config.ts",
|
104
|
+
"build:zod": "tsup zod/src/index.ts --config zod/tsup.config.ts",
|
105
|
+
"lint": "eslint src --ext .ts,.tsx,.js,.jsx --config ../../eslint.config.js",
|
106
|
+
"lint:staged": "lint-staged --allow-empty --config ../../lint-staged.config.js",
|
107
|
+
"typecheck": "tsc --noEmit",
|
108
|
+
"tsd": "tsd"
|
109
109
|
}
|
110
110
|
}
|