@mateosuarezdev/react-ui 1.0.9 → 1.0.14
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/index.cjs +6 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +263 -4
- package/dist/index.js +5295 -1411
- package/dist/index.js.map +1 -1
- package/package.json +12 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mateosuarezdev/react-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.14",
|
|
4
4
|
"description": "Dynamic React UI library designed to work alongside @mateosuarezdev/react-router",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -19,10 +19,7 @@
|
|
|
19
19
|
"dist/**/*.d.ts",
|
|
20
20
|
"dist/**/*.map"
|
|
21
21
|
],
|
|
22
|
-
"sideEffects":
|
|
23
|
-
"./dist/init.js",
|
|
24
|
-
"./dist/init.cjs"
|
|
25
|
-
],
|
|
22
|
+
"sideEffects": false,
|
|
26
23
|
"scripts": {
|
|
27
24
|
"build": "vite build",
|
|
28
25
|
"build:visualize": "vite-bundle-visualizer",
|
|
@@ -59,12 +56,15 @@
|
|
|
59
56
|
"peerDependencies": {
|
|
60
57
|
"@hookform/resolvers": "^5.2.2",
|
|
61
58
|
"@mateosuarezdev/atoms": "^1.0.0",
|
|
59
|
+
"@mateosuarezdev/react-router": "^1.0.24",
|
|
60
|
+
"clsx": "^2.1.1",
|
|
62
61
|
"framer-motion": "^12.0.0",
|
|
63
62
|
"lucide-react": "^0.545.0",
|
|
64
63
|
"motion": "^12.0.0",
|
|
65
64
|
"react": "^18.0.0",
|
|
66
65
|
"react-dom": "^18.0.0",
|
|
67
|
-
"react-hook-form": "^7.65.0"
|
|
66
|
+
"react-hook-form": "^7.65.0",
|
|
67
|
+
"tailwind-merge": "^3.3.1"
|
|
68
68
|
},
|
|
69
69
|
"peerDependenciesMeta": {
|
|
70
70
|
"@hookform/resolvers": {
|
|
@@ -73,6 +73,9 @@
|
|
|
73
73
|
"@mateosuarezdev/atoms": {
|
|
74
74
|
"optional": false
|
|
75
75
|
},
|
|
76
|
+
"@mateosuarezdev/react-router": {
|
|
77
|
+
"optional": false
|
|
78
|
+
},
|
|
76
79
|
"clsx": {
|
|
77
80
|
"optional": false
|
|
78
81
|
},
|
|
@@ -101,11 +104,14 @@
|
|
|
101
104
|
"devDependencies": {
|
|
102
105
|
"@hookform/resolvers": "^5.2.2",
|
|
103
106
|
"@mateosuarezdev/atoms": "^1.0.0",
|
|
107
|
+
"@mateosuarezdev/react-router": "^1.0.24",
|
|
108
|
+
"@react-aria/focus": "^3.21.2",
|
|
104
109
|
"@types/node": "^24.7.0",
|
|
105
110
|
"@types/react": "^19.2.2",
|
|
106
111
|
"@types/react-dom": "^19.2.1",
|
|
107
112
|
"@vitejs/plugin-react": "^5.0.4",
|
|
108
113
|
"clsx": "^2.1.1",
|
|
114
|
+
"date-fns": "^4.1.0",
|
|
109
115
|
"lucide-react": "^0.545.0",
|
|
110
116
|
"motion": "^12.23.22",
|
|
111
117
|
"react": "^19.2.0",
|