@saas-ui/forms 0.7.2 → 0.7.4
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +12 -0
- package/package.json +3 -1
- package/yup/package.json +28 -0
- package/zod/package.json +28 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@saas-ui/forms",
|
3
|
-
"version": "0.7.
|
3
|
+
"version": "0.7.4",
|
4
4
|
"description": "Theme and components agnostic SaasProvider",
|
5
5
|
"source": "src/index.ts",
|
6
6
|
"exports": {
|
@@ -42,7 +42,9 @@
|
|
42
42
|
"files": [
|
43
43
|
"dist",
|
44
44
|
"src",
|
45
|
+
"yup/package.json",
|
45
46
|
"yup/src",
|
47
|
+
"zod/package.json",
|
46
48
|
"zod/src"
|
47
49
|
],
|
48
50
|
"sideEffects": false,
|
package/yup/package.json
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
{
|
2
|
+
"name": "yup",
|
3
|
+
"description": "Saas UI Forms field resolver: yup",
|
4
|
+
"version": "1.0.0",
|
5
|
+
"private": true,
|
6
|
+
"source": "./src/index.ts",
|
7
|
+
"exports": {
|
8
|
+
".": {
|
9
|
+
"development": "./src/index.ts",
|
10
|
+
"require": "./../dist/yup/index.js",
|
11
|
+
"types": "./../dist/yup/src/index.d.ts",
|
12
|
+
"default": "./../dist/yup/index.modern.js"
|
13
|
+
},
|
14
|
+
"./src": {
|
15
|
+
"default": "./src/index.ts"
|
16
|
+
}
|
17
|
+
},
|
18
|
+
"main": "../dist/yup/index.js",
|
19
|
+
"module": "../dist/yup/index.modern.js",
|
20
|
+
"types": "../dist/yup/index.d.ts",
|
21
|
+
"author": "Eelco Wiersma <eelco@appulse.nl>",
|
22
|
+
"license": "MIT",
|
23
|
+
"peerDependencies": {
|
24
|
+
"@hookform/resolvers": "^2.8.3",
|
25
|
+
"react-hook-form": "^7.22.0",
|
26
|
+
"yup": "^0.32.11"
|
27
|
+
}
|
28
|
+
}
|
package/zod/package.json
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
{
|
2
|
+
"name": "zod",
|
3
|
+
"description": "Saas UI Forms field resolver: zod",
|
4
|
+
"version": "1.0.0",
|
5
|
+
"private": true,
|
6
|
+
"source": "./src/index.ts",
|
7
|
+
"exports": {
|
8
|
+
".": {
|
9
|
+
"development": "./src/index.ts",
|
10
|
+
"require": "./../dist/zod/index.js",
|
11
|
+
"types": "./../dist/zod/src/index.d.ts",
|
12
|
+
"default": "./../dist/zod/index.modern.js"
|
13
|
+
},
|
14
|
+
"./src": {
|
15
|
+
"default": "./src/index.ts"
|
16
|
+
}
|
17
|
+
},
|
18
|
+
"main": "../dist/zod/index.js",
|
19
|
+
"module": "../dist/zod/index.modern.js",
|
20
|
+
"types": "../dist/zod/index.d.ts",
|
21
|
+
"author": "Eelco Wiersma <eelco@appulse.nl>",
|
22
|
+
"license": "MIT",
|
23
|
+
"peerDependencies": {
|
24
|
+
"@hookform/resolvers": "^2.8.3",
|
25
|
+
"react-hook-form": "^7.22.0",
|
26
|
+
"zod": "^3.14.4"
|
27
|
+
}
|
28
|
+
}
|