@arudovwen/form-builder-react 1.4.1 → 1.4.4
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/dist/form-builder.es.js +11705 -11969
- package/dist/form-builder.umd.js +70 -70
- package/package.json +39 -33
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arudovwen/form-builder-react",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.4",
|
|
4
4
|
"description": "A React-based form builder component library.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/form-builder.umd.js",
|
|
@@ -11,42 +11,57 @@
|
|
|
11
11
|
"dist/form-builder.css",
|
|
12
12
|
"types"
|
|
13
13
|
],
|
|
14
|
+
"sideEffects": false,
|
|
14
15
|
"scripts": {
|
|
15
|
-
"dev": "vite",
|
|
16
|
+
"dev": "vite --config demo/vite.config.ts",
|
|
16
17
|
"build:types": "tsc --emitDeclarationOnly",
|
|
17
18
|
"build:js": "vite build",
|
|
18
19
|
"build": "npm run build:types && npm run build:js",
|
|
19
20
|
"lint": "eslint .",
|
|
20
|
-
"preview": "vite preview"
|
|
21
|
+
"preview": "vite preview",
|
|
22
|
+
"analyze": "vite build && npx serve dist"
|
|
21
23
|
},
|
|
24
|
+
"keywords": [
|
|
25
|
+
"react",
|
|
26
|
+
"form-builder",
|
|
27
|
+
"react-library",
|
|
28
|
+
"vite",
|
|
29
|
+
"component-library"
|
|
30
|
+
],
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/arudovwen/Form.Builder.git"
|
|
34
|
+
},
|
|
35
|
+
"homepage": "https://github.com/arudovwen/Form.Builder#readme",
|
|
36
|
+
"author": {
|
|
37
|
+
"name": "Success Ahon",
|
|
38
|
+
"url": "https://github.com/arudovwen"
|
|
39
|
+
},
|
|
40
|
+
"license": "MIT",
|
|
22
41
|
"peerDependencies": {
|
|
42
|
+
"@headlessui/react": "^2.2.0",
|
|
43
|
+
"@hookform/resolvers": "^3.0.0",
|
|
44
|
+
"axios": "^1.0.0",
|
|
45
|
+
"papaparse": "^5.5.0",
|
|
23
46
|
"react": "^18.0.0",
|
|
24
|
-
"react-
|
|
47
|
+
"react-currency-input-field": "^3.9.0",
|
|
48
|
+
"react-datepicker": "^8.0.0",
|
|
49
|
+
"react-dom": "^18.0.0",
|
|
50
|
+
"react-draggable": "^4.4.0",
|
|
51
|
+
"react-hook-form": "^7.0.0",
|
|
52
|
+
"react-router": "^7.0.0",
|
|
53
|
+
"react-router-dom": "^7.0.0",
|
|
54
|
+
"react-toastify": "^11.0.0",
|
|
55
|
+
"uuid": "^11.0.0",
|
|
56
|
+
"xlsx": "^0.18.0",
|
|
57
|
+
"yup": "^1.0.0"
|
|
25
58
|
},
|
|
26
59
|
"dependencies": {
|
|
27
|
-
"
|
|
28
|
-
"@emotion/styled": "^11.14.0",
|
|
29
|
-
"@headlessui/react": "^2.2.0",
|
|
30
|
-
"@hookform/resolvers": "^3.9.1",
|
|
31
|
-
"@iconify/react": "^5.1.0",
|
|
32
|
-
"@mui/material": "^7.1.0",
|
|
33
|
-
"@mui/x-data-grid": "^8.5.0",
|
|
34
|
-
"axios": "^1.8.4",
|
|
35
|
-
"clsx": "^2.1.1",
|
|
36
|
-
"papaparse": "^5.5.3",
|
|
37
|
-
"react-currency-input-field": "^3.9.0",
|
|
38
|
-
"react-datepicker": "^8.4.0",
|
|
39
|
-
"react-draggable": "^4.4.6",
|
|
40
|
-
"react-hook-form": "^7.54.0",
|
|
41
|
-
"react-router": "^7.0.2",
|
|
42
|
-
"react-router-dom": "^7.1.1",
|
|
43
|
-
"react-toastify": "^11.0.2",
|
|
44
|
-
"uuid": "^11.0.3",
|
|
45
|
-
"xlsx": "^0.18.5",
|
|
46
|
-
"yup": "^1.6.1"
|
|
60
|
+
"clsx": "^2.1.1"
|
|
47
61
|
},
|
|
48
62
|
"devDependencies": {
|
|
49
63
|
"@eslint/js": "^9.15.0",
|
|
64
|
+
"@iconify/react": "^6.0.2",
|
|
50
65
|
"@types/node": "^22.10.2",
|
|
51
66
|
"@types/react": "^18.3.12",
|
|
52
67
|
"@types/react-dom": "^18.3.1",
|
|
@@ -63,14 +78,5 @@
|
|
|
63
78
|
"typescript": "~5.6.2",
|
|
64
79
|
"typescript-eslint": "^8.15.0",
|
|
65
80
|
"vite": "^6.0.1"
|
|
66
|
-
},
|
|
67
|
-
"repository": {
|
|
68
|
-
"type": "git",
|
|
69
|
-
"url": "https://github.com/arudovwen/Form.Builder.git"
|
|
70
|
-
},
|
|
71
|
-
"homepage": "https://github.com/arudovwen/Form.Builder#readme",
|
|
72
|
-
"author": {
|
|
73
|
-
"name": "Success Ahon",
|
|
74
|
-
"contact": "https://github.com/arudovwen/Form.Builder"
|
|
75
81
|
}
|
|
76
82
|
}
|