diff --git a/app/globals.css b/app/globals.css
index a0cb00b..20af21b 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -145,7 +145,7 @@
@theme inline {
/* Typography - Using CSS variables from Next.js font loading */
- --font-sans: var(--font-inter), 'Inter', ui-sans-serif, system-ui, sans-serif;
+ --font-sans: 'Aspekta', ui-sans-serif, system-ui, sans-serif;
--font-serif: var(--font-source-serif), 'Source Serif 4', 'Source Serif Pro', Georgia, serif;
--font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
@@ -188,6 +188,7 @@
--color-sidebar-ring: rgb(var(--sidebar-ring));
/* Greyhaven-specific colors for direct use */
+ /* Orange: PANTONE 1595 C */
--color-greyhaven-orange: #D95E2A;
--color-greyhaven-offblack: #161614;
--color-greyhaven-offwhite: #F9F9F7;
@@ -198,6 +199,29 @@
--color-greyhaven-grey5: #7F7F79;
--color-greyhaven-grey7: #575753;
--color-greyhaven-grey8: #2F2F2C;
+
+ /* ==========================================================================
+ TYPE SCALE — Greyhaven Brand Guidelines v1.1
+ Source: brand guidelines deck, slide 22
+
+ Print pt values converted to px at 1pt = 1.333px.
+ Web scale is proportionally reduced from print scale.
+ Primary typeface: Source Serif Pro (Source Serif 4)
+ Secondary typeface: Aspekta (commercial) — Inter used as substitute
+ Logo typeface: Circular Medium (logo use only, not loaded here)
+ ========================================================================== */
+ --type-display: clamp(3rem, 6vw, 7.5rem); /* 136pt print reference */
+ --type-h1: clamp(2.25rem, 4vw, 4.25rem); /* 68pt print reference */
+ --type-h2: clamp(1.75rem, 3vw, 3rem); /* 51pt print reference */
+ --type-h3: clamp(1.375rem, 2vw, 2.25rem); /* 40pt print reference */
+ --type-h4: clamp(1.125rem, 1.5vw, 2rem); /* 36pt print reference */
+ --type-body-lg: 1.125rem; /* 18px */
+ --type-body: 1rem; /* 16px */
+ --type-body-sm: 0.9375rem; /* 15px */
+ --type-caption: 0.75rem; /* 10pt / 12px */
+
+ --type-tracking-tight: -0.01em; /* 1% — headings */
+ --type-tracking-body: 0.02em; /* 2% — body text */
}
@layer base {
diff --git a/app/layout.tsx b/app/layout.tsx
index b9a7b25..79deeae 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,28 +1,18 @@
import type { Metadata } from 'next'
-import { Source_Serif_4, Inter } from 'next/font/google'
+import { Source_Serif_4 } from 'next/font/google'
import './globals.css'
-// Primary typeface: Source Serif Pro (using Source Serif 4 which is the updated version)
+// Primary typeface: Source Serif Pro (Source Serif 4 is the updated version)
// Used for headings, body text, and reading content
-const sourceSerif = Source_Serif_4({
+const sourceSerif = Source_Serif_4({
subsets: ["latin"],
variable: '--font-source-serif',
display: 'swap',
})
-// Secondary typeface: Inter (Aspekta alternative from Google Fonts)
-// Aspekta is the brand typeface, Inter is a suitable system alternative
-// Used for UI labels, nav, buttons, small utility text
-const inter = Inter({
- subsets: ["latin"],
- variable: '--font-inter',
- display: 'swap',
-})
-
export const metadata: Metadata = {
title: 'Greyhaven Design System',
description: 'Visual Identity and Brand Guidelines - Greyhaven',
- generator: 'v0.app',
icons: {
icon: [
{
@@ -48,7 +38,13 @@ export default function RootLayout({
children: React.ReactNode
}>) {
return (
-
+
+
+
+
{children}
diff --git a/app/page.tsx b/app/page.tsx
index 824c7f1..d5ce0dd 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -73,7 +73,7 @@ export default function DesignSystemPage() {
diff --git a/components/design-system/color-swatches.tsx b/components/design-system/color-swatches.tsx
index 1be57d6..013d163 100644
--- a/components/design-system/color-swatches.tsx
+++ b/components/design-system/color-swatches.tsx
@@ -1,8 +1,8 @@
export function ColorSwatches() {
const primaryColors = [
- { name: "Off-white", hex: "#F9F9F7", rgb: "249 249 247", token: "--card" },
- { name: "Off-black", hex: "#161614", rgb: "22 22 20", token: "--foreground", dark: true },
- { name: "Orange", hex: "#D95E2A", rgb: "217 94 42", token: "--primary", dark: true },
+ { name: "Off-white", hex: "#F9F9F7", rgb: "249 249 247", token: "--card", pantone: null },
+ { name: "Off-black", hex: "#161614", rgb: "22 22 20", token: "--foreground", dark: true, pantone: "PANTONE Black 6 C" },
+ { name: "Orange", hex: "#D95E2A", rgb: "217 94 42", token: "--primary", dark: true, pantone: "PANTONE 1595 C" },
]
const greyScale = [
@@ -47,6 +47,9 @@ export function ColorSwatches() {
{color.name}
{color.token}
+ {color.pantone && (
+
{color.pantone}
+ )}
))}
diff --git a/components/design-system/typography-samples.tsx b/components/design-system/typography-samples.tsx
index 008ef77..9ddb236 100644
--- a/components/design-system/typography-samples.tsx
+++ b/components/design-system/typography-samples.tsx
@@ -104,20 +104,67 @@ export function TypographySamples() {
+ {/* Type Scale Reference */}
+
+
+ Type Scale — Brand Guidelines v1.1
+
+
+
+
+
+ | Level |
+ Print ref |
+ Web token |
+ Tracking |
+
+
+
+ {[
+ { level: "Display", print: "136pt", token: "--type-display", tracking: "−1%" },
+ { level: "H1", print: "68pt", token: "--type-h1", tracking: "−1%" },
+ { level: "H2", print: "51pt", token: "--type-h2", tracking: "−1%" },
+ { level: "H3", print: "40pt", token: "--type-h3", tracking: "−1%" },
+ { level: "H4", print: "36pt", token: "--type-h4", tracking: "−1%" },
+ { level: "Body", print: "18px", token: "--type-body-lg", tracking: "2%" },
+ { level: "Body sm", print: "15px", token: "--type-body-sm", tracking: "2%" },
+ { level: "Caption", print: "10pt", token: "--type-caption", tracking: "2%" },
+ ].map((row) => (
+
+ | {row.level} |
+ {row.print} |
+ {row.token} |
+ {row.tracking} |
+
+ ))}
+
+
+
+
+
{/* Font Stack Reference */}
-
+
-
Serif Stack
+
Primary — Serif
'Source Serif Pro', 'Source Serif 4', Georgia, serif
-
Sans Stack
+
Secondary — Sans
'Aspekta', ui-sans-serif, system-ui, sans-serif
+
+
Logo only
+
+ Circular Medium
+
+
+ Used exclusively for the Greyhaven wordmark and product logos. Do not use in UI.
+
+
)
diff --git a/package.json b/package.json
index 60cce49..0782058 100644
--- a/package.json
+++ b/package.json
@@ -1,5 +1,5 @@
{
- "name": "my-v0-project",
+ "name": "greyhaven-design-system",
"version": "0.1.0",
"private": true,
"scripts": {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index ed7aa45..3c889e3 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,436 +1,604 @@
-lockfileVersion: '9.0'
+lockfileVersion: '6.0'
settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
-importers:
+dependencies:
+ '@hookform/resolvers':
+ specifier: ^3.10.0
+ version: 3.10.0(react-hook-form@7.60.0)
+ '@radix-ui/react-accordion':
+ specifier: 1.2.2
+ version: 1.2.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-alert-dialog':
+ specifier: 1.1.4
+ version: 1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-aspect-ratio':
+ specifier: 1.1.1
+ version: 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-avatar':
+ specifier: 1.1.2
+ version: 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-checkbox':
+ specifier: 1.1.3
+ version: 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-collapsible':
+ specifier: 1.1.2
+ version: 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-context-menu':
+ specifier: 2.2.4
+ version: 2.2.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-dialog':
+ specifier: 1.1.4
+ version: 1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-dropdown-menu':
+ specifier: 2.1.4
+ version: 2.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-hover-card':
+ specifier: 1.1.4
+ version: 1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-label':
+ specifier: 2.1.1
+ version: 2.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-menubar':
+ specifier: 1.1.4
+ version: 1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-navigation-menu':
+ specifier: 1.2.3
+ version: 1.2.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-popover':
+ specifier: 1.1.4
+ version: 1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-progress':
+ specifier: 1.1.1
+ version: 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-radio-group':
+ specifier: 1.2.2
+ version: 1.2.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-scroll-area':
+ specifier: 1.2.2
+ version: 1.2.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-select':
+ specifier: 2.1.4
+ version: 2.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-separator':
+ specifier: 1.1.1
+ version: 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-slider':
+ specifier: 1.2.2
+ version: 1.2.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-slot':
+ specifier: 1.1.1
+ version: 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-switch':
+ specifier: 1.1.2
+ version: 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-tabs':
+ specifier: 1.1.2
+ version: 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-toast':
+ specifier: 1.2.4
+ version: 1.2.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-toggle':
+ specifier: 1.1.1
+ version: 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-toggle-group':
+ specifier: 1.1.1
+ version: 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-tooltip':
+ specifier: 1.1.6
+ version: 1.1.6(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@vercel/analytics':
+ specifier: 1.3.1
+ version: 1.3.1(next@16.0.10)(react@19.2.0)
+ autoprefixer:
+ specifier: ^10.4.20
+ version: 10.4.20(postcss@8.5.0)
+ class-variance-authority:
+ specifier: ^0.7.1
+ version: 0.7.1
+ clsx:
+ specifier: ^2.1.1
+ version: 2.1.1
+ cmdk:
+ specifier: 1.0.4
+ version: 1.0.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ date-fns:
+ specifier: 4.1.0
+ version: 4.1.0
+ embla-carousel-react:
+ specifier: 8.5.1
+ version: 8.5.1(react@19.2.0)
+ input-otp:
+ specifier: 1.4.1
+ version: 1.4.1(react-dom@19.2.0)(react@19.2.0)
+ lucide-react:
+ specifier: ^0.454.0
+ version: 0.454.0(react@19.2.0)
+ next:
+ specifier: 16.0.10
+ version: 16.0.10(react-dom@19.2.0)(react@19.2.0)
+ next-themes:
+ specifier: ^0.4.6
+ version: 0.4.6(react-dom@19.2.0)(react@19.2.0)
+ react:
+ specifier: 19.2.0
+ version: 19.2.0
+ react-day-picker:
+ specifier: 9.8.0
+ version: 9.8.0(react@19.2.0)
+ react-dom:
+ specifier: 19.2.0
+ version: 19.2.0(react@19.2.0)
+ react-hook-form:
+ specifier: ^7.60.0
+ version: 7.60.0(react@19.2.0)
+ react-resizable-panels:
+ specifier: ^2.1.7
+ version: 2.1.7(react-dom@19.2.0)(react@19.2.0)
+ recharts:
+ specifier: 2.15.4
+ version: 2.15.4(react-dom@19.2.0)(react@19.2.0)
+ sonner:
+ specifier: ^1.7.4
+ version: 1.7.4(react-dom@19.2.0)(react@19.2.0)
+ tailwind-merge:
+ specifier: ^3.3.1
+ version: 3.3.1
+ tailwindcss-animate:
+ specifier: ^1.0.7
+ version: 1.0.7(tailwindcss@4.1.9)
+ vaul:
+ specifier: ^1.1.2
+ version: 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ zod:
+ specifier: 3.25.76
+ version: 3.25.76
- .:
- dependencies:
- '@hookform/resolvers':
- specifier: ^3.10.0
- version: 3.10.0(react-hook-form@7.71.1(react@19.2.0))
- '@radix-ui/react-accordion':
- specifier: 1.2.2
- version: 1.2.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-alert-dialog':
- specifier: 1.1.4
- version: 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-aspect-ratio':
- specifier: 1.1.1
- version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-avatar':
- specifier: 1.1.2
- version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-checkbox':
- specifier: 1.1.3
- version: 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-collapsible':
- specifier: 1.1.2
- version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-context-menu':
- specifier: 2.2.4
- version: 2.2.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-dialog':
- specifier: 1.1.4
- version: 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-dropdown-menu':
- specifier: 2.1.4
- version: 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-hover-card':
- specifier: 1.1.4
- version: 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-label':
- specifier: 2.1.1
- version: 2.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-menubar':
- specifier: 1.1.4
- version: 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-navigation-menu':
- specifier: 1.2.3
- version: 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-popover':
- specifier: 1.1.4
- version: 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-progress':
- specifier: 1.1.1
- version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-radio-group':
- specifier: 1.2.2
- version: 1.2.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-scroll-area':
- specifier: 1.2.2
- version: 1.2.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-select':
- specifier: 2.1.4
- version: 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-separator':
- specifier: 1.1.1
- version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-slider':
- specifier: 1.2.2
- version: 1.2.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-slot':
- specifier: 1.1.1
- version: 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-switch':
- specifier: 1.1.2
- version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-tabs':
- specifier: 1.1.2
- version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-toast':
- specifier: 1.2.4
- version: 1.2.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-toggle':
- specifier: 1.1.1
- version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-toggle-group':
- specifier: 1.1.1
- version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-tooltip':
- specifier: 1.1.6
- version: 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@vercel/analytics':
- specifier: 1.3.1
- version: 1.3.1(next@16.0.10(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)
- autoprefixer:
- specifier: ^10.4.20
- version: 10.4.23(postcss@8.5.6)
- class-variance-authority:
- specifier: ^0.7.1
- version: 0.7.1
- clsx:
- specifier: ^2.1.1
- version: 2.1.1
- cmdk:
- specifier: 1.0.4
- version: 1.0.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- date-fns:
- specifier: 4.1.0
- version: 4.1.0
- embla-carousel-react:
- specifier: 8.5.1
- version: 8.5.1(react@19.2.0)
- input-otp:
- specifier: 1.4.1
- version: 1.4.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- lucide-react:
- specifier: ^0.454.0
- version: 0.454.0(react@19.2.0)
- next:
- specifier: 16.0.10
- version: 16.0.10(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- next-themes:
- specifier: ^0.4.6
- version: 0.4.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react:
- specifier: 19.2.0
- version: 19.2.0
- react-day-picker:
- specifier: 9.8.0
- version: 9.8.0(react@19.2.0)
- react-dom:
- specifier: 19.2.0
- version: 19.2.0(react@19.2.0)
- react-hook-form:
- specifier: ^7.60.0
- version: 7.71.1(react@19.2.0)
- react-resizable-panels:
- specifier: ^2.1.7
- version: 2.1.9(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- recharts:
- specifier: 2.15.4
- version: 2.15.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- sonner:
- specifier: ^1.7.4
- version: 1.7.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- tailwind-merge:
- specifier: ^3.3.1
- version: 3.4.0
- tailwindcss-animate:
- specifier: ^1.0.7
- version: 1.0.7(tailwindcss@4.1.18)
- vaul:
- specifier: ^1.1.2
- version: 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- zod:
- specifier: 3.25.76
- version: 3.25.76
- devDependencies:
- '@tailwindcss/postcss':
- specifier: ^4.1.9
- version: 4.1.18
- '@types/node':
- specifier: ^22
- version: 22.19.7
- '@types/react':
- specifier: ^19
- version: 19.2.9
- '@types/react-dom':
- specifier: ^19
- version: 19.2.3(@types/react@19.2.9)
- postcss:
- specifier: ^8.5
- version: 8.5.6
- tailwindcss:
- specifier: ^4.1.9
- version: 4.1.18
- tw-animate-css:
- specifier: 1.3.3
- version: 1.3.3
- typescript:
- specifier: ^5
- version: 5.9.3
+devDependencies:
+ '@tailwindcss/postcss':
+ specifier: ^4.1.9
+ version: 4.1.9
+ '@types/node':
+ specifier: ^22
+ version: 22.0.0
+ '@types/react':
+ specifier: ^19
+ version: 19.0.0
+ '@types/react-dom':
+ specifier: ^19
+ version: 19.0.0
+ postcss:
+ specifier: ^8.5
+ version: 8.5.0
+ tailwindcss:
+ specifier: ^4.1.9
+ version: 4.1.9
+ tw-animate-css:
+ specifier: 1.3.3
+ version: 1.3.3
+ typescript:
+ specifier: ^5
+ version: 5.0.2
packages:
- '@alloc/quick-lru@5.2.0':
+ /@alloc/quick-lru@5.2.0:
resolution: {integrity: sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==}
engines: {node: '>=10'}
+ dev: true
- '@babel/runtime@7.28.6':
+ /@ampproject/remapping@2.3.0:
+ resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
+ engines: {node: '>=6.0.0'}
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+ dev: true
+
+ /@babel/runtime@7.28.6:
resolution: {integrity: sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==}
engines: {node: '>=6.9.0'}
+ dev: false
- '@date-fns/tz@1.2.0':
+ /@date-fns/tz@1.2.0:
resolution: {integrity: sha512-LBrd7MiJZ9McsOgxqWX7AaxrDjcFVjWH/tIKJd7pnR7McaslGYOP1QmmiBXdJH/H/yLCT+rcQ7FaPBUxRGUtrg==}
+ dev: false
- '@emnapi/runtime@1.8.1':
+ /@emnapi/runtime@1.8.1:
resolution: {integrity: sha512-mehfKSMWjjNol8659Z8KxEMrdSJDDot5SXMq00dM8BN4o+CLNXQ0xH2V7EchNHV4RmbZLmmPdEaXZc5H2FXmDg==}
+ requiresBuild: true
+ dependencies:
+ tslib: 2.8.1
+ dev: false
+ optional: true
- '@floating-ui/core@1.7.3':
+ /@floating-ui/core@1.7.3:
resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
+ dependencies:
+ '@floating-ui/utils': 0.2.10
+ dev: false
- '@floating-ui/dom@1.7.4':
+ /@floating-ui/dom@1.7.4:
resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
+ dependencies:
+ '@floating-ui/core': 1.7.3
+ '@floating-ui/utils': 0.2.10
+ dev: false
- '@floating-ui/react-dom@2.1.6':
+ /@floating-ui/react-dom@2.1.6(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==}
peerDependencies:
react: '>=16.8.0'
react-dom: '>=16.8.0'
+ dependencies:
+ '@floating-ui/dom': 1.7.4
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@floating-ui/utils@0.2.10':
+ /@floating-ui/utils@0.2.10:
resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
+ dev: false
- '@hookform/resolvers@3.10.0':
+ /@hookform/resolvers@3.10.0(react-hook-form@7.60.0):
resolution: {integrity: sha512-79Dv+3mDF7i+2ajj7SkypSKHhl1cbln1OGavqrsF7p6mbUv11xpqpacPsGDCTRvCSjEEIez2ef1NveSVL3b0Ag==}
peerDependencies:
react-hook-form: ^7.0.0
+ dependencies:
+ react-hook-form: 7.60.0(react@19.2.0)
+ dev: false
- '@img/colour@1.0.0':
+ /@img/colour@1.0.0:
resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==}
engines: {node: '>=18'}
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-darwin-arm64@0.34.5':
+ /@img/sharp-darwin-arm64@0.34.5:
resolution: {integrity: sha512-imtQ3WMJXbMY4fxb/Ndp6HBTNVtWCUI0WdobyheGf5+ad6xX8VIDO8u2xE4qc/fr08CKG/7dDseFtn6M6g/r3w==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.2.4
+ dev: false
+ optional: true
- '@img/sharp-darwin-x64@0.34.5':
+ /@img/sharp-darwin-x64@0.34.5:
resolution: {integrity: sha512-YNEFAF/4KQ/PeW0N+r+aVVsoIY0/qxxikF2SWdp+NRkmMB7y9LBZAVqQ4yhGCm/H3H270OSykqmQMKLBhBJDEw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.2.4
+ dev: false
+ optional: true
- '@img/sharp-libvips-darwin-arm64@1.2.4':
+ /@img/sharp-libvips-darwin-arm64@1.2.4:
resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-libvips-darwin-x64@1.2.4':
+ /@img/sharp-libvips-darwin-x64@1.2.4:
resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-libvips-linux-arm64@1.2.4':
+ /@img/sharp-libvips-linux-arm64@1.2.4:
resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-libvips-linux-arm@1.2.4':
+ /@img/sharp-libvips-linux-arm@1.2.4:
resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-libvips-linux-ppc64@1.2.4':
+ /@img/sharp-libvips-linux-ppc64@1.2.4:
resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
cpu: [ppc64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-libvips-linux-riscv64@1.2.4':
+ /@img/sharp-libvips-linux-riscv64@1.2.4:
resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
cpu: [riscv64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-libvips-linux-s390x@1.2.4':
+ /@img/sharp-libvips-linux-s390x@1.2.4:
resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
cpu: [s390x]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-libvips-linux-x64@1.2.4':
+ /@img/sharp-libvips-linux-x64@1.2.4:
resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-libvips-linuxmusl-arm64@1.2.4':
+ /@img/sharp-libvips-linuxmusl-arm64@1.2.4:
resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-libvips-linuxmusl-x64@1.2.4':
+ /@img/sharp-libvips-linuxmusl-x64@1.2.4:
resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-linux-arm64@0.34.5':
+ /@img/sharp-linux-arm64@0.34.5:
resolution: {integrity: sha512-bKQzaJRY/bkPOXyKx5EVup7qkaojECG6NLYswgktOZjaXecSAeCWiZwwiFf3/Y+O1HrauiE3FVsGxFg8c24rZg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.2.4
+ dev: false
+ optional: true
- '@img/sharp-linux-arm@0.34.5':
+ /@img/sharp-linux-arm@0.34.5:
resolution: {integrity: sha512-9dLqsvwtg1uuXBGZKsxem9595+ujv0sJ6Vi8wcTANSFpwV/GONat5eCkzQo/1O6zRIkh0m/8+5BjrRr7jDUSZw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.2.4
+ dev: false
+ optional: true
- '@img/sharp-linux-ppc64@0.34.5':
+ /@img/sharp-linux-ppc64@0.34.5:
resolution: {integrity: sha512-7zznwNaqW6YtsfrGGDA6BRkISKAAE1Jo0QdpNYXNMHu2+0dTrPflTLNkpc8l7MUP5M16ZJcUvysVWWrMefZquA==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [ppc64]
os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-ppc64': 1.2.4
+ dev: false
+ optional: true
- '@img/sharp-linux-riscv64@0.34.5':
+ /@img/sharp-linux-riscv64@0.34.5:
resolution: {integrity: sha512-51gJuLPTKa7piYPaVs8GmByo7/U7/7TZOq+cnXJIHZKavIRHAP77e3N2HEl3dgiqdD/w0yUfiJnII77PuDDFdw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [riscv64]
os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-riscv64': 1.2.4
+ dev: false
+ optional: true
- '@img/sharp-linux-s390x@0.34.5':
+ /@img/sharp-linux-s390x@0.34.5:
resolution: {integrity: sha512-nQtCk0PdKfho3eC5MrbQoigJ2gd1CgddUMkabUj+rBevs8tZ2cULOx46E7oyX+04WGfABgIwmMC0VqieTiR4jg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [s390x]
os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.2.4
+ dev: false
+ optional: true
- '@img/sharp-linux-x64@0.34.5':
+ /@img/sharp-linux-x64@0.34.5:
resolution: {integrity: sha512-MEzd8HPKxVxVenwAa+JRPwEC7QFjoPWuS5NZnBt6B3pu7EG2Ge0id1oLHZpPJdn3OQK+BQDiw9zStiHBTJQQQQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.2.4
+ dev: false
+ optional: true
- '@img/sharp-linuxmusl-arm64@0.34.5':
+ /@img/sharp-linuxmusl-arm64@0.34.5:
resolution: {integrity: sha512-fprJR6GtRsMt6Kyfq44IsChVZeGN97gTD331weR1ex1c1rypDEABN6Tm2xa1wE6lYb5DdEnk03NZPqA7Id21yg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.4
+ dev: false
+ optional: true
- '@img/sharp-linuxmusl-x64@0.34.5':
+ /@img/sharp-linuxmusl-x64@0.34.5:
resolution: {integrity: sha512-Jg8wNT1MUzIvhBFxViqrEhWDGzqymo3sV7z7ZsaWbZNDLXRJZoRGrjulp60YYtV4wfY8VIKcWidjojlLcWrd8Q==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.4
+ dev: false
+ optional: true
- '@img/sharp-wasm32@0.34.5':
+ /@img/sharp-wasm32@0.34.5:
resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [wasm32]
+ requiresBuild: true
+ dependencies:
+ '@emnapi/runtime': 1.8.1
+ dev: false
+ optional: true
- '@img/sharp-win32-arm64@0.34.5':
+ /@img/sharp-win32-arm64@0.34.5:
resolution: {integrity: sha512-WQ3AgWCWYSb2yt+IG8mnC6Jdk9Whs7O0gxphblsLvdhSpSTtmu69ZG1Gkb6NuvxsNACwiPV6cNSZNzt0KPsw7g==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-win32-ia32@0.34.5':
+ /@img/sharp-win32-ia32@0.34.5:
resolution: {integrity: sha512-FV9m/7NmeCmSHDD5j4+4pNI8Cp3aW+JvLoXcTUo0IqyjSfAZJ8dIUmijx1qaJsIiU+Hosw6xM5KijAWRJCSgNg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [ia32]
os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@img/sharp-win32-x64@0.34.5':
+ /@img/sharp-win32-x64@0.34.5:
resolution: {integrity: sha512-+29YMsqY2/9eFEiW93eqWnuLcWcufowXewwSNIT6UwZdUUCrM3oFjMWH/Z6/TMmb4hlFenmfAVbpWeup2jryCw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@jridgewell/gen-mapping@0.3.13':
+ /@isaacs/fs-minipass@4.0.1:
+ resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
+ engines: {node: '>=18.0.0'}
+ dependencies:
+ minipass: 7.1.2
+ dev: true
+
+ /@jridgewell/gen-mapping@0.3.13:
resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==}
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+ '@jridgewell/trace-mapping': 0.3.31
+ dev: true
- '@jridgewell/remapping@2.3.5':
- resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
-
- '@jridgewell/resolve-uri@3.1.2':
+ /@jridgewell/resolve-uri@3.1.2:
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
+ dev: true
- '@jridgewell/sourcemap-codec@1.5.5':
+ /@jridgewell/sourcemap-codec@1.5.5:
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
+ dev: true
- '@jridgewell/trace-mapping@0.3.31':
+ /@jridgewell/trace-mapping@0.3.31:
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
+ dependencies:
+ '@jridgewell/resolve-uri': 3.1.2
+ '@jridgewell/sourcemap-codec': 1.5.5
+ dev: true
- '@next/env@16.0.10':
+ /@next/env@16.0.10:
resolution: {integrity: sha512-8tuaQkyDVgeONQ1MeT9Mkk8pQmZapMKFh5B+OrFUlG3rVmYTXcXlBetBgTurKXGaIZvkoqRT9JL5K3phXcgang==}
+ dev: false
- '@next/swc-darwin-arm64@16.0.10':
+ /@next/swc-darwin-arm64@16.0.10:
resolution: {integrity: sha512-4XgdKtdVsaflErz+B5XeG0T5PeXKDdruDf3CRpnhN+8UebNa5N2H58+3GDgpn/9GBurrQ1uWW768FfscwYkJRg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-darwin-x64@16.0.10':
+ /@next/swc-darwin-x64@16.0.10:
resolution: {integrity: sha512-spbEObMvRKkQ3CkYVOME+ocPDFo5UqHb8EMTS78/0mQ+O1nqE8toHJVioZo4TvebATxgA8XMTHHrScPrn68OGw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-linux-arm64-gnu@16.0.10':
+ /@next/swc-linux-arm64-gnu@16.0.10:
resolution: {integrity: sha512-uQtWE3X0iGB8apTIskOMi2w/MKONrPOUCi5yLO+v3O8Mb5c7K4Q5KD1jvTpTF5gJKa3VH/ijKjKUq9O9UhwOYw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-linux-arm64-musl@16.0.10':
+ /@next/swc-linux-arm64-musl@16.0.10:
resolution: {integrity: sha512-llA+hiDTrYvyWI21Z0L1GiXwjQaanPVQQwru5peOgtooeJ8qx3tlqRV2P7uH2pKQaUfHxI/WVarvI5oYgGxaTw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-linux-x64-gnu@16.0.10':
+ /@next/swc-linux-x64-gnu@16.0.10:
resolution: {integrity: sha512-AK2q5H0+a9nsXbeZ3FZdMtbtu9jxW4R/NgzZ6+lrTm3d6Zb7jYrWcgjcpM1k8uuqlSy4xIyPR2YiuUr+wXsavA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-linux-x64-musl@16.0.10':
+ /@next/swc-linux-x64-musl@16.0.10:
resolution: {integrity: sha512-1TDG9PDKivNw5550S111gsO4RGennLVl9cipPhtkXIFVwo31YZ73nEbLjNC8qG3SgTz/QZyYyaFYMeY4BKZR/g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-win32-arm64-msvc@16.0.10':
+ /@next/swc-win32-arm64-msvc@16.0.10:
resolution: {integrity: sha512-aEZIS4Hh32xdJQbHz121pyuVZniSNoqDVx1yIr2hy+ZwJGipeqnMZBJHyMxv2tiuAXGx6/xpTcQJ6btIiBjgmg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@next/swc-win32-x64-msvc@16.0.10':
+ /@next/swc-win32-x64-msvc@16.0.10:
resolution: {integrity: sha512-E+njfCoFLb01RAFEnGZn6ERoOqhK1Gl3Lfz1Kjnj0Ulfu7oJbuMyvBKNj/bw8XZnenHDASlygTjZICQW+rYW1Q==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ dev: false
+ optional: true
- '@radix-ui/number@1.1.0':
+ /@radix-ui/number@1.1.0:
resolution: {integrity: sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==}
+ dev: false
- '@radix-ui/primitive@1.1.1':
+ /@radix-ui/primitive@1.1.1:
resolution: {integrity: sha512-SJ31y+Q/zAyShtXJc8x83i9TYdbAfHZ++tUZnvjJJqFjzsdUnKsxPL6IEtBlxKkU7yzer//GQtZSV4GbldL3YA==}
+ dev: false
- '@radix-ui/react-accordion@1.2.2':
+ /@radix-ui/react-accordion@1.2.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-b1oh54x4DMCdGsB4/7ahiSrViXxaBwRPotiZNnYXjLha9vfuURSAZErki6qjDoSIV0eXx5v57XnTGVtGwnfp2g==}
peerDependencies:
'@types/react': '*'
@@ -442,8 +610,23 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collapsible': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-alert-dialog@1.1.4':
+ /@radix-ui/react-alert-dialog@1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-A6Kh23qZDLy3PSU4bh2UJZznOrUdHImIXqF8YtUa6CN73f8EOO9XlXSCd9IHyPvIquTaa/kwaSWzZTtUvgXVGw==}
peerDependencies:
'@types/react': '*'
@@ -455,8 +638,20 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-dialog': 1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-arrow@1.1.1':
+ /@radix-ui/react-arrow@1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-NaVpZfmv8SKeZbn4ijN2V3jlHA9ngBG16VnIIm22nUR0Yk8KUALyBxT3KYEUnNuch9sTE8UTsS3whzBgKOL30w==}
peerDependencies:
'@types/react': '*'
@@ -468,8 +663,15 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-aspect-ratio@1.1.1':
+ /@radix-ui/react-aspect-ratio@1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-kNU4FIpcFMBLkOUcgeIteH06/8JLBcYY6Le1iKenDGCYNYFX3TQqCZjzkOsz37h7r94/99GTb7YhEr98ZBJibw==}
peerDependencies:
'@types/react': '*'
@@ -481,8 +683,15 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-avatar@1.1.2':
+ /@radix-ui/react-avatar@1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-GaC7bXQZ5VgZvVvsJ5mu/AEbjYLnhhkoidOboC50Z6FFlLA03wG2ianUoH+zgDQ31/9gCF59bE4+2bBgTyMiig==}
peerDependencies:
'@types/react': '*'
@@ -494,8 +703,18 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-checkbox@1.1.3':
+ /@radix-ui/react-checkbox@1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-HD7/ocp8f1B3e6OHygH0n7ZKjONkhciy1Nh0yuBgObqThc3oyx+vuMfFHKAknXRHHWVE9XvXStxJFyjUmB8PIw==}
peerDependencies:
'@types/react': '*'
@@ -507,8 +726,22 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-collapsible@1.1.2':
+ /@radix-ui/react-collapsible@1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-PliMB63vxz7vggcyq0IxNYk8vGDrLXVWw4+W4B8YnwI1s18x7YZYqlG9PLX7XxAJUi0g2DxP4XKJMFHh/iVh9A==}
peerDependencies:
'@types/react': '*'
@@ -520,8 +753,22 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-collection@1.1.1':
+ /@radix-ui/react-collection@1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-LwT3pSho9Dljg+wY2KN2mrrh6y3qELfftINERIzBUO9e0N+t0oMTyn3k9iv+ZqgrwGkRnLpNJrsMv9BZlt2yuA==}
peerDependencies:
'@types/react': '*'
@@ -533,8 +780,18 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-compose-refs@1.1.1':
+ /@radix-ui/react-compose-refs@1.1.1(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-Y9VzoRDSJtgFMUCoiZBDVo084VQ5hfpXxVE+NgkdNsjiDBByiImMZKKhxMwCbdHvhlENG6a833CbFkOQvTricw==}
peerDependencies:
'@types/react': '*'
@@ -542,8 +799,12 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-compose-refs@1.1.2':
+ /@radix-ui/react-compose-refs@1.1.2(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
peerDependencies:
'@types/react': '*'
@@ -551,8 +812,12 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-context-menu@2.2.4':
+ /@radix-ui/react-context-menu@2.2.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-ap4wdGwK52rJxGkwukU1NrnEodsUFQIooANKu+ey7d6raQ2biTcEf8za1zr0mgFHieevRTB2nK4dJeN8pTAZGQ==}
peerDependencies:
'@types/react': '*'
@@ -564,8 +829,20 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-menu': 2.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-context@1.1.1':
+ /@radix-ui/react-context@1.1.1(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==}
peerDependencies:
'@types/react': '*'
@@ -573,8 +850,12 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-dialog@1.1.4':
+ /@radix-ui/react-dialog@1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-Ur7EV1IwQGCyaAuyDRiOLA5JIUZxELJljF+MbM/2NC0BYwfuRrbpS30BiQBJrVruscgUkieKkqXYDOoByaxIoA==}
peerDependencies:
'@types/react': '*'
@@ -586,8 +867,28 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ aria-hidden: 1.2.6
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ react-remove-scroll: 2.7.2(@types/react@19.0.0)(react@19.2.0)
+ dev: false
- '@radix-ui/react-direction@1.1.0':
+ /@radix-ui/react-direction@1.1.0(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==}
peerDependencies:
'@types/react': '*'
@@ -595,8 +896,12 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-dismissable-layer@1.1.3':
+ /@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-onrWn/72lQoEucDmJnr8uczSNTujT0vJnA/X5+3AkChVPowr8n1yvIKIabhWyMQeMvvmdpsvcyDqx3X1LEXCPg==}
peerDependencies:
'@types/react': '*'
@@ -608,8 +913,19 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-dropdown-menu@2.1.4':
+ /@radix-ui/react-dropdown-menu@2.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-iXU1Ab5ecM+yEepGAWK8ZhMyKX4ubFdCNtol4sT9D0OVErG9PNElfx3TQhjw7n7BC5nFVz68/5//clWy+8TXzA==}
peerDependencies:
'@types/react': '*'
@@ -621,8 +937,21 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-menu': 2.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-focus-guards@1.1.1':
+ /@radix-ui/react-focus-guards@1.1.1(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==}
peerDependencies:
'@types/react': '*'
@@ -630,8 +959,12 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-focus-scope@1.1.1':
+ /@radix-ui/react-focus-scope@1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-01omzJAYRxXdG2/he/+xy+c8a8gCydoQ1yOxnWNcRhrrBW5W+RQJ22EK1SaO8tb3WoUsuEw7mJjBozPzihDFjA==}
peerDependencies:
'@types/react': '*'
@@ -643,8 +976,17 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-hover-card@1.1.4':
+ /@radix-ui/react-hover-card@1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-QSUUnRA3PQ2UhvoCv3eYvMnCAgGQW+sTu86QPuNb+ZMi+ZENd6UWpiXbcWDQ4AEaKF9KKpCHBeaJz9Rw6lRlaQ==}
peerDependencies:
'@types/react': '*'
@@ -656,8 +998,23 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-id@1.1.0':
+ /@radix-ui/react-id@1.1.0(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==}
peerDependencies:
'@types/react': '*'
@@ -665,8 +1022,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-id@1.1.1':
+ /@radix-ui/react-id@1.1.1(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
peerDependencies:
'@types/react': '*'
@@ -674,8 +1036,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-label@2.1.1':
+ /@radix-ui/react-label@2.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-UUw5E4e/2+4kFMH7+YxORXGWggtY6sM8WIwh5RZchhLuUg2H1hc98Py+pr8HMz6rdaYrK2t296ZEjYLOCO5uUw==}
peerDependencies:
'@types/react': '*'
@@ -687,8 +1054,15 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-menu@2.1.4':
+ /@radix-ui/react-menu@2.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-BnOgVoL6YYdHAG6DtXONaR29Eq4nvbi8rutrV/xlr3RQCMMb3yqP85Qiw/3NReozrSW+4dfLkK+rc1hb4wPU/A==}
peerDependencies:
'@types/react': '*'
@@ -700,8 +1074,32 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ aria-hidden: 1.2.6
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ react-remove-scroll: 2.7.2(@types/react@19.0.0)(react@19.2.0)
+ dev: false
- '@radix-ui/react-menubar@1.1.4':
+ /@radix-ui/react-menubar@1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-+KMpi7VAZuB46+1LD7a30zb5IxyzLgC8m8j42gk3N4TUCcViNQdX8FhoH1HDvYiA8quuqcek4R4bYpPn/SY1GA==}
peerDependencies:
'@types/react': '*'
@@ -713,8 +1111,24 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-menu': 2.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-navigation-menu@1.2.3':
+ /@radix-ui/react-navigation-menu@1.2.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-IQWAsQ7dsLIYDrn0WqPU+cdM7MONTv9nqrLVYoie3BPiabSfUVDe6Fr+oEt0Cofsr9ONDcDe9xhmJbL1Uq1yKg==}
peerDependencies:
'@types/react': '*'
@@ -726,8 +1140,28 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-popover@1.1.4':
+ /@radix-ui/react-popover@1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-aUACAkXx8LaFymDma+HQVji7WhvEhpFJ7+qPz17Nf4lLZqtreGOFRiNQWQmhzp7kEWg9cOyyQJpdIMUMPc/CPw==}
peerDependencies:
'@types/react': '*'
@@ -739,8 +1173,29 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ aria-hidden: 1.2.6
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ react-remove-scroll: 2.7.2(@types/react@19.0.0)(react@19.2.0)
+ dev: false
- '@radix-ui/react-popper@1.2.1':
+ /@radix-ui/react-popper@1.2.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-3kn5Me69L+jv82EKRuQCXdYyf1DqHwD2U/sxoNgBGCB7K9TRc3bQamQ+5EPM9EvyPdli0W41sROd+ZU1dTCztw==}
peerDependencies:
'@types/react': '*'
@@ -752,8 +1207,24 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@floating-ui/react-dom': 2.1.6(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-arrow': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/rect': 1.1.0
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-portal@1.1.3':
+ /@radix-ui/react-portal@1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-NciRqhXnGojhT93RPyDaMPfLH3ZSl4jjIFbZQ1b/vxvZEdHsBZ49wP9w8L3HzUQwep01LcWtkUvm0OVB5JAHTw==}
peerDependencies:
'@types/react': '*'
@@ -765,8 +1236,16 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-presence@1.1.2':
+ /@radix-ui/react-presence@1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-18TFr80t5EVgL9x1SwF/YGtfG+l0BS0PRAlCWBDoBEiDQjeKgnNZRVJp/oVBl24sr3Gbfwc/Qpj4OcWTQMsAEg==}
peerDependencies:
'@types/react': '*'
@@ -778,8 +1257,16 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-primitive@2.0.1':
+ /@radix-ui/react-primitive@2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-sHCWTtxwNn3L3fH8qAfnF3WbUZycW93SM1j3NFDzXBiz8D6F5UTTy8G1+WFEaiCdvCVRJWj6N2R4Xq6HdiHmDg==}
peerDependencies:
'@types/react': '*'
@@ -791,8 +1278,15 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-primitive@2.1.4':
+ /@radix-ui/react-primitive@2.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-9hQc4+GNVtJAIEPEqlYqW5RiYdrr8ea5XQ0ZOnD6fgru+83kqT15mq2OCcbe8KnjRZl5vF3ks69AKz3kh1jrhg==}
peerDependencies:
'@types/react': '*'
@@ -804,8 +1298,15 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-slot': 1.2.4(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-progress@1.1.1':
+ /@radix-ui/react-progress@1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-6diOawA84f/eMxFHcWut0aE1C2kyE9dOyCTQOMRR2C/qPiXz/X0SaiA/RLbapQaXUCmy0/hLMf9meSccD1N0pA==}
peerDependencies:
'@types/react': '*'
@@ -817,8 +1318,16 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-radio-group@1.2.2':
+ /@radix-ui/react-radio-group@1.2.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-E0MLLGfOP0l8P/NxgVzfXJ8w3Ch8cdO6UDzJfDChu4EJDy+/WdO5LqpdY8PYnCErkmZH3gZhDL1K7kQ41fAHuQ==}
peerDependencies:
'@types/react': '*'
@@ -830,8 +1339,24 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-roving-focus@1.1.1':
+ /@radix-ui/react-roving-focus@1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-QE1RoxPGJ/Nm8Qmk0PxP8ojmoaS67i0s7hVssS7KuI2FQoc/uzVlZsqKfQvxPE6D8hICCPHJ4D88zNhT3OOmkw==}
peerDependencies:
'@types/react': '*'
@@ -843,8 +1368,23 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-scroll-area@1.2.2':
+ /@radix-ui/react-scroll-area@1.2.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-EFI1N/S3YxZEW/lJ/H1jY3njlvTd8tBmgKEn4GHi51+aMm94i6NmAJstsm5cu3yJwYqYc93gpCPm21FeAbFk6g==}
peerDependencies:
'@types/react': '*'
@@ -856,8 +1396,23 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/number': 1.1.0
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-select@2.1.4':
+ /@radix-ui/react-select@2.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-pOkb2u8KgO47j/h7AylCj7dJsm69BXcjkrvTqMptFqsE2i0p8lHkfgneXKjAgPzBMivnoMyt8o4KiV4wYzDdyQ==}
peerDependencies:
'@types/react': '*'
@@ -869,8 +1424,35 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/number': 1.1.0
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ aria-hidden: 1.2.6
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ react-remove-scroll: 2.7.2(@types/react@19.0.0)(react@19.2.0)
+ dev: false
- '@radix-ui/react-separator@1.1.1':
+ /@radix-ui/react-separator@1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-RRiNRSrD8iUiXriq/Y5n4/3iE8HzqgLHsusUSg5jVpU2+3tqcUFPJXHDymwEypunc2sWxDUS3UC+rkZRlHedsw==}
peerDependencies:
'@types/react': '*'
@@ -882,8 +1464,15 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-slider@1.2.2':
+ /@radix-ui/react-slider@1.2.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-sNlU06ii1/ZcbHf8I9En54ZPW0Vil/yPVg4vQMcFNjrIx51jsHbFl1HYHQvCIWJSr1q0ZmA+iIs/ZTv8h7HHSA==}
peerDependencies:
'@types/react': '*'
@@ -895,8 +1484,25 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/number': 1.1.0
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-slot@1.1.1':
+ /@radix-ui/react-slot@1.1.1(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-RApLLOcINYJA+dMVbOju7MYv1Mb2EBp2nH4HdDzXTSyaR5optlm6Otrz1euW3HbdOR8UmmFK06TD+A9frYWv+g==}
peerDependencies:
'@types/react': '*'
@@ -904,8 +1510,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-slot@1.2.4':
+ /@radix-ui/react-slot@1.2.4(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-Jl+bCv8HxKnlTLVrcDE8zTMJ09R9/ukw4qBs/oZClOfoQk/cOTbDn+NceXfV7j09YPVQUryJPHurafcSg6EVKA==}
peerDependencies:
'@types/react': '*'
@@ -913,8 +1524,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-switch@1.1.2':
+ /@radix-ui/react-switch@1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-zGukiWHjEdBCRyXvKR6iXAQG6qXm2esuAD6kDOi9Cn+1X6ev3ASo4+CsYaD6Fov9r/AQFekqnD/7+V0Cs6/98g==}
peerDependencies:
'@types/react': '*'
@@ -926,8 +1542,21 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-tabs@1.1.2':
+ /@radix-ui/react-tabs@1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-9u/tQJMcC2aGq7KXpGivMm1mgq7oRJKXphDwdypPd/j21j/2znamPU8WkXgnhUaTrSFNIt8XhOyCAupg8/GbwQ==}
peerDependencies:
'@types/react': '*'
@@ -939,8 +1568,22 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-toast@1.2.4':
+ /@radix-ui/react-toast@1.2.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-Sch9idFJHJTMH9YNpxxESqABcAFweJG4tKv+0zo0m5XBvUSL8FM5xKcJLFLXononpePs8IclyX1KieL5SDUNgA==}
peerDependencies:
'@types/react': '*'
@@ -952,8 +1595,26 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-toggle-group@1.1.1':
+ /@radix-ui/react-toggle-group@1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-OgDLZEA30Ylyz8YSXvnGqIHtERqnUt1KUYTKdw/y8u7Ci6zGiJfXc02jahmcSNK3YcErqioj/9flWC9S1ihfwg==}
peerDependencies:
'@types/react': '*'
@@ -965,8 +1626,21 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-direction': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-toggle': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-toggle@1.1.1':
+ /@radix-ui/react-toggle@1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-i77tcgObYr743IonC1hrsnnPmszDRn8p+EGUsUt+5a/JFn28fxaM88Py6V2mc8J5kELMWishI0rLnuGLFD/nnQ==}
peerDependencies:
'@types/react': '*'
@@ -978,8 +1652,17 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-tooltip@1.1.6':
+ /@radix-ui/react-tooltip@1.1.6(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-TLB5D8QLExS1uDn7+wH/bjEmRurNMTzNrtq7IjaS4kjion9NtzsTGkvR5+i7yc9q01Pi2KMM2cN3f8UG4IvvXA==}
peerDependencies:
'@types/react': '*'
@@ -991,8 +1674,26 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/primitive': 1.1.1
+ '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-context': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-slot': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/react-use-callback-ref@1.1.0':
+ /@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==}
peerDependencies:
'@types/react': '*'
@@ -1000,8 +1701,12 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-use-controllable-state@1.1.0':
+ /@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==}
peerDependencies:
'@types/react': '*'
@@ -1009,8 +1714,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-use-escape-keydown@1.1.0':
+ /@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==}
peerDependencies:
'@types/react': '*'
@@ -1018,8 +1728,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-use-layout-effect@1.1.0':
+ /@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==}
peerDependencies:
'@types/react': '*'
@@ -1027,8 +1742,12 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-use-layout-effect@1.1.1':
+ /@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
peerDependencies:
'@types/react': '*'
@@ -1036,8 +1755,12 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-use-previous@1.1.0':
+ /@radix-ui/react-use-previous@1.1.0(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==}
peerDependencies:
'@types/react': '*'
@@ -1045,8 +1768,12 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-use-rect@1.1.0':
+ /@radix-ui/react-use-rect@1.1.0(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==}
peerDependencies:
'@types/react': '*'
@@ -1054,8 +1781,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/rect': 1.1.0
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-use-size@1.1.0':
+ /@radix-ui/react-use-size@1.1.0(@types/react@19.0.0)(react@19.2.0):
resolution: {integrity: sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==}
peerDependencies:
'@types/react': '*'
@@ -1063,8 +1795,13 @@ packages:
peerDependenciesMeta:
'@types/react':
optional: true
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ react: 19.2.0
+ dev: false
- '@radix-ui/react-visually-hidden@1.1.1':
+ /@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-vVfA2IZ9q/J+gEamvj761Oq1FpWgCDaNOOIfbPVp2MVPLEomUr5+Vf7kJGwQ24YxZSlQVar7Bes8kyTo5Dshpg==}
peerDependencies:
'@types/react': '*'
@@ -1076,74 +1813,124 @@ packages:
optional: true
'@types/react-dom':
optional: true
+ dependencies:
+ '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@types/react': 19.0.0
+ '@types/react-dom': 19.0.0
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- '@radix-ui/rect@1.1.0':
+ /@radix-ui/rect@1.1.0:
resolution: {integrity: sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==}
+ dev: false
- '@swc/helpers@0.5.15':
+ /@swc/helpers@0.5.15:
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
+ dependencies:
+ tslib: 2.8.1
+ dev: false
- '@tailwindcss/node@4.1.18':
- resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
+ /@tailwindcss/node@4.1.9:
+ resolution: {integrity: sha512-ZFsgw6lbtcZKYPWvf6zAuCVSuer7UQ2Z5P8BETHcpA4x/3NwOjAIXmRnYfG77F14f9bPeuR4GaNz3ji1JkQMeQ==}
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ enhanced-resolve: 5.18.4
+ jiti: 2.6.1
+ lightningcss: 1.30.1
+ magic-string: 0.30.21
+ source-map-js: 1.2.1
+ tailwindcss: 4.1.9
+ dev: true
- '@tailwindcss/oxide-android-arm64@4.1.18':
- resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==}
+ /@tailwindcss/oxide-android-arm64@4.1.9:
+ resolution: {integrity: sha512-X4mBUUJ3DPqODhtdT5Ju55feJwBN+hP855Z7c0t11Jzece9KRtdM41ljMrCcureKMh96mcOh2gxahkp1yE+BOQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@tailwindcss/oxide-darwin-arm64@4.1.18':
- resolution: {integrity: sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==}
+ /@tailwindcss/oxide-darwin-arm64@4.1.9:
+ resolution: {integrity: sha512-jnWnqz71ZLXUbJLW53m9dSQakLBfaWxAd9TAibimrNdQfZKyie+xGppdDCZExtYwUdflt3kOT9y1JUgYXVEQmw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@tailwindcss/oxide-darwin-x64@4.1.18':
- resolution: {integrity: sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==}
+ /@tailwindcss/oxide-darwin-x64@4.1.9:
+ resolution: {integrity: sha512-+Ui6LlvZ6aCPvSwv3l16nYb6gu1N6RamFz7hSu5aqaiPrDQqD1LPT/e8r2/laSVwFjRyOZxQQ/gvGxP3ihA2rw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@tailwindcss/oxide-freebsd-x64@4.1.18':
- resolution: {integrity: sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==}
+ /@tailwindcss/oxide-freebsd-x64@4.1.9:
+ resolution: {integrity: sha512-BWqCh0uoXMprwWfG7+oyPW53VCh6G08pxY0IIN/i5DQTpPnCJ4zm2W8neH9kW1v1f6RXP3b2qQjAzrAcnQ5e9w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18':
- resolution: {integrity: sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==}
+ /@tailwindcss/oxide-linux-arm-gnueabihf@4.1.9:
+ resolution: {integrity: sha512-U8itjQb5TVc80aV5Yo+JtKo+qS95CV4XLrKEtSLQFoTD/c9j3jk4WZipYT+9Jxqem29qCMRPxjEZ3s+wTT4XCw==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@tailwindcss/oxide-linux-arm64-gnu@4.1.18':
- resolution: {integrity: sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==}
+ /@tailwindcss/oxide-linux-arm64-gnu@4.1.9:
+ resolution: {integrity: sha512-dKlGraoNvyTrR7ovLw3Id9yTwc+l0NYg8bwOkYqk+zltvGns8bPvVr6PH5jATdc75kCGd6kDRmP4p1LwqCnPJQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@tailwindcss/oxide-linux-arm64-musl@4.1.18':
- resolution: {integrity: sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==}
+ /@tailwindcss/oxide-linux-arm64-musl@4.1.9:
+ resolution: {integrity: sha512-qCZ4QTrZaBEgNM13pGjvakdmid1Kw3CUCEQzgVAn64Iud7zSxOGwK1usg+hrwrOfFH7vXZZr8OhzC8fJTRq5NA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@tailwindcss/oxide-linux-x64-gnu@4.1.18':
- resolution: {integrity: sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==}
+ /@tailwindcss/oxide-linux-x64-gnu@4.1.9:
+ resolution: {integrity: sha512-bmzkAWQjRlY9udmg/a1bOtZpV14ZCdrB74PZrd7Oz/wK62Rk+m9+UV3BsgGfOghyO5Qu5ZDciADzDMZbi9n1+g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@tailwindcss/oxide-linux-x64-musl@4.1.18':
- resolution: {integrity: sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==}
+ /@tailwindcss/oxide-linux-x64-musl@4.1.9:
+ resolution: {integrity: sha512-NpvPQsXj1raDHhd+g2SUvZQoTPWfYAsyYo9h4ZqV7EOmR+aj7LCAE5hnXNnrJ5Egy/NiO3Hs7BNpSbsPEOpORg==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@tailwindcss/oxide-wasm32-wasi@4.1.18':
- resolution: {integrity: sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==}
+ /@tailwindcss/oxide-wasm32-wasi@4.1.9:
+ resolution: {integrity: sha512-G93Yuf3xrpTxDUCSh685d1dvOkqOB0Gy+Bchv9Zy3k+lNw/9SEgsHit50xdvp1/p9yRH2TeDHJeDLUiV4mlTkA==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
+ requiresBuild: true
+ dev: true
+ optional: true
bundledDependencies:
- '@napi-rs/wasm-runtime'
- '@emnapi/core'
@@ -1152,64 +1939,115 @@ packages:
- '@emnapi/wasi-threads'
- tslib
- '@tailwindcss/oxide-win32-arm64-msvc@4.1.18':
- resolution: {integrity: sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==}
+ /@tailwindcss/oxide-win32-arm64-msvc@4.1.9:
+ resolution: {integrity: sha512-Eq9FZzZe/NPkUiSMY+eY7r5l7msuFlm6wC6lnV11m8885z0vs9zx48AKTfw0UbVecTRV5wMxKb3Kmzx2LoUIWg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@tailwindcss/oxide-win32-x64-msvc@4.1.18':
- resolution: {integrity: sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==}
+ /@tailwindcss/oxide-win32-x64-msvc@4.1.9:
+ resolution: {integrity: sha512-oZ4zkthMXMJN2w/vu3jEfuqWTW7n8giGYDV/SfhBGRNehNMOBqh3YUAEv+8fv2YDJEzL4JpXTNTiSXW3UiUwBw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- '@tailwindcss/oxide@4.1.18':
- resolution: {integrity: sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==}
+ /@tailwindcss/oxide@4.1.9:
+ resolution: {integrity: sha512-oqjNxOBt1iNRAywjiH+VFsfovx/hVt4mxe0kOkRMAbbcCwbJg5e2AweFqyGN7gtmE1TJXnvnyX7RWTR1l72ciQ==}
engines: {node: '>= 10'}
+ requiresBuild: true
+ dependencies:
+ detect-libc: 2.1.2
+ tar: 7.5.6
+ optionalDependencies:
+ '@tailwindcss/oxide-android-arm64': 4.1.9
+ '@tailwindcss/oxide-darwin-arm64': 4.1.9
+ '@tailwindcss/oxide-darwin-x64': 4.1.9
+ '@tailwindcss/oxide-freebsd-x64': 4.1.9
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.9
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.1.9
+ '@tailwindcss/oxide-linux-arm64-musl': 4.1.9
+ '@tailwindcss/oxide-linux-x64-gnu': 4.1.9
+ '@tailwindcss/oxide-linux-x64-musl': 4.1.9
+ '@tailwindcss/oxide-wasm32-wasi': 4.1.9
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.1.9
+ '@tailwindcss/oxide-win32-x64-msvc': 4.1.9
+ dev: true
- '@tailwindcss/postcss@4.1.18':
- resolution: {integrity: sha512-Ce0GFnzAOuPyfV5SxjXGn0CubwGcuDB0zcdaPuCSzAa/2vII24JTkH+I6jcbXLb1ctjZMZZI6OjDaLPJQL1S0g==}
+ /@tailwindcss/postcss@4.1.9:
+ resolution: {integrity: sha512-v3DKzHibZO8ioVDmuVHCW1PR0XSM7nS40EjZFJEA1xPuvTuQPaR5flE1LyikU3hu2u1KNWBtEaSe8qsQjX3tyg==}
+ dependencies:
+ '@alloc/quick-lru': 5.2.0
+ '@tailwindcss/node': 4.1.9
+ '@tailwindcss/oxide': 4.1.9
+ postcss: 8.5.0
+ tailwindcss: 4.1.9
+ dev: true
- '@types/d3-array@3.2.2':
+ /@types/d3-array@3.2.2:
resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==}
+ dev: false
- '@types/d3-color@3.1.3':
+ /@types/d3-color@3.1.3:
resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==}
+ dev: false
- '@types/d3-ease@3.0.2':
+ /@types/d3-ease@3.0.2:
resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==}
+ dev: false
- '@types/d3-interpolate@3.0.4':
+ /@types/d3-interpolate@3.0.4:
resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==}
+ dependencies:
+ '@types/d3-color': 3.1.3
+ dev: false
- '@types/d3-path@3.1.1':
+ /@types/d3-path@3.1.1:
resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==}
+ dev: false
- '@types/d3-scale@4.0.9':
+ /@types/d3-scale@4.0.9:
resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==}
+ dependencies:
+ '@types/d3-time': 3.0.4
+ dev: false
- '@types/d3-shape@3.1.8':
+ /@types/d3-shape@3.1.8:
resolution: {integrity: sha512-lae0iWfcDeR7qt7rA88BNiqdvPS5pFVPpo5OfjElwNaT2yyekbM0C9vK+yqBqEmHr6lDkRnYNoTBYlAgJa7a4w==}
+ dependencies:
+ '@types/d3-path': 3.1.1
+ dev: false
- '@types/d3-time@3.0.4':
+ /@types/d3-time@3.0.4:
resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==}
+ dev: false
- '@types/d3-timer@3.0.2':
+ /@types/d3-timer@3.0.2:
resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==}
+ dev: false
- '@types/node@22.19.7':
- resolution: {integrity: sha512-MciR4AKGHWl7xwxkBa6xUGxQJ4VBOmPTF7sL+iGzuahOFaO0jHCsuEfS80pan1ef4gWId1oWOweIhrDEYLuaOw==}
+ /@types/node@22.0.0:
+ resolution: {integrity: sha512-VT7KSYudcPOzP5Q0wfbowyNLaVR8QWUdw+088uFWwfvpY6uCWaXpqV6ieLAu9WBcnTa7H4Z5RLK8I5t2FuOcqw==}
+ dependencies:
+ undici-types: 6.11.1
+ dev: true
- '@types/react-dom@19.2.3':
- resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
- peerDependencies:
- '@types/react': ^19.2.0
+ /@types/react-dom@19.0.0:
+ resolution: {integrity: sha512-1KfiQKsH1o00p9m5ag12axHQSb3FOU9H20UTrujVSkNhuCrRHiQWFqgEnTNK5ZNfnzZv8UWrnXVqCmCF9fgY3w==}
+ dependencies:
+ '@types/react': 19.0.0
- '@types/react@19.2.9':
- resolution: {integrity: sha512-Lpo8kgb/igvMIPeNV2rsYKTgaORYdO1XGVZ4Qz3akwOj0ySGYMPlQWa8BaLn0G63D1aSaAQ5ldR06wCpChQCjA==}
+ /@types/react@19.0.0:
+ resolution: {integrity: sha512-MY3oPudxvMYyesqs/kW1Bh8y9VqSmf+tzqw3ae8a9DZW68pUe3zAdHeI1jc6iAysuRdACnVknHP8AhwD4/dxtg==}
+ dependencies:
+ csstype: 3.2.3
- '@vercel/analytics@1.3.1':
+ /@vercel/analytics@1.3.1(next@16.0.10)(react@19.2.0):
resolution: {integrity: sha512-xhSlYgAuJ6Q4WQGkzYTLmXwhYl39sWjoMA3nHxfkvG+WdBT25c563a7QhwwKivEOZtPJXifYHR1m2ihoisbWyA==}
peerDependencies:
next: '>= 13'
@@ -1219,267 +2057,440 @@ packages:
optional: true
react:
optional: true
+ dependencies:
+ next: 16.0.10(react-dom@19.2.0)(react@19.2.0)
+ react: 19.2.0
+ server-only: 0.0.1
+ dev: false
- aria-hidden@1.2.6:
+ /aria-hidden@1.2.6:
resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
engines: {node: '>=10'}
+ dependencies:
+ tslib: 2.8.1
+ dev: false
- autoprefixer@10.4.23:
- resolution: {integrity: sha512-YYTXSFulfwytnjAPlw8QHncHJmlvFKtczb8InXaAx9Q0LbfDnfEYDE55omerIJKihhmU61Ft+cAOSzQVaBUmeA==}
+ /autoprefixer@10.4.20(postcss@8.5.0):
+ resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
hasBin: true
peerDependencies:
postcss: ^8.1.0
+ dependencies:
+ browserslist: 4.28.1
+ caniuse-lite: 1.0.30001766
+ fraction.js: 4.3.7
+ normalize-range: 0.1.2
+ picocolors: 1.1.1
+ postcss: 8.5.0
+ postcss-value-parser: 4.2.0
+ dev: false
- baseline-browser-mapping@2.9.17:
+ /baseline-browser-mapping@2.9.17:
resolution: {integrity: sha512-agD0MgJFUP/4nvjqzIB29zRPUuCF7Ge6mEv9s8dHrtYD7QWXRcx75rOADE/d5ah1NI+0vkDl0yorDd5U852IQQ==}
hasBin: true
+ dev: false
- browserslist@4.28.1:
+ /browserslist@4.28.1:
resolution: {integrity: sha512-ZC5Bd0LgJXgwGqUknZY/vkUQ04r8NXnJZ3yYi4vDmSiZmC/pdSN0NbNRPxZpbtO4uAfDUAFffO8IZoM3Gj8IkA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
+ dependencies:
+ baseline-browser-mapping: 2.9.17
+ caniuse-lite: 1.0.30001766
+ electron-to-chromium: 1.5.278
+ node-releases: 2.0.27
+ update-browserslist-db: 1.2.3(browserslist@4.28.1)
+ dev: false
- caniuse-lite@1.0.30001766:
+ /caniuse-lite@1.0.30001766:
resolution: {integrity: sha512-4C0lfJ0/YPjJQHagaE9x2Elb69CIqEPZeG0anQt9SIvIoOH4a4uaRl73IavyO+0qZh6MDLH//DrXThEYKHkmYA==}
+ dev: false
- class-variance-authority@0.7.1:
+ /chownr@3.0.0:
+ resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
+ engines: {node: '>=18'}
+ dev: true
+
+ /class-variance-authority@0.7.1:
resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
+ dependencies:
+ clsx: 2.1.1
+ dev: false
- client-only@0.0.1:
+ /client-only@0.0.1:
resolution: {integrity: sha512-IV3Ou0jSMzZrd3pZ48nLkT9DA7Ag1pnPzaiQhpW7c3RbcqqzvzzVu+L8gfqMp/8IM2MQtSiqaCxrrcfu8I8rMA==}
+ dev: false
- clsx@2.1.1:
+ /clsx@2.1.1:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
+ dev: false
- cmdk@1.0.4:
+ /cmdk@1.0.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-AnsjfHyHpQ/EFeAnG216WY7A5LiYCoZzCSygiLvfXC3H3LFGCprErteUcszaVluGOhuOTbJS3jWHrSDYPBBygg==}
peerDependencies:
react: ^18 || ^19 || ^19.0.0-rc
react-dom: ^18 || ^19 || ^19.0.0-rc
+ dependencies:
+ '@radix-ui/react-dialog': 1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.0.0)(react@19.2.0)
+ '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ use-sync-external-store: 1.6.0(react@19.2.0)
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+ dev: false
- csstype@3.2.3:
+ /csstype@3.2.3:
resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
- d3-array@3.2.4:
+ /d3-array@3.2.4:
resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==}
engines: {node: '>=12'}
+ dependencies:
+ internmap: 2.0.3
+ dev: false
- d3-color@3.1.0:
+ /d3-color@3.1.0:
resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
engines: {node: '>=12'}
+ dev: false
- d3-ease@3.0.1:
+ /d3-ease@3.0.1:
resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
engines: {node: '>=12'}
+ dev: false
- d3-format@3.1.2:
+ /d3-format@3.1.2:
resolution: {integrity: sha512-AJDdYOdnyRDV5b6ArilzCPPwc1ejkHcoyFarqlPqT7zRYjhavcT3uSrqcMvsgh2CgoPbK3RCwyHaVyxYcP2Arg==}
engines: {node: '>=12'}
+ dev: false
- d3-interpolate@3.0.1:
+ /d3-interpolate@3.0.1:
resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
engines: {node: '>=12'}
+ dependencies:
+ d3-color: 3.1.0
+ dev: false
- d3-path@3.1.0:
+ /d3-path@3.1.0:
resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
engines: {node: '>=12'}
+ dev: false
- d3-scale@4.0.2:
+ /d3-scale@4.0.2:
resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
engines: {node: '>=12'}
+ dependencies:
+ d3-array: 3.2.4
+ d3-format: 3.1.2
+ d3-interpolate: 3.0.1
+ d3-time: 3.1.0
+ d3-time-format: 4.1.0
+ dev: false
- d3-shape@3.2.0:
+ /d3-shape@3.2.0:
resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
engines: {node: '>=12'}
+ dependencies:
+ d3-path: 3.1.0
+ dev: false
- d3-time-format@4.1.0:
+ /d3-time-format@4.1.0:
resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
engines: {node: '>=12'}
+ dependencies:
+ d3-time: 3.1.0
+ dev: false
- d3-time@3.1.0:
+ /d3-time@3.1.0:
resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
engines: {node: '>=12'}
+ dependencies:
+ d3-array: 3.2.4
+ dev: false
- d3-timer@3.0.1:
+ /d3-timer@3.0.1:
resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
engines: {node: '>=12'}
+ dev: false
- date-fns-jalali@4.1.0-0:
+ /date-fns-jalali@4.1.0-0:
resolution: {integrity: sha512-hTIP/z+t+qKwBDcmmsnmjWTduxCg+5KfdqWQvb2X/8C9+knYY6epN/pfxdDuyVlSVeFz0sM5eEfwIUQ70U4ckg==}
+ dev: false
- date-fns@4.1.0:
+ /date-fns@4.1.0:
resolution: {integrity: sha512-Ukq0owbQXxa/U3EGtsdVBkR1w7KOQ5gIBqdH2hkvknzZPYvBxb/aa6E8L7tmjFtkwZBu3UXBbjIgPo/Ez4xaNg==}
+ dev: false
- decimal.js-light@2.5.1:
+ /decimal.js-light@2.5.1:
resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
+ dev: false
- detect-libc@2.1.2:
+ /detect-libc@2.1.2:
resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
engines: {node: '>=8'}
- detect-node-es@1.1.0:
+ /detect-node-es@1.1.0:
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
+ dev: false
- dom-helpers@5.2.1:
+ /dom-helpers@5.2.1:
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
+ dependencies:
+ '@babel/runtime': 7.28.6
+ csstype: 3.2.3
+ dev: false
- electron-to-chromium@1.5.278:
+ /electron-to-chromium@1.5.278:
resolution: {integrity: sha512-dQ0tM1svDRQOwxnXxm+twlGTjr9Upvt8UFWAgmLsxEzFQxhbti4VwxmMjsDxVC51Zo84swW7FVCXEV+VAkhuPw==}
+ dev: false
- embla-carousel-react@8.5.1:
+ /embla-carousel-react@8.5.1(react@19.2.0):
resolution: {integrity: sha512-z9Y0K84BJvhChXgqn2CFYbfEi6AwEr+FFVVKm/MqbTQ2zIzO1VQri6w67LcfpVF0AjbhwVMywDZqY4alYkjW5w==}
peerDependencies:
react: ^16.8.0 || ^17.0.1 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ dependencies:
+ embla-carousel: 8.5.1
+ embla-carousel-reactive-utils: 8.5.1(embla-carousel@8.5.1)
+ react: 19.2.0
+ dev: false
- embla-carousel-reactive-utils@8.5.1:
+ /embla-carousel-reactive-utils@8.5.1(embla-carousel@8.5.1):
resolution: {integrity: sha512-n7VSoGIiiDIc4MfXF3ZRTO59KDp820QDuyBDGlt5/65+lumPHxX2JLz0EZ23hZ4eg4vZGUXwMkYv02fw2JVo/A==}
peerDependencies:
embla-carousel: 8.5.1
+ dependencies:
+ embla-carousel: 8.5.1
+ dev: false
- embla-carousel@8.5.1:
+ /embla-carousel@8.5.1:
resolution: {integrity: sha512-JUb5+FOHobSiWQ2EJNaueCNT/cQU9L6XWBbWmorWPQT9bkbk+fhsuLr8wWrzXKagO3oWszBO7MSx+GfaRk4E6A==}
+ dev: false
- enhanced-resolve@5.18.4:
+ /enhanced-resolve@5.18.4:
resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==}
engines: {node: '>=10.13.0'}
+ dependencies:
+ graceful-fs: 4.2.11
+ tapable: 2.3.0
+ dev: true
- escalade@3.2.0:
+ /escalade@3.2.0:
resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
+ dev: false
- eventemitter3@4.0.7:
+ /eventemitter3@4.0.7:
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
+ dev: false
- fast-equals@5.4.0:
+ /fast-equals@5.4.0:
resolution: {integrity: sha512-jt2DW/aNFNwke7AUd+Z+e6pz39KO5rzdbbFCg2sGafS4mk13MI7Z8O5z9cADNn5lhGODIgLwug6TZO2ctf7kcw==}
engines: {node: '>=6.0.0'}
+ dev: false
- fraction.js@5.3.4:
- resolution: {integrity: sha512-1X1NTtiJphryn/uLQz3whtY6jK3fTqoE3ohKs0tT+Ujr1W59oopxmoEh7Lu5p6vBaPbgoM0bzveAW4Qi5RyWDQ==}
+ /fraction.js@4.3.7:
+ resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
+ dev: false
- get-nonce@1.0.1:
+ /get-nonce@1.0.1:
resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
engines: {node: '>=6'}
+ dev: false
- graceful-fs@4.2.11:
+ /graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
+ dev: true
- input-otp@1.4.1:
+ /input-otp@1.4.1(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-+yvpmKYKHi9jIGngxagY9oWiiblPB7+nEO75F2l2o4vs+6vpPZZmUl4tBNYuTCvQjhvEIbdNeJu70bhfYP2nbw==}
peerDependencies:
react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
+ dependencies:
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- internmap@2.0.3:
+ /internmap@2.0.3:
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
engines: {node: '>=12'}
+ dev: false
- jiti@2.6.1:
+ /jiti@2.6.1:
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
hasBin: true
+ dev: true
- js-tokens@4.0.0:
+ /js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
+ dev: false
- lightningcss-android-arm64@1.30.2:
- resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [android]
-
- lightningcss-darwin-arm64@1.30.2:
- resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
+ /lightningcss-darwin-arm64@1.30.1:
+ resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- lightningcss-darwin-x64@1.30.2:
- resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
+ /lightningcss-darwin-x64@1.30.1:
+ resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
+ requiresBuild: true
+ dev: true
+ optional: true
- lightningcss-freebsd-x64@1.30.2:
- resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
+ /lightningcss-freebsd-x64@1.30.1:
+ resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
+ requiresBuild: true
+ dev: true
+ optional: true
- lightningcss-linux-arm-gnueabihf@1.30.2:
- resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
+ /lightningcss-linux-arm-gnueabihf@1.30.1:
+ resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- lightningcss-linux-arm64-gnu@1.30.2:
- resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
+ /lightningcss-linux-arm64-gnu@1.30.1:
+ resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- lightningcss-linux-arm64-musl@1.30.2:
- resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
+ /lightningcss-linux-arm64-musl@1.30.1:
+ resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- lightningcss-linux-x64-gnu@1.30.2:
- resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
+ /lightningcss-linux-x64-gnu@1.30.1:
+ resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- lightningcss-linux-x64-musl@1.30.2:
- resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
+ /lightningcss-linux-x64-musl@1.30.1:
+ resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
+ requiresBuild: true
+ dev: true
+ optional: true
- lightningcss-win32-arm64-msvc@1.30.2:
- resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
+ /lightningcss-win32-arm64-msvc@1.30.1:
+ resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- lightningcss-win32-x64-msvc@1.30.2:
- resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
+ /lightningcss-win32-x64-msvc@1.30.1:
+ resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
+ requiresBuild: true
+ dev: true
+ optional: true
- lightningcss@1.30.2:
- resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
+ /lightningcss@1.30.1:
+ resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
engines: {node: '>= 12.0.0'}
+ dependencies:
+ detect-libc: 2.1.2
+ optionalDependencies:
+ lightningcss-darwin-arm64: 1.30.1
+ lightningcss-darwin-x64: 1.30.1
+ lightningcss-freebsd-x64: 1.30.1
+ lightningcss-linux-arm-gnueabihf: 1.30.1
+ lightningcss-linux-arm64-gnu: 1.30.1
+ lightningcss-linux-arm64-musl: 1.30.1
+ lightningcss-linux-x64-gnu: 1.30.1
+ lightningcss-linux-x64-musl: 1.30.1
+ lightningcss-win32-arm64-msvc: 1.30.1
+ lightningcss-win32-x64-msvc: 1.30.1
+ dev: true
- lodash@4.17.23:
+ /lodash@4.17.23:
resolution: {integrity: sha512-LgVTMpQtIopCi79SJeDiP0TfWi5CNEc/L/aRdTh3yIvmZXTnheWpKjSZhnvMl8iXbC1tFg9gdHHDMLoV7CnG+w==}
+ dev: false
- loose-envify@1.4.0:
+ /loose-envify@1.4.0:
resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
hasBin: true
+ dependencies:
+ js-tokens: 4.0.0
+ dev: false
- lucide-react@0.454.0:
+ /lucide-react@0.454.0(react@19.2.0):
resolution: {integrity: sha512-hw7zMDwykCLnEzgncEEjHeA6+45aeEzRYuKHuyRSOPkhko+J3ySGjGIzu+mmMfDFG1vazHepMaYFYHbTFAZAAQ==}
peerDependencies:
react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc
+ dependencies:
+ react: 19.2.0
+ dev: false
- magic-string@0.30.21:
+ /magic-string@0.30.21:
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+ dev: true
- nanoid@3.3.11:
+ /minipass@7.1.2:
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ engines: {node: '>=16 || 14 >=14.17'}
+ dev: true
+
+ /minizlib@3.1.0:
+ resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==}
+ engines: {node: '>= 18'}
+ dependencies:
+ minipass: 7.1.2
+ dev: true
+
+ /nanoid@3.3.11:
resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- next-themes@0.4.6:
+ /next-themes@0.4.6(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-pZvgD5L0IEvX5/9GWyHMf3m8BKiVQwsCMHfoFosXtXBMnaS0ZnIJ9ST4b4NqLVKDEm8QBxoNNGNaBv2JNF6XNA==}
peerDependencies:
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
+ dependencies:
+ react: 19.2.0
+ react-dom: 19.2.0(react@19.2.0)
+ dev: false
- next@16.0.10:
+ /next@16.0.10(react-dom@19.2.0)(react@19.2.0):
resolution: {integrity: sha512-RtWh5PUgI+vxlV3HdR+IfWA1UUHu0+Ram/JBO4vWB54cVPentCD0e+lxyAYEsDTqGGMg7qpjhKh6dc6aW7W/sA==}
engines: {node: '>=20.9.0'}
hasBin: true
@@ -1499,1426 +2510,6 @@ packages:
optional: true
sass:
optional: true
-
- node-releases@2.0.27:
- resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
-
- object-assign@4.1.1:
- resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
- engines: {node: '>=0.10.0'}
-
- picocolors@1.1.1:
- resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
-
- postcss-value-parser@4.2.0:
- resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
-
- postcss@8.4.31:
- resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
- engines: {node: ^10 || ^12 || >=14}
-
- postcss@8.5.6:
- resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==}
- engines: {node: ^10 || ^12 || >=14}
-
- prop-types@15.8.1:
- resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
-
- react-day-picker@9.8.0:
- resolution: {integrity: sha512-E0yhhg7R+pdgbl/2toTb0xBhsEAtmAx1l7qjIWYfcxOy8w4rTSVfbtBoSzVVhPwKP/5E9iL38LivzoE3AQDhCQ==}
- engines: {node: '>=18'}
- peerDependencies:
- react: '>=16.8.0'
-
- react-dom@19.2.0:
- resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==}
- peerDependencies:
- react: ^19.2.0
-
- react-hook-form@7.71.1:
- resolution: {integrity: sha512-9SUJKCGKo8HUSsCO+y0CtqkqI5nNuaDqTxyqPsZPqIwudpj4rCrAz/jZV+jn57bx5gtZKOh3neQu94DXMc+w5w==}
- engines: {node: '>=18.0.0'}
- peerDependencies:
- react: ^16.8.0 || ^17 || ^18 || ^19
-
- react-is@16.13.1:
- resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
-
- react-is@18.3.1:
- resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
-
- react-remove-scroll-bar@2.3.8:
- resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-remove-scroll@2.7.2:
- resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-resizable-panels@2.1.9:
- resolution: {integrity: sha512-z77+X08YDIrgAes4jl8xhnUu1LNIRp4+E7cv4xHmLOxxUPO/ML7PSrE813b90vj7xvQ1lcf7g2uA9GeMZonjhQ==}
- peerDependencies:
- react: ^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- react-dom: ^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
-
- react-smooth@4.0.4:
- resolution: {integrity: sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
-
- react-style-singleton@2.2.3:
- resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- react-transition-group@4.4.5:
- resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
- peerDependencies:
- react: '>=16.6.0'
- react-dom: '>=16.6.0'
-
- react@19.2.0:
- resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==}
- engines: {node: '>=0.10.0'}
-
- recharts-scale@0.4.5:
- resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
-
- recharts@2.15.4:
- resolution: {integrity: sha512-UT/q6fwS3c1dHbXv2uFgYJ9BMFHu3fwnd7AYZaEQhXuYQ4hgsxLvsUXzGdKeZrW5xopzDCvuA2N41WJ88I7zIw==}
- engines: {node: '>=14'}
- peerDependencies:
- react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
- react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
-
- scheduler@0.27.0:
- resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
-
- semver@7.7.3:
- resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
- engines: {node: '>=10'}
- hasBin: true
-
- server-only@0.0.1:
- resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==}
-
- sharp@0.34.5:
- resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
-
- sonner@1.7.4:
- resolution: {integrity: sha512-DIS8z4PfJRbIyfVFDVnK9rO3eYDtse4Omcm6bt0oEr5/jtLgysmjuBl1frJ9E/EQZrFmKx2A8m/s5s9CRXIzhw==}
- peerDependencies:
- react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
-
- source-map-js@1.2.1:
- resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
- engines: {node: '>=0.10.0'}
-
- styled-jsx@5.1.6:
- resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
- engines: {node: '>= 12.0.0'}
- peerDependencies:
- '@babel/core': '*'
- babel-plugin-macros: '*'
- react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
- peerDependenciesMeta:
- '@babel/core':
- optional: true
- babel-plugin-macros:
- optional: true
-
- tailwind-merge@3.4.0:
- resolution: {integrity: sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==}
-
- tailwindcss-animate@1.0.7:
- resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
- peerDependencies:
- tailwindcss: '>=3.0.0 || insiders'
-
- tailwindcss@4.1.18:
- resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==}
-
- tapable@2.3.0:
- resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
- engines: {node: '>=6'}
-
- tiny-invariant@1.3.3:
- resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
-
- tslib@2.8.1:
- resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
-
- tw-animate-css@1.3.3:
- resolution: {integrity: sha512-tXE2TRWrskc4TU3RDd7T8n8Np/wCfoeH9gz22c7PzYqNPQ9FBGFbWWzwL0JyHcFp+jHozmF76tbHfPAx22ua2Q==}
-
- typescript@5.9.3:
- resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
- engines: {node: '>=14.17'}
- hasBin: true
-
- undici-types@6.21.0:
- resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==}
-
- update-browserslist-db@1.2.3:
- resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
- hasBin: true
- peerDependencies:
- browserslist: '>= 4.21.0'
-
- use-callback-ref@1.3.3:
- resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- use-sidecar@1.1.3:
- resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
- engines: {node: '>=10'}
- peerDependencies:
- '@types/react': '*'
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
- peerDependenciesMeta:
- '@types/react':
- optional: true
-
- use-sync-external-store@1.6.0:
- resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
-
- vaul@1.1.2:
- resolution: {integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==}
- peerDependencies:
- react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
- react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
-
- victory-vendor@36.9.2:
- resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==}
-
- zod@3.25.76:
- resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
-
-snapshots:
-
- '@alloc/quick-lru@5.2.0': {}
-
- '@babel/runtime@7.28.6': {}
-
- '@date-fns/tz@1.2.0': {}
-
- '@emnapi/runtime@1.8.1':
- dependencies:
- tslib: 2.8.1
- optional: true
-
- '@floating-ui/core@1.7.3':
- dependencies:
- '@floating-ui/utils': 0.2.10
-
- '@floating-ui/dom@1.7.4':
- dependencies:
- '@floating-ui/core': 1.7.3
- '@floating-ui/utils': 0.2.10
-
- '@floating-ui/react-dom@2.1.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@floating-ui/dom': 1.7.4
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
-
- '@floating-ui/utils@0.2.10': {}
-
- '@hookform/resolvers@3.10.0(react-hook-form@7.71.1(react@19.2.0))':
- dependencies:
- react-hook-form: 7.71.1(react@19.2.0)
-
- '@img/colour@1.0.0':
- optional: true
-
- '@img/sharp-darwin-arm64@0.34.5':
- optionalDependencies:
- '@img/sharp-libvips-darwin-arm64': 1.2.4
- optional: true
-
- '@img/sharp-darwin-x64@0.34.5':
- optionalDependencies:
- '@img/sharp-libvips-darwin-x64': 1.2.4
- optional: true
-
- '@img/sharp-libvips-darwin-arm64@1.2.4':
- optional: true
-
- '@img/sharp-libvips-darwin-x64@1.2.4':
- optional: true
-
- '@img/sharp-libvips-linux-arm64@1.2.4':
- optional: true
-
- '@img/sharp-libvips-linux-arm@1.2.4':
- optional: true
-
- '@img/sharp-libvips-linux-ppc64@1.2.4':
- optional: true
-
- '@img/sharp-libvips-linux-riscv64@1.2.4':
- optional: true
-
- '@img/sharp-libvips-linux-s390x@1.2.4':
- optional: true
-
- '@img/sharp-libvips-linux-x64@1.2.4':
- optional: true
-
- '@img/sharp-libvips-linuxmusl-arm64@1.2.4':
- optional: true
-
- '@img/sharp-libvips-linuxmusl-x64@1.2.4':
- optional: true
-
- '@img/sharp-linux-arm64@0.34.5':
- optionalDependencies:
- '@img/sharp-libvips-linux-arm64': 1.2.4
- optional: true
-
- '@img/sharp-linux-arm@0.34.5':
- optionalDependencies:
- '@img/sharp-libvips-linux-arm': 1.2.4
- optional: true
-
- '@img/sharp-linux-ppc64@0.34.5':
- optionalDependencies:
- '@img/sharp-libvips-linux-ppc64': 1.2.4
- optional: true
-
- '@img/sharp-linux-riscv64@0.34.5':
- optionalDependencies:
- '@img/sharp-libvips-linux-riscv64': 1.2.4
- optional: true
-
- '@img/sharp-linux-s390x@0.34.5':
- optionalDependencies:
- '@img/sharp-libvips-linux-s390x': 1.2.4
- optional: true
-
- '@img/sharp-linux-x64@0.34.5':
- optionalDependencies:
- '@img/sharp-libvips-linux-x64': 1.2.4
- optional: true
-
- '@img/sharp-linuxmusl-arm64@0.34.5':
- optionalDependencies:
- '@img/sharp-libvips-linuxmusl-arm64': 1.2.4
- optional: true
-
- '@img/sharp-linuxmusl-x64@0.34.5':
- optionalDependencies:
- '@img/sharp-libvips-linuxmusl-x64': 1.2.4
- optional: true
-
- '@img/sharp-wasm32@0.34.5':
- dependencies:
- '@emnapi/runtime': 1.8.1
- optional: true
-
- '@img/sharp-win32-arm64@0.34.5':
- optional: true
-
- '@img/sharp-win32-ia32@0.34.5':
- optional: true
-
- '@img/sharp-win32-x64@0.34.5':
- optional: true
-
- '@jridgewell/gen-mapping@0.3.13':
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.5
- '@jridgewell/trace-mapping': 0.3.31
-
- '@jridgewell/remapping@2.3.5':
- dependencies:
- '@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.31
-
- '@jridgewell/resolve-uri@3.1.2': {}
-
- '@jridgewell/sourcemap-codec@1.5.5': {}
-
- '@jridgewell/trace-mapping@0.3.31':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.5
-
- '@next/env@16.0.10': {}
-
- '@next/swc-darwin-arm64@16.0.10':
- optional: true
-
- '@next/swc-darwin-x64@16.0.10':
- optional: true
-
- '@next/swc-linux-arm64-gnu@16.0.10':
- optional: true
-
- '@next/swc-linux-arm64-musl@16.0.10':
- optional: true
-
- '@next/swc-linux-x64-gnu@16.0.10':
- optional: true
-
- '@next/swc-linux-x64-musl@16.0.10':
- optional: true
-
- '@next/swc-win32-arm64-msvc@16.0.10':
- optional: true
-
- '@next/swc-win32-x64-msvc@16.0.10':
- optional: true
-
- '@radix-ui/number@1.1.0': {}
-
- '@radix-ui/primitive@1.1.1': {}
-
- '@radix-ui/react-accordion@1.2.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collapsible': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-alert-dialog@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-dialog': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-arrow@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-aspect-ratio@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-avatar@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-checkbox@1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-collapsible@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-collection@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-compose-refs@1.1.1(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-context-menu@2.2.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-menu': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-context@1.1.1(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-dialog@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- aria-hidden: 1.2.6
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- react-remove-scroll: 2.7.2(@types/react@19.2.9)(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-direction@1.1.0(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-dismissable-layer@1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-dropdown-menu@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-menu': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-focus-guards@1.1.1(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-focus-scope@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-hover-card@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-id@1.1.0(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-id@1.1.1(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-label@2.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-menu@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- aria-hidden: 1.2.6
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- react-remove-scroll: 2.7.2(@types/react@19.2.9)(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-menubar@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-menu': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-navigation-menu@1.2.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-popover@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- aria-hidden: 1.2.6
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- react-remove-scroll: 2.7.2(@types/react@19.2.9)(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-popper@1.2.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@floating-ui/react-dom': 2.1.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-arrow': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-rect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/rect': 1.1.0
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-portal@1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-presence@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-primitive@2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-slot': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-primitive@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-slot': 1.2.4(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-progress@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-radio-group@1.2.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-roving-focus@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-scroll-area@1.2.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-select@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-focus-scope': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- aria-hidden: 1.2.6
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- react-remove-scroll: 2.7.2(@types/react@19.2.9)(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-separator@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-slider@1.2.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/number': 1.1.0
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-slot@1.1.1(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-slot@1.2.4(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-switch@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-previous': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-size': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-tabs@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-toast@1.2.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-collection': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-toggle-group@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-direction': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-roving-focus': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-toggle': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-toggle@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-tooltip@1.1.6(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/primitive': 1.1.1
- '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-context': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-dismissable-layer': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-id': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-popper': 1.2.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-portal': 1.1.3(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-slot': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-visually-hidden': 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-use-previous@1.1.0(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-use-rect@1.1.0(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- '@radix-ui/rect': 1.1.0
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-use-size@1.1.0(@types/react@19.2.9)(react@19.2.0)':
- dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.2.9)(react@19.2.0)
- react: 19.2.0
- optionalDependencies:
- '@types/react': 19.2.9
-
- '@radix-ui/react-visually-hidden@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)':
- dependencies:
- '@radix-ui/react-primitive': 2.0.1(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
- '@types/react-dom': 19.2.3(@types/react@19.2.9)
-
- '@radix-ui/rect@1.1.0': {}
-
- '@swc/helpers@0.5.15':
- dependencies:
- tslib: 2.8.1
-
- '@tailwindcss/node@4.1.18':
- dependencies:
- '@jridgewell/remapping': 2.3.5
- enhanced-resolve: 5.18.4
- jiti: 2.6.1
- lightningcss: 1.30.2
- magic-string: 0.30.21
- source-map-js: 1.2.1
- tailwindcss: 4.1.18
-
- '@tailwindcss/oxide-android-arm64@4.1.18':
- optional: true
-
- '@tailwindcss/oxide-darwin-arm64@4.1.18':
- optional: true
-
- '@tailwindcss/oxide-darwin-x64@4.1.18':
- optional: true
-
- '@tailwindcss/oxide-freebsd-x64@4.1.18':
- optional: true
-
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18':
- optional: true
-
- '@tailwindcss/oxide-linux-arm64-gnu@4.1.18':
- optional: true
-
- '@tailwindcss/oxide-linux-arm64-musl@4.1.18':
- optional: true
-
- '@tailwindcss/oxide-linux-x64-gnu@4.1.18':
- optional: true
-
- '@tailwindcss/oxide-linux-x64-musl@4.1.18':
- optional: true
-
- '@tailwindcss/oxide-wasm32-wasi@4.1.18':
- optional: true
-
- '@tailwindcss/oxide-win32-arm64-msvc@4.1.18':
- optional: true
-
- '@tailwindcss/oxide-win32-x64-msvc@4.1.18':
- optional: true
-
- '@tailwindcss/oxide@4.1.18':
- optionalDependencies:
- '@tailwindcss/oxide-android-arm64': 4.1.18
- '@tailwindcss/oxide-darwin-arm64': 4.1.18
- '@tailwindcss/oxide-darwin-x64': 4.1.18
- '@tailwindcss/oxide-freebsd-x64': 4.1.18
- '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.18
- '@tailwindcss/oxide-linux-arm64-gnu': 4.1.18
- '@tailwindcss/oxide-linux-arm64-musl': 4.1.18
- '@tailwindcss/oxide-linux-x64-gnu': 4.1.18
- '@tailwindcss/oxide-linux-x64-musl': 4.1.18
- '@tailwindcss/oxide-wasm32-wasi': 4.1.18
- '@tailwindcss/oxide-win32-arm64-msvc': 4.1.18
- '@tailwindcss/oxide-win32-x64-msvc': 4.1.18
-
- '@tailwindcss/postcss@4.1.18':
- dependencies:
- '@alloc/quick-lru': 5.2.0
- '@tailwindcss/node': 4.1.18
- '@tailwindcss/oxide': 4.1.18
- postcss: 8.5.6
- tailwindcss: 4.1.18
-
- '@types/d3-array@3.2.2': {}
-
- '@types/d3-color@3.1.3': {}
-
- '@types/d3-ease@3.0.2': {}
-
- '@types/d3-interpolate@3.0.4':
- dependencies:
- '@types/d3-color': 3.1.3
-
- '@types/d3-path@3.1.1': {}
-
- '@types/d3-scale@4.0.9':
- dependencies:
- '@types/d3-time': 3.0.4
-
- '@types/d3-shape@3.1.8':
- dependencies:
- '@types/d3-path': 3.1.1
-
- '@types/d3-time@3.0.4': {}
-
- '@types/d3-timer@3.0.2': {}
-
- '@types/node@22.19.7':
- dependencies:
- undici-types: 6.21.0
-
- '@types/react-dom@19.2.3(@types/react@19.2.9)':
- dependencies:
- '@types/react': 19.2.9
-
- '@types/react@19.2.9':
- dependencies:
- csstype: 3.2.3
-
- '@vercel/analytics@1.3.1(next@16.0.10(react-dom@19.2.0(react@19.2.0))(react@19.2.0))(react@19.2.0)':
- dependencies:
- server-only: 0.0.1
- optionalDependencies:
- next: 16.0.10(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
-
- aria-hidden@1.2.6:
- dependencies:
- tslib: 2.8.1
-
- autoprefixer@10.4.23(postcss@8.5.6):
- dependencies:
- browserslist: 4.28.1
- caniuse-lite: 1.0.30001766
- fraction.js: 5.3.4
- picocolors: 1.1.1
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- baseline-browser-mapping@2.9.17: {}
-
- browserslist@4.28.1:
- dependencies:
- baseline-browser-mapping: 2.9.17
- caniuse-lite: 1.0.30001766
- electron-to-chromium: 1.5.278
- node-releases: 2.0.27
- update-browserslist-db: 1.2.3(browserslist@4.28.1)
-
- caniuse-lite@1.0.30001766: {}
-
- class-variance-authority@0.7.1:
- dependencies:
- clsx: 2.1.1
-
- client-only@0.0.1: {}
-
- clsx@2.1.1: {}
-
- cmdk@1.0.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
- dependencies:
- '@radix-ui/react-dialog': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.2.9)(react@19.2.0)
- '@radix-ui/react-primitive': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
- use-sync-external-store: 1.6.0(react@19.2.0)
- transitivePeerDependencies:
- - '@types/react'
- - '@types/react-dom'
-
- csstype@3.2.3: {}
-
- d3-array@3.2.4:
- dependencies:
- internmap: 2.0.3
-
- d3-color@3.1.0: {}
-
- d3-ease@3.0.1: {}
-
- d3-format@3.1.2: {}
-
- d3-interpolate@3.0.1:
- dependencies:
- d3-color: 3.1.0
-
- d3-path@3.1.0: {}
-
- d3-scale@4.0.2:
- dependencies:
- d3-array: 3.2.4
- d3-format: 3.1.2
- d3-interpolate: 3.0.1
- d3-time: 3.1.0
- d3-time-format: 4.1.0
-
- d3-shape@3.2.0:
- dependencies:
- d3-path: 3.1.0
-
- d3-time-format@4.1.0:
- dependencies:
- d3-time: 3.1.0
-
- d3-time@3.1.0:
- dependencies:
- d3-array: 3.2.4
-
- d3-timer@3.0.1: {}
-
- date-fns-jalali@4.1.0-0: {}
-
- date-fns@4.1.0: {}
-
- decimal.js-light@2.5.1: {}
-
- detect-libc@2.1.2: {}
-
- detect-node-es@1.1.0: {}
-
- dom-helpers@5.2.1:
- dependencies:
- '@babel/runtime': 7.28.6
- csstype: 3.2.3
-
- electron-to-chromium@1.5.278: {}
-
- embla-carousel-react@8.5.1(react@19.2.0):
- dependencies:
- embla-carousel: 8.5.1
- embla-carousel-reactive-utils: 8.5.1(embla-carousel@8.5.1)
- react: 19.2.0
-
- embla-carousel-reactive-utils@8.5.1(embla-carousel@8.5.1):
- dependencies:
- embla-carousel: 8.5.1
-
- embla-carousel@8.5.1: {}
-
- enhanced-resolve@5.18.4:
- dependencies:
- graceful-fs: 4.2.11
- tapable: 2.3.0
-
- escalade@3.2.0: {}
-
- eventemitter3@4.0.7: {}
-
- fast-equals@5.4.0: {}
-
- fraction.js@5.3.4: {}
-
- get-nonce@1.0.1: {}
-
- graceful-fs@4.2.11: {}
-
- input-otp@1.4.1(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
- dependencies:
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
-
- internmap@2.0.3: {}
-
- jiti@2.6.1: {}
-
- js-tokens@4.0.0: {}
-
- lightningcss-android-arm64@1.30.2:
- optional: true
-
- lightningcss-darwin-arm64@1.30.2:
- optional: true
-
- lightningcss-darwin-x64@1.30.2:
- optional: true
-
- lightningcss-freebsd-x64@1.30.2:
- optional: true
-
- lightningcss-linux-arm-gnueabihf@1.30.2:
- optional: true
-
- lightningcss-linux-arm64-gnu@1.30.2:
- optional: true
-
- lightningcss-linux-arm64-musl@1.30.2:
- optional: true
-
- lightningcss-linux-x64-gnu@1.30.2:
- optional: true
-
- lightningcss-linux-x64-musl@1.30.2:
- optional: true
-
- lightningcss-win32-arm64-msvc@1.30.2:
- optional: true
-
- lightningcss-win32-x64-msvc@1.30.2:
- optional: true
-
- lightningcss@1.30.2:
- dependencies:
- detect-libc: 2.1.2
- optionalDependencies:
- lightningcss-android-arm64: 1.30.2
- lightningcss-darwin-arm64: 1.30.2
- lightningcss-darwin-x64: 1.30.2
- lightningcss-freebsd-x64: 1.30.2
- lightningcss-linux-arm-gnueabihf: 1.30.2
- lightningcss-linux-arm64-gnu: 1.30.2
- lightningcss-linux-arm64-musl: 1.30.2
- lightningcss-linux-x64-gnu: 1.30.2
- lightningcss-linux-x64-musl: 1.30.2
- lightningcss-win32-arm64-msvc: 1.30.2
- lightningcss-win32-x64-msvc: 1.30.2
-
- lodash@4.17.23: {}
-
- loose-envify@1.4.0:
- dependencies:
- js-tokens: 4.0.0
-
- lucide-react@0.454.0(react@19.2.0):
- dependencies:
- react: 19.2.0
-
- magic-string@0.30.21:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.5
-
- nanoid@3.3.11: {}
-
- next-themes@0.4.6(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
- dependencies:
- react: 19.2.0
- react-dom: 19.2.0(react@19.2.0)
-
- next@16.0.10(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
dependencies:
'@next/env': 16.0.10
'@swc/helpers': 0.5.15
@@ -2940,94 +2531,171 @@ snapshots:
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
+ dev: false
- node-releases@2.0.27: {}
+ /node-releases@2.0.27:
+ resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
+ dev: false
- object-assign@4.1.1: {}
+ /normalize-range@0.1.2:
+ resolution: {integrity: sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==}
+ engines: {node: '>=0.10.0'}
+ dev: false
- picocolors@1.1.1: {}
+ /object-assign@4.1.1:
+ resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
+ engines: {node: '>=0.10.0'}
+ dev: false
- postcss-value-parser@4.2.0: {}
+ /picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
- postcss@8.4.31:
+ /postcss-value-parser@4.2.0:
+ resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
+ dev: false
+
+ /postcss@8.4.31:
+ resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
+ engines: {node: ^10 || ^12 || >=14}
+ dependencies:
+ nanoid: 3.3.11
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+ dev: false
+
+ /postcss@8.5.0:
+ resolution: {integrity: sha512-27VKOqrYfPncKA2NrFOVhP5MGAfHKLYn/Q0mz9cNQyRAKYi3VNHwYU2qKKqPCqgBmeeJ0uAFB56NumXZ5ZReXg==}
+ engines: {node: ^10 || ^12 || >=14}
dependencies:
nanoid: 3.3.11
picocolors: 1.1.1
source-map-js: 1.2.1
- postcss@8.5.6:
- dependencies:
- nanoid: 3.3.11
- picocolors: 1.1.1
- source-map-js: 1.2.1
-
- prop-types@15.8.1:
+ /prop-types@15.8.1:
+ resolution: {integrity: sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==}
dependencies:
loose-envify: 1.4.0
object-assign: 4.1.1
react-is: 16.13.1
+ dev: false
- react-day-picker@9.8.0(react@19.2.0):
+ /react-day-picker@9.8.0(react@19.2.0):
+ resolution: {integrity: sha512-E0yhhg7R+pdgbl/2toTb0xBhsEAtmAx1l7qjIWYfcxOy8w4rTSVfbtBoSzVVhPwKP/5E9iL38LivzoE3AQDhCQ==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ react: '>=16.8.0'
dependencies:
'@date-fns/tz': 1.2.0
date-fns: 4.1.0
date-fns-jalali: 4.1.0-0
react: 19.2.0
+ dev: false
- react-dom@19.2.0(react@19.2.0):
+ /react-dom@19.2.0(react@19.2.0):
+ resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==}
+ peerDependencies:
+ react: ^19.2.0
dependencies:
react: 19.2.0
scheduler: 0.27.0
+ dev: false
- react-hook-form@7.71.1(react@19.2.0):
+ /react-hook-form@7.60.0(react@19.2.0):
+ resolution: {integrity: sha512-SBrYOvMbDB7cV8ZfNpaiLcgjH/a1c7aK0lK+aNigpf4xWLO8q+o4tcvVurv3c4EOyzn/3dCsYt4GKD42VvJ/+A==}
+ engines: {node: '>=18.0.0'}
+ peerDependencies:
+ react: ^16.8.0 || ^17 || ^18 || ^19
dependencies:
react: 19.2.0
+ dev: false
- react-is@16.13.1: {}
+ /react-is@16.13.1:
+ resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
+ dev: false
- react-is@18.3.1: {}
+ /react-is@18.3.1:
+ resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==}
+ dev: false
- react-remove-scroll-bar@2.3.8(@types/react@19.2.9)(react@19.2.0):
+ /react-remove-scroll-bar@2.3.8(@types/react@19.0.0)(react@19.2.0):
+ resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
+ '@types/react': 19.0.0
react: 19.2.0
- react-style-singleton: 2.2.3(@types/react@19.2.9)(react@19.2.0)
+ react-style-singleton: 2.2.3(@types/react@19.0.0)(react@19.2.0)
tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.2.9
+ dev: false
- react-remove-scroll@2.7.2(@types/react@19.2.9)(react@19.2.0):
+ /react-remove-scroll@2.7.2(@types/react@19.0.0)(react@19.2.0):
+ resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
+ '@types/react': 19.0.0
react: 19.2.0
- react-remove-scroll-bar: 2.3.8(@types/react@19.2.9)(react@19.2.0)
- react-style-singleton: 2.2.3(@types/react@19.2.9)(react@19.2.0)
+ react-remove-scroll-bar: 2.3.8(@types/react@19.0.0)(react@19.2.0)
+ react-style-singleton: 2.2.3(@types/react@19.0.0)(react@19.2.0)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.2.9)(react@19.2.0)
- use-sidecar: 1.1.3(@types/react@19.2.9)(react@19.2.0)
- optionalDependencies:
- '@types/react': 19.2.9
+ use-callback-ref: 1.3.3(@types/react@19.0.0)(react@19.2.0)
+ use-sidecar: 1.1.3(@types/react@19.0.0)(react@19.2.0)
+ dev: false
- react-resizable-panels@2.1.9(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
+ /react-resizable-panels@2.1.7(react-dom@19.2.0)(react@19.2.0):
+ resolution: {integrity: sha512-JtT6gI+nURzhMYQYsx8DKkx6bSoOGFp7A3CwMrOb8y5jFHFyqwo9m68UhmXRw57fRVJksFn1TSlm3ywEQ9vMgA==}
+ peerDependencies:
+ react: ^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ react-dom: ^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
dependencies:
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
+ dev: false
- react-smooth@4.0.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
+ /react-smooth@4.0.4(react-dom@19.2.0)(react@19.2.0):
+ resolution: {integrity: sha512-gnGKTpYwqL0Iii09gHobNolvX4Kiq4PKx6eWBCYYix+8cdw+cGo3do906l1NBPKkSWx1DghC1dlWG9L2uGd61Q==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
dependencies:
fast-equals: 5.4.0
prop-types: 15.8.1
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
- react-transition-group: 4.4.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react-transition-group: 4.4.5(react-dom@19.2.0)(react@19.2.0)
+ dev: false
- react-style-singleton@2.2.3(@types/react@19.2.9)(react@19.2.0):
+ /react-style-singleton@2.2.3(@types/react@19.0.0)(react@19.2.0):
+ resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
+ '@types/react': 19.0.0
get-nonce: 1.0.1
react: 19.2.0
tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.2.9
+ dev: false
- react-transition-group@4.4.5(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
+ /react-transition-group@4.4.5(react-dom@19.2.0)(react@19.2.0):
+ resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
+ peerDependencies:
+ react: '>=16.6.0'
+ react-dom: '>=16.6.0'
dependencies:
'@babel/runtime': 7.28.6
dom-helpers: 5.2.1
@@ -3035,14 +2703,25 @@ snapshots:
prop-types: 15.8.1
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
+ dev: false
- react@19.2.0: {}
+ /react@19.2.0:
+ resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==}
+ engines: {node: '>=0.10.0'}
+ dev: false
- recharts-scale@0.4.5:
+ /recharts-scale@0.4.5:
+ resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
dependencies:
decimal.js-light: 2.5.1
+ dev: false
- recharts@2.15.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
+ /recharts@2.15.4(react-dom@19.2.0)(react@19.2.0):
+ resolution: {integrity: sha512-UT/q6fwS3c1dHbXv2uFgYJ9BMFHu3fwnd7AYZaEQhXuYQ4hgsxLvsUXzGdKeZrW5xopzDCvuA2N41WJ88I7zIw==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ react: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
dependencies:
clsx: 2.1.1
eventemitter3: 4.0.7
@@ -3050,19 +2729,32 @@ snapshots:
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
react-is: 18.3.1
- react-smooth: 4.0.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ react-smooth: 4.0.4(react-dom@19.2.0)(react@19.2.0)
recharts-scale: 0.4.5
tiny-invariant: 1.3.3
victory-vendor: 36.9.2
+ dev: false
- scheduler@0.27.0: {}
+ /scheduler@0.27.0:
+ resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
+ dev: false
- semver@7.7.3:
+ /semver@7.7.3:
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
+ engines: {node: '>=10'}
+ hasBin: true
+ requiresBuild: true
+ dev: false
optional: true
- server-only@0.0.1: {}
+ /server-only@0.0.1:
+ resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==}
+ dev: false
- sharp@0.34.5:
+ /sharp@0.34.5:
+ resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ requiresBuild: true
dependencies:
'@img/colour': 1.0.0
detect-libc: 2.1.2
@@ -3092,75 +2784,159 @@ snapshots:
'@img/sharp-win32-arm64': 0.34.5
'@img/sharp-win32-ia32': 0.34.5
'@img/sharp-win32-x64': 0.34.5
+ dev: false
optional: true
- sonner@1.7.4(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
+ /sonner@1.7.4(react-dom@19.2.0)(react@19.2.0):
+ resolution: {integrity: sha512-DIS8z4PfJRbIyfVFDVnK9rO3eYDtse4Omcm6bt0oEr5/jtLgysmjuBl1frJ9E/EQZrFmKx2A8m/s5s9CRXIzhw==}
+ peerDependencies:
+ react: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-rc
dependencies:
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
+ dev: false
- source-map-js@1.2.1: {}
+ /source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
+ engines: {node: '>=0.10.0'}
- styled-jsx@5.1.6(react@19.2.0):
+ /styled-jsx@5.1.6(react@19.2.0):
+ resolution: {integrity: sha512-qSVyDTeMotdvQYoHWLNGwRFJHC+i+ZvdBRYosOFgC+Wg1vx4frN2/RG/NA7SYqqvKNLf39P2LSRA2pu6n0XYZA==}
+ engines: {node: '>= 12.0.0'}
+ peerDependencies:
+ '@babel/core': '*'
+ babel-plugin-macros: '*'
+ react: '>= 16.8.0 || 17.x.x || ^18.0.0-0 || ^19.0.0-0'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ babel-plugin-macros:
+ optional: true
dependencies:
client-only: 0.0.1
react: 19.2.0
+ dev: false
- tailwind-merge@3.4.0: {}
+ /tailwind-merge@3.3.1:
+ resolution: {integrity: sha512-gBXpgUm/3rp1lMZZrM/w7D8GKqshif0zAymAhbCyIt8KMe+0v9DQ7cdYLR4FHH/cKpdTXb+A/tKKU3eolfsI+g==}
+ dev: false
- tailwindcss-animate@1.0.7(tailwindcss@4.1.18):
+ /tailwindcss-animate@1.0.7(tailwindcss@4.1.9):
+ resolution: {integrity: sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==}
+ peerDependencies:
+ tailwindcss: '>=3.0.0 || insiders'
dependencies:
- tailwindcss: 4.1.18
+ tailwindcss: 4.1.9
+ dev: false
- tailwindcss@4.1.18: {}
+ /tailwindcss@4.1.9:
+ resolution: {integrity: sha512-anBZRcvfNMsQdHB9XSGzAtIQWlhs49uK75jfkwrqjRUbjt4d7q9RE1wR1xWyfYZhLFnFX4ahWp88Au2lcEw5IQ==}
- tapable@2.3.0: {}
+ /tapable@2.3.0:
+ resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
+ engines: {node: '>=6'}
+ dev: true
- tiny-invariant@1.3.3: {}
+ /tar@7.5.6:
+ resolution: {integrity: sha512-xqUeu2JAIJpXyvskvU3uvQW8PAmHrtXp2KDuMJwQqW8Sqq0CaZBAQ+dKS3RBXVhU4wC5NjAdKrmh84241gO9cA==}
+ engines: {node: '>=18'}
+ dependencies:
+ '@isaacs/fs-minipass': 4.0.1
+ chownr: 3.0.0
+ minipass: 7.1.2
+ minizlib: 3.1.0
+ yallist: 5.0.0
+ dev: true
- tslib@2.8.1: {}
+ /tiny-invariant@1.3.3:
+ resolution: {integrity: sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==}
+ dev: false
- tw-animate-css@1.3.3: {}
+ /tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
+ dev: false
- typescript@5.9.3: {}
+ /tw-animate-css@1.3.3:
+ resolution: {integrity: sha512-tXE2TRWrskc4TU3RDd7T8n8Np/wCfoeH9gz22c7PzYqNPQ9FBGFbWWzwL0JyHcFp+jHozmF76tbHfPAx22ua2Q==}
+ dev: true
- undici-types@6.21.0: {}
+ /typescript@5.0.2:
+ resolution: {integrity: sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==}
+ engines: {node: '>=12.20'}
+ hasBin: true
+ dev: true
- update-browserslist-db@1.2.3(browserslist@4.28.1):
+ /undici-types@6.11.1:
+ resolution: {integrity: sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ==}
+ dev: true
+
+ /update-browserslist-db@1.2.3(browserslist@4.28.1):
+ resolution: {integrity: sha512-Js0m9cx+qOgDxo0eMiFGEueWztz+d4+M3rGlmKPT+T4IS/jP4ylw3Nwpu6cpTTP8R1MAC1kF4VbdLt3ARf209w==}
+ hasBin: true
+ peerDependencies:
+ browserslist: '>= 4.21.0'
dependencies:
browserslist: 4.28.1
escalade: 3.2.0
picocolors: 1.1.1
+ dev: false
- use-callback-ref@1.3.3(@types/react@19.2.9)(react@19.2.0):
+ /use-callback-ref@1.3.3(@types/react@19.0.0)(react@19.2.0):
+ resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
+ '@types/react': 19.0.0
react: 19.2.0
tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.2.9
+ dev: false
- use-sidecar@1.1.3(@types/react@19.2.9)(react@19.2.0):
+ /use-sidecar@1.1.3(@types/react@19.0.0)(react@19.2.0):
+ resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': '*'
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
dependencies:
+ '@types/react': 19.0.0
detect-node-es: 1.1.0
react: 19.2.0
tslib: 2.8.1
- optionalDependencies:
- '@types/react': 19.2.9
+ dev: false
- use-sync-external-store@1.6.0(react@19.2.0):
+ /use-sync-external-store@1.6.0(react@19.2.0):
+ resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
+ peerDependencies:
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
dependencies:
react: 19.2.0
+ dev: false
- vaul@1.1.2(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0):
+ /vaul@1.1.2(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0):
+ resolution: {integrity: sha512-ZFkClGpWyI2WUQjdLJ/BaGuV6AVQiJ3uELGk3OYtP+B6yCO7Cmn9vPFXVJkRaGkOJu3m8bQMgtyzNHixULceQA==}
+ peerDependencies:
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0.0 || ^19.0.0-rc
dependencies:
- '@radix-ui/react-dialog': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.9))(@types/react@19.2.9)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)
+ '@radix-ui/react-dialog': 1.1.4(@types/react-dom@19.0.0)(@types/react@19.0.0)(react-dom@19.2.0)(react@19.2.0)
react: 19.2.0
react-dom: 19.2.0(react@19.2.0)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
+ dev: false
- victory-vendor@36.9.2:
+ /victory-vendor@36.9.2:
+ resolution: {integrity: sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==}
dependencies:
'@types/d3-array': 3.2.2
'@types/d3-ease': 3.0.2
@@ -3176,5 +2952,13 @@ snapshots:
d3-shape: 3.2.0
d3-time: 3.1.0
d3-timer: 3.0.1
+ dev: false
- zod@3.25.76: {}
+ /yallist@5.0.0:
+ resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
+ engines: {node: '>=18'}
+ dev: true
+
+ /zod@3.25.76:
+ resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
+ dev: false
diff --git a/public/apple-icon.png b/public/apple-icon.png
index f9418b4..15e1b6e 100644
Binary files a/public/apple-icon.png and b/public/apple-icon.png differ
diff --git a/public/icon-dark-32x32.png b/public/icon-dark-32x32.png
index 12c825a..bf7695f 100644
Binary files a/public/icon-dark-32x32.png and b/public/icon-dark-32x32.png differ
diff --git a/public/icon-light-32x32.png b/public/icon-light-32x32.png
index a3462cc..4de467c 100644
Binary files a/public/icon-light-32x32.png and b/public/icon-light-32x32.png differ
diff --git a/public/icon.svg b/public/icon.svg
index 5c11e6c..df434c2 100644
--- a/public/icon.svg
+++ b/public/icon.svg
@@ -1,26 +1,9 @@
-
diff --git a/public/logo.svg b/public/logo.svg
new file mode 100644
index 0000000..3bc72e1
--- /dev/null
+++ b/public/logo.svg
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/placeholder-logo.svg b/public/placeholder-logo.svg
index b1695aa..3bc72e1 100644
--- a/public/placeholder-logo.svg
+++ b/public/placeholder-logo.svg
@@ -1 +1,19 @@
-
\ No newline at end of file
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+