Openstatus www.openstatus.dev

⬆️ version (#1225)

* ⬆️ version

* 🚀 fix build

* 😭

* 🐛

* ci: apply automated fixes

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>

authored by

Thibault Le Ouay
autofix-ci[bot]
and committed by
GitHub
e7e0b751 1672d28d

+878 -954
+4 -4
apps/web/package.json
··· 68 68 "next-themes": "0.2.1", 69 69 "nuqs": "2.2.3", 70 70 "random-word-slugs": "0.1.7", 71 - "react": "19.0.0", 71 + "react": "19.1.0", 72 72 "react-day-picker": "8.10.1", 73 - "react-dom": "19.0.0", 73 + "react-dom": "19.1.0", 74 74 "react-hook-form": "7.54.1", 75 75 "react-tweet": "3.2.1", 76 76 "reading-time": "1.5.0", ··· 94 94 "@content-collections/next": "0.2.4", 95 95 "@openstatus/tsconfig": "workspace:*", 96 96 "@types/node": "20.14.8", 97 - "@types/react": "19.0.1", 98 - "@types/react-dom": "19.0.2", 97 + "@types/react": "19.1.0", 98 + "@types/react-dom": "19.1.1", 99 99 "autoprefixer": "10.4.19", 100 100 "postcss": "8.4.38", 101 101 "rehype-autolink-headings": "7.1.0",
-1
apps/web/src/components/content/mdx.tsx
··· 17 17 className, 18 18 )} 19 19 > 20 - {/* @ts-expect-error FIXME: nextjs 15 migration */} 21 20 <MDXContent code={code} components={components} /> 22 21 </div> 23 22 );
+4 -4
packages/emails/package.json
··· 11 11 "license": "ISC", 12 12 "dependencies": { 13 13 "@react-email/button": "0.0.19", 14 - "@react-email/components": "0.0.31", 14 + "@react-email/components": "0.0.36", 15 15 "@react-email/head": "0.0.12", 16 16 "@react-email/html": "0.0.11", 17 - "@react-email/render": "1.0.3", 17 + "@react-email/render": "1.0.6", 18 18 "@react-email/tailwind": "1.0.4", 19 19 "@t3-oss/env-core": "0.7.0", 20 20 "react-email": "3.0.4", ··· 24 24 "devDependencies": { 25 25 "@openstatus/tsconfig": "workspace:*", 26 26 "@types/node": "22.10.2", 27 - "@types/react": "19.0.1", 28 - "react": "19.0.0", 27 + "@types/react": "19.1.0", 28 + "react": "19.1.0", 29 29 "typescript": "5.6.2" 30 30 } 31 31 }
+2 -2
packages/notifications/email/package.json
··· 8 8 "@openstatus/emails": "workspace:*", 9 9 "@openstatus/tinybird": "workspace:*", 10 10 "@openstatus/utils": "workspace:*", 11 - "@react-email/components": "0.0.31", 12 - "@react-email/render": "1.0.3", 11 + "@react-email/components": "0.0.36", 12 + "@react-email/render": "1.0.6", 13 13 "@t3-oss/env-core": "0.7.0", 14 14 "resend": "4.0.1", 15 15 "zod": "3.23.8"
+15 -15
packages/notifications/ntfy/src/index.ts
··· 27 27 statusCode ? `status code ${statusCode}` : `error: ${message}` 28 28 }`; 29 29 30 - const authorization = notificationData.token 31 - ? { Authorization: `Bearer ${notificationData.token}` } 30 + const authorization = notificationData.ntfy.token 31 + ? { Authorization: `Bearer ${notificationData.ntfy.token}` } 32 32 : undefined; 33 33 34 - const url = notificationData.serverUrl 35 - ? `${notificationData.serverUrl}/${notificationData.topic}` 36 - : `https://ntfy.sh/${notificationData.topic}`; 34 + const url = notificationData.ntfy.serverUrl 35 + ? `${notificationData.ntfy.serverUrl}/${notificationData.ntfy.topic}` 36 + : `https://ntfy.sh/${notificationData.ntfy.topic}`; 37 37 38 38 try { 39 39 await fetch(url, { ··· 72 72 const { name } = monitor; 73 73 74 74 const body = `Your monitor ${name} / ${monitor.url} is up again`; 75 - const authorization = notificationData.token 76 - ? { Authorization: `Bearer ${notificationData.token}` } 75 + const authorization = notificationData.ntfy.token 76 + ? { Authorization: `Bearer ${notificationData.ntfy.token}` } 77 77 : undefined; 78 78 79 - const url = notificationData.serverUrl 80 - ? `${notificationData.serverUrl}/${notificationData.topic}` 81 - : `https://ntfy.sh/${notificationData.topic}`; 79 + const url = notificationData.ntfy.serverUrl 80 + ? `${notificationData.ntfy.serverUrl}/${notificationData.ntfy.topic}` 81 + : `https://ntfy.sh/${notificationData.ntfy.topic}`; 82 82 try { 83 83 await fetch(url, { 84 84 method: "post", ··· 115 115 116 116 const body = `Your monitor ${name} / ${monitor.url} is degraded `; 117 117 118 - const authorization = notificationData.token 119 - ? { Authorization: `Bearer ${notificationData.token}` } 118 + const authorization = notificationData.ntfy 119 + ? { Authorization: `Bearer ${notificationData.ntfy.token}` } 120 120 : undefined; 121 121 122 - const url = notificationData.serverUrl 123 - ? `${notificationData.serverUrl}/${notificationData.topic}` 124 - : `https://ntfy.sh/${notificationData.topic}`; 122 + const url = notificationData.ntfy.serverUrl 123 + ? `${notificationData.ntfy.serverUrl}/${notificationData.ntfy.topic}` 124 + : `https://ntfy.sh/${notificationData.ntfy.topic}`; 125 125 126 126 try { 127 127 await fetch(url, {
+5 -3
packages/notifications/ntfy/src/schema.ts
··· 1 1 import { z } from "zod"; 2 2 3 3 export const NtfySchema = z.object({ 4 - topic: z.string(), 5 - serverUrl: z.string().default("https://ntfy.sh"), 6 - token: z.string().optional(), 4 + ntfy: z.object({ 5 + topic: z.string(), 6 + serverUrl: z.string().default("https://ntfy.sh"), 7 + token: z.string().optional(), 8 + }), 7 9 });
+2 -2
packages/notifications/opsgenie/package.json
··· 12 12 "devDependencies": { 13 13 "@openstatus/tsconfig": "workspace:*", 14 14 "@types/node": "20.8.0", 15 - "@types/react": "18.2.64", 16 - "@types/react-dom": "18.2.21", 15 + "@types/react": "19.1.0", 16 + "@types/react-dom": "19.1.1", 17 17 "typescript": "5.4.5" 18 18 } 19 19 }
+2 -2
packages/notifications/pagerduty/package.json
··· 12 12 "devDependencies": { 13 13 "@openstatus/tsconfig": "workspace:*", 14 14 "@types/node": "20.8.0", 15 - "@types/react": "18.2.64", 16 - "@types/react-dom": "18.2.21", 15 + "@types/react": "19.1.0", 16 + "@types/react-dom": "19.1.1", 17 17 "typescript": "5.4.5" 18 18 } 19 19 }
+9 -9
packages/notifications/webhook/src/index.ts
··· 35 35 }); 36 36 37 37 try { 38 - await fetch(notificationData.endpoint, { 38 + await fetch(notificationData.webhook.endpoint, { 39 39 method: "post", 40 40 body: JSON.stringify(body), 41 - headers: notificationData.headers 42 - ? transformHeaders(notificationData.headers) 41 + headers: notificationData.webhook.headers 42 + ? transformHeaders(notificationData.webhook.headers) 43 43 : undefined, 44 44 }); 45 45 } catch (err) { ··· 77 77 latency, 78 78 errorMessage: message, 79 79 }); 80 - const url = notificationData.endpoint; 80 + const url = notificationData.webhook.endpoint; 81 81 try { 82 82 await fetch(url, { 83 83 method: "post", 84 84 body: JSON.stringify(body), 85 - headers: notificationData.headers 86 - ? transformHeaders(notificationData.headers) 85 + headers: notificationData.webhook.headers 86 + ? transformHeaders(notificationData.webhook.headers) 87 87 : undefined, 88 88 }); 89 89 } catch (err) { ··· 121 121 }); 122 122 123 123 try { 124 - await fetch(notificationData.endpoint, { 124 + await fetch(notificationData.webhook.endpoint, { 125 125 method: "post", 126 126 body: JSON.stringify(body), 127 - headers: notificationData.headers 128 - ? transformHeaders(notificationData.headers) 127 + headers: notificationData.webhook.headers 128 + ? transformHeaders(notificationData.webhook.headers) 129 129 : undefined, 130 130 }); 131 131 } catch (err) {
+6 -2
packages/notifications/webhook/src/schema.ts
··· 1 1 import { z } from "zod"; 2 2 3 3 export const WebhookSchema = z.object({ 4 - endpoint: z.string().url(), 5 - headers: z.array(z.object({ key: z.string(), value: z.string() })).optional(), 4 + webhook: z.object({ 5 + endpoint: z.string().url(), 6 + headers: z 7 + .array(z.object({ key: z.string(), value: z.string() })) 8 + .optional(), 9 + }), 6 10 }); 7 11 8 12 export const PayloadSchema = z.object({
+3 -3
packages/ui/package.json
··· 12 12 "@openstatus/tsconfig": "workspace:*", 13 13 "@types/luxon": "3.4.2", 14 14 "@types/node": "22.10.2", 15 - "@types/react": "19.0.1", 16 - "@types/react-dom": "19.0.2", 15 + "@types/react": "19.1.0", 16 + "@types/react-dom": "19.1.1", 17 17 "tailwindcss": "3.4.3", 18 18 "typescript": "5.6.2" 19 19 }, ··· 52 52 "lucide-react": "0.468.0", 53 53 "luxon": "3.5.0", 54 54 "next": "15.2.4", 55 - "react": "19.0.0", 55 + "react": "19.1.0", 56 56 "react-day-picker": "8.10.1", 57 57 "react-hook-form": "7.54.1", 58 58 "recharts": "2.15.0",
+826 -907
pnpm-lock.yaml
··· 31 31 dependencies: 32 32 '@astrojs/check': 33 33 specifier: 0.9.4 34 - version: 0.9.4(prettier@3.4.2)(typescript@5.6.2) 34 + version: 0.9.4(prettier@3.5.3)(typescript@5.6.2) 35 35 '@astrojs/react': 36 36 specifier: 4.2.3 37 - version: 4.2.3(@types/node@22.10.2)(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(jiti@1.21.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(terser@5.37.0)(yaml@2.6.1) 37 + version: 4.2.3(@types/node@22.10.2)(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(jiti@1.21.7)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(terser@5.37.0)(yaml@2.6.1) 38 38 '@astrojs/sitemap': 39 39 specifier: 3.2.1 40 40 version: 3.2.1 ··· 95 95 version: 2.6.2 96 96 drizzle-orm: 97 97 specifier: 0.35.3 98 - version: 0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.0.10)(better-sqlite3@11.7.0)(bun-types@1.2.5)(react@19.0.0) 98 + version: 0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.0)(better-sqlite3@11.7.0)(bun-types@1.2.5)(react@19.1.0) 99 99 hono: 100 100 specifier: 4.5.3 101 101 version: 4.5.3 ··· 153 153 version: link:../../packages/utils 154 154 '@scalar/hono-api-reference': 155 155 specifier: 0.5.131 156 - version: 0.5.131(postcss@8.5.3)(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)))(typescript@5.7.2) 156 + version: 0.5.131(postcss@8.5.3)(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)))(typescript@5.7.2) 157 157 '@t3-oss/env-core': 158 158 specifier: 0.7.1 159 159 version: 0.7.1(typescript@5.7.2)(zod@3.23.8) ··· 205 205 version: 4.0.1(encoding@0.1.13) 206 206 '@hookform/resolvers': 207 207 specifier: 3.9.1 208 - version: 3.9.1(react-hook-form@7.54.1(react@19.0.0)) 208 + version: 3.9.1(react-hook-form@7.54.1(react@19.1.0)) 209 209 '@libsql/client': 210 210 specifier: 0.14.0 211 211 version: 0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.5) ··· 271 271 version: link:../../packages/utils 272 272 '@radix-ui/react-portal': 273 273 specifier: 1.1.3 274 - version: 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 274 + version: 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 275 275 '@sentry/nextjs': 276 276 specifier: 8.46.0 277 - version: 8.46.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.97.1(esbuild@0.21.5)) 277 + version: 8.46.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)(webpack@5.97.1(esbuild@0.21.5)) 278 278 '@stripe/stripe-js': 279 279 specifier: 2.1.6 280 280 version: 2.1.6 ··· 289 289 version: 0.5.10(tailwindcss@3.4.3(ts-node@10.9.2(@types/node@20.14.8)(typescript@5.6.2))) 290 290 '@tanstack/react-query': 291 291 specifier: 5.62.8 292 - version: 5.62.8(react@19.0.0) 292 + version: 5.62.8(react@19.1.0) 293 293 '@tanstack/react-query-devtools': 294 294 specifier: 5.62.8 295 - version: 5.62.8(@tanstack/react-query@5.62.8(react@19.0.0))(react@19.0.0) 295 + version: 5.62.8(@tanstack/react-query@5.62.8(react@19.1.0))(react@19.1.0) 296 296 '@tanstack/react-table': 297 297 specifier: 8.10.3 298 - version: 8.10.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 298 + version: 8.10.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 299 299 '@trpc/client': 300 300 specifier: 11.0.0-rc.666 301 301 version: 11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2) 302 302 '@trpc/next': 303 303 specifier: 11.0.0-rc.666 304 - version: 11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.0.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/react-query@11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.0.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.6.2) 304 + version: 11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.1.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/react-query@11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.1.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.6.2) 305 305 '@trpc/react-query': 306 306 specifier: 11.0.0-rc.666 307 - version: 11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.0.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.6.2) 307 + version: 11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.1.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.6.2) 308 308 '@trpc/server': 309 309 specifier: 11.0.0-rc.666 310 310 version: 11.0.0-rc.666(typescript@5.6.2) ··· 328 328 version: 2.1.1 329 329 cmdk: 330 330 specifier: 1.0.4 331 - version: 1.0.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 331 + version: 1.0.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 332 332 cobe: 333 333 specifier: 0.6.3 334 334 version: 0.6.3 ··· 343 343 version: 4.2.2 344 344 lucide-react: 345 345 specifier: 0.468.0 346 - version: 0.468.0(react@19.0.0) 346 + version: 0.468.0(react@19.1.0) 347 347 nanoid: 348 348 specifier: 5.0.7 349 349 version: 5.0.7 350 350 next: 351 351 specifier: 15.2.4 352 - version: 15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 352 + version: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 353 353 next-auth: 354 354 specifier: 5.0.0-beta.25 355 - version: 5.0.0-beta.25(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) 355 + version: 5.0.0-beta.25(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0) 356 356 next-plausible: 357 357 specifier: 3.12.4 358 - version: 3.12.4(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 358 + version: 3.12.4(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 359 359 next-themes: 360 360 specifier: 0.2.1 361 - version: 0.2.1(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 361 + version: 0.2.1(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 362 362 nuqs: 363 363 specifier: 2.2.3 364 - version: 2.2.3(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) 364 + version: 2.2.3(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0) 365 365 random-word-slugs: 366 366 specifier: 0.1.7 367 367 version: 0.1.7 368 368 react: 369 - specifier: 19.0.0 370 - version: 19.0.0 369 + specifier: 19.1.0 370 + version: 19.1.0 371 371 react-day-picker: 372 372 specifier: 8.10.1 373 - version: 8.10.1(date-fns@2.30.0)(react@19.0.0) 373 + version: 8.10.1(date-fns@2.30.0)(react@19.1.0) 374 374 react-dom: 375 - specifier: 19.0.0 376 - version: 19.0.0(react@19.0.0) 375 + specifier: 19.1.0 376 + version: 19.1.0(react@19.1.0) 377 377 react-hook-form: 378 378 specifier: 7.54.1 379 - version: 7.54.1(react@19.0.0) 379 + version: 7.54.1(react@19.1.0) 380 380 react-tweet: 381 381 specifier: 3.2.1 382 - version: 3.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 382 + version: 3.2.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 383 383 reading-time: 384 384 specifier: 1.5.0 385 385 version: 1.5.0 386 386 recharts: 387 387 specifier: 2.15.0 388 - version: 2.15.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 388 + version: 2.15.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 389 389 rehype-pretty-code: 390 390 specifier: 0.10.0 391 391 version: 0.10.0(shiki@0.14.4) 392 392 rehype-react: 393 393 specifier: 7.2.0 394 - version: 7.2.0(@types/react@19.0.1) 394 + version: 7.2.0(@types/react@19.1.0) 395 395 remark-parse: 396 396 specifier: 10.0.2 397 397 version: 10.0.2 ··· 400 400 version: 10.1.0 401 401 resend: 402 402 specifier: 4.0.1 403 - version: 4.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 403 + version: 4.0.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 404 404 shiki: 405 405 specifier: 0.14.4 406 406 version: 0.14.4 407 407 sonner: 408 408 specifier: 1.7.1 409 - version: 1.7.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 409 + version: 1.7.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 410 410 stripe: 411 411 specifier: 13.8.0 412 412 version: 13.8.0 ··· 428 428 version: 0.7.3(typescript@5.6.2) 429 429 '@content-collections/mdx': 430 430 specifier: 0.2.0 431 - version: 0.2.0(@content-collections/core@0.7.3(typescript@5.6.2))(acorn@8.14.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 431 + version: 0.2.0(@content-collections/core@0.7.3(typescript@5.6.2))(acorn@8.14.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 432 432 '@content-collections/next': 433 433 specifier: 0.2.4 434 - version: 0.2.4(@content-collections/core@0.7.3(typescript@5.6.2))(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) 434 + version: 0.2.4(@content-collections/core@0.7.3(typescript@5.6.2))(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)) 435 435 '@openstatus/tsconfig': 436 436 specifier: workspace:* 437 437 version: link:../../packages/tsconfig ··· 439 439 specifier: 20.14.8 440 440 version: 20.14.8 441 441 '@types/react': 442 - specifier: 19.0.1 443 - version: 19.0.1 442 + specifier: 19.1.0 443 + version: 19.1.0 444 444 '@types/react-dom': 445 - specifier: 19.0.2 446 - version: 19.0.2(@types/react@19.0.1) 445 + specifier: 19.1.1 446 + version: 19.1.1(@types/react@19.1.0) 447 447 autoprefixer: 448 448 specifier: 10.4.19 449 449 version: 10.4.19(postcss@8.4.38) ··· 589 589 version: 5.0.0-beta.1 590 590 next: 591 591 specifier: 15.2.4 592 - version: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 592 + version: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 593 593 random-word-slugs: 594 594 specifier: 0.1.7 595 595 version: 0.1.7 ··· 639 639 version: 0.7.0(typescript@5.6.2)(zod@3.23.8) 640 640 drizzle-orm: 641 641 specifier: 0.35.3 642 - version: 0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.0.10)(better-sqlite3@11.4.0)(bun-types@1.2.5)(react@19.0.0) 642 + version: 0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.0)(better-sqlite3@11.4.0)(bun-types@1.2.5)(react@19.1.0) 643 643 drizzle-zod: 644 644 specifier: 0.5.1 645 - version: 0.5.1(drizzle-orm@0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.0.10)(better-sqlite3@11.4.0)(bun-types@1.2.5)(react@19.0.0))(zod@3.23.8) 645 + version: 0.5.1(drizzle-orm@0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.0)(better-sqlite3@11.4.0)(bun-types@1.2.5)(react@19.1.0))(zod@3.23.8) 646 646 zod: 647 647 specifier: 3.23.8 648 648 version: 3.23.8 ··· 670 670 version: 0.1.13 671 671 next-auth: 672 672 specifier: 5.0.0-beta.25 673 - version: 5.0.0-beta.25(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) 673 + version: 5.0.0-beta.25(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0) 674 674 typescript: 675 675 specifier: 5.6.2 676 676 version: 5.6.2 ··· 682 682 dependencies: 683 683 '@react-email/button': 684 684 specifier: 0.0.19 685 - version: 0.0.19(react@19.0.0) 685 + version: 0.0.19(react@19.1.0) 686 686 '@react-email/components': 687 - specifier: 0.0.31 688 - version: 0.0.31(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 687 + specifier: 0.0.36 688 + version: 0.0.36(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 689 689 '@react-email/head': 690 690 specifier: 0.0.12 691 - version: 0.0.12(react@19.0.0) 691 + version: 0.0.12(react@19.1.0) 692 692 '@react-email/html': 693 693 specifier: 0.0.11 694 - version: 0.0.11(react@19.0.0) 694 + version: 0.0.11(react@19.1.0) 695 695 '@react-email/render': 696 - specifier: 1.0.3 697 - version: 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 696 + specifier: 1.0.6 697 + version: 1.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 698 698 '@react-email/tailwind': 699 699 specifier: 1.0.4 700 - version: 1.0.4(react@19.0.0) 700 + version: 1.0.4(react@19.1.0) 701 701 '@t3-oss/env-core': 702 702 specifier: 0.7.0 703 703 version: 0.7.0(typescript@5.6.2)(zod@3.23.8) 704 704 react-email: 705 705 specifier: 3.0.4 706 - version: 3.0.4(@opentelemetry/api@1.9.0)(bufferutil@4.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(utf-8-validate@6.0.5) 706 + version: 3.0.4(@opentelemetry/api@1.9.0)(bufferutil@4.0.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(utf-8-validate@6.0.5) 707 707 resend: 708 708 specifier: 4.0.1 709 - version: 4.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 709 + version: 4.0.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 710 710 zod: 711 711 specifier: 3.23.8 712 712 version: 3.23.8 ··· 718 718 specifier: 22.10.2 719 719 version: 22.10.2 720 720 '@types/react': 721 - specifier: 19.0.1 722 - version: 19.0.1 721 + specifier: 19.1.0 722 + version: 19.1.0 723 723 react: 724 - specifier: 19.0.0 725 - version: 19.0.0 724 + specifier: 19.1.0 725 + version: 19.1.0 726 726 typescript: 727 727 specifier: 5.6.2 728 728 version: 5.6.2 ··· 783 783 specifier: workspace:* 784 784 version: link:../../utils 785 785 '@react-email/components': 786 - specifier: 0.0.31 787 - version: 0.0.31(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 786 + specifier: 0.0.36 787 + version: 0.0.36(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 788 788 '@react-email/render': 789 - specifier: 1.0.3 790 - version: 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 789 + specifier: 1.0.6 790 + version: 1.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 791 791 '@t3-oss/env-core': 792 792 specifier: 0.7.0 793 793 version: 0.7.0(typescript@5.6.2)(zod@3.23.8) 794 794 resend: 795 795 specifier: 4.0.1 796 - version: 4.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 796 + version: 4.0.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 797 797 zod: 798 798 specifier: 3.23.8 799 799 version: 3.23.8 ··· 852 852 specifier: 20.8.0 853 853 version: 20.8.0 854 854 '@types/react': 855 - specifier: 18.2.64 856 - version: 18.2.64 855 + specifier: 19.1.0 856 + version: 19.1.0 857 857 '@types/react-dom': 858 - specifier: 18.2.21 859 - version: 18.2.21 858 + specifier: 19.1.1 859 + version: 19.1.1(@types/react@19.1.0) 860 860 typescript: 861 861 specifier: 5.4.5 862 862 version: 5.4.5 ··· 886 886 specifier: 20.8.0 887 887 version: 20.8.0 888 888 '@types/react': 889 - specifier: 18.2.64 890 - version: 18.2.64 889 + specifier: 19.1.0 890 + version: 19.1.0 891 891 '@types/react-dom': 892 - specifier: 18.2.21 893 - version: 18.2.21 892 + specifier: 19.1.1 893 + version: 19.1.1(@types/react@19.1.0) 894 894 typescript: 895 895 specifier: 5.4.5 896 896 version: 5.4.5 ··· 1036 1036 dependencies: 1037 1037 '@dnd-kit/core': 1038 1038 specifier: 6.3.1 1039 - version: 6.3.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1039 + version: 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1040 1040 '@dnd-kit/modifiers': 1041 1041 specifier: 9.0.0 1042 - version: 9.0.0(@dnd-kit/core@6.3.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) 1042 + version: 9.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0) 1043 1043 '@dnd-kit/sortable': 1044 1044 specifier: 10.0.0 1045 - version: 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) 1045 + version: 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0) 1046 1046 '@dnd-kit/utilities': 1047 1047 specifier: 3.2.2 1048 - version: 3.2.2(react@19.0.0) 1048 + version: 3.2.2(react@19.1.0) 1049 1049 '@hookform/resolvers': 1050 1050 specifier: 3.9.1 1051 - version: 3.9.1(react-hook-form@7.54.1(react@19.0.0)) 1051 + version: 3.9.1(react-hook-form@7.54.1(react@19.1.0)) 1052 1052 '@radix-ui/react-accordion': 1053 1053 specifier: 1.2.2 1054 - version: 1.2.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1054 + version: 1.2.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1055 1055 '@radix-ui/react-alert-dialog': 1056 1056 specifier: 1.1.4 1057 - version: 1.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1057 + version: 1.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1058 1058 '@radix-ui/react-avatar': 1059 1059 specifier: 1.1.2 1060 - version: 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1060 + version: 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1061 1061 '@radix-ui/react-checkbox': 1062 1062 specifier: 1.1.3 1063 - version: 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1063 + version: 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1064 1064 '@radix-ui/react-collapsible': 1065 1065 specifier: 1.1.2 1066 - version: 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1066 + version: 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1067 1067 '@radix-ui/react-context-menu': 1068 1068 specifier: 2.2.4 1069 - version: 2.2.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1069 + version: 2.2.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1070 1070 '@radix-ui/react-dialog': 1071 1071 specifier: 1.1.4 1072 - version: 1.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1072 + version: 1.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1073 1073 '@radix-ui/react-dropdown-menu': 1074 1074 specifier: 2.1.4 1075 - version: 2.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1075 + version: 2.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1076 1076 '@radix-ui/react-hover-card': 1077 1077 specifier: 1.1.4 1078 - version: 1.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1078 + version: 1.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1079 1079 '@radix-ui/react-label': 1080 1080 specifier: 2.1.1 1081 - version: 2.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1081 + version: 2.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1082 1082 '@radix-ui/react-navigation-menu': 1083 1083 specifier: 1.2.3 1084 - version: 1.2.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1084 + version: 1.2.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1085 1085 '@radix-ui/react-popover': 1086 1086 specifier: 1.1.4 1087 - version: 1.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1087 + version: 1.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1088 1088 '@radix-ui/react-progress': 1089 1089 specifier: 1.1.1 1090 - version: 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1090 + version: 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1091 1091 '@radix-ui/react-radio-group': 1092 1092 specifier: 1.2.2 1093 - version: 1.2.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1093 + version: 1.2.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1094 1094 '@radix-ui/react-select': 1095 1095 specifier: 2.1.4 1096 - version: 2.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1096 + version: 2.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1097 1097 '@radix-ui/react-separator': 1098 1098 specifier: 1.1.1 1099 - version: 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1099 + version: 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1100 1100 '@radix-ui/react-slider': 1101 1101 specifier: 1.2.2 1102 - version: 1.2.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1102 + version: 1.2.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1103 1103 '@radix-ui/react-slot': 1104 1104 specifier: 1.1.1 1105 - version: 1.1.1(@types/react@19.0.1)(react@19.0.0) 1105 + version: 1.1.1(@types/react@19.1.0)(react@19.1.0) 1106 1106 '@radix-ui/react-switch': 1107 1107 specifier: 1.1.2 1108 - version: 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1108 + version: 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1109 1109 '@radix-ui/react-tabs': 1110 1110 specifier: 1.1.2 1111 - version: 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1111 + version: 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1112 1112 '@radix-ui/react-toggle': 1113 1113 specifier: 1.1.1 1114 - version: 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1114 + version: 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1115 1115 '@radix-ui/react-tooltip': 1116 1116 specifier: 1.1.6 1117 - version: 1.1.6(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1117 + version: 1.1.6(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1118 1118 class-variance-authority: 1119 1119 specifier: 0.7.1 1120 1120 version: 0.7.1 ··· 1123 1123 version: 2.1.1 1124 1124 cmdk: 1125 1125 specifier: 1.0.4 1126 - version: 1.0.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1126 + version: 1.0.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1127 1127 date-fns: 1128 1128 specifier: 2.30.0 1129 1129 version: 2.30.0 1130 1130 lucide-react: 1131 1131 specifier: 0.468.0 1132 - version: 0.468.0(react@19.0.0) 1132 + version: 0.468.0(react@19.1.0) 1133 1133 luxon: 1134 1134 specifier: 3.5.0 1135 1135 version: 3.5.0 1136 1136 next: 1137 1137 specifier: 15.2.4 1138 - version: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1138 + version: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1139 1139 next-themes: 1140 1140 specifier: 0.2.1 1141 - version: 0.2.1(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1141 + version: 0.2.1(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1142 1142 react: 1143 - specifier: 19.0.0 1144 - version: 19.0.0 1143 + specifier: 19.1.0 1144 + version: 19.1.0 1145 1145 react-day-picker: 1146 1146 specifier: 8.10.1 1147 - version: 8.10.1(date-fns@2.30.0)(react@19.0.0) 1147 + version: 8.10.1(date-fns@2.30.0)(react@19.1.0) 1148 1148 react-hook-form: 1149 1149 specifier: 7.54.1 1150 - version: 7.54.1(react@19.0.0) 1150 + version: 7.54.1(react@19.1.0) 1151 1151 recharts: 1152 1152 specifier: 2.15.0 1153 - version: 2.15.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1153 + version: 2.15.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1154 1154 sonner: 1155 1155 specifier: 1.7.1 1156 - version: 1.7.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 1156 + version: 1.7.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 1157 1157 tailwind-merge: 1158 1158 specifier: 2.5.5 1159 1159 version: 2.5.5 ··· 1177 1177 specifier: 22.10.2 1178 1178 version: 22.10.2 1179 1179 '@types/react': 1180 - specifier: 19.0.1 1181 - version: 19.0.1 1180 + specifier: 19.1.0 1181 + version: 19.1.0 1182 1182 '@types/react-dom': 1183 - specifier: 19.0.2 1184 - version: 19.0.2(@types/react@19.0.1) 1183 + specifier: 19.1.1 1184 + version: 19.1.1(@types/react@19.1.0) 1185 1185 tailwindcss: 1186 1186 specifier: 3.4.3 1187 1187 version: 3.4.3(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.6.2)) ··· 4184 4184 peerDependencies: 4185 4185 react: ^18.0 || ^19.0 || ^19.0.0-rc 4186 4186 4187 - '@react-email/code-block@0.0.11': 4188 - resolution: {integrity: sha512-4D43p+LIMjDzm66gTDrZch0Flkip5je91mAT7iGs6+SbPyalHgIA+lFQoQwhz/VzHHLxuD0LV6gwmU/WUQ2WEg==} 4187 + '@react-email/code-block@0.0.12': 4188 + resolution: {integrity: sha512-Faw3Ij9+/Qwq6moWaeHnV8Hn7ekc/EqyAzPi6yUar21dhcqYugCC4Da1x4d9nA9zC0H9KU3lYVJczh8D3cA+Eg==} 4189 4189 engines: {node: '>=18.0.0'} 4190 4190 peerDependencies: 4191 4191 react: ^18.0 || ^19.0 || ^19.0.0-rc ··· 4202 4202 peerDependencies: 4203 4203 react: ^18.0 || ^19.0 || ^19.0.0-rc 4204 4204 4205 - '@react-email/components@0.0.31': 4206 - resolution: {integrity: sha512-rQsTY9ajobncix9raexhBjC7O6cXUMc87eNez2gnB1FwtkUO8DqWZcktbtwOJi7GKmuAPTx0o/IOFtiBNXziKA==} 4205 + '@react-email/components@0.0.36': 4206 + resolution: {integrity: sha512-VMh+OQplAnG8JMLlJjdnjt+ThJZ+JVkp0q2YMS2NEz+T88N22bLD2p7DZO0QgtNaKgumOhJI/0a2Q7VzCrwu5g==} 4207 4207 engines: {node: '>=18.0.0'} 4208 4208 peerDependencies: 4209 4209 react: ^18.0 || ^19.0 || ^19.0.0-rc ··· 4274 4274 react: ^18.0 || ^19.0 || ^19.0.0-rc 4275 4275 react-dom: ^18.0 || ^19.0 || ^19.0.0-rc 4276 4276 4277 - '@react-email/render@1.0.3': 4278 - resolution: {integrity: sha512-VQ8g4SuIq/jWdfBTdTjb7B8Np0jj+OoD7VebfdHhLTZzVQKesR2aigpYqE/ZXmwj4juVxDm8T2b6WIIu48rPCg==} 4277 + '@react-email/render@1.0.6': 4278 + resolution: {integrity: sha512-zNueW5Wn/4jNC1c5LFgXzbUdv5Lhms+FWjOvWAhal7gx5YVf0q6dPJ0dnR70+ifo59gcMLwCZEaTS9EEuUhKvQ==} 4279 4279 engines: {node: '>=18.0.0'} 4280 4280 peerDependencies: 4281 4281 react: ^18.0 || ^19.0 || ^19.0.0-rc ··· 4299 4299 peerDependencies: 4300 4300 react: ^18.0 || ^19.0 || ^19.0.0-rc 4301 4301 4302 - '@react-email/text@0.0.11': 4303 - resolution: {integrity: sha512-a7nl/2KLpRHOYx75YbYZpWspUbX1DFY7JIZbOv5x0QU8SvwDbJt+Hm01vG34PffFyYvHEXrc6Qnip2RTjljNjg==} 4302 + '@react-email/text@0.1.1': 4303 + resolution: {integrity: sha512-Zo9tSEzkO3fODLVH1yVhzVCiwETfeEL5wU93jXKWo2DHoMuiZ9Iabaso3T0D0UjhrCB1PBMeq2YiejqeToTyIQ==} 4304 4304 engines: {node: '>=18.0.0'} 4305 4305 peerDependencies: 4306 4306 react: ^18.0 || ^19.0 || ^19.0.0-rc ··· 5249 5249 '@types/prop-types@15.7.12': 5250 5250 resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==} 5251 5251 5252 - '@types/react-dom@18.2.21': 5253 - resolution: {integrity: sha512-gnvBA/21SA4xxqNXEwNiVcP0xSGHh/gi1VhWv9Bl46a0ItbTT5nFY+G9VSQpaG/8N/qdJpJ+vftQ4zflTtnjLw==} 5254 - 5255 - '@types/react-dom@19.0.2': 5256 - resolution: {integrity: sha512-c1s+7TKFaDRRxr1TxccIX2u7sfCnc3RxkVyBIUA2lCpyqCF+QoAwQ/CBg7bsMdVwP120HEH143VQezKtef5nCg==} 5252 + '@types/react-dom@19.1.1': 5253 + resolution: {integrity: sha512-jFf/woGTVTjUJsl2O7hcopJ1r0upqoq/vIOoCj0yLh3RIXxWcljlpuZ+vEBRXsymD1jhfeJrlyTy/S1UW+4y1w==} 5257 5254 peerDependencies: 5258 5255 '@types/react': ^19.0.0 5259 5256 5260 - '@types/react-dom@19.0.4': 5261 - resolution: {integrity: sha512-4fSQ8vWFkg+TGhePfUzVmat3eC14TXYSsiiDSLI0dVLsrm9gZFABjPy/Qu6TKgl1tq1Bu1yDsuQgY3A3DOjCcg==} 5262 - peerDependencies: 5263 - '@types/react': ^19.0.0 5264 - 5265 - '@types/react@18.2.64': 5266 - resolution: {integrity: sha512-MlmPvHgjj2p3vZaxbQgFUQFvD8QiZwACfGqEdDSWou5yISWxDQ4/74nCAwsUiX7UFLKZz3BbVSPj+YxeoGGCfg==} 5267 - 5268 5257 '@types/react@18.3.3': 5269 5258 resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==} 5270 5259 5271 - '@types/react@19.0.1': 5272 - resolution: {integrity: sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==} 5273 - 5274 - '@types/react@19.0.10': 5275 - resolution: {integrity: sha512-JuRQ9KXLEjaUNjTWpzuR231Z2WpIwczOkBEIvbHNCzQefFIT0L8IqE6NV6ULLyC1SI/i234JnDoMkfg+RjQj2g==} 5260 + '@types/react@19.1.0': 5261 + resolution: {integrity: sha512-UaicktuQI+9UKyA4njtDOGBD/67t8YEBt2xdfqu8+gP9hqPUPsiXlNPcpS2gVdjmis5GKPG3fCxbQLVgxsQZ8w==} 5276 5262 5277 5263 '@types/request@2.48.11': 5278 5264 resolution: {integrity: sha512-HuihY1+Vss5RS9ZHzRyTGIzwPTdrJBkCm/mAeLRYrOQu/MGqyezKXWOK1VhCnR+SDbp9G2mRUP+OVEqCrzpcfA==} ··· 5282 5268 5283 5269 '@types/sax@1.2.7': 5284 5270 resolution: {integrity: sha512-rO73L89PJxeYM3s3pPPjiPgVVcymqU490g0YO5n5By0k2Erzj6tay/4lr1CHAAU4JyOWd1rpQ8bCf6cZfHU96A==} 5285 - 5286 - '@types/scheduler@0.23.0': 5287 - resolution: {integrity: sha512-YIoDCTH3Af6XM5VuwGG/QL/CJqga1Zm3NkU3HZ4ZHK2fRMPYP1VczsTUqtsf43PH/iJNVlPHAo2oWX7BSdB2Hw==} 5288 5271 5289 5272 '@types/shimmer@1.2.0': 5290 5273 resolution: {integrity: sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==} ··· 8752 8735 engines: {node: '>=10.13.0'} 8753 8736 hasBin: true 8754 8737 8755 - prettier@3.3.3: 8756 - resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} 8757 - engines: {node: '>=14'} 8758 - hasBin: true 8759 - 8760 - prettier@3.4.2: 8761 - resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==} 8738 + prettier@3.5.3: 8739 + resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==} 8762 8740 engines: {node: '>=14'} 8763 8741 hasBin: true 8764 8742 ··· 8787 8765 8788 8766 prismjs@1.29.0: 8789 8767 resolution: {integrity: sha512-Kx/1w86q/epKcmte75LNrEoT+lX8pBpavuAbvJWRXar7Hz8jrtF+e3vY751p0R8H9HdArwaCTNDDzHg/ScJK1Q==} 8768 + engines: {node: '>=6'} 8769 + 8770 + prismjs@1.30.0: 8771 + resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} 8790 8772 engines: {node: '>=6'} 8791 8773 8792 8774 process@0.11.10: ··· 8872 8854 date-fns: ^2.28.0 || ^3.0.0 8873 8855 react: ^16.8.0 || ^17.0.0 || ^18.0.0 8874 8856 8875 - react-dom@19.0.0: 8876 - resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} 8857 + react-dom@19.1.0: 8858 + resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==} 8877 8859 peerDependencies: 8878 - react: ^19.0.0 8860 + react: ^19.1.0 8879 8861 8880 8862 react-email@3.0.4: 8881 8863 resolution: {integrity: sha512-nXdo9P3V+qYSW6m5yN3XpFGhHb/bflX86m0EDQEqDIgayprj6InmBJoBnMSIyC5EP4tPtoAljlclJns4lJG/MQ==} ··· 8956 8938 resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==} 8957 8939 engines: {node: '>=0.10.0'} 8958 8940 8959 - react@19.0.0: 8960 - resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} 8941 + react@19.1.0: 8942 + resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==} 8961 8943 engines: {node: '>=0.10.0'} 8962 8944 8963 8945 read-cache@1.0.0: ··· 9232 9214 sax@1.4.1: 9233 9215 resolution: {integrity: sha512-+aWOz7yVScEGoKNd4PA10LZ8sk0A/z5+nXQG5giUO5rprX9jgYsTdov9qCchZiPIZezbZH+jRut8nPodFAX4Jg==} 9234 9216 9235 - scheduler@0.25.0: 9236 - resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} 9217 + scheduler@0.26.0: 9218 + resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==} 9237 9219 9238 9220 schema-utils@3.3.0: 9239 9221 resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==} ··· 10619 10601 astro: 5.6.1(@types/node@22.10.2)(jiti@1.21.7)(rollup@4.34.8)(terser@5.37.0)(typescript@5.6.2)(yaml@2.6.1) 10620 10602 lite-youtube-embed: 0.3.3 10621 10603 10622 - '@astrojs/check@0.9.4(prettier@3.4.2)(typescript@5.6.2)': 10604 + '@astrojs/check@0.9.4(prettier@3.5.3)(typescript@5.6.2)': 10623 10605 dependencies: 10624 - '@astrojs/language-server': 2.15.4(prettier@3.4.2)(typescript@5.6.2) 10606 + '@astrojs/language-server': 2.15.4(prettier@3.5.3)(typescript@5.6.2) 10625 10607 chokidar: 4.0.1 10626 10608 kleur: 4.1.5 10627 10609 typescript: 5.6.2 ··· 10636 10618 10637 10619 '@astrojs/internal-helpers@0.6.1': {} 10638 10620 10639 - '@astrojs/language-server@2.15.4(prettier@3.4.2)(typescript@5.6.2)': 10621 + '@astrojs/language-server@2.15.4(prettier@3.5.3)(typescript@5.6.2)': 10640 10622 dependencies: 10641 10623 '@astrojs/compiler': 2.10.3 10642 10624 '@astrojs/yaml2ts': 0.2.2 ··· 10650 10632 volar-service-css: 0.0.62(@volar/language-service@2.4.10) 10651 10633 volar-service-emmet: 0.0.62(@volar/language-service@2.4.10) 10652 10634 volar-service-html: 0.0.62(@volar/language-service@2.4.10) 10653 - volar-service-prettier: 0.0.62(@volar/language-service@2.4.10)(prettier@3.4.2) 10635 + volar-service-prettier: 0.0.62(@volar/language-service@2.4.10)(prettier@3.5.3) 10654 10636 volar-service-typescript: 0.0.62(@volar/language-service@2.4.10) 10655 10637 volar-service-typescript-twoslash-queries: 0.0.62(@volar/language-service@2.4.10) 10656 10638 volar-service-yaml: 0.0.62(@volar/language-service@2.4.10) 10657 10639 vscode-html-languageservice: 5.3.1 10658 10640 vscode-uri: 3.0.8 10659 10641 optionalDependencies: 10660 - prettier: 3.4.2 10642 + prettier: 3.5.3 10661 10643 transitivePeerDependencies: 10662 10644 - typescript 10663 10645 ··· 10735 10717 dependencies: 10736 10718 prismjs: 1.29.0 10737 10719 10738 - '@astrojs/react@4.2.3(@types/node@22.10.2)(@types/react-dom@19.0.4(@types/react@19.0.10))(@types/react@19.0.10)(jiti@1.21.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(terser@5.37.0)(yaml@2.6.1)': 10720 + '@astrojs/react@4.2.3(@types/node@22.10.2)(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(jiti@1.21.7)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(terser@5.37.0)(yaml@2.6.1)': 10739 10721 dependencies: 10740 - '@types/react': 19.0.10 10741 - '@types/react-dom': 19.0.4(@types/react@19.0.10) 10722 + '@types/react': 19.1.0 10723 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 10742 10724 '@vitejs/plugin-react': 4.3.4(vite@6.2.5(@types/node@22.10.2)(jiti@1.21.7)(terser@5.37.0)(yaml@2.6.1)) 10743 - react: 19.0.0 10744 - react-dom: 19.0.0(react@19.0.0) 10725 + react: 19.1.0 10726 + react-dom: 19.1.0(react@19.1.0) 10745 10727 ultrahtml: 1.5.3 10746 10728 vite: 6.2.5(@types/node@22.10.2)(jiti@1.21.7)(terser@5.37.0)(yaml@2.6.1) 10747 10729 transitivePeerDependencies: ··· 11730 11712 dependencies: 11731 11713 '@content-collections/core': 0.7.3(typescript@5.6.2) 11732 11714 11733 - '@content-collections/mdx@0.2.0(@content-collections/core@0.7.3(typescript@5.6.2))(acorn@8.14.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 11715 + '@content-collections/mdx@0.2.0(@content-collections/core@0.7.3(typescript@5.6.2))(acorn@8.14.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 11734 11716 dependencies: 11735 11717 '@content-collections/core': 0.7.3(typescript@5.6.2) 11736 11718 esbuild: 0.21.5 11737 11719 mdx-bundler: 10.0.3(acorn@8.14.0)(esbuild@0.21.5) 11738 - react: 19.0.0 11739 - react-dom: 19.0.0(react@19.0.0) 11720 + react: 19.1.0 11721 + react-dom: 19.1.0(react@19.1.0) 11740 11722 unified: 11.0.5 11741 11723 transitivePeerDependencies: 11742 11724 - acorn 11743 11725 - supports-color 11744 11726 11745 - '@content-collections/next@0.2.4(@content-collections/core@0.7.3(typescript@5.6.2))(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))': 11727 + '@content-collections/next@0.2.4(@content-collections/core@0.7.3(typescript@5.6.2))(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))': 11746 11728 dependencies: 11747 11729 '@content-collections/core': 0.7.3(typescript@5.6.2) 11748 11730 '@content-collections/integrations': 0.2.1(@content-collections/core@0.7.3(typescript@5.6.2)) 11749 - next: 15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 11731 + next: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 11750 11732 11751 11733 '@cspotcode/source-map-support@0.8.1': 11752 11734 dependencies: ··· 11754 11736 11755 11737 '@ctrl/tinycolor@4.1.0': {} 11756 11738 11757 - '@dnd-kit/accessibility@3.1.1(react@19.0.0)': 11739 + '@dnd-kit/accessibility@3.1.1(react@19.1.0)': 11758 11740 dependencies: 11759 - react: 19.0.0 11741 + react: 19.1.0 11760 11742 tslib: 2.8.1 11761 11743 11762 - '@dnd-kit/core@6.3.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 11744 + '@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 11763 11745 dependencies: 11764 - '@dnd-kit/accessibility': 3.1.1(react@19.0.0) 11765 - '@dnd-kit/utilities': 3.2.2(react@19.0.0) 11766 - react: 19.0.0 11767 - react-dom: 19.0.0(react@19.0.0) 11746 + '@dnd-kit/accessibility': 3.1.1(react@19.1.0) 11747 + '@dnd-kit/utilities': 3.2.2(react@19.1.0) 11748 + react: 19.1.0 11749 + react-dom: 19.1.0(react@19.1.0) 11768 11750 tslib: 2.8.1 11769 11751 11770 - '@dnd-kit/modifiers@9.0.0(@dnd-kit/core@6.3.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)': 11752 + '@dnd-kit/modifiers@9.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)': 11771 11753 dependencies: 11772 - '@dnd-kit/core': 6.3.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 11773 - '@dnd-kit/utilities': 3.2.2(react@19.0.0) 11774 - react: 19.0.0 11754 + '@dnd-kit/core': 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 11755 + '@dnd-kit/utilities': 3.2.2(react@19.1.0) 11756 + react: 19.1.0 11775 11757 tslib: 2.8.1 11776 11758 11777 - '@dnd-kit/sortable@10.0.0(@dnd-kit/core@6.3.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)': 11759 + '@dnd-kit/sortable@10.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)': 11778 11760 dependencies: 11779 - '@dnd-kit/core': 6.3.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 11780 - '@dnd-kit/utilities': 3.2.2(react@19.0.0) 11781 - react: 19.0.0 11761 + '@dnd-kit/core': 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 11762 + '@dnd-kit/utilities': 3.2.2(react@19.1.0) 11763 + react: 19.1.0 11782 11764 tslib: 2.8.1 11783 11765 11784 - '@dnd-kit/utilities@3.2.2(react@19.0.0)': 11766 + '@dnd-kit/utilities@3.2.2(react@19.1.0)': 11785 11767 dependencies: 11786 - react: 19.0.0 11768 + react: 19.1.0 11787 11769 tslib: 2.8.1 11788 11770 11789 11771 '@drizzle-team/brocli@0.10.1': {} ··· 12328 12310 '@floating-ui/core': 1.6.4 12329 12311 '@floating-ui/utils': 0.2.4 12330 12312 12331 - '@floating-ui/react-dom@2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 12313 + '@floating-ui/react-dom@2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 12332 12314 dependencies: 12333 12315 '@floating-ui/dom': 1.6.12 12334 - react: 19.0.0 12335 - react-dom: 19.0.0(react@19.0.0) 12316 + react: 19.1.0 12317 + react-dom: 19.1.0(react@19.1.0) 12336 12318 12337 12319 '@floating-ui/utils@0.2.4': {} 12338 12320 ··· 12397 12379 hono: 4.5.3 12398 12380 zod: 3.23.8 12399 12381 12400 - '@hookform/resolvers@3.9.1(react-hook-form@7.54.1(react@19.0.0))': 12382 + '@hookform/resolvers@3.9.1(react-hook-form@7.54.1(react@19.1.0))': 12401 12383 dependencies: 12402 - react-hook-form: 7.54.1(react@19.0.0) 12384 + react-hook-form: 7.54.1(react@19.1.0) 12403 12385 12404 12386 '@iconify-json/lucide@1.2.26': 12405 12387 dependencies: ··· 13214 13196 13215 13197 '@radix-ui/primitive@1.1.1': {} 13216 13198 13217 - '@radix-ui/react-accordion@1.2.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13199 + '@radix-ui/react-accordion@1.2.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13218 13200 dependencies: 13219 13201 '@radix-ui/primitive': 1.1.1 13220 - '@radix-ui/react-collapsible': 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13221 - '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13222 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13223 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13224 - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13225 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13226 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13227 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13228 - react: 19.0.0 13229 - react-dom: 19.0.0(react@19.0.0) 13202 + '@radix-ui/react-collapsible': 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13203 + '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13204 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13205 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13206 + '@radix-ui/react-direction': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13207 + '@radix-ui/react-id': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13208 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13209 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13210 + react: 19.1.0 13211 + react-dom: 19.1.0(react@19.1.0) 13230 13212 optionalDependencies: 13231 - '@types/react': 19.0.1 13232 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13213 + '@types/react': 19.1.0 13214 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13233 13215 13234 - '@radix-ui/react-alert-dialog@1.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13216 + '@radix-ui/react-alert-dialog@1.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13235 13217 dependencies: 13236 13218 '@radix-ui/primitive': 1.1.1 13237 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13238 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13239 - '@radix-ui/react-dialog': 1.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13240 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13241 - '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13242 - react: 19.0.0 13243 - react-dom: 19.0.0(react@19.0.0) 13219 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13220 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13221 + '@radix-ui/react-dialog': 1.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13222 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13223 + '@radix-ui/react-slot': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13224 + react: 19.1.0 13225 + react-dom: 19.1.0(react@19.1.0) 13244 13226 optionalDependencies: 13245 - '@types/react': 19.0.1 13246 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13227 + '@types/react': 19.1.0 13228 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13247 13229 13248 - '@radix-ui/react-arrow@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13230 + '@radix-ui/react-arrow@1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13249 13231 dependencies: 13250 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13251 - react: 19.0.0 13252 - react-dom: 19.0.0(react@19.0.0) 13232 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13233 + react: 19.1.0 13234 + react-dom: 19.1.0(react@19.1.0) 13253 13235 optionalDependencies: 13254 - '@types/react': 19.0.1 13255 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13236 + '@types/react': 19.1.0 13237 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13256 13238 13257 - '@radix-ui/react-avatar@1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13239 + '@radix-ui/react-avatar@1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13258 13240 dependencies: 13259 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13260 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13261 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13262 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13263 - react: 19.0.0 13264 - react-dom: 19.0.0(react@19.0.0) 13241 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13242 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13243 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13244 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13245 + react: 19.1.0 13246 + react-dom: 19.1.0(react@19.1.0) 13265 13247 optionalDependencies: 13266 - '@types/react': 19.0.1 13267 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13248 + '@types/react': 19.1.0 13249 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13268 13250 13269 - '@radix-ui/react-checkbox@1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13251 + '@radix-ui/react-checkbox@1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13270 13252 dependencies: 13271 13253 '@radix-ui/primitive': 1.1.1 13272 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13273 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13274 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13275 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13276 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13277 - '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13278 - '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13279 - react: 19.0.0 13280 - react-dom: 19.0.0(react@19.0.0) 13254 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13255 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13256 + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13257 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13258 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13259 + '@radix-ui/react-use-previous': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13260 + '@radix-ui/react-use-size': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13261 + react: 19.1.0 13262 + react-dom: 19.1.0(react@19.1.0) 13281 13263 optionalDependencies: 13282 - '@types/react': 19.0.1 13283 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13264 + '@types/react': 19.1.0 13265 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13284 13266 13285 - '@radix-ui/react-collapsible@1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13267 + '@radix-ui/react-collapsible@1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13286 13268 dependencies: 13287 13269 '@radix-ui/primitive': 1.1.1 13288 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13289 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13290 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13291 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13292 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13293 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13294 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13295 - react: 19.0.0 13296 - react-dom: 19.0.0(react@19.0.0) 13270 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13271 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13272 + '@radix-ui/react-id': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13273 + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13274 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13275 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13276 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13277 + react: 19.1.0 13278 + react-dom: 19.1.0(react@19.1.0) 13297 13279 optionalDependencies: 13298 - '@types/react': 19.0.1 13299 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13280 + '@types/react': 19.1.0 13281 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13300 13282 13301 - '@radix-ui/react-collection@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13283 + '@radix-ui/react-collection@1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13302 13284 dependencies: 13303 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13304 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13305 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13306 - '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13307 - react: 19.0.0 13308 - react-dom: 19.0.0(react@19.0.0) 13285 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13286 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13287 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13288 + '@radix-ui/react-slot': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13289 + react: 19.1.0 13290 + react-dom: 19.1.0(react@19.1.0) 13309 13291 optionalDependencies: 13310 - '@types/react': 19.0.1 13311 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13292 + '@types/react': 19.1.0 13293 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13312 13294 13313 - '@radix-ui/react-compose-refs@1.1.1(@types/react@19.0.1)(react@19.0.0)': 13295 + '@radix-ui/react-compose-refs@1.1.1(@types/react@19.1.0)(react@19.1.0)': 13314 13296 dependencies: 13315 - react: 19.0.0 13297 + react: 19.1.0 13316 13298 optionalDependencies: 13317 - '@types/react': 19.0.1 13299 + '@types/react': 19.1.0 13318 13300 13319 - '@radix-ui/react-context-menu@2.2.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13301 + '@radix-ui/react-context-menu@2.2.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13320 13302 dependencies: 13321 13303 '@radix-ui/primitive': 1.1.1 13322 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13323 - '@radix-ui/react-menu': 2.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13324 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13325 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13326 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13327 - react: 19.0.0 13328 - react-dom: 19.0.0(react@19.0.0) 13304 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13305 + '@radix-ui/react-menu': 2.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13306 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13307 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13308 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13309 + react: 19.1.0 13310 + react-dom: 19.1.0(react@19.1.0) 13329 13311 optionalDependencies: 13330 - '@types/react': 19.0.1 13331 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13312 + '@types/react': 19.1.0 13313 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13332 13314 13333 - '@radix-ui/react-context@1.1.1(@types/react@19.0.1)(react@19.0.0)': 13315 + '@radix-ui/react-context@1.1.1(@types/react@19.1.0)(react@19.1.0)': 13334 13316 dependencies: 13335 - react: 19.0.0 13317 + react: 19.1.0 13336 13318 optionalDependencies: 13337 - '@types/react': 19.0.1 13319 + '@types/react': 19.1.0 13338 13320 13339 - '@radix-ui/react-dialog@1.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13321 + '@radix-ui/react-dialog@1.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13340 13322 dependencies: 13341 13323 '@radix-ui/primitive': 1.1.1 13342 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13343 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13344 - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13345 - '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13346 - '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13347 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13348 - '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13349 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13350 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13351 - '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13352 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13324 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13325 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13326 + '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13327 + '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13328 + '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13329 + '@radix-ui/react-id': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13330 + '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13331 + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13332 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13333 + '@radix-ui/react-slot': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13334 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13353 13335 aria-hidden: 1.2.4 13354 - react: 19.0.0 13355 - react-dom: 19.0.0(react@19.0.0) 13356 - react-remove-scroll: 2.6.2(@types/react@19.0.1)(react@19.0.0) 13336 + react: 19.1.0 13337 + react-dom: 19.1.0(react@19.1.0) 13338 + react-remove-scroll: 2.6.2(@types/react@19.1.0)(react@19.1.0) 13357 13339 optionalDependencies: 13358 - '@types/react': 19.0.1 13359 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13340 + '@types/react': 19.1.0 13341 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13360 13342 13361 - '@radix-ui/react-direction@1.1.0(@types/react@19.0.1)(react@19.0.0)': 13343 + '@radix-ui/react-direction@1.1.0(@types/react@19.1.0)(react@19.1.0)': 13362 13344 dependencies: 13363 - react: 19.0.0 13345 + react: 19.1.0 13364 13346 optionalDependencies: 13365 - '@types/react': 19.0.1 13347 + '@types/react': 19.1.0 13366 13348 13367 - '@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13349 + '@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13368 13350 dependencies: 13369 13351 '@radix-ui/primitive': 1.1.1 13370 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13371 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13372 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13373 - '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13374 - react: 19.0.0 13375 - react-dom: 19.0.0(react@19.0.0) 13352 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13353 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13354 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13355 + '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13356 + react: 19.1.0 13357 + react-dom: 19.1.0(react@19.1.0) 13376 13358 optionalDependencies: 13377 - '@types/react': 19.0.1 13378 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13359 + '@types/react': 19.1.0 13360 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13379 13361 13380 - '@radix-ui/react-dropdown-menu@2.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13362 + '@radix-ui/react-dropdown-menu@2.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13381 13363 dependencies: 13382 13364 '@radix-ui/primitive': 1.1.1 13383 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13384 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13385 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13386 - '@radix-ui/react-menu': 2.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13387 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13388 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13389 - react: 19.0.0 13390 - react-dom: 19.0.0(react@19.0.0) 13365 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13366 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13367 + '@radix-ui/react-id': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13368 + '@radix-ui/react-menu': 2.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13369 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13370 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13371 + react: 19.1.0 13372 + react-dom: 19.1.0(react@19.1.0) 13391 13373 optionalDependencies: 13392 - '@types/react': 19.0.1 13393 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13374 + '@types/react': 19.1.0 13375 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13394 13376 13395 - '@radix-ui/react-focus-guards@1.1.1(@types/react@19.0.1)(react@19.0.0)': 13377 + '@radix-ui/react-focus-guards@1.1.1(@types/react@19.1.0)(react@19.1.0)': 13396 13378 dependencies: 13397 - react: 19.0.0 13379 + react: 19.1.0 13398 13380 optionalDependencies: 13399 - '@types/react': 19.0.1 13381 + '@types/react': 19.1.0 13400 13382 13401 - '@radix-ui/react-focus-scope@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13383 + '@radix-ui/react-focus-scope@1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13402 13384 dependencies: 13403 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13404 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13405 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13406 - react: 19.0.0 13407 - react-dom: 19.0.0(react@19.0.0) 13385 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13386 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13387 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13388 + react: 19.1.0 13389 + react-dom: 19.1.0(react@19.1.0) 13408 13390 optionalDependencies: 13409 - '@types/react': 19.0.1 13410 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13391 + '@types/react': 19.1.0 13392 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13411 13393 13412 - '@radix-ui/react-hover-card@1.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13394 + '@radix-ui/react-hover-card@1.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13413 13395 dependencies: 13414 13396 '@radix-ui/primitive': 1.1.1 13415 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13416 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13417 - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13418 - '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13419 - '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13420 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13421 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13422 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13423 - react: 19.0.0 13424 - react-dom: 19.0.0(react@19.0.0) 13397 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13398 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13399 + '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13400 + '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13401 + '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13402 + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13403 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13404 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13405 + react: 19.1.0 13406 + react-dom: 19.1.0(react@19.1.0) 13425 13407 optionalDependencies: 13426 - '@types/react': 19.0.1 13427 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13408 + '@types/react': 19.1.0 13409 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13428 13410 13429 - '@radix-ui/react-id@1.1.0(@types/react@19.0.1)(react@19.0.0)': 13411 + '@radix-ui/react-id@1.1.0(@types/react@19.1.0)(react@19.1.0)': 13430 13412 dependencies: 13431 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13432 - react: 19.0.0 13413 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13414 + react: 19.1.0 13433 13415 optionalDependencies: 13434 - '@types/react': 19.0.1 13416 + '@types/react': 19.1.0 13435 13417 13436 - '@radix-ui/react-label@2.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13418 + '@radix-ui/react-label@2.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13437 13419 dependencies: 13438 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13439 - react: 19.0.0 13440 - react-dom: 19.0.0(react@19.0.0) 13420 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13421 + react: 19.1.0 13422 + react-dom: 19.1.0(react@19.1.0) 13441 13423 optionalDependencies: 13442 - '@types/react': 19.0.1 13443 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13424 + '@types/react': 19.1.0 13425 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13444 13426 13445 - '@radix-ui/react-menu@2.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13427 + '@radix-ui/react-menu@2.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13446 13428 dependencies: 13447 13429 '@radix-ui/primitive': 1.1.1 13448 - '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13449 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13450 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13451 - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13452 - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13453 - '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13454 - '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13455 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13456 - '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13457 - '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13458 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13459 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13460 - '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13461 - '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13462 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13430 + '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13431 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13432 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13433 + '@radix-ui/react-direction': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13434 + '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13435 + '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13436 + '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13437 + '@radix-ui/react-id': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13438 + '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13439 + '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13440 + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13441 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13442 + '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13443 + '@radix-ui/react-slot': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13444 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13463 13445 aria-hidden: 1.2.4 13464 - react: 19.0.0 13465 - react-dom: 19.0.0(react@19.0.0) 13466 - react-remove-scroll: 2.6.2(@types/react@19.0.1)(react@19.0.0) 13446 + react: 19.1.0 13447 + react-dom: 19.1.0(react@19.1.0) 13448 + react-remove-scroll: 2.6.2(@types/react@19.1.0)(react@19.1.0) 13467 13449 optionalDependencies: 13468 - '@types/react': 19.0.1 13469 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13450 + '@types/react': 19.1.0 13451 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13470 13452 13471 - '@radix-ui/react-navigation-menu@1.2.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13453 + '@radix-ui/react-navigation-menu@1.2.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13472 13454 dependencies: 13473 13455 '@radix-ui/primitive': 1.1.1 13474 - '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13475 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13476 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13477 - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13478 - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13479 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13480 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13481 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13482 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13483 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13484 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13485 - '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13486 - '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13487 - react: 19.0.0 13488 - react-dom: 19.0.0(react@19.0.0) 13456 + '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13457 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13458 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13459 + '@radix-ui/react-direction': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13460 + '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13461 + '@radix-ui/react-id': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13462 + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13463 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13464 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13465 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13466 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13467 + '@radix-ui/react-use-previous': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13468 + '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13469 + react: 19.1.0 13470 + react-dom: 19.1.0(react@19.1.0) 13489 13471 optionalDependencies: 13490 - '@types/react': 19.0.1 13491 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13472 + '@types/react': 19.1.0 13473 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13492 13474 13493 - '@radix-ui/react-popover@1.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13475 + '@radix-ui/react-popover@1.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13494 13476 dependencies: 13495 13477 '@radix-ui/primitive': 1.1.1 13496 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13497 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13498 - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13499 - '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13500 - '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13501 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13502 - '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13503 - '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13504 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13505 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13506 - '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13507 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13478 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13479 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13480 + '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13481 + '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13482 + '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13483 + '@radix-ui/react-id': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13484 + '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13485 + '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13486 + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13487 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13488 + '@radix-ui/react-slot': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13489 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13508 13490 aria-hidden: 1.2.4 13509 - react: 19.0.0 13510 - react-dom: 19.0.0(react@19.0.0) 13511 - react-remove-scroll: 2.6.2(@types/react@19.0.1)(react@19.0.0) 13491 + react: 19.1.0 13492 + react-dom: 19.1.0(react@19.1.0) 13493 + react-remove-scroll: 2.6.2(@types/react@19.1.0)(react@19.1.0) 13512 13494 optionalDependencies: 13513 - '@types/react': 19.0.1 13514 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13495 + '@types/react': 19.1.0 13496 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13515 13497 13516 - '@radix-ui/react-popper@1.2.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13498 + '@radix-ui/react-popper@1.2.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13517 13499 dependencies: 13518 - '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13519 - '@radix-ui/react-arrow': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13520 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13521 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13522 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13523 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13524 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13525 - '@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13526 - '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13500 + '@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13501 + '@radix-ui/react-arrow': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13502 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13503 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13504 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13505 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13506 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13507 + '@radix-ui/react-use-rect': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13508 + '@radix-ui/react-use-size': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13527 13509 '@radix-ui/rect': 1.1.0 13528 - react: 19.0.0 13529 - react-dom: 19.0.0(react@19.0.0) 13510 + react: 19.1.0 13511 + react-dom: 19.1.0(react@19.1.0) 13530 13512 optionalDependencies: 13531 - '@types/react': 19.0.1 13532 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13513 + '@types/react': 19.1.0 13514 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13533 13515 13534 - '@radix-ui/react-portal@1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13516 + '@radix-ui/react-portal@1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13535 13517 dependencies: 13536 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13537 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13538 - react: 19.0.0 13539 - react-dom: 19.0.0(react@19.0.0) 13518 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13519 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13520 + react: 19.1.0 13521 + react-dom: 19.1.0(react@19.1.0) 13540 13522 optionalDependencies: 13541 - '@types/react': 19.0.1 13542 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13523 + '@types/react': 19.1.0 13524 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13543 13525 13544 - '@radix-ui/react-presence@1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13526 + '@radix-ui/react-presence@1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13545 13527 dependencies: 13546 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13547 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13548 - react: 19.0.0 13549 - react-dom: 19.0.0(react@19.0.0) 13528 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13529 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13530 + react: 19.1.0 13531 + react-dom: 19.1.0(react@19.1.0) 13550 13532 optionalDependencies: 13551 - '@types/react': 19.0.1 13552 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13533 + '@types/react': 19.1.0 13534 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13553 13535 13554 - '@radix-ui/react-primitive@2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13536 + '@radix-ui/react-primitive@2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13555 13537 dependencies: 13556 - '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13557 - react: 19.0.0 13558 - react-dom: 19.0.0(react@19.0.0) 13538 + '@radix-ui/react-slot': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13539 + react: 19.1.0 13540 + react-dom: 19.1.0(react@19.1.0) 13559 13541 optionalDependencies: 13560 - '@types/react': 19.0.1 13561 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13542 + '@types/react': 19.1.0 13543 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13562 13544 13563 - '@radix-ui/react-progress@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13545 + '@radix-ui/react-progress@1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13564 13546 dependencies: 13565 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13566 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13567 - react: 19.0.0 13568 - react-dom: 19.0.0(react@19.0.0) 13547 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13548 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13549 + react: 19.1.0 13550 + react-dom: 19.1.0(react@19.1.0) 13569 13551 optionalDependencies: 13570 - '@types/react': 19.0.1 13571 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13552 + '@types/react': 19.1.0 13553 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13572 13554 13573 - '@radix-ui/react-radio-group@1.2.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13555 + '@radix-ui/react-radio-group@1.2.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13574 13556 dependencies: 13575 13557 '@radix-ui/primitive': 1.1.1 13576 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13577 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13578 - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13579 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13580 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13581 - '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13582 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13583 - '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13584 - '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13585 - react: 19.0.0 13586 - react-dom: 19.0.0(react@19.0.0) 13558 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13559 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13560 + '@radix-ui/react-direction': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13561 + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13562 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13563 + '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13564 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13565 + '@radix-ui/react-use-previous': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13566 + '@radix-ui/react-use-size': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13567 + react: 19.1.0 13568 + react-dom: 19.1.0(react@19.1.0) 13587 13569 optionalDependencies: 13588 - '@types/react': 19.0.1 13589 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13570 + '@types/react': 19.1.0 13571 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13590 13572 13591 - '@radix-ui/react-roving-focus@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13573 + '@radix-ui/react-roving-focus@1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13592 13574 dependencies: 13593 13575 '@radix-ui/primitive': 1.1.1 13594 - '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13595 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13596 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13597 - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13598 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13599 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13600 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13601 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13602 - react: 19.0.0 13603 - react-dom: 19.0.0(react@19.0.0) 13576 + '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13577 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13578 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13579 + '@radix-ui/react-direction': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13580 + '@radix-ui/react-id': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13581 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13582 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13583 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13584 + react: 19.1.0 13585 + react-dom: 19.1.0(react@19.1.0) 13604 13586 optionalDependencies: 13605 - '@types/react': 19.0.1 13606 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13587 + '@types/react': 19.1.0 13588 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13607 13589 13608 - '@radix-ui/react-select@2.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13590 + '@radix-ui/react-select@2.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13609 13591 dependencies: 13610 13592 '@radix-ui/number': 1.1.0 13611 13593 '@radix-ui/primitive': 1.1.1 13612 - '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13613 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13614 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13615 - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13616 - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13617 - '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13618 - '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13619 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13620 - '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13621 - '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13622 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13623 - '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13624 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13625 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13626 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13627 - '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13628 - '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13594 + '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13595 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13596 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13597 + '@radix-ui/react-direction': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13598 + '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13599 + '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13600 + '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13601 + '@radix-ui/react-id': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13602 + '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13603 + '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13604 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13605 + '@radix-ui/react-slot': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13606 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13607 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13608 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13609 + '@radix-ui/react-use-previous': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13610 + '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13629 13611 aria-hidden: 1.2.4 13630 - react: 19.0.0 13631 - react-dom: 19.0.0(react@19.0.0) 13632 - react-remove-scroll: 2.6.2(@types/react@19.0.1)(react@19.0.0) 13612 + react: 19.1.0 13613 + react-dom: 19.1.0(react@19.1.0) 13614 + react-remove-scroll: 2.6.2(@types/react@19.1.0)(react@19.1.0) 13633 13615 optionalDependencies: 13634 - '@types/react': 19.0.1 13635 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13616 + '@types/react': 19.1.0 13617 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13636 13618 13637 - '@radix-ui/react-separator@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13619 + '@radix-ui/react-separator@1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13638 13620 dependencies: 13639 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13640 - react: 19.0.0 13641 - react-dom: 19.0.0(react@19.0.0) 13621 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13622 + react: 19.1.0 13623 + react-dom: 19.1.0(react@19.1.0) 13642 13624 optionalDependencies: 13643 - '@types/react': 19.0.1 13644 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13625 + '@types/react': 19.1.0 13626 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13645 13627 13646 - '@radix-ui/react-slider@1.2.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13628 + '@radix-ui/react-slider@1.2.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13647 13629 dependencies: 13648 13630 '@radix-ui/number': 1.1.0 13649 13631 '@radix-ui/primitive': 1.1.1 13650 - '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13651 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13652 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13653 - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13654 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13655 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13656 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13657 - '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13658 - '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13659 - react: 19.0.0 13660 - react-dom: 19.0.0(react@19.0.0) 13632 + '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13633 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13634 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13635 + '@radix-ui/react-direction': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13636 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13637 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13638 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13639 + '@radix-ui/react-use-previous': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13640 + '@radix-ui/react-use-size': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13641 + react: 19.1.0 13642 + react-dom: 19.1.0(react@19.1.0) 13661 13643 optionalDependencies: 13662 - '@types/react': 19.0.1 13663 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13644 + '@types/react': 19.1.0 13645 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13664 13646 13665 - '@radix-ui/react-slot@1.1.1(@types/react@19.0.1)(react@19.0.0)': 13647 + '@radix-ui/react-slot@1.1.1(@types/react@19.1.0)(react@19.1.0)': 13666 13648 dependencies: 13667 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13668 - react: 19.0.0 13649 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13650 + react: 19.1.0 13669 13651 optionalDependencies: 13670 - '@types/react': 19.0.1 13652 + '@types/react': 19.1.0 13671 13653 13672 - '@radix-ui/react-switch@1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13654 + '@radix-ui/react-switch@1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13673 13655 dependencies: 13674 13656 '@radix-ui/primitive': 1.1.1 13675 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13676 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13677 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13678 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13679 - '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13680 - '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13681 - react: 19.0.0 13682 - react-dom: 19.0.0(react@19.0.0) 13657 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13658 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13659 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13660 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13661 + '@radix-ui/react-use-previous': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13662 + '@radix-ui/react-use-size': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13663 + react: 19.1.0 13664 + react-dom: 19.1.0(react@19.1.0) 13683 13665 optionalDependencies: 13684 - '@types/react': 19.0.1 13685 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13666 + '@types/react': 19.1.0 13667 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13686 13668 13687 - '@radix-ui/react-tabs@1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13669 + '@radix-ui/react-tabs@1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13688 13670 dependencies: 13689 13671 '@radix-ui/primitive': 1.1.1 13690 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13691 - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13692 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13693 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13694 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13695 - '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13696 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13697 - react: 19.0.0 13698 - react-dom: 19.0.0(react@19.0.0) 13672 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13673 + '@radix-ui/react-direction': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13674 + '@radix-ui/react-id': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13675 + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13676 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13677 + '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13678 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13679 + react: 19.1.0 13680 + react-dom: 19.1.0(react@19.1.0) 13699 13681 optionalDependencies: 13700 - '@types/react': 19.0.1 13701 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13682 + '@types/react': 19.1.0 13683 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13702 13684 13703 - '@radix-ui/react-toggle@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13685 + '@radix-ui/react-toggle@1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13704 13686 dependencies: 13705 13687 '@radix-ui/primitive': 1.1.1 13706 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13707 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13708 - react: 19.0.0 13709 - react-dom: 19.0.0(react@19.0.0) 13688 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13689 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13690 + react: 19.1.0 13691 + react-dom: 19.1.0(react@19.1.0) 13710 13692 optionalDependencies: 13711 - '@types/react': 19.0.1 13712 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13693 + '@types/react': 19.1.0 13694 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13713 13695 13714 - '@radix-ui/react-tooltip@1.1.6(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13696 + '@radix-ui/react-tooltip@1.1.6(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13715 13697 dependencies: 13716 13698 '@radix-ui/primitive': 1.1.1 13717 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13718 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13719 - '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13720 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13721 - '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13722 - '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13723 - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13724 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13725 - '@radix-ui/react-slot': 1.1.1(@types/react@19.0.1)(react@19.0.0) 13726 - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13727 - '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13728 - react: 19.0.0 13729 - react-dom: 19.0.0(react@19.0.0) 13699 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13700 + '@radix-ui/react-context': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13701 + '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13702 + '@radix-ui/react-id': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13703 + '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13704 + '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13705 + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13706 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13707 + '@radix-ui/react-slot': 1.1.1(@types/react@19.1.0)(react@19.1.0) 13708 + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13709 + '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13710 + react: 19.1.0 13711 + react-dom: 19.1.0(react@19.1.0) 13730 13712 optionalDependencies: 13731 - '@types/react': 19.0.1 13732 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13713 + '@types/react': 19.1.0 13714 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13733 13715 13734 - '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.0.1)(react@19.0.0)': 13716 + '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.1.0)(react@19.1.0)': 13735 13717 dependencies: 13736 - react: 19.0.0 13718 + react: 19.1.0 13737 13719 optionalDependencies: 13738 - '@types/react': 19.0.1 13720 + '@types/react': 19.1.0 13739 13721 13740 - '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.0.1)(react@19.0.0)': 13722 + '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.1.0)(react@19.1.0)': 13741 13723 dependencies: 13742 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13743 - react: 19.0.0 13724 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13725 + react: 19.1.0 13744 13726 optionalDependencies: 13745 - '@types/react': 19.0.1 13727 + '@types/react': 19.1.0 13746 13728 13747 - '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.0.1)(react@19.0.0)': 13729 + '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.1.0)(react@19.1.0)': 13748 13730 dependencies: 13749 - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13750 - react: 19.0.0 13731 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13732 + react: 19.1.0 13751 13733 optionalDependencies: 13752 - '@types/react': 19.0.1 13734 + '@types/react': 19.1.0 13753 13735 13754 - '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.0.1)(react@19.0.0)': 13736 + '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.1.0)(react@19.1.0)': 13755 13737 dependencies: 13756 - react: 19.0.0 13738 + react: 19.1.0 13757 13739 optionalDependencies: 13758 - '@types/react': 19.0.1 13740 + '@types/react': 19.1.0 13759 13741 13760 - '@radix-ui/react-use-previous@1.1.0(@types/react@19.0.1)(react@19.0.0)': 13742 + '@radix-ui/react-use-previous@1.1.0(@types/react@19.1.0)(react@19.1.0)': 13761 13743 dependencies: 13762 - react: 19.0.0 13744 + react: 19.1.0 13763 13745 optionalDependencies: 13764 - '@types/react': 19.0.1 13746 + '@types/react': 19.1.0 13765 13747 13766 - '@radix-ui/react-use-rect@1.1.0(@types/react@19.0.1)(react@19.0.0)': 13748 + '@radix-ui/react-use-rect@1.1.0(@types/react@19.1.0)(react@19.1.0)': 13767 13749 dependencies: 13768 13750 '@radix-ui/rect': 1.1.0 13769 - react: 19.0.0 13751 + react: 19.1.0 13770 13752 optionalDependencies: 13771 - '@types/react': 19.0.1 13753 + '@types/react': 19.1.0 13772 13754 13773 - '@radix-ui/react-use-size@1.1.0(@types/react@19.0.1)(react@19.0.0)': 13755 + '@radix-ui/react-use-size@1.1.0(@types/react@19.1.0)(react@19.1.0)': 13774 13756 dependencies: 13775 - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.1)(react@19.0.0) 13776 - react: 19.0.0 13757 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.1.0)(react@19.1.0) 13758 + react: 19.1.0 13777 13759 optionalDependencies: 13778 - '@types/react': 19.0.1 13760 + '@types/react': 19.1.0 13779 13761 13780 - '@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13762 + '@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13781 13763 dependencies: 13782 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13783 - react: 19.0.0 13784 - react-dom: 19.0.0(react@19.0.0) 13764 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13765 + react: 19.1.0 13766 + react-dom: 19.1.0(react@19.1.0) 13785 13767 optionalDependencies: 13786 - '@types/react': 19.0.1 13787 - '@types/react-dom': 19.0.2(@types/react@19.0.1) 13768 + '@types/react': 19.1.0 13769 + '@types/react-dom': 19.1.1(@types/react@19.1.0) 13788 13770 13789 13771 '@radix-ui/rect@1.1.0': {} 13790 13772 13791 - '@react-email/body@0.0.11(react@19.0.0)': 13773 + '@react-email/body@0.0.11(react@19.1.0)': 13792 13774 dependencies: 13793 - react: 19.0.0 13775 + react: 19.1.0 13794 13776 13795 - '@react-email/button@0.0.19(react@19.0.0)': 13777 + '@react-email/button@0.0.19(react@19.1.0)': 13796 13778 dependencies: 13797 - react: 19.0.0 13779 + react: 19.1.0 13798 13780 13799 - '@react-email/code-block@0.0.11(react@19.0.0)': 13781 + '@react-email/code-block@0.0.12(react@19.1.0)': 13800 13782 dependencies: 13801 - prismjs: 1.29.0 13802 - react: 19.0.0 13783 + prismjs: 1.30.0 13784 + react: 19.1.0 13803 13785 13804 - '@react-email/code-inline@0.0.5(react@19.0.0)': 13786 + '@react-email/code-inline@0.0.5(react@19.1.0)': 13805 13787 dependencies: 13806 - react: 19.0.0 13788 + react: 19.1.0 13807 13789 13808 - '@react-email/column@0.0.13(react@19.0.0)': 13790 + '@react-email/column@0.0.13(react@19.1.0)': 13809 13791 dependencies: 13810 - react: 19.0.0 13792 + react: 19.1.0 13811 13793 13812 - '@react-email/components@0.0.31(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13794 + '@react-email/components@0.0.36(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13813 13795 dependencies: 13814 - '@react-email/body': 0.0.11(react@19.0.0) 13815 - '@react-email/button': 0.0.19(react@19.0.0) 13816 - '@react-email/code-block': 0.0.11(react@19.0.0) 13817 - '@react-email/code-inline': 0.0.5(react@19.0.0) 13818 - '@react-email/column': 0.0.13(react@19.0.0) 13819 - '@react-email/container': 0.0.15(react@19.0.0) 13820 - '@react-email/font': 0.0.9(react@19.0.0) 13821 - '@react-email/head': 0.0.12(react@19.0.0) 13822 - '@react-email/heading': 0.0.15(react@19.0.0) 13823 - '@react-email/hr': 0.0.11(react@19.0.0) 13824 - '@react-email/html': 0.0.11(react@19.0.0) 13825 - '@react-email/img': 0.0.11(react@19.0.0) 13826 - '@react-email/link': 0.0.12(react@19.0.0) 13827 - '@react-email/markdown': 0.0.14(react@19.0.0) 13828 - '@react-email/preview': 0.0.12(react@19.0.0) 13829 - '@react-email/render': 1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 13830 - '@react-email/row': 0.0.12(react@19.0.0) 13831 - '@react-email/section': 0.0.16(react@19.0.0) 13832 - '@react-email/tailwind': 1.0.4(react@19.0.0) 13833 - '@react-email/text': 0.0.11(react@19.0.0) 13834 - react: 19.0.0 13796 + '@react-email/body': 0.0.11(react@19.1.0) 13797 + '@react-email/button': 0.0.19(react@19.1.0) 13798 + '@react-email/code-block': 0.0.12(react@19.1.0) 13799 + '@react-email/code-inline': 0.0.5(react@19.1.0) 13800 + '@react-email/column': 0.0.13(react@19.1.0) 13801 + '@react-email/container': 0.0.15(react@19.1.0) 13802 + '@react-email/font': 0.0.9(react@19.1.0) 13803 + '@react-email/head': 0.0.12(react@19.1.0) 13804 + '@react-email/heading': 0.0.15(react@19.1.0) 13805 + '@react-email/hr': 0.0.11(react@19.1.0) 13806 + '@react-email/html': 0.0.11(react@19.1.0) 13807 + '@react-email/img': 0.0.11(react@19.1.0) 13808 + '@react-email/link': 0.0.12(react@19.1.0) 13809 + '@react-email/markdown': 0.0.14(react@19.1.0) 13810 + '@react-email/preview': 0.0.12(react@19.1.0) 13811 + '@react-email/render': 1.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 13812 + '@react-email/row': 0.0.12(react@19.1.0) 13813 + '@react-email/section': 0.0.16(react@19.1.0) 13814 + '@react-email/tailwind': 1.0.4(react@19.1.0) 13815 + '@react-email/text': 0.1.1(react@19.1.0) 13816 + react: 19.1.0 13835 13817 transitivePeerDependencies: 13836 13818 - react-dom 13837 13819 13838 - '@react-email/container@0.0.15(react@19.0.0)': 13820 + '@react-email/container@0.0.15(react@19.1.0)': 13839 13821 dependencies: 13840 - react: 19.0.0 13822 + react: 19.1.0 13841 13823 13842 - '@react-email/font@0.0.9(react@19.0.0)': 13824 + '@react-email/font@0.0.9(react@19.1.0)': 13843 13825 dependencies: 13844 - react: 19.0.0 13826 + react: 19.1.0 13845 13827 13846 - '@react-email/head@0.0.12(react@19.0.0)': 13828 + '@react-email/head@0.0.12(react@19.1.0)': 13847 13829 dependencies: 13848 - react: 19.0.0 13830 + react: 19.1.0 13849 13831 13850 - '@react-email/heading@0.0.15(react@19.0.0)': 13832 + '@react-email/heading@0.0.15(react@19.1.0)': 13851 13833 dependencies: 13852 - react: 19.0.0 13834 + react: 19.1.0 13853 13835 13854 - '@react-email/hr@0.0.11(react@19.0.0)': 13836 + '@react-email/hr@0.0.11(react@19.1.0)': 13855 13837 dependencies: 13856 - react: 19.0.0 13838 + react: 19.1.0 13857 13839 13858 - '@react-email/html@0.0.11(react@19.0.0)': 13840 + '@react-email/html@0.0.11(react@19.1.0)': 13859 13841 dependencies: 13860 - react: 19.0.0 13842 + react: 19.1.0 13861 13843 13862 - '@react-email/img@0.0.11(react@19.0.0)': 13844 + '@react-email/img@0.0.11(react@19.1.0)': 13863 13845 dependencies: 13864 - react: 19.0.0 13846 + react: 19.1.0 13865 13847 13866 - '@react-email/link@0.0.12(react@19.0.0)': 13848 + '@react-email/link@0.0.12(react@19.1.0)': 13867 13849 dependencies: 13868 - react: 19.0.0 13850 + react: 19.1.0 13869 13851 13870 - '@react-email/markdown@0.0.14(react@19.0.0)': 13852 + '@react-email/markdown@0.0.14(react@19.1.0)': 13871 13853 dependencies: 13872 - md-to-react-email: 5.0.5(react@19.0.0) 13873 - react: 19.0.0 13854 + md-to-react-email: 5.0.5(react@19.1.0) 13855 + react: 19.1.0 13874 13856 13875 - '@react-email/preview@0.0.12(react@19.0.0)': 13857 + '@react-email/preview@0.0.12(react@19.1.0)': 13876 13858 dependencies: 13877 - react: 19.0.0 13859 + react: 19.1.0 13878 13860 13879 - '@react-email/render@1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13861 + '@react-email/render@1.0.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13880 13862 dependencies: 13881 13863 html-to-text: 9.0.5 13882 13864 js-beautify: 1.15.1 13883 - react: 19.0.0 13884 - react-dom: 19.0.0(react@19.0.0) 13865 + react: 19.1.0 13866 + react-dom: 19.1.0(react@19.1.0) 13885 13867 react-promise-suspense: 0.3.4 13886 13868 13887 - '@react-email/render@1.0.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 13869 + '@react-email/render@1.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 13888 13870 dependencies: 13889 13871 html-to-text: 9.0.5 13890 - prettier: 3.3.3 13891 - react: 19.0.0 13892 - react-dom: 19.0.0(react@19.0.0) 13872 + prettier: 3.5.3 13873 + react: 19.1.0 13874 + react-dom: 19.1.0(react@19.1.0) 13893 13875 react-promise-suspense: 0.3.4 13894 13876 13895 - '@react-email/row@0.0.12(react@19.0.0)': 13877 + '@react-email/row@0.0.12(react@19.1.0)': 13896 13878 dependencies: 13897 - react: 19.0.0 13879 + react: 19.1.0 13898 13880 13899 - '@react-email/section@0.0.16(react@19.0.0)': 13881 + '@react-email/section@0.0.16(react@19.1.0)': 13900 13882 dependencies: 13901 - react: 19.0.0 13883 + react: 19.1.0 13902 13884 13903 - '@react-email/tailwind@1.0.4(react@19.0.0)': 13885 + '@react-email/tailwind@1.0.4(react@19.1.0)': 13904 13886 dependencies: 13905 - react: 19.0.0 13887 + react: 19.1.0 13906 13888 13907 - '@react-email/text@0.0.11(react@19.0.0)': 13889 + '@react-email/text@0.1.1(react@19.1.0)': 13908 13890 dependencies: 13909 - react: 19.0.0 13891 + react: 19.1.0 13910 13892 13911 13893 '@replit/codemirror-css-color-picker@6.1.1(@codemirror/language@6.10.2)(@codemirror/state@6.4.1)(@codemirror/view@6.28.4)': 13912 13894 dependencies: ··· 13999 13981 '@rollup/rollup-win32-x64-msvc@4.34.8': 14000 13982 optional: true 14001 13983 14002 - '@scalar/api-client@2.0.45(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)))(typescript@5.7.2)': 13984 + '@scalar/api-client@2.0.45(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)))(typescript@5.7.2)': 14003 13985 dependencies: 14004 13986 '@headlessui/tailwindcss': 0.2.0(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2))) 14005 13987 '@headlessui/vue': 1.7.22(vue@3.4.31(typescript@5.7.2)) 14006 - '@scalar/components': 0.12.28(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5))(typescript@5.7.2) 13988 + '@scalar/components': 0.12.28(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5))(typescript@5.7.2) 14007 13989 '@scalar/draggable': 0.1.4(typescript@5.7.2) 14008 13990 '@scalar/oas-utils': 0.2.26(typescript@5.7.2) 14009 13991 '@scalar/object-utils': 1.1.5(vue@3.4.31(typescript@5.7.2)) ··· 14037 14019 - typescript 14038 14020 - vitest 14039 14021 14040 - '@scalar/api-reference@1.24.70(postcss@8.5.3)(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)))(typescript@5.7.2)': 14022 + '@scalar/api-reference@1.24.70(postcss@8.5.3)(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)))(typescript@5.7.2)': 14041 14023 dependencies: 14042 14024 '@floating-ui/vue': 1.1.1(vue@3.4.31(typescript@5.7.2)) 14043 14025 '@headlessui/vue': 1.7.22(vue@3.4.31(typescript@5.7.2)) 14044 - '@scalar/api-client': 2.0.45(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)))(typescript@5.7.2) 14045 - '@scalar/components': 0.12.28(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5))(typescript@5.7.2) 14026 + '@scalar/api-client': 2.0.45(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)))(typescript@5.7.2) 14027 + '@scalar/components': 0.12.28(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5))(typescript@5.7.2) 14046 14028 '@scalar/oas-utils': 0.2.26(typescript@5.7.2) 14047 14029 '@scalar/openapi-parser': 0.7.2 14048 14030 '@scalar/snippetz': 0.1.6 ··· 14096 14078 transitivePeerDependencies: 14097 14079 - supports-color 14098 14080 14099 - '@scalar/components@0.12.28(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5))(typescript@5.7.2)': 14081 + '@scalar/components@0.12.28(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5))(typescript@5.7.2)': 14100 14082 dependencies: 14101 14083 '@floating-ui/utils': 0.2.4 14102 14084 '@floating-ui/vue': 1.1.1(vue@3.4.31(typescript@5.7.2)) 14103 14085 '@headlessui/vue': 1.7.22(vue@3.4.31(typescript@5.7.2)) 14104 14086 '@scalar/code-highlight': 0.0.7 14105 - '@storybook/test': 8.2.1(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5)) 14087 + '@storybook/test': 8.2.1(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5)) 14106 14088 '@vueuse/core': 10.11.0(vue@3.4.31(typescript@5.7.2)) 14107 14089 cva: 1.0.0-beta.1(typescript@5.7.2) 14108 14090 nanoid: 5.0.7 ··· 14126 14108 transitivePeerDependencies: 14127 14109 - typescript 14128 14110 14129 - '@scalar/hono-api-reference@0.5.131(postcss@8.5.3)(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)))(typescript@5.7.2)': 14111 + '@scalar/hono-api-reference@0.5.131(postcss@8.5.3)(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)))(typescript@5.7.2)': 14130 14112 dependencies: 14131 - '@scalar/api-reference': 1.24.70(postcss@8.5.3)(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)))(typescript@5.7.2) 14113 + '@scalar/api-reference': 1.24.70(postcss@8.5.3)(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5))(tailwindcss@3.4.17(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)))(typescript@5.7.2) 14132 14114 hono: 4.7.4 14133 14115 transitivePeerDependencies: 14134 14116 - '@jest/globals' ··· 14346 14328 '@sentry/types': 8.9.2 14347 14329 '@sentry/utils': 8.9.2 14348 14330 14349 - '@sentry/nextjs@8.46.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.97.1(esbuild@0.21.5))': 14331 + '@sentry/nextjs@8.46.0(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(encoding@0.1.13)(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)(webpack@5.97.1(esbuild@0.21.5))': 14350 14332 dependencies: 14351 14333 '@opentelemetry/api': 1.9.0 14352 14334 '@opentelemetry/semantic-conventions': 1.28.0 ··· 14355 14337 '@sentry/core': 8.46.0 14356 14338 '@sentry/node': 8.46.0 14357 14339 '@sentry/opentelemetry': 8.46.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0) 14358 - '@sentry/react': 8.46.0(react@19.0.0) 14340 + '@sentry/react': 8.46.0(react@19.1.0) 14359 14341 '@sentry/vercel-edge': 8.46.0 14360 14342 '@sentry/webpack-plugin': 2.22.7(encoding@0.1.13)(webpack@5.97.1(esbuild@0.21.5)) 14361 14343 chalk: 3.0.0 14362 - next: 15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 14344 + next: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 14363 14345 resolve: 1.22.8 14364 14346 rollup: 3.29.5 14365 14347 stacktrace-parser: 0.1.10 ··· 14421 14403 '@opentelemetry/semantic-conventions': 1.28.0 14422 14404 '@sentry/core': 8.46.0 14423 14405 14424 - '@sentry/react@8.46.0(react@19.0.0)': 14406 + '@sentry/react@8.46.0(react@19.1.0)': 14425 14407 dependencies: 14426 14408 '@sentry/browser': 8.46.0 14427 14409 '@sentry/core': 8.46.0 14428 14410 hoist-non-react-statics: 3.3.2 14429 - react: 19.0.0 14411 + react: 19.1.0 14430 14412 14431 14413 '@sentry/types@8.9.2': {} 14432 14414 ··· 14839 14821 14840 14822 '@socket.io/component-emitter@3.1.2': {} 14841 14823 14842 - '@storybook/core@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5)': 14824 + '@storybook/core@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5)': 14843 14825 dependencies: 14844 14826 '@storybook/csf': 0.1.12 14845 14827 better-opn: 3.0.2 ··· 14853 14835 util: 0.12.5 14854 14836 ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@6.0.5) 14855 14837 optionalDependencies: 14856 - prettier: 3.4.2 14838 + prettier: 3.5.3 14857 14839 transitivePeerDependencies: 14858 14840 - bufferutil 14859 14841 - supports-color ··· 14869 14851 14870 14852 '@storybook/global@5.0.0': {} 14871 14853 14872 - '@storybook/instrumenter@8.2.1(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5))': 14854 + '@storybook/instrumenter@8.2.1(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5))': 14873 14855 dependencies: 14874 14856 '@storybook/global': 5.0.0 14875 14857 '@vitest/utils': 1.6.0 14876 - storybook: 8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5) 14858 + storybook: 8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5) 14877 14859 util: 0.12.5 14878 14860 14879 - '@storybook/test@8.2.1(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5))': 14861 + '@storybook/test@8.2.1(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5))': 14880 14862 dependencies: 14881 14863 '@storybook/csf': 0.1.11 14882 - '@storybook/instrumenter': 8.2.1(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5)) 14864 + '@storybook/instrumenter': 8.2.1(storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5)) 14883 14865 '@testing-library/dom': 10.1.0 14884 14866 '@testing-library/jest-dom': 6.4.5 14885 14867 '@testing-library/user-event': 14.5.2(@testing-library/dom@10.1.0) 14886 14868 '@vitest/expect': 1.6.0 14887 14869 '@vitest/spy': 1.6.0 14888 - storybook: 8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5) 14870 + storybook: 8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5) 14889 14871 util: 0.12.5 14890 14872 transitivePeerDependencies: 14891 14873 - '@jest/globals' ··· 14953 14935 14954 14936 '@tanstack/query-devtools@5.61.4': {} 14955 14937 14956 - '@tanstack/react-query-devtools@5.62.8(@tanstack/react-query@5.62.8(react@19.0.0))(react@19.0.0)': 14938 + '@tanstack/react-query-devtools@5.62.8(@tanstack/react-query@5.62.8(react@19.1.0))(react@19.1.0)': 14957 14939 dependencies: 14958 14940 '@tanstack/query-devtools': 5.61.4 14959 - '@tanstack/react-query': 5.62.8(react@19.0.0) 14960 - react: 19.0.0 14941 + '@tanstack/react-query': 5.62.8(react@19.1.0) 14942 + react: 19.1.0 14961 14943 14962 - '@tanstack/react-query@5.62.8(react@19.0.0)': 14944 + '@tanstack/react-query@5.62.8(react@19.1.0)': 14963 14945 dependencies: 14964 14946 '@tanstack/query-core': 5.62.8 14965 - react: 19.0.0 14947 + react: 19.1.0 14966 14948 14967 - '@tanstack/react-table@8.10.3(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': 14949 + '@tanstack/react-table@8.10.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': 14968 14950 dependencies: 14969 14951 '@tanstack/table-core': 8.10.3 14970 - react: 19.0.0 14971 - react-dom: 19.0.0(react@19.0.0) 14952 + react: 19.1.0 14953 + react-dom: 19.1.0(react@19.1.0) 14972 14954 14973 14955 '@tanstack/table-core@8.10.3': {} 14974 14956 ··· 15018 15000 '@trpc/server': 11.0.0-rc.666(typescript@5.6.2) 15019 15001 typescript: 5.6.2 15020 15002 15021 - '@trpc/next@11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.0.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/react-query@11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.0.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.6.2)': 15003 + '@trpc/next@11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.1.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/react-query@11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.1.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.6.2)': 15022 15004 dependencies: 15023 15005 '@trpc/client': 11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2) 15024 15006 '@trpc/server': 11.0.0-rc.666(typescript@5.6.2) 15025 - next: 15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 15026 - react: 19.0.0 15027 - react-dom: 19.0.0(react@19.0.0) 15007 + next: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 15008 + react: 19.1.0 15009 + react-dom: 19.1.0(react@19.1.0) 15028 15010 typescript: 5.6.2 15029 15011 optionalDependencies: 15030 - '@tanstack/react-query': 5.62.8(react@19.0.0) 15031 - '@trpc/react-query': 11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.0.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.6.2) 15012 + '@tanstack/react-query': 5.62.8(react@19.1.0) 15013 + '@trpc/react-query': 11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.1.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.6.2) 15032 15014 15033 - '@trpc/react-query@11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.0.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.6.2)': 15015 + '@trpc/react-query@11.0.0-rc.666(@tanstack/react-query@5.62.8(react@19.1.0))(@trpc/client@11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2))(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.6.2)': 15034 15016 dependencies: 15035 - '@tanstack/react-query': 5.62.8(react@19.0.0) 15017 + '@tanstack/react-query': 5.62.8(react@19.1.0) 15036 15018 '@trpc/client': 11.0.0-rc.666(@trpc/server@11.0.0-rc.666(typescript@5.6.2))(typescript@5.6.2) 15037 15019 '@trpc/server': 11.0.0-rc.666(typescript@5.6.2) 15038 - react: 19.0.0 15039 - react-dom: 19.0.0(react@19.0.0) 15020 + react: 19.1.0 15021 + react-dom: 19.1.0(react@19.1.0) 15040 15022 typescript: 5.6.2 15041 15023 15042 15024 '@trpc/server@11.0.0-rc.553': {} ··· 15258 15240 15259 15241 '@types/prop-types@15.7.12': {} 15260 15242 15261 - '@types/react-dom@18.2.21': 15243 + '@types/react-dom@19.1.1(@types/react@19.1.0)': 15262 15244 dependencies: 15263 - '@types/react': 19.0.1 15264 - 15265 - '@types/react-dom@19.0.2(@types/react@19.0.1)': 15266 - dependencies: 15267 - '@types/react': 19.0.1 15268 - 15269 - '@types/react-dom@19.0.4(@types/react@19.0.10)': 15270 - dependencies: 15271 - '@types/react': 19.0.10 15272 - 15273 - '@types/react@18.2.64': 15274 - dependencies: 15275 - '@types/prop-types': 15.7.12 15276 - '@types/scheduler': 0.23.0 15277 - csstype: 3.1.3 15245 + '@types/react': 19.1.0 15278 15246 15279 15247 '@types/react@18.3.3': 15280 15248 dependencies: 15281 15249 '@types/prop-types': 15.7.12 15282 15250 csstype: 3.1.3 15283 15251 15284 - '@types/react@19.0.1': 15285 - dependencies: 15286 - csstype: 3.1.3 15287 - 15288 - '@types/react@19.0.10': 15252 + '@types/react@19.1.0': 15289 15253 dependencies: 15290 15254 csstype: 3.1.3 15291 15255 ··· 15301 15265 '@types/sax@1.2.7': 15302 15266 dependencies: 15303 15267 '@types/node': 22.10.2 15304 - 15305 - '@types/scheduler@0.23.0': {} 15306 15268 15307 15269 '@types/shimmer@1.2.0': {} 15308 15270 ··· 15538 15500 '@vue/shared': 3.5.13 15539 15501 estree-walker: 2.0.2 15540 15502 magic-string: 0.30.17 15541 - postcss: 8.5.2 15503 + postcss: 8.5.3 15542 15504 source-map-js: 1.2.1 15543 15505 optional: true 15544 15506 ··· 16283 16245 16284 16246 clsx@2.1.1: {} 16285 16247 16286 - cmdk@1.0.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 16248 + cmdk@1.0.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 16287 16249 dependencies: 16288 - '@radix-ui/react-dialog': 1.1.4(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 16289 - '@radix-ui/react-id': 1.1.0(@types/react@19.0.1)(react@19.0.0) 16290 - '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.2(@types/react@19.0.1))(@types/react@19.0.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 16291 - react: 19.0.0 16292 - react-dom: 19.0.0(react@19.0.0) 16293 - use-sync-external-store: 1.4.0(react@19.0.0) 16250 + '@radix-ui/react-dialog': 1.1.4(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 16251 + '@radix-ui/react-id': 1.1.0(@types/react@19.1.0)(react@19.1.0) 16252 + '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.1.1(@types/react@19.1.0))(@types/react@19.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 16253 + react: 19.1.0 16254 + react-dom: 19.1.0(react@19.1.0) 16255 + use-sync-external-store: 1.4.0(react@19.1.0) 16294 16256 transitivePeerDependencies: 16295 16257 - '@types/react' 16296 16258 - '@types/react-dom' ··· 16639 16601 transitivePeerDependencies: 16640 16602 - supports-color 16641 16603 16642 - drizzle-orm@0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.0.10)(better-sqlite3@11.4.0)(bun-types@1.2.5)(react@19.0.0): 16604 + drizzle-orm@0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.0)(better-sqlite3@11.4.0)(bun-types@1.2.5)(react@19.1.0): 16643 16605 dependencies: 16644 16606 '@libsql/client-wasm': 0.14.0 16645 16607 optionalDependencies: ··· 16647 16609 '@libsql/client': 0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3) 16648 16610 '@opentelemetry/api': 1.9.0 16649 16611 '@types/pg': 8.11.10 16650 - '@types/react': 19.0.10 16612 + '@types/react': 19.1.0 16651 16613 better-sqlite3: 11.4.0 16652 16614 bun-types: 1.2.5 16653 - react: 19.0.0 16615 + react: 19.1.0 16654 16616 16655 - drizzle-orm@0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.0.10)(better-sqlite3@11.7.0)(bun-types@1.2.5)(react@19.0.0): 16617 + drizzle-orm@0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.5))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.0)(better-sqlite3@11.7.0)(bun-types@1.2.5)(react@19.1.0): 16656 16618 dependencies: 16657 16619 '@libsql/client-wasm': 0.14.0 16658 16620 optionalDependencies: ··· 16660 16622 '@libsql/client': 0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.5) 16661 16623 '@opentelemetry/api': 1.9.0 16662 16624 '@types/pg': 8.11.10 16663 - '@types/react': 19.0.10 16625 + '@types/react': 19.1.0 16664 16626 better-sqlite3: 11.7.0 16665 16627 bun-types: 1.2.5 16666 - react: 19.0.0 16628 + react: 19.1.0 16667 16629 16668 - drizzle-zod@0.5.1(drizzle-orm@0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.0.10)(better-sqlite3@11.4.0)(bun-types@1.2.5)(react@19.0.0))(zod@3.23.8): 16630 + drizzle-zod@0.5.1(drizzle-orm@0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.0)(better-sqlite3@11.4.0)(bun-types@1.2.5)(react@19.1.0))(zod@3.23.8): 16669 16631 dependencies: 16670 - drizzle-orm: 0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.0.10)(better-sqlite3@11.4.0)(bun-types@1.2.5)(react@19.0.0) 16632 + drizzle-orm: 0.35.3(@cloudflare/workers-types@4.20250303.0)(@libsql/client-wasm@0.14.0)(@libsql/client@0.14.0(bufferutil@4.0.8)(utf-8-validate@6.0.3))(@opentelemetry/api@1.9.0)(@types/pg@8.11.10)(@types/react@19.1.0)(better-sqlite3@11.4.0)(bun-types@1.2.5)(react@19.1.0) 16671 16633 zod: 3.23.8 16672 16634 16673 16635 dset@3.1.4: {} ··· 18242 18204 18243 18205 lru-cache@7.18.3: {} 18244 18206 18245 - lucide-react@0.468.0(react@19.0.0): 18207 + lucide-react@0.468.0(react@19.1.0): 18246 18208 dependencies: 18247 - react: 19.0.0 18209 + react: 19.1.0 18248 18210 18249 18211 luxon@3.5.0: {} 18250 18212 ··· 18278 18240 18279 18241 marked@7.0.4: {} 18280 18242 18281 - md-to-react-email@5.0.5(react@19.0.0): 18243 + md-to-react-email@5.0.5(react@19.1.0): 18282 18244 dependencies: 18283 18245 marked: 7.0.4 18284 - react: 19.0.0 18246 + react: 19.1.0 18285 18247 18286 18248 mdast-util-definitions@5.1.2: 18287 18249 dependencies: ··· 19053 19015 19054 19016 netmask@2.0.2: {} 19055 19017 19056 - next-auth@5.0.0-beta.25(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0): 19057 - dependencies: 19058 - '@auth/core': 0.37.2 19059 - next: 15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 19060 - react: 19.0.0 19061 - 19062 - next-auth@5.0.0-beta.25(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0): 19018 + next-auth@5.0.0-beta.25(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0): 19063 19019 dependencies: 19064 19020 '@auth/core': 0.37.2 19065 - next: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 19066 - react: 19.0.0 19021 + next: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 19022 + react: 19.1.0 19067 19023 19068 - next-plausible@3.12.4(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 19024 + next-plausible@3.12.4(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 19069 19025 dependencies: 19070 - next: 15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 19071 - react: 19.0.0 19072 - react-dom: 19.0.0(react@19.0.0) 19026 + next: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 19027 + react: 19.1.0 19028 + react-dom: 19.1.0(react@19.1.0) 19073 19029 19074 - next-themes@0.2.1(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 19030 + next-themes@0.2.1(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 19075 19031 dependencies: 19076 - next: 15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 19077 - react: 19.0.0 19078 - react-dom: 19.0.0(react@19.0.0) 19079 - 19080 - next-themes@0.2.1(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 19081 - dependencies: 19082 - next: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 19083 - react: 19.0.0 19084 - react-dom: 19.0.0(react@19.0.0) 19032 + next: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 19033 + react: 19.1.0 19034 + react-dom: 19.1.0(react@19.1.0) 19085 19035 19086 - next@15.0.4(@babel/core@7.24.5)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 19036 + next@15.0.4(@babel/core@7.24.5)(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 19087 19037 dependencies: 19088 19038 '@next/env': 15.0.4 19089 19039 '@swc/counter': 0.1.3 ··· 19091 19041 busboy: 1.6.0 19092 19042 caniuse-lite: 1.0.30001689 19093 19043 postcss: 8.4.31 19094 - react: 19.0.0 19095 - react-dom: 19.0.0(react@19.0.0) 19096 - styled-jsx: 5.1.6(@babel/core@7.24.5)(react@19.0.0) 19044 + react: 19.1.0 19045 + react-dom: 19.1.0(react@19.1.0) 19046 + styled-jsx: 5.1.6(@babel/core@7.24.5)(react@19.1.0) 19097 19047 optionalDependencies: 19098 19048 '@next/swc-darwin-arm64': 15.0.4 19099 19049 '@next/swc-darwin-x64': 15.0.4 ··· 19109 19059 - '@babel/core' 19110 19060 - babel-plugin-macros 19111 19061 19112 - next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 19062 + next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 19113 19063 dependencies: 19114 19064 '@next/env': 15.2.4 19115 19065 '@swc/counter': 0.1.3 ··· 19117 19067 busboy: 1.6.0 19118 19068 caniuse-lite: 1.0.30001689 19119 19069 postcss: 8.4.31 19120 - react: 19.0.0 19121 - react-dom: 19.0.0(react@19.0.0) 19122 - styled-jsx: 5.1.6(@babel/core@7.26.0)(react@19.0.0) 19123 - optionalDependencies: 19124 - '@next/swc-darwin-arm64': 15.2.4 19125 - '@next/swc-darwin-x64': 15.2.4 19126 - '@next/swc-linux-arm64-gnu': 15.2.4 19127 - '@next/swc-linux-arm64-musl': 15.2.4 19128 - '@next/swc-linux-x64-gnu': 15.2.4 19129 - '@next/swc-linux-x64-musl': 15.2.4 19130 - '@next/swc-win32-arm64-msvc': 15.2.4 19131 - '@next/swc-win32-x64-msvc': 15.2.4 19132 - '@opentelemetry/api': 1.9.0 19133 - sharp: 0.33.5 19134 - transitivePeerDependencies: 19135 - - '@babel/core' 19136 - - babel-plugin-macros 19137 - 19138 - next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 19139 - dependencies: 19140 - '@next/env': 15.2.4 19141 - '@swc/counter': 0.1.3 19142 - '@swc/helpers': 0.5.15 19143 - busboy: 1.6.0 19144 - caniuse-lite: 1.0.30001689 19145 - postcss: 8.4.31 19146 - react: 19.0.0 19147 - react-dom: 19.0.0(react@19.0.0) 19148 - styled-jsx: 5.1.6(react@19.0.0) 19070 + react: 19.1.0 19071 + react-dom: 19.1.0(react@19.1.0) 19072 + styled-jsx: 5.1.6(@babel/core@7.24.5)(react@19.1.0) 19149 19073 optionalDependencies: 19150 19074 '@next/swc-darwin-arm64': 15.2.4 19151 19075 '@next/swc-darwin-x64': 15.2.4 ··· 19238 19162 dependencies: 19239 19163 boolbase: 1.0.0 19240 19164 19241 - nuqs@2.2.3(next@15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0): 19165 + nuqs@2.2.3(next@15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0): 19242 19166 dependencies: 19243 19167 mitt: 3.0.1 19244 - react: 19.0.0 19168 + react: 19.1.0 19245 19169 optionalDependencies: 19246 - next: 15.2.4(@babel/core@7.26.0)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 19170 + next: 15.2.4(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 19247 19171 19248 19172 oauth4webapi@2.10.4: {} 19249 19173 ··· 19530 19454 read-cache: 1.0.0 19531 19455 resolve: 1.22.9 19532 19456 19533 - postcss-import@15.1.0(postcss@8.5.2): 19457 + postcss-import@15.1.0(postcss@8.5.3): 19534 19458 dependencies: 19535 - postcss: 8.5.2 19459 + postcss: 8.5.3 19536 19460 postcss-value-parser: 4.2.0 19537 19461 read-cache: 1.0.0 19538 19462 resolve: 1.22.9 ··· 19542 19466 camelcase-css: 2.0.1 19543 19467 postcss: 8.4.38 19544 19468 19545 - postcss-js@4.0.1(postcss@8.5.2): 19469 + postcss-js@4.0.1(postcss@8.5.3): 19546 19470 dependencies: 19547 19471 camelcase-css: 2.0.1 19548 - postcss: 8.5.2 19472 + postcss: 8.5.3 19549 19473 19550 19474 postcss-load-config@4.0.1(postcss@8.5.3)(ts-node@10.9.2(@types/node@20.8.0)(typescript@5.6.2)): 19551 19475 dependencies: ··· 19595 19519 postcss: 8.5.2 19596 19520 ts-node: 10.9.2(@types/node@22.10.2)(typescript@5.6.2) 19597 19521 19598 - postcss-load-config@4.0.2(postcss@8.5.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)): 19522 + postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.6.2)): 19523 + dependencies: 19524 + lilconfig: 3.1.3 19525 + yaml: 2.6.1 19526 + optionalDependencies: 19527 + postcss: 8.5.3 19528 + ts-node: 10.9.2(@types/node@22.10.2)(typescript@5.6.2) 19529 + 19530 + postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)): 19599 19531 dependencies: 19600 19532 lilconfig: 3.1.3 19601 19533 yaml: 2.6.1 19602 19534 optionalDependencies: 19603 - postcss: 8.5.2 19535 + postcss: 8.5.3 19604 19536 ts-node: 10.9.2(@types/node@22.10.2)(typescript@5.7.2) 19605 19537 19606 19538 postcss-nested@6.0.1(postcss@8.5.3): ··· 19613 19545 postcss: 8.4.38 19614 19546 postcss-selector-parser: 6.1.2 19615 19547 19616 - postcss-nested@6.2.0(postcss@8.5.2): 19548 + postcss-nested@6.2.0(postcss@8.5.3): 19617 19549 dependencies: 19618 - postcss: 8.5.2 19550 + postcss: 8.5.3 19619 19551 postcss-selector-parser: 6.1.2 19620 19552 19621 19553 postcss-selector-parser@6.0.10: ··· 19722 19654 prettier@2.8.7: 19723 19655 optional: true 19724 19656 19725 - prettier@3.3.3: {} 19726 - 19727 - prettier@3.4.2: 19728 - optional: true 19657 + prettier@3.5.3: {} 19729 19658 19730 19659 pretty-bytes@6.1.1: {} 19731 19660 ··· 19752 19681 parse-ms: 4.0.0 19753 19682 19754 19683 prismjs@1.29.0: {} 19684 + 19685 + prismjs@1.30.0: {} 19755 19686 19756 19687 process@0.11.10: {} 19757 19688 ··· 19861 19792 minimist: 1.2.8 19862 19793 strip-json-comments: 2.0.1 19863 19794 19864 - react-day-picker@8.10.1(date-fns@2.30.0)(react@19.0.0): 19795 + react-day-picker@8.10.1(date-fns@2.30.0)(react@19.1.0): 19865 19796 dependencies: 19866 19797 date-fns: 2.30.0 19867 - react: 19.0.0 19798 + react: 19.1.0 19868 19799 19869 - react-dom@19.0.0(react@19.0.0): 19800 + react-dom@19.1.0(react@19.1.0): 19870 19801 dependencies: 19871 - react: 19.0.0 19872 - scheduler: 0.25.0 19802 + react: 19.1.0 19803 + scheduler: 0.26.0 19873 19804 19874 - react-email@3.0.4(@opentelemetry/api@1.9.0)(bufferutil@4.0.8)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(utf-8-validate@6.0.5): 19805 + react-email@3.0.4(@opentelemetry/api@1.9.0)(bufferutil@4.0.8)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(utf-8-validate@6.0.5): 19875 19806 dependencies: 19876 19807 '@babel/core': 7.24.5 19877 19808 '@babel/parser': 7.24.5 ··· 19883 19814 glob: 10.3.4 19884 19815 log-symbols: 4.1.0 19885 19816 mime-types: 2.1.35 19886 - next: 15.0.4(@babel/core@7.24.5)(@opentelemetry/api@1.9.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 19817 + next: 15.0.4(@babel/core@7.24.5)(@opentelemetry/api@1.9.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 19887 19818 normalize-path: 3.0.0 19888 19819 ora: 5.4.1 19889 19820 socket.io: 4.8.0(bufferutil@4.0.8)(utf-8-validate@6.0.5) ··· 19899 19830 - supports-color 19900 19831 - utf-8-validate 19901 19832 19902 - react-hook-form@7.54.1(react@19.0.0): 19833 + react-hook-form@7.54.1(react@19.1.0): 19903 19834 dependencies: 19904 - react: 19.0.0 19835 + react: 19.1.0 19905 19836 19906 19837 react-is@16.13.1: {} 19907 19838 ··· 19915 19846 19916 19847 react-refresh@0.14.2: {} 19917 19848 19918 - react-remove-scroll-bar@2.3.8(@types/react@19.0.1)(react@19.0.0): 19849 + react-remove-scroll-bar@2.3.8(@types/react@19.1.0)(react@19.1.0): 19919 19850 dependencies: 19920 - react: 19.0.0 19921 - react-style-singleton: 2.2.3(@types/react@19.0.1)(react@19.0.0) 19851 + react: 19.1.0 19852 + react-style-singleton: 2.2.3(@types/react@19.1.0)(react@19.1.0) 19922 19853 tslib: 2.8.1 19923 19854 optionalDependencies: 19924 - '@types/react': 19.0.1 19855 + '@types/react': 19.1.0 19925 19856 19926 - react-remove-scroll@2.6.2(@types/react@19.0.1)(react@19.0.0): 19857 + react-remove-scroll@2.6.2(@types/react@19.1.0)(react@19.1.0): 19927 19858 dependencies: 19928 - react: 19.0.0 19929 - react-remove-scroll-bar: 2.3.8(@types/react@19.0.1)(react@19.0.0) 19930 - react-style-singleton: 2.2.3(@types/react@19.0.1)(react@19.0.0) 19859 + react: 19.1.0 19860 + react-remove-scroll-bar: 2.3.8(@types/react@19.1.0)(react@19.1.0) 19861 + react-style-singleton: 2.2.3(@types/react@19.1.0)(react@19.1.0) 19931 19862 tslib: 2.8.1 19932 - use-callback-ref: 1.3.3(@types/react@19.0.1)(react@19.0.0) 19933 - use-sidecar: 1.1.3(@types/react@19.0.1)(react@19.0.0) 19863 + use-callback-ref: 1.3.3(@types/react@19.1.0)(react@19.1.0) 19864 + use-sidecar: 1.1.3(@types/react@19.1.0)(react@19.1.0) 19934 19865 optionalDependencies: 19935 - '@types/react': 19.0.1 19866 + '@types/react': 19.1.0 19936 19867 19937 - react-smooth@4.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 19868 + react-smooth@4.0.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 19938 19869 dependencies: 19939 19870 fast-equals: 5.0.1 19940 19871 prop-types: 15.8.1 19941 - react: 19.0.0 19942 - react-dom: 19.0.0(react@19.0.0) 19943 - react-transition-group: 4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 19872 + react: 19.1.0 19873 + react-dom: 19.1.0(react@19.1.0) 19874 + react-transition-group: 4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 19944 19875 19945 - react-style-singleton@2.2.3(@types/react@19.0.1)(react@19.0.0): 19876 + react-style-singleton@2.2.3(@types/react@19.1.0)(react@19.1.0): 19946 19877 dependencies: 19947 19878 get-nonce: 1.0.1 19948 - react: 19.0.0 19879 + react: 19.1.0 19949 19880 tslib: 2.8.1 19950 19881 optionalDependencies: 19951 - '@types/react': 19.0.1 19882 + '@types/react': 19.1.0 19952 19883 19953 - react-transition-group@4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 19884 + react-transition-group@4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 19954 19885 dependencies: 19955 19886 '@babel/runtime': 7.26.0 19956 19887 dom-helpers: 5.2.1 19957 19888 loose-envify: 1.4.0 19958 19889 prop-types: 15.8.1 19959 - react: 19.0.0 19960 - react-dom: 19.0.0(react@19.0.0) 19890 + react: 19.1.0 19891 + react-dom: 19.1.0(react@19.1.0) 19961 19892 19962 - react-tweet@3.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 19893 + react-tweet@3.2.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 19963 19894 dependencies: 19964 19895 '@swc/helpers': 0.5.15 19965 19896 clsx: 2.1.1 19966 - react: 19.0.0 19967 - react-dom: 19.0.0(react@19.0.0) 19968 - swr: 2.2.4(react@19.0.0) 19897 + react: 19.1.0 19898 + react-dom: 19.1.0(react@19.1.0) 19899 + swr: 2.2.4(react@19.1.0) 19969 19900 19970 19901 react@18.2.0: 19971 19902 dependencies: 19972 19903 loose-envify: 1.4.0 19973 19904 19974 - react@19.0.0: {} 19905 + react@19.1.0: {} 19975 19906 19976 19907 read-cache@1.0.0: 19977 19908 dependencies: ··· 20003 19934 dependencies: 20004 19935 decimal.js-light: 2.5.1 20005 19936 20006 - recharts@2.15.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 19937 + recharts@2.15.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 20007 19938 dependencies: 20008 19939 clsx: 2.1.1 20009 19940 eventemitter3: 4.0.7 20010 19941 lodash: 4.17.21 20011 - react: 19.0.0 20012 - react-dom: 19.0.0(react@19.0.0) 19942 + react: 19.1.0 19943 + react-dom: 19.1.0(react@19.1.0) 20013 19944 react-is: 18.3.1 20014 - react-smooth: 4.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 19945 + react-smooth: 4.0.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 20015 19946 recharts-scale: 0.4.5 20016 19947 tiny-invariant: 1.3.3 20017 19948 victory-vendor: 36.9.2 ··· 20141 20072 hast-util-raw: 9.0.4 20142 20073 vfile: 6.0.3 20143 20074 20144 - rehype-react@7.2.0(@types/react@19.0.1): 20075 + rehype-react@7.2.0(@types/react@19.1.0): 20145 20076 dependencies: 20146 20077 '@mapbox/hast-util-table-cell-style': 0.2.0 20147 20078 '@types/hast': 2.3.7 20148 - '@types/react': 19.0.1 20079 + '@types/react': 19.1.0 20149 20080 hast-to-hyperscript: 10.0.3 20150 20081 hast-util-whitespace: 2.0.1 20151 20082 unified: 10.1.2 ··· 20303 20234 transitivePeerDependencies: 20304 20235 - supports-color 20305 20236 20306 - resend@4.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 20237 + resend@4.0.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 20307 20238 dependencies: 20308 - '@react-email/render': 1.0.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) 20239 + '@react-email/render': 1.0.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) 20309 20240 transitivePeerDependencies: 20310 20241 - react 20311 20242 - react-dom ··· 20433 20364 20434 20365 sax@1.4.1: {} 20435 20366 20436 - scheduler@0.25.0: {} 20367 + scheduler@0.26.0: {} 20437 20368 20438 20369 schema-utils@3.3.0: 20439 20370 dependencies: ··· 20634 20565 ip: 2.0.0 20635 20566 smart-buffer: 4.2.0 20636 20567 20637 - sonner@1.7.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): 20568 + sonner@1.7.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0): 20638 20569 dependencies: 20639 - react: 19.0.0 20640 - react-dom: 19.0.0(react@19.0.0) 20570 + react: 19.1.0 20571 + react-dom: 19.1.0(react@19.1.0) 20641 20572 20642 20573 sort-keys@5.1.0: 20643 20574 dependencies: ··· 20681 20612 '@astrojs/starlight': 0.32.6(astro@5.6.1(@types/node@22.10.2)(jiti@1.21.7)(rollup@4.34.8)(terser@5.37.0)(typescript@5.6.2)(yaml@2.6.1)) 20682 20613 picomatch: 4.0.2 20683 20614 20684 - storybook@8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5): 20615 + storybook@8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5): 20685 20616 dependencies: 20686 - '@storybook/core': 8.4.7(bufferutil@4.0.8)(prettier@3.4.2)(utf-8-validate@6.0.5) 20617 + '@storybook/core': 8.4.7(bufferutil@4.0.8)(prettier@3.5.3)(utf-8-validate@6.0.5) 20687 20618 optionalDependencies: 20688 - prettier: 3.4.2 20619 + prettier: 3.5.3 20689 20620 transitivePeerDependencies: 20690 20621 - bufferutil 20691 20622 - supports-color ··· 20775 20706 dependencies: 20776 20707 inline-style-parser: 0.2.4 20777 20708 20778 - styled-jsx@5.1.6(@babel/core@7.24.5)(react@19.0.0): 20709 + styled-jsx@5.1.6(@babel/core@7.24.5)(react@19.1.0): 20779 20710 dependencies: 20780 20711 client-only: 0.0.1 20781 - react: 19.0.0 20712 + react: 19.1.0 20782 20713 optionalDependencies: 20783 20714 '@babel/core': 7.24.5 20784 20715 20785 - styled-jsx@5.1.6(@babel/core@7.26.0)(react@19.0.0): 20786 - dependencies: 20787 - client-only: 0.0.1 20788 - react: 19.0.0 20789 - optionalDependencies: 20790 - '@babel/core': 7.26.0 20791 - 20792 - styled-jsx@5.1.6(react@19.0.0): 20793 - dependencies: 20794 - client-only: 0.0.1 20795 - react: 19.0.0 20796 - 20797 20716 sucrase@3.34.0: 20798 20717 dependencies: 20799 20718 '@jridgewell/gen-mapping': 0.3.5 ··· 20839 20758 lower-case: 1.1.4 20840 20759 upper-case: 1.1.3 20841 20760 20842 - swr@2.2.4(react@19.0.0): 20761 + swr@2.2.4(react@19.1.0): 20843 20762 dependencies: 20844 20763 client-only: 0.0.1 20845 - react: 19.0.0 20846 - use-sync-external-store: 1.4.0(react@19.0.0) 20764 + react: 19.1.0 20765 + use-sync-external-store: 1.4.0(react@19.1.0) 20847 20766 20848 20767 tailwind-merge@1.14.0: {} 20849 20768 ··· 20873 20792 normalize-path: 3.0.0 20874 20793 object-hash: 3.0.0 20875 20794 picocolors: 1.1.1 20876 - postcss: 8.5.2 20877 - postcss-import: 15.1.0(postcss@8.5.2) 20878 - postcss-js: 4.0.1(postcss@8.5.2) 20879 - postcss-load-config: 4.0.2(postcss@8.5.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.6.2)) 20880 - postcss-nested: 6.2.0(postcss@8.5.2) 20795 + postcss: 8.5.3 20796 + postcss-import: 15.1.0(postcss@8.5.3) 20797 + postcss-js: 4.0.1(postcss@8.5.3) 20798 + postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.6.2)) 20799 + postcss-nested: 6.2.0(postcss@8.5.3) 20881 20800 postcss-selector-parser: 6.1.2 20882 20801 resolve: 1.22.9 20883 20802 sucrase: 3.35.0 ··· 20900 20819 normalize-path: 3.0.0 20901 20820 object-hash: 3.0.0 20902 20821 picocolors: 1.1.1 20903 - postcss: 8.5.2 20904 - postcss-import: 15.1.0(postcss@8.5.2) 20905 - postcss-js: 4.0.1(postcss@8.5.2) 20906 - postcss-load-config: 4.0.2(postcss@8.5.2)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)) 20907 - postcss-nested: 6.2.0(postcss@8.5.2) 20822 + postcss: 8.5.3 20823 + postcss-import: 15.1.0(postcss@8.5.3) 20824 + postcss-js: 4.0.1(postcss@8.5.3) 20825 + postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@types/node@22.10.2)(typescript@5.7.2)) 20826 + postcss-nested: 6.2.0(postcss@8.5.3) 20908 20827 postcss-selector-parser: 6.1.2 20909 20828 resolve: 1.22.9 20910 20829 sucrase: 3.35.0 ··· 21522 21441 dependencies: 21523 21442 punycode: 2.3.0 21524 21443 21525 - use-callback-ref@1.3.3(@types/react@19.0.1)(react@19.0.0): 21444 + use-callback-ref@1.3.3(@types/react@19.1.0)(react@19.1.0): 21526 21445 dependencies: 21527 - react: 19.0.0 21446 + react: 19.1.0 21528 21447 tslib: 2.8.1 21529 21448 optionalDependencies: 21530 - '@types/react': 19.0.1 21449 + '@types/react': 19.1.0 21531 21450 21532 - use-sidecar@1.1.3(@types/react@19.0.1)(react@19.0.0): 21451 + use-sidecar@1.1.3(@types/react@19.1.0)(react@19.1.0): 21533 21452 dependencies: 21534 21453 detect-node-es: 1.1.0 21535 - react: 19.0.0 21454 + react: 19.1.0 21536 21455 tslib: 2.8.1 21537 21456 optionalDependencies: 21538 - '@types/react': 19.0.1 21457 + '@types/react': 19.1.0 21539 21458 21540 - use-sync-external-store@1.4.0(react@19.0.0): 21459 + use-sync-external-store@1.4.0(react@19.1.0): 21541 21460 dependencies: 21542 - react: 19.0.0 21461 + react: 19.1.0 21543 21462 21544 21463 utf-8-validate@6.0.3: 21545 21464 dependencies: ··· 21666 21585 optionalDependencies: 21667 21586 '@volar/language-service': 2.4.10 21668 21587 21669 - volar-service-prettier@0.0.62(@volar/language-service@2.4.10)(prettier@3.4.2): 21588 + volar-service-prettier@0.0.62(@volar/language-service@2.4.10)(prettier@3.5.3): 21670 21589 dependencies: 21671 21590 vscode-uri: 3.0.8 21672 21591 optionalDependencies: 21673 21592 '@volar/language-service': 2.4.10 21674 - prettier: 3.4.2 21593 + prettier: 3.5.3 21675 21594 21676 21595 volar-service-typescript-twoslash-queries@0.0.62(@volar/language-service@2.4.10): 21677 21596 dependencies: