diff --git a/.changeset/three-colts-matter.md b/.changeset/three-colts-matter.md
new file mode 100644
index 00000000..301b1168
--- /dev/null
+++ b/.changeset/three-colts-matter.md
@@ -0,0 +1,7 @@
+---
+"@genseki/ui": patch
+"@genseki/next": patch
+"@genseki/react": patch
+---
+
+feat: bump version of `nuqs`.
diff --git a/examples/erp/next.config.ts b/examples/erp/next.config.ts
index 039fca7b..ede34561 100644
--- a/examples/erp/next.config.ts
+++ b/examples/erp/next.config.ts
@@ -2,9 +2,6 @@ import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
transpilePackages: ['@genseki/react', '@genseki/next'],
- eslint: {
- ignoreDuringBuilds: true,
- },
}
export default nextConfig
diff --git a/examples/erp/package.json b/examples/erp/package.json
index 97ed2443..00022771 100644
--- a/examples/erp/package.json
+++ b/examples/erp/package.json
@@ -35,12 +35,13 @@
"@tiptap/extension-text-style": "^2.26.3",
"@tiptap/extension-underline": "^2.26.3",
"@tiptap/starter-kit": "^2.26.3",
- "next": "15.2.2",
+ "next": "16.0.7",
"next-themes": "^0.4.6",
+ "nuqs": "^2.8.3",
"postcss": "^8.5.3",
"prisma": "^6.10.1",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "react": "19.2.1",
+ "react-dom": "19.2.1",
"react-hook-form": "^7.61.1",
"tailwindcss": "^4.1.7",
"zod": "4.0.11"
diff --git a/examples/erp/src/app/(admin)/api/[[...segments]]/route.ts b/examples/erp/src/app/(admin)/api/[[...segments]]/route.ts
index 34a56eb6..9a30668e 100644
--- a/examples/erp/src/app/(admin)/api/[[...segments]]/route.ts
+++ b/examples/erp/src/app/(admin)/api/[[...segments]]/route.ts
@@ -4,5 +4,6 @@ import { nextjsApp } from '~/genseki/config'
const { GET, POST, PUT, PATCH, DELETE } = createApiResourceRouter(nextjsApp, {
pathPrefix: '/api',
-})
+}) as any
+
export { DELETE, GET, PATCH, POST, PUT }
diff --git a/examples/erp/src/components/providers.tsx b/examples/erp/src/components/providers.tsx
index 03eafd8d..a8f7dea6 100644
--- a/examples/erp/src/components/providers.tsx
+++ b/examples/erp/src/components/providers.tsx
@@ -1,9 +1,9 @@
'use client'
-
import type { PropsWithChildren } from 'react'
import { isServer, QueryClient, QueryClientProvider } from '@tanstack/react-query'
import { ThemeProvider as NextThemesProvider } from 'next-themes'
+import { NuqsAdapter } from 'nuqs/adapters/next/app'
function makeQueryClient() {
return new QueryClient({
@@ -36,16 +36,18 @@ function getQueryClient() {
export function Providers(props: PropsWithChildren) {
const queryClient = getQueryClient()
return (
-
-
- {props.children}
-
-
+
+
+
+ {props.children}
+
+
+
)
}
diff --git a/examples/ui-playground/next.config.ts b/examples/ui-playground/next.config.ts
index 039fca7b..ede34561 100644
--- a/examples/ui-playground/next.config.ts
+++ b/examples/ui-playground/next.config.ts
@@ -2,9 +2,6 @@ import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
transpilePackages: ['@genseki/react', '@genseki/next'],
- eslint: {
- ignoreDuringBuilds: true,
- },
}
export default nextConfig
diff --git a/examples/ui-playground/package.json b/examples/ui-playground/package.json
index a9d3c6a2..0f52f9da 100644
--- a/examples/ui-playground/package.json
+++ b/examples/ui-playground/package.json
@@ -30,7 +30,7 @@
"@tiptap/starter-kit": "^2.26.3",
"color": "^5.0.2",
"date-fns": "^4.1.0",
- "next": "15.2.2",
+ "next": "16.0.7",
"next-themes": "^0.4.6",
"postcss": "^8.5.3",
"react": "19.1.0",
diff --git a/legacies/next/package.json b/legacies/next/package.json
index 7f1e3e29..47a331e3 100644
--- a/legacies/next/package.json
+++ b/legacies/next/package.json
@@ -32,8 +32,8 @@
"dependencies": {
"@genseki/react": "workspace:^",
"cookie-es": "^2.0.0",
- "next": "^15.2.2",
- "nuqs": "^2.4.3",
+ "next": "^16.0.7",
+ "nuqs": "^2.8.3",
"radix3": "^1.1.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
diff --git a/legacies/react/package.json b/legacies/react/package.json
index c3c82b1e..a2556558 100644
--- a/legacies/react/package.json
+++ b/legacies/react/package.json
@@ -99,11 +99,11 @@
"defu": "^6.1.4",
"input-otp": "^1.4.2",
"motion": "^12.7.4",
- "nuqs": "^2.4.3",
+ "nuqs": "^2.8.3",
"radix3": "^1.1.2",
- "react": "^19.1.0",
+ "react": "^19.2.1",
"react-aria-components": "^1.10.1",
- "react-dom": "^19.1.0",
+ "react-dom": "^19.2.1",
"react-hook-form": "^7.61.1",
"remeda": "^2.21.2",
"sonner": "^2.0.3",
diff --git a/legacies/react/src/react/components/primitives/tanstack-table.tsx b/legacies/react/src/react/components/primitives/tanstack-table.tsx
index 0952dae2..2fc6c0d9 100644
--- a/legacies/react/src/react/components/primitives/tanstack-table.tsx
+++ b/legacies/react/src/react/components/primitives/tanstack-table.tsx
@@ -267,7 +267,8 @@ export const TableEmpty = (props: {
}
declare module '@tanstack/react-table' {
- interface ColumnMeta {
+ // Keep generics identical to upstream to satisfy module augmentation rules
+ interface ColumnMeta {
tdClassName?: string
thClassName?: string
}
diff --git a/legacies/react/src/react/views/collections/hooks/use-collection-form.ts b/legacies/react/src/react/views/collections/hooks/use-collection-form.ts
index f22bf59d..d8339d8a 100644
--- a/legacies/react/src/react/views/collections/hooks/use-collection-form.ts
+++ b/legacies/react/src/react/views/collections/hooks/use-collection-form.ts
@@ -23,7 +23,7 @@ export const useCollectionForm = <
return fieldsShapeToZodObject(fields.shape)
}, [])
return useForm({
- resolver: standardSchemaResolver(schema),
+ resolver: standardSchemaResolver(schema as any),
defaultValues:
props?.defaultValues ??
(getDefaultValueFromFieldsClient(fields, storageAdapter) as DefaultValues),
diff --git a/legacies/react/src/react/views/collections/update.client.tsx b/legacies/react/src/react/views/collections/update.client.tsx
index ebe58fc4..53c182fc 100644
--- a/legacies/react/src/react/views/collections/update.client.tsx
+++ b/legacies/react/src/react/views/collections/update.client.tsx
@@ -27,7 +27,7 @@ export function UpdateClientView(props: UpdateClientViewProps) {
}, [])
const form = useForm({
- resolver: standardSchemaResolver(schema),
+ resolver: standardSchemaResolver(schema as any),
defaultValues: props.defaultValues,
})
diff --git a/packages/ui/package.json b/packages/ui/package.json
index a53534c1..43e18ad9 100644
--- a/packages/ui/package.json
+++ b/packages/ui/package.json
@@ -61,8 +61,8 @@
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"input-otp": "^1.4.2",
- "nuqs": "^2.4.3",
- "react": "^19.1.0",
+ "nuqs": "^2.8.3",
+ "react": "^19.2.1",
"react-day-picker": "^9.11.1",
"react-dom": "^19.1.0",
"react-dropzone": "^14.3.8",
@@ -83,7 +83,6 @@
},
"peerDependencies": {
"color": "^5.0.2",
- "react": "^19.1.0",
"react-day-picker": "^9.11.1",
"react-dom": "^19.1.0",
"react-dropzone": "^14.3.8"
diff --git a/packages/ui/src/components/primitives/tanstack-table.tsx b/packages/ui/src/components/primitives/tanstack-table.tsx
index 69b688e7..7b4207fc 100644
--- a/packages/ui/src/components/primitives/tanstack-table.tsx
+++ b/packages/ui/src/components/primitives/tanstack-table.tsx
@@ -4,11 +4,11 @@ import React, { type CSSProperties, useRef } from 'react'
import { CircleNotchIcon, WarningCircleIcon, WarningIcon } from '@phosphor-icons/react'
import { CaretDownIcon, CaretUpDownIcon, CaretUpIcon } from '@phosphor-icons/react/dist/ssr'
-import type { RowData } from '@tanstack/react-table'
import {
type Column,
flexRender,
type Row,
+ type RowData,
type SortDirection,
type Table as TanstackTableCore,
} from '@tanstack/react-table'
@@ -267,7 +267,8 @@ export const TableEmpty = (props: {
}
declare module '@tanstack/react-table' {
- interface ColumnMeta {
+ // Keep generics identical to upstream to satisfy module augmentation rules
+ interface ColumnMeta {
tdClassName?: string
thClassName?: string
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index cbbf9ead..79e1df1e 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -52,10 +52,10 @@ importers:
version: link:../../legacies/rest
'@hookform/resolvers':
specifier: ^5.2.0
- version: 5.2.0(react-hook-form@7.61.1(react@19.1.0))
+ version: 5.2.0(react-hook-form@7.61.1(react@19.2.1))
'@phosphor-icons/react':
specifier: ^2.1.8
- version: 2.1.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.1.8(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@prisma/client':
specifier: 6.10.1
version: 6.10.1(prisma@6.10.1(typescript@5.8.2))(typescript@5.8.2)
@@ -64,10 +64,10 @@ importers:
version: 4.1.7
'@tanstack/react-query':
specifier: ^5.71.5
- version: 5.76.1(react@19.1.0)
+ version: 5.76.1(react@19.2.1)
'@tanstack/react-table':
specifier: ^8.21.3
- version: 8.21.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 8.21.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@tiptap/extension-color':
specifier: ^2.26.3
version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/extension-text-style@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3)))
@@ -90,11 +90,14 @@ importers:
specifier: ^2.26.3
version: 2.26.3
next:
- specifier: 15.2.2
- version: 15.2.2(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 16.0.7
+ version: 16.0.7(@babel/core@7.27.1)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
next-themes:
specifier: ^0.4.6
- version: 0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 0.4.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ nuqs:
+ specifier: ^2.8.3
+ version: 2.8.3(next@16.0.7(@babel/core@7.27.1)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
postcss:
specifier: ^8.5.3
version: 8.5.3
@@ -102,14 +105,14 @@ importers:
specifier: ^6.10.1
version: 6.10.1(typescript@5.8.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.1
+ version: 19.2.1
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.1
+ version: 19.2.1(react@19.2.1)
react-hook-form:
specifier: ^7.61.1
- version: 7.61.1(react@19.1.0)
+ version: 7.61.1(react@19.2.1)
tailwindcss:
specifier: ^4.1.7
version: 4.1.7
@@ -202,8 +205,8 @@ importers:
specifier: ^4.1.0
version: 4.1.0
next:
- specifier: 15.2.2
- version: 15.2.2(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 16.0.7
+ version: 16.0.7(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
next-themes:
specifier: ^0.4.6
version: 0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
@@ -317,11 +320,11 @@ importers:
specifier: ^2.0.0
version: 2.0.0
next:
- specifier: ^15.2.2
- version: 15.2.2(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: ^16.0.7
+ version: 16.0.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
nuqs:
- specifier: ^2.4.3
- version: 2.4.3(next@15.2.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ specifier: ^2.8.3
+ version: 2.8.3(next@16.0.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
radix3:
specifier: ^1.1.2
version: 1.1.2
@@ -358,7 +361,7 @@ importers:
dependencies:
'@tiptap/react':
specifier: ^2.26.3
- version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@tiptap/starter-kit':
specifier: ^2.26.3
version: 2.26.3
@@ -438,97 +441,97 @@ importers:
version: 3.826.0
'@dnd-kit/core':
specifier: ^6.3.1
- version: 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@dnd-kit/sortable':
specifier: ^10.0.0
- version: 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ version: 10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
'@dnd-kit/utilities':
specifier: ^3.2.2
- version: 3.2.2(react@19.1.0)
+ version: 3.2.2(react@19.2.1)
'@hookform/resolvers':
specifier: ^5.0.1
- version: 5.2.0(react-hook-form@7.61.1(react@19.1.0))
+ version: 5.2.2(react-hook-form@7.61.1(react@19.2.1))
'@intentui/icons':
specifier: ^1.10.31
- version: 1.11.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.11.0(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@internationalized/date':
specifier: ^3.8.2
version: 3.8.2
'@phosphor-icons/react':
specifier: ^2.1.8
- version: 2.1.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.1.8(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-checkbox':
specifier: ^1.3.3
- version: 1.3.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.3.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-collapsible':
specifier: ^1.1.12
- version: 1.1.12(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.12(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-dialog':
specifier: ^1.1.15
- version: 1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-dropdown-menu':
specifier: ^2.1.16
- version: 2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-label':
specifier: ^2.1.7
- version: 2.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-popover':
specifier: ^1.1.15
- version: 1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-progress':
specifier: ^1.1.7
- version: 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-select':
specifier: ^2.2.6
- version: 2.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-separator':
specifier: ^1.1.7
- version: 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-slider':
specifier: ^1.3.6
- version: 1.3.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.3.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-slot':
specifier: ^1.2.0
- version: 1.2.3(@types/react@19.1.6)(react@19.1.0)
+ version: 1.2.3(@types/react@19.1.6)(react@19.2.1)
'@radix-ui/react-switch':
specifier: ^1.2.6
- version: 1.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-tabs':
specifier: ^1.1.13
- version: 1.1.13(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.13(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-toggle':
specifier: ^1.1.10
- version: 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-toggle-group':
specifier: ^1.1.11
- version: 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-tooltip':
specifier: ^1.2.8
- version: 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@radix-ui/react-use-controllable-state':
specifier: ^1.2.2
- version: 1.2.2(@types/react@19.1.6)(react@19.1.0)
+ version: 1.2.2(@types/react@19.1.6)(react@19.2.1)
'@react-aria/i18n':
specifier: ^3.12.9
- version: 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@react-aria/visually-hidden':
specifier: ^3.8.23
- version: 3.8.25(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 3.8.25(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@react-stately/calendar':
specifier: ^3.8.2
- version: 3.8.2(react@19.1.0)
+ version: 3.8.2(react@19.2.1)
'@react-stately/color':
specifier: ^3.8.6
- version: 3.8.6(react@19.1.0)
+ version: 3.8.6(react@19.2.1)
'@react-types/shared':
specifier: ^3.30.0
- version: 3.30.0(react@19.1.0)
+ version: 3.30.0(react@19.2.1)
'@tanstack/react-query':
specifier: ^5.71.5
- version: 5.76.1(react@19.1.0)
+ version: 5.76.1(react@19.2.1)
'@tanstack/react-table':
specifier: ^8.21.3
- version: 8.21.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 8.21.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@tiptap/core':
specifier: ^2.26.3
version: 2.26.3(@tiptap/pm@2.26.3)
@@ -561,7 +564,7 @@ importers:
version: 2.26.3
'@tiptap/react':
specifier: ^2.26.3
- version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@tiptap/starter-kit':
specifier: ^2.26.3
version: 2.26.3
@@ -576,7 +579,7 @@ importers:
version: 2.1.1
cmdk:
specifier: ^1.1.1
- version: 1.1.1(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.1(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
cookie-es:
specifier: ^2.0.0
version: 2.0.0
@@ -588,34 +591,34 @@ importers:
version: 6.1.4
input-otp:
specifier: ^1.4.2
- version: 1.4.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.4.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
motion:
specifier: ^12.7.4
- version: 12.11.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 12.11.4(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
nuqs:
- specifier: ^2.4.3
- version: 2.4.3(next@15.2.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ specifier: ^2.8.3
+ version: 2.8.3(next@16.0.7(@babel/core@7.27.1)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)
radix3:
specifier: ^1.1.2
version: 1.1.2
react:
- specifier: ^19.1.0
- version: 19.1.0
+ specifier: ^19.2.1
+ version: 19.2.1
react-aria-components:
specifier: ^1.10.1
- version: 1.10.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.10.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
react-dom:
- specifier: ^19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: ^19.2.1
+ version: 19.2.1(react@19.2.1)
react-hook-form:
specifier: ^7.61.1
- version: 7.61.1(react@19.1.0)
+ version: 7.61.1(react@19.2.1)
remeda:
specifier: ^2.21.2
version: 2.21.6
sonner:
specifier: ^2.0.3
- version: 2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.0.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
tailwind-merge:
specifier: ^3.0.2
version: 3.3.0
@@ -652,10 +655,10 @@ importers:
version: 5.0.2
react-day-picker:
specifier: ^9.11.1
- version: 9.11.1(react@19.1.0)
+ version: 9.11.1(react@19.2.1)
react-dropzone:
specifier: ^14.3.8
- version: 14.3.8(react@19.1.0)
+ version: 14.3.8(react@19.2.1)
tsup:
specifier: ^8.5.0
version: 8.5.0(jiti@2.4.2)(postcss@8.5.3)(tsx@4.20.3)(typescript@5.8.2)
@@ -673,7 +676,7 @@ importers:
dependencies:
'@tanstack/react-query':
specifier: ^5.71.5
- version: 5.76.1(react@19.1.0)
+ version: 5.76.1(react@19.2.1)
devDependencies:
'@genseki/react':
specifier: workspace:^
@@ -722,64 +725,64 @@ importers:
dependencies:
'@phosphor-icons/react':
specifier: ^2.1.8
- version: 2.1.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.1.8(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-checkbox':
specifier: ^1.3.3
- version: 1.3.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.3.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-collapsible':
specifier: ^1.1.12
- version: 1.1.12(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.12(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-dialog':
specifier: ^1.1.15
- version: 1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-dropdown-menu':
specifier: ^2.1.16
- version: 2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-label':
specifier: ^2.1.7
- version: 2.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-popover':
specifier: ^1.1.15
- version: 1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-progress':
specifier: ^1.1.7
- version: 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-radio-group':
specifier: ^1.3.8
- version: 1.3.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.3.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-select':
specifier: ^2.2.6
- version: 2.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-separator':
specifier: ^1.1.7
- version: 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-slider':
specifier: ^1.3.6
- version: 1.3.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.3.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-slot':
specifier: ^1.2.0
- version: 1.2.3(@types/react@19.1.6)(react@19.1.0)
+ version: 1.2.3(@types/react@19.1.6)(react@19.2.1)
'@radix-ui/react-switch':
specifier: ^1.2.6
- version: 1.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-tabs':
specifier: ^1.1.13
- version: 1.1.13(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.13(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-toggle':
specifier: ^1.1.10
- version: 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-toggle-group':
specifier: ^1.1.11
- version: 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-tooltip':
specifier: ^1.2.8
- version: 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
'@radix-ui/react-use-controllable-state':
specifier: ^1.2.2
- version: 1.2.2(@types/react@19.1.6)(react@19.1.0)
+ version: 1.2.2(@types/react@19.1.6)(react@19.2.1)
'@tanstack/react-table':
specifier: ^8.21.3
- version: 8.21.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 8.21.3(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
class-variance-authority:
specifier: ^0.7.1
version: 0.7.1
@@ -788,28 +791,28 @@ importers:
version: 2.1.1
cmdk:
specifier: ^1.1.1
- version: 1.1.1(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.1(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
input-otp:
specifier: ^1.4.2
- version: 1.4.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.4.2(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
nuqs:
- specifier: ^2.4.3
- version: 2.4.3(next@15.2.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ specifier: ^2.8.3
+ version: 2.8.3(next@16.0.7(@babel/core@7.27.1)(react-dom@19.1.0(react@19.2.1))(react@19.2.1))(react@19.2.1)
react:
- specifier: ^19.1.0
- version: 19.1.0
+ specifier: ^19.2.1
+ version: 19.2.1
react-day-picker:
specifier: ^9.11.1
- version: 9.11.1(react@19.1.0)
+ version: 9.11.1(react@19.2.1)
react-dom:
specifier: ^19.1.0
- version: 19.1.0(react@19.1.0)
+ version: 19.1.0(react@19.2.1)
react-dropzone:
specifier: ^14.3.8
- version: 14.3.8(react@19.1.0)
+ version: 14.3.8(react@19.2.1)
sonner:
specifier: ^2.0.3
- version: 2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.0.3(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
tailwind-merge:
specifier: ^3.0.2
version: 3.3.0
@@ -1183,8 +1186,8 @@ packages:
peerDependencies:
react: '>=16.8.0'
- '@emnapi/runtime@1.4.3':
- resolution: {integrity: sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==}
+ '@emnapi/runtime@1.7.1':
+ resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==}
'@esbuild/aix-ppc64@0.25.4':
resolution: {integrity: sha512-1VCICWypeQKhVbE9oW/sJaAmjLxhVqacdkvPLEjwlttjfwENRSClS8EjBz0KzRyFSCPDIkuXW34Je/vk7zdB7Q==}
@@ -1409,6 +1412,11 @@ packages:
peerDependencies:
react-hook-form: ^7.55.0
+ '@hookform/resolvers@5.2.2':
+ resolution: {integrity: sha512-A/IxlMLShx3KjV/HeTcTfaMxdwy690+L/ZADoeaTltLx+CVuzkeVIPuybK3jrRfw7YZnmdKsVVHAlEPIAEUNlA==}
+ peerDependencies:
+ react-hook-form: ^7.55.0
+
'@humanfs/core@0.19.1':
resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
engines: {node: '>=18.18.0'}
@@ -1429,107 +1437,139 @@ packages:
resolution: {integrity: sha512-bV0Tgo9K4hfPCek+aMAn81RppFKv2ySDQeMoSZuvTASywNTnVJCArCZE2FWqpvIatKu7VMRLWlR1EazvVhDyhQ==}
engines: {node: '>=18.18'}
- '@img/sharp-darwin-arm64@0.33.5':
- resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
+ '@img/colour@1.0.0':
+ resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==}
+ engines: {node: '>=18'}
+
+ '@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]
- '@img/sharp-darwin-x64@0.33.5':
- resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
+ '@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]
- '@img/sharp-libvips-darwin-arm64@1.0.4':
- resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
+ '@img/sharp-libvips-darwin-arm64@1.2.4':
+ resolution: {integrity: sha512-zqjjo7RatFfFoP0MkQ51jfuFZBnVE2pRiaydKJ1G/rHZvnsrHAOcQALIi9sA5co5xenQdTugCvtb1cuf78Vf4g==}
cpu: [arm64]
os: [darwin]
- '@img/sharp-libvips-darwin-x64@1.0.4':
- resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
+ '@img/sharp-libvips-darwin-x64@1.2.4':
+ resolution: {integrity: sha512-1IOd5xfVhlGwX+zXv2N93k0yMONvUlANylbJw1eTah8K/Jtpi15KC+WSiaX/nBmbm2HxRM1gZ0nSdjSsrZbGKg==}
cpu: [x64]
os: [darwin]
- '@img/sharp-libvips-linux-arm64@1.0.4':
- resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
+ '@img/sharp-libvips-linux-arm64@1.2.4':
+ resolution: {integrity: sha512-excjX8DfsIcJ10x1Kzr4RcWe1edC9PquDRRPx3YVCvQv+U5p7Yin2s32ftzikXojb1PIFc/9Mt28/y+iRklkrw==}
cpu: [arm64]
os: [linux]
- '@img/sharp-libvips-linux-arm@1.0.5':
- resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
+ '@img/sharp-libvips-linux-arm@1.2.4':
+ resolution: {integrity: sha512-bFI7xcKFELdiNCVov8e44Ia4u2byA+l3XtsAj+Q8tfCwO6BQ8iDojYdvoPMqsKDkuoOo+X6HZA0s0q11ANMQ8A==}
cpu: [arm]
os: [linux]
- '@img/sharp-libvips-linux-s390x@1.0.4':
- resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
+ '@img/sharp-libvips-linux-ppc64@1.2.4':
+ resolution: {integrity: sha512-FMuvGijLDYG6lW+b/UvyilUWu5Ayu+3r2d1S8notiGCIyYU/76eig1UfMmkZ7vwgOrzKzlQbFSuQfgm7GYUPpA==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-riscv64@1.2.4':
+ resolution: {integrity: sha512-oVDbcR4zUC0ce82teubSm+x6ETixtKZBh/qbREIOcI3cULzDyb18Sr/Wcyx7NRQeQzOiHTNbZFF1UwPS2scyGA==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-s390x@1.2.4':
+ resolution: {integrity: sha512-qmp9VrzgPgMoGZyPvrQHqk02uyjA0/QrTO26Tqk6l4ZV0MPWIW6LTkqOIov+J1yEu7MbFQaDpwdwJKhbJvuRxQ==}
cpu: [s390x]
os: [linux]
- '@img/sharp-libvips-linux-x64@1.0.4':
- resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
+ '@img/sharp-libvips-linux-x64@1.2.4':
+ resolution: {integrity: sha512-tJxiiLsmHc9Ax1bz3oaOYBURTXGIRDODBqhveVHonrHJ9/+k89qbLl0bcJns+e4t4rvaNBxaEZsFtSfAdquPrw==}
cpu: [x64]
os: [linux]
- '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
- resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
+ '@img/sharp-libvips-linuxmusl-arm64@1.2.4':
+ resolution: {integrity: sha512-FVQHuwx1IIuNow9QAbYUzJ+En8KcVm9Lk5+uGUQJHaZmMECZmOlix9HnH7n1TRkXMS0pGxIJokIVB9SuqZGGXw==}
cpu: [arm64]
os: [linux]
- '@img/sharp-libvips-linuxmusl-x64@1.0.4':
- resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
+ '@img/sharp-libvips-linuxmusl-x64@1.2.4':
+ resolution: {integrity: sha512-+LpyBk7L44ZIXwz/VYfglaX/okxezESc6UxDSoyo2Ks6Jxc4Y7sGjpgU9s4PMgqgjj1gZCylTieNamqA1MF7Dg==}
cpu: [x64]
os: [linux]
- '@img/sharp-linux-arm64@0.33.5':
- resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
+ '@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]
- '@img/sharp-linux-arm@0.33.5':
- resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
+ '@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]
- '@img/sharp-linux-s390x@0.33.5':
- resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
+ '@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]
+
+ '@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]
+
+ '@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]
- '@img/sharp-linux-x64@0.33.5':
- resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
+ '@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]
- '@img/sharp-linuxmusl-arm64@0.33.5':
- resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
+ '@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]
- '@img/sharp-linuxmusl-x64@0.33.5':
- resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
+ '@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]
- '@img/sharp-wasm32@0.33.5':
- resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
+ '@img/sharp-wasm32@0.34.5':
+ resolution: {integrity: sha512-OdWTEiVkY2PHwqkbBI8frFxQQFekHaSSkUIJkwzclWZe64O1X4UlUjqqqLaPbUpMOQk6FBu/HtlGXNblIs0huw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [wasm32]
- '@img/sharp-win32-ia32@0.33.5':
- resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
+ '@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]
+
+ '@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]
- '@img/sharp-win32-x64@0.33.5':
- resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
+ '@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]
@@ -1588,56 +1628,56 @@ packages:
resolution: {integrity: sha512-rmOWVRUbUJD7iSvJugjUbFZshTAuJ48MXoZ80Osx1GM0K/H1w7rSEvmw8m6vdWxNASgtaHIhAgre4H/E9GJiYQ==}
engines: {node: '>=18'}
- '@next/env@15.2.2':
- resolution: {integrity: sha512-yWgopCfA9XDR8ZH3taB5nRKtKJ1Q5fYsTOuYkzIIoS8TJ0UAUKAGF73JnGszbjk2ufAQDj6mDdgsJAFx5CLtYQ==}
+ '@next/env@16.0.7':
+ resolution: {integrity: sha512-gpaNgUh5nftFKRkRQGnVi5dpcYSKGcZZkQffZ172OrG/XkrnS7UBTQ648YY+8ME92cC4IojpI2LqTC8sTDhAaw==}
'@next/eslint-plugin-next@15.3.2':
resolution: {integrity: sha512-ijVRTXBgnHT33aWnDtmlG+LJD+5vhc9AKTJPquGG5NKXjpKNjc62woIhFtrAcWdBobt8kqjCoaJ0q6sDQoX7aQ==}
- '@next/swc-darwin-arm64@15.2.2':
- resolution: {integrity: sha512-HNBRnz+bkZ+KfyOExpUxTMR0Ow8nkkcE6IlsdEa9W/rI7gefud19+Sn1xYKwB9pdCdxIP1lPru/ZfjfA+iT8pw==}
+ '@next/swc-darwin-arm64@16.0.7':
+ resolution: {integrity: sha512-LlDtCYOEj/rfSnEn/Idi+j1QKHxY9BJFmxx7108A6D8K0SB+bNgfYQATPk/4LqOl4C0Wo3LACg2ie6s7xqMpJg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-x64@15.2.2':
- resolution: {integrity: sha512-mJOUwp7al63tDpLpEFpKwwg5jwvtL1lhRW2fI1Aog0nYCPAhxbJsaZKdoVyPZCy8MYf/iQVNDuk/+i29iLCzIA==}
+ '@next/swc-darwin-x64@16.0.7':
+ resolution: {integrity: sha512-rtZ7BhnVvO1ICf3QzfW9H3aPz7GhBrnSIMZyr4Qy6boXF0b5E3QLs+cvJmg3PsTCG2M1PBoC+DANUi4wCOKXpA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@next/swc-linux-arm64-gnu@15.2.2':
- resolution: {integrity: sha512-5ZZ0Zwy3SgMr7MfWtRE7cQWVssfOvxYfD9O7XHM7KM4nrf5EOeqwq67ZXDgo86LVmffgsu5tPO57EeFKRnrfSQ==}
+ '@next/swc-linux-arm64-gnu@16.0.7':
+ resolution: {integrity: sha512-mloD5WcPIeIeeZqAIP5c2kdaTa6StwP4/2EGy1mUw8HiexSHGK/jcM7lFuS3u3i2zn+xH9+wXJs6njO7VrAqww==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@15.2.2':
- resolution: {integrity: sha512-cgKWBuFMLlJ4TWcFHl1KOaVVUAF8vy4qEvX5KsNd0Yj5mhu989QFCq1WjuaEbv/tO1ZpsQI6h/0YR8bLwEi+nA==}
+ '@next/swc-linux-arm64-musl@16.0.7':
+ resolution: {integrity: sha512-+ksWNrZrthisXuo9gd1XnjHRowCbMtl/YgMpbRvFeDEqEBd523YHPWpBuDjomod88U8Xliw5DHhekBC3EOOd9g==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@next/swc-linux-x64-gnu@15.2.2':
- resolution: {integrity: sha512-c3kWSOSsVL8rcNBBfOq1+/j2PKs2nsMwJUV4icUxRgGBwUOfppeh7YhN5s79enBQFU+8xRgVatFkhHU1QW7yUA==}
+ '@next/swc-linux-x64-gnu@16.0.7':
+ resolution: {integrity: sha512-4WtJU5cRDxpEE44Ana2Xro1284hnyVpBb62lIpU5k85D8xXxatT+rXxBgPkc7C1XwkZMWpK5rXLXTh9PFipWsA==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@15.2.2':
- resolution: {integrity: sha512-PXTW9PLTxdNlVYgPJ0equojcq1kNu5NtwcNjRjHAB+/sdoKZ+X8FBu70fdJFadkxFIGekQTyRvPMFF+SOJaQjw==}
+ '@next/swc-linux-x64-musl@16.0.7':
+ resolution: {integrity: sha512-HYlhqIP6kBPXalW2dbMTSuB4+8fe+j9juyxwfMwCe9kQPPeiyFn7NMjNfoFOfJ2eXkeQsoUGXg+O2SE3m4Qg2w==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@next/swc-win32-arm64-msvc@15.2.2':
- resolution: {integrity: sha512-nG644Es5llSGEcTaXhnGWR/aThM/hIaz0jx4MDg4gWC8GfTCp8eDBWZ77CVuv2ha/uL9Ce+nPTfYkSLG67/sHg==}
+ '@next/swc-win32-arm64-msvc@16.0.7':
+ resolution: {integrity: sha512-EviG+43iOoBRZg9deGauXExjRphhuYmIOJ12b9sAPy0eQ6iwcPxfED2asb/s2/yiLYOdm37kPaiZu8uXSYPs0Q==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@next/swc-win32-x64-msvc@15.2.2':
- resolution: {integrity: sha512-52nWy65S/R6/kejz3jpvHAjZDPKIbEQu4x9jDBzmB9jJfuOy5rspjKu4u77+fI4M/WzLXrrQd57hlFGzz1ubcQ==}
+ '@next/swc-win32-x64-msvc@16.0.7':
+ resolution: {integrity: sha512-gniPjy55zp5Eg0896qSrf3yB1dw4F/3s8VK1ephdsZZ129j2n6e1WqCbE2YgcKhW9hPB9TVZENugquWJD5x0ug==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
@@ -3098,12 +3138,12 @@ packages:
resolution: {integrity: sha512-4QvC49HTteI1gfemu0I1syWovJgPvGn7CVUoN9ZFkdvr/cCFkrEL7qNCdx/2eICqDWEGnnr68oMdSIPCLAriSQ==}
engines: {node: '>=18.0.0'}
+ '@standard-schema/spec@1.0.0':
+ resolution: {integrity: sha512-m2bOd0f2RT9k8QJx1JN85cZYyH1RqFBdlwtkSlf4tBDYLCiiZnv1fIIwacK6cqwXavOydf0NPToMQgpKq+dVlA==}
+
'@standard-schema/utils@0.3.0':
resolution: {integrity: sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==}
- '@swc/counter@0.1.3':
- resolution: {integrity: sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==}
-
'@swc/helpers@0.5.15':
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
@@ -3665,10 +3705,6 @@ packages:
peerDependencies:
esbuild: '>=0.18'
- busboy@1.6.0:
- resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
- engines: {node: '>=10.16.0'}
-
bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
@@ -3754,17 +3790,10 @@ packages:
resolution: {integrity: sha512-9vEt7gE16EW7Eu7pvZnR0abW9z6ufzhXxGXZEVU9IqPdlsUiMwJeJfRtq0zePUmnbHGT9zajca7mX8zgoayo4A==}
engines: {node: '>=12.20'}
- color-string@1.9.1:
- resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
-
color-string@2.1.2:
resolution: {integrity: sha512-RxmjYxbWemV9gKu4zPgiZagUxbH3RQpEIO77XoSSX0ivgABDZ+h8Zuash/EMFLTI4N9QgFPOJ6JQpPZKFxa+dA==}
engines: {node: '>=18'}
- color@4.2.3:
- resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
- engines: {node: '>=12.5.0'}
-
color@5.0.2:
resolution: {integrity: sha512-e2hz5BzbUPcYlIRHo8ieAhYgoajrJr+hWoceg6E345TPsATMUKqDgzt8fSXZJJbxfpiPzkWyphz8yn8At7q3fA==}
engines: {node: '>=18'}
@@ -3890,6 +3919,10 @@ packages:
resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
engines: {node: '>=8'}
+ detect-libc@2.1.2:
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
+ engines: {node: '>=8'}
+
detect-node-es@1.1.0:
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
@@ -4415,9 +4448,6 @@ packages:
resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
engines: {node: '>= 0.4'}
- is-arrayish@0.3.2:
- resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
-
is-async-function@2.1.1:
resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
engines: {node: '>= 0.4'}
@@ -4754,9 +4784,6 @@ packages:
resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==}
engines: {node: '>= 18'}
- mitt@3.0.1:
- resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
-
mkdirp@3.0.1:
resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
engines: {node: '>=10'}
@@ -4817,13 +4844,13 @@ packages:
react: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
react-dom: ^16.8 || ^17 || ^18 || ^19 || ^19.0.0-rc
- next@15.2.2:
- resolution: {integrity: sha512-dgp8Kcx5XZRjMw2KNwBtUzhngRaURPioxoNIVl5BOyJbhi9CUgEtKDO7fx5wh8Z8vOVX1nYZ9meawJoRrlASYA==}
- engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
+ next@16.0.7:
+ resolution: {integrity: sha512-3mBRJyPxT4LOxAJI6IsXeFtKfiJUbjCLgvXO02fV8Wy/lIhPvP94Fe7dGhUgHXcQy4sSuYwQNcOLhIfOm0rL0A==}
+ engines: {node: '>=20.9.0'}
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.1.0
- '@playwright/test': ^1.41.2
+ '@playwright/test': ^1.51.1
babel-plugin-react-compiler: '*'
react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
@@ -4850,17 +4877,20 @@ packages:
node-releases@2.0.19:
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
- nuqs@2.4.3:
- resolution: {integrity: sha512-BgtlYpvRwLYiJuWzxt34q2bXu/AIS66sLU1QePIMr2LWkb+XH0vKXdbLSgn9t6p7QKzwI7f38rX3Wl9llTXQ8Q==}
+ nuqs@2.8.3:
+ resolution: {integrity: sha512-ZSLiAw0uDYE3JpmV3Yot7aGP4mfyj7vYCPrM7r7qUo9Bx00Vf/7eHOp4iC9LtgV1PVVdqLkvMf/8qN79BP1Jkg==}
peerDependencies:
'@remix-run/react': '>=2'
+ '@tanstack/react-router': ^1
next: '>=14.2.0'
react: '>=18.2.0 || ^19.0.0-0'
- react-router: ^6 || ^7
- react-router-dom: ^6 || ^7
+ react-router: ^5 || ^6 || ^7
+ react-router-dom: ^5 || ^6 || ^7
peerDependenciesMeta:
'@remix-run/react':
optional: true
+ '@tanstack/react-router':
+ optional: true
next:
optional: true
react-router:
@@ -5231,6 +5261,11 @@ packages:
peerDependencies:
react: ^19.1.0
+ react-dom@19.2.1:
+ resolution: {integrity: sha512-ibrK8llX2a4eOskq1mXKu/TGZj9qzomO+sNfO98M6d9zIPOEhlBkMkBUBLd1vgS0gQsLDBzA+8jJBVXDnfHmJg==}
+ peerDependencies:
+ react: ^19.2.1
+
react-dropzone@14.3.8:
resolution: {integrity: sha512-sBgODnq+lcA4P296DY4wacOZz3JFpD99fp+hb//iBO2HHnyeZU3FwWyXJ6salNpqQdsZrgMrotuko/BdJMV8Ug==}
engines: {node: '>= 10.13'}
@@ -5289,6 +5324,10 @@ packages:
resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
engines: {node: '>=0.10.0'}
+ react@19.2.1:
+ resolution: {integrity: sha512-DGrYcCWK7tvYMnWh79yrPHt+vdx9tY+1gPZa7nJQtO/p8bLTDaHp4dzwEhQB7pZ4Xe3ok4XKuEPrVuc+wlpkmw==}
+ engines: {node: '>=0.10.0'}
+
read-yaml-file@1.1.0:
resolution: {integrity: sha512-VIMnQi/Z4HT2Fxuwg5KrY174U1VdUIASQVWXXyqtNRtxSr9IYkn1rsI6Tb6HsrHCmB7gVpNwX6JxPTHcH6IoTA==}
engines: {node: '>=6'}
@@ -5363,6 +5402,9 @@ packages:
scheduler@0.26.0:
resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
+ scheduler@0.27.0:
+ resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
+
semver@6.3.1:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
@@ -5372,6 +5414,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.7.3:
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
+ engines: {node: '>=10'}
+ hasBin: true
+
send@1.2.0:
resolution: {integrity: sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==}
engines: {node: '>= 18'}
@@ -5395,8 +5442,8 @@ packages:
setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- sharp@0.33.5:
- resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
+ sharp@0.34.5:
+ resolution: {integrity: sha512-Ou9I5Ft9WNcCbXrU9cMgPBcCK8LiwLqcbywW3t4oDV37n1pzpuNLsYiAV8eODnjbtQlSDwZ2cUEeQz4E54Hltg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
shebang-command@2.0.0:
@@ -5430,9 +5477,6 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- simple-swizzle@0.2.2:
- resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
-
slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
@@ -5468,10 +5512,6 @@ packages:
std-env@3.9.0:
resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==}
- streamsearch@1.1.0:
- resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
- engines: {node: '>=10.0.0'}
-
string-width@4.2.3:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
@@ -6753,32 +6793,32 @@ snapshots:
'@date-fns/tz@1.4.1': {}
- '@dnd-kit/accessibility@3.1.1(react@19.1.0)':
+ '@dnd-kit/accessibility@3.1.1(react@19.2.1)':
dependencies:
- react: 19.1.0
+ react: 19.2.1
tslib: 2.8.1
- '@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@dnd-kit/core@6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@dnd-kit/accessibility': 3.1.1(react@19.1.0)
- '@dnd-kit/utilities': 3.2.2(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@dnd-kit/accessibility': 3.1.1(react@19.2.1)
+ '@dnd-kit/utilities': 3.2.2(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
tslib: 2.8.1
- '@dnd-kit/sortable@10.0.0(@dnd-kit/core@6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)':
+ '@dnd-kit/sortable@10.0.0(@dnd-kit/core@6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1)':
dependencies:
- '@dnd-kit/core': 6.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@dnd-kit/utilities': 3.2.2(react@19.1.0)
- react: 19.1.0
+ '@dnd-kit/core': 6.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@dnd-kit/utilities': 3.2.2(react@19.2.1)
+ react: 19.2.1
tslib: 2.8.1
- '@dnd-kit/utilities@3.2.2(react@19.1.0)':
+ '@dnd-kit/utilities@3.2.2(react@19.2.1)':
dependencies:
- react: 19.1.0
+ react: 19.2.1
tslib: 2.8.1
- '@emnapi/runtime@1.4.3':
+ '@emnapi/runtime@1.7.1':
dependencies:
tslib: 2.8.1
optional: true
@@ -6911,11 +6951,17 @@ snapshots:
'@floating-ui/core': 1.7.3
'@floating-ui/utils': 0.2.10
- '@floating-ui/react-dom@2.1.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@floating-ui/react-dom@2.1.6(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
'@floating-ui/dom': 1.7.4
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+
+ '@floating-ui/react-dom@2.1.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@floating-ui/dom': 1.7.4
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
'@floating-ui/utils@0.2.10': {}
@@ -6945,10 +6991,15 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@hookform/resolvers@5.2.0(react-hook-form@7.61.1(react@19.1.0))':
+ '@hookform/resolvers@5.2.0(react-hook-form@7.61.1(react@19.2.1))':
+ dependencies:
+ '@standard-schema/utils': 0.3.0
+ react-hook-form: 7.61.1(react@19.2.1)
+
+ '@hookform/resolvers@5.2.2(react-hook-form@7.61.1(react@19.2.1))':
dependencies:
'@standard-schema/utils': 0.3.0
- react-hook-form: 7.61.1(react@19.1.0)
+ react-hook-form: 7.61.1(react@19.2.1)
'@humanfs/core@0.19.1': {}
@@ -6963,79 +7014,101 @@ snapshots:
'@humanwhocodes/retry@0.4.3': {}
- '@img/sharp-darwin-arm64@0.33.5':
+ '@img/colour@1.0.0':
+ optional: true
+
+ '@img/sharp-darwin-arm64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-darwin-arm64': 1.0.4
+ '@img/sharp-libvips-darwin-arm64': 1.2.4
optional: true
- '@img/sharp-darwin-x64@0.33.5':
+ '@img/sharp-darwin-x64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-darwin-x64': 1.0.4
+ '@img/sharp-libvips-darwin-x64': 1.2.4
+ optional: true
+
+ '@img/sharp-libvips-darwin-arm64@1.2.4':
optional: true
- '@img/sharp-libvips-darwin-arm64@1.0.4':
+ '@img/sharp-libvips-darwin-x64@1.2.4':
optional: true
- '@img/sharp-libvips-darwin-x64@1.0.4':
+ '@img/sharp-libvips-linux-arm64@1.2.4':
optional: true
- '@img/sharp-libvips-linux-arm64@1.0.4':
+ '@img/sharp-libvips-linux-arm@1.2.4':
optional: true
- '@img/sharp-libvips-linux-arm@1.0.5':
+ '@img/sharp-libvips-linux-ppc64@1.2.4':
optional: true
- '@img/sharp-libvips-linux-s390x@1.0.4':
+ '@img/sharp-libvips-linux-riscv64@1.2.4':
optional: true
- '@img/sharp-libvips-linux-x64@1.0.4':
+ '@img/sharp-libvips-linux-s390x@1.2.4':
optional: true
- '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ '@img/sharp-libvips-linux-x64@1.2.4':
optional: true
- '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ '@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-arm64@0.33.5':
+ '@img/sharp-linux-ppc64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-linux-arm64': 1.0.4
+ '@img/sharp-libvips-linux-ppc64': 1.2.4
optional: true
- '@img/sharp-linux-arm@0.33.5':
+ '@img/sharp-linux-riscv64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-linux-arm': 1.0.5
+ '@img/sharp-libvips-linux-riscv64': 1.2.4
optional: true
- '@img/sharp-linux-s390x@0.33.5':
+ '@img/sharp-linux-s390x@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-linux-s390x': 1.0.4
+ '@img/sharp-libvips-linux-s390x': 1.2.4
optional: true
- '@img/sharp-linux-x64@0.33.5':
+ '@img/sharp-linux-x64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-linux-x64': 1.0.4
+ '@img/sharp-libvips-linux-x64': 1.2.4
optional: true
- '@img/sharp-linuxmusl-arm64@0.33.5':
+ '@img/sharp-linuxmusl-arm64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.4
optional: true
- '@img/sharp-linuxmusl-x64@0.33.5':
+ '@img/sharp-linuxmusl-x64@0.34.5':
optionalDependencies:
- '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.4
optional: true
- '@img/sharp-wasm32@0.33.5':
+ '@img/sharp-wasm32@0.34.5':
dependencies:
- '@emnapi/runtime': 1.4.3
+ '@emnapi/runtime': 1.7.1
optional: true
- '@img/sharp-win32-ia32@0.33.5':
+ '@img/sharp-win32-arm64@0.34.5':
optional: true
- '@img/sharp-win32-x64@0.33.5':
+ '@img/sharp-win32-ia32@0.34.5':
+ optional: true
+
+ '@img/sharp-win32-x64@0.34.5':
optional: true
'@intentui/icons@1.11.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
@@ -7044,6 +7117,12 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
+ '@intentui/icons@1.11.0(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@babel/runtime': 7.27.1
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
'@internationalized/date@3.8.2':
dependencies:
'@swc/helpers': 0.5.17
@@ -7122,34 +7201,34 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@next/env@15.2.2': {}
+ '@next/env@16.0.7': {}
'@next/eslint-plugin-next@15.3.2':
dependencies:
fast-glob: 3.3.1
- '@next/swc-darwin-arm64@15.2.2':
+ '@next/swc-darwin-arm64@16.0.7':
optional: true
- '@next/swc-darwin-x64@15.2.2':
+ '@next/swc-darwin-x64@16.0.7':
optional: true
- '@next/swc-linux-arm64-gnu@15.2.2':
+ '@next/swc-linux-arm64-gnu@16.0.7':
optional: true
- '@next/swc-linux-arm64-musl@15.2.2':
+ '@next/swc-linux-arm64-musl@16.0.7':
optional: true
- '@next/swc-linux-x64-gnu@15.2.2':
+ '@next/swc-linux-x64-gnu@16.0.7':
optional: true
- '@next/swc-linux-x64-musl@15.2.2':
+ '@next/swc-linux-x64-musl@16.0.7':
optional: true
- '@next/swc-win32-arm64-msvc@15.2.2':
+ '@next/swc-win32-arm64-msvc@16.0.7':
optional: true
- '@next/swc-win32-x64-msvc@15.2.2':
+ '@next/swc-win32-x64-msvc@16.0.7':
optional: true
'@nodelib/fs.scandir@2.1.5':
@@ -7169,6 +7248,16 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
+ '@phosphor-icons/react@2.1.8(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+
+ '@phosphor-icons/react@2.1.8(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
'@pkgjs/parseargs@0.11.0':
optional: true
@@ -7220,1549 +7309,1938 @@ snapshots:
'@radix-ui/primitive@1.1.3': {}
- '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-checkbox@1.3.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-checkbox@1.3.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-collapsible@1.1.12(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-checkbox@1.3.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-collection@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-collapsible@1.1.12(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-collapsible@1.1.12(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- react: 19.1.0
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-context@1.1.2(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-collection@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- react: 19.1.0
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-dialog@1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-collection@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- aria-hidden: 1.2.6
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.7.1(@types/react@19.1.6)(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-direction@1.1.1(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.6)(react@19.2.1)':
dependencies:
- react: 19.1.0
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.1.6
+
+ '@radix-ui/react-context@1.1.2(@types/react@19.1.6)(react@19.2.1)':
+ dependencies:
+ react: 19.2.1
optionalDependencies:
'@types/react': 19.1.6
- '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-dialog@1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ aria-hidden: 1.2.6
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ react-remove-scroll: 2.7.1(@types/react@19.1.6)(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-dialog@1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ aria-hidden: 1.2.6
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ react-remove-scroll: 2.7.1(@types/react@19.1.6)(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-focus-guards@1.1.3(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-direction@1.1.1(@types/react@19.1.6)(react@19.2.1)':
dependencies:
- react: 19.1.0
+ react: 19.2.1
optionalDependencies:
'@types/react': 19.1.6
- '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-id@1.1.1(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-label@2.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-menu@2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- aria-hidden: 1.2.6
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.7.1(@types/react@19.1.6)(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-menu': 2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-popover@1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-focus-guards@1.1.3(@types/react@19.1.6)(react@19.2.1)':
dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- aria-hidden: 1.2.6
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.7.1(@types/react@19.1.6)(react@19.1.0)
+ react: 19.2.1
optionalDependencies:
'@types/react': 19.1.6
- '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-popper@1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@floating-ui/react-dom': 2.1.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/rect': 1.1.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-portal@1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-presence@1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-id@1.1.1(@types/react@19.1.6)(react@19.2.1)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
optionalDependencies:
'@types/react': 19.1.6
- '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-label@2.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-progress@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-label@2.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-radio-group@1.3.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-menu@2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ aria-hidden: 1.2.6
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ react-remove-scroll: 2.7.1(@types/react@19.1.6)(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-menu@2.1.16(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ aria-hidden: 1.2.6
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ react-remove-scroll: 2.7.1(@types/react@19.1.6)(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-select@2.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-popover@1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/number': 1.1.1
'@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
aria-hidden: 1.2.6
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.7.1(@types/react@19.1.6)(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ react-remove-scroll: 2.7.1(@types/react@19.1.6)(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-separator@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-popover@1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ aria-hidden: 1.2.6
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ react-remove-scroll: 2.7.1(@types/react@19.1.6)(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-slider@1.3.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@radix-ui/number': 1.1.1
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-popper@1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.6(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/rect': 1.1.1
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-slot@1.2.3(@types/react@19.1.6)(react@19.1.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-popper@1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/rect': 1.1.1
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-switch@1.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-portal@1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-tabs@1.1.13(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-portal@1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-toggle-group@1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-presence@1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-toggle@1.1.10(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-presence@1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/primitive': 1.1.3
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- react: 19.1.0
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-progress@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-progress@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-radio-group@1.3.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- react: 19.1.0
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-use-previous@1.1.1(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- react: 19.1.0
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-use-rect@1.1.1(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-select@2.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/rect': 1.1.1
- react: 19.1.0
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ aria-hidden: 1.2.6
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ react-remove-scroll: 2.7.1(@types/react@19.1.6)(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-use-size@1.1.1(@types/react@19.1.6)(react@19.1.0)':
+ '@radix-ui/react-select@2.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ aria-hidden: 1.2.6
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ react-remove-scroll: 2.7.1(@types/react@19.1.6)(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-separator@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
'@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@radix-ui/rect@1.1.1': {}
-
- '@react-aria/autocomplete@3.0.0-beta.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/combobox': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/listbox': 3.14.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/searchfield': 3.8.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/textfield': 3.17.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/autocomplete': 3.0.0-beta.2(react@19.1.0)
- '@react-stately/combobox': 3.10.6(react@19.1.0)
- '@react-types/autocomplete': 3.0.0-alpha.32(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/breadcrumbs@3.5.26(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-separator@1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/link': 3.8.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/breadcrumbs': 3.7.14(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@react-aria/button@3.13.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-slider@1.3.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/toolbar': 3.0.0-beta.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/toggle': 3.8.5(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
- '@react-aria/calendar@3.8.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-slider@1.3.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-slot@1.2.3(@types/react@19.1.6)(react@19.2.1)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.1.6
+
+ '@radix-ui/react-switch@1.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-switch@1.2.6(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-tabs@1.1.13(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-tabs@1.1.13(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-toggle-group@1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-toggle-group@1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-toggle': 1.1.10(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-toggle@1.1.10(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-toggle@1.1.10(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-tooltip@1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-slot': 1.2.3(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.6)(react@19.2.1)':
+ dependencies:
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.1.6
+
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.6)(react@19.2.1)':
+ dependencies:
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.1.6
+
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.6)(react@19.2.1)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.1.6
+
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.6)(react@19.2.1)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.1.6
+
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.6)(react@19.2.1)':
+ dependencies:
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.1.6
+
+ '@radix-ui/react-use-previous@1.1.1(@types/react@19.1.6)(react@19.2.1)':
+ dependencies:
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.1.6
+
+ '@radix-ui/react-use-rect@1.1.1(@types/react@19.1.6)(react@19.2.1)':
+ dependencies:
+ '@radix-ui/rect': 1.1.1
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.1.6
+
+ '@radix-ui/react-use-size@1.1.1(@types/react@19.1.6)(react@19.2.1)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ react: 19.2.1
+ optionalDependencies:
+ '@types/react': 19.1.6
+
+ '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ optionalDependencies:
+ '@types/react': 19.1.6
+ '@types/react-dom': 19.1.6(@types/react@19.1.6)
+
+ '@radix-ui/rect@1.1.1': {}
+
+ '@react-aria/autocomplete@3.0.0-beta.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/combobox': 3.12.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/listbox': 3.14.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/searchfield': 3.8.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/textfield': 3.17.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/autocomplete': 3.0.0-beta.2(react@19.2.1)
+ '@react-stately/combobox': 3.10.6(react@19.2.1)
+ '@react-types/autocomplete': 3.0.0-alpha.32(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@swc/helpers': 0.5.17
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/breadcrumbs@3.5.26(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/link': 3.8.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/breadcrumbs': 3.7.14(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@swc/helpers': 0.5.17
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/button@3.13.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/toolbar': 3.0.0-beta.18(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/toggle': 3.8.5(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@swc/helpers': 0.5.17
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/calendar@3.8.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
'@internationalized/date': 3.8.2
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@react-aria/live-announcer': 3.4.3
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/calendar': 3.8.2(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/calendar': 3.7.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/calendar': 3.8.2(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/calendar': 3.7.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/checkbox@3.15.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/form': 3.0.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/label': 3.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/toggle': 3.11.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/checkbox': 3.6.15(react@19.1.0)
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-stately/toggle': 3.8.5(react@19.1.0)
- '@react-types/checkbox': 3.9.5(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/checkbox@3.15.7(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/form': 3.0.18(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/label': 3.7.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/toggle': 3.11.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/checkbox': 3.6.15(react@19.2.1)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-stately/toggle': 3.8.5(react@19.2.1)
+ '@react-types/checkbox': 3.9.5(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/collections@3.0.0-rc.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/collections@3.0.0-rc.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/ssr': 3.9.9(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/ssr': 3.9.9(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- use-sync-external-store: 1.5.0(react@19.1.0)
-
- '@react-aria/color@3.0.9(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/numberfield': 3.11.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/slider': 3.7.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/spinbutton': 3.6.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/textfield': 3.17.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/visually-hidden': 3.8.25(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/color': 3.8.6(react@19.1.0)
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-types/color': 3.0.6(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ use-sync-external-store: 1.5.0(react@19.2.1)
+
+ '@react-aria/color@3.0.9(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/numberfield': 3.11.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/slider': 3.7.21(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/spinbutton': 3.6.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/textfield': 3.17.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/visually-hidden': 3.8.25(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/color': 3.8.6(react@19.2.1)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-types/color': 3.0.6(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/combobox@3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/combobox@3.12.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/listbox': 3.14.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/listbox': 3.14.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@react-aria/live-announcer': 3.4.3
- '@react-aria/menu': 3.18.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/overlays': 3.27.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/selection': 3.24.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/textfield': 3.17.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/combobox': 3.10.6(react@19.1.0)
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/combobox': 3.13.6(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/menu': 3.18.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/overlays': 3.27.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/selection': 3.24.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/textfield': 3.17.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/combobox': 3.10.6(react@19.2.1)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/combobox': 3.13.6(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/datepicker@3.14.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/datepicker@3.14.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
'@internationalized/date': 3.8.2
'@internationalized/number': 3.6.3
'@internationalized/string': 3.2.7
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/form': 3.0.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/label': 3.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/spinbutton': 3.6.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/datepicker': 3.14.2(react@19.1.0)
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/calendar': 3.7.2(react@19.1.0)
- '@react-types/datepicker': 3.12.2(react@19.1.0)
- '@react-types/dialog': 3.5.19(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/form': 3.0.18(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/label': 3.7.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/spinbutton': 3.6.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/datepicker': 3.14.2(react@19.2.1)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/calendar': 3.7.2(react@19.2.1)
+ '@react-types/datepicker': 3.12.2(react@19.2.1)
+ '@react-types/dialog': 3.5.19(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/dialog@3.5.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/dialog@3.5.27(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/overlays': 3.27.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/dialog': 3.5.19(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/overlays': 3.27.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/dialog': 3.5.19(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/disclosure@3.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/disclosure@3.0.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/ssr': 3.9.9(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/disclosure': 3.0.5(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
+ '@react-aria/ssr': 3.9.9(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/disclosure': 3.0.5(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/dnd@3.10.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/dnd@3.10.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
'@internationalized/string': 3.2.7
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@react-aria/live-announcer': 3.4.3
- '@react-aria/overlays': 3.27.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/dnd': 3.6.0(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/overlays': 3.27.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/dnd': 3.6.0(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/focus@3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/focus@3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
clsx: 2.1.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/form@3.0.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/form@3.0.18(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/grid@3.14.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/grid@3.14.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@react-aria/live-announcer': 3.4.3
- '@react-aria/selection': 3.24.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/grid': 3.11.3(react@19.1.0)
- '@react-stately/selection': 3.20.3(react@19.1.0)
- '@react-types/checkbox': 3.9.5(react@19.1.0)
- '@react-types/grid': 3.3.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/selection': 3.24.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/grid': 3.11.3(react@19.2.1)
+ '@react-stately/selection': 3.20.3(react@19.2.1)
+ '@react-types/checkbox': 3.9.5(react@19.2.1)
+ '@react-types/grid': 3.3.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/gridlist@3.13.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/grid': 3.14.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/selection': 3.24.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/list': 3.12.3(react@19.1.0)
- '@react-stately/tree': 3.9.0(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/gridlist@3.13.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/grid': 3.14.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/selection': 3.24.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/list': 3.12.3(react@19.2.1)
+ '@react-stately/tree': 3.9.0(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/i18n@3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/i18n@3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
'@internationalized/date': 3.8.2
'@internationalized/message': 3.1.8
'@internationalized/number': 3.6.3
'@internationalized/string': 3.2.7
- '@react-aria/ssr': 3.9.9(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/ssr': 3.9.9(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/interactions@3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/interactions@3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/ssr': 3.9.9(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@react-aria/ssr': 3.9.9(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@react-stately/flags': 3.1.2
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/label@3.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/label@3.7.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/landmark@3.0.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/landmark@3.0.4(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- use-sync-external-store: 1.5.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ use-sync-external-store: 1.5.0(react@19.2.1)
- '@react-aria/link@3.8.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/link@3.8.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/link': 3.6.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/link': 3.6.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/listbox@3.14.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/label': 3.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/selection': 3.24.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/list': 3.12.3(react@19.1.0)
- '@react-types/listbox': 3.7.1(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/listbox@3.14.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/label': 3.7.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/selection': 3.24.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/list': 3.12.3(react@19.2.1)
+ '@react-types/listbox': 3.7.1(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
'@react-aria/live-announcer@3.4.3':
dependencies:
'@swc/helpers': 0.5.17
- '@react-aria/menu@3.18.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/overlays': 3.27.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/selection': 3.24.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/menu': 3.9.5(react@19.1.0)
- '@react-stately/selection': 3.20.3(react@19.1.0)
- '@react-stately/tree': 3.9.0(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/menu': 3.10.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/menu@3.18.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/overlays': 3.27.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/selection': 3.24.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/menu': 3.9.5(react@19.2.1)
+ '@react-stately/selection': 3.20.3(react@19.2.1)
+ '@react-stately/tree': 3.9.0(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/menu': 3.10.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/meter@3.4.24(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/meter@3.4.24(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/progress': 3.4.24(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/meter': 3.4.10(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/progress': 3.4.24(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/meter': 3.4.10(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/numberfield@3.11.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/spinbutton': 3.6.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/textfield': 3.17.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-stately/numberfield': 3.9.13(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/numberfield': 3.8.12(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/numberfield@3.11.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/spinbutton': 3.6.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/textfield': 3.17.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-stately/numberfield': 3.9.13(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/numberfield': 3.8.12(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/overlays@3.27.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/ssr': 3.9.9(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/visually-hidden': 3.8.25(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/overlays': 3.6.17(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/overlays': 3.8.16(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/overlays@3.27.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/ssr': 3.9.9(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/visually-hidden': 3.8.25(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/overlays': 3.6.17(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/overlays': 3.8.16(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/progress@3.4.24(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/progress@3.4.24(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/label': 3.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/progress': 3.5.13(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/label': 3.7.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/progress': 3.5.13(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/radio@3.11.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/form': 3.0.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/label': 3.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/radio': 3.10.14(react@19.1.0)
- '@react-types/radio': 3.8.10(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/radio@3.11.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/form': 3.0.18(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/label': 3.7.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/radio': 3.10.14(react@19.2.1)
+ '@react-types/radio': 3.8.10(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/searchfield@3.8.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/textfield': 3.17.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/searchfield': 3.5.13(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/searchfield': 3.6.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/searchfield@3.8.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/textfield': 3.17.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/searchfield': 3.5.13(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/searchfield': 3.6.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/select@3.15.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/form': 3.0.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/label': 3.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/listbox': 3.14.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/menu': 3.18.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/selection': 3.24.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/visually-hidden': 3.8.25(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/select': 3.6.14(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/select': 3.9.13(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/select@3.15.7(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/form': 3.0.18(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/label': 3.7.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/listbox': 3.14.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/menu': 3.18.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/selection': 3.24.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/visually-hidden': 3.8.25(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/select': 3.6.14(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/select': 3.9.13(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/selection@3.24.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/selection@3.24.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/selection': 3.20.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/selection': 3.20.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/separator@3.4.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/separator@3.4.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/slider@3.7.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/label': 3.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/slider': 3.6.5(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/slider': 3.7.12(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/slider@3.7.21(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/label': 3.7.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/slider': 3.6.5(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/slider': 3.7.12(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/spinbutton@3.6.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/spinbutton@3.6.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@react-aria/live-announcer': 3.4.3
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/ssr@3.9.9(react@19.1.0)':
+ '@react-aria/ssr@3.9.9(react@19.2.1)':
dependencies:
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-aria/switch@3.7.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/switch@3.7.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/toggle': 3.11.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/toggle': 3.8.5(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/switch': 3.5.12(react@19.1.0)
+ '@react-aria/toggle': 3.11.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/toggle': 3.8.5(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/switch': 3.5.12(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/table@3.17.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/table@3.17.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/grid': 3.14.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/grid': 3.14.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@react-aria/live-announcer': 3.4.3
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/visually-hidden': 3.8.25(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/collections': 3.12.5(react@19.1.0)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/visually-hidden': 3.8.25(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
'@react-stately/flags': 3.1.2
- '@react-stately/table': 3.14.3(react@19.1.0)
- '@react-types/checkbox': 3.9.5(react@19.1.0)
- '@react-types/grid': 3.3.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/table': 3.13.1(react@19.1.0)
+ '@react-stately/table': 3.14.3(react@19.2.1)
+ '@react-types/checkbox': 3.9.5(react@19.2.1)
+ '@react-types/grid': 3.3.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/table': 3.13.1(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/tabs@3.10.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/selection': 3.24.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/tabs': 3.8.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/tabs': 3.3.16(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/tabs@3.10.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/selection': 3.24.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/tabs': 3.8.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/tabs': 3.3.16(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/tag@3.6.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/gridlist': 3.13.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/label': 3.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/selection': 3.24.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/list': 3.12.3(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/tag@3.6.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/gridlist': 3.13.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/label': 3.7.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/selection': 3.24.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/list': 3.12.3(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/textfield@3.17.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/form': 3.0.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/label': 3.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/textfield': 3.12.3(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/textfield@3.17.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/form': 3.0.18(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/label': 3.7.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/textfield': 3.12.3(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/toast@3.0.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/landmark': 3.0.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/toast': 3.1.1(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/toast@3.0.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/landmark': 3.0.4(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/toast': 3.1.1(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/toggle@3.11.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/toggle@3.11.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/toggle': 3.8.5(react@19.1.0)
- '@react-types/checkbox': 3.9.5(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/toggle': 3.8.5(react@19.2.1)
+ '@react-types/checkbox': 3.9.5(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/toolbar@3.0.0-beta.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/toolbar@3.0.0-beta.18(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/tooltip@3.8.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/tooltip@3.8.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/tooltip': 3.5.5(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/tooltip': 3.4.18(react@19.1.0)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/tooltip': 3.5.5(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/tooltip': 3.4.18(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@react-aria/tree@3.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@react-aria/gridlist': 3.13.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/selection': 3.24.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/tree': 3.9.0(react@19.1.0)
- '@react-types/button': 3.12.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ '@react-aria/tree@3.1.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@react-aria/gridlist': 3.13.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/selection': 3.24.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/tree': 3.9.0(react@19.2.1)
+ '@react-types/button': 3.12.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/utils@3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/utils@3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/ssr': 3.9.9(react@19.1.0)
+ '@react-aria/ssr': 3.9.9(react@19.2.1)
'@react-stately/flags': 3.1.2
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
clsx: 2.1.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/virtualizer@4.1.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/virtualizer@4.1.7(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/virtualizer': 4.4.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/virtualizer': 4.4.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-aria/visually-hidden@3.8.25(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-aria/visually-hidden@3.8.25(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-stately/autocomplete@3.0.0-beta.2(react@19.1.0)':
+ '@react-stately/autocomplete@3.0.0-beta.2(react@19.2.1)':
dependencies:
- '@react-stately/utils': 3.10.7(react@19.1.0)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/calendar@3.8.2(react@19.1.0)':
+ '@react-stately/calendar@3.8.2(react@19.2.1)':
dependencies:
'@internationalized/date': 3.8.2
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/calendar': 3.7.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/calendar': 3.7.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/checkbox@3.6.15(react@19.1.0)':
+ '@react-stately/checkbox@3.6.15(react@19.2.1)':
dependencies:
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/checkbox': 3.9.5(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/checkbox': 3.9.5(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/collections@3.12.5(react@19.1.0)':
+ '@react-stately/collections@3.12.5(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/color@3.8.6(react@19.1.0)':
+ '@react-stately/color@3.8.6(react@19.2.1)':
dependencies:
'@internationalized/number': 3.6.3
'@internationalized/string': 3.2.7
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-stately/numberfield': 3.9.13(react@19.1.0)
- '@react-stately/slider': 3.6.5(react@19.1.0)
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/color': 3.0.6(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-stately/numberfield': 3.9.13(react@19.2.1)
+ '@react-stately/slider': 3.6.5(react@19.2.1)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/color': 3.0.6(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
-
- '@react-stately/combobox@3.10.6(react@19.1.0)':
- dependencies:
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-stately/list': 3.12.3(react@19.1.0)
- '@react-stately/overlays': 3.6.17(react@19.1.0)
- '@react-stately/select': 3.6.14(react@19.1.0)
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/combobox': 3.13.6(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ react: 19.2.1
+
+ '@react-stately/combobox@3.10.6(react@19.2.1)':
+ dependencies:
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-stately/list': 3.12.3(react@19.2.1)
+ '@react-stately/overlays': 3.6.17(react@19.2.1)
+ '@react-stately/select': 3.6.14(react@19.2.1)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/combobox': 3.13.6(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/data@3.13.1(react@19.1.0)':
+ '@react-stately/data@3.13.1(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/datepicker@3.14.2(react@19.1.0)':
+ '@react-stately/datepicker@3.14.2(react@19.2.1)':
dependencies:
'@internationalized/date': 3.8.2
'@internationalized/string': 3.2.7
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-stately/overlays': 3.6.17(react@19.1.0)
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/datepicker': 3.12.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-stately/overlays': 3.6.17(react@19.2.1)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/datepicker': 3.12.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/disclosure@3.0.5(react@19.1.0)':
+ '@react-stately/disclosure@3.0.5(react@19.2.1)':
dependencies:
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/dnd@3.6.0(react@19.1.0)':
+ '@react-stately/dnd@3.6.0(react@19.2.1)':
dependencies:
- '@react-stately/selection': 3.20.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/selection': 3.20.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
'@react-stately/flags@3.1.2':
dependencies:
'@swc/helpers': 0.5.17
- '@react-stately/form@3.1.5(react@19.1.0)':
+ '@react-stately/form@3.1.5(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/grid@3.11.3(react@19.1.0)':
+ '@react-stately/grid@3.11.3(react@19.2.1)':
dependencies:
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/selection': 3.20.3(react@19.1.0)
- '@react-types/grid': 3.3.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/selection': 3.20.3(react@19.2.1)
+ '@react-types/grid': 3.3.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/layout@4.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-stately/layout@4.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/table': 3.14.3(react@19.1.0)
- '@react-stately/virtualizer': 4.4.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/grid': 3.3.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/table': 3.13.1(react@19.1.0)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/table': 3.14.3(react@19.2.1)
+ '@react-stately/virtualizer': 4.4.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/grid': 3.3.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/table': 3.13.1(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-stately/list@3.12.3(react@19.1.0)':
+ '@react-stately/list@3.12.3(react@19.2.1)':
dependencies:
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/selection': 3.20.3(react@19.1.0)
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/selection': 3.20.3(react@19.2.1)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/menu@3.9.5(react@19.1.0)':
+ '@react-stately/menu@3.9.5(react@19.2.1)':
dependencies:
- '@react-stately/overlays': 3.6.17(react@19.1.0)
- '@react-types/menu': 3.10.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/overlays': 3.6.17(react@19.2.1)
+ '@react-types/menu': 3.10.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/numberfield@3.9.13(react@19.1.0)':
+ '@react-stately/numberfield@3.9.13(react@19.2.1)':
dependencies:
'@internationalized/number': 3.6.3
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/numberfield': 3.8.12(react@19.1.0)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/numberfield': 3.8.12(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/overlays@3.6.17(react@19.1.0)':
+ '@react-stately/overlays@3.6.17(react@19.2.1)':
dependencies:
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/overlays': 3.8.16(react@19.1.0)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/overlays': 3.8.16(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/radio@3.10.14(react@19.1.0)':
+ '@react-stately/radio@3.10.14(react@19.2.1)':
dependencies:
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/radio': 3.8.10(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/radio': 3.8.10(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/searchfield@3.5.13(react@19.1.0)':
+ '@react-stately/searchfield@3.5.13(react@19.2.1)':
dependencies:
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/searchfield': 3.6.3(react@19.1.0)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/searchfield': 3.6.3(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/select@3.6.14(react@19.1.0)':
+ '@react-stately/select@3.6.14(react@19.2.1)':
dependencies:
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-stately/list': 3.12.3(react@19.1.0)
- '@react-stately/overlays': 3.6.17(react@19.1.0)
- '@react-types/select': 3.9.13(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-stately/list': 3.12.3(react@19.2.1)
+ '@react-stately/overlays': 3.6.17(react@19.2.1)
+ '@react-types/select': 3.9.13(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/selection@3.20.3(react@19.1.0)':
+ '@react-stately/selection@3.20.3(react@19.2.1)':
dependencies:
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/slider@3.6.5(react@19.1.0)':
+ '@react-stately/slider@3.6.5(react@19.2.1)':
dependencies:
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/slider': 3.7.12(react@19.1.0)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/slider': 3.7.12(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/table@3.14.3(react@19.1.0)':
+ '@react-stately/table@3.14.3(react@19.2.1)':
dependencies:
- '@react-stately/collections': 3.12.5(react@19.1.0)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
'@react-stately/flags': 3.1.2
- '@react-stately/grid': 3.11.3(react@19.1.0)
- '@react-stately/selection': 3.20.3(react@19.1.0)
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/grid': 3.3.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/table': 3.13.1(react@19.1.0)
+ '@react-stately/grid': 3.11.3(react@19.2.1)
+ '@react-stately/selection': 3.20.3(react@19.2.1)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/grid': 3.3.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/table': 3.13.1(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/tabs@3.8.3(react@19.1.0)':
+ '@react-stately/tabs@3.8.3(react@19.2.1)':
dependencies:
- '@react-stately/list': 3.12.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/tabs': 3.3.16(react@19.1.0)
+ '@react-stately/list': 3.12.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/tabs': 3.3.16(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/toast@3.1.1(react@19.1.0)':
+ '@react-stately/toast@3.1.1(react@19.2.1)':
dependencies:
'@swc/helpers': 0.5.17
- react: 19.1.0
- use-sync-external-store: 1.5.0(react@19.1.0)
+ react: 19.2.1
+ use-sync-external-store: 1.5.0(react@19.2.1)
- '@react-stately/toggle@3.8.5(react@19.1.0)':
+ '@react-stately/toggle@3.8.5(react@19.2.1)':
dependencies:
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/checkbox': 3.9.5(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/checkbox': 3.9.5(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/tooltip@3.5.5(react@19.1.0)':
+ '@react-stately/tooltip@3.5.5(react@19.2.1)':
dependencies:
- '@react-stately/overlays': 3.6.17(react@19.1.0)
- '@react-types/tooltip': 3.4.18(react@19.1.0)
+ '@react-stately/overlays': 3.6.17(react@19.2.1)
+ '@react-types/tooltip': 3.4.18(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/tree@3.9.0(react@19.1.0)':
+ '@react-stately/tree@3.9.0(react@19.2.1)':
dependencies:
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/selection': 3.20.3(react@19.1.0)
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/selection': 3.20.3(react@19.2.1)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/utils@3.10.7(react@19.1.0)':
+ '@react-stately/utils@3.10.7(react@19.2.1)':
dependencies:
'@swc/helpers': 0.5.17
- react: 19.1.0
+ react: 19.2.1
- '@react-stately/virtualizer@4.4.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@react-stately/virtualizer@4.4.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
'@swc/helpers': 0.5.17
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
- '@react-types/autocomplete@3.0.0-alpha.32(react@19.1.0)':
+ '@react-types/autocomplete@3.0.0-alpha.32(react@19.2.1)':
dependencies:
- '@react-types/combobox': 3.13.6(react@19.1.0)
- '@react-types/searchfield': 3.6.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/combobox': 3.13.6(react@19.2.1)
+ '@react-types/searchfield': 3.6.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/breadcrumbs@3.7.14(react@19.1.0)':
+ '@react-types/breadcrumbs@3.7.14(react@19.2.1)':
dependencies:
- '@react-types/link': 3.6.2(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/link': 3.6.2(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/button@3.12.2(react@19.1.0)':
+ '@react-types/button@3.12.2(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/calendar@3.7.2(react@19.1.0)':
+ '@react-types/calendar@3.7.2(react@19.2.1)':
dependencies:
'@internationalized/date': 3.8.2
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/checkbox@3.9.5(react@19.1.0)':
+ '@react-types/checkbox@3.9.5(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/color@3.0.6(react@19.1.0)':
+ '@react-types/color@3.0.6(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/slider': 3.7.12(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/slider': 3.7.12(react@19.2.1)
+ react: 19.2.1
- '@react-types/combobox@3.13.6(react@19.1.0)':
+ '@react-types/combobox@3.13.6(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/datepicker@3.12.2(react@19.1.0)':
+ '@react-types/datepicker@3.12.2(react@19.2.1)':
dependencies:
'@internationalized/date': 3.8.2
- '@react-types/calendar': 3.7.2(react@19.1.0)
- '@react-types/overlays': 3.8.16(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/calendar': 3.7.2(react@19.2.1)
+ '@react-types/overlays': 3.8.16(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/dialog@3.5.19(react@19.1.0)':
+ '@react-types/dialog@3.5.19(react@19.2.1)':
dependencies:
- '@react-types/overlays': 3.8.16(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/overlays': 3.8.16(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/form@3.7.13(react@19.1.0)':
+ '@react-types/form@3.7.13(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/grid@3.3.3(react@19.1.0)':
+ '@react-types/grid@3.3.3(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/link@3.6.2(react@19.1.0)':
+ '@react-types/link@3.6.2(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/listbox@3.7.1(react@19.1.0)':
+ '@react-types/listbox@3.7.1(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/menu@3.10.2(react@19.1.0)':
+ '@react-types/menu@3.10.2(react@19.2.1)':
dependencies:
- '@react-types/overlays': 3.8.16(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/overlays': 3.8.16(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/meter@3.4.10(react@19.1.0)':
+ '@react-types/meter@3.4.10(react@19.2.1)':
dependencies:
- '@react-types/progress': 3.5.13(react@19.1.0)
- react: 19.1.0
+ '@react-types/progress': 3.5.13(react@19.2.1)
+ react: 19.2.1
- '@react-types/numberfield@3.8.12(react@19.1.0)':
+ '@react-types/numberfield@3.8.12(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/overlays@3.8.16(react@19.1.0)':
+ '@react-types/overlays@3.8.16(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/progress@3.5.13(react@19.1.0)':
+ '@react-types/progress@3.5.13(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/radio@3.8.10(react@19.1.0)':
+ '@react-types/radio@3.8.10(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/searchfield@3.6.3(react@19.1.0)':
+ '@react-types/searchfield@3.6.3(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/textfield': 3.12.3(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/textfield': 3.12.3(react@19.2.1)
+ react: 19.2.1
- '@react-types/select@3.9.13(react@19.1.0)':
+ '@react-types/select@3.9.13(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/shared@3.30.0(react@19.1.0)':
+ '@react-types/shared@3.30.0(react@19.2.1)':
dependencies:
- react: 19.1.0
+ react: 19.2.1
- '@react-types/slider@3.7.12(react@19.1.0)':
+ '@react-types/slider@3.7.12(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/switch@3.5.12(react@19.1.0)':
+ '@react-types/switch@3.5.12(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/table@3.13.1(react@19.1.0)':
+ '@react-types/table@3.13.1(react@19.2.1)':
dependencies:
- '@react-types/grid': 3.3.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/grid': 3.3.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/tabs@3.3.16(react@19.1.0)':
+ '@react-types/tabs@3.3.16(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/textfield@3.12.3(react@19.1.0)':
+ '@react-types/textfield@3.12.3(react@19.2.1)':
dependencies:
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
- '@react-types/tooltip@3.4.18(react@19.1.0)':
+ '@react-types/tooltip@3.4.18(react@19.2.1)':
dependencies:
- '@react-types/overlays': 3.8.16(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
+ '@react-types/overlays': 3.8.16(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
'@remirror/core-constants@3.0.0': {}
@@ -9159,9 +9637,9 @@ snapshots:
'@smithy/types': 4.3.1
tslib: 2.8.1
- '@standard-schema/utils@0.3.0': {}
+ '@standard-schema/spec@1.0.0': {}
- '@swc/counter@0.1.3': {}
+ '@standard-schema/utils@0.3.0': {}
'@swc/helpers@0.5.15':
dependencies:
@@ -9250,12 +9728,29 @@ snapshots:
'@tanstack/query-core': 5.76.0
react: 19.1.0
+ '@tanstack/react-query@5.76.1(react@19.2.1)':
+ dependencies:
+ '@tanstack/query-core': 5.76.0
+ react: 19.2.1
+
'@tanstack/react-table@8.21.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
dependencies:
'@tanstack/table-core': 8.21.3
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
+ '@tanstack/react-table@8.21.3(react-dom@19.1.0(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@tanstack/table-core': 8.21.3
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+
+ '@tanstack/react-table@8.21.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
+ dependencies:
+ '@tanstack/table-core': 8.21.3
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
'@tanstack/table-core@8.21.3': {}
'@tiptap/core@2.26.3(@tiptap/pm@2.26.3)':
@@ -9409,7 +9904,7 @@ snapshots:
prosemirror-transform: 1.10.4
prosemirror-view: 1.40.0
- '@tiptap/react@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@tiptap/react@2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)':
dependencies:
'@tiptap/core': 2.26.3(@tiptap/pm@2.26.3)
'@tiptap/extension-bubble-menu': 2.26.3(@tiptap/core@2.26.3(@tiptap/pm@2.26.3))(@tiptap/pm@2.26.3)
@@ -9417,9 +9912,9 @@ snapshots:
'@tiptap/pm': 2.26.3
'@types/use-sync-external-store': 0.0.6
fast-deep-equal: 3.1.3
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- use-sync-external-store: 1.5.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ use-sync-external-store: 1.5.0(react@19.2.1)
'@tiptap/starter-kit@2.26.3':
dependencies:
@@ -9862,10 +10357,6 @@ snapshots:
esbuild: 0.25.4
load-tsconfig: 0.2.5
- busboy@1.6.0:
- dependencies:
- streamsearch: 1.1.0
-
bytes@3.1.2: {}
cac@6.7.14: {}
@@ -9924,14 +10415,26 @@ snapshots:
clsx@2.1.1: {}
- cmdk@1.1.1(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ cmdk@1.1.1(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1):
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - '@types/react-dom'
+
+ cmdk@1.1.1(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-dialog': 1.1.15(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.1.6)(react@19.2.1)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.6(@types/react@19.1.6))(@types/react@19.1.6)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
@@ -9948,22 +10451,10 @@ snapshots:
color-name@2.0.2: {}
- color-string@1.9.1:
- dependencies:
- color-name: 1.1.4
- simple-swizzle: 0.2.2
- optional: true
-
color-string@2.1.2:
dependencies:
color-name: 2.0.2
- color@4.2.3:
- dependencies:
- color-convert: 2.0.1
- color-string: 1.9.1
- optional: true
-
color@5.0.2:
dependencies:
color-convert: 3.1.2
@@ -10064,6 +10555,9 @@ snapshots:
detect-libc@2.0.4: {}
+ detect-libc@2.1.2:
+ optional: true
+
detect-node-es@1.1.0: {}
dir-glob@3.0.1:
@@ -10534,14 +11028,14 @@ snapshots:
forwarded@0.2.0: {}
- framer-motion@12.11.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ framer-motion@12.11.4(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
dependencies:
motion-dom: 12.11.4
motion-utils: 12.9.4
tslib: 2.8.1
optionalDependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
fresh@2.0.0: {}
@@ -10701,10 +11195,15 @@ snapshots:
inherits@2.0.4: {}
- input-otp@1.4.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ input-otp@1.4.2(react-dom@19.1.0(react@19.2.1))(react@19.2.1):
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+
+ input-otp@1.4.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
+ dependencies:
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
internal-slot@1.1.0:
dependencies:
@@ -10727,9 +11226,6 @@ snapshots:
call-bound: 1.0.4
get-intrinsic: 1.3.0
- is-arrayish@0.3.2:
- optional: true
-
is-async-function@2.1.1:
dependencies:
async-function: 1.0.0
@@ -11034,8 +11530,6 @@ snapshots:
dependencies:
minipass: 7.1.2
- mitt@3.0.1: {}
-
mkdirp@3.0.1: {}
mlly@1.7.4:
@@ -11051,13 +11545,13 @@ snapshots:
motion-utils@12.9.4: {}
- motion@12.11.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ motion@12.11.4(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
dependencies:
- framer-motion: 12.11.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ framer-motion: 12.11.4(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
tslib: 2.8.1
optionalDependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
mri@1.2.0: {}
@@ -11084,27 +11578,100 @@ snapshots:
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
- next@15.2.2(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ next-themes@0.4.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
dependencies:
- '@next/env': 15.2.2
- '@swc/counter': 0.1.3
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+
+ next@16.0.7(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@next/env': 16.0.7
'@swc/helpers': 0.5.15
- busboy: 1.6.0
caniuse-lite: 1.0.30001718
postcss: 8.4.31
react: 19.1.0
react-dom: 19.1.0(react@19.1.0)
styled-jsx: 5.1.6(@babel/core@7.27.1)(react@19.1.0)
optionalDependencies:
- '@next/swc-darwin-arm64': 15.2.2
- '@next/swc-darwin-x64': 15.2.2
- '@next/swc-linux-arm64-gnu': 15.2.2
- '@next/swc-linux-arm64-musl': 15.2.2
- '@next/swc-linux-x64-gnu': 15.2.2
- '@next/swc-linux-x64-musl': 15.2.2
- '@next/swc-win32-arm64-msvc': 15.2.2
- '@next/swc-win32-x64-msvc': 15.2.2
- sharp: 0.33.5
+ '@next/swc-darwin-arm64': 16.0.7
+ '@next/swc-darwin-x64': 16.0.7
+ '@next/swc-linux-arm64-gnu': 16.0.7
+ '@next/swc-linux-arm64-musl': 16.0.7
+ '@next/swc-linux-x64-gnu': 16.0.7
+ '@next/swc-linux-x64-musl': 16.0.7
+ '@next/swc-win32-arm64-msvc': 16.0.7
+ '@next/swc-win32-x64-msvc': 16.0.7
+ sharp: 0.34.5
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
+ next@16.0.7(@babel/core@7.27.1)(react-dom@19.1.0(react@19.2.1))(react@19.2.1):
+ dependencies:
+ '@next/env': 16.0.7
+ '@swc/helpers': 0.5.15
+ caniuse-lite: 1.0.30001718
+ postcss: 8.4.31
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+ styled-jsx: 5.1.6(@babel/core@7.27.1)(react@19.2.1)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 16.0.7
+ '@next/swc-darwin-x64': 16.0.7
+ '@next/swc-linux-arm64-gnu': 16.0.7
+ '@next/swc-linux-arm64-musl': 16.0.7
+ '@next/swc-linux-x64-gnu': 16.0.7
+ '@next/swc-linux-x64-musl': 16.0.7
+ '@next/swc-win32-arm64-msvc': 16.0.7
+ '@next/swc-win32-x64-msvc': 16.0.7
+ sharp: 0.34.5
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+ optional: true
+
+ next@16.0.7(@babel/core@7.27.1)(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
+ dependencies:
+ '@next/env': 16.0.7
+ '@swc/helpers': 0.5.15
+ caniuse-lite: 1.0.30001718
+ postcss: 8.4.31
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
+ styled-jsx: 5.1.6(@babel/core@7.27.1)(react@19.2.1)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 16.0.7
+ '@next/swc-darwin-x64': 16.0.7
+ '@next/swc-linux-arm64-gnu': 16.0.7
+ '@next/swc-linux-arm64-musl': 16.0.7
+ '@next/swc-linux-x64-gnu': 16.0.7
+ '@next/swc-linux-x64-musl': 16.0.7
+ '@next/swc-win32-arm64-msvc': 16.0.7
+ '@next/swc-win32-x64-msvc': 16.0.7
+ sharp: 0.34.5
+ transitivePeerDependencies:
+ - '@babel/core'
+ - babel-plugin-macros
+
+ next@16.0.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@next/env': 16.0.7
+ '@swc/helpers': 0.5.15
+ caniuse-lite: 1.0.30001718
+ postcss: 8.4.31
+ react: 19.1.0
+ react-dom: 19.1.0(react@19.1.0)
+ styled-jsx: 5.1.6(react@19.1.0)
+ optionalDependencies:
+ '@next/swc-darwin-arm64': 16.0.7
+ '@next/swc-darwin-x64': 16.0.7
+ '@next/swc-linux-arm64-gnu': 16.0.7
+ '@next/swc-linux-arm64-musl': 16.0.7
+ '@next/swc-linux-x64-gnu': 16.0.7
+ '@next/swc-linux-x64-musl': 16.0.7
+ '@next/swc-win32-arm64-msvc': 16.0.7
+ '@next/swc-win32-x64-msvc': 16.0.7
+ sharp: 0.34.5
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
@@ -11115,12 +11682,26 @@ snapshots:
node-releases@2.0.19: {}
- nuqs@2.4.3(next@15.2.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0):
+ nuqs@2.8.3(next@16.0.7(@babel/core@7.27.1)(react-dom@19.1.0(react@19.2.1))(react@19.2.1))(react@19.2.1):
+ dependencies:
+ '@standard-schema/spec': 1.0.0
+ react: 19.2.1
+ optionalDependencies:
+ next: 16.0.7(@babel/core@7.27.1)(react-dom@19.1.0(react@19.2.1))(react@19.2.1)
+
+ nuqs@2.8.3(next@16.0.7(@babel/core@7.27.1)(react-dom@19.2.1(react@19.2.1))(react@19.2.1))(react@19.2.1):
dependencies:
- mitt: 3.0.1
+ '@standard-schema/spec': 1.0.0
+ react: 19.2.1
+ optionalDependencies:
+ next: 16.0.7(@babel/core@7.27.1)(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+
+ nuqs@2.8.3(next@16.0.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0):
+ dependencies:
+ '@standard-schema/spec': 1.0.0
react: 19.1.0
optionalDependencies:
- next: 15.2.2(@babel/core@7.27.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ next: 16.0.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
object-assign@4.1.1: {}
@@ -11466,85 +12047,85 @@ snapshots:
iconv-lite: 0.6.3
unpipe: 1.0.0
- react-aria-components@1.10.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-aria-components@1.10.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
dependencies:
'@internationalized/date': 3.8.2
'@internationalized/string': 3.2.7
- '@react-aria/autocomplete': 3.0.0-beta.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/collections': 3.0.0-rc.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/dnd': 3.10.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@react-aria/autocomplete': 3.0.0-beta.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/collections': 3.0.0-rc.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/dnd': 3.10.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
'@react-aria/live-announcer': 3.4.3
- '@react-aria/overlays': 3.27.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/ssr': 3.9.9(react@19.1.0)
- '@react-aria/toolbar': 3.0.0-beta.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/virtualizer': 4.1.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/autocomplete': 3.0.0-beta.2(react@19.1.0)
- '@react-stately/layout': 4.3.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-stately/selection': 3.20.3(react@19.1.0)
- '@react-stately/table': 3.14.3(react@19.1.0)
- '@react-stately/utils': 3.10.7(react@19.1.0)
- '@react-stately/virtualizer': 4.4.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/form': 3.7.13(react@19.1.0)
- '@react-types/grid': 3.3.3(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- '@react-types/table': 3.13.1(react@19.1.0)
+ '@react-aria/overlays': 3.27.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/ssr': 3.9.9(react@19.2.1)
+ '@react-aria/toolbar': 3.0.0-beta.18(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/virtualizer': 4.1.7(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/autocomplete': 3.0.0-beta.2(react@19.2.1)
+ '@react-stately/layout': 4.3.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-stately/selection': 3.20.3(react@19.2.1)
+ '@react-stately/table': 3.14.3(react@19.2.1)
+ '@react-stately/utils': 3.10.7(react@19.2.1)
+ '@react-stately/virtualizer': 4.4.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/form': 3.7.13(react@19.2.1)
+ '@react-types/grid': 3.3.3(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ '@react-types/table': 3.13.1(react@19.2.1)
'@swc/helpers': 0.5.17
client-only: 0.0.1
- react: 19.1.0
- react-aria: 3.41.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react-dom: 19.1.0(react@19.1.0)
- react-stately: 3.39.0(react@19.1.0)
- use-sync-external-store: 1.5.0(react@19.1.0)
+ react: 19.2.1
+ react-aria: 3.41.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ react-dom: 19.2.1(react@19.2.1)
+ react-stately: 3.39.0(react@19.2.1)
+ use-sync-external-store: 1.5.0(react@19.2.1)
- react-aria@3.41.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-aria@3.41.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
dependencies:
'@internationalized/string': 3.2.7
- '@react-aria/breadcrumbs': 3.5.26(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/button': 3.13.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/calendar': 3.8.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/checkbox': 3.15.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/color': 3.0.9(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/combobox': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/datepicker': 3.14.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/dialog': 3.5.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/disclosure': 3.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/dnd': 3.10.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/focus': 3.20.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/gridlist': 3.13.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/i18n': 3.12.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/interactions': 3.25.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/label': 3.7.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/landmark': 3.0.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/link': 3.8.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/listbox': 3.14.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/menu': 3.18.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/meter': 3.4.24(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/numberfield': 3.11.16(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/overlays': 3.27.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/progress': 3.4.24(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/radio': 3.11.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/searchfield': 3.8.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/select': 3.15.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/selection': 3.24.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/separator': 3.4.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/slider': 3.7.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/ssr': 3.9.9(react@19.1.0)
- '@react-aria/switch': 3.7.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/table': 3.17.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/tabs': 3.10.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/tag': 3.6.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/textfield': 3.17.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/toast': 3.0.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/tooltip': 3.8.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/tree': 3.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/utils': 3.29.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/visually-hidden': 3.8.25(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@react-aria/breadcrumbs': 3.5.26(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/button': 3.13.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/calendar': 3.8.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/checkbox': 3.15.7(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/color': 3.0.9(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/combobox': 3.12.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/datepicker': 3.14.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/dialog': 3.5.27(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/disclosure': 3.0.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/dnd': 3.10.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/focus': 3.20.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/gridlist': 3.13.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/i18n': 3.12.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/interactions': 3.25.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/label': 3.7.19(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/landmark': 3.0.4(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/link': 3.8.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/listbox': 3.14.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/menu': 3.18.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/meter': 3.4.24(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/numberfield': 3.11.16(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/overlays': 3.27.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/progress': 3.4.24(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/radio': 3.11.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/searchfield': 3.8.6(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/select': 3.15.7(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/selection': 3.24.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/separator': 3.4.10(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/slider': 3.7.21(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/ssr': 3.9.9(react@19.2.1)
+ '@react-aria/switch': 3.7.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/table': 3.17.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/tabs': 3.10.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/tag': 3.6.2(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/textfield': 3.17.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/toast': 3.0.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/tooltip': 3.8.5(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/tree': 3.1.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/utils': 3.29.1(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-aria/visually-hidden': 3.8.25(react-dom@19.2.1(react@19.2.1))(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
react-day-picker@9.11.1(react@19.1.0):
dependencies:
@@ -11553,85 +12134,108 @@ snapshots:
date-fns-jalali: 4.1.0-0
react: 19.1.0
+ react-day-picker@9.11.1(react@19.2.1):
+ dependencies:
+ '@date-fns/tz': 1.4.1
+ date-fns: 4.1.0
+ date-fns-jalali: 4.1.0-0
+ react: 19.2.1
+
react-dom@19.1.0(react@19.1.0):
dependencies:
react: 19.1.0
scheduler: 0.26.0
- react-dropzone@14.3.8(react@19.1.0):
+ react-dom@19.1.0(react@19.2.1):
+ dependencies:
+ react: 19.2.1
+ scheduler: 0.26.0
+
+ react-dom@19.2.1(react@19.2.1):
+ dependencies:
+ react: 19.2.1
+ scheduler: 0.27.0
+
+ react-dropzone@14.3.8(react@19.2.1):
dependencies:
attr-accept: 2.2.5
file-selector: 2.1.2
prop-types: 15.8.1
- react: 19.1.0
+ react: 19.2.1
react-hook-form@7.61.1(react@19.1.0):
dependencies:
react: 19.1.0
+ react-hook-form@7.61.1(react@19.2.1):
+ dependencies:
+ react: 19.2.1
+
react-is@16.13.1: {}
react-refresh@0.17.0: {}
- react-remove-scroll-bar@2.3.8(@types/react@19.1.6)(react@19.1.0):
+ react-remove-scroll-bar@2.3.8(@types/react@19.1.6)(react@19.2.1):
dependencies:
- react: 19.1.0
- react-style-singleton: 2.2.3(@types/react@19.1.6)(react@19.1.0)
+ react: 19.2.1
+ react-style-singleton: 2.2.3(@types/react@19.1.6)(react@19.2.1)
tslib: 2.8.1
optionalDependencies:
'@types/react': 19.1.6
- react-remove-scroll@2.7.1(@types/react@19.1.6)(react@19.1.0):
+ react-remove-scroll@2.7.1(@types/react@19.1.6)(react@19.2.1):
dependencies:
- react: 19.1.0
- react-remove-scroll-bar: 2.3.8(@types/react@19.1.6)(react@19.1.0)
- react-style-singleton: 2.2.3(@types/react@19.1.6)(react@19.1.0)
+ react: 19.2.1
+ react-remove-scroll-bar: 2.3.8(@types/react@19.1.6)(react@19.2.1)
+ react-style-singleton: 2.2.3(@types/react@19.1.6)(react@19.2.1)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.1.6)(react@19.1.0)
- use-sidecar: 1.1.3(@types/react@19.1.6)(react@19.1.0)
+ use-callback-ref: 1.3.3(@types/react@19.1.6)(react@19.2.1)
+ use-sidecar: 1.1.3(@types/react@19.1.6)(react@19.2.1)
optionalDependencies:
'@types/react': 19.1.6
- react-stately@3.39.0(react@19.1.0):
- dependencies:
- '@react-stately/calendar': 3.8.2(react@19.1.0)
- '@react-stately/checkbox': 3.6.15(react@19.1.0)
- '@react-stately/collections': 3.12.5(react@19.1.0)
- '@react-stately/color': 3.8.6(react@19.1.0)
- '@react-stately/combobox': 3.10.6(react@19.1.0)
- '@react-stately/data': 3.13.1(react@19.1.0)
- '@react-stately/datepicker': 3.14.2(react@19.1.0)
- '@react-stately/disclosure': 3.0.5(react@19.1.0)
- '@react-stately/dnd': 3.6.0(react@19.1.0)
- '@react-stately/form': 3.1.5(react@19.1.0)
- '@react-stately/list': 3.12.3(react@19.1.0)
- '@react-stately/menu': 3.9.5(react@19.1.0)
- '@react-stately/numberfield': 3.9.13(react@19.1.0)
- '@react-stately/overlays': 3.6.17(react@19.1.0)
- '@react-stately/radio': 3.10.14(react@19.1.0)
- '@react-stately/searchfield': 3.5.13(react@19.1.0)
- '@react-stately/select': 3.6.14(react@19.1.0)
- '@react-stately/selection': 3.20.3(react@19.1.0)
- '@react-stately/slider': 3.6.5(react@19.1.0)
- '@react-stately/table': 3.14.3(react@19.1.0)
- '@react-stately/tabs': 3.8.3(react@19.1.0)
- '@react-stately/toast': 3.1.1(react@19.1.0)
- '@react-stately/toggle': 3.8.5(react@19.1.0)
- '@react-stately/tooltip': 3.5.5(react@19.1.0)
- '@react-stately/tree': 3.9.0(react@19.1.0)
- '@react-types/shared': 3.30.0(react@19.1.0)
- react: 19.1.0
-
- react-style-singleton@2.2.3(@types/react@19.1.6)(react@19.1.0):
+ react-stately@3.39.0(react@19.2.1):
+ dependencies:
+ '@react-stately/calendar': 3.8.2(react@19.2.1)
+ '@react-stately/checkbox': 3.6.15(react@19.2.1)
+ '@react-stately/collections': 3.12.5(react@19.2.1)
+ '@react-stately/color': 3.8.6(react@19.2.1)
+ '@react-stately/combobox': 3.10.6(react@19.2.1)
+ '@react-stately/data': 3.13.1(react@19.2.1)
+ '@react-stately/datepicker': 3.14.2(react@19.2.1)
+ '@react-stately/disclosure': 3.0.5(react@19.2.1)
+ '@react-stately/dnd': 3.6.0(react@19.2.1)
+ '@react-stately/form': 3.1.5(react@19.2.1)
+ '@react-stately/list': 3.12.3(react@19.2.1)
+ '@react-stately/menu': 3.9.5(react@19.2.1)
+ '@react-stately/numberfield': 3.9.13(react@19.2.1)
+ '@react-stately/overlays': 3.6.17(react@19.2.1)
+ '@react-stately/radio': 3.10.14(react@19.2.1)
+ '@react-stately/searchfield': 3.5.13(react@19.2.1)
+ '@react-stately/select': 3.6.14(react@19.2.1)
+ '@react-stately/selection': 3.20.3(react@19.2.1)
+ '@react-stately/slider': 3.6.5(react@19.2.1)
+ '@react-stately/table': 3.14.3(react@19.2.1)
+ '@react-stately/tabs': 3.8.3(react@19.2.1)
+ '@react-stately/toast': 3.1.1(react@19.2.1)
+ '@react-stately/toggle': 3.8.5(react@19.2.1)
+ '@react-stately/tooltip': 3.5.5(react@19.2.1)
+ '@react-stately/tree': 3.9.0(react@19.2.1)
+ '@react-types/shared': 3.30.0(react@19.2.1)
+ react: 19.2.1
+
+ react-style-singleton@2.2.3(@types/react@19.1.6)(react@19.2.1):
dependencies:
get-nonce: 1.0.1
- react: 19.1.0
+ react: 19.2.1
tslib: 2.8.1
optionalDependencies:
'@types/react': 19.1.6
react@19.1.0: {}
+ react@19.2.1: {}
+
read-yaml-file@1.1.0:
dependencies:
graceful-fs: 4.2.11
@@ -11746,10 +12350,15 @@ snapshots:
scheduler@0.26.0: {}
+ scheduler@0.27.0: {}
+
semver@6.3.1: {}
semver@7.7.2: {}
+ semver@7.7.3:
+ optional: true
+
send@1.2.0:
dependencies:
debug: 4.4.1
@@ -11799,31 +12408,36 @@ snapshots:
setprototypeof@1.2.0: {}
- sharp@0.33.5:
+ sharp@0.34.5:
dependencies:
- color: 4.2.3
- detect-libc: 2.0.4
- semver: 7.7.2
+ '@img/colour': 1.0.0
+ detect-libc: 2.1.2
+ semver: 7.7.3
optionalDependencies:
- '@img/sharp-darwin-arm64': 0.33.5
- '@img/sharp-darwin-x64': 0.33.5
- '@img/sharp-libvips-darwin-arm64': 1.0.4
- '@img/sharp-libvips-darwin-x64': 1.0.4
- '@img/sharp-libvips-linux-arm': 1.0.5
- '@img/sharp-libvips-linux-arm64': 1.0.4
- '@img/sharp-libvips-linux-s390x': 1.0.4
- '@img/sharp-libvips-linux-x64': 1.0.4
- '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
- '@img/sharp-libvips-linuxmusl-x64': 1.0.4
- '@img/sharp-linux-arm': 0.33.5
- '@img/sharp-linux-arm64': 0.33.5
- '@img/sharp-linux-s390x': 0.33.5
- '@img/sharp-linux-x64': 0.33.5
- '@img/sharp-linuxmusl-arm64': 0.33.5
- '@img/sharp-linuxmusl-x64': 0.33.5
- '@img/sharp-wasm32': 0.33.5
- '@img/sharp-win32-ia32': 0.33.5
- '@img/sharp-win32-x64': 0.33.5
+ '@img/sharp-darwin-arm64': 0.34.5
+ '@img/sharp-darwin-x64': 0.34.5
+ '@img/sharp-libvips-darwin-arm64': 1.2.4
+ '@img/sharp-libvips-darwin-x64': 1.2.4
+ '@img/sharp-libvips-linux-arm': 1.2.4
+ '@img/sharp-libvips-linux-arm64': 1.2.4
+ '@img/sharp-libvips-linux-ppc64': 1.2.4
+ '@img/sharp-libvips-linux-riscv64': 1.2.4
+ '@img/sharp-libvips-linux-s390x': 1.2.4
+ '@img/sharp-libvips-linux-x64': 1.2.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.2.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.2.4
+ '@img/sharp-linux-arm': 0.34.5
+ '@img/sharp-linux-arm64': 0.34.5
+ '@img/sharp-linux-ppc64': 0.34.5
+ '@img/sharp-linux-riscv64': 0.34.5
+ '@img/sharp-linux-s390x': 0.34.5
+ '@img/sharp-linux-x64': 0.34.5
+ '@img/sharp-linuxmusl-arm64': 0.34.5
+ '@img/sharp-linuxmusl-x64': 0.34.5
+ '@img/sharp-wasm32': 0.34.5
+ '@img/sharp-win32-arm64': 0.34.5
+ '@img/sharp-win32-ia32': 0.34.5
+ '@img/sharp-win32-x64': 0.34.5
optional: true
shebang-command@2.0.0:
@@ -11864,17 +12478,17 @@ snapshots:
signal-exit@4.1.0: {}
- simple-swizzle@0.2.2:
- dependencies:
- is-arrayish: 0.3.2
- optional: true
-
slash@3.0.0: {}
- sonner@2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ sonner@2.0.3(react-dom@19.1.0(react@19.2.1))(react@19.2.1):
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.1
+ react-dom: 19.1.0(react@19.2.1)
+
+ sonner@2.0.3(react-dom@19.2.1(react@19.2.1))(react@19.2.1):
+ dependencies:
+ react: 19.2.1
+ react-dom: 19.2.1(react@19.2.1)
source-map-js@1.2.1: {}
@@ -11895,8 +12509,6 @@ snapshots:
std-env@3.9.0: {}
- streamsearch@1.1.0: {}
-
string-width@4.2.3:
dependencies:
emoji-regex: 8.0.0
@@ -11974,6 +12586,18 @@ snapshots:
optionalDependencies:
'@babel/core': 7.27.1
+ styled-jsx@5.1.6(@babel/core@7.27.1)(react@19.2.1):
+ dependencies:
+ client-only: 0.0.1
+ react: 19.2.1
+ optionalDependencies:
+ '@babel/core': 7.27.1
+
+ styled-jsx@5.1.6(react@19.1.0):
+ dependencies:
+ client-only: 0.0.1
+ react: 19.1.0
+
sucrase@3.35.0:
dependencies:
'@jridgewell/gen-mapping': 0.3.8
@@ -12232,24 +12856,24 @@ snapshots:
dependencies:
punycode: 2.3.1
- use-callback-ref@1.3.3(@types/react@19.1.6)(react@19.1.0):
+ use-callback-ref@1.3.3(@types/react@19.1.6)(react@19.2.1):
dependencies:
- react: 19.1.0
+ react: 19.2.1
tslib: 2.8.1
optionalDependencies:
'@types/react': 19.1.6
- use-sidecar@1.1.3(@types/react@19.1.6)(react@19.1.0):
+ use-sidecar@1.1.3(@types/react@19.1.6)(react@19.2.1):
dependencies:
detect-node-es: 1.1.0
- react: 19.1.0
+ react: 19.2.1
tslib: 2.8.1
optionalDependencies:
'@types/react': 19.1.6
- use-sync-external-store@1.5.0(react@19.1.0):
+ use-sync-external-store@1.5.0(react@19.2.1):
dependencies:
- react: 19.1.0
+ react: 19.2.1
uuid@9.0.1: {}