Spaces:
Running
Running
Tony Powell
commited on
Commit
·
295842d
1
Parent(s):
f30a37e
Make styles tolerable
Browse files- components.json +20 -0
- index.html +2 -1
- package.json +13 -1
- pnpm-lock.yaml +1519 -62
- postcss.config.mjs +6 -0
- src/App.css +0 -42
- src/App.tsx +47 -33
- src/components/ui/button.tsx +56 -0
- src/components/ui/card.tsx +79 -0
- src/components/ui/input.tsx +25 -0
- src/components/ui/table.tsx +117 -0
- src/components/ui/textarea.tsx +24 -0
- src/components/ui/tooltip.tsx +28 -0
- src/index.css +68 -61
- src/lib/utils.ts +6 -0
- src/main.tsx +7 -7
- src/table.tsx +20 -11
- tailwind.config.ts +62 -0
- tsconfig.app.json +5 -1
- tsconfig.json +7 -1
- tsconfig.node.json +2 -1
- vite.config.ts +9 -3
components.json
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"$schema": "https://ui.shadcn.com/schema.json",
|
3 |
+
"style": "default",
|
4 |
+
"rsc": false,
|
5 |
+
"tsx": true,
|
6 |
+
"tailwind": {
|
7 |
+
"config": "tailwind.config.ts",
|
8 |
+
"css": "src/index.css",
|
9 |
+
"baseColor": "neutral",
|
10 |
+
"cssVariables": true,
|
11 |
+
"prefix": ""
|
12 |
+
},
|
13 |
+
"aliases": {
|
14 |
+
"components": "~/components",
|
15 |
+
"utils": "~/lib/utils",
|
16 |
+
"ui": "~/components/ui",
|
17 |
+
"lib": "~/lib",
|
18 |
+
"hooks": "~/hooks"
|
19 |
+
}
|
20 |
+
}
|
index.html
CHANGED
@@ -1,10 +1,11 @@
|
|
1 |
<!doctype html>
|
2 |
-
<html lang="en">
|
3 |
<head>
|
4 |
<meta charset="UTF-8" />
|
5 |
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
<title>Vite + React + TS</title>
|
|
|
8 |
</head>
|
9 |
<body>
|
10 |
<div id="root"></div>
|
|
|
1 |
<!doctype html>
|
2 |
+
<html lang="en" class="dark">
|
3 |
<head>
|
4 |
<meta charset="UTF-8" />
|
5 |
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
6 |
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
7 |
<title>Vite + React + TS</title>
|
8 |
+
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
9 |
</head>
|
10 |
<body>
|
11 |
<div id="root"></div>
|
package.json
CHANGED
@@ -12,18 +12,30 @@
|
|
12 |
},
|
13 |
"dependencies": {
|
14 |
"@duckdb/duckdb-wasm": "1.28.1-dev106.0",
|
|
|
|
|
|
|
|
|
|
|
15 |
"react": "^18.3.1",
|
16 |
-
"react-dom": "^18.3.1"
|
|
|
|
|
17 |
},
|
18 |
"devDependencies": {
|
19 |
"@eslint/js": "^9.11.1",
|
|
|
20 |
"@types/react": "^18.3.10",
|
21 |
"@types/react-dom": "^18.3.0",
|
22 |
"@vitejs/plugin-react": "^4.3.2",
|
|
|
23 |
"eslint": "^9.11.1",
|
24 |
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
25 |
"eslint-plugin-react-refresh": "^0.4.12",
|
26 |
"globals": "^15.9.0",
|
|
|
|
|
|
|
27 |
"typescript": "^5.5.3",
|
28 |
"typescript-eslint": "^8.7.0",
|
29 |
"vite": "^5.4.8"
|
|
|
12 |
},
|
13 |
"dependencies": {
|
14 |
"@duckdb/duckdb-wasm": "1.28.1-dev106.0",
|
15 |
+
"@radix-ui/react-slot": "^1.1.0",
|
16 |
+
"@radix-ui/react-tooltip": "^1.1.3",
|
17 |
+
"class-variance-authority": "^0.7.0",
|
18 |
+
"clsx": "^2.1.1",
|
19 |
+
"lucide-react": "^0.447.0",
|
20 |
"react": "^18.3.1",
|
21 |
+
"react-dom": "^18.3.1",
|
22 |
+
"tailwind-merge": "^2.5.3",
|
23 |
+
"tailwindcss-animate": "^1.0.7"
|
24 |
},
|
25 |
"devDependencies": {
|
26 |
"@eslint/js": "^9.11.1",
|
27 |
+
"@types/node": "^22.7.4",
|
28 |
"@types/react": "^18.3.10",
|
29 |
"@types/react-dom": "^18.3.0",
|
30 |
"@vitejs/plugin-react": "^4.3.2",
|
31 |
+
"autoprefixer": "^10.4.20",
|
32 |
"eslint": "^9.11.1",
|
33 |
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
|
34 |
"eslint-plugin-react-refresh": "^0.4.12",
|
35 |
"globals": "^15.9.0",
|
36 |
+
"postcss": "^8.4.47",
|
37 |
+
"tailwindcss": "^3.4.13",
|
38 |
+
"tsx": "^4.19.1",
|
39 |
"typescript": "^5.5.3",
|
40 |
"typescript-eslint": "^8.7.0",
|
41 |
"vite": "^5.4.8"
|
pnpm-lock.yaml
CHANGED
@@ -11,16 +11,40 @@ importers:
|
|
11 |
'@duckdb/duckdb-wasm':
|
12 |
specifier: 1.28.1-dev106.0
|
13 |
version: 1.28.1-dev106.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
react:
|
15 |
specifier: ^18.3.1
|
16 |
version: 18.3.1
|
17 |
react-dom:
|
18 |
specifier: ^18.3.1
|
19 |
version: 18.3.1([email protected])
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
devDependencies:
|
21 |
'@eslint/js':
|
22 |
specifier: ^9.11.1
|
23 |
version: 9.12.0
|
|
|
|
|
|
|
24 |
'@types/react':
|
25 |
specifier: ^18.3.10
|
26 |
version: 18.3.11
|
@@ -29,28 +53,40 @@ importers:
|
|
29 |
version: 18.3.0
|
30 |
'@vitejs/plugin-react':
|
31 |
specifier: ^4.3.2
|
32 |
-
version: 4.3.2([email protected](@types/node@
|
|
|
|
|
|
|
33 |
eslint:
|
34 |
specifier: ^9.11.1
|
35 |
-
version: 9.12.0
|
36 |
eslint-plugin-react-hooks:
|
37 |
specifier: ^5.1.0-rc.0
|
38 |
-
version: 5.1.0-rc-fb9a90fa48-20240614([email protected])
|
39 |
eslint-plugin-react-refresh:
|
40 |
specifier: ^0.4.12
|
41 |
-
version: 0.4.12([email protected])
|
42 |
globals:
|
43 |
specifier: ^15.9.0
|
44 |
version: 15.10.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
45 |
typescript:
|
46 |
specifier: ^5.5.3
|
47 |
version: 5.6.2
|
48 |
typescript-eslint:
|
49 |
specifier: ^8.7.0
|
50 |
-
version: 8.8.0([email protected])([email protected])
|
51 |
vite:
|
52 |
specifier: ^5.4.8
|
53 |
-
version: 5.4.8(@types/node@
|
54 |
|
55 |
packages:
|
56 |
|
@@ -58,6 +94,10 @@ packages:
|
|
58 |
resolution: {integrity: sha512-08K9ou5VNbheZFxM5tDWoqjA3ImC50DiuuJ2tj1yEPRfkp8lLLg6XAaJ4On+a0yAXor/8ay5gHnAIshRM44Kpw==}
|
59 |
engines: {node: '>=12.17'}
|
60 |
|
|
|
|
|
|
|
|
|
61 |
'@ampproject/[email protected]':
|
62 |
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
|
63 |
engines: {node: '>=6.0.0'}
|
@@ -149,6 +189,10 @@ packages:
|
|
149 |
resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==}
|
150 |
engines: {node: '>=6.9.0'}
|
151 |
|
|
|
|
|
|
|
|
|
152 |
'@duckdb/[email protected]':
|
153 |
resolution: {integrity: sha512-HcA9q/Yq1t8nAIg2rl8DmOTjKy1tAHSdBGHlCcWAm5StsfAjcm+f0STBEH3hmWPk0qEtOJF30OR+GfeyUOP+hA==}
|
154 |
|
@@ -158,138 +202,282 @@ packages:
|
|
158 |
cpu: [ppc64]
|
159 |
os: [aix]
|
160 |
|
|
|
|
|
|
|
|
|
|
|
|
|
161 |
'@esbuild/[email protected]':
|
162 |
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
|
163 |
engines: {node: '>=12'}
|
164 |
cpu: [arm64]
|
165 |
os: [android]
|
166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
'@esbuild/[email protected]':
|
168 |
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
|
169 |
engines: {node: '>=12'}
|
170 |
cpu: [arm]
|
171 |
os: [android]
|
172 |
|
|
|
|
|
|
|
|
|
|
|
|
|
173 |
'@esbuild/[email protected]':
|
174 |
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
|
175 |
engines: {node: '>=12'}
|
176 |
cpu: [x64]
|
177 |
os: [android]
|
178 |
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
'@esbuild/[email protected]':
|
180 |
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
|
181 |
engines: {node: '>=12'}
|
182 |
cpu: [arm64]
|
183 |
os: [darwin]
|
184 |
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
'@esbuild/[email protected]':
|
186 |
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
|
187 |
engines: {node: '>=12'}
|
188 |
cpu: [x64]
|
189 |
os: [darwin]
|
190 |
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
'@esbuild/[email protected]':
|
192 |
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
|
193 |
engines: {node: '>=12'}
|
194 |
cpu: [arm64]
|
195 |
os: [freebsd]
|
196 |
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
'@esbuild/[email protected]':
|
198 |
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
|
199 |
engines: {node: '>=12'}
|
200 |
cpu: [x64]
|
201 |
os: [freebsd]
|
202 |
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
'@esbuild/[email protected]':
|
204 |
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
|
205 |
engines: {node: '>=12'}
|
206 |
cpu: [arm64]
|
207 |
os: [linux]
|
208 |
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
'@esbuild/[email protected]':
|
210 |
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
|
211 |
engines: {node: '>=12'}
|
212 |
cpu: [arm]
|
213 |
os: [linux]
|
214 |
|
|
|
|
|
|
|
|
|
|
|
|
|
215 |
'@esbuild/[email protected]':
|
216 |
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
|
217 |
engines: {node: '>=12'}
|
218 |
cpu: [ia32]
|
219 |
os: [linux]
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
'@esbuild/[email protected]':
|
222 |
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
|
223 |
engines: {node: '>=12'}
|
224 |
cpu: [loong64]
|
225 |
os: [linux]
|
226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
'@esbuild/[email protected]':
|
228 |
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
|
229 |
engines: {node: '>=12'}
|
230 |
cpu: [mips64el]
|
231 |
os: [linux]
|
232 |
|
|
|
|
|
|
|
|
|
|
|
|
|
233 |
'@esbuild/[email protected]':
|
234 |
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
|
235 |
engines: {node: '>=12'}
|
236 |
cpu: [ppc64]
|
237 |
os: [linux]
|
238 |
|
|
|
|
|
|
|
|
|
|
|
|
|
239 |
'@esbuild/[email protected]':
|
240 |
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
|
241 |
engines: {node: '>=12'}
|
242 |
cpu: [riscv64]
|
243 |
os: [linux]
|
244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
'@esbuild/[email protected]':
|
246 |
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
|
247 |
engines: {node: '>=12'}
|
248 |
cpu: [s390x]
|
249 |
os: [linux]
|
250 |
|
|
|
|
|
|
|
|
|
|
|
|
|
251 |
'@esbuild/[email protected]':
|
252 |
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
|
253 |
engines: {node: '>=12'}
|
254 |
cpu: [x64]
|
255 |
os: [linux]
|
256 |
|
|
|
|
|
|
|
|
|
|
|
|
|
257 |
'@esbuild/[email protected]':
|
258 |
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
|
259 |
engines: {node: '>=12'}
|
260 |
cpu: [x64]
|
261 |
os: [netbsd]
|
262 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
263 |
'@esbuild/[email protected]':
|
264 |
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
|
265 |
engines: {node: '>=12'}
|
266 |
cpu: [x64]
|
267 |
os: [openbsd]
|
268 |
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
'@esbuild/[email protected]':
|
270 |
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
|
271 |
engines: {node: '>=12'}
|
272 |
cpu: [x64]
|
273 |
os: [sunos]
|
274 |
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
'@esbuild/[email protected]':
|
276 |
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
|
277 |
engines: {node: '>=12'}
|
278 |
cpu: [arm64]
|
279 |
os: [win32]
|
280 |
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
'@esbuild/[email protected]':
|
282 |
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
|
283 |
engines: {node: '>=12'}
|
284 |
cpu: [ia32]
|
285 |
os: [win32]
|
286 |
|
|
|
|
|
|
|
|
|
|
|
|
|
287 |
'@esbuild/[email protected]':
|
288 |
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
|
289 |
engines: {node: '>=12'}
|
290 |
cpu: [x64]
|
291 |
os: [win32]
|
292 |
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
'@eslint-community/[email protected]':
|
294 |
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
|
295 |
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
@@ -324,6 +512,21 @@ packages:
|
|
324 |
resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==}
|
325 |
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
326 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
327 |
'@humanfs/[email protected]':
|
328 |
resolution: {integrity: sha512-2cbWIHbZVEweE853g8jymffCA+NCMiuqeECeBBLm8dg2oFdjuGJhgN4UAbI+6v0CKbbhvtXA4qV8YR5Ji86nmw==}
|
329 |
engines: {node: '>=18.18.0'}
|
@@ -340,6 +543,10 @@ packages:
|
|
340 |
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
|
341 |
engines: {node: '>=18.18'}
|
342 |
|
|
|
|
|
|
|
|
|
343 |
'@jridgewell/[email protected]':
|
344 |
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
|
345 |
engines: {node: '>=6.0.0'}
|
@@ -358,6 +565,9 @@ packages:
|
|
358 |
'@jridgewell/[email protected]':
|
359 |
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
360 |
|
|
|
|
|
|
|
361 |
'@nodelib/[email protected]':
|
362 |
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
363 |
engines: {node: '>= 8'}
|
@@ -370,6 +580,219 @@ packages:
|
|
370 |
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
371 |
engines: {node: '>= 8'}
|
372 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
'@rollup/[email protected]':
|
374 |
resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==}
|
375 |
cpu: [arm]
|
@@ -450,6 +873,18 @@ packages:
|
|
450 |
cpu: [x64]
|
451 |
os: [win32]
|
452 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
453 |
'@types/[email protected]':
|
454 |
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
|
455 |
|
@@ -477,6 +912,9 @@ packages:
|
|
477 |
'@types/[email protected]':
|
478 |
resolution: {integrity: sha512-cumHmIAf6On83X7yP+LrsEyUOf/YlociZelmpRYaGFydoaPdxdt80MAbu6vWerQT2COCp2nPvHdsbD7tHn/YlQ==}
|
479 |
|
|
|
|
|
|
|
480 |
'@types/[email protected]':
|
481 |
resolution: {integrity: sha512-Xd22WCRBydkGSApl5Bw0PhAOHKSVjNL3E3AwzKaps96IMraPqy5BvZIsBVK6JLwdybUzjHnuWVwpDd0JjTfHXA==}
|
482 |
|
@@ -557,6 +995,10 @@ packages:
|
|
557 |
peerDependencies:
|
558 |
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
559 |
|
|
|
|
|
|
|
|
|
560 | |
561 |
resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
|
562 |
engines: {node: '>=0.4.0'}
|
@@ -565,6 +1007,14 @@ packages:
|
|
565 | |
566 |
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
567 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
568 | |
569 |
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
|
570 |
engines: {node: '>=4'}
|
@@ -573,10 +1023,27 @@ packages:
|
|
573 |
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
574 |
engines: {node: '>=8'}
|
575 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
576 | |
577 |
resolution: {integrity: sha512-EBO2xJN36/XoY81nhLcwCJgFwkboDZeyNQ+OPsG7bCoQjc2BT0aTyH/MR6SrL+LirSNz+cYqjGRlupMMlP1aEg==}
|
578 |
hasBin: true
|
579 |
|
|
|
|
|
|
|
|
|
|
|
|
|
580 | |
581 |
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
582 |
|
@@ -588,9 +1055,20 @@ packages:
|
|
588 |
resolution: {integrity: sha512-gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw==}
|
589 |
engines: {node: '>=12.17'}
|
590 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
591 | |
592 |
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
593 |
|
|
|
|
|
|
|
|
|
594 | |
595 |
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
596 |
|
@@ -610,6 +1088,10 @@ packages:
|
|
610 |
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
611 |
engines: {node: '>=6'}
|
612 |
|
|
|
|
|
|
|
|
|
613 | |
614 |
resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==}
|
615 |
|
@@ -625,6 +1107,21 @@ packages:
|
|
625 |
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
626 |
engines: {node: '>=10'}
|
627 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
628 | |
629 |
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
|
630 |
|
@@ -646,16 +1143,28 @@ packages:
|
|
646 |
resolution: {integrity: sha512-NCyznE//MuTjwi3y84QVUGEOT+P5oto1e1Pk/jFPVdPPfsG03qpTIl3yw6etR+v73d0lXsoojRpvbru2sqePxQ==}
|
647 |
engines: {node: '>=12.20.0'}
|
648 |
|
|
|
|
|
|
|
|
|
649 | |
650 |
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
651 |
|
652 | |
653 |
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
654 |
|
|
|
|
|
|
|
655 | |
656 |
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
|
657 |
engines: {node: '>= 8'}
|
658 |
|
|
|
|
|
|
|
|
|
|
|
659 | |
660 |
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
|
661 |
|
@@ -671,14 +1180,38 @@ packages:
|
|
671 | |
672 |
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
673 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 | |
675 |
resolution: {integrity: sha512-M+7ph0VGBQqqpTT2YrabjNKSQ2fEl9PVx6AK3N558gDH9NO8O6XN9SXXFWRo9u9PbEg/bWq+tjXQr+eXmxubCw==}
|
676 |
|
|
|
|
|
|
|
|
|
|
|
|
|
677 | |
678 |
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
|
679 |
engines: {node: '>=12'}
|
680 |
hasBin: true
|
681 |
|
|
|
|
|
|
|
|
|
|
|
682 | |
683 |
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
684 |
engines: {node: '>=6'}
|
@@ -786,15 +1319,28 @@ packages:
|
|
786 | |
787 |
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
|
788 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
789 | |
790 |
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
791 |
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
792 |
os: [darwin]
|
793 |
|
|
|
|
|
|
|
794 | |
795 |
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
796 |
engines: {node: '>=6.9.0'}
|
797 |
|
|
|
|
|
|
|
798 | |
799 |
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
800 |
engines: {node: '>= 6'}
|
@@ -803,6 +1349,10 @@ packages:
|
|
803 |
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
804 |
engines: {node: '>=10.13.0'}
|
805 |
|
|
|
|
|
|
|
|
|
806 | |
807 |
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
|
808 |
engines: {node: '>=4'}
|
@@ -826,6 +1376,10 @@ packages:
|
|
826 |
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
827 |
engines: {node: '>=8'}
|
828 |
|
|
|
|
|
|
|
|
|
829 | |
830 |
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
831 |
engines: {node: '>= 4'}
|
@@ -838,10 +1392,22 @@ packages:
|
|
838 |
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
839 |
engines: {node: '>=0.8.19'}
|
840 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
841 | |
842 |
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
843 |
engines: {node: '>=0.10.0'}
|
844 |
|
|
|
|
|
|
|
|
|
845 | |
846 |
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
847 |
engines: {node: '>=0.10.0'}
|
@@ -853,6 +1419,13 @@ packages:
|
|
853 | |
854 |
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
855 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
856 | |
857 |
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
858 |
|
@@ -890,6 +1463,17 @@ packages:
|
|
890 |
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
891 |
engines: {node: '>= 0.8.0'}
|
892 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
893 | |
894 |
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
895 |
engines: {node: '>=10'}
|
@@ -907,9 +1491,20 @@ packages:
|
|
907 |
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
908 |
hasBin: true
|
909 |
|
|
|
|
|
|
|
910 | |
911 |
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
912 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
913 | |
914 |
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
915 |
engines: {node: '>= 8'}
|
@@ -925,9 +1520,16 @@ packages:
|
|
925 |
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
|
926 |
engines: {node: '>=16 || 14 >=14.17'}
|
927 |
|
|
|
|
|
|
|
|
|
928 | |
929 |
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
930 |
|
|
|
|
|
|
|
931 | |
932 |
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
|
933 |
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
@@ -939,6 +1541,22 @@ packages:
|
|
939 | |
940 |
resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
|
941 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
942 | |
943 |
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
944 |
engines: {node: '>= 0.8.0'}
|
@@ -951,6 +1569,9 @@ packages:
|
|
951 |
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
952 |
engines: {node: '>=10'}
|
953 |
|
|
|
|
|
|
|
954 | |
955 |
resolution: {integrity: sha512-HJxs9K9AztdIQIAIa/OIazRAUW/L6B9hbQDxO4X07roW3eo9XqZc2ur9bn1StH9CnbbI9EgvejHQX7CBpCF1QA==}
|
956 |
engines: {node: '>=0.10.0'}
|
@@ -967,6 +1588,13 @@ packages:
|
|
967 |
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
968 |
engines: {node: '>=8'}
|
969 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
970 | |
971 |
resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
|
972 |
|
@@ -974,6 +1602,51 @@ packages:
|
|
974 |
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
975 |
engines: {node: '>=8.6'}
|
976 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
977 | |
978 |
resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
|
979 |
engines: {node: ^10 || ^12 || >=14}
|
@@ -1002,6 +1675,13 @@ packages:
|
|
1002 |
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
|
1003 |
engines: {node: '>=0.10.0'}
|
1004 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1005 | |
1006 |
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
|
1007 |
engines: {node: '>=0.10'}
|
@@ -1010,6 +1690,13 @@ packages:
|
|
1010 |
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
1011 |
engines: {node: '>=4'}
|
1012 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1013 | |
1014 |
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
|
1015 |
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
@@ -1042,6 +1729,10 @@ packages:
|
|
1042 |
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
1043 |
engines: {node: '>=8'}
|
1044 |
|
|
|
|
|
|
|
|
|
1045 | |
1046 |
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
1047 |
engines: {node: '>=0.10.0'}
|
@@ -1050,10 +1741,31 @@ packages:
|
|
1050 |
resolution: {integrity: sha512-EWZT9XOceBPlVJRrYcykW8jyRSZYbkb/0ZK36uLEmoWVO5gxBOnntNTseNzfREsqxqdfEGQrD8SXQ3QWbBmq8A==}
|
1051 |
engines: {node: '>=10'}
|
1052 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1053 | |
1054 |
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
1055 |
engines: {node: '>=8'}
|
1056 |
|
|
|
|
|
|
|
|
|
|
|
1057 | |
1058 |
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
|
1059 |
engines: {node: '>=4'}
|
@@ -1062,14 +1774,38 @@ packages:
|
|
1062 |
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
1063 |
engines: {node: '>=8'}
|
1064 |
|
|
|
|
|
|
|
|
|
1065 | |
1066 |
resolution: {integrity: sha512-rpyNZYRw+/C+dYkcQ3Pr+rLxW4CfHpXjPDnG7lYhdRoUcZTUt+KEsX+94RGp/aVp/MQU35JCITv2T/beY4m+hw==}
|
1067 |
engines: {node: '>=12.17'}
|
1068 |
hasBin: true
|
1069 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1070 | |
1071 |
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
|
1072 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1073 | |
1074 |
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
|
1075 |
engines: {node: '>=4'}
|
@@ -1084,9 +1820,31 @@ packages:
|
|
1084 |
peerDependencies:
|
1085 |
typescript: '>=4.2.0'
|
1086 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1087 | |
1088 |
resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
|
1089 |
|
|
|
|
|
|
|
|
|
|
|
1090 | |
1091 |
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
1092 |
engines: {node: '>= 0.8.0'}
|
@@ -1113,6 +1871,9 @@ packages:
|
|
1113 |
resolution: {integrity: sha512-W1+HdVRUl8fS3MZ9ogD51GOb46xMmhAZzR0WPw5jcgIZQJVvkddYzAl4YTU6g5w33Y1iRQLdIi2/1jhi2RNL0g==}
|
1114 |
engines: {node: '>=12.17'}
|
1115 |
|
|
|
|
|
|
|
1116 | |
1117 |
resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
|
1118 |
hasBin: true
|
@@ -1122,6 +1883,12 @@ packages:
|
|
1122 | |
1123 |
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
1124 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1125 | |
1126 |
resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==}
|
1127 |
engines: {node: ^18.0.0 || >=20.0.0}
|
@@ -1166,9 +1933,26 @@ packages:
|
|
1166 |
resolution: {integrity: sha512-JNjcULU2e4KJwUNv6CHgI46UvDGitb6dGryHajXTDiLgg1/RiGoPSDw4kZfYnwGtEXf2ZMeIewDQgFGzkCB2Sg==}
|
1167 |
engines: {node: '>=12.17'}
|
1168 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1169 | |
1170 |
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
1171 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1172 | |
1173 |
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
1174 |
engines: {node: '>=10'}
|
@@ -1180,6 +1964,8 @@ snapshots:
|
|
1180 |
lodash: 4.17.21
|
1181 |
typical: 7.2.0
|
1182 |
|
|
|
|
|
1183 |
'@ampproject/[email protected]':
|
1184 |
dependencies:
|
1185 |
'@jridgewell/gen-mapping': 0.3.5
|
@@ -1309,6 +2095,11 @@ snapshots:
|
|
1309 |
'@babel/helper-validator-identifier': 7.25.7
|
1310 |
to-fast-properties: 2.0.0
|
1311 |
|
|
|
|
|
|
|
|
|
|
|
1312 |
'@duckdb/[email protected]':
|
1313 |
dependencies:
|
1314 |
apache-arrow: 14.0.2
|
@@ -1316,75 +2107,147 @@ snapshots:
|
|
1316 |
'@esbuild/[email protected]':
|
1317 |
optional: true
|
1318 |
|
|
|
|
|
|
|
1319 |
'@esbuild/[email protected]':
|
1320 |
optional: true
|
1321 |
|
|
|
|
|
|
|
1322 |
'@esbuild/[email protected]':
|
1323 |
optional: true
|
1324 |
|
|
|
|
|
|
|
1325 |
'@esbuild/[email protected]':
|
1326 |
optional: true
|
1327 |
|
|
|
|
|
|
|
1328 |
'@esbuild/[email protected]':
|
1329 |
optional: true
|
1330 |
|
|
|
|
|
|
|
1331 |
'@esbuild/[email protected]':
|
1332 |
optional: true
|
1333 |
|
|
|
|
|
|
|
1334 |
'@esbuild/[email protected]':
|
1335 |
optional: true
|
1336 |
|
|
|
|
|
|
|
1337 |
'@esbuild/[email protected]':
|
1338 |
optional: true
|
1339 |
|
|
|
|
|
|
|
1340 |
'@esbuild/[email protected]':
|
1341 |
optional: true
|
1342 |
|
|
|
|
|
|
|
1343 |
'@esbuild/[email protected]':
|
1344 |
optional: true
|
1345 |
|
|
|
|
|
|
|
1346 |
'@esbuild/[email protected]':
|
1347 |
optional: true
|
1348 |
|
|
|
|
|
|
|
1349 |
'@esbuild/[email protected]':
|
1350 |
optional: true
|
1351 |
|
|
|
|
|
|
|
1352 |
'@esbuild/[email protected]':
|
1353 |
optional: true
|
1354 |
|
|
|
|
|
|
|
1355 |
'@esbuild/[email protected]':
|
1356 |
optional: true
|
1357 |
|
|
|
|
|
|
|
1358 |
'@esbuild/[email protected]':
|
1359 |
optional: true
|
1360 |
|
|
|
|
|
|
|
1361 |
'@esbuild/[email protected]':
|
1362 |
optional: true
|
1363 |
|
|
|
|
|
|
|
1364 |
'@esbuild/[email protected]':
|
1365 |
optional: true
|
1366 |
|
|
|
|
|
|
|
1367 |
'@esbuild/[email protected]':
|
1368 |
optional: true
|
1369 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1370 |
'@esbuild/[email protected]':
|
1371 |
optional: true
|
1372 |
|
|
|
|
|
|
|
1373 |
'@esbuild/[email protected]':
|
1374 |
optional: true
|
1375 |
|
|
|
|
|
|
|
1376 |
'@esbuild/[email protected]':
|
1377 |
optional: true
|
1378 |
|
|
|
|
|
|
|
1379 |
'@esbuild/[email protected]':
|
1380 |
optional: true
|
1381 |
|
|
|
|
|
|
|
1382 |
'@esbuild/[email protected]':
|
1383 |
optional: true
|
1384 |
|
1385 |
-
'@
|
|
|
|
|
|
|
1386 |
dependencies:
|
1387 |
-
eslint: 9.12.0
|
1388 |
eslint-visitor-keys: 3.4.3
|
1389 |
|
1390 |
'@eslint-community/[email protected]': {}
|
@@ -1413,53 +2276,262 @@ snapshots:
|
|
1413 |
transitivePeerDependencies:
|
1414 |
- supports-color
|
1415 |
|
1416 |
-
'@eslint/[email protected]': {}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1417 |
|
1418 |
-
'@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1419 |
|
1420 |
-
'@
|
1421 |
dependencies:
|
1422 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1423 |
|
1424 |
-
'@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1425 |
|
1426 |
-
'@
|
1427 |
dependencies:
|
1428 |
-
'@
|
1429 |
-
|
|
|
|
|
|
|
|
|
1430 |
|
1431 |
-
'@
|
|
|
|
|
|
|
|
|
|
|
1432 |
|
1433 |
-
'@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1434 |
|
1435 |
-
'@
|
1436 |
dependencies:
|
1437 |
-
|
1438 |
-
|
1439 |
-
'@
|
1440 |
-
|
1441 |
-
'@jridgewell/[email protected]': {}
|
1442 |
|
1443 |
-
'@
|
|
|
|
|
|
|
|
|
|
|
1444 |
|
1445 |
-
'@
|
|
|
|
|
|
|
|
|
|
|
1446 |
|
1447 |
-
'@
|
1448 |
dependencies:
|
1449 |
-
|
1450 |
-
|
|
|
1451 |
|
1452 |
-
'@
|
1453 |
dependencies:
|
1454 |
-
'@
|
1455 |
-
|
|
|
|
|
1456 |
|
1457 |
-
'@
|
|
|
|
|
|
|
|
|
|
|
1458 |
|
1459 |
-
'@
|
1460 |
dependencies:
|
1461 |
-
'@
|
1462 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1463 |
|
1464 |
'@rollup/[email protected]':
|
1465 |
optional: true
|
@@ -1509,6 +2581,18 @@ snapshots:
|
|
1509 |
'@rollup/[email protected]':
|
1510 |
optional: true
|
1511 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1512 |
'@types/[email protected]':
|
1513 |
dependencies:
|
1514 |
'@babel/parser': 7.25.7
|
@@ -1540,6 +2624,10 @@ snapshots:
|
|
1540 |
|
1541 |
'@types/[email protected]': {}
|
1542 |
|
|
|
|
|
|
|
|
|
1543 |
'@types/[email protected]': {}
|
1544 |
|
1545 |
'@types/[email protected]': {}
|
@@ -1553,15 +2641,15 @@ snapshots:
|
|
1553 |
'@types/prop-types': 15.7.13
|
1554 |
csstype: 3.1.3
|
1555 |
|
1556 |
-
'@typescript-eslint/[email protected](@typescript-eslint/[email protected]([email protected])([email protected]))([email protected])([email protected])':
|
1557 |
dependencies:
|
1558 |
'@eslint-community/regexpp': 4.11.1
|
1559 |
-
'@typescript-eslint/parser': 8.8.0([email protected])([email protected])
|
1560 |
'@typescript-eslint/scope-manager': 8.8.0
|
1561 |
-
'@typescript-eslint/type-utils': 8.8.0([email protected])([email protected])
|
1562 |
-
'@typescript-eslint/utils': 8.8.0([email protected])([email protected])
|
1563 |
'@typescript-eslint/visitor-keys': 8.8.0
|
1564 |
-
eslint: 9.12.0
|
1565 |
graphemer: 1.4.0
|
1566 |
ignore: 5.3.2
|
1567 |
natural-compare: 1.4.0
|
@@ -1571,14 +2659,14 @@ snapshots:
|
|
1571 |
transitivePeerDependencies:
|
1572 |
- supports-color
|
1573 |
|
1574 |
-
'@typescript-eslint/[email protected]([email protected])([email protected])':
|
1575 |
dependencies:
|
1576 |
'@typescript-eslint/scope-manager': 8.8.0
|
1577 |
'@typescript-eslint/types': 8.8.0
|
1578 |
'@typescript-eslint/typescript-estree': 8.8.0([email protected])
|
1579 |
'@typescript-eslint/visitor-keys': 8.8.0
|
1580 |
debug: 4.3.7
|
1581 |
-
eslint: 9.12.0
|
1582 |
optionalDependencies:
|
1583 |
typescript: 5.6.2
|
1584 |
transitivePeerDependencies:
|
@@ -1589,10 +2677,10 @@ snapshots:
|
|
1589 |
'@typescript-eslint/types': 8.8.0
|
1590 |
'@typescript-eslint/visitor-keys': 8.8.0
|
1591 |
|
1592 |
-
'@typescript-eslint/[email protected]([email protected])([email protected])':
|
1593 |
dependencies:
|
1594 |
'@typescript-eslint/typescript-estree': 8.8.0([email protected])
|
1595 |
-
'@typescript-eslint/utils': 8.8.0([email protected])([email protected])
|
1596 |
debug: 4.3.7
|
1597 |
ts-api-utils: 1.3.0([email protected])
|
1598 |
optionalDependencies:
|
@@ -1618,13 +2706,13 @@ snapshots:
|
|
1618 |
transitivePeerDependencies:
|
1619 |
- supports-color
|
1620 |
|
1621 |
-
'@typescript-eslint/[email protected]([email protected])([email protected])':
|
1622 |
dependencies:
|
1623 |
-
'@eslint-community/eslint-utils': 4.4.0([email protected])
|
1624 |
'@typescript-eslint/scope-manager': 8.8.0
|
1625 |
'@typescript-eslint/types': 8.8.0
|
1626 |
'@typescript-eslint/typescript-estree': 8.8.0([email protected])
|
1627 |
-
eslint: 9.12.0
|
1628 |
transitivePeerDependencies:
|
1629 |
- supports-color
|
1630 |
- typescript
|
@@ -1634,14 +2722,14 @@ snapshots:
|
|
1634 |
'@typescript-eslint/types': 8.8.0
|
1635 |
eslint-visitor-keys: 3.4.3
|
1636 |
|
1637 |
-
'@vitejs/[email protected]([email protected](@types/node@
|
1638 |
dependencies:
|
1639 |
'@babel/core': 7.25.7
|
1640 |
'@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/[email protected])
|
1641 |
'@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/[email protected])
|
1642 |
'@types/babel__core': 7.20.5
|
1643 |
react-refresh: 0.14.2
|
1644 |
-
vite: 5.4.8(@types/node@
|
1645 |
transitivePeerDependencies:
|
1646 |
- supports-color
|
1647 |
|
@@ -1649,6 +2737,11 @@ snapshots:
|
|
1649 |
dependencies:
|
1650 |
acorn: 8.12.1
|
1651 |
|
|
|
|
|
|
|
|
|
|
|
1652 | |
1653 |
|
1654 | |
@@ -1658,6 +2751,10 @@ snapshots:
|
|
1658 |
json-schema-traverse: 0.4.1
|
1659 |
uri-js: 4.4.1
|
1660 |
|
|
|
|
|
|
|
|
|
1661 | |
1662 |
dependencies:
|
1663 |
color-convert: 1.9.3
|
@@ -1666,6 +2763,15 @@ snapshots:
|
|
1666 |
dependencies:
|
1667 |
color-convert: 2.0.1
|
1668 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1669 | |
1670 |
dependencies:
|
1671 |
'@types/command-line-args': 5.2.0
|
@@ -1679,14 +2785,31 @@ snapshots:
|
|
1679 |
pad-left: 2.1.0
|
1680 |
tslib: 2.7.0
|
1681 |
|
|
|
|
|
|
|
|
|
|
|
1682 | |
1683 |
|
1684 | |
1685 |
|
1686 | |
1687 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1688 | |
1689 |
|
|
|
|
|
1690 | |
1691 |
dependencies:
|
1692 |
balanced-match: 1.0.2
|
@@ -1709,6 +2832,8 @@ snapshots:
|
|
1709 |
|
1710 | |
1711 |
|
|
|
|
|
1712 | |
1713 |
|
1714 | |
@@ -1726,6 +2851,26 @@ snapshots:
|
|
1726 |
ansi-styles: 4.3.0
|
1727 |
supports-color: 7.2.0
|
1728 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1729 | |
1730 |
dependencies:
|
1731 |
color-name: 1.1.3
|
@@ -1752,16 +2897,23 @@ snapshots:
|
|
1752 |
table-layout: 3.0.2
|
1753 |
typical: 7.2.0
|
1754 |
|
|
|
|
|
1755 | |
1756 |
|
1757 | |
1758 |
|
|
|
|
|
|
|
1759 | |
1760 |
dependencies:
|
1761 |
path-key: 3.1.1
|
1762 |
shebang-command: 2.0.0
|
1763 |
which: 2.0.2
|
1764 |
|
|
|
|
|
1765 | |
1766 |
|
1767 | |
@@ -1770,8 +2922,21 @@ snapshots:
|
|
1770 |
|
1771 | |
1772 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1773 | |
1774 |
|
|
|
|
|
|
|
|
|
1775 | |
1776 |
optionalDependencies:
|
1777 |
'@esbuild/aix-ppc64': 0.21.5
|
@@ -1798,19 +2963,46 @@ snapshots:
|
|
1798 |
'@esbuild/win32-ia32': 0.21.5
|
1799 |
'@esbuild/win32-x64': 0.21.5
|
1800 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1801 | |
1802 |
|
1803 | |
1804 |
|
1805 | |
1806 |
|
1807 | |
1808 |
dependencies:
|
1809 |
-
eslint: 9.12.0
|
1810 |
|
1811 | |
1812 |
dependencies:
|
1813 |
-
eslint: 9.12.0
|
1814 |
|
1815 | |
1816 |
dependencies:
|
@@ -1821,9 +3013,9 @@ snapshots:
|
|
1821 |
|
1822 | |
1823 |
|
1824 | |
1825 |
dependencies:
|
1826 |
-
'@eslint-community/eslint-utils': 4.4.0([email protected])
|
1827 |
'@eslint-community/regexpp': 4.11.1
|
1828 |
'@eslint/config-array': 0.18.0
|
1829 |
'@eslint/core': 0.6.0
|
@@ -1858,6 +3050,8 @@ snapshots:
|
|
1858 |
natural-compare: 1.4.0
|
1859 |
optionator: 0.9.4
|
1860 |
text-table: 0.2.0
|
|
|
|
|
1861 |
transitivePeerDependencies:
|
1862 |
- supports-color
|
1863 |
|
@@ -1923,11 +3117,24 @@ snapshots:
|
|
1923 |
|
1924 | |
1925 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1926 | |
1927 |
optional: true
|
1928 |
|
|
|
|
|
1929 | |
1930 |
|
|
|
|
|
|
|
|
|
1931 | |
1932 |
dependencies:
|
1933 |
is-glob: 4.0.3
|
@@ -1936,6 +3143,15 @@ snapshots:
|
|
1936 |
dependencies:
|
1937 |
is-glob: 4.0.3
|
1938 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1939 | |
1940 |
|
1941 | |
@@ -1948,6 +3164,10 @@ snapshots:
|
|
1948 |
|
1949 | |
1950 |
|
|
|
|
|
|
|
|
|
1951 | |
1952 |
|
1953 | |
@@ -1957,8 +3177,18 @@ snapshots:
|
|
1957 |
|
1958 | |
1959 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1960 | |
1961 |
|
|
|
|
|
1962 | |
1963 |
dependencies:
|
1964 |
is-extglob: 2.1.1
|
@@ -1967,6 +3197,14 @@ snapshots:
|
|
1967 |
|
1968 | |
1969 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1970 | |
1971 |
|
1972 | |
@@ -1994,6 +3232,12 @@ snapshots:
|
|
1994 |
prelude-ls: 1.2.1
|
1995 |
type-check: 0.4.0
|
1996 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1997 | |
1998 |
dependencies:
|
1999 |
p-locate: 5.0.0
|
@@ -2008,10 +3252,19 @@ snapshots:
|
|
2008 |
dependencies:
|
2009 |
js-tokens: 4.0.0
|
2010 |
|
|
|
|
|
2011 | |
2012 |
dependencies:
|
2013 |
yallist: 3.1.1
|
2014 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015 | |
2016 |
|
2017 | |
@@ -2027,14 +3280,30 @@ snapshots:
|
|
2027 |
dependencies:
|
2028 |
brace-expansion: 2.0.1
|
2029 |
|
|
|
|
|
2030 | |
2031 |
|
|
|
|
|
|
|
|
|
|
|
|
|
2032 | |
2033 |
|
2034 | |
2035 |
|
2036 | |
2037 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2038 | |
2039 |
dependencies:
|
2040 |
deep-is: 0.1.4
|
@@ -2052,6 +3321,8 @@ snapshots:
|
|
2052 |
dependencies:
|
2053 |
p-limit: 3.1.0
|
2054 |
|
|
|
|
|
2055 | |
2056 |
dependencies:
|
2057 |
repeat-string: 1.6.1
|
@@ -2064,10 +3335,53 @@ snapshots:
|
|
2064 |
|
2065 | |
2066 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2067 | |
2068 |
|
2069 | |
2070 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2071 | |
2072 |
dependencies:
|
2073 |
nanoid: 3.3.7
|
@@ -2092,10 +3406,26 @@ snapshots:
|
|
2092 |
dependencies:
|
2093 |
loose-envify: 1.4.0
|
2094 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2095 | |
2096 |
|
2097 | |
2098 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2099 | |
2100 |
|
2101 | |
@@ -2138,12 +3468,44 @@ snapshots:
|
|
2138 |
|
2139 | |
2140 |
|
|
|
|
|
2141 | |
2142 |
|
2143 | |
2144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2145 | |
2146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2147 | |
2148 |
dependencies:
|
2149 |
has-flag: 3.0.0
|
@@ -2152,6 +3514,8 @@ snapshots:
|
|
2152 |
dependencies:
|
2153 |
has-flag: 4.0.0
|
2154 |
|
|
|
|
|
2155 | |
2156 |
dependencies:
|
2157 |
'@75lb/deep-merge': 1.1.2
|
@@ -2162,8 +3526,49 @@ snapshots:
|
|
2162 |
typical: 7.2.0
|
2163 |
wordwrapjs: 5.1.0
|
2164 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2165 | |
2166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2167 | |
2168 |
|
2169 | |
@@ -2174,17 +3579,45 @@ snapshots:
|
|
2174 |
dependencies:
|
2175 |
typescript: 5.6.2
|
2176 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2177 | |
2178 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2179 | |
2180 |
dependencies:
|
2181 |
prelude-ls: 1.2.1
|
2182 |
|
2183 | |
2184 |
dependencies:
|
2185 |
-
'@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/[email protected]([email protected])([email protected]))([email protected])([email protected])
|
2186 |
-
'@typescript-eslint/parser': 8.8.0([email protected])([email protected])
|
2187 |
-
'@typescript-eslint/utils': 8.8.0([email protected])([email protected])
|
2188 |
optionalDependencies:
|
2189 |
typescript: 5.6.2
|
2190 |
transitivePeerDependencies:
|
@@ -2197,6 +3630,8 @@ snapshots:
|
|
2197 |
|
2198 | |
2199 |
|
|
|
|
|
2200 | |
2201 |
dependencies:
|
2202 |
browserslist: 4.24.0
|
@@ -2207,13 +3642,18 @@ snapshots:
|
|
2207 |
dependencies:
|
2208 |
punycode: 2.3.1
|
2209 |
|
2210 |
-
|
|
|
|
|
|
|
|
|
|
|
2211 |
dependencies:
|
2212 |
esbuild: 0.21.5
|
2213 |
postcss: 8.4.47
|
2214 |
rollup: 4.24.0
|
2215 |
optionalDependencies:
|
2216 |
-
'@types/node':
|
2217 |
fsevents: 2.3.3
|
2218 |
|
2219 | |
@@ -2224,6 +3664,23 @@ snapshots:
|
|
2224 |
|
2225 | |
2226 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2227 | |
2228 |
|
|
|
|
|
|
|
|
|
|
|
2229 |
|
|
11 |
'@duckdb/duckdb-wasm':
|
12 |
specifier: 1.28.1-dev106.0
|
13 |
version: 1.28.1-dev106.0
|
14 |
+
'@radix-ui/react-slot':
|
15 |
+
specifier: ^1.1.0
|
16 |
+
version: 1.1.0(@types/[email protected])([email protected])
|
17 |
+
'@radix-ui/react-tooltip':
|
18 |
+
specifier: ^1.1.3
|
19 |
+
version: 1.1.3(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
20 |
+
class-variance-authority:
|
21 |
+
specifier: ^0.7.0
|
22 |
+
version: 0.7.0
|
23 |
+
clsx:
|
24 |
+
specifier: ^2.1.1
|
25 |
+
version: 2.1.1
|
26 |
+
lucide-react:
|
27 |
+
specifier: ^0.447.0
|
28 |
+
version: 0.447.0([email protected])
|
29 |
react:
|
30 |
specifier: ^18.3.1
|
31 |
version: 18.3.1
|
32 |
react-dom:
|
33 |
specifier: ^18.3.1
|
34 |
version: 18.3.1([email protected])
|
35 |
+
tailwind-merge:
|
36 |
+
specifier: ^2.5.3
|
37 |
+
version: 2.5.3
|
38 |
+
tailwindcss-animate:
|
39 |
+
specifier: ^1.0.7
|
40 |
+
version: 1.0.7([email protected]([email protected](@types/[email protected])([email protected])))
|
41 |
devDependencies:
|
42 |
'@eslint/js':
|
43 |
specifier: ^9.11.1
|
44 |
version: 9.12.0
|
45 |
+
'@types/node':
|
46 |
+
specifier: ^22.7.4
|
47 |
+
version: 22.7.4
|
48 |
'@types/react':
|
49 |
specifier: ^18.3.10
|
50 |
version: 18.3.11
|
|
|
53 |
version: 18.3.0
|
54 |
'@vitejs/plugin-react':
|
55 |
specifier: ^4.3.2
|
56 |
+
version: 4.3.2([email protected](@types/node@22.7.4))
|
57 |
+
autoprefixer:
|
58 |
+
specifier: ^10.4.20
|
59 |
+
version: 10.4.20([email protected])
|
60 |
eslint:
|
61 |
specifier: ^9.11.1
|
62 |
+
version: 9.12.0([email protected])
|
63 |
eslint-plugin-react-hooks:
|
64 |
specifier: ^5.1.0-rc.0
|
65 |
+
version: 5.1.0-rc-fb9a90fa48-20240614([email protected]([email protected]))
|
66 |
eslint-plugin-react-refresh:
|
67 |
specifier: ^0.4.12
|
68 |
+
version: 0.4.12([email protected]([email protected]))
|
69 |
globals:
|
70 |
specifier: ^15.9.0
|
71 |
version: 15.10.0
|
72 |
+
postcss:
|
73 |
+
specifier: ^8.4.47
|
74 |
+
version: 8.4.47
|
75 |
+
tailwindcss:
|
76 |
+
specifier: ^3.4.13
|
77 |
+
version: 3.4.13([email protected](@types/[email protected])([email protected]))
|
78 |
+
tsx:
|
79 |
+
specifier: ^4.19.1
|
80 |
+
version: 4.19.1
|
81 |
typescript:
|
82 |
specifier: ^5.5.3
|
83 |
version: 5.6.2
|
84 |
typescript-eslint:
|
85 |
specifier: ^8.7.0
|
86 |
+
version: 8.8.0([email protected]([email protected]))([email protected])
|
87 |
vite:
|
88 |
specifier: ^5.4.8
|
89 |
+
version: 5.4.8(@types/node@22.7.4)
|
90 |
|
91 |
packages:
|
92 |
|
|
|
94 |
resolution: {integrity: sha512-08K9ou5VNbheZFxM5tDWoqjA3ImC50DiuuJ2tj1yEPRfkp8lLLg6XAaJ4On+a0yAXor/8ay5gHnAIshRM44Kpw==}
|
95 |
engines: {node: '>=12.17'}
|
96 |
|
97 |
+
'@alloc/[email protected]':
|
98 |
+
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
|
99 |
+
engines: {node: '>=10'}
|
100 |
+
|
101 |
'@ampproject/[email protected]':
|
102 |
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
|
103 |
engines: {node: '>=6.0.0'}
|
|
|
189 |
resolution: {integrity: sha512-vwIVdXG+j+FOpkwqHRcBgHLYNL7XMkufrlaFvL9o6Ai9sJn9+PdyIL5qa0XzTZw084c+u9LOls53eoZWP/W5WQ==}
|
190 |
engines: {node: '>=6.9.0'}
|
191 |
|
192 |
+
'@cspotcode/[email protected]':
|
193 |
+
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
|
194 |
+
engines: {node: '>=12'}
|
195 |
+
|
196 |
'@duckdb/[email protected]':
|
197 |
resolution: {integrity: sha512-HcA9q/Yq1t8nAIg2rl8DmOTjKy1tAHSdBGHlCcWAm5StsfAjcm+f0STBEH3hmWPk0qEtOJF30OR+GfeyUOP+hA==}
|
198 |
|
|
|
202 |
cpu: [ppc64]
|
203 |
os: [aix]
|
204 |
|
205 |
+
'@esbuild/[email protected]':
|
206 |
+
resolution: {integrity: sha512-6VhYk1diRqrhBAqpJEdjASR/+WVRtfjpqKuNw11cLiaWpAT/Uu+nokB+UJnevzy/P9C/ty6AOe0dwueMrGh/iQ==}
|
207 |
+
engines: {node: '>=18'}
|
208 |
+
cpu: [ppc64]
|
209 |
+
os: [aix]
|
210 |
+
|
211 |
'@esbuild/[email protected]':
|
212 |
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
|
213 |
engines: {node: '>=12'}
|
214 |
cpu: [arm64]
|
215 |
os: [android]
|
216 |
|
217 |
+
'@esbuild/[email protected]':
|
218 |
+
resolution: {integrity: sha512-xw50ipykXcLstLeWH7WRdQuysJqejuAGPd30vd1i5zSyKK3WE+ijzHmLKxdiCMtH1pHz78rOg0BKSYOSB/2Khw==}
|
219 |
+
engines: {node: '>=18'}
|
220 |
+
cpu: [arm64]
|
221 |
+
os: [android]
|
222 |
+
|
223 |
'@esbuild/[email protected]':
|
224 |
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
|
225 |
engines: {node: '>=12'}
|
226 |
cpu: [arm]
|
227 |
os: [android]
|
228 |
|
229 |
+
'@esbuild/[email protected]':
|
230 |
+
resolution: {integrity: sha512-uz6/tEy2IFm9RYOyvKl88zdzZfwEfKZmnX9Cj1BHjeSGNuGLuMD1kR8y5bteYmwqKm1tj8m4cb/aKEorr6fHWQ==}
|
231 |
+
engines: {node: '>=18'}
|
232 |
+
cpu: [arm]
|
233 |
+
os: [android]
|
234 |
+
|
235 |
'@esbuild/[email protected]':
|
236 |
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
|
237 |
engines: {node: '>=12'}
|
238 |
cpu: [x64]
|
239 |
os: [android]
|
240 |
|
241 |
+
'@esbuild/[email protected]':
|
242 |
+
resolution: {integrity: sha512-nlN9B69St9BwUoB+jkyU090bru8L0NA3yFvAd7k8dNsVH8bi9a8cUAUSEcEEgTp2z3dbEDGJGfP6VUnkQnlReg==}
|
243 |
+
engines: {node: '>=18'}
|
244 |
+
cpu: [x64]
|
245 |
+
os: [android]
|
246 |
+
|
247 |
'@esbuild/[email protected]':
|
248 |
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
|
249 |
engines: {node: '>=12'}
|
250 |
cpu: [arm64]
|
251 |
os: [darwin]
|
252 |
|
253 |
+
'@esbuild/[email protected]':
|
254 |
+
resolution: {integrity: sha512-YsS2e3Wtgnw7Wq53XXBLcV6JhRsEq8hkfg91ESVadIrzr9wO6jJDMZnCQbHm1Guc5t/CdDiFSSfWP58FNuvT3Q==}
|
255 |
+
engines: {node: '>=18'}
|
256 |
+
cpu: [arm64]
|
257 |
+
os: [darwin]
|
258 |
+
|
259 |
'@esbuild/[email protected]':
|
260 |
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
|
261 |
engines: {node: '>=12'}
|
262 |
cpu: [x64]
|
263 |
os: [darwin]
|
264 |
|
265 |
+
'@esbuild/[email protected]':
|
266 |
+
resolution: {integrity: sha512-aClqdgTDVPSEGgoCS8QDG37Gu8yc9lTHNAQlsztQ6ENetKEO//b8y31MMu2ZaPbn4kVsIABzVLXYLhCGekGDqw==}
|
267 |
+
engines: {node: '>=18'}
|
268 |
+
cpu: [x64]
|
269 |
+
os: [darwin]
|
270 |
+
|
271 |
'@esbuild/[email protected]':
|
272 |
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
|
273 |
engines: {node: '>=12'}
|
274 |
cpu: [arm64]
|
275 |
os: [freebsd]
|
276 |
|
277 |
+
'@esbuild/[email protected]':
|
278 |
+
resolution: {integrity: sha512-h1k6yS8/pN/NHlMl5+v4XPfikhJulk4G+tKGFIOwURBSFzE8bixw1ebjluLOjfwtLqY0kewfjLSrO6tN2MgIhA==}
|
279 |
+
engines: {node: '>=18'}
|
280 |
+
cpu: [arm64]
|
281 |
+
os: [freebsd]
|
282 |
+
|
283 |
'@esbuild/[email protected]':
|
284 |
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
|
285 |
engines: {node: '>=12'}
|
286 |
cpu: [x64]
|
287 |
os: [freebsd]
|
288 |
|
289 |
+
'@esbuild/[email protected]':
|
290 |
+
resolution: {integrity: sha512-lK1eJeyk1ZX8UklqFd/3A60UuZ/6UVfGT2LuGo3Wp4/z7eRTRYY+0xOu2kpClP+vMTi9wKOfXi2vjUpO1Ro76g==}
|
291 |
+
engines: {node: '>=18'}
|
292 |
+
cpu: [x64]
|
293 |
+
os: [freebsd]
|
294 |
+
|
295 |
'@esbuild/[email protected]':
|
296 |
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
|
297 |
engines: {node: '>=12'}
|
298 |
cpu: [arm64]
|
299 |
os: [linux]
|
300 |
|
301 |
+
'@esbuild/[email protected]':
|
302 |
+
resolution: {integrity: sha512-/93bf2yxencYDnItMYV/v116zff6UyTjo4EtEQjUBeGiVpMmffDNUyD9UN2zV+V3LRV3/on4xdZ26NKzn6754g==}
|
303 |
+
engines: {node: '>=18'}
|
304 |
+
cpu: [arm64]
|
305 |
+
os: [linux]
|
306 |
+
|
307 |
'@esbuild/[email protected]':
|
308 |
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
|
309 |
engines: {node: '>=12'}
|
310 |
cpu: [arm]
|
311 |
os: [linux]
|
312 |
|
313 |
+
'@esbuild/[email protected]':
|
314 |
+
resolution: {integrity: sha512-CXXkzgn+dXAPs3WBwE+Kvnrf4WECwBdfjfeYHpMeVxWE0EceB6vhWGShs6wi0IYEqMSIzdOF1XjQ/Mkm5d7ZdQ==}
|
315 |
+
engines: {node: '>=18'}
|
316 |
+
cpu: [arm]
|
317 |
+
os: [linux]
|
318 |
+
|
319 |
'@esbuild/[email protected]':
|
320 |
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
|
321 |
engines: {node: '>=12'}
|
322 |
cpu: [ia32]
|
323 |
os: [linux]
|
324 |
|
325 |
+
'@esbuild/[email protected]':
|
326 |
+
resolution: {integrity: sha512-VTN4EuOHwXEkXzX5nTvVY4s7E/Krz7COC8xkftbbKRYAl96vPiUssGkeMELQMOnLOJ8k3BY1+ZY52tttZnHcXQ==}
|
327 |
+
engines: {node: '>=18'}
|
328 |
+
cpu: [ia32]
|
329 |
+
os: [linux]
|
330 |
+
|
331 |
'@esbuild/[email protected]':
|
332 |
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
|
333 |
engines: {node: '>=12'}
|
334 |
cpu: [loong64]
|
335 |
os: [linux]
|
336 |
|
337 |
+
'@esbuild/[email protected]':
|
338 |
+
resolution: {integrity: sha512-Vx09LzEoBa5zDnieH8LSMRToj7ir/Jeq0Gu6qJ/1GcBq9GkfoEAoXvLiW1U9J1qE/Y/Oyaq33w5p2ZWrNNHNEw==}
|
339 |
+
engines: {node: '>=18'}
|
340 |
+
cpu: [loong64]
|
341 |
+
os: [linux]
|
342 |
+
|
343 |
'@esbuild/[email protected]':
|
344 |
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
|
345 |
engines: {node: '>=12'}
|
346 |
cpu: [mips64el]
|
347 |
os: [linux]
|
348 |
|
349 |
+
'@esbuild/[email protected]':
|
350 |
+
resolution: {integrity: sha512-nrFzzMQ7W4WRLNUOU5dlWAqa6yVeI0P78WKGUo7lg2HShq/yx+UYkeNSE0SSfSure0SqgnsxPvmAUu/vu0E+3Q==}
|
351 |
+
engines: {node: '>=18'}
|
352 |
+
cpu: [mips64el]
|
353 |
+
os: [linux]
|
354 |
+
|
355 |
'@esbuild/[email protected]':
|
356 |
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
|
357 |
engines: {node: '>=12'}
|
358 |
cpu: [ppc64]
|
359 |
os: [linux]
|
360 |
|
361 |
+
'@esbuild/[email protected]':
|
362 |
+
resolution: {integrity: sha512-dKN8fgVqd0vUIjxuJI6P/9SSSe/mB9rvA98CSH2sJnlZ/OCZWO1DJvxj8jvKTfYUdGfcq2dDxoKaC6bHuTlgcw==}
|
363 |
+
engines: {node: '>=18'}
|
364 |
+
cpu: [ppc64]
|
365 |
+
os: [linux]
|
366 |
+
|
367 |
'@esbuild/[email protected]':
|
368 |
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
|
369 |
engines: {node: '>=12'}
|
370 |
cpu: [riscv64]
|
371 |
os: [linux]
|
372 |
|
373 |
+
'@esbuild/[email protected]':
|
374 |
+
resolution: {integrity: sha512-5AV4Pzp80fhHL83JM6LoA6pTQVWgB1HovMBsLQ9OZWLDqVY8MVobBXNSmAJi//Csh6tcY7e7Lny2Hg1tElMjIA==}
|
375 |
+
engines: {node: '>=18'}
|
376 |
+
cpu: [riscv64]
|
377 |
+
os: [linux]
|
378 |
+
|
379 |
'@esbuild/[email protected]':
|
380 |
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
|
381 |
engines: {node: '>=12'}
|
382 |
cpu: [s390x]
|
383 |
os: [linux]
|
384 |
|
385 |
+
'@esbuild/[email protected]':
|
386 |
+
resolution: {integrity: sha512-9ygs73tuFCe6f6m/Tb+9LtYxWR4c9yg7zjt2cYkjDbDpV/xVn+68cQxMXCjUpYwEkze2RcU/rMnfIXNRFmSoDw==}
|
387 |
+
engines: {node: '>=18'}
|
388 |
+
cpu: [s390x]
|
389 |
+
os: [linux]
|
390 |
+
|
391 |
'@esbuild/[email protected]':
|
392 |
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
|
393 |
engines: {node: '>=12'}
|
394 |
cpu: [x64]
|
395 |
os: [linux]
|
396 |
|
397 |
+
'@esbuild/[email protected]':
|
398 |
+
resolution: {integrity: sha512-EV6+ovTsEXCPAp58g2dD68LxoP/wK5pRvgy0J/HxPGB009omFPv3Yet0HiaqvrIrgPTBuC6wCH1LTOY91EO5hQ==}
|
399 |
+
engines: {node: '>=18'}
|
400 |
+
cpu: [x64]
|
401 |
+
os: [linux]
|
402 |
+
|
403 |
'@esbuild/[email protected]':
|
404 |
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
|
405 |
engines: {node: '>=12'}
|
406 |
cpu: [x64]
|
407 |
os: [netbsd]
|
408 |
|
409 |
+
'@esbuild/[email protected]':
|
410 |
+
resolution: {integrity: sha512-aevEkCNu7KlPRpYLjwmdcuNz6bDFiE7Z8XC4CPqExjTvrHugh28QzUXVOZtiYghciKUacNktqxdpymplil1beA==}
|
411 |
+
engines: {node: '>=18'}
|
412 |
+
cpu: [x64]
|
413 |
+
os: [netbsd]
|
414 |
+
|
415 |
+
'@esbuild/[email protected]':
|
416 |
+
resolution: {integrity: sha512-3x37szhLexNA4bXhLrCC/LImN/YtWis6WXr1VESlfVtVeoFJBRINPJ3f0a/6LV8zpikqoUg4hyXw0sFBt5Cr+Q==}
|
417 |
+
engines: {node: '>=18'}
|
418 |
+
cpu: [arm64]
|
419 |
+
os: [openbsd]
|
420 |
+
|
421 |
'@esbuild/[email protected]':
|
422 |
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
|
423 |
engines: {node: '>=12'}
|
424 |
cpu: [x64]
|
425 |
os: [openbsd]
|
426 |
|
427 |
+
'@esbuild/[email protected]':
|
428 |
+
resolution: {integrity: sha512-aY2gMmKmPhxfU+0EdnN+XNtGbjfQgwZj43k8G3fyrDM/UdZww6xrWxmDkuz2eCZchqVeABjV5BpildOrUbBTqA==}
|
429 |
+
engines: {node: '>=18'}
|
430 |
+
cpu: [x64]
|
431 |
+
os: [openbsd]
|
432 |
+
|
433 |
'@esbuild/[email protected]':
|
434 |
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
|
435 |
engines: {node: '>=12'}
|
436 |
cpu: [x64]
|
437 |
os: [sunos]
|
438 |
|
439 |
+
'@esbuild/[email protected]':
|
440 |
+
resolution: {integrity: sha512-RBRT2gqEl0IKQABT4XTj78tpk9v7ehp+mazn2HbUeZl1YMdaGAQqhapjGTCe7uw7y0frDi4gS0uHzhvpFuI1sA==}
|
441 |
+
engines: {node: '>=18'}
|
442 |
+
cpu: [x64]
|
443 |
+
os: [sunos]
|
444 |
+
|
445 |
'@esbuild/[email protected]':
|
446 |
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
|
447 |
engines: {node: '>=12'}
|
448 |
cpu: [arm64]
|
449 |
os: [win32]
|
450 |
|
451 |
+
'@esbuild/[email protected]':
|
452 |
+
resolution: {integrity: sha512-4O+gPR5rEBe2FpKOVyiJ7wNDPA8nGzDuJ6gN4okSA1gEOYZ67N8JPk58tkWtdtPeLz7lBnY6I5L3jdsr3S+A6A==}
|
453 |
+
engines: {node: '>=18'}
|
454 |
+
cpu: [arm64]
|
455 |
+
os: [win32]
|
456 |
+
|
457 |
'@esbuild/[email protected]':
|
458 |
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
|
459 |
engines: {node: '>=12'}
|
460 |
cpu: [ia32]
|
461 |
os: [win32]
|
462 |
|
463 |
+
'@esbuild/[email protected]':
|
464 |
+
resolution: {integrity: sha512-BcaL0Vn6QwCwre3Y717nVHZbAa4UBEigzFm6VdsVdT/MbZ38xoj1X9HPkZhbmaBGUD1W8vxAfffbDe8bA6AKnQ==}
|
465 |
+
engines: {node: '>=18'}
|
466 |
+
cpu: [ia32]
|
467 |
+
os: [win32]
|
468 |
+
|
469 |
'@esbuild/[email protected]':
|
470 |
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
|
471 |
engines: {node: '>=12'}
|
472 |
cpu: [x64]
|
473 |
os: [win32]
|
474 |
|
475 |
+
'@esbuild/[email protected]':
|
476 |
+
resolution: {integrity: sha512-BHpFFeslkWrXWyUPnbKm+xYYVYruCinGcftSBaa8zoF9hZO4BcSCFUvHVTtzpIY6YzUnYtuEhZ+C9iEXjxnasg==}
|
477 |
+
engines: {node: '>=18'}
|
478 |
+
cpu: [x64]
|
479 |
+
os: [win32]
|
480 |
+
|
481 |
'@eslint-community/[email protected]':
|
482 |
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
|
483 |
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
|
|
|
512 |
resolution: {integrity: sha512-vH9PiIMMwvhCx31Af3HiGzsVNULDbyVkHXwlemn/B0TFj/00ho3y55efXrUZTfQipxoHC5u4xq6zblww1zm1Ig==}
|
513 |
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
|
514 |
|
515 |
+
'@floating-ui/[email protected]':
|
516 |
+
resolution: {integrity: sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==}
|
517 |
+
|
518 |
+
'@floating-ui/[email protected]':
|
519 |
+
resolution: {integrity: sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==}
|
520 |
+
|
521 |
+
'@floating-ui/[email protected]':
|
522 |
+
resolution: {integrity: sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==}
|
523 |
+
peerDependencies:
|
524 |
+
react: '>=16.8.0'
|
525 |
+
react-dom: '>=16.8.0'
|
526 |
+
|
527 |
+
'@floating-ui/[email protected]':
|
528 |
+
resolution: {integrity: sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==}
|
529 |
+
|
530 |
'@humanfs/[email protected]':
|
531 |
resolution: {integrity: sha512-2cbWIHbZVEweE853g8jymffCA+NCMiuqeECeBBLm8dg2oFdjuGJhgN4UAbI+6v0CKbbhvtXA4qV8YR5Ji86nmw==}
|
532 |
engines: {node: '>=18.18.0'}
|
|
|
543 |
resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
|
544 |
engines: {node: '>=18.18'}
|
545 |
|
546 |
+
'@isaacs/[email protected]':
|
547 |
+
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
|
548 |
+
engines: {node: '>=12'}
|
549 |
+
|
550 |
'@jridgewell/[email protected]':
|
551 |
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
|
552 |
engines: {node: '>=6.0.0'}
|
|
|
565 |
'@jridgewell/[email protected]':
|
566 |
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
|
567 |
|
568 |
+
'@jridgewell/[email protected]':
|
569 |
+
resolution: {integrity: sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==}
|
570 |
+
|
571 |
'@nodelib/[email protected]':
|
572 |
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
|
573 |
engines: {node: '>= 8'}
|
|
|
580 |
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
|
581 |
engines: {node: '>= 8'}
|
582 |
|
583 |
+
'@pkgjs/[email protected]':
|
584 |
+
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
|
585 |
+
engines: {node: '>=14'}
|
586 |
+
|
587 |
+
'@radix-ui/[email protected]':
|
588 |
+
resolution: {integrity: sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==}
|
589 |
+
|
590 |
+
'@radix-ui/[email protected]':
|
591 |
+
resolution: {integrity: sha512-FmlW1rCg7hBpEBwFbjHwCW6AmWLQM6g/v0Sn8XbP9NvmSZ2San1FpQeyPtufzOMSIx7Y4dzjlHoifhp+7NkZhw==}
|
592 |
+
peerDependencies:
|
593 |
+
'@types/react': '*'
|
594 |
+
'@types/react-dom': '*'
|
595 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
596 |
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
597 |
+
peerDependenciesMeta:
|
598 |
+
'@types/react':
|
599 |
+
optional: true
|
600 |
+
'@types/react-dom':
|
601 |
+
optional: true
|
602 |
+
|
603 |
+
'@radix-ui/[email protected]':
|
604 |
+
resolution: {integrity: sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==}
|
605 |
+
peerDependencies:
|
606 |
+
'@types/react': '*'
|
607 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
608 |
+
peerDependenciesMeta:
|
609 |
+
'@types/react':
|
610 |
+
optional: true
|
611 |
+
|
612 |
+
'@radix-ui/[email protected]':
|
613 |
+
resolution: {integrity: sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==}
|
614 |
+
peerDependencies:
|
615 |
+
'@types/react': '*'
|
616 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
617 |
+
peerDependenciesMeta:
|
618 |
+
'@types/react':
|
619 |
+
optional: true
|
620 |
+
|
621 |
+
'@radix-ui/[email protected]':
|
622 |
+
resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==}
|
623 |
+
peerDependencies:
|
624 |
+
'@types/react': '*'
|
625 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
626 |
+
peerDependenciesMeta:
|
627 |
+
'@types/react':
|
628 |
+
optional: true
|
629 |
+
|
630 |
+
'@radix-ui/[email protected]':
|
631 |
+
resolution: {integrity: sha512-QSxg29lfr/xcev6kSz7MAlmDnzbP1eI/Dwn3Tp1ip0KT5CUELsxkekFEMVBEoykI3oV39hKT4TKZzBNMbcTZYQ==}
|
632 |
+
peerDependencies:
|
633 |
+
'@types/react': '*'
|
634 |
+
'@types/react-dom': '*'
|
635 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
636 |
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
637 |
+
peerDependenciesMeta:
|
638 |
+
'@types/react':
|
639 |
+
optional: true
|
640 |
+
'@types/react-dom':
|
641 |
+
optional: true
|
642 |
+
|
643 |
+
'@radix-ui/[email protected]':
|
644 |
+
resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
|
645 |
+
peerDependencies:
|
646 |
+
'@types/react': '*'
|
647 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
648 |
+
peerDependenciesMeta:
|
649 |
+
'@types/react':
|
650 |
+
optional: true
|
651 |
+
|
652 |
+
'@radix-ui/[email protected]':
|
653 |
+
resolution: {integrity: sha512-ZnRMshKF43aBxVWPWvbj21+7TQCvhuULWJ4gNIKYpRlQt5xGRhLx66tMp8pya2UkGHTSlhpXwmjqltDYHhw7Vg==}
|
654 |
+
peerDependencies:
|
655 |
+
'@types/react': '*'
|
656 |
+
'@types/react-dom': '*'
|
657 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
658 |
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
659 |
+
peerDependenciesMeta:
|
660 |
+
'@types/react':
|
661 |
+
optional: true
|
662 |
+
'@types/react-dom':
|
663 |
+
optional: true
|
664 |
+
|
665 |
+
'@radix-ui/[email protected]':
|
666 |
+
resolution: {integrity: sha512-WeDYLGPxJb/5EGBoedyJbT0MpoULmwnIPMJMSldkuiMsBAv7N1cRdsTWZWht9vpPOiN3qyiGAtbK2is47/uMFg==}
|
667 |
+
peerDependencies:
|
668 |
+
'@types/react': '*'
|
669 |
+
'@types/react-dom': '*'
|
670 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
671 |
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
672 |
+
peerDependenciesMeta:
|
673 |
+
'@types/react':
|
674 |
+
optional: true
|
675 |
+
'@types/react-dom':
|
676 |
+
optional: true
|
677 |
+
|
678 |
+
'@radix-ui/[email protected]':
|
679 |
+
resolution: {integrity: sha512-IeFXVi4YS1K0wVZzXNrbaaUvIJ3qdY+/Ih4eHFhWA9SwGR9UDX7Ck8abvL57C4cv3wwMvUE0OG69Qc3NCcTe/A==}
|
680 |
+
peerDependencies:
|
681 |
+
'@types/react': '*'
|
682 |
+
'@types/react-dom': '*'
|
683 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
684 |
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
685 |
+
peerDependenciesMeta:
|
686 |
+
'@types/react':
|
687 |
+
optional: true
|
688 |
+
'@types/react-dom':
|
689 |
+
optional: true
|
690 |
+
|
691 |
+
'@radix-ui/[email protected]':
|
692 |
+
resolution: {integrity: sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==}
|
693 |
+
peerDependencies:
|
694 |
+
'@types/react': '*'
|
695 |
+
'@types/react-dom': '*'
|
696 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
697 |
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
698 |
+
peerDependenciesMeta:
|
699 |
+
'@types/react':
|
700 |
+
optional: true
|
701 |
+
'@types/react-dom':
|
702 |
+
optional: true
|
703 |
+
|
704 |
+
'@radix-ui/[email protected]':
|
705 |
+
resolution: {integrity: sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==}
|
706 |
+
peerDependencies:
|
707 |
+
'@types/react': '*'
|
708 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
709 |
+
peerDependenciesMeta:
|
710 |
+
'@types/react':
|
711 |
+
optional: true
|
712 |
+
|
713 |
+
'@radix-ui/[email protected]':
|
714 |
+
resolution: {integrity: sha512-Z4w1FIS0BqVFI2c1jZvb/uDVJijJjJ2ZMuPV81oVgTZ7g3BZxobplnMVvXtFWgtozdvYJ+MFWtwkM5S2HnAong==}
|
715 |
+
peerDependencies:
|
716 |
+
'@types/react': '*'
|
717 |
+
'@types/react-dom': '*'
|
718 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
719 |
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
720 |
+
peerDependenciesMeta:
|
721 |
+
'@types/react':
|
722 |
+
optional: true
|
723 |
+
'@types/react-dom':
|
724 |
+
optional: true
|
725 |
+
|
726 |
+
'@radix-ui/[email protected]':
|
727 |
+
resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
|
728 |
+
peerDependencies:
|
729 |
+
'@types/react': '*'
|
730 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
731 |
+
peerDependenciesMeta:
|
732 |
+
'@types/react':
|
733 |
+
optional: true
|
734 |
+
|
735 |
+
'@radix-ui/[email protected]':
|
736 |
+
resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
|
737 |
+
peerDependencies:
|
738 |
+
'@types/react': '*'
|
739 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
740 |
+
peerDependenciesMeta:
|
741 |
+
'@types/react':
|
742 |
+
optional: true
|
743 |
+
|
744 |
+
'@radix-ui/[email protected]':
|
745 |
+
resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
|
746 |
+
peerDependencies:
|
747 |
+
'@types/react': '*'
|
748 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
749 |
+
peerDependenciesMeta:
|
750 |
+
'@types/react':
|
751 |
+
optional: true
|
752 |
+
|
753 |
+
'@radix-ui/[email protected]':
|
754 |
+
resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
|
755 |
+
peerDependencies:
|
756 |
+
'@types/react': '*'
|
757 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
758 |
+
peerDependenciesMeta:
|
759 |
+
'@types/react':
|
760 |
+
optional: true
|
761 |
+
|
762 |
+
'@radix-ui/[email protected]':
|
763 |
+
resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
|
764 |
+
peerDependencies:
|
765 |
+
'@types/react': '*'
|
766 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
767 |
+
peerDependenciesMeta:
|
768 |
+
'@types/react':
|
769 |
+
optional: true
|
770 |
+
|
771 |
+
'@radix-ui/[email protected]':
|
772 |
+
resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
|
773 |
+
peerDependencies:
|
774 |
+
'@types/react': '*'
|
775 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
776 |
+
peerDependenciesMeta:
|
777 |
+
'@types/react':
|
778 |
+
optional: true
|
779 |
+
|
780 |
+
'@radix-ui/[email protected]':
|
781 |
+
resolution: {integrity: sha512-N8MDZqtgCgG5S3aV60INAB475osJousYpZ4cTJ2cFbMpdHS5Y6loLTH8LPtkj2QN0x93J30HT/M3qJXM0+lyeQ==}
|
782 |
+
peerDependencies:
|
783 |
+
'@types/react': '*'
|
784 |
+
'@types/react-dom': '*'
|
785 |
+
react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
786 |
+
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
|
787 |
+
peerDependenciesMeta:
|
788 |
+
'@types/react':
|
789 |
+
optional: true
|
790 |
+
'@types/react-dom':
|
791 |
+
optional: true
|
792 |
+
|
793 |
+
'@radix-ui/[email protected]':
|
794 |
+
resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
|
795 |
+
|
796 |
'@rollup/[email protected]':
|
797 |
resolution: {integrity: sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==}
|
798 |
cpu: [arm]
|
|
|
873 |
cpu: [x64]
|
874 |
os: [win32]
|
875 |
|
876 |
+
'@tsconfig/[email protected]':
|
877 |
+
resolution: {integrity: sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==}
|
878 |
+
|
879 |
+
'@tsconfig/[email protected]':
|
880 |
+
resolution: {integrity: sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==}
|
881 |
+
|
882 |
+
'@tsconfig/[email protected]':
|
883 |
+
resolution: {integrity: sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==}
|
884 |
+
|
885 |
+
'@tsconfig/[email protected]':
|
886 |
+
resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
|
887 |
+
|
888 |
'@types/[email protected]':
|
889 |
resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==}
|
890 |
|
|
|
912 |
'@types/[email protected]':
|
913 |
resolution: {integrity: sha512-cumHmIAf6On83X7yP+LrsEyUOf/YlociZelmpRYaGFydoaPdxdt80MAbu6vWerQT2COCp2nPvHdsbD7tHn/YlQ==}
|
914 |
|
915 |
+
'@types/[email protected]':
|
916 |
+
resolution: {integrity: sha512-y+NPi1rFzDs1NdQHHToqeiX2TIS79SWEAw9GYhkkx8bD0ChpfqC+n2j5OXOCpzfojBEBt6DnEnnG9MY0zk1XLg==}
|
917 |
+
|
918 |
'@types/[email protected]':
|
919 |
resolution: {integrity: sha512-Xd22WCRBydkGSApl5Bw0PhAOHKSVjNL3E3AwzKaps96IMraPqy5BvZIsBVK6JLwdybUzjHnuWVwpDd0JjTfHXA==}
|
920 |
|
|
|
995 |
peerDependencies:
|
996 |
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
|
997 |
|
998 | |
999 |
+
resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
|
1000 |
+
engines: {node: '>=0.4.0'}
|
1001 |
+
|
1002 | |
1003 |
resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
|
1004 |
engines: {node: '>=0.4.0'}
|
|
|
1007 | |
1008 |
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
|
1009 |
|
1010 | |
1011 |
+
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
|
1012 |
+
engines: {node: '>=8'}
|
1013 |
+
|
1014 | |
1015 |
+
resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
|
1016 |
+
engines: {node: '>=12'}
|
1017 |
+
|
1018 | |
1019 |
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
|
1020 |
engines: {node: '>=4'}
|
|
|
1023 |
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
|
1024 |
engines: {node: '>=8'}
|
1025 |
|
1026 | |
1027 |
+
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
|
1028 |
+
engines: {node: '>=12'}
|
1029 |
+
|
1030 | |
1031 |
+
resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
|
1032 |
+
|
1033 | |
1034 |
+
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
|
1035 |
+
engines: {node: '>= 8'}
|
1036 |
+
|
1037 | |
1038 |
resolution: {integrity: sha512-EBO2xJN36/XoY81nhLcwCJgFwkboDZeyNQ+OPsG7bCoQjc2BT0aTyH/MR6SrL+LirSNz+cYqjGRlupMMlP1aEg==}
|
1039 |
hasBin: true
|
1040 |
|
1041 | |
1042 |
+
resolution: {integrity: sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==}
|
1043 |
+
|
1044 | |
1045 |
+
resolution: {integrity: sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==}
|
1046 |
+
|
1047 | |
1048 |
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
|
1049 |
|
|
|
1055 |
resolution: {integrity: sha512-gUAZ7HPyb4SJczXAMUXMGAvI976JoK3qEx9v1FTmeYuJj0IBiaKttG1ydtGKdkfqWkIkouke7nG8ufGy77+Cvw==}
|
1056 |
engines: {node: '>=12.17'}
|
1057 |
|
1058 | |
1059 |
+
resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
|
1060 |
+
engines: {node: ^10 || ^12 || >=14}
|
1061 |
+
hasBin: true
|
1062 |
+
peerDependencies:
|
1063 |
+
postcss: ^8.1.0
|
1064 |
+
|
1065 | |
1066 |
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
|
1067 |
|
1068 | |
1069 |
+
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
|
1070 |
+
engines: {node: '>=8'}
|
1071 |
+
|
1072 | |
1073 |
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
|
1074 |
|
|
|
1088 |
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
|
1089 |
engines: {node: '>=6'}
|
1090 |
|
1091 | |
1092 |
+
resolution: {integrity: sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==}
|
1093 |
+
engines: {node: '>= 6'}
|
1094 |
+
|
1095 | |
1096 |
resolution: {integrity: sha512-7LTwJjcRkzKFmtqGsibMeuXmvFDfZq/nzIjnmgCGzKKRVzjD72selLDK1oPF/Oxzmt4fNcPvTDvGqSDG4tCALw==}
|
1097 |
|
|
|
1107 |
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
|
1108 |
engines: {node: '>=10'}
|
1109 |
|
1110 | |
1111 |
+
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
|
1112 |
+
engines: {node: '>= 8.10.0'}
|
1113 |
+
|
1114 | |
1115 |
+
resolution: {integrity: sha512-jFI8IQw4hczaL4ALINxqLEXQbWcNjoSkloa4IaufXCJr6QawJyw7tuRysRsrE8w2p/4gGaxKIt/hX3qz/IbD1A==}
|
1116 |
+
|
1117 | |
1118 |
+
resolution: {integrity: sha512-rQ1+kcj+ttHG0MKVGBUXwayCCF1oh39BF5COIpRzuCEv8Mwjv0XucrI2ExNTOn9IlLifGClWQcU9BrZORvtw6Q==}
|
1119 |
+
engines: {node: '>=6'}
|
1120 |
+
|
1121 | |
1122 |
+
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
|
1123 |
+
engines: {node: '>=6'}
|
1124 |
+
|
1125 | |
1126 |
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
|
1127 |
|
|
|
1143 |
resolution: {integrity: sha512-NCyznE//MuTjwi3y84QVUGEOT+P5oto1e1Pk/jFPVdPPfsG03qpTIl3yw6etR+v73d0lXsoojRpvbru2sqePxQ==}
|
1144 |
engines: {node: '>=12.20.0'}
|
1145 |
|
1146 | |
1147 |
+
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
|
1148 |
+
engines: {node: '>= 6'}
|
1149 |
+
|
1150 | |
1151 |
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
|
1152 |
|
1153 | |
1154 |
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
|
1155 |
|
1156 | |
1157 |
+
resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==}
|
1158 |
+
|
1159 | |
1160 |
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
|
1161 |
engines: {node: '>= 8'}
|
1162 |
|
1163 | |
1164 |
+
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
1165 |
+
engines: {node: '>=4'}
|
1166 |
+
hasBin: true
|
1167 |
+
|
1168 | |
1169 |
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
|
1170 |
|
|
|
1180 | |
1181 |
resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
|
1182 |
|
1183 | |
1184 |
+
resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==}
|
1185 |
+
|
1186 | |
1187 |
+
resolution: {integrity: sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==}
|
1188 |
+
engines: {node: '>=0.3.1'}
|
1189 |
+
|
1190 | |
1191 |
+
resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==}
|
1192 |
+
|
1193 | |
1194 |
+
resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
|
1195 |
+
|
1196 | |
1197 |
resolution: {integrity: sha512-M+7ph0VGBQqqpTT2YrabjNKSQ2fEl9PVx6AK3N558gDH9NO8O6XN9SXXFWRo9u9PbEg/bWq+tjXQr+eXmxubCw==}
|
1198 |
|
1199 | |
1200 |
+
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
|
1201 |
+
|
1202 | |
1203 |
+
resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
|
1204 |
+
|
1205 | |
1206 |
resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
|
1207 |
engines: {node: '>=12'}
|
1208 |
hasBin: true
|
1209 |
|
1210 | |
1211 |
+
resolution: {integrity: sha512-VVNz/9Sa0bs5SELtn3f7qhJCDPCF5oMEl5cO9/SSinpE9hbPVvxbd572HH5AKiP7WD8INO53GgfDDhRjkylHEg==}
|
1212 |
+
engines: {node: '>=18'}
|
1213 |
+
hasBin: true
|
1214 |
+
|
1215 | |
1216 |
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
|
1217 |
engines: {node: '>=6'}
|
|
|
1319 | |
1320 |
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
|
1321 |
|
1322 | |
1323 |
+
resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
|
1324 |
+
engines: {node: '>=14'}
|
1325 |
+
|
1326 | |
1327 |
+
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
|
1328 |
+
|
1329 | |
1330 |
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
|
1331 |
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
|
1332 |
os: [darwin]
|
1333 |
|
1334 | |
1335 |
+
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
|
1336 |
+
|
1337 | |
1338 |
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
|
1339 |
engines: {node: '>=6.9.0'}
|
1340 |
|
1341 | |
1342 |
+
resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
|
1343 |
+
|
1344 | |
1345 |
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
|
1346 |
engines: {node: '>= 6'}
|
|
|
1349 |
resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
|
1350 |
engines: {node: '>=10.13.0'}
|
1351 |
|
1352 | |
1353 |
+
resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
|
1354 |
+
hasBin: true
|
1355 |
+
|
1356 | |
1357 |
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
|
1358 |
engines: {node: '>=4'}
|
|
|
1376 |
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
|
1377 |
engines: {node: '>=8'}
|
1378 |
|
1379 | |
1380 |
+
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
|
1381 |
+
engines: {node: '>= 0.4'}
|
1382 |
+
|
1383 | |
1384 |
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
|
1385 |
engines: {node: '>= 4'}
|
|
|
1392 |
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
|
1393 |
engines: {node: '>=0.8.19'}
|
1394 |
|
1395 | |
1396 |
+
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
|
1397 |
+
engines: {node: '>=8'}
|
1398 |
+
|
1399 | |
1400 |
+
resolution: {integrity: sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==}
|
1401 |
+
engines: {node: '>= 0.4'}
|
1402 |
+
|
1403 | |
1404 |
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
|
1405 |
engines: {node: '>=0.10.0'}
|
1406 |
|
1407 | |
1408 |
+
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
|
1409 |
+
engines: {node: '>=8'}
|
1410 |
+
|
1411 | |
1412 |
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
|
1413 |
engines: {node: '>=0.10.0'}
|
|
|
1419 | |
1420 |
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
|
1421 |
|
1422 | |
1423 |
+
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
|
1424 |
+
|
1425 | |
1426 |
+
resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
|
1427 |
+
hasBin: true
|
1428 |
+
|
1429 | |
1430 |
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
|
1431 |
|
|
|
1463 |
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
|
1464 |
engines: {node: '>= 0.8.0'}
|
1465 |
|
1466 | |
1467 |
+
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
|
1468 |
+
engines: {node: '>=10'}
|
1469 |
+
|
1470 | |
1471 |
+
resolution: {integrity: sha512-eop+wDAvpItUys0FWkHIKeC9ybYrTGbU41U5K7+bttZZeohvnY7M9dZ5kB21GNWiFT2q1OoPTvncPCgSOVO5ow==}
|
1472 |
+
engines: {node: '>=14'}
|
1473 |
+
|
1474 | |
1475 |
+
resolution: {integrity: sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==}
|
1476 |
+
|
1477 | |
1478 |
resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==}
|
1479 |
engines: {node: '>=10'}
|
|
|
1491 |
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
|
1492 |
hasBin: true
|
1493 |
|
1494 | |
1495 |
+
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
|
1496 |
+
|
1497 | |
1498 |
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
|
1499 |
|
1500 | |
1501 |
+
resolution: {integrity: sha512-SZ//hQmvi+kDKrNepArVkYK7/jfeZ5uFNEnYmd45RKZcbGD78KLnrcNXmgeg6m+xNHFvTG+CblszXCy4n6DN4w==}
|
1502 |
+
peerDependencies:
|
1503 |
+
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc
|
1504 |
+
|
1505 | |
1506 |
+
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
|
1507 |
+
|
1508 | |
1509 |
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
|
1510 |
engines: {node: '>= 8'}
|
|
|
1520 |
resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
|
1521 |
engines: {node: '>=16 || 14 >=14.17'}
|
1522 |
|
1523 | |
1524 |
+
resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
|
1525 |
+
engines: {node: '>=16 || 14 >=14.17'}
|
1526 |
+
|
1527 | |
1528 |
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
|
1529 |
|
1530 | |
1531 |
+
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
|
1532 |
+
|
1533 | |
1534 |
resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
|
1535 |
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
|
|
|
1541 | |
1542 |
resolution: {integrity: sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==}
|
1543 |
|
1544 | |
1545 |
+
resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==}
|
1546 |
+
engines: {node: '>=0.10.0'}
|
1547 |
+
|
1548 | |
1549 |
+
resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
|
1550 |
+
engines: {node: '>=0.10.0'}
|
1551 |
+
|
1552 | |
1553 |
+
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
|
1554 |
+
engines: {node: '>=0.10.0'}
|
1555 |
+
|
1556 | |
1557 |
+
resolution: {integrity: sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==}
|
1558 |
+
engines: {node: '>= 6'}
|
1559 |
+
|
1560 | |
1561 |
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
|
1562 |
engines: {node: '>= 0.8.0'}
|
|
|
1569 |
resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==}
|
1570 |
engines: {node: '>=10'}
|
1571 |
|
1572 | |
1573 |
+
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
|
1574 |
+
|
1575 | |
1576 |
resolution: {integrity: sha512-HJxs9K9AztdIQIAIa/OIazRAUW/L6B9hbQDxO4X07roW3eo9XqZc2ur9bn1StH9CnbbI9EgvejHQX7CBpCF1QA==}
|
1577 |
engines: {node: '>=0.10.0'}
|
|
|
1588 |
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
|
1589 |
engines: {node: '>=8'}
|
1590 |
|
1591 | |
1592 |
+
resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==}
|
1593 |
+
|
1594 | |
1595 |
+
resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
|
1596 |
+
engines: {node: '>=16 || 14 >=14.18'}
|
1597 |
+
|
1598 | |
1599 |
resolution: {integrity: sha512-TQ92mBOW0l3LeMeyLV6mzy/kWr8lkd/hp3mTg7wYK7zJhuBStmGMBG0BdeDZS/dZx1IukaX6Bk11zcln25o1Aw==}
|
1600 |
|
|
|
1602 |
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
|
1603 |
engines: {node: '>=8.6'}
|
1604 |
|
1605 | |
1606 |
+
resolution: {integrity: sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==}
|
1607 |
+
engines: {node: '>=0.10.0'}
|
1608 |
+
|
1609 | |
1610 |
+
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
|
1611 |
+
engines: {node: '>= 6'}
|
1612 |
+
|
1613 | |
1614 |
+
resolution: {integrity: sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==}
|
1615 |
+
engines: {node: '>=14.0.0'}
|
1616 |
+
peerDependencies:
|
1617 |
+
postcss: ^8.0.0
|
1618 |
+
|
1619 | |
1620 |
+
resolution: {integrity: sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==}
|
1621 |
+
engines: {node: ^12 || ^14 || >= 16}
|
1622 |
+
peerDependencies:
|
1623 |
+
postcss: ^8.4.21
|
1624 |
+
|
1625 | |
1626 |
+
resolution: {integrity: sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==}
|
1627 |
+
engines: {node: '>= 14'}
|
1628 |
+
peerDependencies:
|
1629 |
+
postcss: '>=8.0.9'
|
1630 |
+
ts-node: '>=9.0.0'
|
1631 |
+
peerDependenciesMeta:
|
1632 |
+
postcss:
|
1633 |
+
optional: true
|
1634 |
+
ts-node:
|
1635 |
+
optional: true
|
1636 |
+
|
1637 | |
1638 |
+
resolution: {integrity: sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==}
|
1639 |
+
engines: {node: '>=12.0'}
|
1640 |
+
peerDependencies:
|
1641 |
+
postcss: ^8.2.14
|
1642 |
+
|
1643 | |
1644 |
+
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
|
1645 |
+
engines: {node: '>=4'}
|
1646 |
+
|
1647 | |
1648 |
+
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
1649 |
+
|
1650 | |
1651 |
resolution: {integrity: sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==}
|
1652 |
engines: {node: ^10 || ^12 || >=14}
|
|
|
1675 |
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
|
1676 |
engines: {node: '>=0.10.0'}
|
1677 |
|
1678 | |
1679 |
+
resolution: {integrity: sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==}
|
1680 |
+
|
1681 | |
1682 |
+
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
|
1683 |
+
engines: {node: '>=8.10.0'}
|
1684 |
+
|
1685 | |
1686 |
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
|
1687 |
engines: {node: '>=0.10'}
|
|
|
1690 |
resolution: {integrity: sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==}
|
1691 |
engines: {node: '>=4'}
|
1692 |
|
1693 | |
1694 |
+
resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
|
1695 |
+
|
1696 | |
1697 |
+
resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
|
1698 |
+
hasBin: true
|
1699 |
+
|
1700 | |
1701 |
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
|
1702 |
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
|
|
|
1729 |
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
|
1730 |
engines: {node: '>=8'}
|
1731 |
|
1732 | |
1733 |
+
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
|
1734 |
+
engines: {node: '>=14'}
|
1735 |
+
|
1736 | |
1737 |
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
|
1738 |
engines: {node: '>=0.10.0'}
|
|
|
1741 |
resolution: {integrity: sha512-EWZT9XOceBPlVJRrYcykW8jyRSZYbkb/0ZK36uLEmoWVO5gxBOnntNTseNzfREsqxqdfEGQrD8SXQ3QWbBmq8A==}
|
1742 |
engines: {node: '>=10'}
|
1743 |
|
1744 | |
1745 |
+
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
|
1746 |
+
engines: {node: '>=8'}
|
1747 |
+
|
1748 | |
1749 |
+
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
|
1750 |
+
engines: {node: '>=12'}
|
1751 |
+
|
1752 | |
1753 |
+
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
|
1754 |
+
engines: {node: '>=8'}
|
1755 |
+
|
1756 | |
1757 |
+
resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
|
1758 |
+
engines: {node: '>=12'}
|
1759 |
+
|
1760 | |
1761 |
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
1762 |
engines: {node: '>=8'}
|
1763 |
|
1764 | |
1765 |
+
resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
|
1766 |
+
engines: {node: '>=16 || 14 >=14.17'}
|
1767 |
+
hasBin: true
|
1768 |
+
|
1769 | |
1770 |
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
|
1771 |
engines: {node: '>=4'}
|
|
|
1774 |
resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==}
|
1775 |
engines: {node: '>=8'}
|
1776 |
|
1777 | |
1778 |
+
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
|
1779 |
+
engines: {node: '>= 0.4'}
|
1780 |
+
|
1781 | |
1782 |
resolution: {integrity: sha512-rpyNZYRw+/C+dYkcQ3Pr+rLxW4CfHpXjPDnG7lYhdRoUcZTUt+KEsX+94RGp/aVp/MQU35JCITv2T/beY4m+hw==}
|
1783 |
engines: {node: '>=12.17'}
|
1784 |
hasBin: true
|
1785 |
|
1786 | |
1787 |
+
resolution: {integrity: sha512-d9ZolCAIzom1nf/5p4LdD5zvjmgSxY0BGgdSvmXIoMYAiPdAW/dSpP7joCDYFY7r/HkEa2qmPtkgsu0xjQeQtw==}
|
1788 |
+
|
1789 | |
1790 |
+
resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
|
1791 |
+
peerDependencies:
|
1792 |
+
tailwindcss: '>=3.0.0 || insiders'
|
1793 |
+
|
1794 | |
1795 |
+
resolution: {integrity: sha512-KqjHOJKogOUt5Bs752ykCeiwvi0fKVkr5oqsFNt/8px/tA8scFPIlkygsf6jXrfCqGHz7VflA6+yytWuM+XhFw==}
|
1796 |
+
engines: {node: '>=14.0.0'}
|
1797 |
+
hasBin: true
|
1798 |
+
|
1799 | |
1800 |
resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
|
1801 |
|
1802 | |
1803 |
+
resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
|
1804 |
+
engines: {node: '>=0.8'}
|
1805 |
+
|
1806 | |
1807 |
+
resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
|
1808 |
+
|
1809 | |
1810 |
resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
|
1811 |
engines: {node: '>=4'}
|
|
|
1820 |
peerDependencies:
|
1821 |
typescript: '>=4.2.0'
|
1822 |
|
1823 | |
1824 |
+
resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==}
|
1825 |
+
|
1826 | |
1827 |
+
resolution: {integrity: sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==}
|
1828 |
+
hasBin: true
|
1829 |
+
peerDependencies:
|
1830 |
+
'@swc/core': '>=1.2.50'
|
1831 |
+
'@swc/wasm': '>=1.2.50'
|
1832 |
+
'@types/node': '*'
|
1833 |
+
typescript: '>=2.7'
|
1834 |
+
peerDependenciesMeta:
|
1835 |
+
'@swc/core':
|
1836 |
+
optional: true
|
1837 |
+
'@swc/wasm':
|
1838 |
+
optional: true
|
1839 |
+
|
1840 | |
1841 |
resolution: {integrity: sha512-gLXCKdN1/j47AiHiOkJN69hJmcbGTHI0ImLmbYLHykhgeN0jVGola9yVjFgzCUklsZQMW55o+dW7IXv3RCXDzA==}
|
1842 |
|
1843 | |
1844 |
+
resolution: {integrity: sha512-0flMz1lh74BR4wOvBjuh9olbnwqCPc35OOlfyzHba0Dc+QNUeWX/Gq2YTbnwcWPO3BMd8fkzRVrHcsR+a7z7rA==}
|
1845 |
+
engines: {node: '>=18.0.0'}
|
1846 |
+
hasBin: true
|
1847 |
+
|
1848 | |
1849 |
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
|
1850 |
engines: {node: '>= 0.8.0'}
|
|
|
1871 |
resolution: {integrity: sha512-W1+HdVRUl8fS3MZ9ogD51GOb46xMmhAZzR0WPw5jcgIZQJVvkddYzAl4YTU6g5w33Y1iRQLdIi2/1jhi2RNL0g==}
|
1872 |
engines: {node: '>=12.17'}
|
1873 |
|
1874 | |
1875 |
+
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
|
1876 |
+
|
1877 | |
1878 |
resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
|
1879 |
hasBin: true
|
|
|
1883 | |
1884 |
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
1885 |
|
1886 | |
1887 |
+
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
|
1888 |
+
|
1889 | |
1890 |
+
resolution: {integrity: sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==}
|
1891 |
+
|
1892 | |
1893 |
resolution: {integrity: sha512-FqrItQ4DT1NC4zCUqMB4c4AZORMKIa0m8/URVCZ77OZ/QSNeJ54bU1vrFADbDsuwfIPcgknRkmqakQcgnL4GiQ==}
|
1894 |
engines: {node: ^18.0.0 || >=20.0.0}
|
|
|
1933 |
resolution: {integrity: sha512-JNjcULU2e4KJwUNv6CHgI46UvDGitb6dGryHajXTDiLgg1/RiGoPSDw4kZfYnwGtEXf2ZMeIewDQgFGzkCB2Sg==}
|
1934 |
engines: {node: '>=12.17'}
|
1935 |
|
1936 | |
1937 |
+
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
|
1938 |
+
engines: {node: '>=10'}
|
1939 |
+
|
1940 | |
1941 |
+
resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
|
1942 |
+
engines: {node: '>=12'}
|
1943 |
+
|
1944 | |
1945 |
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
|
1946 |
|
1947 | |
1948 |
+
resolution: {integrity: sha512-bLQOjaX/ADgQ20isPJRvF0iRUHIxVhYvr53Of7wGcWlO2jvtUlH5m87DsmulFVxRpNLOnI4tB6p/oh8D7kpn9Q==}
|
1949 |
+
engines: {node: '>= 14'}
|
1950 |
+
hasBin: true
|
1951 |
+
|
1952 | |
1953 |
+
resolution: {integrity: sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==}
|
1954 |
+
engines: {node: '>=6'}
|
1955 |
+
|
1956 | |
1957 |
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
|
1958 |
engines: {node: '>=10'}
|
|
|
1964 |
lodash: 4.17.21
|
1965 |
typical: 7.2.0
|
1966 |
|
1967 |
+
'@alloc/[email protected]': {}
|
1968 |
+
|
1969 |
'@ampproject/[email protected]':
|
1970 |
dependencies:
|
1971 |
'@jridgewell/gen-mapping': 0.3.5
|
|
|
2095 |
'@babel/helper-validator-identifier': 7.25.7
|
2096 |
to-fast-properties: 2.0.0
|
2097 |
|
2098 |
+
'@cspotcode/[email protected]':
|
2099 |
+
dependencies:
|
2100 |
+
'@jridgewell/trace-mapping': 0.3.9
|
2101 |
+
optional: true
|
2102 |
+
|
2103 |
'@duckdb/[email protected]':
|
2104 |
dependencies:
|
2105 |
apache-arrow: 14.0.2
|
|
|
2107 |
'@esbuild/[email protected]':
|
2108 |
optional: true
|
2109 |
|
2110 |
+
'@esbuild/[email protected]':
|
2111 |
+
optional: true
|
2112 |
+
|
2113 |
'@esbuild/[email protected]':
|
2114 |
optional: true
|
2115 |
|
2116 |
+
'@esbuild/[email protected]':
|
2117 |
+
optional: true
|
2118 |
+
|
2119 |
'@esbuild/[email protected]':
|
2120 |
optional: true
|
2121 |
|
2122 |
+
'@esbuild/[email protected]':
|
2123 |
+
optional: true
|
2124 |
+
|
2125 |
'@esbuild/[email protected]':
|
2126 |
optional: true
|
2127 |
|
2128 |
+
'@esbuild/[email protected]':
|
2129 |
+
optional: true
|
2130 |
+
|
2131 |
'@esbuild/[email protected]':
|
2132 |
optional: true
|
2133 |
|
2134 |
+
'@esbuild/[email protected]':
|
2135 |
+
optional: true
|
2136 |
+
|
2137 |
'@esbuild/[email protected]':
|
2138 |
optional: true
|
2139 |
|
2140 |
+
'@esbuild/[email protected]':
|
2141 |
+
optional: true
|
2142 |
+
|
2143 |
'@esbuild/[email protected]':
|
2144 |
optional: true
|
2145 |
|
2146 |
+
'@esbuild/[email protected]':
|
2147 |
+
optional: true
|
2148 |
+
|
2149 |
'@esbuild/[email protected]':
|
2150 |
optional: true
|
2151 |
|
2152 |
+
'@esbuild/[email protected]':
|
2153 |
+
optional: true
|
2154 |
+
|
2155 |
'@esbuild/[email protected]':
|
2156 |
optional: true
|
2157 |
|
2158 |
+
'@esbuild/[email protected]':
|
2159 |
+
optional: true
|
2160 |
+
|
2161 |
'@esbuild/[email protected]':
|
2162 |
optional: true
|
2163 |
|
2164 |
+
'@esbuild/[email protected]':
|
2165 |
+
optional: true
|
2166 |
+
|
2167 |
'@esbuild/[email protected]':
|
2168 |
optional: true
|
2169 |
|
2170 |
+
'@esbuild/[email protected]':
|
2171 |
+
optional: true
|
2172 |
+
|
2173 |
'@esbuild/[email protected]':
|
2174 |
optional: true
|
2175 |
|
2176 |
+
'@esbuild/[email protected]':
|
2177 |
+
optional: true
|
2178 |
+
|
2179 |
'@esbuild/[email protected]':
|
2180 |
optional: true
|
2181 |
|
2182 |
+
'@esbuild/[email protected]':
|
2183 |
+
optional: true
|
2184 |
+
|
2185 |
'@esbuild/[email protected]':
|
2186 |
optional: true
|
2187 |
|
2188 |
+
'@esbuild/[email protected]':
|
2189 |
+
optional: true
|
2190 |
+
|
2191 |
'@esbuild/[email protected]':
|
2192 |
optional: true
|
2193 |
|
2194 |
+
'@esbuild/[email protected]':
|
2195 |
+
optional: true
|
2196 |
+
|
2197 |
'@esbuild/[email protected]':
|
2198 |
optional: true
|
2199 |
|
2200 |
+
'@esbuild/[email protected]':
|
2201 |
+
optional: true
|
2202 |
+
|
2203 |
'@esbuild/[email protected]':
|
2204 |
optional: true
|
2205 |
|
2206 |
+
'@esbuild/[email protected]':
|
2207 |
+
optional: true
|
2208 |
+
|
2209 |
'@esbuild/[email protected]':
|
2210 |
optional: true
|
2211 |
|
2212 |
+
'@esbuild/[email protected]':
|
2213 |
+
optional: true
|
2214 |
+
|
2215 |
+
'@esbuild/[email protected]':
|
2216 |
+
optional: true
|
2217 |
+
|
2218 |
'@esbuild/[email protected]':
|
2219 |
optional: true
|
2220 |
|
2221 |
+
'@esbuild/[email protected]':
|
2222 |
+
optional: true
|
2223 |
+
|
2224 |
'@esbuild/[email protected]':
|
2225 |
optional: true
|
2226 |
|
2227 |
+
'@esbuild/[email protected]':
|
2228 |
+
optional: true
|
2229 |
+
|
2230 |
'@esbuild/[email protected]':
|
2231 |
optional: true
|
2232 |
|
2233 |
+
'@esbuild/[email protected]':
|
2234 |
+
optional: true
|
2235 |
+
|
2236 |
'@esbuild/[email protected]':
|
2237 |
optional: true
|
2238 |
|
2239 |
+
'@esbuild/[email protected]':
|
2240 |
+
optional: true
|
2241 |
+
|
2242 |
'@esbuild/[email protected]':
|
2243 |
optional: true
|
2244 |
|
2245 |
+
'@esbuild/win32-x64@0.23.1':
|
2246 |
+
optional: true
|
2247 |
+
|
2248 |
+
'@eslint-community/[email protected]([email protected]([email protected]))':
|
2249 |
dependencies:
|
2250 |
+
eslint: 9.12.0([email protected])
|
2251 |
eslint-visitor-keys: 3.4.3
|
2252 |
|
2253 |
'@eslint-community/[email protected]': {}
|
|
|
2276 |
transitivePeerDependencies:
|
2277 |
- supports-color
|
2278 |
|
2279 |
+
'@eslint/[email protected]': {}
|
2280 |
+
|
2281 |
+
'@eslint/[email protected]': {}
|
2282 |
+
|
2283 |
+
'@eslint/[email protected]':
|
2284 |
+
dependencies:
|
2285 |
+
levn: 0.4.1
|
2286 |
+
|
2287 |
+
'@floating-ui/[email protected]':
|
2288 |
+
dependencies:
|
2289 |
+
'@floating-ui/utils': 0.2.8
|
2290 |
+
|
2291 |
+
'@floating-ui/[email protected]':
|
2292 |
+
dependencies:
|
2293 |
+
'@floating-ui/core': 1.6.8
|
2294 |
+
'@floating-ui/utils': 0.2.8
|
2295 |
+
|
2296 |
+
'@floating-ui/[email protected]([email protected]([email protected]))([email protected])':
|
2297 |
+
dependencies:
|
2298 |
+
'@floating-ui/dom': 1.6.11
|
2299 |
+
react: 18.3.1
|
2300 |
+
react-dom: 18.3.1([email protected])
|
2301 |
+
|
2302 |
+
'@floating-ui/[email protected]': {}
|
2303 |
+
|
2304 |
+
'@humanfs/[email protected]': {}
|
2305 |
+
|
2306 |
+
'@humanfs/[email protected]':
|
2307 |
+
dependencies:
|
2308 |
+
'@humanfs/core': 0.19.0
|
2309 |
+
'@humanwhocodes/retry': 0.3.1
|
2310 |
+
|
2311 |
+
'@humanwhocodes/[email protected]': {}
|
2312 |
+
|
2313 |
+
'@humanwhocodes/[email protected]': {}
|
2314 |
+
|
2315 |
+
'@isaacs/[email protected]':
|
2316 |
+
dependencies:
|
2317 |
+
string-width: 5.1.2
|
2318 |
+
string-width-cjs: [email protected]
|
2319 |
+
strip-ansi: 7.1.0
|
2320 |
+
strip-ansi-cjs: [email protected]
|
2321 |
+
wrap-ansi: 8.1.0
|
2322 |
+
wrap-ansi-cjs: [email protected]
|
2323 |
+
|
2324 |
+
'@jridgewell/[email protected]':
|
2325 |
+
dependencies:
|
2326 |
+
'@jridgewell/set-array': 1.2.1
|
2327 |
+
'@jridgewell/sourcemap-codec': 1.5.0
|
2328 |
+
'@jridgewell/trace-mapping': 0.3.25
|
2329 |
+
|
2330 |
+
'@jridgewell/[email protected]': {}
|
2331 |
+
|
2332 |
+
'@jridgewell/[email protected]': {}
|
2333 |
+
|
2334 |
+
'@jridgewell/[email protected]': {}
|
2335 |
+
|
2336 |
+
'@jridgewell/[email protected]':
|
2337 |
+
dependencies:
|
2338 |
+
'@jridgewell/resolve-uri': 3.1.2
|
2339 |
+
'@jridgewell/sourcemap-codec': 1.5.0
|
2340 |
+
|
2341 |
+
'@jridgewell/[email protected]':
|
2342 |
+
dependencies:
|
2343 |
+
'@jridgewell/resolve-uri': 3.1.2
|
2344 |
+
'@jridgewell/sourcemap-codec': 1.5.0
|
2345 |
+
optional: true
|
2346 |
+
|
2347 |
+
'@nodelib/[email protected]':
|
2348 |
+
dependencies:
|
2349 |
+
'@nodelib/fs.stat': 2.0.5
|
2350 |
+
run-parallel: 1.2.0
|
2351 |
+
|
2352 |
+
'@nodelib/[email protected]': {}
|
2353 |
+
|
2354 |
+
'@nodelib/[email protected]':
|
2355 |
+
dependencies:
|
2356 |
+
'@nodelib/fs.scandir': 2.1.5
|
2357 |
+
fastq: 1.17.1
|
2358 |
+
|
2359 |
+
'@pkgjs/[email protected]':
|
2360 |
+
optional: true
|
2361 |
+
|
2362 |
+
'@radix-ui/[email protected]': {}
|
2363 |
+
|
2364 |
+
'@radix-ui/[email protected](@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])':
|
2365 |
+
dependencies:
|
2366 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
2367 |
+
react: 18.3.1
|
2368 |
+
react-dom: 18.3.1([email protected])
|
2369 |
+
optionalDependencies:
|
2370 |
+
'@types/react': 18.3.11
|
2371 |
+
'@types/react-dom': 18.3.0
|
2372 |
+
|
2373 |
+
'@radix-ui/[email protected](@types/[email protected])([email protected])':
|
2374 |
+
dependencies:
|
2375 |
+
react: 18.3.1
|
2376 |
+
optionalDependencies:
|
2377 |
+
'@types/react': 18.3.11
|
2378 |
+
|
2379 |
+
'@radix-ui/[email protected](@types/[email protected])([email protected])':
|
2380 |
+
dependencies:
|
2381 |
+
react: 18.3.1
|
2382 |
+
optionalDependencies:
|
2383 |
+
'@types/react': 18.3.11
|
2384 |
+
|
2385 |
+
'@radix-ui/[email protected](@types/[email protected])([email protected])':
|
2386 |
+
dependencies:
|
2387 |
+
react: 18.3.1
|
2388 |
+
optionalDependencies:
|
2389 |
+
'@types/react': 18.3.11
|
2390 |
+
|
2391 |
+
'@radix-ui/[email protected](@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])':
|
2392 |
+
dependencies:
|
2393 |
+
'@radix-ui/primitive': 1.1.0
|
2394 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
|
2395 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
2396 |
+
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
|
2397 |
+
'@radix-ui/react-use-escape-keydown': 1.1.0(@types/[email protected])([email protected])
|
2398 |
+
react: 18.3.1
|
2399 |
+
react-dom: 18.3.1([email protected])
|
2400 |
+
optionalDependencies:
|
2401 |
+
'@types/react': 18.3.11
|
2402 |
+
'@types/react-dom': 18.3.0
|
2403 |
+
|
2404 |
+
'@radix-ui/[email protected](@types/[email protected])([email protected])':
|
2405 |
+
dependencies:
|
2406 |
+
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
|
2407 |
+
react: 18.3.1
|
2408 |
+
optionalDependencies:
|
2409 |
+
'@types/react': 18.3.11
|
2410 |
|
2411 |
+
'@radix-ui/react-popper@1.2.0(@types/[email protected])(@types/[email protected])([email protected].1(react@18.3.1))([email protected])':
|
2412 |
+
dependencies:
|
2413 |
+
'@floating-ui/react-dom': 2.1.2([email protected]([email protected]))([email protected])
|
2414 |
+
'@radix-ui/react-arrow': 1.1.0(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
2415 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
|
2416 |
+
'@radix-ui/react-context': 1.1.0(@types/[email protected])([email protected])
|
2417 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
2418 |
+
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
|
2419 |
+
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
|
2420 |
+
'@radix-ui/react-use-rect': 1.1.0(@types/[email protected])([email protected])
|
2421 |
+
'@radix-ui/react-use-size': 1.1.0(@types/[email protected])([email protected])
|
2422 |
+
'@radix-ui/rect': 1.1.0
|
2423 |
+
react: 18.3.1
|
2424 |
+
react-dom: 18.3.1([email protected])
|
2425 |
+
optionalDependencies:
|
2426 |
+
'@types/react': 18.3.11
|
2427 |
+
'@types/react-dom': 18.3.0
|
2428 |
|
2429 |
+
'@radix-ui/react-portal@1.1.2(@types/react-dom@18.3.0)(@types/[email protected])([email protected]([email protected]))([email protected])':
|
2430 |
dependencies:
|
2431 |
+
'@radix-ui/react-primitive': 2.0.0(@types/react-dom@18.3.0)(@types/[email protected])([email protected].1([email protected]))([email protected])
|
2432 |
+
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
|
2433 |
+
react: 18.3.1
|
2434 |
+
react-dom: 18.3.1([email protected])
|
2435 |
+
optionalDependencies:
|
2436 |
+
'@types/react': 18.3.11
|
2437 |
+
'@types/react-dom': 18.3.0
|
2438 |
|
2439 |
+
'@radix-ui/react-presence@1.1.1(@types/[email protected].0)(@types/react@18.3.11)([email protected]([email protected]))([email protected])':
|
2440 |
+
dependencies:
|
2441 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
|
2442 |
+
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
|
2443 |
+
react: 18.3.1
|
2444 |
+
react-dom: 18.3.1([email protected])
|
2445 |
+
optionalDependencies:
|
2446 |
+
'@types/react': 18.3.11
|
2447 |
+
'@types/react-dom': 18.3.0
|
2448 |
|
2449 |
+
'@radix-ui/react-primitive@2.0.0(@types/react-dom@18.3.0)(@types/[email protected])([email protected]([email protected]))([email protected])':
|
2450 |
dependencies:
|
2451 |
+
'@radix-ui/react-slot': 1.1.0(@types/react@18.3.11)([email protected])
|
2452 |
+
react: 18.3.1
|
2453 |
+
react-dom: 18.3.1([email protected])
|
2454 |
+
optionalDependencies:
|
2455 |
+
'@types/react': 18.3.11
|
2456 |
+
'@types/react-dom': 18.3.0
|
2457 |
|
2458 |
+
'@radix-ui/react-slot@1.1.0(@types/react@18.3.11)([email protected].1)':
|
2459 |
+
dependencies:
|
2460 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
|
2461 |
+
react: 18.3.1
|
2462 |
+
optionalDependencies:
|
2463 |
+
'@types/react': 18.3.11
|
2464 |
|
2465 |
+
'@radix-ui/react-tooltip@1.1.3(@types/[email protected].0)(@types/react@18.3.11)([email protected].1([email protected]))([email protected])':
|
2466 |
+
dependencies:
|
2467 |
+
'@radix-ui/primitive': 1.1.0
|
2468 |
+
'@radix-ui/react-compose-refs': 1.1.0(@types/[email protected])([email protected])
|
2469 |
+
'@radix-ui/react-context': 1.1.1(@types/[email protected])([email protected])
|
2470 |
+
'@radix-ui/react-dismissable-layer': 1.1.1(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
2471 |
+
'@radix-ui/react-id': 1.1.0(@types/[email protected])([email protected])
|
2472 |
+
'@radix-ui/react-popper': 1.2.0(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
2473 |
+
'@radix-ui/react-portal': 1.1.2(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
2474 |
+
'@radix-ui/react-presence': 1.1.1(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
2475 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
2476 |
+
'@radix-ui/react-slot': 1.1.0(@types/[email protected])([email protected])
|
2477 |
+
'@radix-ui/react-use-controllable-state': 1.1.0(@types/[email protected])([email protected])
|
2478 |
+
'@radix-ui/react-visually-hidden': 1.1.0(@types/[email protected])(@types/[email protected])([email protected]([email protected]))([email protected])
|
2479 |
+
react: 18.3.1
|
2480 |
+
react-dom: 18.3.1([email protected])
|
2481 |
+
optionalDependencies:
|
2482 |
+
'@types/react': 18.3.11
|
2483 |
+
'@types/react-dom': 18.3.0
|
2484 |
|
2485 |
+
'@radix-ui/react-use-callback-ref@1.1.0(@types/react@18.3.11)([email protected])':
|
2486 |
dependencies:
|
2487 |
+
react: 18.3.1
|
2488 |
+
optionalDependencies:
|
2489 |
+
'@types/react': 18.3.11
|
|
|
|
|
2490 |
|
2491 |
+
'@radix-ui/react-use-controllable-state@1.1.0(@types/[email protected])([email protected].1)':
|
2492 |
+
dependencies:
|
2493 |
+
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
|
2494 |
+
react: 18.3.1
|
2495 |
+
optionalDependencies:
|
2496 |
+
'@types/react': 18.3.11
|
2497 |
|
2498 |
+
'@radix-ui/react-use-escape-keydown@1.1.0(@types/[email protected])([email protected])':
|
2499 |
+
dependencies:
|
2500 |
+
'@radix-ui/react-use-callback-ref': 1.1.0(@types/[email protected])([email protected])
|
2501 |
+
react: 18.3.1
|
2502 |
+
optionalDependencies:
|
2503 |
+
'@types/react': 18.3.11
|
2504 |
|
2505 |
+
'@radix-ui/react-use-layout-effect@1.1.0(@types/react@18.3.11)([email protected])':
|
2506 |
dependencies:
|
2507 |
+
react: 18.3.1
|
2508 |
+
optionalDependencies:
|
2509 |
+
'@types/react': 18.3.11
|
2510 |
|
2511 |
+
'@radix-ui/react-use-rect@1.1.0(@types/react@18.3.11)([email protected].1)':
|
2512 |
dependencies:
|
2513 |
+
'@radix-ui/rect': 1.1.0
|
2514 |
+
react: 18.3.1
|
2515 |
+
optionalDependencies:
|
2516 |
+
'@types/react': 18.3.11
|
2517 |
|
2518 |
+
'@radix-ui/react-use-size@1.1.0(@types/react@18.3.11)([email protected])':
|
2519 |
+
dependencies:
|
2520 |
+
'@radix-ui/react-use-layout-effect': 1.1.0(@types/[email protected])([email protected])
|
2521 |
+
react: 18.3.1
|
2522 |
+
optionalDependencies:
|
2523 |
+
'@types/react': 18.3.11
|
2524 |
|
2525 |
+
'@radix-ui/react-visually-hidden@1.1.0(@types/[email protected])(@types/[email protected])([email protected].1(react@18.3.1))([email protected])':
|
2526 |
dependencies:
|
2527 |
+
'@radix-ui/react-primitive': 2.0.0(@types/[email protected])(@types/[email protected])([email protected].1(react@18.3.1))([email protected])
|
2528 |
+
react: 18.3.1
|
2529 |
+
react-dom: 18.3.1([email protected])
|
2530 |
+
optionalDependencies:
|
2531 |
+
'@types/react': 18.3.11
|
2532 |
+
'@types/react-dom': 18.3.0
|
2533 |
+
|
2534 |
+
'@radix-ui/[email protected]': {}
|
2535 |
|
2536 |
'@rollup/[email protected]':
|
2537 |
optional: true
|
|
|
2581 |
'@rollup/[email protected]':
|
2582 |
optional: true
|
2583 |
|
2584 |
+
'@tsconfig/[email protected]':
|
2585 |
+
optional: true
|
2586 |
+
|
2587 |
+
'@tsconfig/[email protected]':
|
2588 |
+
optional: true
|
2589 |
+
|
2590 |
+
'@tsconfig/[email protected]':
|
2591 |
+
optional: true
|
2592 |
+
|
2593 |
+
'@tsconfig/[email protected]':
|
2594 |
+
optional: true
|
2595 |
+
|
2596 |
'@types/[email protected]':
|
2597 |
dependencies:
|
2598 |
'@babel/parser': 7.25.7
|
|
|
2624 |
|
2625 |
'@types/[email protected]': {}
|
2626 |
|
2627 |
+
'@types/[email protected]':
|
2628 |
+
dependencies:
|
2629 |
+
undici-types: 6.19.8
|
2630 |
+
|
2631 |
'@types/[email protected]': {}
|
2632 |
|
2633 |
'@types/[email protected]': {}
|
|
|
2641 |
'@types/prop-types': 15.7.13
|
2642 |
csstype: 3.1.3
|
2643 |
|
2644 |
+
'@typescript-eslint/[email protected](@typescript-eslint/[email protected]([email protected]([email protected]))([email protected]))([email protected]([email protected]))([email protected])':
|
2645 |
dependencies:
|
2646 |
'@eslint-community/regexpp': 4.11.1
|
2647 |
+
'@typescript-eslint/parser': 8.8.0([email protected]([email protected]))([email protected])
|
2648 |
'@typescript-eslint/scope-manager': 8.8.0
|
2649 |
+
'@typescript-eslint/type-utils': 8.8.0([email protected]([email protected]))([email protected])
|
2650 |
+
'@typescript-eslint/utils': 8.8.0([email protected]([email protected]))([email protected])
|
2651 |
'@typescript-eslint/visitor-keys': 8.8.0
|
2652 |
+
eslint: 9.12.0([email protected])
|
2653 |
graphemer: 1.4.0
|
2654 |
ignore: 5.3.2
|
2655 |
natural-compare: 1.4.0
|
|
|
2659 |
transitivePeerDependencies:
|
2660 |
- supports-color
|
2661 |
|
2662 |
+
'@typescript-eslint/[email protected]([email protected]([email protected]))([email protected])':
|
2663 |
dependencies:
|
2664 |
'@typescript-eslint/scope-manager': 8.8.0
|
2665 |
'@typescript-eslint/types': 8.8.0
|
2666 |
'@typescript-eslint/typescript-estree': 8.8.0([email protected])
|
2667 |
'@typescript-eslint/visitor-keys': 8.8.0
|
2668 |
debug: 4.3.7
|
2669 |
+
eslint: 9.12.0([email protected])
|
2670 |
optionalDependencies:
|
2671 |
typescript: 5.6.2
|
2672 |
transitivePeerDependencies:
|
|
|
2677 |
'@typescript-eslint/types': 8.8.0
|
2678 |
'@typescript-eslint/visitor-keys': 8.8.0
|
2679 |
|
2680 |
+
'@typescript-eslint/[email protected]([email protected]([email protected]))([email protected])':
|
2681 |
dependencies:
|
2682 |
'@typescript-eslint/typescript-estree': 8.8.0([email protected])
|
2683 |
+
'@typescript-eslint/utils': 8.8.0([email protected]([email protected]))([email protected])
|
2684 |
debug: 4.3.7
|
2685 |
ts-api-utils: 1.3.0([email protected])
|
2686 |
optionalDependencies:
|
|
|
2706 |
transitivePeerDependencies:
|
2707 |
- supports-color
|
2708 |
|
2709 |
+
'@typescript-eslint/[email protected]([email protected]([email protected]))([email protected])':
|
2710 |
dependencies:
|
2711 |
+
'@eslint-community/eslint-utils': 4.4.0([email protected]([email protected]))
|
2712 |
'@typescript-eslint/scope-manager': 8.8.0
|
2713 |
'@typescript-eslint/types': 8.8.0
|
2714 |
'@typescript-eslint/typescript-estree': 8.8.0([email protected])
|
2715 |
+
eslint: 9.12.0([email protected])
|
2716 |
transitivePeerDependencies:
|
2717 |
- supports-color
|
2718 |
- typescript
|
|
|
2722 |
'@typescript-eslint/types': 8.8.0
|
2723 |
eslint-visitor-keys: 3.4.3
|
2724 |
|
2725 |
+
'@vitejs/[email protected]([email protected](@types/node@22.7.4))':
|
2726 |
dependencies:
|
2727 |
'@babel/core': 7.25.7
|
2728 |
'@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/[email protected])
|
2729 |
'@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/[email protected])
|
2730 |
'@types/babel__core': 7.20.5
|
2731 |
react-refresh: 0.14.2
|
2732 |
+
vite: 5.4.8(@types/node@22.7.4)
|
2733 |
transitivePeerDependencies:
|
2734 |
- supports-color
|
2735 |
|
|
|
2737 |
dependencies:
|
2738 |
acorn: 8.12.1
|
2739 |
|
2740 | |
2741 |
+
dependencies:
|
2742 |
+
acorn: 8.12.1
|
2743 |
+
optional: true
|
2744 |
+
|
2745 | |
2746 |
|
2747 | |
|
|
2751 |
json-schema-traverse: 0.4.1
|
2752 |
uri-js: 4.4.1
|
2753 |
|
2754 |
+
[email protected]: {}
|
2755 |
+
|
2756 |
+
[email protected]: {}
|
2757 |
+
|
2758 | |
2759 |
dependencies:
|
2760 |
color-convert: 1.9.3
|
|
|
2763 |
dependencies:
|
2764 |
color-convert: 2.0.1
|
2765 |
|
2766 |
+
[email protected]: {}
|
2767 |
+
|
2768 |
+
[email protected]: {}
|
2769 |
+
|
2770 | |
2771 |
+
dependencies:
|
2772 |
+
normalize-path: 3.0.0
|
2773 |
+
picomatch: 2.3.1
|
2774 |
+
|
2775 | |
2776 |
dependencies:
|
2777 |
'@types/command-line-args': 5.2.0
|
|
|
2785 |
pad-left: 2.1.0
|
2786 |
tslib: 2.7.0
|
2787 |
|
2788 | |
2789 |
+
optional: true
|
2790 |
+
|
2791 |
+
[email protected]: {}
|
2792 |
+
|
2793 | |
2794 |
|
2795 | |
2796 |
|
2797 | |
2798 |
|
2799 | |
2800 |
+
dependencies:
|
2801 |
+
browserslist: 4.24.0
|
2802 |
+
caniuse-lite: 1.0.30001667
|
2803 |
+
fraction.js: 4.3.7
|
2804 |
+
normalize-range: 0.1.2
|
2805 |
+
picocolors: 1.1.0
|
2806 |
+
postcss: 8.4.47
|
2807 |
+
postcss-value-parser: 4.2.0
|
2808 |
+
|
2809 | |
2810 |
|
2811 |
+
[email protected]: {}
|
2812 |
+
|
2813 | |
2814 |
dependencies:
|
2815 |
balanced-match: 1.0.2
|
|
|
2832 |
|
2833 | |
2834 |
|
2835 |
+
[email protected]: {}
|
2836 |
+
|
2837 | |
2838 |
|
2839 | |
|
|
2851 |
ansi-styles: 4.3.0
|
2852 |
supports-color: 7.2.0
|
2853 |
|
2854 | |
2855 |
+
dependencies:
|
2856 |
+
anymatch: 3.1.3
|
2857 |
+
braces: 3.0.3
|
2858 |
+
glob-parent: 5.1.2
|
2859 |
+
is-binary-path: 2.1.0
|
2860 |
+
is-glob: 4.0.3
|
2861 |
+
normalize-path: 3.0.0
|
2862 |
+
readdirp: 3.6.0
|
2863 |
+
optionalDependencies:
|
2864 |
+
fsevents: 2.3.3
|
2865 |
+
|
2866 | |
2867 |
+
dependencies:
|
2868 |
+
clsx: 2.0.0
|
2869 |
+
|
2870 |
+
[email protected]: {}
|
2871 |
+
|
2872 |
+
[email protected]: {}
|
2873 |
+
|
2874 | |
2875 |
dependencies:
|
2876 |
color-name: 1.1.3
|
|
|
2897 |
table-layout: 3.0.2
|
2898 |
typical: 7.2.0
|
2899 |
|
2900 |
+
[email protected]: {}
|
2901 |
+
|
2902 | |
2903 |
|
2904 | |
2905 |
|
2906 | |
2907 |
+
optional: true
|
2908 |
+
|
2909 | |
2910 |
dependencies:
|
2911 |
path-key: 3.1.1
|
2912 |
shebang-command: 2.0.0
|
2913 |
which: 2.0.2
|
2914 |
|
2915 |
+
[email protected]: {}
|
2916 |
+
|
2917 | |
2918 |
|
2919 | |
|
|
2922 |
|
2923 | |
2924 |
|
2925 |
+
[email protected]: {}
|
2926 |
+
|
2927 | |
2928 |
+
optional: true
|
2929 |
+
|
2930 |
+
[email protected]: {}
|
2931 |
+
|
2932 |
+
[email protected]: {}
|
2933 |
+
|
2934 | |
2935 |
|
2936 |
+
[email protected]: {}
|
2937 |
+
|
2938 |
+
[email protected]: {}
|
2939 |
+
|
2940 | |
2941 |
optionalDependencies:
|
2942 |
'@esbuild/aix-ppc64': 0.21.5
|
|
|
2963 |
'@esbuild/win32-ia32': 0.21.5
|
2964 |
'@esbuild/win32-x64': 0.21.5
|
2965 |
|
2966 | |
2967 |
+
optionalDependencies:
|
2968 |
+
'@esbuild/aix-ppc64': 0.23.1
|
2969 |
+
'@esbuild/android-arm': 0.23.1
|
2970 |
+
'@esbuild/android-arm64': 0.23.1
|
2971 |
+
'@esbuild/android-x64': 0.23.1
|
2972 |
+
'@esbuild/darwin-arm64': 0.23.1
|
2973 |
+
'@esbuild/darwin-x64': 0.23.1
|
2974 |
+
'@esbuild/freebsd-arm64': 0.23.1
|
2975 |
+
'@esbuild/freebsd-x64': 0.23.1
|
2976 |
+
'@esbuild/linux-arm': 0.23.1
|
2977 |
+
'@esbuild/linux-arm64': 0.23.1
|
2978 |
+
'@esbuild/linux-ia32': 0.23.1
|
2979 |
+
'@esbuild/linux-loong64': 0.23.1
|
2980 |
+
'@esbuild/linux-mips64el': 0.23.1
|
2981 |
+
'@esbuild/linux-ppc64': 0.23.1
|
2982 |
+
'@esbuild/linux-riscv64': 0.23.1
|
2983 |
+
'@esbuild/linux-s390x': 0.23.1
|
2984 |
+
'@esbuild/linux-x64': 0.23.1
|
2985 |
+
'@esbuild/netbsd-x64': 0.23.1
|
2986 |
+
'@esbuild/openbsd-arm64': 0.23.1
|
2987 |
+
'@esbuild/openbsd-x64': 0.23.1
|
2988 |
+
'@esbuild/sunos-x64': 0.23.1
|
2989 |
+
'@esbuild/win32-arm64': 0.23.1
|
2990 |
+
'@esbuild/win32-ia32': 0.23.1
|
2991 |
+
'@esbuild/win32-x64': 0.23.1
|
2992 |
+
|
2993 | |
2994 |
|
2995 | |
2996 |
|
2997 | |
2998 |
|
2999 | |
3000 |
dependencies:
|
3001 |
+
eslint: 9.12.0([email protected])
|
3002 |
|
3003 | |
3004 |
dependencies:
|
3005 |
+
eslint: 9.12.0([email protected])
|
3006 |
|
3007 | |
3008 |
dependencies:
|
|
|
3013 |
|
3014 | |
3015 |
|
3016 | |
3017 |
dependencies:
|
3018 |
+
'@eslint-community/eslint-utils': 4.4.0([email protected]([email protected]))
|
3019 |
'@eslint-community/regexpp': 4.11.1
|
3020 |
'@eslint/config-array': 0.18.0
|
3021 |
'@eslint/core': 0.6.0
|
|
|
3050 |
natural-compare: 1.4.0
|
3051 |
optionator: 0.9.4
|
3052 |
text-table: 0.2.0
|
3053 |
+
optionalDependencies:
|
3054 |
+
jiti: 1.21.6
|
3055 |
transitivePeerDependencies:
|
3056 |
- supports-color
|
3057 |
|
|
|
3117 |
|
3118 | |
3119 |
|
3120 | |
3121 |
+
dependencies:
|
3122 |
+
cross-spawn: 7.0.3
|
3123 |
+
signal-exit: 4.1.0
|
3124 |
+
|
3125 |
+
[email protected]: {}
|
3126 |
+
|
3127 | |
3128 |
optional: true
|
3129 |
|
3130 |
+
[email protected]: {}
|
3131 |
+
|
3132 | |
3133 |
|
3134 | |
3135 |
+
dependencies:
|
3136 |
+
resolve-pkg-maps: 1.0.0
|
3137 |
+
|
3138 | |
3139 |
dependencies:
|
3140 |
is-glob: 4.0.3
|
|
|
3143 |
dependencies:
|
3144 |
is-glob: 4.0.3
|
3145 |
|
3146 | |
3147 |
+
dependencies:
|
3148 |
+
foreground-child: 3.3.0
|
3149 |
+
jackspeak: 3.4.3
|
3150 |
+
minimatch: 9.0.5
|
3151 |
+
minipass: 7.1.2
|
3152 |
+
package-json-from-dist: 1.0.1
|
3153 |
+
path-scurry: 1.11.1
|
3154 |
+
|
3155 | |
3156 |
|
3157 | |
|
|
3164 |
|
3165 | |
3166 |
|
3167 | |
3168 |
+
dependencies:
|
3169 |
+
function-bind: 1.1.2
|
3170 |
+
|
3171 | |
3172 |
|
3173 | |
|
|
3177 |
|
3178 | |
3179 |
|
3180 | |
3181 |
+
dependencies:
|
3182 |
+
binary-extensions: 2.3.0
|
3183 |
+
|
3184 | |
3185 |
+
dependencies:
|
3186 |
+
hasown: 2.0.2
|
3187 |
+
|
3188 | |
3189 |
|
3190 |
+
[email protected]: {}
|
3191 |
+
|
3192 | |
3193 |
dependencies:
|
3194 |
is-extglob: 2.1.1
|
|
|
3197 |
|
3198 | |
3199 |
|
3200 | |
3201 |
+
dependencies:
|
3202 |
+
'@isaacs/cliui': 8.0.2
|
3203 |
+
optionalDependencies:
|
3204 |
+
'@pkgjs/parseargs': 0.11.0
|
3205 |
+
|
3206 |
+
[email protected]: {}
|
3207 |
+
|
3208 | |
3209 |
|
3210 | |
|
|
3232 |
prelude-ls: 1.2.1
|
3233 |
type-check: 0.4.0
|
3234 |
|
3235 |
+
[email protected]: {}
|
3236 |
+
|
3237 |
+
[email protected]: {}
|
3238 |
+
|
3239 |
+
[email protected]: {}
|
3240 |
+
|
3241 | |
3242 |
dependencies:
|
3243 |
p-locate: 5.0.0
|
|
|
3252 |
dependencies:
|
3253 |
js-tokens: 4.0.0
|
3254 |
|
3255 |
+
[email protected]: {}
|
3256 |
+
|
3257 | |
3258 |
dependencies:
|
3259 |
yallist: 3.1.1
|
3260 |
|
3261 | |
3262 |
+
dependencies:
|
3263 |
+
react: 18.3.1
|
3264 |
+
|
3265 | |
3266 |
+
optional: true
|
3267 |
+
|
3268 | |
3269 |
|
3270 | |
|
|
3280 |
dependencies:
|
3281 |
brace-expansion: 2.0.1
|
3282 |
|
3283 |
+
[email protected]: {}
|
3284 |
+
|
3285 | |
3286 |
|
3287 | |
3288 |
+
dependencies:
|
3289 |
+
any-promise: 1.3.0
|
3290 |
+
object-assign: 4.1.1
|
3291 |
+
thenify-all: 1.6.0
|
3292 |
+
|
3293 | |
3294 |
|
3295 | |
3296 |
|
3297 | |
3298 |
|
3299 |
+
[email protected]: {}
|
3300 |
+
|
3301 |
+
[email protected]: {}
|
3302 |
+
|
3303 |
+
[email protected]: {}
|
3304 |
+
|
3305 |
+
[email protected]: {}
|
3306 |
+
|
3307 | |
3308 |
dependencies:
|
3309 |
deep-is: 0.1.4
|
|
|
3321 |
dependencies:
|
3322 |
p-limit: 3.1.0
|
3323 |
|
3324 |
+
[email protected]: {}
|
3325 |
+
|
3326 | |
3327 |
dependencies:
|
3328 |
repeat-string: 1.6.1
|
|
|
3335 |
|
3336 | |
3337 |
|
3338 |
+
[email protected]: {}
|
3339 |
+
|
3340 | |
3341 |
+
dependencies:
|
3342 |
+
lru-cache: 10.4.3
|
3343 |
+
minipass: 7.1.2
|
3344 |
+
|
3345 | |
3346 |
|
3347 | |
3348 |
|
3349 |
+
[email protected]: {}
|
3350 |
+
|
3351 |
+
[email protected]: {}
|
3352 |
+
|
3353 | |
3354 |
+
dependencies:
|
3355 |
+
postcss: 8.4.47
|
3356 |
+
postcss-value-parser: 4.2.0
|
3357 |
+
read-cache: 1.0.0
|
3358 |
+
resolve: 1.22.8
|
3359 |
+
|
3360 | |
3361 |
+
dependencies:
|
3362 |
+
camelcase-css: 2.0.1
|
3363 |
+
postcss: 8.4.47
|
3364 |
+
|
3365 | |
3366 |
+
dependencies:
|
3367 |
+
lilconfig: 3.1.2
|
3368 |
+
yaml: 2.5.1
|
3369 |
+
optionalDependencies:
|
3370 |
+
postcss: 8.4.47
|
3371 |
+
ts-node: 10.9.2(@types/[email protected])([email protected])
|
3372 |
+
|
3373 | |
3374 |
+
dependencies:
|
3375 |
+
postcss: 8.4.47
|
3376 |
+
postcss-selector-parser: 6.1.2
|
3377 |
+
|
3378 | |
3379 |
+
dependencies:
|
3380 |
+
cssesc: 3.0.0
|
3381 |
+
util-deprecate: 1.0.2
|
3382 |
+
|
3383 |
+
[email protected]: {}
|
3384 |
+
|
3385 | |
3386 |
dependencies:
|
3387 |
nanoid: 3.3.7
|
|
|
3406 |
dependencies:
|
3407 |
loose-envify: 1.4.0
|
3408 |
|
3409 | |
3410 |
+
dependencies:
|
3411 |
+
pify: 2.3.0
|
3412 |
+
|
3413 | |
3414 |
+
dependencies:
|
3415 |
+
picomatch: 2.3.1
|
3416 |
+
|
3417 | |
3418 |
|
3419 | |
3420 |
|
3421 |
+
[email protected]: {}
|
3422 |
+
|
3423 | |
3424 |
+
dependencies:
|
3425 |
+
is-core-module: 2.15.1
|
3426 |
+
path-parse: 1.0.7
|
3427 |
+
supports-preserve-symlinks-flag: 1.0.0
|
3428 |
+
|
3429 | |
3430 |
|
3431 | |
|
|
3468 |
|
3469 | |
3470 |
|
3471 |
+
[email protected]: {}
|
3472 |
+
|
3473 | |
3474 |
|
3475 | |
3476 |
|
3477 | |
3478 |
+
dependencies:
|
3479 |
+
emoji-regex: 8.0.0
|
3480 |
+
is-fullwidth-code-point: 3.0.0
|
3481 |
+
strip-ansi: 6.0.1
|
3482 |
+
|
3483 | |
3484 |
+
dependencies:
|
3485 |
+
eastasianwidth: 0.2.0
|
3486 |
+
emoji-regex: 9.2.2
|
3487 |
+
strip-ansi: 7.1.0
|
3488 |
+
|
3489 | |
3490 |
+
dependencies:
|
3491 |
+
ansi-regex: 5.0.1
|
3492 |
+
|
3493 | |
3494 |
+
dependencies:
|
3495 |
+
ansi-regex: 6.1.0
|
3496 |
+
|
3497 | |
3498 |
|
3499 | |
3500 |
+
dependencies:
|
3501 |
+
'@jridgewell/gen-mapping': 0.3.5
|
3502 |
+
commander: 4.1.1
|
3503 |
+
glob: 10.4.5
|
3504 |
+
lines-and-columns: 1.2.4
|
3505 |
+
mz: 2.7.0
|
3506 |
+
pirates: 4.0.6
|
3507 |
+
ts-interface-checker: 0.1.13
|
3508 |
+
|
3509 | |
3510 |
dependencies:
|
3511 |
has-flag: 3.0.0
|
|
|
3514 |
dependencies:
|
3515 |
has-flag: 4.0.0
|
3516 |
|
3517 |
+
[email protected]: {}
|
3518 |
+
|
3519 | |
3520 |
dependencies:
|
3521 |
'@75lb/deep-merge': 1.1.2
|
|
|
3526 |
typical: 7.2.0
|
3527 |
wordwrapjs: 5.1.0
|
3528 |
|
3529 |
+
[email protected]: {}
|
3530 |
+
|
3531 | |
3532 |
+
dependencies:
|
3533 |
+
tailwindcss: 3.4.13([email protected](@types/[email protected])([email protected]))
|
3534 |
+
|
3535 | |
3536 |
+
dependencies:
|
3537 |
+
'@alloc/quick-lru': 5.2.0
|
3538 |
+
arg: 5.0.2
|
3539 |
+
chokidar: 3.6.0
|
3540 |
+
didyoumean: 1.2.2
|
3541 |
+
dlv: 1.1.3
|
3542 |
+
fast-glob: 3.3.2
|
3543 |
+
glob-parent: 6.0.2
|
3544 |
+
is-glob: 4.0.3
|
3545 |
+
jiti: 1.21.6
|
3546 |
+
lilconfig: 2.1.0
|
3547 |
+
micromatch: 4.0.8
|
3548 |
+
normalize-path: 3.0.0
|
3549 |
+
object-hash: 3.0.0
|
3550 |
+
picocolors: 1.1.0
|
3551 |
+
postcss: 8.4.47
|
3552 |
+
postcss-import: 15.1.0([email protected])
|
3553 |
+
postcss-js: 4.0.1([email protected])
|
3554 |
+
postcss-load-config: 4.0.2([email protected])([email protected](@types/[email protected])([email protected]))
|
3555 |
+
postcss-nested: 6.2.0([email protected])
|
3556 |
+
postcss-selector-parser: 6.1.2
|
3557 |
+
resolve: 1.22.8
|
3558 |
+
sucrase: 3.35.0
|
3559 |
+
transitivePeerDependencies:
|
3560 |
+
- ts-node
|
3561 |
+
|
3562 | |
3563 |
|
3564 | |
3565 |
+
dependencies:
|
3566 |
+
thenify: 3.3.1
|
3567 |
+
|
3568 | |
3569 |
+
dependencies:
|
3570 |
+
any-promise: 1.3.0
|
3571 |
+
|
3572 | |
3573 |
|
3574 | |
|
|
3579 |
dependencies:
|
3580 |
typescript: 5.6.2
|
3581 |
|
3582 |
+
[email protected]: {}
|
3583 |
+
|
3584 |
+
[email protected](@types/[email protected])([email protected]):
|
3585 |
+
dependencies:
|
3586 |
+
'@cspotcode/source-map-support': 0.8.1
|
3587 |
+
'@tsconfig/node10': 1.0.11
|
3588 |
+
'@tsconfig/node12': 1.0.11
|
3589 |
+
'@tsconfig/node14': 1.0.3
|
3590 |
+
'@tsconfig/node16': 1.0.4
|
3591 |
+
'@types/node': 22.7.4
|
3592 |
+
acorn: 8.12.1
|
3593 |
+
acorn-walk: 8.3.4
|
3594 |
+
arg: 4.1.3
|
3595 |
+
create-require: 1.1.1
|
3596 |
+
diff: 4.0.2
|
3597 |
+
make-error: 1.3.6
|
3598 |
+
typescript: 5.6.2
|
3599 |
+
v8-compile-cache-lib: 3.0.1
|
3600 |
+
yn: 3.1.1
|
3601 |
+
optional: true
|
3602 |
+
|
3603 | |
3604 |
|
3605 | |
3606 |
+
dependencies:
|
3607 |
+
esbuild: 0.23.1
|
3608 |
+
get-tsconfig: 4.8.1
|
3609 |
+
optionalDependencies:
|
3610 |
+
fsevents: 2.3.3
|
3611 |
+
|
3612 | |
3613 |
dependencies:
|
3614 |
prelude-ls: 1.2.1
|
3615 |
|
3616 | |
3617 |
dependencies:
|
3618 |
+
'@typescript-eslint/eslint-plugin': 8.8.0(@typescript-eslint/[email protected]([email protected]([email protected]))([email protected]))([email protected]([email protected]))([email protected])
|
3619 |
+
'@typescript-eslint/parser': 8.8.0([email protected]([email protected]))([email protected])
|
3620 |
+
'@typescript-eslint/utils': 8.8.0([email protected]([email protected]))([email protected])
|
3621 |
optionalDependencies:
|
3622 |
typescript: 5.6.2
|
3623 |
transitivePeerDependencies:
|
|
|
3630 |
|
3631 | |
3632 |
|
3633 |
+
[email protected]: {}
|
3634 |
+
|
3635 | |
3636 |
dependencies:
|
3637 |
browserslist: 4.24.0
|
|
|
3642 |
dependencies:
|
3643 |
punycode: 2.3.1
|
3644 |
|
3645 |
+
util-deprecate@1.0.2: {}
|
3646 |
+
|
3647 | |
3648 |
+
optional: true
|
3649 |
+
|
3650 |
+
[email protected](@types/[email protected]):
|
3651 |
dependencies:
|
3652 |
esbuild: 0.21.5
|
3653 |
postcss: 8.4.47
|
3654 |
rollup: 4.24.0
|
3655 |
optionalDependencies:
|
3656 |
+
'@types/node': 22.7.4
|
3657 |
fsevents: 2.3.3
|
3658 |
|
3659 | |
|
|
3664 |
|
3665 | |
3666 |
|
3667 | |
3668 |
+
dependencies:
|
3669 |
+
ansi-styles: 4.3.0
|
3670 |
+
string-width: 4.2.3
|
3671 |
+
strip-ansi: 6.0.1
|
3672 |
+
|
3673 | |
3674 |
+
dependencies:
|
3675 |
+
ansi-styles: 6.2.1
|
3676 |
+
string-width: 5.1.2
|
3677 |
+
strip-ansi: 7.1.0
|
3678 |
+
|
3679 | |
3680 |
|
3681 |
+
[email protected]: {}
|
3682 |
+
|
3683 | |
3684 |
+
optional: true
|
3685 |
+
|
3686 |
postcss.config.mjs
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
export default {
|
2 |
+
plugins: {
|
3 |
+
tailwindcss: {},
|
4 |
+
autoprefixer: {},
|
5 |
+
},
|
6 |
+
}
|
src/App.css
DELETED
@@ -1,42 +0,0 @@
|
|
1 |
-
#root {
|
2 |
-
max-width: 1280px;
|
3 |
-
margin: 0 auto;
|
4 |
-
padding: 2rem;
|
5 |
-
text-align: center;
|
6 |
-
}
|
7 |
-
|
8 |
-
.logo {
|
9 |
-
height: 6em;
|
10 |
-
padding: 1.5em;
|
11 |
-
will-change: filter;
|
12 |
-
transition: filter 300ms;
|
13 |
-
}
|
14 |
-
.logo:hover {
|
15 |
-
filter: drop-shadow(0 0 2em #646cffaa);
|
16 |
-
}
|
17 |
-
.logo.react:hover {
|
18 |
-
filter: drop-shadow(0 0 2em #61dafbaa);
|
19 |
-
}
|
20 |
-
|
21 |
-
@keyframes logo-spin {
|
22 |
-
from {
|
23 |
-
transform: rotate(0deg);
|
24 |
-
}
|
25 |
-
to {
|
26 |
-
transform: rotate(360deg);
|
27 |
-
}
|
28 |
-
}
|
29 |
-
|
30 |
-
@media (prefers-reduced-motion: no-preference) {
|
31 |
-
a:nth-of-type(2) .logo {
|
32 |
-
animation: logo-spin infinite 20s linear;
|
33 |
-
}
|
34 |
-
}
|
35 |
-
|
36 |
-
.card {
|
37 |
-
padding: 2em;
|
38 |
-
}
|
39 |
-
|
40 |
-
.read-the-docs {
|
41 |
-
color: #888;
|
42 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
src/App.tsx
CHANGED
@@ -1,8 +1,9 @@
|
|
1 |
import { useEffect, useState } from "react";
|
2 |
-
import "./App.css";
|
3 |
import { createDb } from "./duck";
|
4 |
import { Table } from "./table";
|
5 |
import { AsyncDuckDBConnection } from "@duckdb/duckdb-wasm";
|
|
|
|
|
6 |
|
7 |
const DEFAULT_DATASET_URL =
|
8 |
"https://huggingface.co/datasets/openai/openai_humaneval/resolve/main/openai_humaneval/test-00000-of-00001.parquet";
|
@@ -104,46 +105,59 @@ function App() {
|
|
104 |
};
|
105 |
|
106 |
return (
|
107 |
-
|
108 |
-
<h1
|
109 |
-
<h2>
|
110 |
-
<form
|
111 |
-
|
112 |
-
|
|
|
|
|
|
|
113 |
name="textField"
|
114 |
onChange={(e) => setTextField(e.target.value)}
|
115 |
value={textField}
|
|
|
116 |
/>
|
117 |
-
<
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
</form>
|
140 |
-
<div>
|
141 |
-
|
142 |
-
|
|
|
143 |
{error && <p style={{ color: "red" }}>{error}</p>}
|
144 |
{dataset && <Table data={dataset} />}
|
145 |
</div>
|
146 |
-
|
147 |
);
|
148 |
}
|
149 |
|
|
|
1 |
import { useEffect, useState } from "react";
|
|
|
2 |
import { createDb } from "./duck";
|
3 |
import { Table } from "./table";
|
4 |
import { AsyncDuckDBConnection } from "@duckdb/duckdb-wasm";
|
5 |
+
import { Button } from "~/components/ui/button";
|
6 |
+
import { Textarea } from "~/components/ui/textarea";
|
7 |
|
8 |
const DEFAULT_DATASET_URL =
|
9 |
"https://huggingface.co/datasets/openai/openai_humaneval/resolve/main/openai_humaneval/test-00000-of-00001.parquet";
|
|
|
105 |
};
|
106 |
|
107 |
return (
|
108 |
+
<section className="flex flex-col gap-4 w-full pt-10 px-4 lg:pt-[15%] items-center min-h-screen">
|
109 |
+
<h1 className="text-4xl font-bold">📣🦆 Quack</h1>
|
110 |
+
<h2 className="text-2xl font-medium">View Parquet Datasets via URL</h2>
|
111 |
+
<form
|
112 |
+
onSubmit={handleSubmit}
|
113 |
+
className="lg:w-1/2 w-full flex flex-col gap-2"
|
114 |
+
>
|
115 |
+
<Textarea
|
116 |
+
rows={2}
|
117 |
name="textField"
|
118 |
onChange={(e) => setTextField(e.target.value)}
|
119 |
value={textField}
|
120 |
+
className="w-full lg:w-full"
|
121 |
/>
|
122 |
+
<div className="flex flex-row justify-between gap-2">
|
123 |
+
<Button
|
124 |
+
className="w-full"
|
125 |
+
type="submit"
|
126 |
+
disabled={!textField || textField === datasetUrl}
|
127 |
+
>
|
128 |
+
Load
|
129 |
+
</Button>
|
130 |
+
<Button
|
131 |
+
variant={"secondary"}
|
132 |
+
type="button"
|
133 |
+
onClick={() => {
|
134 |
+
setTextField(DEFAULT_DATASET_URL);
|
135 |
+
setDatasetUrl(DEFAULT_DATASET_URL);
|
136 |
+
}}
|
137 |
+
>
|
138 |
+
Load Default
|
139 |
+
</Button>
|
140 |
+
<Button
|
141 |
+
type="button"
|
142 |
+
variant={"destructive"}
|
143 |
+
onClick={() => {
|
144 |
+
setTextField("");
|
145 |
+
setDataset(null);
|
146 |
+
setDatasetUrl("");
|
147 |
+
}}
|
148 |
+
>
|
149 |
+
Clear
|
150 |
+
</Button>
|
151 |
+
</div>
|
152 |
</form>
|
153 |
+
<div className="flex flex-col gap-2 w-full max-w-full overflow-x-auto bg-secondary rounded">
|
154 |
+
{loading && (
|
155 |
+
<p className="text-lg font-medium self-center">Loading...</p>
|
156 |
+
)}
|
157 |
{error && <p style={{ color: "red" }}>{error}</p>}
|
158 |
{dataset && <Table data={dataset} />}
|
159 |
</div>
|
160 |
+
</section>
|
161 |
);
|
162 |
}
|
163 |
|
src/components/ui/button.tsx
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import * as React from "react"
|
2 |
+
import { Slot } from "@radix-ui/react-slot"
|
3 |
+
import { cva, type VariantProps } from "class-variance-authority"
|
4 |
+
|
5 |
+
import { cn } from "~/lib/utils"
|
6 |
+
|
7 |
+
const buttonVariants = cva(
|
8 |
+
"inline-flex items-center justify-center whitespace-nowrap rounded-md text-sm font-medium ring-offset-background transition-colors focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50",
|
9 |
+
{
|
10 |
+
variants: {
|
11 |
+
variant: {
|
12 |
+
default: "bg-primary text-primary-foreground hover:bg-primary/90",
|
13 |
+
destructive:
|
14 |
+
"bg-destructive text-destructive-foreground hover:bg-destructive/90",
|
15 |
+
outline:
|
16 |
+
"border border-input bg-background hover:bg-accent hover:text-accent-foreground",
|
17 |
+
secondary:
|
18 |
+
"bg-secondary text-secondary-foreground hover:bg-secondary/80",
|
19 |
+
ghost: "hover:bg-accent hover:text-accent-foreground",
|
20 |
+
link: "text-primary underline-offset-4 hover:underline",
|
21 |
+
},
|
22 |
+
size: {
|
23 |
+
default: "h-10 px-4 py-2",
|
24 |
+
sm: "h-9 rounded-md px-3",
|
25 |
+
lg: "h-11 rounded-md px-8",
|
26 |
+
icon: "h-10 w-10",
|
27 |
+
},
|
28 |
+
},
|
29 |
+
defaultVariants: {
|
30 |
+
variant: "default",
|
31 |
+
size: "default",
|
32 |
+
},
|
33 |
+
}
|
34 |
+
)
|
35 |
+
|
36 |
+
export interface ButtonProps
|
37 |
+
extends React.ButtonHTMLAttributes<HTMLButtonElement>,
|
38 |
+
VariantProps<typeof buttonVariants> {
|
39 |
+
asChild?: boolean
|
40 |
+
}
|
41 |
+
|
42 |
+
const Button = React.forwardRef<HTMLButtonElement, ButtonProps>(
|
43 |
+
({ className, variant, size, asChild = false, ...props }, ref) => {
|
44 |
+
const Comp = asChild ? Slot : "button"
|
45 |
+
return (
|
46 |
+
<Comp
|
47 |
+
className={cn(buttonVariants({ variant, size, className }))}
|
48 |
+
ref={ref}
|
49 |
+
{...props}
|
50 |
+
/>
|
51 |
+
)
|
52 |
+
}
|
53 |
+
)
|
54 |
+
Button.displayName = "Button"
|
55 |
+
|
56 |
+
export { Button, buttonVariants }
|
src/components/ui/card.tsx
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import * as React from "react"
|
2 |
+
|
3 |
+
import { cn } from "~/lib/utils"
|
4 |
+
|
5 |
+
const Card = React.forwardRef<
|
6 |
+
HTMLDivElement,
|
7 |
+
React.HTMLAttributes<HTMLDivElement>
|
8 |
+
>(({ className, ...props }, ref) => (
|
9 |
+
<div
|
10 |
+
ref={ref}
|
11 |
+
className={cn(
|
12 |
+
"rounded-lg border bg-card text-card-foreground shadow-sm",
|
13 |
+
className
|
14 |
+
)}
|
15 |
+
{...props}
|
16 |
+
/>
|
17 |
+
))
|
18 |
+
Card.displayName = "Card"
|
19 |
+
|
20 |
+
const CardHeader = React.forwardRef<
|
21 |
+
HTMLDivElement,
|
22 |
+
React.HTMLAttributes<HTMLDivElement>
|
23 |
+
>(({ className, ...props }, ref) => (
|
24 |
+
<div
|
25 |
+
ref={ref}
|
26 |
+
className={cn("flex flex-col space-y-1.5 p-6", className)}
|
27 |
+
{...props}
|
28 |
+
/>
|
29 |
+
))
|
30 |
+
CardHeader.displayName = "CardHeader"
|
31 |
+
|
32 |
+
const CardTitle = React.forwardRef<
|
33 |
+
HTMLParagraphElement,
|
34 |
+
React.HTMLAttributes<HTMLHeadingElement>
|
35 |
+
>(({ className, ...props }, ref) => (
|
36 |
+
<h3
|
37 |
+
ref={ref}
|
38 |
+
className={cn(
|
39 |
+
"text-2xl font-semibold leading-none tracking-tight",
|
40 |
+
className
|
41 |
+
)}
|
42 |
+
{...props}
|
43 |
+
/>
|
44 |
+
))
|
45 |
+
CardTitle.displayName = "CardTitle"
|
46 |
+
|
47 |
+
const CardDescription = React.forwardRef<
|
48 |
+
HTMLParagraphElement,
|
49 |
+
React.HTMLAttributes<HTMLParagraphElement>
|
50 |
+
>(({ className, ...props }, ref) => (
|
51 |
+
<p
|
52 |
+
ref={ref}
|
53 |
+
className={cn("text-sm text-muted-foreground", className)}
|
54 |
+
{...props}
|
55 |
+
/>
|
56 |
+
))
|
57 |
+
CardDescription.displayName = "CardDescription"
|
58 |
+
|
59 |
+
const CardContent = React.forwardRef<
|
60 |
+
HTMLDivElement,
|
61 |
+
React.HTMLAttributes<HTMLDivElement>
|
62 |
+
>(({ className, ...props }, ref) => (
|
63 |
+
<div ref={ref} className={cn("p-6 pt-0", className)} {...props} />
|
64 |
+
))
|
65 |
+
CardContent.displayName = "CardContent"
|
66 |
+
|
67 |
+
const CardFooter = React.forwardRef<
|
68 |
+
HTMLDivElement,
|
69 |
+
React.HTMLAttributes<HTMLDivElement>
|
70 |
+
>(({ className, ...props }, ref) => (
|
71 |
+
<div
|
72 |
+
ref={ref}
|
73 |
+
className={cn("flex items-center p-6 pt-0", className)}
|
74 |
+
{...props}
|
75 |
+
/>
|
76 |
+
))
|
77 |
+
CardFooter.displayName = "CardFooter"
|
78 |
+
|
79 |
+
export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }
|
src/components/ui/input.tsx
ADDED
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import * as React from "react"
|
2 |
+
|
3 |
+
import { cn } from "~/lib/utils"
|
4 |
+
|
5 |
+
export interface InputProps
|
6 |
+
extends React.InputHTMLAttributes<HTMLInputElement> {}
|
7 |
+
|
8 |
+
const Input = React.forwardRef<HTMLInputElement, InputProps>(
|
9 |
+
({ className, type, ...props }, ref) => {
|
10 |
+
return (
|
11 |
+
<input
|
12 |
+
type={type}
|
13 |
+
className={cn(
|
14 |
+
"flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
|
15 |
+
className
|
16 |
+
)}
|
17 |
+
ref={ref}
|
18 |
+
{...props}
|
19 |
+
/>
|
20 |
+
)
|
21 |
+
}
|
22 |
+
)
|
23 |
+
Input.displayName = "Input"
|
24 |
+
|
25 |
+
export { Input }
|
src/components/ui/table.tsx
ADDED
@@ -0,0 +1,117 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import * as React from "react"
|
2 |
+
|
3 |
+
import { cn } from "~/lib/utils"
|
4 |
+
|
5 |
+
const Table = React.forwardRef<
|
6 |
+
HTMLTableElement,
|
7 |
+
React.HTMLAttributes<HTMLTableElement>
|
8 |
+
>(({ className, ...props }, ref) => (
|
9 |
+
<div className="relative w-full overflow-auto">
|
10 |
+
<table
|
11 |
+
ref={ref}
|
12 |
+
className={cn("w-full caption-bottom text-sm", className)}
|
13 |
+
{...props}
|
14 |
+
/>
|
15 |
+
</div>
|
16 |
+
))
|
17 |
+
Table.displayName = "Table"
|
18 |
+
|
19 |
+
const TableHeader = React.forwardRef<
|
20 |
+
HTMLTableSectionElement,
|
21 |
+
React.HTMLAttributes<HTMLTableSectionElement>
|
22 |
+
>(({ className, ...props }, ref) => (
|
23 |
+
<thead ref={ref} className={cn("[&_tr]:border-b", className)} {...props} />
|
24 |
+
))
|
25 |
+
TableHeader.displayName = "TableHeader"
|
26 |
+
|
27 |
+
const TableBody = React.forwardRef<
|
28 |
+
HTMLTableSectionElement,
|
29 |
+
React.HTMLAttributes<HTMLTableSectionElement>
|
30 |
+
>(({ className, ...props }, ref) => (
|
31 |
+
<tbody
|
32 |
+
ref={ref}
|
33 |
+
className={cn("[&_tr:last-child]:border-0", className)}
|
34 |
+
{...props}
|
35 |
+
/>
|
36 |
+
))
|
37 |
+
TableBody.displayName = "TableBody"
|
38 |
+
|
39 |
+
const TableFooter = React.forwardRef<
|
40 |
+
HTMLTableSectionElement,
|
41 |
+
React.HTMLAttributes<HTMLTableSectionElement>
|
42 |
+
>(({ className, ...props }, ref) => (
|
43 |
+
<tfoot
|
44 |
+
ref={ref}
|
45 |
+
className={cn(
|
46 |
+
"border-t bg-muted/50 font-medium [&>tr]:last:border-b-0",
|
47 |
+
className
|
48 |
+
)}
|
49 |
+
{...props}
|
50 |
+
/>
|
51 |
+
))
|
52 |
+
TableFooter.displayName = "TableFooter"
|
53 |
+
|
54 |
+
const TableRow = React.forwardRef<
|
55 |
+
HTMLTableRowElement,
|
56 |
+
React.HTMLAttributes<HTMLTableRowElement>
|
57 |
+
>(({ className, ...props }, ref) => (
|
58 |
+
<tr
|
59 |
+
ref={ref}
|
60 |
+
className={cn(
|
61 |
+
"border-b transition-colors hover:bg-muted/50 data-[state=selected]:bg-muted",
|
62 |
+
className
|
63 |
+
)}
|
64 |
+
{...props}
|
65 |
+
/>
|
66 |
+
))
|
67 |
+
TableRow.displayName = "TableRow"
|
68 |
+
|
69 |
+
const TableHead = React.forwardRef<
|
70 |
+
HTMLTableCellElement,
|
71 |
+
React.ThHTMLAttributes<HTMLTableCellElement>
|
72 |
+
>(({ className, ...props }, ref) => (
|
73 |
+
<th
|
74 |
+
ref={ref}
|
75 |
+
className={cn(
|
76 |
+
"h-12 px-4 text-left align-middle font-medium text-muted-foreground [&:has([role=checkbox])]:pr-0",
|
77 |
+
className
|
78 |
+
)}
|
79 |
+
{...props}
|
80 |
+
/>
|
81 |
+
))
|
82 |
+
TableHead.displayName = "TableHead"
|
83 |
+
|
84 |
+
const TableCell = React.forwardRef<
|
85 |
+
HTMLTableCellElement,
|
86 |
+
React.TdHTMLAttributes<HTMLTableCellElement>
|
87 |
+
>(({ className, ...props }, ref) => (
|
88 |
+
<td
|
89 |
+
ref={ref}
|
90 |
+
className={cn("p-4 align-middle [&:has([role=checkbox])]:pr-0", className)}
|
91 |
+
{...props}
|
92 |
+
/>
|
93 |
+
))
|
94 |
+
TableCell.displayName = "TableCell"
|
95 |
+
|
96 |
+
const TableCaption = React.forwardRef<
|
97 |
+
HTMLTableCaptionElement,
|
98 |
+
React.HTMLAttributes<HTMLTableCaptionElement>
|
99 |
+
>(({ className, ...props }, ref) => (
|
100 |
+
<caption
|
101 |
+
ref={ref}
|
102 |
+
className={cn("mt-4 text-sm text-muted-foreground", className)}
|
103 |
+
{...props}
|
104 |
+
/>
|
105 |
+
))
|
106 |
+
TableCaption.displayName = "TableCaption"
|
107 |
+
|
108 |
+
export {
|
109 |
+
Table,
|
110 |
+
TableHeader,
|
111 |
+
TableBody,
|
112 |
+
TableFooter,
|
113 |
+
TableHead,
|
114 |
+
TableRow,
|
115 |
+
TableCell,
|
116 |
+
TableCaption,
|
117 |
+
}
|
src/components/ui/textarea.tsx
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import * as React from "react"
|
2 |
+
|
3 |
+
import { cn } from "~/lib/utils"
|
4 |
+
|
5 |
+
export interface TextareaProps
|
6 |
+
extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {}
|
7 |
+
|
8 |
+
const Textarea = React.forwardRef<HTMLTextAreaElement, TextareaProps>(
|
9 |
+
({ className, ...props }, ref) => {
|
10 |
+
return (
|
11 |
+
<textarea
|
12 |
+
className={cn(
|
13 |
+
"flex min-h-[80px] w-full rounded-md border border-input bg-background px-3 py-2 text-sm ring-offset-background placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50",
|
14 |
+
className
|
15 |
+
)}
|
16 |
+
ref={ref}
|
17 |
+
{...props}
|
18 |
+
/>
|
19 |
+
)
|
20 |
+
}
|
21 |
+
)
|
22 |
+
Textarea.displayName = "Textarea"
|
23 |
+
|
24 |
+
export { Textarea }
|
src/components/ui/tooltip.tsx
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import * as React from "react"
|
2 |
+
import * as TooltipPrimitive from "@radix-ui/react-tooltip"
|
3 |
+
|
4 |
+
import { cn } from "~/lib/utils"
|
5 |
+
|
6 |
+
const TooltipProvider = TooltipPrimitive.Provider
|
7 |
+
|
8 |
+
const Tooltip = TooltipPrimitive.Root
|
9 |
+
|
10 |
+
const TooltipTrigger = TooltipPrimitive.Trigger
|
11 |
+
|
12 |
+
const TooltipContent = React.forwardRef<
|
13 |
+
React.ElementRef<typeof TooltipPrimitive.Content>,
|
14 |
+
React.ComponentPropsWithoutRef<typeof TooltipPrimitive.Content>
|
15 |
+
>(({ className, sideOffset = 4, ...props }, ref) => (
|
16 |
+
<TooltipPrimitive.Content
|
17 |
+
ref={ref}
|
18 |
+
sideOffset={sideOffset}
|
19 |
+
className={cn(
|
20 |
+
"z-50 overflow-hidden rounded-md border bg-popover px-3 py-1.5 text-sm text-popover-foreground shadow-md animate-in fade-in-0 zoom-in-95 data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=closed]:zoom-out-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
21 |
+
className
|
22 |
+
)}
|
23 |
+
{...props}
|
24 |
+
/>
|
25 |
+
))
|
26 |
+
TooltipContent.displayName = TooltipPrimitive.Content.displayName
|
27 |
+
|
28 |
+
export { Tooltip, TooltipTrigger, TooltipContent, TooltipProvider }
|
src/index.css
CHANGED
@@ -1,68 +1,75 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
|
4 |
-
font-weight: 400;
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
font-size: 3.2em;
|
35 |
-
line-height: 1.1;
|
36 |
-
}
|
37 |
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
}
|
56 |
|
57 |
-
@
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
}
|
62 |
-
|
63 |
-
|
|
|
64 |
}
|
65 |
-
|
66 |
-
|
|
|
67 |
}
|
68 |
-
}
|
|
|
1 |
+
@tailwind base;
|
2 |
+
@tailwind components;
|
3 |
+
@tailwind utilities;
|
|
|
4 |
|
5 |
+
@layer base {
|
6 |
+
:root {
|
7 |
+
--background: 0 0% 100%;
|
8 |
+
--foreground: 20 14.3% 4.1%;
|
9 |
+
--card: 0 0% 100%;
|
10 |
+
--card-foreground: 20 14.3% 4.1%;
|
11 |
+
--popover: 0 0% 100%;
|
12 |
+
--popover-foreground: 20 14.3% 4.1%;
|
13 |
+
--primary: 24.6 95% 53.1%;
|
14 |
+
--primary-foreground: 60 9.1% 97.8%;
|
15 |
+
--secondary: 60 4.8% 95.9%;
|
16 |
+
--secondary-foreground: 24 9.8% 10%;
|
17 |
+
--muted: 60 4.8% 95.9%;
|
18 |
+
--muted-foreground: 25 5.3% 44.7%;
|
19 |
+
--accent: 60 4.8% 95.9%;
|
20 |
+
--accent-foreground: 24 9.8% 10%;
|
21 |
+
--destructive: 0 84.2% 60.2%;
|
22 |
+
--destructive-foreground: 60 9.1% 97.8%;
|
23 |
+
--border: 20 5.9% 90%;
|
24 |
+
--input: 20 5.9% 90%;
|
25 |
+
--ring: 24.6 95% 53.1%;
|
26 |
+
--radius: 1rem;
|
27 |
+
--chart-1: 12 76% 61%;
|
28 |
+
--chart-2: 173 58% 39%;
|
29 |
+
--chart-3: 197 37% 24%;
|
30 |
+
--chart-4: 43 74% 66%;
|
31 |
+
--chart-5: 27 87% 67%;
|
32 |
+
}
|
|
|
|
|
|
|
33 |
|
34 |
+
.dark {
|
35 |
+
--background: 20 14.3% 4.1%;
|
36 |
+
--foreground: 60 9.1% 97.8%;
|
37 |
+
--card: 20 14.3% 4.1%;
|
38 |
+
--card-foreground: 60 9.1% 97.8%;
|
39 |
+
--popover: 20 14.3% 4.1%;
|
40 |
+
--popover-foreground: 60 9.1% 97.8%;
|
41 |
+
--primary: 20.5 90.2% 48.2%;
|
42 |
+
--primary-foreground: 60 9.1% 97.8%;
|
43 |
+
--secondary: 12 6.5% 15.1%;
|
44 |
+
--secondary-foreground: 60 9.1% 97.8%;
|
45 |
+
--muted: 12 6.5% 15.1%;
|
46 |
+
--muted-foreground: 24 5.4% 63.9%;
|
47 |
+
--accent: 12 6.5% 15.1%;
|
48 |
+
--accent-foreground: 60 9.1% 97.8%;
|
49 |
+
--destructive: 0 72.2% 50.6%;
|
50 |
+
--destructive-foreground: 60 9.1% 97.8%;
|
51 |
+
--border: 12 6.5% 15.1%;
|
52 |
+
--input: 12 6.5% 15.1%;
|
53 |
+
--ring: 20.5 90.2% 48.2%;
|
54 |
+
--chart-1: 220 70% 50%;
|
55 |
+
--chart-2: 160 60% 45%;
|
56 |
+
--chart-3: 30 80% 55%;
|
57 |
+
--chart-4: 280 65% 60%;
|
58 |
+
--chart-5: 340 75% 55%;
|
59 |
+
}
|
60 |
}
|
61 |
|
62 |
+
@layer base {
|
63 |
+
body {
|
64 |
+
/* disable overscroll */
|
65 |
+
overscroll-behavior: none;
|
66 |
}
|
67 |
+
|
68 |
+
* {
|
69 |
+
@apply border-border;
|
70 |
}
|
71 |
+
|
72 |
+
body {
|
73 |
+
@apply bg-background text-foreground;
|
74 |
}
|
75 |
+
}
|
src/lib/utils.ts
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import { clsx, type ClassValue } from "clsx"
|
2 |
+
import { twMerge } from "tailwind-merge"
|
3 |
+
|
4 |
+
export function cn(...inputs: ClassValue[]) {
|
5 |
+
return twMerge(clsx(inputs))
|
6 |
+
}
|
src/main.tsx
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
import { StrictMode } from
|
2 |
-
import { createRoot } from
|
3 |
-
import App from
|
4 |
-
import
|
5 |
|
6 |
-
createRoot(document.getElementById(
|
7 |
<StrictMode>
|
8 |
<App />
|
9 |
-
</StrictMode
|
10 |
-
)
|
|
|
1 |
+
import { StrictMode } from "react";
|
2 |
+
import { createRoot } from "react-dom/client";
|
3 |
+
import App from "./App.tsx";
|
4 |
+
import "./index.css";
|
5 |
|
6 |
+
createRoot(document.getElementById("root")!).render(
|
7 |
<StrictMode>
|
8 |
<App />
|
9 |
+
</StrictMode>
|
10 |
+
);
|
src/table.tsx
CHANGED
@@ -1,4 +1,11 @@
|
|
1 |
import React, { useMemo } from "react";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
|
3 |
interface TableProps {
|
4 |
data: Record<string, unknown>[];
|
@@ -10,23 +17,25 @@ export const Table: React.FC<TableProps> = ({ data }) => {
|
|
10 |
if (data.length === 0) return null;
|
11 |
|
12 |
return (
|
13 |
-
<table>
|
14 |
-
<
|
15 |
-
<
|
16 |
{headers.map((header) => (
|
17 |
-
<
|
18 |
))}
|
19 |
-
</
|
20 |
-
</
|
21 |
-
<
|
22 |
{data.map((row, rowIndex) => (
|
23 |
-
<
|
24 |
{headers.map((header) => (
|
25 |
-
<
|
|
|
|
|
26 |
))}
|
27 |
-
</
|
28 |
))}
|
29 |
-
</
|
30 |
</table>
|
31 |
);
|
32 |
};
|
|
|
1 |
import React, { useMemo } from "react";
|
2 |
+
import {
|
3 |
+
TableBody,
|
4 |
+
TableCell,
|
5 |
+
TableHead,
|
6 |
+
TableHeader,
|
7 |
+
TableRow,
|
8 |
+
} from "~/components/ui/table";
|
9 |
|
10 |
interface TableProps {
|
11 |
data: Record<string, unknown>[];
|
|
|
17 |
if (data.length === 0) return null;
|
18 |
|
19 |
return (
|
20 |
+
<table className="text-xs">
|
21 |
+
<TableHeader>
|
22 |
+
<TableRow>
|
23 |
{headers.map((header) => (
|
24 |
+
<TableHead key={header}>{header}</TableHead>
|
25 |
))}
|
26 |
+
</TableRow>
|
27 |
+
</TableHeader>
|
28 |
+
<TableBody>
|
29 |
{data.map((row, rowIndex) => (
|
30 |
+
<TableRow key={rowIndex}>
|
31 |
{headers.map((header) => (
|
32 |
+
<TableCell key={`${rowIndex}-${header}`}>
|
33 |
+
{String(row[header])}
|
34 |
+
</TableCell>
|
35 |
))}
|
36 |
+
</TableRow>
|
37 |
))}
|
38 |
+
</TableBody>
|
39 |
</table>
|
40 |
);
|
41 |
};
|
tailwind.config.ts
ADDED
@@ -0,0 +1,62 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import type { Config } from "tailwindcss";
|
2 |
+
import defaultTheme from "tailwindcss/defaultTheme";
|
3 |
+
import animatePlugin from "tailwindcss-animate";
|
4 |
+
export default {
|
5 |
+
darkMode: ["selector", "class"],
|
6 |
+
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
7 |
+
theme: {
|
8 |
+
extend: {
|
9 |
+
fontFamily: {
|
10 |
+
sans: ["InterVariable", ...defaultTheme.fontFamily.sans],
|
11 |
+
},
|
12 |
+
borderRadius: {
|
13 |
+
lg: "var(--radius)",
|
14 |
+
md: "calc(var(--radius) - 2px)",
|
15 |
+
sm: "calc(var(--radius) - 4px)",
|
16 |
+
},
|
17 |
+
colors: {
|
18 |
+
background: "hsl(var(--background))",
|
19 |
+
foreground: "hsl(var(--foreground))",
|
20 |
+
card: {
|
21 |
+
DEFAULT: "hsl(var(--card))",
|
22 |
+
foreground: "hsl(var(--card-foreground))",
|
23 |
+
},
|
24 |
+
popover: {
|
25 |
+
DEFAULT: "hsl(var(--popover))",
|
26 |
+
foreground: "hsl(var(--popover-foreground))",
|
27 |
+
},
|
28 |
+
primary: {
|
29 |
+
DEFAULT: "hsl(var(--primary))",
|
30 |
+
foreground: "hsl(var(--primary-foreground))",
|
31 |
+
},
|
32 |
+
secondary: {
|
33 |
+
DEFAULT: "hsl(var(--secondary))",
|
34 |
+
foreground: "hsl(var(--secondary-foreground))",
|
35 |
+
},
|
36 |
+
muted: {
|
37 |
+
DEFAULT: "hsl(var(--muted))",
|
38 |
+
foreground: "hsl(var(--muted-foreground))",
|
39 |
+
},
|
40 |
+
accent: {
|
41 |
+
DEFAULT: "hsl(var(--accent))",
|
42 |
+
foreground: "hsl(var(--accent-foreground))",
|
43 |
+
},
|
44 |
+
destructive: {
|
45 |
+
DEFAULT: "hsl(var(--destructive))",
|
46 |
+
foreground: "hsl(var(--destructive-foreground))",
|
47 |
+
},
|
48 |
+
border: "hsl(var(--border))",
|
49 |
+
input: "hsl(var(--input))",
|
50 |
+
ring: "hsl(var(--ring))",
|
51 |
+
chart: {
|
52 |
+
"1": "hsl(var(--chart-1))",
|
53 |
+
"2": "hsl(var(--chart-2))",
|
54 |
+
"3": "hsl(var(--chart-3))",
|
55 |
+
"4": "hsl(var(--chart-4))",
|
56 |
+
"5": "hsl(var(--chart-5))",
|
57 |
+
},
|
58 |
+
},
|
59 |
+
},
|
60 |
+
},
|
61 |
+
plugins: [animatePlugin],
|
62 |
+
} satisfies Config;
|
tsconfig.app.json
CHANGED
@@ -18,7 +18,11 @@
|
|
18 |
"strict": true,
|
19 |
"noUnusedLocals": true,
|
20 |
"noUnusedParameters": true,
|
21 |
-
"noFallthroughCasesInSwitch": true
|
|
|
|
|
|
|
|
|
22 |
},
|
23 |
"include": ["src"]
|
24 |
}
|
|
|
18 |
"strict": true,
|
19 |
"noUnusedLocals": true,
|
20 |
"noUnusedParameters": true,
|
21 |
+
"noFallthroughCasesInSwitch": true,
|
22 |
+
"baseUrl": ".",
|
23 |
+
"paths": {
|
24 |
+
"~/*": ["./src/*"]
|
25 |
+
}
|
26 |
},
|
27 |
"include": ["src"]
|
28 |
}
|
tsconfig.json
CHANGED
@@ -3,5 +3,11 @@
|
|
3 |
"references": [
|
4 |
{ "path": "./tsconfig.app.json" },
|
5 |
{ "path": "./tsconfig.node.json" }
|
6 |
-
]
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
}
|
|
|
3 |
"references": [
|
4 |
{ "path": "./tsconfig.app.json" },
|
5 |
{ "path": "./tsconfig.node.json" }
|
6 |
+
],
|
7 |
+
"compilerOptions": {
|
8 |
+
"baseUrl": ".",
|
9 |
+
"paths": {
|
10 |
+
"~/*": ["./src/*"]
|
11 |
+
}
|
12 |
+
}
|
13 |
}
|
tsconfig.node.json
CHANGED
@@ -4,6 +4,7 @@
|
|
4 |
"lib": ["ES2023"],
|
5 |
"module": "ESNext",
|
6 |
"skipLibCheck": true,
|
|
|
7 |
|
8 |
/* Bundler mode */
|
9 |
"moduleResolution": "bundler",
|
@@ -18,5 +19,5 @@
|
|
18 |
"noUnusedParameters": true,
|
19 |
"noFallthroughCasesInSwitch": true
|
20 |
},
|
21 |
-
"include": ["vite.config.ts"]
|
22 |
}
|
|
|
4 |
"lib": ["ES2023"],
|
5 |
"module": "ESNext",
|
6 |
"skipLibCheck": true,
|
7 |
+
"allowJs": true,
|
8 |
|
9 |
/* Bundler mode */
|
10 |
"moduleResolution": "bundler",
|
|
|
19 |
"noUnusedParameters": true,
|
20 |
"noFallthroughCasesInSwitch": true
|
21 |
},
|
22 |
+
"include": ["vite.config.ts", "tailwind.config.ts", "postcss.config.mjs"]
|
23 |
}
|
vite.config.ts
CHANGED
@@ -1,7 +1,13 @@
|
|
1 |
-
import
|
2 |
-
import
|
|
|
3 |
|
4 |
// https://vitejs.dev/config/
|
5 |
export default defineConfig({
|
6 |
plugins: [react()],
|
7 |
-
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import path from "path";
|
2 |
+
import { defineConfig } from "vite";
|
3 |
+
import react from "@vitejs/plugin-react";
|
4 |
|
5 |
// https://vitejs.dev/config/
|
6 |
export default defineConfig({
|
7 |
plugins: [react()],
|
8 |
+
resolve: {
|
9 |
+
alias: {
|
10 |
+
"~": path.resolve(__dirname, "src"),
|
11 |
+
},
|
12 |
+
},
|
13 |
+
});
|