finform-react-builder 1.2.1
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/README.md +621 -0
- package/dist/components/FinForm/FieldRenderer.d.ts +3 -0
- package/dist/components/FinForm/FinForm.d.ts +3 -0
- package/dist/components/FinForm/ImageComponent.d.ts +12 -0
- package/dist/components/FinForm/StepNavigation.d.ts +10 -0
- package/dist/components/FinForm/generateSchema.d.ts +7 -0
- package/dist/components/FinForm/index.d.ts +6 -0
- package/dist/components/FinForm/types.d.ts +92 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +9317 -0
- package/dist/index.es.js.map +1 -0
- package/dist/index.js +82 -0
- package/dist/index.js.map +1 -0
- package/package.json +84 -0
package/package.json
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "finform-react-builder",
|
|
3
|
+
"version": "1.2.1",
|
|
4
|
+
"description": "A powerful, flexible React form builder with dynamic field rendering, custom validation, multi-step forms, Material-UI integration, and image component support",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"react",
|
|
7
|
+
"form",
|
|
8
|
+
"form-builder",
|
|
9
|
+
"material-ui",
|
|
10
|
+
"validation",
|
|
11
|
+
"dynamic-forms",
|
|
12
|
+
"multi-step-forms",
|
|
13
|
+
"typescript",
|
|
14
|
+
"image-component"
|
|
15
|
+
],
|
|
16
|
+
"author": "Ritik <rkochar@finflowanalytics.com>",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"homepage": "https://github.com/finflow-analytics/finform#readme",
|
|
19
|
+
"repository": {
|
|
20
|
+
"type": "git",
|
|
21
|
+
"url": "git+https://github.com/finflow-analytics/finform.git"
|
|
22
|
+
},
|
|
23
|
+
"bugs": {
|
|
24
|
+
"url": "https://github.com/finflow-analytics/finform/issues"
|
|
25
|
+
},
|
|
26
|
+
"engines": {
|
|
27
|
+
"node": ">=14.0.0",
|
|
28
|
+
"npm": ">=6.0.0"
|
|
29
|
+
},
|
|
30
|
+
"main": "dist/index.js",
|
|
31
|
+
"module": "dist/index.es.js",
|
|
32
|
+
"types": "dist/index.d.ts",
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"import": "./dist/index.es.js",
|
|
37
|
+
"require": "./dist/index.js"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"files": [
|
|
41
|
+
"dist",
|
|
42
|
+
"README.md",
|
|
43
|
+
"LICENSE"
|
|
44
|
+
],
|
|
45
|
+
"scripts": {
|
|
46
|
+
"dev": "vite",
|
|
47
|
+
"build": "vite build && npm run build:types",
|
|
48
|
+
"build:lib": "vite build --mode library",
|
|
49
|
+
"build:types": "tsc --project tsconfig.build.json",
|
|
50
|
+
"preview": "vite preview",
|
|
51
|
+
"prepublishOnly": "npm run build:lib",
|
|
52
|
+
"check-package": "npm view @finflow-analytics/finform-react-builder",
|
|
53
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
54
|
+
"test:build": "npm run build && npm pack",
|
|
55
|
+
"clean": "rm -rf dist node_modules package-lock.json"
|
|
56
|
+
},
|
|
57
|
+
"peerDependencies": {
|
|
58
|
+
"@emotion/react": ">=11.0.0",
|
|
59
|
+
"@emotion/styled": ">=11.0.0",
|
|
60
|
+
"@mui/material": ">=5.0.0",
|
|
61
|
+
"react": ">=16.8.0",
|
|
62
|
+
"react-dom": ">=16.8.0"
|
|
63
|
+
},
|
|
64
|
+
"dependencies": {
|
|
65
|
+
"@hookform/resolvers": "^5.1.1",
|
|
66
|
+
"@mui/icons-material": "^7.1.1",
|
|
67
|
+
"react-dropzone": "^14.3.8",
|
|
68
|
+
"react-hook-form": "^7.58.0",
|
|
69
|
+
"yup": "^1.6.1"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@emotion/react": "^11.14.0",
|
|
73
|
+
"@emotion/styled": "^11.14.0",
|
|
74
|
+
"@mui/material": "^7.1.1",
|
|
75
|
+
"@types/react": "^19.1.8",
|
|
76
|
+
"@types/react-dom": "^19.1.6",
|
|
77
|
+
"@vitejs/plugin-react": "^4.2.1",
|
|
78
|
+
"react": "^19.1.0",
|
|
79
|
+
"react-dom": "^19.1.0",
|
|
80
|
+
"typescript": "^5.8.3",
|
|
81
|
+
"vite": "^6.3.5",
|
|
82
|
+
"vite-plugin-dts": "^4.5.4"
|
|
83
|
+
}
|
|
84
|
+
}
|