From 7a1903d0c2445f76e30294e70475e0664fef65a8 Mon Sep 17 00:00:00 2001 From: Giancarlo Buomprisco Date: Mon, 31 Mar 2025 10:06:37 +0700 Subject: [PATCH] Links prefetching (#225) 1. Marketing Layout: speed up rendering by retrieving user session from cookies instead of using server side request 2. Use "redirecting" state when signing in to keep displaying a loading state while Next.js redirects to home page 3. Use "useCallback" to prevent double tracking when switching pages 4. Add links pre-fetching in marketing navigation 5. Add new pending state to MFA verification form 6. Pre-fetch sign-in/sign-up pages 7. Fix i18n when using regional languages 8. currency formatter should default to the region if it exists 9. Update packages --- apps/dev-tool/package.json | 10 +- .../site-header-account-section.tsx | 40 +- .../(marketing)/_components/site-header.tsx | 6 +- .../_components/site-navigation-item.tsx | 2 +- apps/web/app/(marketing)/layout.tsx | 14 +- apps/web/app/auth/sign-in/page.tsx | 2 +- apps/web/app/auth/sign-up/page.tsx | 2 +- apps/web/app/not-found.tsx | 9 +- apps/web/components/analytics-provider.tsx | 4 +- apps/web/components/app-logo.tsx | 2 +- apps/web/package.json | 10 +- apps/web/public/locales/en/auth.json | 1 + packages/billing/gateway/package.json | 6 +- packages/billing/lemon-squeezy/package.json | 2 +- packages/billing/stripe/package.json | 2 +- packages/cms/keystatic/package.json | 2 +- packages/features/accounts/package.json | 10 +- packages/features/admin/package.json | 10 +- packages/features/auth/package.json | 6 +- .../multi-factor-challenge-container.tsx | 33 +- .../components/password-sign-in-container.tsx | 7 +- .../src/components/password-sign-in-form.tsx | 41 +- packages/features/notifications/package.json | 8 +- packages/features/team-accounts/package.json | 10 +- packages/i18n/package.json | 6 +- packages/i18n/src/create-i18n-settings.ts | 1 - packages/monitoring/api/package.json | 2 +- packages/monitoring/baselime/package.json | 2 +- packages/monitoring/core/package.json | 2 +- packages/monitoring/sentry/package.json | 4 +- packages/otp/package.json | 6 +- packages/shared/src/utils.ts | 4 +- packages/supabase/package.json | 4 +- packages/ui/package.json | 6 +- pnpm-lock.yaml | 3076 ++++++++--------- 35 files changed, 1685 insertions(+), 1667 deletions(-) diff --git a/apps/dev-tool/package.json b/apps/dev-tool/package.json index 241c28357..522ba3aea 100644 --- a/apps/dev-tool/package.json +++ b/apps/dev-tool/package.json @@ -9,12 +9,12 @@ }, "dependencies": { "@hookform/resolvers": "^4.1.3", - "@tanstack/react-query": "5.69.2", - "lucide-react": "^0.484.0", + "@tanstack/react-query": "5.70.0", + "lucide-react": "^0.485.0", "next": "15.2.4", "nodemailer": "^6.10.0", - "react": "19.0.0", - "react-dom": "19.0.0" + "react": "19.1.0", + "react-dom": "19.1.0" }, "devDependencies": { "@kit/email-templates": "workspace:*", @@ -29,7 +29,7 @@ "@types/react-dom": "19.0.4", "babel-plugin-react-compiler": "19.0.0-beta-e1e972c-20250221", "pino-pretty": "^13.0.0", - "react-hook-form": "^7.54.2", + "react-hook-form": "^7.55.0", "tailwindcss": "4.0.17", "tailwindcss-animate": "^1.0.7", "typescript": "^5.8.2", diff --git a/apps/web/app/(marketing)/_components/site-header-account-section.tsx b/apps/web/app/(marketing)/_components/site-header-account-section.tsx index f17e1d5fd..447ab23b7 100644 --- a/apps/web/app/(marketing)/_components/site-header-account-section.tsx +++ b/apps/web/app/(marketing)/_components/site-header-account-section.tsx @@ -3,11 +3,11 @@ import dynamic from 'next/dynamic'; import Link from 'next/link'; -import type { User } from '@supabase/supabase-js'; +import { useQuery } from '@tanstack/react-query'; import { PersonalAccountDropdown } from '@kit/accounts/personal-account-dropdown'; import { useSignOut } from '@kit/supabase/hooks/use-sign-out'; -import { useUser } from '@kit/supabase/hooks/use-user'; +import { useSupabase } from '@kit/supabase/hooks/use-supabase'; import { Button } from '@kit/ui/button'; import { If } from '@kit/ui/if'; import { Trans } from '@kit/ui/trans'; @@ -29,30 +29,17 @@ const features = { enableThemeToggle: featuresFlagConfig.enableThemeToggle, }; -export function SiteHeaderAccountSection({ - user, -}: React.PropsWithChildren<{ - user: User | null; -}>) { - if (!user) { - return ; - } - - return ; -} - -function SuspendedPersonalAccountDropdown(props: { user: User | null }) { +export function SiteHeaderAccountSection() { + const session = useSession(); const signOut = useSignOut(); - const user = useUser(props.user); - const userData = user.data ?? props.user ?? null; - if (userData) { + if (session.data) { return ( signOut.mutateAsync()} /> ); @@ -63,7 +50,7 @@ function SuspendedPersonalAccountDropdown(props: { user: User | null }) { function AuthButtons() { return ( -
+
@@ -86,3 +73,16 @@ function AuthButtons() {
); } + +function useSession() { + const client = useSupabase(); + + return useQuery({ + queryKey: ['session'], + queryFn: async () => { + const { data } = await client.auth.getSession(); + + return data.session; + }, + }); +} diff --git a/apps/web/app/(marketing)/_components/site-header.tsx b/apps/web/app/(marketing)/_components/site-header.tsx index 634ba74c3..5f409312d 100644 --- a/apps/web/app/(marketing)/_components/site-header.tsx +++ b/apps/web/app/(marketing)/_components/site-header.tsx @@ -1,5 +1,3 @@ -import type { User } from '@supabase/supabase-js'; - import { Header } from '@kit/ui/marketing'; import { AppLogo } from '~/components/app-logo'; @@ -7,12 +5,12 @@ import { AppLogo } from '~/components/app-logo'; import { SiteHeaderAccountSection } from './site-header-account-section'; import { SiteNavigation } from './site-navigation'; -export function SiteHeader(props: { user?: User | null }) { +export function SiteHeader() { return (
} navigation={} - actions={} + actions={} /> ); } diff --git a/apps/web/app/(marketing)/_components/site-navigation-item.tsx b/apps/web/app/(marketing)/_components/site-navigation-item.tsx index c1cae1a8b..f6c13380f 100644 --- a/apps/web/app/(marketing)/_components/site-navigation-item.tsx +++ b/apps/web/app/(marketing)/_components/site-navigation-item.tsx @@ -29,7 +29,7 @@ export function SiteNavigationItem({ return ( - + {children} diff --git a/apps/web/app/(marketing)/layout.tsx b/apps/web/app/(marketing)/layout.tsx index d7295d1ef..bff1c6379 100644 --- a/apps/web/app/(marketing)/layout.tsx +++ b/apps/web/app/(marketing)/layout.tsx @@ -1,19 +1,11 @@ -import { getSupabaseServerClient } from '@kit/supabase/server-client'; - import { SiteFooter } from '~/(marketing)/_components/site-footer'; import { SiteHeader } from '~/(marketing)/_components/site-header'; import { withI18n } from '~/lib/i18n/with-i18n'; -async function SiteLayout(props: React.PropsWithChildren) { - const client = getSupabaseServerClient(); - - const { - data: { user }, - } = await client.auth.getUser(); - +function SiteLayout(props: React.PropsWithChildren) { return (
- + {props.children} @@ -22,4 +14,4 @@ async function SiteLayout(props: React.PropsWithChildren) { ); } -export default withI18n(SiteLayout); +export default withI18n(SiteLayout); \ No newline at end of file diff --git a/apps/web/app/auth/sign-in/page.tsx b/apps/web/app/auth/sign-in/page.tsx index bb1ee8896..16ad40c52 100644 --- a/apps/web/app/auth/sign-in/page.tsx +++ b/apps/web/app/auth/sign-in/page.tsx @@ -58,7 +58,7 @@ async function SignInPage({ searchParams }: SignInPageProps) {
diff --git a/apps/web/app/auth/sign-up/page.tsx b/apps/web/app/auth/sign-up/page.tsx index 8009f0604..40b1eab00 100644 --- a/apps/web/app/auth/sign-up/page.tsx +++ b/apps/web/app/auth/sign-up/page.tsx @@ -57,7 +57,7 @@ async function SignUpPage({ searchParams }: Props) {
diff --git a/apps/web/app/not-found.tsx b/apps/web/app/not-found.tsx index 57938013a..5422bc105 100644 --- a/apps/web/app/not-found.tsx +++ b/apps/web/app/not-found.tsx @@ -2,7 +2,6 @@ import Link from 'next/link'; import { ArrowLeft } from 'lucide-react'; -import { getSupabaseServerClient } from '@kit/supabase/server-client'; import { Button } from '@kit/ui/button'; import { Heading } from '@kit/ui/heading'; import { Trans } from '@kit/ui/trans'; @@ -21,15 +20,9 @@ export const generateMetadata = async () => { }; const NotFoundPage = async () => { - const client = getSupabaseServerClient(); - - const { - data: { user }, - } = await client.auth.getUser(); - return (
- +
analytics.trackPageView(url)); + useReportPageView(useCallback((url) => analytics.trackPageView(url), [])); // Render children return props.children; diff --git a/apps/web/components/app-logo.tsx b/apps/web/components/app-logo.tsx index 55a4864c4..f5b354a26 100644 --- a/apps/web/components/app-logo.tsx +++ b/apps/web/components/app-logo.tsx @@ -40,7 +40,7 @@ export function AppLogo({ } return ( - + ); diff --git a/apps/web/package.json b/apps/web/package.json index 0054be28f..fd05cf755 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -55,16 +55,16 @@ "@marsidev/react-turnstile": "^1.1.0", "@radix-ui/react-icons": "^1.3.2", "@supabase/supabase-js": "2.49.3", - "@tanstack/react-query": "5.69.2", + "@tanstack/react-query": "5.70.0", "@tanstack/react-table": "^8.21.2", "date-fns": "^4.1.0", - "lucide-react": "^0.484.0", + "lucide-react": "^0.485.0", "next": "15.2.4", "next-sitemap": "^4.2.3", "next-themes": "0.4.6", - "react": "19.0.0", - "react-dom": "19.0.0", - "react-hook-form": "^7.54.2", + "react": "19.1.0", + "react-dom": "19.1.0", + "react-hook-form": "^7.55.0", "react-i18next": "^15.4.1", "recharts": "2.15.1", "sonner": "^2.0.2", diff --git a/apps/web/public/locales/en/auth.json b/apps/web/public/locales/en/auth.json index ac23a0d6c..3bb81d4f9 100644 --- a/apps/web/public/locales/en/auth.json +++ b/apps/web/public/locales/en/auth.json @@ -69,6 +69,7 @@ "termsOfService": "Terms of Service", "privacyPolicy": "Privacy Policy", "orContinueWith": "Or continue with", + "redirecting": "You're in! Please wait...", "errors": { "Invalid login credentials": "The credentials entered are invalid", "User already registered": "This credential is already in use. Please try with another one.", diff --git a/packages/billing/gateway/package.json b/packages/billing/gateway/package.json index 10241a33f..0e0cf4a81 100644 --- a/packages/billing/gateway/package.json +++ b/packages/billing/gateway/package.json @@ -29,10 +29,10 @@ "@supabase/supabase-js": "2.49.3", "@types/react": "19.0.12", "date-fns": "^4.1.0", - "lucide-react": "^0.484.0", + "lucide-react": "^0.485.0", "next": "15.2.4", - "react": "19.0.0", - "react-hook-form": "^7.54.2", + "react": "19.1.0", + "react-hook-form": "^7.55.0", "react-i18next": "^15.4.1", "zod": "^3.24.2" }, diff --git a/packages/billing/lemon-squeezy/package.json b/packages/billing/lemon-squeezy/package.json index 753490a7f..290feaa56 100644 --- a/packages/billing/lemon-squeezy/package.json +++ b/packages/billing/lemon-squeezy/package.json @@ -26,7 +26,7 @@ "@kit/ui": "workspace:*", "@types/react": "19.0.12", "next": "15.2.4", - "react": "19.0.0", + "react": "19.1.0", "zod": "^3.24.2" }, "typesVersions": { diff --git a/packages/billing/stripe/package.json b/packages/billing/stripe/package.json index 8cd49a51b..8aadd3ae3 100644 --- a/packages/billing/stripe/package.json +++ b/packages/billing/stripe/package.json @@ -30,7 +30,7 @@ "@types/react": "19.0.12", "date-fns": "^4.1.0", "next": "15.2.4", - "react": "19.0.0", + "react": "19.1.0", "zod": "^3.24.2" }, "typesVersions": { diff --git a/packages/cms/keystatic/package.json b/packages/cms/keystatic/package.json index 25f10a9b4..ece5159f7 100644 --- a/packages/cms/keystatic/package.json +++ b/packages/cms/keystatic/package.json @@ -28,7 +28,7 @@ "@kit/ui": "workspace:*", "@types/node": "^22.13.14", "@types/react": "19.0.12", - "react": "19.0.0", + "react": "19.1.0", "zod": "^3.24.2" }, "typesVersions": { diff --git a/packages/features/accounts/package.json b/packages/features/accounts/package.json index 582259179..22a594a68 100644 --- a/packages/features/accounts/package.json +++ b/packages/features/accounts/package.json @@ -35,15 +35,15 @@ "@kit/ui": "workspace:*", "@radix-ui/react-icons": "^1.3.2", "@supabase/supabase-js": "2.49.3", - "@tanstack/react-query": "5.69.2", + "@tanstack/react-query": "5.70.0", "@types/react": "19.0.12", "@types/react-dom": "19.0.4", - "lucide-react": "^0.484.0", + "lucide-react": "^0.485.0", "next": "15.2.4", "next-themes": "0.4.6", - "react": "19.0.0", - "react-dom": "19.0.0", - "react-hook-form": "^7.54.2", + "react": "19.1.0", + "react-dom": "19.1.0", + "react-hook-form": "^7.55.0", "react-i18next": "^15.4.1", "sonner": "^2.0.2", "zod": "^3.24.2" diff --git a/packages/features/admin/package.json b/packages/features/admin/package.json index 3dcc853c8..49d486729 100644 --- a/packages/features/admin/package.json +++ b/packages/features/admin/package.json @@ -21,14 +21,14 @@ "@makerkit/data-loader-supabase-core": "^0.0.10", "@makerkit/data-loader-supabase-nextjs": "^1.2.5", "@supabase/supabase-js": "2.49.3", - "@tanstack/react-query": "5.69.2", + "@tanstack/react-query": "5.70.0", "@tanstack/react-table": "^8.21.2", "@types/react": "19.0.12", - "lucide-react": "^0.484.0", + "lucide-react": "^0.485.0", "next": "15.2.4", - "react": "19.0.0", - "react-dom": "19.0.0", - "react-hook-form": "^7.54.2", + "react": "19.1.0", + "react-dom": "19.1.0", + "react-hook-form": "^7.55.0", "zod": "^3.24.2" }, "exports": { diff --git a/packages/features/auth/package.json b/packages/features/auth/package.json index b15b7e257..4e12a81c3 100644 --- a/packages/features/auth/package.json +++ b/packages/features/auth/package.json @@ -29,11 +29,11 @@ "@marsidev/react-turnstile": "^1.1.0", "@radix-ui/react-icons": "^1.3.2", "@supabase/supabase-js": "2.49.3", - "@tanstack/react-query": "5.69.2", + "@tanstack/react-query": "5.70.0", "@types/react": "19.0.12", - "lucide-react": "^0.484.0", + "lucide-react": "^0.485.0", "next": "15.2.4", - "react-hook-form": "^7.54.2", + "react-hook-form": "^7.55.0", "react-i18next": "^15.4.1", "sonner": "^2.0.2", "zod": "^3.24.2" diff --git a/packages/features/auth/src/components/multi-factor-challenge-container.tsx b/packages/features/auth/src/components/multi-factor-challenge-container.tsx index 1b8c53235..c4b02a9ef 100644 --- a/packages/features/auth/src/components/multi-factor-challenge-container.tsx +++ b/packages/features/auth/src/components/multi-factor-challenge-container.tsx @@ -2,6 +2,8 @@ import { useEffect } from 'react'; +import { useRouter } from 'next/navigation'; + import { zodResolver } from '@hookform/resolvers/zod'; import { ExclamationTriangleIcon } from '@radix-ui/react-icons'; import { useMutation } from '@tanstack/react-query'; @@ -41,9 +43,11 @@ export function MultiFactorChallengeContainer({ redirectPath: string; }; }>) { + const router = useRouter(); + const verifyMFAChallenge = useVerifyMFAChallenge({ onSuccess: () => { - window.location.replace(paths.redirectPath); + router.replace(paths.redirectPath); }, }); @@ -156,14 +160,29 @@ export function MultiFactorChallengeContainer({ data-test={'submit-mfa-button'} disabled={ verifyMFAChallenge.isPending || + verifyMFAChallenge.isSuccess || !verificationCodeForm.formState.isValid } > - {verifyMFAChallenge.isPending ? ( - - ) : ( + + + + + + + + + + + + + - )} +
@@ -231,7 +250,7 @@ function FactorsListContainer({
-
+
@@ -259,7 +278,7 @@ function FactorsListContainer({ const verifiedFactors = factors?.totp ?? []; return ( -
+
diff --git a/packages/features/auth/src/components/password-sign-in-container.tsx b/packages/features/auth/src/components/password-sign-in-container.tsx index 63d41ab04..f01d72193 100644 --- a/packages/features/auth/src/components/password-sign-in-container.tsx +++ b/packages/features/auth/src/components/password-sign-in-container.tsx @@ -19,6 +19,7 @@ export function PasswordSignInContainer({ const { captchaToken, resetCaptchaToken } = useCaptchaToken(); const signInMutation = useSignInWithEmailPassword(); const isLoading = signInMutation.isPending; + const isRedirecting = signInMutation.isSuccess; const onSubmit = useCallback( async (credentials: z.infer) => { @@ -46,7 +47,11 @@ export function PasswordSignInContainer({ <> - + ); } diff --git a/packages/features/auth/src/components/password-sign-in-form.tsx b/packages/features/auth/src/components/password-sign-in-form.tsx index 59779a047..51c933e73 100644 --- a/packages/features/auth/src/components/password-sign-in-form.tsx +++ b/packages/features/auth/src/components/password-sign-in-form.tsx @@ -25,10 +25,12 @@ import { PasswordSignInSchema } from '../schemas/password-sign-in.schema'; export function PasswordSignInForm({ onSubmit, - loading, + loading = false, + redirecting = false, }: { onSubmit: (params: z.infer) => unknown; loading: boolean; + redirecting: boolean; }) { const { t } = useTranslation('auth'); @@ -112,23 +114,30 @@ export function PasswordSignInForm({ data-test="auth-submit-button" className={'group w-full'} type="submit" - disabled={loading} + disabled={loading || redirecting} > - - + + + + + - - - } - > - + + + + + + + + + + + + diff --git a/packages/features/notifications/package.json b/packages/features/notifications/package.json index db10e1a97..0b6281c8a 100644 --- a/packages/features/notifications/package.json +++ b/packages/features/notifications/package.json @@ -20,11 +20,11 @@ "@kit/tsconfig": "workspace:*", "@kit/ui": "workspace:*", "@supabase/supabase-js": "2.49.3", - "@tanstack/react-query": "5.69.2", + "@tanstack/react-query": "5.70.0", "@types/react": "19.0.12", - "lucide-react": "^0.484.0", - "react": "19.0.0", - "react-dom": "19.0.0", + "lucide-react": "^0.485.0", + "react": "19.1.0", + "react-dom": "19.1.0", "react-i18next": "^15.4.1" }, "prettier": "@kit/prettier-config", diff --git a/packages/features/team-accounts/package.json b/packages/features/team-accounts/package.json index 8b0a6755d..c7f03896c 100644 --- a/packages/features/team-accounts/package.json +++ b/packages/features/team-accounts/package.json @@ -33,17 +33,17 @@ "@kit/tsconfig": "workspace:*", "@kit/ui": "workspace:*", "@supabase/supabase-js": "2.49.3", - "@tanstack/react-query": "5.69.2", + "@tanstack/react-query": "5.70.0", "@tanstack/react-table": "^8.21.2", "@types/react": "19.0.12", "@types/react-dom": "19.0.4", "class-variance-authority": "^0.7.1", "date-fns": "^4.1.0", - "lucide-react": "^0.484.0", + "lucide-react": "^0.485.0", "next": "15.2.4", - "react": "19.0.0", - "react-dom": "19.0.0", - "react-hook-form": "^7.54.2", + "react": "19.1.0", + "react-dom": "19.1.0", + "react-hook-form": "^7.55.0", "react-i18next": "^15.4.1", "sonner": "^2.0.2", "zod": "^3.24.2" diff --git a/packages/i18n/package.json b/packages/i18n/package.json index e1141198c..13118b162 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -20,10 +20,10 @@ "@kit/prettier-config": "workspace:*", "@kit/shared": "workspace:*", "@kit/tsconfig": "workspace:*", - "@tanstack/react-query": "5.69.2", + "@tanstack/react-query": "5.70.0", "next": "15.2.4", - "react": "19.0.0", - "react-dom": "19.0.0", + "react": "19.1.0", + "react-dom": "19.1.0", "react-i18next": "^15.4.1" }, "dependencies": { diff --git a/packages/i18n/src/create-i18n-settings.ts b/packages/i18n/src/create-i18n-settings.ts index 3eac53fa0..f388aaceb 100644 --- a/packages/i18n/src/create-i18n-settings.ts +++ b/packages/i18n/src/create-i18n-settings.ts @@ -23,7 +23,6 @@ export function createI18nSettings({ fallbackLng: languages[0], detection: undefined, lng, - load: 'languageOnly' as const, preload: false as const, lowerCaseLng: true as const, fallbackNS: ns, diff --git a/packages/monitoring/api/package.json b/packages/monitoring/api/package.json index 2ffa52563..801079c9c 100644 --- a/packages/monitoring/api/package.json +++ b/packages/monitoring/api/package.json @@ -25,7 +25,7 @@ "@kit/shared": "workspace:*", "@kit/tsconfig": "workspace:*", "@types/react": "19.0.12", - "react": "19.0.0", + "react": "19.1.0", "zod": "^3.24.2" }, "typesVersions": { diff --git a/packages/monitoring/baselime/package.json b/packages/monitoring/baselime/package.json index a1521c53c..8ddd4146f 100644 --- a/packages/monitoring/baselime/package.json +++ b/packages/monitoring/baselime/package.json @@ -25,7 +25,7 @@ "@kit/prettier-config": "workspace:*", "@kit/tsconfig": "workspace:*", "@types/react": "19.0.12", - "react": "19.0.0", + "react": "19.1.0", "zod": "^3.24.2" }, "typesVersions": { diff --git a/packages/monitoring/core/package.json b/packages/monitoring/core/package.json index dd5941b65..54a039294 100644 --- a/packages/monitoring/core/package.json +++ b/packages/monitoring/core/package.json @@ -18,7 +18,7 @@ "@kit/prettier-config": "workspace:*", "@kit/tsconfig": "workspace:*", "@types/react": "19.0.12", - "react": "19.0.0" + "react": "19.1.0" }, "typesVersions": { "*": { diff --git a/packages/monitoring/sentry/package.json b/packages/monitoring/sentry/package.json index 7b89c09fa..cb9cf7a7c 100644 --- a/packages/monitoring/sentry/package.json +++ b/packages/monitoring/sentry/package.json @@ -16,7 +16,7 @@ "./config/server": "./src/sentry.client.server.ts" }, "dependencies": { - "@sentry/nextjs": "^9.10.0", + "@sentry/nextjs": "^9.10.1", "import-in-the-middle": "1.13.1" }, "devDependencies": { @@ -25,7 +25,7 @@ "@kit/prettier-config": "workspace:*", "@kit/tsconfig": "workspace:*", "@types/react": "19.0.12", - "react": "19.0.0" + "react": "19.1.0" }, "typesVersions": { "*": { diff --git a/packages/otp/package.json b/packages/otp/package.json index d8ea474a6..4e4236370 100644 --- a/packages/otp/package.json +++ b/packages/otp/package.json @@ -28,9 +28,9 @@ "@supabase/supabase-js": "2.49.3", "@types/react": "19.0.12", "@types/react-dom": "19.0.4", - "react": "19.0.0", - "react-dom": "19.0.0", - "react-hook-form": "^7.54.2", + "react": "19.1.0", + "react-dom": "19.1.0", + "react-hook-form": "^7.55.0", "zod": "^3.24.2" }, "typesVersions": { diff --git a/packages/shared/src/utils.ts b/packages/shared/src/utils.ts index a9d6a26f2..4ec9ae71a 100644 --- a/packages/shared/src/utils.ts +++ b/packages/shared/src/utils.ts @@ -14,7 +14,9 @@ export function formatCurrency(params: { locale: string; value: string | number; }) { - return new Intl.NumberFormat(params.locale, { + const [lang, region] = params.locale.split('-'); + + return new Intl.NumberFormat(region ?? lang, { style: 'currency', currency: params.currencyCode, }).format(Number(params.value)); diff --git a/packages/supabase/package.json b/packages/supabase/package.json index 112769edb..a67b40515 100644 --- a/packages/supabase/package.json +++ b/packages/supabase/package.json @@ -29,10 +29,10 @@ "@kit/tsconfig": "workspace:*", "@supabase/ssr": "^0.6.1", "@supabase/supabase-js": "2.49.3", - "@tanstack/react-query": "5.69.2", + "@tanstack/react-query": "5.70.0", "@types/react": "19.0.12", "next": "15.2.4", - "react": "19.0.0", + "react": "19.1.0", "server-only": "^0.0.1", "zod": "^3.24.2" }, diff --git a/packages/ui/package.json b/packages/ui/package.json index 5d69130e4..5945fbccd 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -33,7 +33,7 @@ "clsx": "^2.1.1", "cmdk": "1.1.1", "input-otp": "1.4.2", - "lucide-react": "^0.484.0", + "lucide-react": "^0.485.0", "react-top-loading-bar": "3.0.2", "recharts": "2.15.1", "tailwind-merge": "^3.0.2" @@ -43,7 +43,7 @@ "@kit/prettier-config": "workspace:*", "@kit/tsconfig": "workspace:*", "@radix-ui/react-icons": "^1.3.2", - "@tanstack/react-query": "5.69.2", + "@tanstack/react-query": "5.70.0", "@tanstack/react-table": "^8.21.2", "@types/react": "19.0.12", "@types/react-dom": "19.0.4", @@ -54,7 +54,7 @@ "next-themes": "0.4.6", "prettier": "^3.5.3", "react-day-picker": "^8.10.1", - "react-hook-form": "^7.54.2", + "react-hook-form": "^7.55.0", "react-i18next": "^15.4.1", "sonner": "^2.0.2", "tailwindcss": "4.0.17", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 8b1d02e33..f5da82380 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -35,25 +35,25 @@ importers: dependencies: '@hookform/resolvers': specifier: ^4.1.3 - version: 4.1.3(react-hook-form@7.54.2(react@19.0.0)) + version: 4.1.3(react-hook-form@7.55.0(react@19.1.0)) '@tanstack/react-query': - specifier: 5.69.2 - version: 5.69.2(react@19.0.0) + specifier: 5.70.0 + version: 5.70.0(react@19.1.0) lucide-react: - specifier: ^0.484.0 - version: 0.484.0(react@19.0.0) + specifier: ^0.485.0 + version: 0.485.0(react@19.1.0) next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-e1e972c-20250221)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-e1e972c-20250221)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) nodemailer: specifier: ^6.10.0 version: 6.10.0 react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 react-dom: - specifier: 19.0.0 - version: 19.0.0(react@19.0.0) + specifier: 19.1.0 + version: 19.1.0(react@19.1.0) devDependencies: '@kit/email-templates': specifier: workspace:* @@ -92,8 +92,8 @@ importers: specifier: ^13.0.0 version: 13.0.0 react-hook-form: - specifier: ^7.54.2 - version: 7.54.2(react@19.0.0) + specifier: ^7.55.0 + version: 7.55.0(react@19.1.0) tailwindcss: specifier: 4.0.17 version: 4.0.17 @@ -126,10 +126,10 @@ importers: dependencies: '@edge-csrf/nextjs': specifier: 2.5.3-cloudflare-rc1 - version: 2.5.3-cloudflare-rc1(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) + version: 2.5.3-cloudflare-rc1(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)) '@hookform/resolvers': specifier: ^4.1.3 - version: 4.1.3(react-hook-form@7.54.2(react@19.0.0)) + version: 4.1.3(react-hook-form@7.55.0(react@19.1.0)) '@kit/accounts': specifier: workspace:* version: link:../../packages/features/accounts @@ -189,55 +189,55 @@ importers: version: 0.0.10(@supabase/postgrest-js@1.19.3)(@supabase/supabase-js@2.49.3) '@makerkit/data-loader-supabase-nextjs': specifier: ^1.2.5 - version: 1.2.5(@supabase/postgrest-js@1.19.3)(@supabase/supabase-js@2.49.3)(@tanstack/react-query@5.69.2(react@19.0.0))(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) + version: 1.2.5(@supabase/postgrest-js@1.19.3)(@supabase/supabase-js@2.49.3)(@tanstack/react-query@5.70.0(react@19.1.0))(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0) '@marsidev/react-turnstile': specifier: ^1.1.0 - version: 1.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-icons': specifier: ^1.3.2 - version: 1.3.2(react@19.0.0) + version: 1.3.2(react@19.1.0) '@supabase/supabase-js': specifier: 2.49.3 version: 2.49.3 '@tanstack/react-query': - specifier: 5.69.2 - version: 5.69.2(react@19.0.0) + specifier: 5.70.0 + version: 5.70.0(react@19.1.0) '@tanstack/react-table': specifier: ^8.21.2 - version: 8.21.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 8.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) date-fns: specifier: ^4.1.0 version: 4.1.0 lucide-react: - specifier: ^0.484.0 - version: 0.484.0(react@19.0.0) + specifier: ^0.485.0 + version: 0.485.0(react@19.1.0) next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) next-sitemap: specifier: ^4.2.3 - version: 4.2.3(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)) + version: 4.2.3(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(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.0.0(react@19.0.0))(react@19.0.0) + version: 0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 react-dom: - specifier: 19.0.0 - version: 19.0.0(react@19.0.0) + specifier: 19.1.0 + version: 19.1.0(react@19.1.0) react-hook-form: - specifier: ^7.54.2 - version: 7.54.2(react@19.0.0) + specifier: ^7.55.0 + version: 7.55.0(react@19.1.0) react-i18next: specifier: ^15.4.1 - version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) recharts: specifier: 2.15.1 - version: 2.15.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 2.15.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) sonner: specifier: ^2.0.2 - version: 2.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 2.0.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) tailwind-merge: specifier: ^3.0.2 version: 3.0.2 @@ -334,7 +334,7 @@ importers: devDependencies: '@hookform/resolvers': specifier: ^4.1.3 - version: 4.1.3(react-hook-form@7.54.2(react@19.0.0)) + version: 4.1.3(react-hook-form@7.55.0(react@19.1.0)) '@kit/billing': specifier: workspace:* version: link:../core @@ -372,20 +372,20 @@ importers: specifier: ^4.1.0 version: 4.1.0 lucide-react: - specifier: ^0.484.0 - version: 0.484.0(react@19.0.0) + specifier: ^0.485.0 + version: 0.485.0(react@19.1.0) next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 react-hook-form: - specifier: ^7.54.2 - version: 7.54.2(react@19.0.0) + specifier: ^7.55.0 + version: 7.55.0(react@19.1.0) react-i18next: specifier: ^15.4.1 - version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) zod: specifier: ^3.24.2 version: 3.24.2 @@ -422,10 +422,10 @@ importers: version: 19.0.12 next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 zod: specifier: ^3.24.2 version: 3.24.2 @@ -434,7 +434,7 @@ importers: dependencies: '@stripe/react-stripe-js': specifier: ^3.5.1 - version: 3.5.1(@stripe/stripe-js@6.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 3.5.1(@stripe/stripe-js@6.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@stripe/stripe-js': specifier: ^6.1.0 version: 6.1.0 @@ -471,10 +471,10 @@ importers: version: 4.1.0 next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 zod: specifier: ^3.24.2 version: 3.24.2 @@ -510,13 +510,13 @@ importers: dependencies: '@keystatic/core': specifier: 0.5.46 - version: 0.5.46(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 0.5.46(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@keystatic/next': specifier: ^5.0.4 - version: 5.0.4(@keystatic/core@0.5.46(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 5.0.4(@keystatic/core@0.5.46(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@markdoc/markdoc': specifier: ^0.5.1 - version: 0.5.1(@types/react@19.0.12)(react@19.0.0) + version: 0.5.1(@types/react@19.0.12)(react@19.1.0) devDependencies: '@kit/cms-types': specifier: workspace:* @@ -540,8 +540,8 @@ importers: specifier: 19.0.12 version: 19.0.12 react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 zod: specifier: ^3.24.2 version: 3.24.2 @@ -625,7 +625,7 @@ importers: dependencies: '@react-email/components': specifier: 0.0.34 - version: 0.0.34(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 0.0.34(react-dom@19.1.0(react@19.1.0))(react@19.1.0) devDependencies: '@kit/eslint-config': specifier: workspace:* @@ -648,7 +648,7 @@ importers: devDependencies: '@hookform/resolvers': specifier: ^4.1.3 - version: 4.1.3(react-hook-form@7.54.2(react@19.0.0)) + version: 4.1.3(react-hook-form@7.55.0(react@19.1.0)) '@kit/billing-gateway': specifier: workspace:* version: link:../../billing/gateway @@ -687,13 +687,13 @@ importers: version: link:../../ui '@radix-ui/react-icons': specifier: ^1.3.2 - version: 1.3.2(react@19.0.0) + version: 1.3.2(react@19.1.0) '@supabase/supabase-js': specifier: 2.49.3 version: 2.49.3 '@tanstack/react-query': - specifier: 5.69.2 - version: 5.69.2(react@19.0.0) + specifier: 5.70.0 + version: 5.70.0(react@19.1.0) '@types/react': specifier: 19.0.12 version: 19.0.12 @@ -701,29 +701,29 @@ importers: specifier: 19.0.4 version: 19.0.4(@types/react@19.0.12) lucide-react: - specifier: ^0.484.0 - version: 0.484.0(react@19.0.0) + specifier: ^0.485.0 + version: 0.485.0(react@19.1.0) next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(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.0.0(react@19.0.0))(react@19.0.0) + version: 0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 react-dom: - specifier: 19.0.0 - version: 19.0.0(react@19.0.0) + specifier: 19.1.0 + version: 19.1.0(react@19.1.0) react-hook-form: - specifier: ^7.54.2 - version: 7.54.2(react@19.0.0) + specifier: ^7.55.0 + version: 7.55.0(react@19.1.0) react-i18next: specifier: ^15.4.1 - version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) sonner: specifier: ^2.0.2 - version: 2.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 2.0.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) zod: specifier: ^3.24.2 version: 3.24.2 @@ -732,7 +732,7 @@ importers: devDependencies: '@hookform/resolvers': specifier: ^4.1.3 - version: 4.1.3(react-hook-form@7.54.2(react@19.0.0)) + version: 4.1.3(react-hook-form@7.55.0(react@19.1.0)) '@kit/eslint-config': specifier: workspace:* version: link:../../../tooling/eslint @@ -759,34 +759,34 @@ importers: version: 0.0.10(@supabase/postgrest-js@1.19.3)(@supabase/supabase-js@2.49.3) '@makerkit/data-loader-supabase-nextjs': specifier: ^1.2.5 - version: 1.2.5(@supabase/postgrest-js@1.19.3)(@supabase/supabase-js@2.49.3)(@tanstack/react-query@5.69.2(react@19.0.0))(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0) + version: 1.2.5(@supabase/postgrest-js@1.19.3)(@supabase/supabase-js@2.49.3)(@tanstack/react-query@5.70.0(react@19.1.0))(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0) '@supabase/supabase-js': specifier: 2.49.3 version: 2.49.3 '@tanstack/react-query': - specifier: 5.69.2 - version: 5.69.2(react@19.0.0) + specifier: 5.70.0 + version: 5.70.0(react@19.1.0) '@tanstack/react-table': specifier: ^8.21.2 - version: 8.21.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 8.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@types/react': specifier: 19.0.12 version: 19.0.12 lucide-react: - specifier: ^0.484.0 - version: 0.484.0(react@19.0.0) + specifier: ^0.485.0 + version: 0.485.0(react@19.1.0) next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 react-dom: - specifier: 19.0.0 - version: 19.0.0(react@19.0.0) + specifier: 19.1.0 + version: 19.1.0(react@19.1.0) react-hook-form: - specifier: ^7.54.2 - version: 7.54.2(react@19.0.0) + specifier: ^7.55.0 + version: 7.55.0(react@19.1.0) zod: specifier: ^3.24.2 version: 3.24.2 @@ -795,7 +795,7 @@ importers: devDependencies: '@hookform/resolvers': specifier: ^4.1.3 - version: 4.1.3(react-hook-form@7.54.2(react@19.0.0)) + version: 4.1.3(react-hook-form@7.55.0(react@19.1.0)) '@kit/eslint-config': specifier: workspace:* version: link:../../../tooling/eslint @@ -816,34 +816,34 @@ importers: version: link:../../ui '@marsidev/react-turnstile': specifier: ^1.1.0 - version: 1.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-icons': specifier: ^1.3.2 - version: 1.3.2(react@19.0.0) + version: 1.3.2(react@19.1.0) '@supabase/supabase-js': specifier: 2.49.3 version: 2.49.3 '@tanstack/react-query': - specifier: 5.69.2 - version: 5.69.2(react@19.0.0) + specifier: 5.70.0 + version: 5.70.0(react@19.1.0) '@types/react': specifier: 19.0.12 version: 19.0.12 lucide-react: - specifier: ^0.484.0 - version: 0.484.0(react@19.0.0) + specifier: ^0.485.0 + version: 0.485.0(react@19.1.0) next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react-hook-form: - specifier: ^7.54.2 - version: 7.54.2(react@19.0.0) + specifier: ^7.55.0 + version: 7.55.0(react@19.1.0) react-i18next: specifier: ^15.4.1 - version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) sonner: specifier: ^2.0.2 - version: 2.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 2.0.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) zod: specifier: ^3.24.2 version: 3.24.2 @@ -869,23 +869,23 @@ importers: specifier: 2.49.3 version: 2.49.3 '@tanstack/react-query': - specifier: 5.69.2 - version: 5.69.2(react@19.0.0) + specifier: 5.70.0 + version: 5.70.0(react@19.1.0) '@types/react': specifier: 19.0.12 version: 19.0.12 lucide-react: - specifier: ^0.484.0 - version: 0.484.0(react@19.0.0) + specifier: ^0.485.0 + version: 0.485.0(react@19.1.0) react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 react-dom: - specifier: 19.0.0 - version: 19.0.0(react@19.0.0) + specifier: 19.1.0 + version: 19.1.0(react@19.1.0) react-i18next: specifier: ^15.4.1 - version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) packages/features/team-accounts: dependencies: @@ -895,7 +895,7 @@ importers: devDependencies: '@hookform/resolvers': specifier: ^4.1.3 - version: 4.1.3(react-hook-form@7.54.2(react@19.0.0)) + version: 4.1.3(react-hook-form@7.55.0(react@19.1.0)) '@kit/accounts': specifier: workspace:* version: link:../accounts @@ -939,11 +939,11 @@ importers: specifier: 2.49.3 version: 2.49.3 '@tanstack/react-query': - specifier: 5.69.2 - version: 5.69.2(react@19.0.0) + specifier: 5.70.0 + version: 5.70.0(react@19.1.0) '@tanstack/react-table': specifier: ^8.21.2 - version: 8.21.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 8.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@types/react': specifier: 19.0.12 version: 19.0.12 @@ -957,26 +957,26 @@ importers: specifier: ^4.1.0 version: 4.1.0 lucide-react: - specifier: ^0.484.0 - version: 0.484.0(react@19.0.0) + specifier: ^0.485.0 + version: 0.485.0(react@19.1.0) next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 react-dom: - specifier: 19.0.0 - version: 19.0.0(react@19.0.0) + specifier: 19.1.0 + version: 19.1.0(react@19.1.0) react-hook-form: - specifier: ^7.54.2 - version: 7.54.2(react@19.0.0) + specifier: ^7.55.0 + version: 7.55.0(react@19.1.0) react-i18next: specifier: ^15.4.1 - version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) sonner: specifier: ^2.0.2 - version: 2.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 2.0.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) zod: specifier: ^3.24.2 version: 3.24.2 @@ -1006,20 +1006,20 @@ importers: specifier: workspace:* version: link:../../tooling/typescript '@tanstack/react-query': - specifier: 5.69.2 - version: 5.69.2(react@19.0.0) + specifier: 5.70.0 + version: 5.70.0(react@19.1.0) next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 react-dom: - specifier: 19.0.0 - version: 19.0.0(react@19.0.0) + specifier: 19.1.0 + version: 19.1.0(react@19.1.0) react-i18next: specifier: ^15.4.1 - version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) packages/mailers/core: devDependencies: @@ -1139,8 +1139,8 @@ importers: specifier: 19.0.12 version: 19.0.12 react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 zod: specifier: ^3.24.2 version: 3.24.2 @@ -1149,10 +1149,10 @@ importers: dependencies: '@baselime/node-opentelemetry': specifier: ^0.5.8 - version: 0.5.8(@trpc/server@11.0.0(typescript@5.8.2)) + version: 0.5.8(@trpc/server@11.0.1(typescript@5.8.2)) '@baselime/react-rum': specifier: ^0.3.1 - version: 0.3.1(react@19.0.0) + version: 0.3.1(react@19.1.0) '@kit/monitoring-core': specifier: workspace:* version: link:../core @@ -1170,8 +1170,8 @@ importers: specifier: 19.0.12 version: 19.0.12 react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 zod: specifier: ^3.24.2 version: 3.24.2 @@ -1191,14 +1191,14 @@ importers: specifier: 19.0.12 version: 19.0.12 react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 packages/monitoring/sentry: dependencies: '@sentry/nextjs': - specifier: ^9.10.0 - version: 9.10.0(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(next@15.2.4(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.98.0) + specifier: ^9.10.1 + version: 9.10.1(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(next@15.2.4(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)(webpack@5.98.0) import-in-the-middle: specifier: 1.13.1 version: 1.13.1 @@ -1219,8 +1219,8 @@ importers: specifier: 19.0.12 version: 19.0.12 react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 packages/next: devDependencies: @@ -1247,7 +1247,7 @@ importers: version: 2.49.3 next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) zod: specifier: ^3.24.2 version: 3.24.2 @@ -1256,7 +1256,7 @@ importers: devDependencies: '@hookform/resolvers': specifier: ^4.1.3 - version: 4.1.3(react-hook-form@7.54.2(react@19.0.0)) + version: 4.1.3(react-hook-form@7.55.0(react@19.1.0)) '@kit/email-templates': specifier: workspace:* version: link:../email-templates @@ -1286,7 +1286,7 @@ importers: version: link:../ui '@radix-ui/react-icons': specifier: ^1.3.2 - version: 1.3.2(react@19.0.0) + version: 1.3.2(react@19.1.0) '@supabase/supabase-js': specifier: 2.49.3 version: 2.49.3 @@ -1297,14 +1297,14 @@ importers: specifier: 19.0.4 version: 19.0.4(@types/react@19.0.12) react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 react-dom: - specifier: 19.0.0 - version: 19.0.0(react@19.0.0) + specifier: 19.1.0 + version: 19.1.0(react@19.1.0) react-hook-form: - specifier: ^7.54.2 - version: 7.54.2(react@19.0.0) + specifier: ^7.55.0 + version: 7.55.0(react@19.1.0) zod: specifier: ^3.24.2 version: 3.24.2 @@ -1346,17 +1346,17 @@ importers: specifier: 2.49.3 version: 2.49.3 '@tanstack/react-query': - specifier: 5.69.2 - version: 5.69.2(react@19.0.0) + specifier: 5.70.0 + version: 5.70.0(react@19.1.0) '@types/react': specifier: 19.0.12 version: 19.0.12 next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) react: - specifier: 19.0.0 - version: 19.0.0 + specifier: 19.1.0 + version: 19.1.0 server-only: specifier: ^0.0.1 version: 0.0.1 @@ -1368,85 +1368,85 @@ importers: dependencies: '@hookform/resolvers': specifier: ^4.1.3 - version: 4.1.3(react-hook-form@7.54.2(react@19.0.0)) + version: 4.1.3(react-hook-form@7.55.0(react@19.1.0)) '@radix-ui/react-accordion': specifier: 1.2.3 - version: 1.2.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.2.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-alert-dialog': specifier: ^1.1.6 - version: 1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-avatar': specifier: ^1.1.3 - version: 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-checkbox': specifier: ^1.1.4 - version: 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-collapsible': specifier: 1.1.3 - version: 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-dialog': specifier: ^1.1.6 - version: 1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-dropdown-menu': specifier: ^2.1.6 - version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-label': specifier: ^2.1.2 - version: 2.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 2.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-navigation-menu': specifier: ^1.2.5 - version: 1.2.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.2.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-popover': specifier: ^1.1.6 - version: 1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-progress': specifier: ^1.1.2 - version: 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-radio-group': specifier: ^1.2.3 - version: 1.2.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.2.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-scroll-area': specifier: ^1.2.3 - version: 1.2.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.2.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-select': specifier: ^2.1.6 - version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-separator': specifier: ^1.1.2 - version: 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-slot': specifier: ^1.1.2 - version: 1.1.2(@types/react@19.0.12)(react@19.0.0) + version: 1.1.2(@types/react@19.0.12)(react@19.1.0) '@radix-ui/react-switch': specifier: ^1.1.3 - version: 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-tabs': specifier: ^1.1.3 - version: 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-toast': specifier: ^1.2.6 - version: 1.2.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.2.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@radix-ui/react-tooltip': specifier: 1.1.8 - version: 1.1.8(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.8(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) clsx: specifier: ^2.1.1 version: 2.1.1 cmdk: specifier: 1.1.1 - version: 1.1.1(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.1.1(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) input-otp: specifier: 1.4.2 - version: 1.4.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.4.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) lucide-react: - specifier: ^0.484.0 - version: 0.484.0(react@19.0.0) + specifier: ^0.485.0 + version: 0.485.0(react@19.1.0) react-top-loading-bar: specifier: 3.0.2 - version: 3.0.2(react@19.0.0) + version: 3.0.2(react@19.1.0) recharts: specifier: 2.15.1 - version: 2.15.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 2.15.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) tailwind-merge: specifier: ^3.0.2 version: 3.0.2 @@ -1462,13 +1462,13 @@ importers: version: link:../../tooling/typescript '@radix-ui/react-icons': specifier: ^1.3.2 - version: 1.3.2(react@19.0.0) + version: 1.3.2(react@19.1.0) '@tanstack/react-query': - specifier: 5.69.2 - version: 5.69.2(react@19.0.0) + specifier: 5.70.0 + version: 5.70.0(react@19.1.0) '@tanstack/react-table': specifier: ^8.21.2 - version: 8.21.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 8.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@types/react': specifier: 19.0.12 version: 19.0.12 @@ -1486,25 +1486,25 @@ importers: version: 9.23.0(jiti@2.4.2) next: specifier: 15.2.4 - version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(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.0.0(react@19.0.0))(react@19.0.0) + version: 0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0) prettier: specifier: ^3.5.3 version: 3.5.3 react-day-picker: specifier: ^8.10.1 - version: 8.10.1(date-fns@4.1.0)(react@19.0.0) + version: 8.10.1(date-fns@4.1.0)(react@19.1.0) react-hook-form: - specifier: ^7.54.2 - version: 7.54.2(react@19.0.0) + specifier: ^7.55.0 + version: 7.55.0(react@19.1.0) react-i18next: specifier: ^15.4.1 - version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) sonner: specifier: ^2.0.2 - version: 2.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 2.0.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) tailwindcss: specifier: 4.0.17 version: 4.0.17 @@ -3918,32 +3918,32 @@ packages: '@selderee/plugin-htmlparser2@0.11.0': resolution: {integrity: sha512-P33hHGdldxGabLFjPPpaTxVolMrzrcegejx+0GxjrIb9Zv48D8yAIA/QTDR2dFl7Uz7urX8aX6+5bCZslr+gWQ==} - '@sentry-internal/browser-utils@9.10.0': - resolution: {integrity: sha512-AJDqCNG+bjDwiww80+0aWtLj6wCm+OrQ24IOwz3NXEAv0G6o2RpjQcfgYZ3Qo8u1fqwsNX1TfzVdA7ipDzyoiw==} + '@sentry-internal/browser-utils@9.10.1': + resolution: {integrity: sha512-O/ibpHbKfpG+xtZuEzbLNtLcbanRcDYGxT+QbslVItmcS9GjMSwvMpp1jnD9Y7/LIFtv7O1gJZ9Hrz///lLprw==} engines: {node: '>=18'} - '@sentry-internal/feedback@9.10.0': - resolution: {integrity: sha512-C5VFKrIqrD+seM927wiqYmPlKkhijbIGIpQCLx53e4nxs2E9xc7aIb5zksFrpM+G0gAB6E12Cf54ATcxFMXd8A==} + '@sentry-internal/feedback@9.10.1': + resolution: {integrity: sha512-DM32eAzRvXk36iGBWtlLZA88QzOFBODd+kbz55X4Py+1bDNdRc3Vl6214uuAr7iweHcOQy1rIvmAeO8Xusp7tQ==} engines: {node: '>=18'} - '@sentry-internal/replay-canvas@9.10.0': - resolution: {integrity: sha512-DsM+v27w87ZFbGo0AmerS3DokbUGOo805GmAcDeZMekYe40TR7xXy5E4EJIY4v/da6aIlmo3CQcIGbcJ/QS9+g==} + '@sentry-internal/replay-canvas@9.10.1': + resolution: {integrity: sha512-fxrpqElqdsAQrzVly0V/XaljhAlwwMk+iGyf+wZeK6RwEPVxtoxXVfx7fEEtPn+gortqQR09N/zH179hefjuaw==} engines: {node: '>=18'} - '@sentry-internal/replay@9.10.0': - resolution: {integrity: sha512-OvVA7zMXkQ++p75sriICOINJCAscnnulDPuYGHn3SJgZdkHwQMMcTv+BN1q7SBz2xzxRriqW9/vKGZlGeS8rbw==} + '@sentry-internal/replay@9.10.1': + resolution: {integrity: sha512-nqG33NwojtteL8e3Qg/SOu0BsTJ9R7AjpmQIlOpFGL007nzKgcJHOngewd7FEHyB+F3iOI0MoI9iEWhRFEGRLw==} engines: {node: '>=18'} - '@sentry/babel-plugin-component-annotate@3.2.3': - resolution: {integrity: sha512-nbFvTHD7wOfxsqsbkyDVxxi1XMv6j54TW6i0vwLnzq3uwsSno/bs2Xzdc+mzXyMmji1b27kpOPiI2fKBi3XXVQ==} + '@sentry/babel-plugin-component-annotate@3.2.4': + resolution: {integrity: sha512-yBzRn3GEUSv1RPtE4xB4LnuH74ZxtdoRJ5cmQ9i6mzlmGDxlrnKuvem5++AolZTE9oJqAD3Tx2rd1PqmpWnLoA==} engines: {node: '>= 14'} - '@sentry/browser@9.10.0': - resolution: {integrity: sha512-q9WZ50uJLuWbtyk1MoCc7L3y9aokL+0wkWksbwjkJL3icRdDnKumJyP8nWCjHLyyeSSJhwtHDidajAP79JFW0Q==} + '@sentry/browser@9.10.1': + resolution: {integrity: sha512-9RWjcyskhnDK2Q6LntFR90EqZD5+DXcXNqeTlE+mpVf65y7wz+9SIuVjAMP7qiDBwfxNbmTxiVCXeCuQnnATsQ==} engines: {node: '>=18'} - '@sentry/bundler-plugin-core@3.2.3': - resolution: {integrity: sha512-efg4F0ia1eO0GdWF9a/9tyKQaP5eHABBU8v/zFTmdw6WCPozFH+aRvfXOVSLGoII/sduRamW9BiUlE4NxrWPqQ==} + '@sentry/bundler-plugin-core@3.2.4': + resolution: {integrity: sha512-YMj9XW5W2JA89EeweE7CPKLDz245LBsI1JhCmqpt/bjSvmsSIAAPsLYnvIJBS3LQFm0OhtG8NB54PTi96dAcMA==} engines: {node: '>= 14'} '@sentry/cli-darwin@2.42.2': @@ -3992,22 +3992,22 @@ packages: engines: {node: '>= 10'} hasBin: true - '@sentry/core@9.10.0': - resolution: {integrity: sha512-l3U/dOj9R2jcSLrSfPVkU7v6EUaEH7jgPYYyR+ug61oeSZ1/i/mgD2BpGk5FJd1e5mXCuNVmeFxirwCUZF3+ZA==} + '@sentry/core@9.10.1': + resolution: {integrity: sha512-TE2zZV3Od4131mZNgFo2Mv4aKU8FXxL0s96yqRvmV+8AU57mJoycMXBnmNSYfWuDICbPJTVAp+3bYMXwX7N5YA==} engines: {node: '>=18'} - '@sentry/nextjs@9.10.0': - resolution: {integrity: sha512-/Fmh8pIH6r9/NwchtnCKFlrg599sH6mf/0G+oqb0fv55RdkiLELgYeBpJe8VdAAp6+h9wdDkIrpvZWhOCpD2Kg==} + '@sentry/nextjs@9.10.1': + resolution: {integrity: sha512-9djjZ0nUZIG1RFC4QtavQXjkwxXbpYKVnpx83fOtairZRJQLoM1zdKKNSFNPAaVbU4DQIwO8CSoHxgKg2rnODA==} engines: {node: '>=18'} peerDependencies: next: ^13.2.0 || ^14.0 || ^15.0.0-rc.0 - '@sentry/node@9.10.0': - resolution: {integrity: sha512-Q4ihgygBaCVnheJxnJN6puU9QjZoezRr98C9vIJvjtlO1M21dVGGvEw6WzdA2IlKHX/ayga8LhNioo9bOJ2A8A==} + '@sentry/node@9.10.1': + resolution: {integrity: sha512-salNc4R0GiZZNNScNpdAB3OI3kz+clmgXL1rl5O2Kh1IW5vftf5I69n+qqZLJ3kaUp0Sm6V+deCHyUOnw9GozA==} engines: {node: '>=18'} - '@sentry/opentelemetry@9.10.0': - resolution: {integrity: sha512-MRskt+ZoklLXo+ONl6dFpvJyT3/RqNgq26pw7eLdCsxqFKkmCgjjf8US/UZlbg5dahwiZRvkE1wSgDgIKzb/6g==} + '@sentry/opentelemetry@9.10.1': + resolution: {integrity: sha512-qqcsbIyoOPI91Tm6w0oFzsx/mlu+lywRGSVbPRFhk4zCXBOhCCp4Mg7nwKK0wGJ7AZRl6qtELrRSGClAthC55g==} engines: {node: '>=18'} peerDependencies: '@opentelemetry/api': ^1.9.0 @@ -4017,18 +4017,18 @@ packages: '@opentelemetry/sdk-trace-base': ^1.30.1 '@opentelemetry/semantic-conventions': ^1.28.0 - '@sentry/react@9.10.0': - resolution: {integrity: sha512-kVWxQvWye947eB2eRHshX9Lu0Tl3AkYE8rXf26CkgU8VmukOdC5qQndENkr65VDKCgJoN/aGR+Rv2bUD9dlDNw==} + '@sentry/react@9.10.1': + resolution: {integrity: sha512-DYBs3F+F2elWEhWvp3HmBmORhAlTBbY0KsRj+Lt2mOSEfiz8WWrS3Ibe+9QmErVdjQZy68ic9Yt84MHL/rlmkQ==} engines: {node: '>=18'} peerDependencies: react: ^16.14.0 || 17.x || 18.x || 19.x - '@sentry/vercel-edge@9.10.0': - resolution: {integrity: sha512-kWu0O8PunN9Neg/JyjsV18+1E5VXHWN8JQ7DWkb24dMSLtaLgp3r2MLxjZeLUL2VqN1tFCjHz3TzFYthn1nNhw==} + '@sentry/vercel-edge@9.10.1': + resolution: {integrity: sha512-t8fo+jYfHHaKUl9oBpwlqpwmjGixda2nkaZUwCxsceYMtZoZfQ3o/Evi1KchTSiVMsTDj+/OeGXcrfQcu/2uoA==} engines: {node: '>=18'} - '@sentry/webpack-plugin@3.2.3': - resolution: {integrity: sha512-uBRJO54wOqZ2csi/JT0kLeNpjClypwYBsyrqKgDSp04N2oEnt1eZr4L4yS4kNShI/ZrkA5Q4VWuFk5cCB2f/ew==} + '@sentry/webpack-plugin@3.2.4': + resolution: {integrity: sha512-LCuNu5LXPSCq2BNke1zvEW8CXL4SPBsCjYexAx51PZ6Lp87VxWcCxGqXhr37MGpYwY10A1r31/XOe69iXHJjGA==} engines: {node: '>= 14'} peerDependencies: webpack: '>=4.40.0' @@ -4167,11 +4167,11 @@ packages: '@tailwindcss/postcss@4.0.17': resolution: {integrity: sha512-qeJbRTB5FMZXmuJF+eePd235EGY6IyJZF0Bh0YM6uMcCI4L9Z7dy+lPuLAhxOJzxnajsbjPoDAKOuAqZRtf1PQ==} - '@tanstack/query-core@5.69.2': - resolution: {integrity: sha512-+spKBqGMSxVMhYPMHr4L7efc4CDdb0Y8nE4UxP/FjV4V3ajP3uhBsh0T7pSuObBgYkU+nY1PRkJhKNmwlHmkUg==} + '@tanstack/query-core@5.70.0': + resolution: {integrity: sha512-ZkkjQAZjI6nS5OyAmaSQafQXK180Xvp0lZYk4BzrnskkTV8On3zSJUxOIXnh0h/8EgqRkCA9i879DiJovA1kGw==} - '@tanstack/react-query@5.69.2': - resolution: {integrity: sha512-m5clVHliwYK1ZAhS7m6A/PfEU/ibzZjhLszw/YuNFw5rHoKcX6Y6JO4eRV4ugpZFIn0sZ5lSrbcz/jwzAGI2pw==} + '@tanstack/react-query@5.70.0': + resolution: {integrity: sha512-z0tx1zz2CQ6nTm+fCaOp93FqsFjNgXtOy+4mC5ifQ4B+rJiMD0AGfJrYSGh/OuefhrzTYDAbkGUAGw6JzkWy8g==} peerDependencies: react: ^18 || ^19 @@ -4210,8 +4210,8 @@ packages: svelte: optional: true - '@trpc/server@11.0.0': - resolution: {integrity: sha512-xY9q/b/wR/tWGYTm5xmRjivkYD2EZZXmOKmHuNJRYZuLbieeNUsdfQRjJC409WB1pjKWInomhHwuA8bahZJ4lQ==} + '@trpc/server@11.0.1': + resolution: {integrity: sha512-DZS3+bONLno4oJjHBMrS3xRPtoZsnmBImDH/Mmo1QhaFt3Xp/S0Riu7WU/oofsLTVj2m1UO5LlgLJFumvlSNoQ==} peerDependencies: typescript: '>=5.7.2' @@ -6359,8 +6359,8 @@ packages: resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==} engines: {node: '>=12'} - lucide-react@0.484.0: - resolution: {integrity: sha512-oZy8coK9kZzvqhSgfbGkPtTgyjpBvs3ukLgDPv14dSOZtBtboryWF5o8i3qen7QbGg7JhiJBz5mK1p8YoMZTLQ==} + lucide-react@0.485.0: + resolution: {integrity: sha512-NvyQJ0LKyyCxL23nPKESlr/jmz8r7fJO1bkuptSNYSy0s8VVj4ojhX0YAgmE1e0ewfxUZjIlZpvH+otfTnla8Q==} peerDependencies: react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0 @@ -7274,18 +7274,18 @@ packages: date-fns: ^2.28.0 || ^3.0.0 react: ^16.8.0 || ^17.0.0 || ^18.0.0 - react-dom@19.0.0: - resolution: {integrity: sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==} + react-dom@19.1.0: + resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==} peerDependencies: - react: ^19.0.0 + react: ^19.1.0 react-error-boundary@4.1.2: resolution: {integrity: sha512-GQDxZ5Jd+Aq/qUxbCm1UtzmL/s++V7zKgE8yMktJiCQXCCFZnMZh9ng+6/Ne6PjNSXH0L9CjeOEREfRnq6Duag==} peerDependencies: react: '>=16.13.1' - react-hook-form@7.54.2: - resolution: {integrity: sha512-eHpAUgUjWbZocoQYUHposymRb4ZP6d0uwUnooL2uOybA9/3tPUvoAKqEWK1WaSiTxxOfTpffNZP7QwlnM3/gEg==} + react-hook-form@7.55.0: + resolution: {integrity: sha512-XRnjsH3GVMQz1moZTW53MxfoWN7aDpUg/GpVNc4A3eXRVNdGXfbzJ4vM4aLQ8g6XCUh1nIbx70aaNCl7kxnjog==} engines: {node: '>=18.0.0'} peerDependencies: react: ^16.8.0 || ^17 || ^18 || ^19 @@ -7357,8 +7357,8 @@ packages: react: '>=16.6.0' react-dom: '>=16.6.0' - react@19.0.0: - resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==} + react@19.1.0: + resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==} engines: {node: '>=0.10.0'} read-cmd-shim@5.0.0: @@ -7512,8 +7512,8 @@ packages: safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - scheduler@0.25.0: - resolution: {integrity: sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==} + scheduler@0.26.0: + resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==} schema-utils@4.3.0: resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==} @@ -8466,7 +8466,7 @@ snapshots: '@babel/helper-string-parser': 7.25.9 '@babel/helper-validator-identifier': 7.25.9 - '@baselime/node-opentelemetry@0.5.8(@trpc/server@11.0.0(typescript@5.8.2))': + '@baselime/node-opentelemetry@0.5.8(@trpc/server@11.0.1(typescript@5.8.2))': dependencies: '@opentelemetry/api': 1.9.0 '@opentelemetry/exporter-trace-otlp-http': 0.50.0(@opentelemetry/api@1.9.0) @@ -8476,7 +8476,7 @@ snapshots: '@opentelemetry/resources': 1.30.1(@opentelemetry/api@1.9.0) '@opentelemetry/sdk-node': 0.50.0(@opentelemetry/api@1.9.0) '@opentelemetry/sdk-trace-node': 1.27.0(@opentelemetry/api@1.9.0) - '@trpc/server': 11.0.0(typescript@5.8.2) + '@trpc/server': 11.0.1(typescript@5.8.2) '@types/aws-lambda': 8.10.145 axios: 1.7.7 flat: 6.0.1 @@ -8485,11 +8485,11 @@ snapshots: - debug - supports-color - '@baselime/react-rum@0.3.1(react@19.0.0)': + '@baselime/react-rum@0.3.1(react@19.1.0)': dependencies: js-cookie: 3.0.5 - react: 19.0.0 - react-error-boundary: 4.1.2(react@19.0.0) + react: 19.1.0 + react-error-boundary: 4.1.2(react@19.1.0) web-vitals: 3.5.2 '@braintree/sanitize-url@6.0.4': {} @@ -8502,9 +8502,9 @@ snapshots: '@discoveryjs/json-ext@0.5.7': {} - '@edge-csrf/nextjs@2.5.3-cloudflare-rc1(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))': + '@edge-csrf/nextjs@2.5.3-cloudflare-rc1(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))': dependencies: - next: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + next: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@emnapi/core@1.3.1': dependencies: @@ -8631,18 +8631,18 @@ snapshots: '@floating-ui/core': 1.6.9 '@floating-ui/utils': 0.2.9 - '@floating-ui/react-dom@2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@floating-ui/react-dom@2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@floating-ui/dom': 1.6.13 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@floating-ui/react@0.24.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@floating-ui/react@0.24.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) aria-hidden: 1.2.4 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) tabbable: 6.2.0 '@floating-ui/utils@0.2.9': {} @@ -8689,10 +8689,10 @@ snapshots: protobufjs: 7.4.0 yargs: 17.7.2 - '@hookform/resolvers@4.1.3(react-hook-form@7.54.2(react@19.0.0))': + '@hookform/resolvers@4.1.3(react-hook-form@7.55.0(react@19.1.0))': dependencies: '@standard-schema/utils': 0.3.0 - react-hook-form: 7.54.2(react@19.0.0) + react-hook-form: 7.55.0(react@19.1.0) '@humanfs/core@0.19.1': {} @@ -8843,125 +8843,125 @@ snapshots: '@juggle/resize-observer@3.4.0': {} - '@keystar/ui@0.7.18(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@keystar/ui@0.7.18(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@babel/runtime': 7.26.9 '@emotion/css': 11.13.5 - '@floating-ui/react': 0.24.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@floating-ui/react': 0.24.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@internationalized/date': 3.7.0 '@internationalized/string': 3.2.5 - '@react-aria/actiongroup': 3.7.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/breadcrumbs': 3.5.20(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/button': 3.11.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/calendar': 3.7.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/checkbox': 3.15.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/combobox': 3.11.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/datepicker': 3.13.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/dialog': 3.5.21(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/dnd': 3.8.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/gridlist': 3.10.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/label': 3.7.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/link': 3.7.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/listbox': 3.14.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/actiongroup': 3.7.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/breadcrumbs': 3.5.20(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/button': 3.11.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/calendar': 3.7.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/checkbox': 3.15.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/combobox': 3.11.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/datepicker': 3.13.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/dialog': 3.5.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/dnd': 3.8.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/gridlist': 3.10.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/link': 3.7.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/listbox': 3.14.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/menu': 3.17.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/meter': 3.4.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/numberfield': 3.11.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/overlays': 3.25.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/progress': 3.4.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/radio': 3.10.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/searchfield': 3.8.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/select': 3.15.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/separator': 3.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/ssr': 3.9.7(react@19.0.0) - '@react-aria/switch': 3.6.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/table': 3.16.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/tabs': 3.9.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/tag': 3.4.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/textfield': 3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/toast': 3.0.0-beta.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/tooltip': 3.7.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/virtualizer': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/visually-hidden': 3.8.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/calendar': 3.7.0(react@19.0.0) - '@react-stately/checkbox': 3.6.11(react@19.0.0) - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/combobox': 3.10.2(react@19.0.0) - '@react-stately/data': 3.12.1(react@19.0.0) - '@react-stately/datepicker': 3.12.0(react@19.0.0) - '@react-stately/dnd': 3.5.1(react@19.0.0) - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-stately/layout': 4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/list': 3.11.2(react@19.0.0) - '@react-stately/menu': 3.9.1(react@19.0.0) - '@react-stately/numberfield': 3.9.9(react@19.0.0) - '@react-stately/overlays': 3.6.13(react@19.0.0) - '@react-stately/radio': 3.10.10(react@19.0.0) - '@react-stately/searchfield': 3.5.9(react@19.0.0) - '@react-stately/select': 3.6.10(react@19.0.0) - '@react-stately/selection': 3.19.0(react@19.0.0) - '@react-stately/table': 3.13.1(react@19.0.0) - '@react-stately/tabs': 3.7.1(react@19.0.0) - '@react-stately/toast': 3.0.0-beta.7(react@19.0.0) - '@react-stately/toggle': 3.8.1(react@19.0.0) - '@react-stately/tooltip': 3.5.1(react@19.0.0) - '@react-stately/tree': 3.8.7(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-stately/virtualizer': 4.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/actionbar': 3.1.12(react@19.0.0) - '@react-types/actiongroup': 3.4.14(react@19.0.0) - '@react-types/breadcrumbs': 3.7.10(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/calendar': 3.6.0(react@19.0.0) - '@react-types/combobox': 3.13.2(react@19.0.0) - '@react-types/datepicker': 3.10.0(react@19.0.0) - '@react-types/grid': 3.2.11(react@19.0.0) - '@react-types/menu': 3.9.14(react@19.0.0) - '@react-types/numberfield': 3.8.8(react@19.0.0) - '@react-types/overlays': 3.8.12(react@19.0.0) - '@react-types/radio': 3.8.6(react@19.0.0) - '@react-types/select': 3.9.9(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - '@react-types/switch': 3.5.8(react@19.0.0) - '@react-types/table': 3.10.4(react@19.0.0) - '@react-types/tabs': 3.3.12(react@19.0.0) + '@react-aria/menu': 3.17.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/meter': 3.4.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/numberfield': 3.11.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/progress': 3.4.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/radio': 3.10.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/searchfield': 3.8.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/select': 3.15.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/separator': 3.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/ssr': 3.9.7(react@19.1.0) + '@react-aria/switch': 3.6.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/table': 3.16.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/tabs': 3.9.9(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/tag': 3.4.9(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/textfield': 3.16.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/toast': 3.0.0-beta.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/tooltip': 3.7.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/virtualizer': 4.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/calendar': 3.7.0(react@19.1.0) + '@react-stately/checkbox': 3.6.11(react@19.1.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/combobox': 3.10.2(react@19.1.0) + '@react-stately/data': 3.12.1(react@19.1.0) + '@react-stately/datepicker': 3.12.0(react@19.1.0) + '@react-stately/dnd': 3.5.1(react@19.1.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-stately/layout': 4.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/list': 3.11.2(react@19.1.0) + '@react-stately/menu': 3.9.1(react@19.1.0) + '@react-stately/numberfield': 3.9.9(react@19.1.0) + '@react-stately/overlays': 3.6.13(react@19.1.0) + '@react-stately/radio': 3.10.10(react@19.1.0) + '@react-stately/searchfield': 3.5.9(react@19.1.0) + '@react-stately/select': 3.6.10(react@19.1.0) + '@react-stately/selection': 3.19.0(react@19.1.0) + '@react-stately/table': 3.13.1(react@19.1.0) + '@react-stately/tabs': 3.7.1(react@19.1.0) + '@react-stately/toast': 3.0.0-beta.7(react@19.1.0) + '@react-stately/toggle': 3.8.1(react@19.1.0) + '@react-stately/tooltip': 3.5.1(react@19.1.0) + '@react-stately/tree': 3.8.7(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-stately/virtualizer': 4.2.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/actionbar': 3.1.12(react@19.1.0) + '@react-types/actiongroup': 3.4.14(react@19.1.0) + '@react-types/breadcrumbs': 3.7.10(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/calendar': 3.6.0(react@19.1.0) + '@react-types/combobox': 3.13.2(react@19.1.0) + '@react-types/datepicker': 3.10.0(react@19.1.0) + '@react-types/grid': 3.2.11(react@19.1.0) + '@react-types/menu': 3.9.14(react@19.1.0) + '@react-types/numberfield': 3.8.8(react@19.1.0) + '@react-types/overlays': 3.8.12(react@19.1.0) + '@react-types/radio': 3.8.6(react@19.1.0) + '@react-types/select': 3.9.9(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + '@react-types/switch': 3.5.8(react@19.1.0) + '@react-types/table': 3.10.4(react@19.1.0) + '@react-types/tabs': 3.3.12(react@19.1.0) '@types/react': 19.0.12 emery: 1.4.3 facepaint: 1.2.1 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: - next: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + next: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) transitivePeerDependencies: - supports-color - '@keystatic/core@0.5.46(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@keystatic/core@0.5.46(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@babel/runtime': 7.26.9 '@braintree/sanitize-url': 6.0.4 '@emotion/weak-memoize': 0.3.1 - '@floating-ui/react': 0.24.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@floating-ui/react': 0.24.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@internationalized/string': 3.2.5 - '@keystar/ui': 0.7.18(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@markdoc/markdoc': 0.4.0(@types/react@19.0.12)(react@19.0.0) - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/label': 3.7.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/overlays': 3.25.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/visually-hidden': 3.8.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/list': 3.11.2(react@19.0.0) - '@react-stately/overlays': 3.6.13(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@keystar/ui': 0.7.18(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@markdoc/markdoc': 0.4.0(@types/react@19.0.12)(react@19.1.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/list': 3.11.2(react@19.1.0) + '@react-stately/overlays': 3.6.13(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@sindresorhus/slugify': 1.1.2 '@toeverything/y-indexeddb': 0.10.0-canary.9(yjs@13.6.23) '@ts-gql/tag': 0.7.3(graphql@16.10.0) @@ -9002,15 +9002,15 @@ snapshots: prosemirror-tables: 1.6.4 prosemirror-transform: 1.10.2 prosemirror-view: 1.38.0 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) scroll-into-view-if-needed: 3.1.0 slate: 0.91.4 slate-history: 0.86.0(slate@0.91.4) - slate-react: 0.91.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(slate@0.91.4) + slate-react: 0.91.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(slate@0.91.4) superstruct: 1.0.4 unist-util-visit: 5.0.0 - urql: 4.2.2(@urql/core@5.1.1(graphql@16.10.0))(react@19.0.0) + urql: 4.2.2(@urql/core@5.1.1(graphql@16.10.0))(react@19.1.0) y-prosemirror: 1.2.16(prosemirror-model@1.24.1)(prosemirror-state@1.4.3)(prosemirror-view@1.38.0)(y-protocols@1.0.6(yjs@13.6.23))(yjs@13.6.23) y-protocols: 1.0.6(yjs@13.6.23) yjs: 13.6.23 @@ -9018,15 +9018,15 @@ snapshots: - next - supports-color - '@keystatic/next@5.0.4(@keystatic/core@0.5.46(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@keystatic/next@5.0.4(@keystatic/core@0.5.46(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@babel/runtime': 7.26.9 - '@keystatic/core': 0.5.46(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@keystatic/core': 0.5.46(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@types/react': 19.0.12 chokidar: 3.6.0 - next: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + next: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(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) server-only: 0.0.1 '@lemonsqueezy/lemonsqueezy.js@4.0.0': {} @@ -9037,13 +9037,13 @@ snapshots: '@supabase/supabase-js': 2.49.3 ts-case-convert: 2.1.0 - '@makerkit/data-loader-supabase-nextjs@1.2.5(@supabase/postgrest-js@1.19.3)(@supabase/supabase-js@2.49.3)(@tanstack/react-query@5.69.2(react@19.0.0))(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)': + '@makerkit/data-loader-supabase-nextjs@1.2.5(@supabase/postgrest-js@1.19.3)(@supabase/supabase-js@2.49.3)(@tanstack/react-query@5.70.0(react@19.1.0))(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)': dependencies: '@makerkit/data-loader-supabase-core': 0.0.10(@supabase/postgrest-js@1.19.3)(@supabase/supabase-js@2.49.3) '@supabase/supabase-js': 2.49.3 - '@tanstack/react-query': 5.69.2(react@19.0.0) - next: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react: 19.0.0 + '@tanstack/react-query': 5.70.0(react@19.1.0) + next: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + react: 19.1.0 transitivePeerDependencies: - '@supabase/postgrest-js' @@ -9076,23 +9076,23 @@ snapshots: jju: 1.4.0 js-yaml: 4.1.0 - '@markdoc/markdoc@0.4.0(@types/react@19.0.12)(react@19.0.0)': + '@markdoc/markdoc@0.4.0(@types/react@19.0.12)(react@19.1.0)': optionalDependencies: '@types/markdown-it': 12.2.3 '@types/react': 19.0.12 - react: 19.0.0 + react: 19.1.0 - '@markdoc/markdoc@0.5.1(@types/react@19.0.12)(react@19.0.0)': + '@markdoc/markdoc@0.5.1(@types/react@19.0.12)(react@19.1.0)': optionalDependencies: '@types/linkify-it': 3.0.5 '@types/markdown-it': 12.2.3 '@types/react': 19.0.12 - react: 19.0.0 + react: 19.1.0 - '@marsidev/react-turnstile@1.1.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@marsidev/react-turnstile@1.1.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) '@napi-rs/wasm-runtime@0.2.7': dependencies: @@ -9681,1599 +9681,1599 @@ snapshots: '@radix-ui/primitive@1.1.1': {} - '@radix-ui/react-accordion@1.2.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-accordion@1.2.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-collapsible': 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-collapsible': 1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-alert-dialog@1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-alert-dialog@1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-dialog': 1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-dialog': 1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-arrow@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-arrow@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(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) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-avatar@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-avatar@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-checkbox@1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-checkbox@1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-collapsible@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-collapsible@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-collection@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-collection@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-compose-refs@1.1.1(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-compose-refs@1.1.1(@types/react@19.0.12)(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-context@1.1.1(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-context@1.1.1(@types/react@19.0.12)(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-dialog@1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-dialog@1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) aria-hidden: 1.2.4 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) - react-remove-scroll: 2.6.3(@types/react@19.0.12)(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + react-remove-scroll: 2.6.3(@types/react@19.0.12)(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-direction@1.1.0(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-direction@1.1.0(@types/react@19.0.12)(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-dismissable-layer@1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-dismissable-layer@1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-escape-keydown': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-dropdown-menu@2.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-dropdown-menu@2.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-menu': 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-menu': 2.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-focus-guards@1.1.1(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-focus-guards@1.1.1(@types/react@19.0.12)(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-focus-scope@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-focus-scope@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-icons@1.3.2(react@19.0.0)': + '@radix-ui/react-icons@1.3.2(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@radix-ui/react-id@1.1.0(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-id@1.1.0(@types/react@19.0.12)(react@19.1.0)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-label@2.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-label@2.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(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) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-menu@2.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-menu@2.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-roving-focus': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.0.0) + '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-roving-focus': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.1.0) aria-hidden: 1.2.4 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) - react-remove-scroll: 2.6.3(@types/react@19.0.12)(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + react-remove-scroll: 2.6.3(@types/react@19.0.12)(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-navigation-menu@1.2.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-navigation-menu@1.2.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(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) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-popover@1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-popover@1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) aria-hidden: 1.2.4 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) - react-remove-scroll: 2.6.3(@types/react@19.0.12)(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + react-remove-scroll: 2.6.3(@types/react@19.0.12)(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-popper@1.2.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-popper@1.2.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-arrow': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.12)(react@19.0.0) + '@floating-ui/react-dom': 2.1.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-arrow': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-rect': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.12)(react@19.1.0) '@radix-ui/rect': 1.1.0 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-portal@1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-portal@1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-presence@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-presence@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-primitive@2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-primitive@2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-progress@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-progress@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(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) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-radio-group@1.2.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-radio-group@1.2.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-roving-focus': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-roving-focus': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-roving-focus@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-roving-focus@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-scroll-area@1.2.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-scroll-area@1.2.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/number': 1.1.0 '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-select@2.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-select@2.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/number': 1.1.0 '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-focus-guards': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-focus-scope': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) aria-hidden: 1.2.4 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) - react-remove-scroll: 2.6.3(@types/react@19.0.12)(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + react-remove-scroll: 2.6.3(@types/react@19.0.12)(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-separator@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-separator@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(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) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-slot@1.1.2(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-slot@1.1.2(@types/react@19.0.12)(react@19.1.0)': dependencies: - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-switch@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-switch@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-previous': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-size': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-tabs@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-tabs@1.1.3(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-roving-focus': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-direction': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-roving-focus': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-toast@1.2.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-toast@1.2.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-collection': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(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) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-tooltip@1.1.8(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-tooltip@1.1.8(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@radix-ui/primitive': 1.1.1 - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-context': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-dismissable-layer': 1.1.5(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-popper': 1.2.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-portal': 1.1.4(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-presence': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-slot': 1.1.2(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-use-controllable-state': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-visually-hidden': 1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(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) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) - '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-use-callback-ref@1.1.0(@types/react@19.0.12)(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-use-controllable-state@1.1.0(@types/react@19.0.12)(react@19.1.0)': dependencies: - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-use-escape-keydown@1.1.0(@types/react@19.0.12)(react@19.1.0)': dependencies: - '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 + '@radix-ui/react-use-callback-ref': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-use-layout-effect@1.1.0(@types/react@19.0.12)(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-use-previous@1.1.0(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-use-previous@1.1.0(@types/react@19.0.12)(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-use-rect@1.1.0(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-use-rect@1.1.0(@types/react@19.0.12)(react@19.1.0)': dependencies: '@radix-ui/rect': 1.1.0 - react: 19.0.0 + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-use-size@1.1.0(@types/react@19.0.12)(react@19.0.0)': + '@radix-ui/react-use-size@1.1.0(@types/react@19.0.12)(react@19.1.0)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.0.0) - react: 19.0.0 + '@radix-ui/react-use-layout-effect': 1.1.0(@types/react@19.0.12)(react@19.1.0) + react: 19.1.0 optionalDependencies: '@types/react': 19.0.12 - '@radix-ui/react-visually-hidden@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@radix-ui/react-visually-hidden@1.1.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(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) optionalDependencies: '@types/react': 19.0.12 '@types/react-dom': 19.0.4(@types/react@19.0.12) '@radix-ui/rect@1.1.0': {} - '@react-aria/actiongroup@3.7.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/actiongroup@3.7.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/list': 3.11.2(react@19.0.0) - '@react-types/actiongroup': 3.4.14(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/list': 3.11.2(react@19.1.0) + '@react-types/actiongroup': 3.4.14(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/breadcrumbs@3.5.20(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/breadcrumbs@3.5.20(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/link': 3.7.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/breadcrumbs': 3.7.10(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/link': 3.7.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/breadcrumbs': 3.7.10(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/button@3.11.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/button@3.11.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/toolbar': 3.0.0-beta.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/toggle': 3.8.1(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/toolbar': 3.0.0-beta.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/toggle': 3.8.1(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/calendar@3.7.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/calendar@3.7.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@internationalized/date': 3.7.0 - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/calendar': 3.7.0(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/calendar': 3.6.0(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/calendar': 3.7.0(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/calendar': 3.6.0(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/checkbox@3.15.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/checkbox@3.15.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/form': 3.0.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/label': 3.7.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/toggle': 3.10.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/checkbox': 3.6.11(react@19.0.0) - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-stately/toggle': 3.8.1(react@19.0.0) - '@react-types/checkbox': 3.9.1(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/form': 3.0.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/toggle': 3.10.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/checkbox': 3.6.11(react@19.1.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-stately/toggle': 3.8.1(react@19.1.0) + '@react-types/checkbox': 3.9.1(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/combobox@3.11.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/combobox@3.11.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/listbox': 3.14.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/listbox': 3.14.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/menu': 3.17.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/overlays': 3.25.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/textfield': 3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/combobox': 3.10.2(react@19.0.0) - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/combobox': 3.13.2(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/menu': 3.17.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/textfield': 3.16.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/combobox': 3.10.2(react@19.1.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/combobox': 3.13.2(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/datepicker@3.13.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/datepicker@3.13.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@internationalized/date': 3.7.0 '@internationalized/number': 3.6.0 '@internationalized/string': 3.2.5 - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/form': 3.0.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/label': 3.7.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/spinbutton': 3.6.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/datepicker': 3.12.0(react@19.0.0) - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/calendar': 3.6.0(react@19.0.0) - '@react-types/datepicker': 3.10.0(react@19.0.0) - '@react-types/dialog': 3.5.15(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/form': 3.0.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/spinbutton': 3.6.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/datepicker': 3.12.0(react@19.1.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/calendar': 3.6.0(react@19.1.0) + '@react-types/datepicker': 3.10.0(react@19.1.0) + '@react-types/dialog': 3.5.15(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/dialog@3.5.21(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/dialog@3.5.21(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/overlays': 3.25.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/dialog': 3.5.15(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/dialog': 3.5.15(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/dnd@3.8.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/dnd@3.8.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@internationalized/string': 3.2.5 - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/overlays': 3.25.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/dnd': 3.5.1(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/overlays': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/dnd': 3.5.1(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/focus@3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/focus@3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 clsx: 2.1.1 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/form@3.0.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/form@3.0.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/grid@3.11.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/grid@3.11.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/grid': 3.10.1(react@19.0.0) - '@react-stately/selection': 3.19.0(react@19.0.0) - '@react-types/checkbox': 3.9.1(react@19.0.0) - '@react-types/grid': 3.2.11(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/selection': 3.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/grid': 3.10.1(react@19.1.0) + '@react-stately/selection': 3.19.0(react@19.1.0) + '@react-types/checkbox': 3.9.1(react@19.1.0) + '@react-types/grid': 3.2.11(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/gridlist@3.10.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/gridlist@3.10.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/grid': 3.11.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/list': 3.11.2(react@19.0.0) - '@react-stately/tree': 3.8.7(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/grid': 3.11.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/list': 3.11.2(react@19.1.0) + '@react-stately/tree': 3.8.7(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/i18n@3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/i18n@3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@internationalized/date': 3.7.0 '@internationalized/message': 3.1.6 '@internationalized/number': 3.6.0 '@internationalized/string': 3.2.5 - '@react-aria/ssr': 3.9.7(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/ssr': 3.9.7(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/interactions@3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/interactions@3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/ssr': 3.9.7(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/ssr': 3.9.7(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/label@3.7.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/label@3.7.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/landmark@3.0.0-beta.18(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/landmark@3.0.0-beta.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) - use-sync-external-store: 1.4.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + use-sync-external-store: 1.4.0(react@19.1.0) - '@react-aria/link@3.7.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/link@3.7.8(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/link': 3.5.10(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/link': 3.5.10(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/listbox@3.14.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/listbox@3.14.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/label': 3.7.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/list': 3.11.2(react@19.0.0) - '@react-types/listbox': 3.5.4(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/list': 3.11.2(react@19.1.0) + '@react-types/listbox': 3.5.4(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) '@react-aria/live-announcer@3.4.1': dependencies: '@swc/helpers': 0.5.15 - '@react-aria/menu@3.17.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/menu@3.17.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/overlays': 3.25.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/menu': 3.9.1(react@19.0.0) - '@react-stately/selection': 3.19.0(react@19.0.0) - '@react-stately/tree': 3.8.7(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/menu': 3.9.14(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/overlays': 3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/menu': 3.9.1(react@19.1.0) + '@react-stately/selection': 3.19.0(react@19.1.0) + '@react-stately/tree': 3.8.7(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/menu': 3.9.14(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/meter@3.4.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/meter@3.4.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/progress': 3.4.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/meter': 3.4.6(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/progress': 3.4.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/meter': 3.4.6(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 transitivePeerDependencies: - react-dom - '@react-aria/numberfield@3.11.10(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/numberfield@3.11.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/spinbutton': 3.6.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/textfield': 3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-stately/numberfield': 3.9.9(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/numberfield': 3.8.8(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/spinbutton': 3.6.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/textfield': 3.16.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-stately/numberfield': 3.9.9(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/numberfield': 3.8.8(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/overlays@3.25.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/overlays@3.25.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/ssr': 3.9.7(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/visually-hidden': 3.8.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/overlays': 3.6.13(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/overlays': 3.8.12(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/ssr': 3.9.7(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/overlays': 3.6.13(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/overlays': 3.8.12(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/progress@3.4.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/progress@3.4.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/label': 3.7.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/progress': 3.5.9(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/progress': 3.5.9(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/radio@3.10.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/radio@3.10.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/form': 3.0.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/label': 3.7.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/radio': 3.10.10(react@19.0.0) - '@react-types/radio': 3.8.6(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/form': 3.0.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/radio': 3.10.10(react@19.1.0) + '@react-types/radio': 3.8.6(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/searchfield@3.8.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/searchfield@3.8.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/textfield': 3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/searchfield': 3.5.9(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/searchfield': 3.5.11(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/textfield': 3.16.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/searchfield': 3.5.9(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/searchfield': 3.5.11(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/select@3.15.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/select@3.15.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/form': 3.0.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/label': 3.7.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/listbox': 3.14.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/menu': 3.17.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/visually-hidden': 3.8.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/select': 3.6.10(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/select': 3.9.9(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/form': 3.0.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/listbox': 3.14.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/menu': 3.17.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/select': 3.6.10(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/select': 3.9.9(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/selection@3.22.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/selection@3.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/selection': 3.19.0(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/selection': 3.19.0(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/separator@3.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/separator@3.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/spinbutton@3.6.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/spinbutton@3.6.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/ssr@3.9.7(react@19.0.0)': + '@react-aria/ssr@3.9.7(react@19.1.0)': dependencies: '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-aria/switch@3.6.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/switch@3.6.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/toggle': 3.10.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/toggle': 3.8.1(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - '@react-types/switch': 3.5.8(react@19.0.0) + '@react-aria/toggle': 3.10.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/toggle': 3.8.1(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + '@react-types/switch': 3.5.8(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 transitivePeerDependencies: - react-dom - '@react-aria/table@3.16.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/table@3.16.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/grid': 3.11.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/grid': 3.11.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) '@react-aria/live-announcer': 3.4.1 - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/visually-hidden': 3.8.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/collections': 3.12.1(react@19.0.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/visually-hidden': 3.8.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/collections': 3.12.1(react@19.1.0) '@react-stately/flags': 3.0.5 - '@react-stately/table': 3.13.1(react@19.0.0) - '@react-types/checkbox': 3.9.1(react@19.0.0) - '@react-types/grid': 3.2.11(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - '@react-types/table': 3.10.4(react@19.0.0) + '@react-stately/table': 3.13.1(react@19.1.0) + '@react-types/checkbox': 3.9.1(react@19.1.0) + '@react-types/grid': 3.2.11(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + '@react-types/table': 3.10.4(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/tabs@3.9.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/tabs@3.9.9(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/tabs': 3.7.1(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - '@react-types/tabs': 3.3.12(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/tabs': 3.7.1(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + '@react-types/tabs': 3.3.12(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/tag@3.4.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/tag@3.4.9(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/gridlist': 3.10.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/label': 3.7.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/selection': 3.22.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/list': 3.11.2(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/gridlist': 3.10.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/selection': 3.22.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/list': 3.11.2(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/textfield@3.16.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/textfield@3.16.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/form': 3.0.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/label': 3.7.14(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - '@react-types/textfield': 3.11.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/form': 3.0.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/label': 3.7.14(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + '@react-types/textfield': 3.11.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/toast@3.0.0-beta.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/toast@3.0.0-beta.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/landmark': 3.0.0-beta.18(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/toast': 3.0.0-beta.7(react@19.0.0) - '@react-types/button': 3.10.2(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/landmark': 3.0.0-beta.18(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/toast': 3.0.0-beta.7(react@19.1.0) + '@react-types/button': 3.10.2(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/toggle@3.10.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/toggle@3.10.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/toggle': 3.8.1(react@19.0.0) - '@react-types/checkbox': 3.9.1(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/toggle': 3.8.1(react@19.1.0) + '@react-types/checkbox': 3.9.1(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/toolbar@3.0.0-beta.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/toolbar@3.0.0-beta.12(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/tooltip@3.7.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/tooltip@3.7.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/focus': 3.19.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/tooltip': 3.5.1(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - '@react-types/tooltip': 3.4.14(react@19.0.0) + '@react-aria/focus': 3.19.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/tooltip': 3.5.1(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + '@react-types/tooltip': 3.4.14(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/utils@3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/utils@3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/ssr': 3.9.7(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/ssr': 3.9.7(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 clsx: 2.1.1 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/virtualizer@4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/virtualizer@4.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/i18n': 3.12.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-stately/virtualizer': 4.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/i18n': 3.12.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-stately/virtualizer': 4.2.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-aria/visually-hidden@3.8.19(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-aria/visually-hidden@3.8.19(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/interactions': 3.23.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/interactions': 3.23.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-email/body@0.0.11(react@19.0.0)': + '@react-email/body@0.0.11(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/button@0.0.19(react@19.0.0)': + '@react-email/button@0.0.19(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/code-block@0.0.11(react@19.0.0)': + '@react-email/code-block@0.0.11(react@19.1.0)': dependencies: prismjs: 1.29.0 - react: 19.0.0 + react: 19.1.0 - '@react-email/code-inline@0.0.5(react@19.0.0)': + '@react-email/code-inline@0.0.5(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/column@0.0.13(react@19.0.0)': + '@react-email/column@0.0.13(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/components@0.0.34(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-email/components@0.0.34(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-email/body': 0.0.11(react@19.0.0) - '@react-email/button': 0.0.19(react@19.0.0) - '@react-email/code-block': 0.0.11(react@19.0.0) - '@react-email/code-inline': 0.0.5(react@19.0.0) - '@react-email/column': 0.0.13(react@19.0.0) - '@react-email/container': 0.0.15(react@19.0.0) - '@react-email/font': 0.0.9(react@19.0.0) - '@react-email/head': 0.0.12(react@19.0.0) - '@react-email/heading': 0.0.15(react@19.0.0) - '@react-email/hr': 0.0.11(react@19.0.0) - '@react-email/html': 0.0.11(react@19.0.0) - '@react-email/img': 0.0.11(react@19.0.0) - '@react-email/link': 0.0.12(react@19.0.0) - '@react-email/markdown': 0.0.14(react@19.0.0) - '@react-email/preview': 0.0.12(react@19.0.0) - '@react-email/render': 1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-email/row': 0.0.12(react@19.0.0) - '@react-email/section': 0.0.16(react@19.0.0) - '@react-email/tailwind': 1.0.4(react@19.0.0) - '@react-email/text': 0.1.0(react@19.0.0) - react: 19.0.0 + '@react-email/body': 0.0.11(react@19.1.0) + '@react-email/button': 0.0.19(react@19.1.0) + '@react-email/code-block': 0.0.11(react@19.1.0) + '@react-email/code-inline': 0.0.5(react@19.1.0) + '@react-email/column': 0.0.13(react@19.1.0) + '@react-email/container': 0.0.15(react@19.1.0) + '@react-email/font': 0.0.9(react@19.1.0) + '@react-email/head': 0.0.12(react@19.1.0) + '@react-email/heading': 0.0.15(react@19.1.0) + '@react-email/hr': 0.0.11(react@19.1.0) + '@react-email/html': 0.0.11(react@19.1.0) + '@react-email/img': 0.0.11(react@19.1.0) + '@react-email/link': 0.0.12(react@19.1.0) + '@react-email/markdown': 0.0.14(react@19.1.0) + '@react-email/preview': 0.0.12(react@19.1.0) + '@react-email/render': 1.0.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-email/row': 0.0.12(react@19.1.0) + '@react-email/section': 0.0.16(react@19.1.0) + '@react-email/tailwind': 1.0.4(react@19.1.0) + '@react-email/text': 0.1.0(react@19.1.0) + react: 19.1.0 transitivePeerDependencies: - react-dom - '@react-email/container@0.0.15(react@19.0.0)': + '@react-email/container@0.0.15(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/font@0.0.9(react@19.0.0)': + '@react-email/font@0.0.9(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/head@0.0.12(react@19.0.0)': + '@react-email/head@0.0.12(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/heading@0.0.15(react@19.0.0)': + '@react-email/heading@0.0.15(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/hr@0.0.11(react@19.0.0)': + '@react-email/hr@0.0.11(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/html@0.0.11(react@19.0.0)': + '@react-email/html@0.0.11(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/img@0.0.11(react@19.0.0)': + '@react-email/img@0.0.11(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/link@0.0.12(react@19.0.0)': + '@react-email/link@0.0.12(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/markdown@0.0.14(react@19.0.0)': + '@react-email/markdown@0.0.14(react@19.1.0)': dependencies: - md-to-react-email: 5.0.5(react@19.0.0) - react: 19.0.0 + md-to-react-email: 5.0.5(react@19.1.0) + react: 19.1.0 - '@react-email/preview@0.0.12(react@19.0.0)': + '@react-email/preview@0.0.12(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/render@1.0.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-email/render@1.0.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: html-to-text: 9.0.5 prettier: 3.4.2 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) react-promise-suspense: 0.3.4 - '@react-email/row@0.0.12(react@19.0.0)': + '@react-email/row@0.0.12(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/section@0.0.16(react@19.0.0)': + '@react-email/section@0.0.16(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/tailwind@1.0.4(react@19.0.0)': + '@react-email/tailwind@1.0.4(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-email/text@0.1.0(react@19.0.0)': + '@react-email/text@0.1.0(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-stately/calendar@3.7.0(react@19.0.0)': + '@react-stately/calendar@3.7.0(react@19.1.0)': dependencies: '@internationalized/date': 3.7.0 - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/calendar': 3.6.0(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/calendar': 3.6.0(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/checkbox@3.6.11(react@19.0.0)': + '@react-stately/checkbox@3.6.11(react@19.1.0)': dependencies: - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/checkbox': 3.9.1(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/checkbox': 3.9.1(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/collections@3.12.1(react@19.0.0)': + '@react-stately/collections@3.12.1(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/combobox@3.10.2(react@19.0.0)': + '@react-stately/combobox@3.10.2(react@19.1.0)': dependencies: - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-stately/list': 3.11.2(react@19.0.0) - '@react-stately/overlays': 3.6.13(react@19.0.0) - '@react-stately/select': 3.6.10(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/combobox': 3.13.2(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-stately/list': 3.11.2(react@19.1.0) + '@react-stately/overlays': 3.6.13(react@19.1.0) + '@react-stately/select': 3.6.10(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/combobox': 3.13.2(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/data@3.12.1(react@19.0.0)': + '@react-stately/data@3.12.1(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/datepicker@3.12.0(react@19.0.0)': + '@react-stately/datepicker@3.12.0(react@19.1.0)': dependencies: '@internationalized/date': 3.7.0 '@internationalized/string': 3.2.5 - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-stately/overlays': 3.6.13(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/datepicker': 3.10.0(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-stately/overlays': 3.6.13(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/datepicker': 3.10.0(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/dnd@3.5.1(react@19.0.0)': + '@react-stately/dnd@3.5.1(react@19.1.0)': dependencies: - '@react-stately/selection': 3.19.0(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/selection': 3.19.0(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 '@react-stately/flags@3.0.5': dependencies: '@swc/helpers': 0.5.15 - '@react-stately/form@3.1.1(react@19.0.0)': + '@react-stately/form@3.1.1(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/grid@3.10.1(react@19.0.0)': + '@react-stately/grid@3.10.1(react@19.1.0)': dependencies: - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/selection': 3.19.0(react@19.0.0) - '@react-types/grid': 3.2.11(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/selection': 3.19.0(react@19.1.0) + '@react-types/grid': 3.2.11(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/layout@4.1.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-stately/layout@4.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/table': 3.13.1(react@19.0.0) - '@react-stately/virtualizer': 4.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/grid': 3.2.11(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - '@react-types/table': 3.10.4(react@19.0.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/table': 3.13.1(react@19.1.0) + '@react-stately/virtualizer': 4.2.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/grid': 3.2.11(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + '@react-types/table': 3.10.4(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 transitivePeerDependencies: - react-dom - '@react-stately/list@3.11.2(react@19.0.0)': + '@react-stately/list@3.11.2(react@19.1.0)': dependencies: - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/selection': 3.19.0(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/selection': 3.19.0(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/menu@3.9.1(react@19.0.0)': + '@react-stately/menu@3.9.1(react@19.1.0)': dependencies: - '@react-stately/overlays': 3.6.13(react@19.0.0) - '@react-types/menu': 3.9.14(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/overlays': 3.6.13(react@19.1.0) + '@react-types/menu': 3.9.14(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/numberfield@3.9.9(react@19.0.0)': + '@react-stately/numberfield@3.9.9(react@19.1.0)': dependencies: '@internationalized/number': 3.6.0 - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/numberfield': 3.8.8(react@19.0.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/numberfield': 3.8.8(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/overlays@3.6.13(react@19.0.0)': + '@react-stately/overlays@3.6.13(react@19.1.0)': dependencies: - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/overlays': 3.8.12(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/overlays': 3.8.12(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/radio@3.10.10(react@19.0.0)': + '@react-stately/radio@3.10.10(react@19.1.0)': dependencies: - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/radio': 3.8.6(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/radio': 3.8.6(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/searchfield@3.5.9(react@19.0.0)': + '@react-stately/searchfield@3.5.9(react@19.1.0)': dependencies: - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/searchfield': 3.5.11(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/searchfield': 3.5.11(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/select@3.6.10(react@19.0.0)': + '@react-stately/select@3.6.10(react@19.1.0)': dependencies: - '@react-stately/form': 3.1.1(react@19.0.0) - '@react-stately/list': 3.11.2(react@19.0.0) - '@react-stately/overlays': 3.6.13(react@19.0.0) - '@react-types/select': 3.9.9(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/form': 3.1.1(react@19.1.0) + '@react-stately/list': 3.11.2(react@19.1.0) + '@react-stately/overlays': 3.6.13(react@19.1.0) + '@react-types/select': 3.9.9(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/selection@3.19.0(react@19.0.0)': + '@react-stately/selection@3.19.0(react@19.1.0)': dependencies: - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/table@3.13.1(react@19.0.0)': + '@react-stately/table@3.13.1(react@19.1.0)': dependencies: - '@react-stately/collections': 3.12.1(react@19.0.0) + '@react-stately/collections': 3.12.1(react@19.1.0) '@react-stately/flags': 3.0.5 - '@react-stately/grid': 3.10.1(react@19.0.0) - '@react-stately/selection': 3.19.0(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/grid': 3.2.11(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - '@react-types/table': 3.10.4(react@19.0.0) + '@react-stately/grid': 3.10.1(react@19.1.0) + '@react-stately/selection': 3.19.0(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/grid': 3.2.11(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + '@react-types/table': 3.10.4(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/tabs@3.7.1(react@19.0.0)': + '@react-stately/tabs@3.7.1(react@19.1.0)': dependencies: - '@react-stately/list': 3.11.2(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - '@react-types/tabs': 3.3.12(react@19.0.0) + '@react-stately/list': 3.11.2(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + '@react-types/tabs': 3.3.12(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/toast@3.0.0-beta.7(react@19.0.0)': + '@react-stately/toast@3.0.0-beta.7(react@19.1.0)': dependencies: '@swc/helpers': 0.5.15 - react: 19.0.0 - use-sync-external-store: 1.4.0(react@19.0.0) + react: 19.1.0 + use-sync-external-store: 1.4.0(react@19.1.0) - '@react-stately/toggle@3.8.1(react@19.0.0)': + '@react-stately/toggle@3.8.1(react@19.1.0)': dependencies: - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/checkbox': 3.9.1(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/checkbox': 3.9.1(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/tooltip@3.5.1(react@19.0.0)': + '@react-stately/tooltip@3.5.1(react@19.1.0)': dependencies: - '@react-stately/overlays': 3.6.13(react@19.0.0) - '@react-types/tooltip': 3.4.14(react@19.0.0) + '@react-stately/overlays': 3.6.13(react@19.1.0) + '@react-types/tooltip': 3.4.14(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/tree@3.8.7(react@19.0.0)': + '@react-stately/tree@3.8.7(react@19.1.0)': dependencies: - '@react-stately/collections': 3.12.1(react@19.0.0) - '@react-stately/selection': 3.19.0(react@19.0.0) - '@react-stately/utils': 3.10.5(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-stately/collections': 3.12.1(react@19.1.0) + '@react-stately/selection': 3.19.0(react@19.1.0) + '@react-stately/utils': 3.10.5(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/utils@3.10.5(react@19.0.0)': + '@react-stately/utils@3.10.5(react@19.1.0)': dependencies: '@swc/helpers': 0.5.15 - react: 19.0.0 + react: 19.1.0 - '@react-stately/virtualizer@4.2.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@react-stately/virtualizer@4.2.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: - '@react-aria/utils': 3.27.0(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) + '@react-aria/utils': 3.27.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) '@swc/helpers': 0.5.15 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - '@react-types/actionbar@3.1.12(react@19.0.0)': + '@react-types/actionbar@3.1.12(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/actiongroup@3.4.14(react@19.0.0)': + '@react-types/actiongroup@3.4.14(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/breadcrumbs@3.7.10(react@19.0.0)': + '@react-types/breadcrumbs@3.7.10(react@19.1.0)': dependencies: - '@react-types/link': 3.5.10(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/link': 3.5.10(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/button@3.10.2(react@19.0.0)': + '@react-types/button@3.10.2(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/calendar@3.6.0(react@19.0.0)': + '@react-types/calendar@3.6.0(react@19.1.0)': dependencies: '@internationalized/date': 3.7.0 - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/checkbox@3.9.1(react@19.0.0)': + '@react-types/checkbox@3.9.1(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/combobox@3.13.2(react@19.0.0)': + '@react-types/combobox@3.13.2(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/datepicker@3.10.0(react@19.0.0)': + '@react-types/datepicker@3.10.0(react@19.1.0)': dependencies: '@internationalized/date': 3.7.0 - '@react-types/calendar': 3.6.0(react@19.0.0) - '@react-types/overlays': 3.8.12(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/calendar': 3.6.0(react@19.1.0) + '@react-types/overlays': 3.8.12(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/dialog@3.5.15(react@19.0.0)': + '@react-types/dialog@3.5.15(react@19.1.0)': dependencies: - '@react-types/overlays': 3.8.12(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/overlays': 3.8.12(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/grid@3.2.11(react@19.0.0)': + '@react-types/grid@3.2.11(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/link@3.5.10(react@19.0.0)': + '@react-types/link@3.5.10(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/listbox@3.5.4(react@19.0.0)': + '@react-types/listbox@3.5.4(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/menu@3.9.14(react@19.0.0)': + '@react-types/menu@3.9.14(react@19.1.0)': dependencies: - '@react-types/overlays': 3.8.12(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/overlays': 3.8.12(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/meter@3.4.6(react@19.0.0)': + '@react-types/meter@3.4.6(react@19.1.0)': dependencies: - '@react-types/progress': 3.5.9(react@19.0.0) - react: 19.0.0 + '@react-types/progress': 3.5.9(react@19.1.0) + react: 19.1.0 - '@react-types/numberfield@3.8.8(react@19.0.0)': + '@react-types/numberfield@3.8.8(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/overlays@3.8.12(react@19.0.0)': + '@react-types/overlays@3.8.12(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/progress@3.5.9(react@19.0.0)': + '@react-types/progress@3.5.9(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/radio@3.8.6(react@19.0.0)': + '@react-types/radio@3.8.6(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/searchfield@3.5.11(react@19.0.0)': + '@react-types/searchfield@3.5.11(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - '@react-types/textfield': 3.11.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + '@react-types/textfield': 3.11.0(react@19.1.0) + react: 19.1.0 - '@react-types/select@3.9.9(react@19.0.0)': + '@react-types/select@3.9.9(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/shared@3.27.0(react@19.0.0)': + '@react-types/shared@3.27.0(react@19.1.0)': dependencies: - react: 19.0.0 + react: 19.1.0 - '@react-types/switch@3.5.8(react@19.0.0)': + '@react-types/switch@3.5.8(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/table@3.10.4(react@19.0.0)': + '@react-types/table@3.10.4(react@19.1.0)': dependencies: - '@react-types/grid': 3.2.11(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/grid': 3.2.11(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/tabs@3.3.12(react@19.0.0)': + '@react-types/tabs@3.3.12(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/textfield@3.11.0(react@19.0.0)': + '@react-types/textfield@3.11.0(react@19.1.0)': dependencies: - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 - '@react-types/tooltip@3.4.14(react@19.0.0)': + '@react-types/tooltip@3.4.14(react@19.1.0)': dependencies: - '@react-types/overlays': 3.8.12(react@19.0.0) - '@react-types/shared': 3.27.0(react@19.0.0) - react: 19.0.0 + '@react-types/overlays': 3.8.12(react@19.1.0) + '@react-types/shared': 3.27.0(react@19.1.0) + react: 19.1.0 '@rollup/plugin-commonjs@28.0.1(rollup@4.35.0)': dependencies: @@ -11361,38 +11361,38 @@ snapshots: domhandler: 5.0.3 selderee: 0.11.0 - '@sentry-internal/browser-utils@9.10.0': + '@sentry-internal/browser-utils@9.10.1': dependencies: - '@sentry/core': 9.10.0 + '@sentry/core': 9.10.1 - '@sentry-internal/feedback@9.10.0': + '@sentry-internal/feedback@9.10.1': dependencies: - '@sentry/core': 9.10.0 + '@sentry/core': 9.10.1 - '@sentry-internal/replay-canvas@9.10.0': + '@sentry-internal/replay-canvas@9.10.1': dependencies: - '@sentry-internal/replay': 9.10.0 - '@sentry/core': 9.10.0 + '@sentry-internal/replay': 9.10.1 + '@sentry/core': 9.10.1 - '@sentry-internal/replay@9.10.0': + '@sentry-internal/replay@9.10.1': dependencies: - '@sentry-internal/browser-utils': 9.10.0 - '@sentry/core': 9.10.0 + '@sentry-internal/browser-utils': 9.10.1 + '@sentry/core': 9.10.1 - '@sentry/babel-plugin-component-annotate@3.2.3': {} + '@sentry/babel-plugin-component-annotate@3.2.4': {} - '@sentry/browser@9.10.0': + '@sentry/browser@9.10.1': dependencies: - '@sentry-internal/browser-utils': 9.10.0 - '@sentry-internal/feedback': 9.10.0 - '@sentry-internal/replay': 9.10.0 - '@sentry-internal/replay-canvas': 9.10.0 - '@sentry/core': 9.10.0 + '@sentry-internal/browser-utils': 9.10.1 + '@sentry-internal/feedback': 9.10.1 + '@sentry-internal/replay': 9.10.1 + '@sentry-internal/replay-canvas': 9.10.1 + '@sentry/core': 9.10.1 - '@sentry/bundler-plugin-core@3.2.3': + '@sentry/bundler-plugin-core@3.2.4': dependencies: '@babel/core': 7.26.10 - '@sentry/babel-plugin-component-annotate': 3.2.3 + '@sentry/babel-plugin-component-annotate': 3.2.4 '@sentry/cli': 2.42.2 dotenv: 16.4.7 find-up: 5.0.0 @@ -11443,22 +11443,22 @@ snapshots: - encoding - supports-color - '@sentry/core@9.10.0': {} + '@sentry/core@9.10.1': {} - '@sentry/nextjs@9.10.0(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(next@15.2.4(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0))(react@19.0.0)(webpack@5.98.0)': + '@sentry/nextjs@9.10.1(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(next@15.2.4(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)(webpack@5.98.0)': dependencies: '@opentelemetry/api': 1.9.0 '@opentelemetry/semantic-conventions': 1.30.0 '@rollup/plugin-commonjs': 28.0.1(rollup@4.35.0) - '@sentry-internal/browser-utils': 9.10.0 - '@sentry/core': 9.10.0 - '@sentry/node': 9.10.0 - '@sentry/opentelemetry': 9.10.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.30.0) - '@sentry/react': 9.10.0(react@19.0.0) - '@sentry/vercel-edge': 9.10.0 - '@sentry/webpack-plugin': 3.2.3(webpack@5.98.0) + '@sentry-internal/browser-utils': 9.10.1 + '@sentry/core': 9.10.1 + '@sentry/node': 9.10.1 + '@sentry/opentelemetry': 9.10.1(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.30.0) + '@sentry/react': 9.10.1(react@19.1.0) + '@sentry/vercel-edge': 9.10.1 + '@sentry/webpack-plugin': 3.2.4(webpack@5.98.0) chalk: 3.0.0 - next: 15.2.4(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + next: 15.2.4(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) resolve: 1.22.8 rollup: 4.35.0 stacktrace-parser: 0.1.11 @@ -11472,7 +11472,7 @@ snapshots: - supports-color - webpack - '@sentry/node@9.10.0': + '@sentry/node@9.10.1': dependencies: '@opentelemetry/api': 1.9.0 '@opentelemetry/context-async-hooks': 1.30.1(@opentelemetry/api@1.9.0) @@ -11505,13 +11505,13 @@ snapshots: '@opentelemetry/sdk-trace-base': 1.30.1(@opentelemetry/api@1.9.0) '@opentelemetry/semantic-conventions': 1.30.0 '@prisma/instrumentation': 6.5.0(@opentelemetry/api@1.9.0) - '@sentry/core': 9.10.0 - '@sentry/opentelemetry': 9.10.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.30.0) + '@sentry/core': 9.10.1 + '@sentry/opentelemetry': 9.10.1(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.30.0) import-in-the-middle: 1.13.1 transitivePeerDependencies: - supports-color - '@sentry/opentelemetry@9.10.0(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.30.0)': + '@sentry/opentelemetry@9.10.1(@opentelemetry/api@1.9.0)(@opentelemetry/context-async-hooks@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/core@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.57.2(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.1(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.30.0)': dependencies: '@opentelemetry/api': 1.9.0 '@opentelemetry/context-async-hooks': 1.30.1(@opentelemetry/api@1.9.0) @@ -11519,23 +11519,23 @@ snapshots: '@opentelemetry/instrumentation': 0.57.2(@opentelemetry/api@1.9.0) '@opentelemetry/sdk-trace-base': 1.30.1(@opentelemetry/api@1.9.0) '@opentelemetry/semantic-conventions': 1.30.0 - '@sentry/core': 9.10.0 + '@sentry/core': 9.10.1 - '@sentry/react@9.10.0(react@19.0.0)': + '@sentry/react@9.10.1(react@19.1.0)': dependencies: - '@sentry/browser': 9.10.0 - '@sentry/core': 9.10.0 + '@sentry/browser': 9.10.1 + '@sentry/core': 9.10.1 hoist-non-react-statics: 3.3.2 - react: 19.0.0 + react: 19.1.0 - '@sentry/vercel-edge@9.10.0': + '@sentry/vercel-edge@9.10.1': dependencies: '@opentelemetry/api': 1.9.0 - '@sentry/core': 9.10.0 + '@sentry/core': 9.10.1 - '@sentry/webpack-plugin@3.2.3(webpack@5.98.0)': + '@sentry/webpack-plugin@3.2.4(webpack@5.98.0)': dependencies: - '@sentry/bundler-plugin-core': 3.2.3 + '@sentry/bundler-plugin-core': 3.2.4 unplugin: 1.0.1 uuid: 9.0.1 webpack: 5.98.0 @@ -11555,12 +11555,12 @@ snapshots: '@standard-schema/utils@0.3.0': {} - '@stripe/react-stripe-js@3.5.1(@stripe/stripe-js@6.1.0)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@stripe/react-stripe-js@3.5.1(@stripe/stripe-js@6.1.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@stripe/stripe-js': 6.1.0 prop-types: 15.8.1 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) '@stripe/stripe-js@6.1.0': {} @@ -11683,18 +11683,18 @@ snapshots: postcss: 8.5.3 tailwindcss: 4.0.17 - '@tanstack/query-core@5.69.2': {} + '@tanstack/query-core@5.70.0': {} - '@tanstack/react-query@5.69.2(react@19.0.0)': + '@tanstack/react-query@5.70.0(react@19.1.0)': dependencies: - '@tanstack/query-core': 5.69.2 - react: 19.0.0 + '@tanstack/query-core': 5.70.0 + react: 19.1.0 - '@tanstack/react-table@8.21.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tanstack/react-table@8.21.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)': dependencies: '@tanstack/table-core': 8.21.2 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) '@tanstack/table-core@8.21.2': {} @@ -11719,7 +11719,7 @@ snapshots: transitivePeerDependencies: - supports-color - '@trpc/server@11.0.0(typescript@5.8.2)': + '@trpc/server@11.0.1(typescript@5.8.2)': dependencies: typescript: 5.8.2 @@ -12546,14 +12546,14 @@ snapshots: cmd-shim@7.0.0: {} - cmdk@1.1.1(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + cmdk@1.1.1(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: - '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-dialog': 1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.0.0) - '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.1(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-dialog': 1.1.6(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) + '@radix-ui/react-id': 1.1.0(@types/react@19.0.12)(react@19.1.0) + '@radix-ui/react-primitive': 2.0.2(@types/react-dom@19.0.4(@types/react@19.0.12))(@types/react@19.0.12)(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) transitivePeerDependencies: - '@types/react' - '@types/react-dom' @@ -13057,8 +13057,8 @@ snapshots: '@typescript-eslint/parser': 8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2) eslint: 9.23.0(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.9.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.9.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)) + eslint-import-resolver-typescript: 3.9.1(eslint-plugin-import@2.31.0)(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.9.1)(eslint@9.23.0(jiti@2.4.2)) eslint-plugin-jsx-a11y: 6.10.2(eslint@9.23.0(jiti@2.4.2)) eslint-plugin-react: 7.37.4(eslint@9.23.0(jiti@2.4.2)) eslint-plugin-react-hooks: 5.2.0(eslint@9.23.0(jiti@2.4.2)) @@ -13083,7 +13083,7 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.9.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)): + eslint-import-resolver-typescript@3.9.1(eslint-plugin-import@2.31.0)(eslint@9.23.0(jiti@2.4.2)): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.4.0 @@ -13094,22 +13094,22 @@ snapshots: stable-hash: 0.0.5 tinyglobby: 0.2.12 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.9.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.9.1)(eslint@9.23.0(jiti@2.4.2)) transitivePeerDependencies: - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.9.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.9.1)(eslint@9.23.0(jiti@2.4.2)): dependencies: debug: 3.2.7 optionalDependencies: '@typescript-eslint/parser': 8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2) eslint: 9.23.0(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.9.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)) + eslint-import-resolver-typescript: 3.9.1(eslint-plugin-import@2.31.0)(eslint@9.23.0(jiti@2.4.2)) transitivePeerDependencies: - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.9.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-typescript@3.9.1)(eslint@9.23.0(jiti@2.4.2)): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -13120,7 +13120,7 @@ snapshots: doctrine: 2.1.0 eslint: 9.23.0(jiti@2.4.2) eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.9.1(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)))(eslint@9.23.0(jiti@2.4.2)) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.28.0(eslint@9.23.0(jiti@2.4.2))(typescript@5.8.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.9.1)(eslint@9.23.0(jiti@2.4.2)) hasown: 2.0.2 is-core-module: 2.16.1 is-glob: 4.0.3 @@ -13713,10 +13713,10 @@ snapshots: ini@1.3.8: {} - input-otp@1.4.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + input-otp@1.4.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) inquirer@7.3.3: dependencies: @@ -14134,9 +14134,9 @@ snapshots: lru-cache@7.18.3: {} - lucide-react@0.484.0(react@19.0.0): + lucide-react@0.485.0(react@19.1.0): dependencies: - react: 19.0.0 + react: 19.1.0 magic-string@0.30.17: dependencies: @@ -14159,10 +14159,10 @@ snapshots: math-intrinsics@1.1.0: {} - md-to-react-email@5.0.5(react@19.0.0): + md-to-react-email@5.0.5(react@19.1.0): dependencies: marked: 7.0.4 - react: 19.0.0 + react: 19.1.0 mdast-util-find-and-replace@3.0.2: dependencies: @@ -14584,20 +14584,20 @@ snapshots: netmask@2.0.2: {} - next-sitemap@4.2.3(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)): + next-sitemap@4.2.3(next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)): dependencies: '@corex/deepmerge': 4.0.43 '@next/env': 13.5.7 fast-glob: 3.3.3 minimist: 1.2.8 - next: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + next: 15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - next-themes@0.4.6(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + next-themes@0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - next@15.2.4(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + next@15.2.4(@babel/core@7.26.10)(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: '@next/env': 15.2.4 '@swc/counter': 0.1.3 @@ -14605,9 +14605,9 @@ snapshots: busboy: 1.6.0 caniuse-lite: 1.0.30001707 postcss: 8.4.31 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) - styled-jsx: 5.1.6(@babel/core@7.26.10)(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + styled-jsx: 5.1.6(@babel/core@7.26.10)(react@19.1.0) optionalDependencies: '@next/swc-darwin-arm64': 15.2.4 '@next/swc-darwin-x64': 15.2.4 @@ -14624,7 +14624,7 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-aeaed83-20250323)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: '@next/env': 15.2.4 '@swc/counter': 0.1.3 @@ -14632,9 +14632,9 @@ snapshots: busboy: 1.6.0 caniuse-lite: 1.0.30001707 postcss: 8.4.31 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) - styled-jsx: 5.1.6(@babel/core@7.26.10)(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + styled-jsx: 5.1.6(@babel/core@7.26.10)(react@19.1.0) optionalDependencies: '@next/swc-darwin-arm64': 15.2.4 '@next/swc-darwin-x64': 15.2.4 @@ -14652,7 +14652,7 @@ snapshots: - '@babel/core' - babel-plugin-macros - next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-e1e972c-20250221)(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + next@15.2.4(@opentelemetry/api@1.9.0)(@playwright/test@1.51.1)(babel-plugin-react-compiler@19.0.0-beta-e1e972c-20250221)(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: '@next/env': 15.2.4 '@swc/counter': 0.1.3 @@ -14660,9 +14660,9 @@ snapshots: busboy: 1.6.0 caniuse-lite: 1.0.30001707 postcss: 8.4.31 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) - styled-jsx: 5.1.6(@babel/core@7.26.10)(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + styled-jsx: 5.1.6(@babel/core@7.26.10)(react@19.1.0) optionalDependencies: '@next/swc-darwin-arm64': 15.2.4 '@next/swc-darwin-x64': 15.2.4 @@ -15315,33 +15315,33 @@ snapshots: minimist: 1.2.8 strip-json-comments: 2.0.1 - react-day-picker@8.10.1(date-fns@4.1.0)(react@19.0.0): + react-day-picker@8.10.1(date-fns@4.1.0)(react@19.1.0): dependencies: date-fns: 4.1.0 - react: 19.0.0 + react: 19.1.0 - react-dom@19.0.0(react@19.0.0): + react-dom@19.1.0(react@19.1.0): dependencies: - react: 19.0.0 - scheduler: 0.25.0 + react: 19.1.0 + scheduler: 0.26.0 - react-error-boundary@4.1.2(react@19.0.0): + react-error-boundary@4.1.2(react@19.1.0): dependencies: '@babel/runtime': 7.26.9 - react: 19.0.0 + react: 19.1.0 - react-hook-form@7.54.2(react@19.0.0): + react-hook-form@7.55.0(react@19.1.0): dependencies: - react: 19.0.0 + react: 19.1.0 - react-i18next@15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + react-i18next@15.4.1(i18next@24.2.3(typescript@5.8.2))(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: '@babel/runtime': 7.26.9 html-parse-stringify: 3.0.1 i18next: 24.2.3(typescript@5.8.2) - react: 19.0.0 + react: 19.1.0 optionalDependencies: - react-dom: 19.0.0(react@19.0.0) + react-dom: 19.1.0(react@19.1.0) react-is@19.0.0: {} @@ -15349,55 +15349,55 @@ snapshots: dependencies: fast-deep-equal: 2.0.1 - react-remove-scroll-bar@2.3.8(@types/react@19.0.12)(react@19.0.0): + react-remove-scroll-bar@2.3.8(@types/react@19.0.12)(react@19.1.0): dependencies: - react: 19.0.0 - react-style-singleton: 2.2.3(@types/react@19.0.12)(react@19.0.0) + react: 19.1.0 + react-style-singleton: 2.2.3(@types/react@19.0.12)(react@19.1.0) tslib: 2.8.1 optionalDependencies: '@types/react': 19.0.12 - react-remove-scroll@2.6.3(@types/react@19.0.12)(react@19.0.0): + react-remove-scroll@2.6.3(@types/react@19.0.12)(react@19.1.0): dependencies: - react: 19.0.0 - react-remove-scroll-bar: 2.3.8(@types/react@19.0.12)(react@19.0.0) - react-style-singleton: 2.2.3(@types/react@19.0.12)(react@19.0.0) + react: 19.1.0 + react-remove-scroll-bar: 2.3.8(@types/react@19.0.12)(react@19.1.0) + react-style-singleton: 2.2.3(@types/react@19.0.12)(react@19.1.0) tslib: 2.8.1 - use-callback-ref: 1.3.3(@types/react@19.0.12)(react@19.0.0) - use-sidecar: 1.1.3(@types/react@19.0.12)(react@19.0.0) + use-callback-ref: 1.3.3(@types/react@19.0.12)(react@19.1.0) + use-sidecar: 1.1.3(@types/react@19.0.12)(react@19.1.0) optionalDependencies: '@types/react': 19.0.12 - react-smooth@4.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + react-smooth@4.0.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: fast-equals: 5.2.2 prop-types: 15.8.1 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) - react-transition-group: 4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) + react-transition-group: 4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0) - react-style-singleton@2.2.3(@types/react@19.0.12)(react@19.0.0): + react-style-singleton@2.2.3(@types/react@19.0.12)(react@19.1.0): dependencies: get-nonce: 1.0.1 - react: 19.0.0 + react: 19.1.0 tslib: 2.8.1 optionalDependencies: '@types/react': 19.0.12 - react-top-loading-bar@3.0.2(react@19.0.0): + react-top-loading-bar@3.0.2(react@19.1.0): dependencies: - react: 19.0.0 + react: 19.1.0 - react-transition-group@4.4.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + react-transition-group@4.4.5(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: '@babel/runtime': 7.26.9 dom-helpers: 5.2.1 loose-envify: 1.4.0 prop-types: 15.8.1 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) - react@19.0.0: {} + react@19.1.0: {} read-cmd-shim@5.0.0: {} @@ -15417,15 +15417,15 @@ snapshots: dependencies: decimal.js-light: 2.5.1 - recharts@2.15.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + recharts@2.15.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: clsx: 2.1.1 eventemitter3: 4.0.7 lodash: 4.17.21 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) react-is: 19.0.0 - react-smooth: 4.0.4(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-smooth: 4.0.4(react-dom@19.1.0(react@19.1.0))(react@19.1.0) recharts-scale: 0.4.5 tiny-invariant: 1.3.3 victory-vendor: 36.9.2 @@ -15600,7 +15600,7 @@ snapshots: safer-buffer@2.1.2: {} - scheduler@0.25.0: {} + scheduler@0.26.0: {} schema-utils@4.3.0: dependencies: @@ -15751,7 +15751,7 @@ snapshots: is-plain-object: 5.0.0 slate: 0.91.4 - slate-react@0.91.11(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(slate@0.91.4): + slate-react@0.91.11(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(slate@0.91.4): dependencies: '@juggle/resize-observer': 3.4.0 '@types/is-hotkey': 0.1.10 @@ -15760,8 +15760,8 @@ snapshots: is-hotkey: 0.1.8 is-plain-object: 5.0.0 lodash: 4.17.21 - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) scroll-into-view-if-needed: 2.2.31 slate: 0.91.4 tiny-invariant: 1.0.6 @@ -15795,10 +15795,10 @@ snapshots: dependencies: atomic-sleep: 1.0.0 - sonner@2.0.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + sonner@2.0.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0): dependencies: - react: 19.0.0 - react-dom: 19.0.0(react@19.0.0) + react: 19.1.0 + react-dom: 19.1.0(react@19.1.0) source-map-js@1.2.1: {} @@ -15915,10 +15915,10 @@ snapshots: '@types/node': 22.13.14 qs: 6.14.0 - styled-jsx@5.1.6(@babel/core@7.26.10)(react@19.0.0): + styled-jsx@5.1.6(@babel/core@7.26.10)(react@19.1.0): dependencies: client-only: 0.0.1 - react: 19.0.0 + react: 19.1.0 optionalDependencies: '@babel/core': 7.26.10 @@ -16236,30 +16236,30 @@ snapshots: dependencies: punycode: 2.3.1 - urql@4.2.2(@urql/core@5.1.1(graphql@16.10.0))(react@19.0.0): + urql@4.2.2(@urql/core@5.1.1(graphql@16.10.0))(react@19.1.0): dependencies: '@urql/core': 5.1.1(graphql@16.10.0) - react: 19.0.0 + react: 19.1.0 wonka: 6.3.5 - use-callback-ref@1.3.3(@types/react@19.0.12)(react@19.0.0): + use-callback-ref@1.3.3(@types/react@19.0.12)(react@19.1.0): dependencies: - react: 19.0.0 + react: 19.1.0 tslib: 2.8.1 optionalDependencies: '@types/react': 19.0.12 - use-sidecar@1.1.3(@types/react@19.0.12)(react@19.0.0): + use-sidecar@1.1.3(@types/react@19.0.12)(react@19.1.0): dependencies: detect-node-es: 1.1.0 - react: 19.0.0 + react: 19.1.0 tslib: 2.8.1 optionalDependencies: '@types/react': 19.0.12 - use-sync-external-store@1.4.0(react@19.0.0): + use-sync-external-store@1.4.0(react@19.1.0): dependencies: - react: 19.0.0 + react: 19.1.0 util-deprecate@1.0.2: {}