autoforma 1.1.4 → 1.1.6
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 +164 -159
- package/dist/components/AutoForm/AutoForm.types.d.ts +1 -1
- package/dist/index.cjs.js +25 -25
- package/dist/index.es.js +1122 -1106
- package/package.json +9 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "autoforma",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "AutoForma is a dynamic form builder based on Mantine and React",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"module": "./dist/index.es.js",
|
|
@@ -48,34 +48,28 @@
|
|
|
48
48
|
"vitest": "vitest run",
|
|
49
49
|
"vitest:watch": "vitest",
|
|
50
50
|
"test": "npm run typecheck && npm run prettier && npm run lint && npm run vitest && npm run build",
|
|
51
|
+
"dev": "vite --config vite.config.dev.ts",
|
|
51
52
|
"storybook": "storybook dev -p 6006",
|
|
52
53
|
"storybook:build": "storybook build",
|
|
53
|
-
"predeploy": "npm run build
|
|
54
|
-
"deploy-storybook": "gh-pages -d storybook-static"
|
|
55
|
-
"dev": "vite --config vite.config.dev.ts"
|
|
54
|
+
"predeploy": "npm run storybook:build",
|
|
55
|
+
"deploy-storybook": "gh-pages -d storybook-static"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
58
|
"@mantine/dates": "^8.3.2",
|
|
59
59
|
"@mantine/form": "^8.3.2",
|
|
60
60
|
"@mantine/hooks": "^8.3.2",
|
|
61
|
-
"@mantine/tiptap": "^8.3.2",
|
|
62
|
-
"@tiptap/extension-highlight": "^3.6.6",
|
|
63
|
-
"@tiptap/extension-link": "^3.6.6",
|
|
64
|
-
"@tiptap/extension-subscript": "^3.6.6",
|
|
65
|
-
"@tiptap/extension-superscript": "^3.6.6",
|
|
66
|
-
"@tiptap/extension-text-align": "^3.6.6",
|
|
67
|
-
"@tiptap/extension-underline": "^3.6.6",
|
|
68
|
-
"@tiptap/pm": "^3.6.6",
|
|
69
|
-
"@tiptap/react": "^3.6.6",
|
|
70
|
-
"@tiptap/starter-kit": "^3.6.6",
|
|
71
61
|
"dayjs": "^1.11.13",
|
|
72
|
-
"react-router-dom": "^7.4.0"
|
|
62
|
+
"react-router-dom": "^7.4.0",
|
|
63
|
+
"storybook": "^10.1.10"
|
|
73
64
|
},
|
|
74
65
|
"devDependencies": {
|
|
66
|
+
"@storybook/addon-docs": "^10.1.10",
|
|
67
|
+
"@storybook/react-vite": "^10.1.10",
|
|
75
68
|
"@types/node": "^24.10.1",
|
|
76
69
|
"@types/react": "^19.1.0",
|
|
77
70
|
"@types/react-dom": "^19.1.0",
|
|
78
71
|
"@vitejs/plugin-react": "^4.3.4",
|
|
72
|
+
"gh-pages": "^6.3.0",
|
|
79
73
|
"postcss-preset-mantine": "^1.18.0",
|
|
80
74
|
"typescript": "^5.8.2",
|
|
81
75
|
"vite": "^6.2.2",
|
|
@@ -87,7 +81,6 @@
|
|
|
87
81
|
"@mantine/dates": "^8.3.2",
|
|
88
82
|
"@mantine/form": "^8.3.2",
|
|
89
83
|
"@mantine/hooks": "^8.3.2",
|
|
90
|
-
"@mantine/tiptap": "^8.3.2",
|
|
91
84
|
"react": "^19.0.0",
|
|
92
85
|
"react-dom": "^19.0.0"
|
|
93
86
|
},
|