@saastro/forms 0.1.3
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/README.md +347 -0
- package/cli.js +732 -0
- package/dist/DateRenderers-3JUQNLKJ.js +139 -0
- package/dist/DateRenderers-3JUQNLKJ.js.map +1 -0
- package/dist/chunk-GHDCNAWC.js +247 -0
- package/dist/chunk-GHDCNAWC.js.map +1 -0
- package/dist/chunk-YXKDN3PU.js +687 -0
- package/dist/chunk-YXKDN3PU.js.map +1 -0
- package/dist/index.d.ts +3754 -0
- package/dist/index.js +7115 -0
- package/dist/index.js.map +1 -0
- package/dist/submitOrchestrator-RF76MOWG.js +13 -0
- package/dist/submitOrchestrator-RF76MOWG.js.map +1 -0
- package/package.json +85 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import {
|
|
2
|
+
executeSubmitActions,
|
|
3
|
+
executeSubmitActionsByTrigger,
|
|
4
|
+
getActionsByTrigger,
|
|
5
|
+
getMinDelayMs
|
|
6
|
+
} from "./chunk-YXKDN3PU.js";
|
|
7
|
+
export {
|
|
8
|
+
executeSubmitActions,
|
|
9
|
+
executeSubmitActionsByTrigger,
|
|
10
|
+
getActionsByTrigger,
|
|
11
|
+
getMinDelayMs
|
|
12
|
+
};
|
|
13
|
+
//# sourceMappingURL=submitOrchestrator-RF76MOWG.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":[],"sourcesContent":[],"mappings":"","names":[]}
|
package/package.json
ADDED
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@saastro/forms",
|
|
3
|
+
"version": "0.1.3",
|
|
4
|
+
"description": "Sistema de formularios dinámicos para React + Zod + React Hook Form",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"homepage": "https://github.com/saastro-io/saastro-forms",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"dev": "tsup --watch",
|
|
10
|
+
"build": "tsup",
|
|
11
|
+
"lint": "eslint . --max-warnings 210",
|
|
12
|
+
"test": "node ../../node_modules/vitest/dist/cli.js run",
|
|
13
|
+
"test:watch": "node ../../node_modules/vitest/dist/cli.js",
|
|
14
|
+
"clean": "rm -rf dist",
|
|
15
|
+
"prepublishOnly": "npm run build"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist",
|
|
19
|
+
"cli.js"
|
|
20
|
+
],
|
|
21
|
+
"bin": {
|
|
22
|
+
"saastro-forms": "./cli.js"
|
|
23
|
+
},
|
|
24
|
+
"sideEffects": false,
|
|
25
|
+
"main": "./dist/index.js",
|
|
26
|
+
"module": "./dist/index.js",
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"exports": {
|
|
29
|
+
".": {
|
|
30
|
+
"types": "./dist/index.d.ts",
|
|
31
|
+
"import": "./dist/index.js"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@hookform/resolvers": "^5.2.2",
|
|
36
|
+
"@iconify/react": "^6.0.2",
|
|
37
|
+
"class-variance-authority": "^0.7.1",
|
|
38
|
+
"clsx": "^2.1.1",
|
|
39
|
+
"lucide-react": "^0.548.0",
|
|
40
|
+
"sonner": "^2.0.5",
|
|
41
|
+
"tailwind-merge": "^3.3.0"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"date-fns": "^4.1.0",
|
|
45
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
46
|
+
"react-day-picker": "^9.11.3",
|
|
47
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
48
|
+
"react-hook-form": "^7.67.0",
|
|
49
|
+
"zod": "^3.25.76"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@types/btoa-lite": "^1.0.2",
|
|
53
|
+
"@types/hast": "^3.0.4",
|
|
54
|
+
"@types/json-schema": "^7.0.15",
|
|
55
|
+
"@types/node": "^22.0.0",
|
|
56
|
+
"@types/react": "^19.1.6",
|
|
57
|
+
"@types/unist": "^3.0.3",
|
|
58
|
+
"@types/yauzl": "^2.10.3",
|
|
59
|
+
"eslint": "^9.32.0",
|
|
60
|
+
"tsup": "^8.5.0",
|
|
61
|
+
"typescript": "^5.9.3",
|
|
62
|
+
"vitest": "^2.1.8"
|
|
63
|
+
},
|
|
64
|
+
"keywords": [
|
|
65
|
+
"react",
|
|
66
|
+
"form",
|
|
67
|
+
"zod",
|
|
68
|
+
"react-hook-form",
|
|
69
|
+
"factory",
|
|
70
|
+
"dynamic",
|
|
71
|
+
"shadcn",
|
|
72
|
+
"tailwind"
|
|
73
|
+
],
|
|
74
|
+
"author": "SAASTRO",
|
|
75
|
+
"repository": {
|
|
76
|
+
"type": "git",
|
|
77
|
+
"url": "https://github.com/saastro-io/saastro-forms"
|
|
78
|
+
},
|
|
79
|
+
"bugs": {
|
|
80
|
+
"url": "https://github.com/saastro-io/saastro-forms/issues"
|
|
81
|
+
},
|
|
82
|
+
"publishConfig": {
|
|
83
|
+
"access": "public"
|
|
84
|
+
}
|
|
85
|
+
}
|