@saastro/forms 0.2.0 → 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/cli.js +129 -2
- package/dist/{DateRenderers-3JUQNLKJ.js → DateRenderers-QKRBXFC6.js} +2 -2
- package/dist/{chunk-GHDCNAWC.js → chunk-G2ZSBYVS.js} +4 -2
- package/dist/{chunk-GHDCNAWC.js.map → chunk-G2ZSBYVS.js.map} +1 -1
- package/dist/index.d.ts +86 -2
- package/dist/index.js +237 -5
- package/dist/index.js.map +1 -1
- package/package.json +10 -5
- /package/dist/{DateRenderers-3JUQNLKJ.js.map → DateRenderers-QKRBXFC6.js.map} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@saastro/forms",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "Sistema de formularios dinámicos para React + Zod + React Hook Form",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"homepage": "https://github.com/saastro-io/saastro-forms",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"dev": "tsup --watch",
|
|
10
10
|
"build": "tsup",
|
|
11
11
|
"lint": "eslint . --max-warnings 210",
|
|
12
|
-
"test": "
|
|
13
|
-
"test:watch": "
|
|
12
|
+
"test": "vitest run",
|
|
13
|
+
"test:watch": "vitest",
|
|
14
14
|
"clean": "rm -rf dist",
|
|
15
15
|
"prepublishOnly": "npm run build"
|
|
16
16
|
},
|
|
@@ -46,10 +46,13 @@
|
|
|
46
46
|
"react-day-picker": "^9.11.3",
|
|
47
47
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
48
48
|
"react-hook-form": "^7.67.0",
|
|
49
|
-
"zod": "^3.25.
|
|
49
|
+
"zod": "^3.25.0 || ^4.0.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@saastro-io/config": "^0.1.0",
|
|
53
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
54
|
+
"@testing-library/react": "^16.1.0",
|
|
55
|
+
"@testing-library/user-event": "^14.5.2",
|
|
53
56
|
"@types/btoa-lite": "^1.0.2",
|
|
54
57
|
"@types/hast": "^3.0.4",
|
|
55
58
|
"@types/json-schema": "^7.0.15",
|
|
@@ -58,9 +61,11 @@
|
|
|
58
61
|
"@types/unist": "^3.0.3",
|
|
59
62
|
"@types/yauzl": "^2.10.3",
|
|
60
63
|
"eslint": "^9.32.0",
|
|
64
|
+
"happy-dom": "^15.11.7",
|
|
61
65
|
"tsup": "^8.5.0",
|
|
62
66
|
"typescript": "^5.9.3",
|
|
63
|
-
"vitest": "^2.1.8"
|
|
67
|
+
"vitest": "^2.1.8",
|
|
68
|
+
"zod": "^3.25.76"
|
|
64
69
|
},
|
|
65
70
|
"keywords": [
|
|
66
71
|
"react",
|
|
File without changes
|