@cupcodev/ui 3.2.0 → 5.0.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/dist/{charts-DqY2Q-7w.d.cts → charts-citXBvHw.d.cts} +1 -1
- package/dist/{charts-DqY2Q-7w.d.ts → charts-citXBvHw.d.ts} +1 -1
- package/dist/charts.d.cts +1 -1
- package/dist/charts.d.ts +1 -1
- package/dist/index.cjs +3165 -2803
- package/dist/index.d.cts +194 -137
- package/dist/index.d.ts +194 -137
- package/dist/index.js +2528 -2176
- package/dist/styles.css +1 -1
- package/package.json +25 -21
- package/styles/global.css +757 -132
- package/styles/tokens.css +14 -10
- package/tailwind-preset.cjs +2 -0
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cupcodev/ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "
|
|
5
|
-
"packageManager": "pnpm@10.28.2+sha512.41872f037ad22f7348e3b1debbaf7e867cfd448f2726d9cf74c08f19507c31d2c8e7a11525b983febc2df640b5438dee6023ebb1f84ed43cc2d654d2bc326264",
|
|
4
|
+
"version": "5.0.1",
|
|
6
5
|
"type": "module",
|
|
7
6
|
"main": "./dist/index.cjs",
|
|
8
7
|
"module": "./dist/index.js",
|
|
@@ -46,26 +45,10 @@
|
|
|
46
45
|
"sideEffects": [
|
|
47
46
|
"**/*.css"
|
|
48
47
|
],
|
|
49
|
-
"scripts": {
|
|
50
|
-
"dev": "vite",
|
|
51
|
-
"build": "npm run build:lib",
|
|
52
|
-
"build:lib": "tsup && npm run build:styles",
|
|
53
|
-
"build:styles": "tailwindcss -i ./styles/index.css -o ./dist/styles.css --config ./tailwind.config.ts --minify",
|
|
54
|
-
"build:site": "vite build",
|
|
55
|
-
"build:app": "npm run build:site",
|
|
56
|
-
"build:dev": "vite build --mode development",
|
|
57
|
-
"typecheck": "tsc -b",
|
|
58
|
-
"check:exports": "node ./scripts/verify-exports.mjs",
|
|
59
|
-
"check:release": "npm run lint && npm run typecheck && npm run check:exports && npm run build:lib",
|
|
60
|
-
"check:quality": "npm run check:release && npm run build:site",
|
|
61
|
-
"test:consumer": "node ./scripts/consumer-smoke.mjs",
|
|
62
|
-
"lint": "eslint . --max-warnings=0",
|
|
63
|
-
"prepublishOnly": "npm run check:release",
|
|
64
|
-
"postinstall": "node ./postinstall.cjs",
|
|
65
|
-
"preview": "vite preview"
|
|
66
|
-
},
|
|
67
48
|
"devDependencies": {
|
|
49
|
+
"@cupcode/animations": "file:packages/animations",
|
|
68
50
|
"@eslint/js": "^9.32.0",
|
|
51
|
+
"@gsap/react": "^2.1.2",
|
|
69
52
|
"@radix-ui/react-accordion": "^1.2.11",
|
|
70
53
|
"@radix-ui/react-alert-dialog": "^1.1.14",
|
|
71
54
|
"@radix-ui/react-aspect-ratio": "^1.1.7",
|
|
@@ -109,7 +92,9 @@
|
|
|
109
92
|
"eslint": "^9.32.0",
|
|
110
93
|
"eslint-plugin-react-hooks": "^5.2.0",
|
|
111
94
|
"eslint-plugin-react-refresh": "^0.4.20",
|
|
95
|
+
"framer-motion": "^12.23.24",
|
|
112
96
|
"globals": "^15.15.0",
|
|
97
|
+
"gsap": "^3.14.2",
|
|
113
98
|
"input-otp": "^1.4.2",
|
|
114
99
|
"lovable-tagger": "^1.1.10",
|
|
115
100
|
"lucide-react": "^0.462.0",
|
|
@@ -169,8 +154,10 @@
|
|
|
169
154
|
"react-day-picker": "^9.13.0",
|
|
170
155
|
"react-dom": "^18.3.1 || ^19.0.0",
|
|
171
156
|
"react-hook-form": "^7.61.1",
|
|
157
|
+
"react-router-dom": "^6.30.1",
|
|
172
158
|
"react-resizable-panels": "^2.1.9",
|
|
173
159
|
"recharts": "^2.15.4",
|
|
160
|
+
"framer-motion": "^12.23.24",
|
|
174
161
|
"sonner": "^1.7.4",
|
|
175
162
|
"tailwind-merge": "^2.6.0",
|
|
176
163
|
"tailwindcss": "^3.4.17",
|
|
@@ -179,5 +166,22 @@
|
|
|
179
166
|
},
|
|
180
167
|
"publishConfig": {
|
|
181
168
|
"access": "public"
|
|
169
|
+
},
|
|
170
|
+
"scripts": {
|
|
171
|
+
"dev": "vite",
|
|
172
|
+
"build": "npm run build:lib",
|
|
173
|
+
"build:lib": "tsup && npm run build:styles",
|
|
174
|
+
"build:styles": "tailwindcss -i ./styles/index.css -o ./dist/styles.css --config ./tailwind.config.ts --minify",
|
|
175
|
+
"build:site": "vite build",
|
|
176
|
+
"build:app": "npm run build:site",
|
|
177
|
+
"build:dev": "vite build --mode development",
|
|
178
|
+
"typecheck": "tsc -b",
|
|
179
|
+
"check:exports": "node ./scripts/verify-exports.mjs",
|
|
180
|
+
"check:release": "npm run lint && npm run typecheck && npm run check:exports && npm run build:lib",
|
|
181
|
+
"check:quality": "npm run check:release && npm run build:site",
|
|
182
|
+
"test:consumer": "node ./scripts/consumer-smoke.mjs",
|
|
183
|
+
"lint": "eslint . --max-warnings=0",
|
|
184
|
+
"postinstall": "node ./postinstall.cjs",
|
|
185
|
+
"preview": "vite preview"
|
|
182
186
|
}
|
|
183
|
-
}
|
|
187
|
+
}
|