From e381f7f289a34ffc8e6a25cfe09e99c5fd23ade3 Mon Sep 17 00:00:00 2001 From: Rami Maalouf Date: Sat, 24 May 2025 16:59:46 +0300 Subject: [PATCH] initial steps to get the web to work --- apps/expo/babel.config.js | 4 +- apps/expo/package.json | 1 + apps/nextjs/next.config.js | 8 +- apps/nextjs/tsconfig.json | 21 +- packages/local-api/package.json | 2 +- packages/local-db/package.json | 2 +- packages/local-db/utils.ts | 8 +- packages/server-api/package.json | 3 +- packages/server-db/package.json | 2 +- .../{index.tsx => index.ios.tsx} | 0 pnpm-lock.yaml | 5006 ++++++++--------- 11 files changed, 2434 insertions(+), 2623 deletions(-) rename packages/ui/src/date-time-picker/{index.tsx => index.ios.tsx} (100%) diff --git a/apps/expo/babel.config.js b/apps/expo/babel.config.js index c326c999..afa4d569 100644 --- a/apps/expo/babel.config.js +++ b/apps/expo/babel.config.js @@ -19,8 +19,8 @@ module.exports = (api) => { // for expo-sqlite ['inline-import', { extensions: ['.sql'] }], // if you want reanimated support - // '@babel/plugin-transform-export-namespace-from', - // 'react-native-reanimated/plugin', + '@babel/plugin-transform-export-namespace-from', + 'react-native-reanimated/plugin', ], } } diff --git a/apps/expo/package.json b/apps/expo/package.json index af10c7e5..0bcb3371 100644 --- a/apps/expo/package.json +++ b/apps/expo/package.json @@ -22,6 +22,7 @@ "build:ios": "scripts/build_ios.sh com.ramimaalouf.rooots" }, "dependencies": { + "@babel/plugin-proposal-export-namespace-from": "^7.18.9", "@gorhom/bottom-sheet": "^5.0.6", "@orama/orama": "^2.0.19", "@react-native-async-storage/async-storage": "^2.1.2", diff --git a/apps/nextjs/next.config.js b/apps/nextjs/next.config.js index f7a039de..cc595b5b 100644 --- a/apps/nextjs/next.config.js +++ b/apps/nextjs/next.config.js @@ -25,7 +25,7 @@ const plugins = [ logTimings: true, disableExtraction, // experiment - reduced bundle size react-native-web - useReactNativeWebLite: false, + // useReactNativeWebLite: false, shouldExtract: (path) => { if (path.includes(join('packages', 'app'))) { return true @@ -59,10 +59,12 @@ module.exports = () => { 'expo-linking', 'expo-blur', 'react-native-gesture-handler', - // 'react-native-reanimated', - // '@gorhom/bottom-sheet', + 'react-native-reanimated', + '@gorhom/bottom-sheet', 'expo-constants', 'expo-modules-core', + 'expo-sqlite', + 'drizzle-orm', ], experimental: { scrollRestoration: true, diff --git a/apps/nextjs/tsconfig.json b/apps/nextjs/tsconfig.json index 6540bd2b..091b7efc 100644 --- a/apps/nextjs/tsconfig.json +++ b/apps/nextjs/tsconfig.json @@ -1,5 +1,5 @@ { - "extends": "@rooots/tsconfig/base.json", + // "extends": "@rooots/tsconfig/base.json", "compilerOptions": { "baseUrl": ".", "paths": { @@ -13,7 +13,22 @@ } ], "tsBuildInfoFile": "node_modules/.cache/tsbuildinfo.json", - "noEmit": true + "noEmit": true, + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "strict": false, + "incremental": true, + "module": "esnext", + "esModuleInterop": true, + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "jsx": "preserve" }, "include": [ ".", @@ -22,4 +37,4 @@ "exclude": [ "node_modules" ] -} \ No newline at end of file +} diff --git a/packages/local-api/package.json b/packages/local-api/package.json index c42c6496..2983124c 100644 --- a/packages/local-api/package.json +++ b/packages/local-api/package.json @@ -1,5 +1,5 @@ { - "name": "@rooots/api", + "name": "@rooots/local-api", "version": "0.1.0", "private": true, "main": "./index.ts", diff --git a/packages/local-db/package.json b/packages/local-db/package.json index 6ecdb477..264787b9 100644 --- a/packages/local-db/package.json +++ b/packages/local-db/package.json @@ -1,5 +1,5 @@ { - "name": "@rooots/db", + "name": "@rooots/local-db", "version": "0.1.0", "private": true, "main": "./index.ts", diff --git a/packages/local-db/utils.ts b/packages/local-db/utils.ts index 5b7fda73..7e4b5ac8 100644 --- a/packages/local-db/utils.ts +++ b/packages/local-db/utils.ts @@ -5,7 +5,7 @@ import * as schema from './schema' import type { Database } from './schema/_table' import { drizzle } from 'drizzle-orm/expo-sqlite' import { openDatabaseSync } from 'expo-sqlite' -import { useDrizzleStudio } from 'expo-drizzle-studio-plugin' +// import { useDrizzleStudio } from 'expo-drizzle-studio-plugin' interface ConnectionResult { db: Database @@ -42,9 +42,9 @@ export const useMigrationHelper = () => { return useMigrations(db, migrations) } -export const useDrizzleStudioHelper = () => { - return useDrizzleStudio(expo) -} +// export const useDrizzleStudioHelper = () => { +// return useDrizzleStudio(expo) +// } export function generateRandomId(length: number): number { const id = Math.random() * 10 ** length diff --git a/packages/server-api/package.json b/packages/server-api/package.json index ca3c97ac..e9fe3268 100644 --- a/packages/server-api/package.json +++ b/packages/server-api/package.json @@ -1,5 +1,5 @@ { - "name": "@rooots/server-api", + "name": "@rooots/api", "version": "0.1.0", "private": true, "main": "./index.ts", @@ -17,6 +17,7 @@ "@rooots/db": "workspace:*", "@rooots/queries": "workspace:*", "@trpc/client": "catalog:", + "@trpc/react-query": "^11.1.2", "@trpc/server": "catalog:", "@trpc/tanstack-react-query": "catalog:", "superjson": "2.2.1", diff --git a/packages/server-db/package.json b/packages/server-db/package.json index 3e6dd9ec..ceab5318 100644 --- a/packages/server-db/package.json +++ b/packages/server-db/package.json @@ -1,5 +1,5 @@ { - "name": "@rooots/server-db", + "name": "@rooots/db", "version": "0.1.0", "private": true, "main": "./index.ts", diff --git a/packages/ui/src/date-time-picker/index.tsx b/packages/ui/src/date-time-picker/index.ios.tsx similarity index 100% rename from packages/ui/src/date-time-picker/index.tsx rename to packages/ui/src/date-time-picker/index.ios.tsx diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index d2fad190..a9264878 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -8,19 +8,19 @@ catalogs: default: '@tanstack/query-async-storage-persister': specifier: ^5.74.4 - version: 5.75.7 + version: 5.76.2 '@tanstack/react-query': specifier: ^5.74.4 - version: 5.75.7 + version: 5.76.2 '@tanstack/react-query-devtools': specifier: ^5.74.4 - version: 5.75.7 + version: 5.76.2 '@tanstack/react-query-next-experimental': specifier: ^5.74.4 - version: 5.75.7 + version: 5.76.2 '@tanstack/react-query-persist-client': specifier: ^5.74.4 - version: 5.75.7 + version: 5.76.2 '@trpc/client': specifier: ^11.1.0 version: 11.1.2 @@ -35,14 +35,14 @@ catalogs: version: 5.8.3 zod: specifier: ^3.24.3 - version: 3.24.4 + version: 3.25.23 react19: '@types/react': specifier: ^19.0.12 - version: 19.1.3 + version: 19.1.5 '@types/react-dom': specifier: ^19.0.4 - version: 19.1.3 + version: 19.1.5 react: specifier: 19.0.0 version: 19.0.0 @@ -59,7 +59,7 @@ importers: version: 1.7.0 '@turbo/gen': specifier: ^1.12.4 - version: 1.13.4(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3) + version: 1.13.4(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3) turbo: specifier: ^1.12.4 version: 1.13.4 @@ -81,25 +81,28 @@ importers: version: link:../../tooling/typescript nitropack: specifier: ^2.8.1 - version: 2.11.11(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0)) + version: 2.11.12(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0)) typescript: specifier: ^5.3.3 version: 5.8.3 apps/expo: dependencies: + '@babel/plugin-proposal-export-namespace-from': + specifier: ^7.18.9 + version: 7.18.9(@babel/core@7.27.1) '@gorhom/bottom-sheet': specifier: ^5.0.6 - version: 5.1.4(@types/react@19.1.3)(react-native-gesture-handler@2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 5.1.4(@types/react@19.1.5)(react-native-gesture-handler@2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@orama/orama': specifier: ^2.0.19 version: 2.1.1 '@react-native-async-storage/async-storage': specifier: ^2.1.2 - version: 2.1.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + version: 2.1.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) '@react-native-community/datetimepicker': specifier: 8.3.0 - version: 8.3.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 8.3.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@rooots/app': specifier: workspace:* version: link:../../packages/app @@ -108,19 +111,19 @@ importers: version: link:../../packages/ui '@shopify/flash-list': specifier: 1.7.6 - version: 1.7.6(@babel/runtime@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.7.6(@babel/runtime@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@tamagui/lucide-icons': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@tanstack/query-async-storage-persister': specifier: 'catalog:' - version: 5.75.7 + version: 5.76.2 '@tanstack/react-query': specifier: 'catalog:' - version: 5.75.7(react@19.0.0) + version: 5.76.2(react@19.0.0) '@tanstack/react-query-persist-client': specifier: 'catalog:' - version: 5.75.7(@tanstack/react-query@5.75.7(react@19.0.0))(react@19.0.0) + version: 5.76.2(@tanstack/react-query@5.76.2(react@19.0.0))(react@19.0.0) '@trpc/client': specifier: 'catalog:' version: 11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3) @@ -129,7 +132,7 @@ importers: version: 11.1.2(typescript@5.8.3) '@trpc/tanstack-react-query': specifier: 'catalog:' - version: 11.1.2(@tanstack/react-query@5.75.7(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + version: 11.1.2(@tanstack/react-query@5.76.2(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) babel-plugin-inline-import: specifier: ^3.0.0 version: 3.0.0 @@ -138,64 +141,64 @@ importers: version: 4.1.0 expo: specifier: ^53.0.9 - version: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-background-fetch: specifier: ~13.1.5 - version: 13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + version: 13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) expo-bluetooth: specifier: ^0.0.0 version: 0.0.0 expo-blur: specifier: ~14.1.4 - version: 14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-constants: specifier: ^17.1.6 - version: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + version: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) expo-dev-client: specifier: ~5.1.8 - version: 5.1.8(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + version: 5.1.8(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) expo-device: specifier: ~7.1.4 - version: 7.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + version: 7.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) expo-haptics: specifier: ~14.1.4 - version: 14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + version: 14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) expo-linear-gradient: specifier: ~14.1.4 - version: 14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-linking: specifier: ^7.1.5 - version: 7.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 7.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-navigation-bar: specifier: ~4.2.4 - version: 4.2.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 4.2.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-notifications: specifier: ~0.31.2 - version: 0.31.2(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 0.31.2(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-router: specifier: ^5.0.6 - version: 5.0.6(sdevgqcnb4s7gkn5llf2fp5dhi) + version: 5.0.7(j7aitewh3qrlmj3lk335ovk6zq) expo-splash-screen: specifier: ^0.30.8 - version: 0.30.8(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + version: 0.30.8(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) expo-sqlite: specifier: ~15.2.10 - version: 15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-status-bar: specifier: ^2.2.3 - version: 2.2.3(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 2.2.3(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-task-manager: specifier: ~13.1.5 - version: 13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + version: 13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) expo-updates: specifier: ~0.28.13 - version: 0.28.13(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0) + version: 0.28.13(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0) expo-video: specifier: ^2.1.9 - version: 2.1.9(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 2.1.9(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) jotai: specifier: ^2.12.4 - version: 2.12.4(@types/react@19.1.3)(react@19.0.0) + version: 2.12.4(@types/react@19.1.5)(react@19.0.0) react: specifier: catalog:react19 version: 19.0.0 @@ -204,34 +207,34 @@ importers: version: 19.0.0(react@19.0.0) react-hook-form: specifier: ^7.54.2 - version: 7.56.3(react@19.0.0) + version: 7.56.4(react@19.0.0) react-native: specifier: 0.79.2 - version: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + version: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) react-native-ble-plx: specifier: ^3.2.1 - version: 3.5.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 3.5.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-calendars: specifier: ^1.1307.0 - version: 1.1312.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.1312.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-gesture-handler: specifier: ~2.24.0 - version: 2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-mmkv: specifier: ^3.2.0 - version: 3.2.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 3.2.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-reanimated: specifier: ~3.17.5 - version: 3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-safe-area-context: specifier: ~5.4.0 - version: 5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-screens: specifier: ~4.10.0 - version: 4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-svg: specifier: 15.11.2 - version: 15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) superjson: specifier: 2.2.1 version: 2.2.1 @@ -256,7 +259,7 @@ importers: version: 4.1.3 '@rooots/api': specifier: workspace:* - version: link:../../packages/local-api + version: link:../../packages/server-api '@rooots/tailwind-config': specifier: workspace:* version: link:../../tooling/tailwind @@ -265,13 +268,13 @@ importers: version: link:../../tooling/typescript '@tamagui/babel-plugin': specifier: ^1.120.2 - version: 1.126.12(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.126.13(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@types/babel__core': specifier: ^7.20.5 version: 7.20.5 '@types/react': specifier: catalog:react19 - version: 19.1.3 + version: 19.1.5 babel-preset-expo: specifier: ~13.1.11 version: 13.1.11(@babel/core@7.27.1) @@ -289,10 +292,10 @@ importers: version: 0.8.2 '@rooots/api': specifier: workspace:* - version: link:../../packages/local-api + version: link:../../packages/server-api '@tailwindcss/typography': specifier: ^0.5.10 - version: 0.5.16(tailwindcss@3.3.5(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3))) + version: 0.5.16(tailwindcss@3.3.5(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3))) class-variance-authority: specifier: ^0.7.0 version: 0.7.1 @@ -307,13 +310,13 @@ importers: version: 2.0.0 next: specifier: ^14.1.0 - version: 14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0) + version: 14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0) next-themes: specifier: ^0.2.1 - version: 0.2.1(next@14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 0.2.1(next@14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0) plasmo: specifier: ^0.86.1 - version: 0.86.3(@swc/core@1.11.24(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(handlebars@4.7.8)(lodash@4.17.21)(postcss@8.5.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(relateurl@0.2.7)(terser@5.39.0)(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)) + version: 0.86.3(@swc/core@1.11.29(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(handlebars@4.7.8)(lodash@4.17.21)(postcss@8.5.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(relateurl@0.2.7)(terser@5.39.2)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)) react: specifier: catalog:react19 version: 19.0.0 @@ -328,23 +331,23 @@ importers: version: 0.10.1-1 youtube-caption-extractor: specifier: ^1.4.3 - version: 1.4.3(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46) + version: 1.4.3(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50) zustand: specifier: ^4.5.1 - version: 4.5.6(@types/react@19.1.3)(react@19.0.0) + version: 4.5.7(@types/react@19.1.5)(react@19.0.0) devDependencies: '@tailwindcss/forms': specifier: ^0.5.6 - version: 0.5.10(tailwindcss@3.3.5(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3))) + version: 0.5.10(tailwindcss@3.3.5(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3))) '@types/node': specifier: ^20.11.20 - version: 20.17.46 + version: 20.17.50 '@types/react': specifier: catalog:react19 - version: 19.1.3 + version: 19.1.5 '@types/react-dom': specifier: ^18.2.19 - version: 18.3.7(@types/react@19.1.3) + version: 18.3.7(@types/react@19.1.5) autoprefixer: specifier: ^10.4.16 version: 10.4.21(postcss@8.5.3) @@ -353,7 +356,7 @@ importers: version: 8.5.3 tailwindcss: specifier: 3.3.5 - version: 3.3.5(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)) + version: 3.3.5(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)) typescript: specifier: 'catalog:' version: 5.8.3 @@ -362,7 +365,7 @@ importers: dependencies: '@million/lint': specifier: ^0.0.73 - version: 0.0.73(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(rollup@4.40.2) + version: 0.0.73(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(rollup@4.41.0) '@rooots/app': specifier: workspace:* version: link:../../packages/app @@ -374,22 +377,22 @@ importers: version: link:../../packages/ui '@t3-oss/env-nextjs': specifier: ^0.9.2 - version: 0.9.2(typescript@5.8.3)(zod@3.24.4) + version: 0.9.2(typescript@5.8.3)(zod@3.25.23) '@tamagui/config': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@tamagui/next-theme': specifier: ^1.120.2 - version: 1.126.12(react@19.0.0) + version: 1.126.13(react@19.0.0) '@tanstack/react-query': specifier: 'catalog:' - version: 5.75.7(react@19.0.0) + version: 5.76.2(react@19.0.0) '@tanstack/react-query-devtools': specifier: 'catalog:' - version: 5.75.7(@tanstack/react-query@5.75.7(react@19.0.0))(react@19.0.0) + version: 5.76.2(@tanstack/react-query@5.76.2(react@19.0.0))(react@19.0.0) '@tanstack/react-query-next-experimental': specifier: 'catalog:' - version: 5.75.7(@tanstack/react-query@5.75.7(react@19.0.0))(next@14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0))(react@19.0.0) + version: 5.76.2(@tanstack/react-query@5.76.2(react@19.0.0))(next@14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0))(react@19.0.0) '@trpc/client': specifier: 'catalog:' version: 11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3) @@ -398,10 +401,10 @@ importers: version: 11.1.2(typescript@5.8.3) '@trpc/tanstack-react-query': specifier: 'catalog:' - version: 11.1.2(@tanstack/react-query@5.75.7(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + version: 11.1.2(@tanstack/react-query@5.76.2(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) next: specifier: ^14.1.0 - version: 14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0) + version: 14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0) react: specifier: catalog:react19 version: 19.0.0 @@ -416,26 +419,26 @@ importers: version: 2.2.1 zod: specifier: 'catalog:' - version: 3.24.4 + version: 3.25.23 devDependencies: '@tamagui/next-plugin': specifier: ^1.120.2 - version: 1.126.12(@babel/core@7.27.1)(@swc/helpers@0.5.17)(next@14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))) + version: 1.126.13(@babel/core@7.27.1)(@swc/helpers@0.5.17)(next@14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))) '@types/node': specifier: ^20.11.20 - version: 20.17.46 + version: 20.17.50 '@types/react': specifier: catalog:react19 - version: 19.1.3 + version: 19.1.5 '@types/react-dom': specifier: catalog:react19 - version: 19.1.3(@types/react@19.1.3) + version: 19.1.5(@types/react@19.1.5) dotenv-cli: specifier: ^7.3.0 version: 7.4.4 react-native: specifier: 0.79.2 - version: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + version: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) typescript: specifier: 'catalog:' version: 5.8.3 @@ -444,7 +447,7 @@ importers: dependencies: '@gorhom/bottom-sheet': specifier: ^5.0.6 - version: 5.1.4(@types/react@19.1.3)(react-native-gesture-handler@2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 5.1.4(@types/react@19.1.5)(react-native-gesture-handler@2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@orama/orama': specifier: ^2.0.19 version: 2.1.1 @@ -453,25 +456,25 @@ importers: version: link:../ui '@tamagui/animations-react-native': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@tamagui/colors': specifier: ^1.120.2 - version: 1.126.12 + version: 1.126.13 '@tamagui/font-inter': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@tamagui/lucide-icons': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@tamagui/shorthands': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@tamagui/themes': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@tanstack/react-query': specifier: 'catalog:' - version: 5.75.7(react@19.0.0) + version: 5.76.2(react@19.0.0) '@trpc/client': specifier: 'catalog:' version: 11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3) @@ -480,80 +483,80 @@ importers: version: 11.1.2(typescript@5.8.3) '@trpc/tanstack-react-query': specifier: 'catalog:' - version: 11.1.2(@tanstack/react-query@5.75.7(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + version: 11.1.2(@tanstack/react-query@5.76.2(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) burnt: specifier: ^0.12.2 - version: 0.12.2(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 0.12.2(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-background-fetch: specifier: ~13.1.5 - version: 13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + version: 13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) expo-bluetooth: specifier: ^0.0.0 version: 0.0.0 expo-constants: specifier: ^17.1.6 - version: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + version: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) expo-font: specifier: ^11.10.3 - version: 11.10.3(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + version: 11.10.3(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) expo-haptics: specifier: ~14.1.4 - version: 14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + version: 14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) expo-linking: specifier: ^7.1.5 - version: 7.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 7.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-task-manager: specifier: ~13.1.5 - version: 13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + version: 13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) jotai: specifier: ^2.12.4 - version: 2.12.4(@types/react@19.1.3)(react@19.0.0) + version: 2.12.4(@types/react@19.1.5)(react@19.0.0) react-hook-form: specifier: ^7.54.2 - version: 7.56.3(react@19.0.0) + version: 7.56.4(react@19.0.0) react-native-ble-plx: specifier: ^3.2.1 - version: 3.5.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 3.5.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-calendars: specifier: ^1.1307.0 - version: 1.1312.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.1312.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-element-dropdown: specifier: ^2.10.1 - version: 2.12.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 2.12.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-gesture-handler: specifier: ~2.24.0 - version: 2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-mmkv: specifier: ^3.2.0 - version: 3.2.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 3.2.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-reanimated: specifier: ~3.17.5 - version: 3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-safe-area-context: specifier: ~5.4.0 - version: 5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) solito: specifier: ^4.2.1 version: 4.4.1 tamagui: specifier: ^1.120.2 - version: 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) zustand: specifier: ^4.5.1 - version: 4.5.6(@types/react@19.1.3)(react@19.0.0) + version: 4.5.7(@types/react@19.1.5)(react@19.0.0) devDependencies: '@react-native-async-storage/async-storage': specifier: ^2.1.2 - version: 2.1.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + version: 2.1.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) '@rooots/api': specifier: workspace:* - version: link:../local-api + version: link:../server-api '@rooots/tsconfig': specifier: workspace:* version: link:../../tooling/typescript '@types/react': specifier: catalog:react19 - version: 19.1.3 + version: 19.1.5 typescript: specifier: ^5.3.3 version: 5.8.3 @@ -568,16 +571,16 @@ importers: version: 0.7.0 '@rooots/db': specifier: workspace:* - version: link:../local-db + version: link:../server-db '@t3-oss/env-nextjs': specifier: ^0.9.2 - version: 0.9.2(typescript@5.8.3)(zod@3.24.4) + version: 0.9.2(typescript@5.8.3)(zod@3.25.23) next: specifier: ^14.1.0 - version: 14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0) + version: 14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0) next-auth: specifier: 5.0.0-beta.3 - version: 5.0.0-beta.3(next@14.2.28(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0))(react@19.0.0) + version: 5.0.0-beta.3(next@14.2.29(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0))(react@19.0.0) react: specifier: catalog:react19 version: 19.0.0 @@ -586,7 +589,7 @@ importers: version: 19.0.0(react@19.0.0) zod: specifier: 'catalog:' - version: 3.24.4 + version: 3.25.23 devDependencies: typescript: specifier: 'catalog:' @@ -599,13 +602,13 @@ importers: version: link:../auth '@rooots/db': specifier: workspace:* - version: link:../local-db + version: link:../server-db '@rooots/queries': specifier: workspace:* version: link:../queries '@tanstack/react-query': specifier: 'catalog:' - version: 5.75.7(react@19.0.0) + version: 5.76.2(react@19.0.0) '@trpc/client': specifier: 'catalog:' version: 11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3) @@ -614,13 +617,13 @@ importers: version: 11.1.2(typescript@5.8.3) '@trpc/tanstack-react-query': specifier: 'catalog:' - version: 11.1.2(@tanstack/react-query@5.75.7(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + version: 11.1.2(@tanstack/react-query@5.76.2(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) superjson: specifier: 2.2.1 version: 2.2.1 zod: specifier: 'catalog:' - version: 3.24.4 + version: 3.25.23 devDependencies: typescript: specifier: 'catalog:' @@ -630,13 +633,13 @@ importers: dependencies: drizzle-orm: specifier: ^0.29.4 - version: 0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0) + version: 0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0) drizzle-zod: specifier: ^0.5.1 - version: 0.5.1(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0))(zod@3.24.4) + version: 0.5.1(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0))(zod@3.25.23) expo-sqlite: specifier: ~15.2.10 - version: 15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) devDependencies: dotenv-cli: specifier: ^7.3.0 @@ -646,7 +649,7 @@ importers: version: 0.21.4 expo-drizzle-studio-plugin: specifier: ^0.0.2 - version: 0.0.2(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + version: 0.0.2(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) tsx: specifier: ^4.7.1 version: 4.19.4 @@ -658,10 +661,10 @@ importers: dependencies: '@rooots/db': specifier: workspace:* - version: link:../local-db + version: link:../server-db zod: specifier: 'catalog:' - version: 3.24.4 + version: 3.25.23 devDependencies: '@rooots/tsconfig': specifier: workspace:* @@ -677,25 +680,28 @@ importers: version: link:../auth '@rooots/db': specifier: workspace:* - version: link:../local-db + version: link:../server-db '@rooots/queries': specifier: workspace:* version: link:../queries '@trpc/client': specifier: 'catalog:' version: 11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3) + '@trpc/react-query': + specifier: ^11.1.2 + version: 11.1.2(@tanstack/react-query@5.76.2(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) '@trpc/server': specifier: 'catalog:' version: 11.1.2(typescript@5.8.3) '@trpc/tanstack-react-query': specifier: 'catalog:' - version: 11.1.2(@tanstack/react-query@5.75.7(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) + version: 11.1.2(@tanstack/react-query@5.76.2(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3) superjson: specifier: 2.2.1 version: 2.2.1 zod: specifier: 'catalog:' - version: 3.24.4 + version: 3.25.23 devDependencies: typescript: specifier: 'catalog:' @@ -708,10 +714,10 @@ importers: version: 0.5.6 drizzle-orm: specifier: ^0.29.4 - version: 0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0) + version: 0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0) drizzle-zod: specifier: ^0.5.1 - version: 0.5.1(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0))(zod@3.24.4) + version: 0.5.1(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0))(zod@3.25.23) devDependencies: dotenv-cli: specifier: ^7.3.0 @@ -730,41 +736,41 @@ importers: dependencies: '@react-native-community/datetimepicker': specifier: 8.3.0 - version: 8.3.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 8.3.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@shopify/flash-list': specifier: 1.7.6 - version: 1.7.6(@babel/runtime@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.7.6(@babel/runtime@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@tamagui/animations-moti': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0) '@tamagui/font-inter': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@tamagui/react-native-media-driver': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@tamagui/shorthands': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@tamagui/themes': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@tamagui/toast': specifier: ^1.120.2 - version: 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@tanstack/react-virtual': specifier: ^3.4.0 - version: 3.13.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + version: 3.13.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0) expo-blur: specifier: ~14.1.4 - version: 14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) tamagui: specifier: ^1.120.2 - version: 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + version: 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) devDependencies: '@tamagui/build': specifier: ^1.120.2 - version: 1.126.12(@swc/helpers@0.5.17) + version: 1.126.13(@swc/helpers@0.5.17) typescript: specifier: ^5.3.3 version: 5.8.3 @@ -773,7 +779,7 @@ importers: dependencies: '@next/eslint-plugin-next': specifier: ^14.1.0 - version: 14.2.28 + version: 14.2.29 '@typescript-eslint/eslint-plugin': specifier: ^7.0.2 version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3) @@ -821,13 +827,13 @@ importers: dependencies: '@ianvs/prettier-plugin-sort-imports': specifier: ^4.1.1 - version: 4.4.1(@vue/compiler-sfc@3.3.4)(prettier@3.5.3) + version: 4.4.1(@vue/compiler-sfc@3.5.14)(prettier@3.5.3) prettier: specifier: ^3.2.5 version: 3.5.3 prettier-plugin-tailwindcss: specifier: ^0.5.7 - version: 0.5.14(@ianvs/prettier-plugin-sort-imports@4.4.1(@vue/compiler-sfc@3.3.4)(prettier@3.5.3))(prettier@3.5.3) + version: 0.5.14(@ianvs/prettier-plugin-sort-imports@4.4.1(@vue/compiler-sfc@3.5.14)(prettier@3.5.3))(prettier@3.5.3) devDependencies: '@rooots/tsconfig': specifier: workspace:* @@ -843,7 +849,7 @@ importers: version: 10.4.21(postcss@8.5.3) tailwindcss: specifier: 3.3.5 - version: 3.3.5(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)) + version: 3.3.5(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)) devDependencies: typescript: specifier: ^5.3.3 @@ -1061,6 +1067,13 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-export-namespace-from@7.18.9': + resolution: {integrity: sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==} + engines: {node: '>=6.9.0'} + deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-export-namespace-from instead. + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2': resolution: {integrity: sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==} engines: {node: '>=6.9.0'} @@ -1105,6 +1118,11 @@ packages: peerDependencies: '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-export-namespace-from@7.8.3': + resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==} + peerDependencies: + '@babel/core': ^7.0.0-0 + '@babel/plugin-syntax-flow@7.27.1': resolution: {integrity: sha512-p9OkPbZ5G7UT1MofwYFigGebnrzGJacoBSQM0/6bi/PUMVE+qlWDD/OalvQKbwgQzU6dl0xAv6r4X7Jme0RYxA==} engines: {node: '>=6.9.0'} @@ -1658,9 +1676,9 @@ packages: '@dabh/diagnostics@2.0.3': resolution: {integrity: sha512-hrlQOIi7hAfzsMqlGSFyVucrx38O+j6wiGOf//H2ecvIEqYN4ADBSS2iLMh5UFyDunCNniUIPk/q3riFv45xRA==} - '@dependents/detective-less@4.1.0': - resolution: {integrity: sha512-KrkT6qO5NxqNfy68sBl6CTSoJ4SNDIS5iQArkibhlbGU4LaDukZ3q2HIkh8aUKDio6o4itU4xDR7t82Y2eP1Bg==} - engines: {node: '>=14'} + '@dependents/detective-less@5.0.1': + resolution: {integrity: sha512-Y6+WUMsTFWE5jb20IFP4YGa5IrGY/+a/FbOSjDF/wz9gepU2hwCYSXRHP/vPwBvwcY3SVMASt4yXxbXNXigmZQ==} + engines: {node: '>=18'} '@egjs/hammerjs@2.0.17': resolution: {integrity: sha512-XQsZgjm2EcVUiZQf11UBJQfmZeEmOW8DpI1gsFeln6w0ae0ii4dMQEQ0kjl6DspdWX1aGY1/loyXnP0JS06e/A==} @@ -2678,10 +2696,6 @@ packages: cpu: [x64] os: [win32] - '@mapbox/node-pre-gyp@1.0.11': - resolution: {integrity: sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==} - hasBin: true - '@mapbox/node-pre-gyp@2.0.0': resolution: {integrity: sha512-llMXd39jtP0HpQLVI37Bf1m2ADlEb35GYSh1SDSLsBhR+5iCxiNGlT31yqbNtVHygHAtMy6dWFERpU2JgufhPg==} engines: {node: '>=18'} @@ -2753,16 +2767,16 @@ packages: '@netlify/binary-info@1.0.0': resolution: {integrity: sha512-4wMPu9iN3/HL97QblBsBay3E1etIciR84izI3U+4iALY+JHCrI+a2jO0qbAZ/nxKoegypYEaiiqWXylm+/zfrw==} - '@netlify/blobs@9.1.1': - resolution: {integrity: sha512-hOrWBMOvdh9oa+8Z6ocvkY92q9YtfD+Vbh2i+Qs14cHsl9SYxRzPRQnBxU/H6PNtj6gtEJ7tv8RbBN8z7jH2jA==} + '@netlify/blobs@9.1.2': + resolution: {integrity: sha512-7dMjExSH4zj4ShvLem49mE3mf0K171Tx2pV4WDWhJbRUWW3SJIR2qntz0LvUGS97N5HO1SmnzrgWUhEXCsApiw==} engines: {node: ^14.16.0 || >=16.0.0} - '@netlify/dev-utils@2.1.1': - resolution: {integrity: sha512-0O4/eEcmZCNUkpSuN/yYRkX6BAcK/sbnH0YYNuK3HX193QXaSBT60TUpvTpiRxI6zvIfYCDRl3rz63w8m/lEMg==} + '@netlify/dev-utils@2.2.0': + resolution: {integrity: sha512-5XUvZuffe3KetyhbWwd4n2ktd7wraocCYw10tlM+/u/95iAz29GjNiuNxbCD1T6Bn1MyGc4QLVNKOWhzJkVFAw==} engines: {node: ^14.16.0 || >=16.0.0} - '@netlify/functions@3.1.8': - resolution: {integrity: sha512-oAHPyybBx4oH8+3RfgihrTVhv6gseQw1pt0k4kZ/NDmGbEsgrr3gw+3ajzM5+fW5UnWiNuR5c+d7JgtRqjyMkw==} + '@netlify/functions@3.1.9': + resolution: {integrity: sha512-mbmQIylPzOTDicMFbJF839W3bywJVR0Fm77uvjS6AkDl000VlLwQb+4eO3p0BV7j8+l5IgN/3ltQ/Byi/esTEQ==} engines: {node: '>=14.0.0'} '@netlify/open-api@2.37.0': @@ -2773,71 +2787,71 @@ packages: resolution: {integrity: sha512-7/vIJlMYrPJPlEW84V2yeRuG3QBu66dmlv9neTmZ5nXzwylhBEOhy11ai+34A8mHCSZI4mKns25w3HM9kaDdJg==} engines: {node: '>=16.0.0'} - '@netlify/serverless-functions-api@1.41.1': - resolution: {integrity: sha512-swjyZEd8U1QVp01rZdHxpwWie7GkP1kS4+4n8kuNKA8+3G5tD0JXXf3a5d4tdwVvrU9k7a4GP1Bn792UPwecmw==} + '@netlify/serverless-functions-api@1.41.2': + resolution: {integrity: sha512-pfCkH50JV06SGMNsNPjn8t17hOcId4fA881HeYQgMBOrewjsw4csaYgHEnCxCEu24Y5x75E2ULbFpqm9CvRCqw==} engines: {node: '>=18.0.0'} - '@netlify/zip-it-and-ship-it@10.1.1': - resolution: {integrity: sha512-MMXrty1NADxyMPgd7qZvDUYunhcPhxIA/jWP2joceOoPcAxOno/aS4jFuIHf2Dbb4HdhR+BlvgvDCy7QTXXyLQ==} - engines: {node: ^14.18.0 || >=16.0.0} + '@netlify/zip-it-and-ship-it@12.1.0': + resolution: {integrity: sha512-+ND2fNnfeOZwnho79aMQ5rreFpI9tu/l4N9/F5H8t9rKYwVHHlv5Zi9o6g/gxZHDLfSbGC9th7Z46CihV8JaZw==} + engines: {node: '>=18.14.0'} hasBin: true - '@next/env@14.2.28': - resolution: {integrity: sha512-PAmWhJfJQlP+kxZwCjrVd9QnR5x0R3u0mTXTiZDgSd4h5LdXmjxCCWbN9kq6hkZBOax8Rm3xDW5HagWyJuT37g==} + '@next/env@14.2.29': + resolution: {integrity: sha512-UzgLR2eBfhKIQt0aJ7PWH7XRPYw7SXz0Fpzdl5THjUnvxy4kfBk9OU4RNPNiETewEEtaBcExNFNn1QWH8wQTjg==} - '@next/eslint-plugin-next@14.2.28': - resolution: {integrity: sha512-GQUPA1bTZy5qZdPV5MOHB18465azzhg8xm5o2SqxMF+h1rWNjB43y6xmIPHG5OV2OiU3WxuINpusXom49DdaIQ==} + '@next/eslint-plugin-next@14.2.29': + resolution: {integrity: sha512-qpxSYiPNJTr9RzqjGi5yom8AIC8Kgdtw4oNIXAB/gDYMDctmfMEv452FRUhT06cWPgcmSsbZiEPYhbFiQtCWTg==} - '@next/swc-darwin-arm64@14.2.28': - resolution: {integrity: sha512-kzGChl9setxYWpk3H6fTZXXPFFjg7urptLq5o5ZgYezCrqlemKttwMT5iFyx/p1e/JeglTwDFRtb923gTJ3R1w==} + '@next/swc-darwin-arm64@14.2.29': + resolution: {integrity: sha512-wWtrAaxCVMejxPHFb1SK/PVV1WDIrXGs9ki0C/kUM8ubKHQm+3hU9MouUywCw8Wbhj3pewfHT2wjunLEr/TaLA==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] - '@next/swc-darwin-x64@14.2.28': - resolution: {integrity: sha512-z6FXYHDJlFOzVEOiiJ/4NG8aLCeayZdcRSMjPDysW297Up6r22xw6Ea9AOwQqbNsth8JNgIK8EkWz2IDwaLQcw==} + '@next/swc-darwin-x64@14.2.29': + resolution: {integrity: sha512-7Z/jk+6EVBj4pNLw/JQrvZVrAh9Bv8q81zCFSfvTMZ51WySyEHWVpwCEaJY910LyBftv2F37kuDPQm0w9CEXyg==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] - '@next/swc-linux-arm64-gnu@14.2.28': - resolution: {integrity: sha512-9ARHLEQXhAilNJ7rgQX8xs9aH3yJSj888ssSjJLeldiZKR4D7N08MfMqljk77fAwZsWwsrp8ohHsMvurvv9liQ==} + '@next/swc-linux-arm64-gnu@14.2.29': + resolution: {integrity: sha512-o6hrz5xRBwi+G7JFTHc+RUsXo2lVXEfwh4/qsuWBMQq6aut+0w98WEnoNwAwt7hkEqegzvazf81dNiwo7KjITw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-arm64-musl@14.2.28': - resolution: {integrity: sha512-p6gvatI1nX41KCizEe6JkF0FS/cEEF0u23vKDpl+WhPe/fCTBeGkEBh7iW2cUM0rvquPVwPWdiUR6Ebr/kQWxQ==} + '@next/swc-linux-arm64-musl@14.2.29': + resolution: {integrity: sha512-9i+JEHBOVgqxQ92HHRFlSW1EQXqa/89IVjtHgOqsShCcB/ZBjTtkWGi+SGCJaYyWkr/lzu51NTMCfKuBf7ULNw==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] - '@next/swc-linux-x64-gnu@14.2.28': - resolution: {integrity: sha512-nsiSnz2wO6GwMAX2o0iucONlVL7dNgKUqt/mDTATGO2NY59EO/ZKnKEr80BJFhuA5UC1KZOMblJHWZoqIJddpA==} + '@next/swc-linux-x64-gnu@14.2.29': + resolution: {integrity: sha512-B7JtMbkUwHijrGBOhgSQu2ncbCYq9E7PZ7MX58kxheiEOwdkM+jGx0cBb+rN5AeqF96JypEppK6i/bEL9T13lA==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-linux-x64-musl@14.2.28': - resolution: {integrity: sha512-+IuGQKoI3abrXFqx7GtlvNOpeExUH1mTIqCrh1LGFf8DnlUcTmOOCApEnPJUSLrSbzOdsF2ho2KhnQoO0I1RDw==} + '@next/swc-linux-x64-musl@14.2.29': + resolution: {integrity: sha512-yCcZo1OrO3aQ38B5zctqKU1Z3klOohIxug6qdiKO3Q3qNye/1n6XIs01YJ+Uf+TdpZQ0fNrOQI2HrTLF3Zprnw==} engines: {node: '>= 10'} cpu: [x64] os: [linux] - '@next/swc-win32-arm64-msvc@14.2.28': - resolution: {integrity: sha512-l61WZ3nevt4BAnGksUVFKy2uJP5DPz2E0Ma/Oklvo3sGj9sw3q7vBWONFRgz+ICiHpW5mV+mBrkB3XEubMrKaA==} + '@next/swc-win32-arm64-msvc@14.2.29': + resolution: {integrity: sha512-WnrfeOEtTVidI9Z6jDLy+gxrpDcEJtZva54LYC0bSKQqmyuHzl0ego+v0F/v2aXq0am67BRqo/ybmmt45Tzo4A==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] - '@next/swc-win32-ia32-msvc@14.2.28': - resolution: {integrity: sha512-+Kcp1T3jHZnJ9v9VTJ/yf1t/xmtFAc/Sge4v7mVc1z+NYfYzisi8kJ9AsY8itbgq+WgEwMtOpiLLJsUy2qnXZw==} + '@next/swc-win32-ia32-msvc@14.2.29': + resolution: {integrity: sha512-vkcriFROT4wsTdSeIzbxaZjTNTFKjSYmLd8q/GVH3Dn8JmYjUKOuKXHK8n+lovW/kdcpIvydO5GtN+It2CvKWA==} engines: {node: '>= 10'} cpu: [ia32] os: [win32] - '@next/swc-win32-x64-msvc@14.2.28': - resolution: {integrity: sha512-1gCmpvyhz7DkB1srRItJTnmR2UwQPAUXXIg9r0/56g3O8etGmwlX68skKXJOp9EejW3hhv7nSQUJ2raFiz4MoA==} + '@next/swc-win32-x64-msvc@14.2.29': + resolution: {integrity: sha512-iPPwUEKnVs7pwR0EBLJlwxLD7TTHWS/AoVZx1l9ZQzfQciqaFEr5AlYzA2uB6Fyby1IF18t4PL0nTpB+k4Tzlw==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -3609,8 +3623,8 @@ packages: '@radix-ui/primitive@1.1.2': resolution: {integrity: sha512-XnbHrrprsNqZKQhStrSwgRUQzoCI1glLzdw79xiZPoofhGICeZRSQ3dIxAKH1gb3OHfNf4d6f+vAv3kil2eggA==} - '@radix-ui/react-arrow@1.1.6': - resolution: {integrity: sha512-2JMfHJf/eVnwq+2dewT3C0acmCWD3XiVA1Da+jTDqo342UlU13WvXtqHhG+yJw5JeQmu4ue2eMy6gcEArLBlcw==} + '@radix-ui/react-arrow@1.1.7': + resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -3656,8 +3670,8 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 - '@radix-ui/react-dialog@1.1.13': - resolution: {integrity: sha512-ARFmqUyhIVS3+riWzwGTe7JLjqwqgnODBUZdqpWar/z1WFs9z76fuOs/2BOWCR+YboRn4/WN9aoaGVwqNRr8VA==} + '@radix-ui/react-dialog@1.1.14': + resolution: {integrity: sha512-+CpweKjqpzTmwRwcYECQcNYbI8V9VSQt0SNFKeEBLgfucbsLssU6Ppq7wUdNXEGb573bMjFhVjKVll8rmV6zMw==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -3675,8 +3689,8 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 - '@radix-ui/react-dismissable-layer@1.1.9': - resolution: {integrity: sha512-way197PiTvNp+WBP7svMJasHl+vibhWGQDb6Mgf5mhEWJkgb85z7Lfl9TUdkqpWsf8GRNmoopx9ZxCyDzmgRMQ==} + '@radix-ui/react-dismissable-layer@1.1.10': + resolution: {integrity: sha512-IM1zzRV4W3HtVgftdQiiOmA0AdJlCtMLe00FXaHwgt3rAnNsIyDqshvkIW3hj/iu5hu8ERP7KIYki6NkqDxAwQ==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -3708,8 +3722,8 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 - '@radix-ui/react-focus-scope@1.1.6': - resolution: {integrity: sha512-r9zpYNUQY+2jWHWZGyddQLL9YHkM/XvSFHVcWs7bdVuxMAnCwTAuy6Pf47Z4nw7dYcUou1vg/VgjjrrH03VeBw==} + '@radix-ui/react-focus-scope@1.1.7': + resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -3735,8 +3749,8 @@ packages: '@types/react': optional: true - '@radix-ui/react-popper@1.2.6': - resolution: {integrity: sha512-7iqXaOWIjDBfIG7aq8CUEeCSsQMLFdn7VEE8TaFz704DtEzpPHR7w/uuzRflvKgltqSAImgcmxQ7fFX3X7wasg==} + '@radix-ui/react-popper@1.2.7': + resolution: {integrity: sha512-IUFAccz1JyKcf/RjB552PlWwxjeCJB8/4KxT7EhBHOJM+mN7LdW+B3kacJXILm32xawcMMjb2i0cIZpo+f9kiQ==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -3754,8 +3768,8 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 - '@radix-ui/react-portal@1.1.8': - resolution: {integrity: sha512-hQsTUIn7p7fxCPvao/q6wpbxmCwgLrlz+nOrJgC+RwfZqWY/WN+UMqkXzrtKbPrF82P43eCTl3ekeKuyAQbFeg==} + '@radix-ui/react-portal@1.1.9': + resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -3792,8 +3806,8 @@ packages: react: ^16.8 || ^17.0 || ^18.0 react-dom: ^16.8 || ^17.0 || ^18.0 - '@radix-ui/react-primitive@2.1.2': - resolution: {integrity: sha512-uHa+l/lKfxuDD2zjN/0peM/RhhSmRjr5YWdk/37EnSv1nJ88uvG85DPexSm8HdFQROd2VdERJ6ynXbkCFi+APw==} + '@radix-ui/react-primitive@2.1.3': + resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -3819,8 +3833,8 @@ packages: '@types/react': optional: true - '@radix-ui/react-slot@1.2.2': - resolution: {integrity: sha512-y7TBO4xN4Y94FvcWIOIh18fM4R1A8S4q1jhoz4PNzOoHsFcN8pogcFmZrTYAm4F9VRUrWP/Mw7xSKybIeRI+CQ==} + '@radix-ui/react-slot@1.2.3': + resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==} peerDependencies: '@types/react': '*' react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc @@ -3828,8 +3842,8 @@ packages: '@types/react': optional: true - '@radix-ui/react-tooltip@1.2.6': - resolution: {integrity: sha512-zYb+9dc9tkoN2JjBDIIPLQtk3gGyz8FMKoqYTb8EMVQ5a5hBcdHPECrsZVI4NpPAUOixhkoqg7Hj5ry5USowfA==} + '@radix-ui/react-tooltip@1.2.7': + resolution: {integrity: sha512-Ap+fNYwKTYJ9pzqW+Xe2HtMRbQ/EeWkj2qykZ6SuEV4iS/o1bZI5ssJbk4D2r8XuDuOBVz/tIx2JObtuqU+5Zw==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -3924,8 +3938,8 @@ packages: '@types/react': optional: true - '@radix-ui/react-visually-hidden@1.2.2': - resolution: {integrity: sha512-ORCmRUbNiZIv6uV5mhFrhsIKw4UX/N3syZtyqvry61tbGm4JlgQuSn0hk5TwCARsCjkcnuRkSdCE3xfb+ADHew==} + '@radix-ui/react-visually-hidden@1.2.3': + resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==} peerDependencies: '@types/react': '*' '@types/react-dom': '*' @@ -4023,25 +4037,25 @@ packages: '@types/react': optional: true - '@react-navigation/bottom-tabs@7.3.12': - resolution: {integrity: sha512-LcftVEABsxXufopvzBJvQpyXDYHjjbOMvoJYsQesKfFYC5/hKPpA0olErVZr0e6zK8zcyD7DJZQV+OeFdjcaug==} + '@react-navigation/bottom-tabs@7.3.13': + resolution: {integrity: sha512-J3MWXBJc3y6hefZNRqdj/JD4nzIDLzZL5GIYj89pR6oRf2Iibz9t1qV7yzxEc1KOaNDkXVZ/5U16PArEJFfykQ==} peerDependencies: - '@react-navigation/native': ^7.1.8 + '@react-navigation/native': ^7.1.9 react: '>= 18.2.0' react-native: '*' react-native-safe-area-context: '>= 4.0.0' react-native-screens: '>= 4.0.0' - '@react-navigation/core@7.9.1': - resolution: {integrity: sha512-HfbsYyfD5EzTicZVv1Zpw3loYguhHSs9Ztq9K3WccyfuV4Y/+XRrMgIv7B5n6ySfQGyviPcdCEl3d1A109FhUQ==} + '@react-navigation/core@7.9.2': + resolution: {integrity: sha512-lqCyKMWWaSwGK4VV3wRXXEKvl5IKrVH207Kp77TLCnITnd4KQIdgjzzJ/Pr62ugki3VTAErq1vg0yRlcXciCbg==} peerDependencies: react: '>= 18.2.0' - '@react-navigation/elements@2.4.1': - resolution: {integrity: sha512-L10zs15NSgx+Msd6UmUfPx8+bEe/KnhcNFKsoPbz0U49sJdU6qogcbNAPi1RUs4UDtfnnubUhbXZxfaYJTCwCA==} + '@react-navigation/elements@2.4.2': + resolution: {integrity: sha512-cudKLsRtOB+i8iDzfBKypdqiHsDy1ruqCfYAtwKEclDmLsxu3/90YXoBtoPyFNyIpsn3GtsJzZsrYWQh78xSWg==} peerDependencies: '@react-native-masked-view/masked-view': '>= 0.2.0' - '@react-navigation/native': ^7.1.8 + '@react-navigation/native': ^7.1.9 react: '>= 18.2.0' react-native: '*' react-native-safe-area-context: '>= 4.0.0' @@ -4049,17 +4063,17 @@ packages: '@react-native-masked-view/masked-view': optional: true - '@react-navigation/native-stack@7.3.12': - resolution: {integrity: sha512-Iww8WUngxdDbI8zI1HG7C4Ath1At7R87S16OwS+rFQRGKT6h7xhdB23HAdTF+NgS/fsfFY9LE3QMEof7nrUe0A==} + '@react-navigation/native-stack@7.3.13': + resolution: {integrity: sha512-udH+HumX0PmaT6QQTqjU3ciiCwifBGtnw1+6B1bVEDw83q80WHotlMitaf8Enbuf7oWrxwB+Eow4tV5MJXgQtQ==} peerDependencies: - '@react-navigation/native': ^7.1.8 + '@react-navigation/native': ^7.1.9 react: '>= 18.2.0' react-native: '*' react-native-safe-area-context: '>= 4.0.0' react-native-screens: '>= 4.0.0' - '@react-navigation/native@7.1.8': - resolution: {integrity: sha512-ryKd/qNigi1pUp6mBb2pq75ese7AZ/Cl3xEmTG6PcUGMfMqAMMrmmVbgiys0h8zCGY2tSBSqnDHbGW1/ZtOoKg==} + '@react-navigation/native@7.1.9': + resolution: {integrity: sha512-/A0oBwZIeD23o4jsnB0fEyKmKS+l4LAbJP/ioVvsGEubGp+sc5ouQNranOh7JwR0R1eX0MjcsLKprEwB+nztdw==} peerDependencies: react: '>= 18.2.0' react-native: '*' @@ -4139,103 +4153,103 @@ packages: rollup: optional: true - '@rollup/rollup-android-arm-eabi@4.40.2': - resolution: {integrity: sha512-JkdNEq+DFxZfUwxvB58tHMHBHVgX23ew41g1OQinthJ+ryhdRk67O31S7sYw8u2lTjHUPFxwar07BBt1KHp/hg==} + '@rollup/rollup-android-arm-eabi@4.41.0': + resolution: {integrity: sha512-KxN+zCjOYHGwCl4UCtSfZ6jrq/qi88JDUtiEFk8LELEHq2Egfc/FgW+jItZiOLRuQfb/3xJSgFuNPC9jzggX+A==} cpu: [arm] os: [android] - '@rollup/rollup-android-arm64@4.40.2': - resolution: {integrity: sha512-13unNoZ8NzUmnndhPTkWPWbX3vtHodYmy+I9kuLxN+F+l+x3LdVF7UCu8TWVMt1POHLh6oDHhnOA04n8oJZhBw==} + '@rollup/rollup-android-arm64@4.41.0': + resolution: {integrity: sha512-yDvqx3lWlcugozax3DItKJI5j05B0d4Kvnjx+5mwiUpWramVvmAByYigMplaoAQ3pvdprGCTCE03eduqE/8mPQ==} cpu: [arm64] os: [android] - '@rollup/rollup-darwin-arm64@4.40.2': - resolution: {integrity: sha512-Gzf1Hn2Aoe8VZzevHostPX23U7N5+4D36WJNHK88NZHCJr7aVMG4fadqkIf72eqVPGjGc0HJHNuUaUcxiR+N/w==} + '@rollup/rollup-darwin-arm64@4.41.0': + resolution: {integrity: sha512-2KOU574vD3gzcPSjxO0eyR5iWlnxxtmW1F5CkNOHmMlueKNCQkxR6+ekgWyVnz6zaZihpUNkGxjsYrkTJKhkaw==} cpu: [arm64] os: [darwin] - '@rollup/rollup-darwin-x64@4.40.2': - resolution: {integrity: sha512-47N4hxa01a4x6XnJoskMKTS8XZ0CZMd8YTbINbi+w03A2w4j1RTlnGHOz/P0+Bg1LaVL6ufZyNprSg+fW5nYQQ==} + '@rollup/rollup-darwin-x64@4.41.0': + resolution: {integrity: sha512-gE5ACNSxHcEZyP2BA9TuTakfZvULEW4YAOtxl/A/YDbIir/wPKukde0BNPlnBiP88ecaN4BJI2TtAd+HKuZPQQ==} cpu: [x64] os: [darwin] - '@rollup/rollup-freebsd-arm64@4.40.2': - resolution: {integrity: sha512-8t6aL4MD+rXSHHZUR1z19+9OFJ2rl1wGKvckN47XFRVO+QL/dUSpKA2SLRo4vMg7ELA8pzGpC+W9OEd1Z/ZqoQ==} + '@rollup/rollup-freebsd-arm64@4.41.0': + resolution: {integrity: sha512-GSxU6r5HnWij7FoSo7cZg3l5GPg4HFLkzsFFh0N/b16q5buW1NAWuCJ+HMtIdUEi6XF0qH+hN0TEd78laRp7Dg==} cpu: [arm64] os: [freebsd] - '@rollup/rollup-freebsd-x64@4.40.2': - resolution: {integrity: sha512-C+AyHBzfpsOEYRFjztcYUFsH4S7UsE9cDtHCtma5BK8+ydOZYgMmWg1d/4KBytQspJCld8ZIujFMAdKG1xyr4Q==} + '@rollup/rollup-freebsd-x64@4.41.0': + resolution: {integrity: sha512-KGiGKGDg8qLRyOWmk6IeiHJzsN/OYxO6nSbT0Vj4MwjS2XQy/5emsmtoqLAabqrohbgLWJ5GV3s/ljdrIr8Qjg==} cpu: [x64] os: [freebsd] - '@rollup/rollup-linux-arm-gnueabihf@4.40.2': - resolution: {integrity: sha512-de6TFZYIvJwRNjmW3+gaXiZ2DaWL5D5yGmSYzkdzjBDS3W+B9JQ48oZEsmMvemqjtAFzE16DIBLqd6IQQRuG9Q==} + '@rollup/rollup-linux-arm-gnueabihf@4.41.0': + resolution: {integrity: sha512-46OzWeqEVQyX3N2/QdiU/CMXYDH/lSHpgfBkuhl3igpZiaB3ZIfSjKuOnybFVBQzjsLwkus2mjaESy8H41SzvA==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm-musleabihf@4.40.2': - resolution: {integrity: sha512-urjaEZubdIkacKc930hUDOfQPysezKla/O9qV+O89enqsqUmQm8Xj8O/vh0gHg4LYfv7Y7UsE3QjzLQzDYN1qg==} + '@rollup/rollup-linux-arm-musleabihf@4.41.0': + resolution: {integrity: sha512-lfgW3KtQP4YauqdPpcUZHPcqQXmTmH4nYU0cplNeW583CMkAGjtImw4PKli09NFi2iQgChk4e9erkwlfYem6Lg==} cpu: [arm] os: [linux] - '@rollup/rollup-linux-arm64-gnu@4.40.2': - resolution: {integrity: sha512-KlE8IC0HFOC33taNt1zR8qNlBYHj31qGT1UqWqtvR/+NuCVhfufAq9fxO8BMFC22Wu0rxOwGVWxtCMvZVLmhQg==} + '@rollup/rollup-linux-arm64-gnu@4.41.0': + resolution: {integrity: sha512-nn8mEyzMbdEJzT7cwxgObuwviMx6kPRxzYiOl6o/o+ChQq23gfdlZcUNnt89lPhhz3BYsZ72rp0rxNqBSfqlqw==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-arm64-musl@4.40.2': - resolution: {integrity: sha512-j8CgxvfM0kbnhu4XgjnCWJQyyBOeBI1Zq91Z850aUddUmPeQvuAy6OiMdPS46gNFgy8gN1xkYyLgwLYZG3rBOg==} + '@rollup/rollup-linux-arm64-musl@4.41.0': + resolution: {integrity: sha512-l+QK99je2zUKGd31Gh+45c4pGDAqZSuWQiuRFCdHYC2CSiO47qUWsCcenrI6p22hvHZrDje9QjwSMAFL3iwXwQ==} cpu: [arm64] os: [linux] - '@rollup/rollup-linux-loongarch64-gnu@4.40.2': - resolution: {integrity: sha512-Ybc/1qUampKuRF4tQXc7G7QY9YRyeVSykfK36Y5Qc5dmrIxwFhrOzqaVTNoZygqZ1ZieSWTibfFhQ5qK8jpWxw==} + '@rollup/rollup-linux-loongarch64-gnu@4.41.0': + resolution: {integrity: sha512-WbnJaxPv1gPIm6S8O/Wg+wfE/OzGSXlBMbOe4ie+zMyykMOeqmgD1BhPxZQuDqwUN+0T/xOFtL2RUWBspnZj3w==} cpu: [loong64] os: [linux] - '@rollup/rollup-linux-powerpc64le-gnu@4.40.2': - resolution: {integrity: sha512-3FCIrnrt03CCsZqSYAOW/k9n625pjpuMzVfeI+ZBUSDT3MVIFDSPfSUgIl9FqUftxcUXInvFah79hE1c9abD+Q==} + '@rollup/rollup-linux-powerpc64le-gnu@4.41.0': + resolution: {integrity: sha512-eRDWR5t67/b2g8Q/S8XPi0YdbKcCs4WQ8vklNnUYLaSWF+Cbv2axZsp4jni6/j7eKvMLYCYdcsv8dcU+a6QNFg==} cpu: [ppc64] os: [linux] - '@rollup/rollup-linux-riscv64-gnu@4.40.2': - resolution: {integrity: sha512-QNU7BFHEvHMp2ESSY3SozIkBPaPBDTsfVNGx3Xhv+TdvWXFGOSH2NJvhD1zKAT6AyuuErJgbdvaJhYVhVqrWTg==} + '@rollup/rollup-linux-riscv64-gnu@4.41.0': + resolution: {integrity: sha512-TWrZb6GF5jsEKG7T1IHwlLMDRy2f3DPqYldmIhnA2DVqvvhY2Ai184vZGgahRrg8k9UBWoSlHv+suRfTN7Ua4A==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-riscv64-musl@4.40.2': - resolution: {integrity: sha512-5W6vNYkhgfh7URiXTO1E9a0cy4fSgfE4+Hl5agb/U1sa0kjOLMLC1wObxwKxecE17j0URxuTrYZZME4/VH57Hg==} + '@rollup/rollup-linux-riscv64-musl@4.41.0': + resolution: {integrity: sha512-ieQljaZKuJpmWvd8gW87ZmSFwid6AxMDk5bhONJ57U8zT77zpZ/TPKkU9HpnnFrM4zsgr4kiGuzbIbZTGi7u9A==} cpu: [riscv64] os: [linux] - '@rollup/rollup-linux-s390x-gnu@4.40.2': - resolution: {integrity: sha512-B7LKIz+0+p348JoAL4X/YxGx9zOx3sR+o6Hj15Y3aaApNfAshK8+mWZEf759DXfRLeL2vg5LYJBB7DdcleYCoQ==} + '@rollup/rollup-linux-s390x-gnu@4.41.0': + resolution: {integrity: sha512-/L3pW48SxrWAlVsKCN0dGLB2bi8Nv8pr5S5ocSM+S0XCn5RCVCXqi8GVtHFsOBBCSeR+u9brV2zno5+mg3S4Aw==} cpu: [s390x] os: [linux] - '@rollup/rollup-linux-x64-gnu@4.40.2': - resolution: {integrity: sha512-lG7Xa+BmBNwpjmVUbmyKxdQJ3Q6whHjMjzQplOs5Z+Gj7mxPtWakGHqzMqNER68G67kmCX9qX57aRsW5V0VOng==} + '@rollup/rollup-linux-x64-gnu@4.41.0': + resolution: {integrity: sha512-XMLeKjyH8NsEDCRptf6LO8lJk23o9wvB+dJwcXMaH6ZQbbkHu2dbGIUindbMtRN6ux1xKi16iXWu6q9mu7gDhQ==} cpu: [x64] os: [linux] - '@rollup/rollup-linux-x64-musl@4.40.2': - resolution: {integrity: sha512-tD46wKHd+KJvsmije4bUskNuvWKFcTOIM9tZ/RrmIvcXnbi0YK/cKS9FzFtAm7Oxi2EhV5N2OpfFB348vSQRXA==} + '@rollup/rollup-linux-x64-musl@4.41.0': + resolution: {integrity: sha512-m/P7LycHZTvSQeXhFmgmdqEiTqSV80zn6xHaQ1JSqwCtD1YGtwEK515Qmy9DcB2HK4dOUVypQxvhVSy06cJPEg==} cpu: [x64] os: [linux] - '@rollup/rollup-win32-arm64-msvc@4.40.2': - resolution: {integrity: sha512-Bjv/HG8RRWLNkXwQQemdsWw4Mg+IJ29LK+bJPW2SCzPKOUaMmPEppQlu/Fqk1d7+DX3V7JbFdbkh/NMmurT6Pg==} + '@rollup/rollup-win32-arm64-msvc@4.41.0': + resolution: {integrity: sha512-4yodtcOrFHpbomJGVEqZ8fzD4kfBeCbpsUy5Pqk4RluXOdsWdjLnjhiKy2w3qzcASWd04fp52Xz7JKarVJ5BTg==} cpu: [arm64] os: [win32] - '@rollup/rollup-win32-ia32-msvc@4.40.2': - resolution: {integrity: sha512-dt1llVSGEsGKvzeIO76HToiYPNPYPkmjhMHhP00T9S4rDern8P2ZWvWAQUEJ+R1UdMWJ/42i/QqJ2WV765GZcA==} + '@rollup/rollup-win32-ia32-msvc@4.41.0': + resolution: {integrity: sha512-tmazCrAsKzdkXssEc65zIE1oC6xPHwfy9d5Ta25SRCDOZS+I6RypVVShWALNuU9bxIfGA0aqrmzlzoM5wO5SPQ==} cpu: [ia32] os: [win32] - '@rollup/rollup-win32-x64-msvc@4.40.2': - resolution: {integrity: sha512-bwspbWB04XJpeElvsp+DCylKfF4trJDa2Y9Go8O6A7YLX2LIKGcNK/CYImJN6ZP4DcuOHB4Utl3iCbnR62DudA==} + '@rollup/rollup-win32-x64-msvc@4.41.0': + resolution: {integrity: sha512-h1J+Yzjo/X+0EAvR2kIXJDuTuyT7drc+t2ALY0nIcGPbTatNOf0VWdhEA2Z4AAjv6X1NJV7SYo5oCTYRJhSlVA==} cpu: [x64] os: [win32] @@ -4351,8 +4365,8 @@ packages: peerDependencies: '@svgr/core': '*' - '@swc/core-darwin-arm64@1.11.24': - resolution: {integrity: sha512-dhtVj0PC1APOF4fl5qT2neGjRLgHAAYfiVP8poJelhzhB/318bO+QCFWAiimcDoyMgpCXOhTp757gnoJJrheWA==} + '@swc/core-darwin-arm64@1.11.29': + resolution: {integrity: sha512-whsCX7URzbuS5aET58c75Dloby3Gtj/ITk2vc4WW6pSDQKSPDuONsIcZ7B2ng8oz0K6ttbi4p3H/PNPQLJ4maQ==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] @@ -4363,8 +4377,8 @@ packages: cpu: [arm64] os: [darwin] - '@swc/core-darwin-x64@1.11.24': - resolution: {integrity: sha512-H/3cPs8uxcj2Fe3SoLlofN5JG6Ny5bl8DuZ6Yc2wr7gQFBmyBkbZEz+sPVgsID7IXuz7vTP95kMm1VL74SO5AQ==} + '@swc/core-darwin-x64@1.11.29': + resolution: {integrity: sha512-S3eTo/KYFk+76cWJRgX30hylN5XkSmjYtCBnM4jPLYn7L6zWYEPajsFLmruQEiTEDUg0gBEWLMNyUeghtswouw==} engines: {node: '>=10'} cpu: [x64] os: [darwin] @@ -4375,8 +4389,8 @@ packages: cpu: [x64] os: [darwin] - '@swc/core-linux-arm-gnueabihf@1.11.24': - resolution: {integrity: sha512-PHJgWEpCsLo/NGj+A2lXZ2mgGjsr96ULNW3+T3Bj2KTc8XtMUkE8tmY2Da20ItZOvPNC/69KroU7edyo1Flfbw==} + '@swc/core-linux-arm-gnueabihf@1.11.29': + resolution: {integrity: sha512-o9gdshbzkUMG6azldHdmKklcfrcMx+a23d/2qHQHPDLUPAN+Trd+sDQUYArK5Fcm7TlpG4sczz95ghN0DMkM7g==} engines: {node: '>=10'} cpu: [arm] os: [linux] @@ -4387,8 +4401,8 @@ packages: cpu: [arm] os: [linux] - '@swc/core-linux-arm64-gnu@1.11.24': - resolution: {integrity: sha512-C2FJb08+n5SD4CYWCTZx1uR88BN41ZieoHvI8A55hfVf2woT8+6ZiBzt74qW2g+ntZ535Jts5VwXAKdu41HpBg==} + '@swc/core-linux-arm64-gnu@1.11.29': + resolution: {integrity: sha512-sLoaciOgUKQF1KX9T6hPGzvhOQaJn+3DHy4LOHeXhQqvBgr+7QcZ+hl4uixPKTzxk6hy6Hb0QOvQEdBAAR1gXw==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -4399,8 +4413,8 @@ packages: cpu: [arm64] os: [linux] - '@swc/core-linux-arm64-musl@1.11.24': - resolution: {integrity: sha512-ypXLIdszRo0re7PNNaXN0+2lD454G8l9LPK/rbfRXnhLWDBPURxzKlLlU/YGd2zP98wPcVooMmegRSNOKfvErw==} + '@swc/core-linux-arm64-musl@1.11.29': + resolution: {integrity: sha512-PwjB10BC0N+Ce7RU/L23eYch6lXFHz7r3NFavIcwDNa/AAqywfxyxh13OeRy+P0cg7NDpWEETWspXeI4Ek8otw==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -4411,8 +4425,8 @@ packages: cpu: [arm64] os: [linux] - '@swc/core-linux-x64-gnu@1.11.24': - resolution: {integrity: sha512-IM7d+STVZD48zxcgo69L0yYptfhaaE9cMZ+9OoMxirNafhKKXwoZuufol1+alEFKc+Wbwp+aUPe/DeWC/Lh3dg==} + '@swc/core-linux-x64-gnu@1.11.29': + resolution: {integrity: sha512-i62vBVoPaVe9A3mc6gJG07n0/e7FVeAvdD9uzZTtGLiuIfVfIBta8EMquzvf+POLycSk79Z6lRhGPZPJPYiQaA==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -4423,8 +4437,8 @@ packages: cpu: [x64] os: [linux] - '@swc/core-linux-x64-musl@1.11.24': - resolution: {integrity: sha512-DZByJaMVzSfjQKKQn3cqSeqwy6lpMaQDQQ4HPlch9FWtDx/dLcpdIhxssqZXcR2rhaQVIaRQsCqwV6orSDGAGw==} + '@swc/core-linux-x64-musl@1.11.29': + resolution: {integrity: sha512-YER0XU1xqFdK0hKkfSVX1YIyCvMDI7K07GIpefPvcfyNGs38AXKhb2byySDjbVxkdl4dycaxxhRyhQ2gKSlsFQ==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -4435,8 +4449,8 @@ packages: cpu: [x64] os: [linux] - '@swc/core-win32-arm64-msvc@1.11.24': - resolution: {integrity: sha512-Q64Ytn23y9aVDKN5iryFi8mRgyHw3/kyjTjT4qFCa8AEb5sGUuSj//AUZ6c0J7hQKMHlg9do5Etvoe61V98/JQ==} + '@swc/core-win32-arm64-msvc@1.11.29': + resolution: {integrity: sha512-po+WHw+k9g6FAg5IJ+sMwtA/fIUL3zPQ4m/uJgONBATCVnDDkyW6dBA49uHNVtSEvjvhuD8DVWdFP847YTcITw==} engines: {node: '>=10'} cpu: [arm64] os: [win32] @@ -4447,8 +4461,8 @@ packages: cpu: [arm64] os: [win32] - '@swc/core-win32-ia32-msvc@1.11.24': - resolution: {integrity: sha512-9pKLIisE/Hh2vJhGIPvSoTK4uBSPxNVyXHmOrtdDot4E1FUUI74Vi8tFdlwNbaj8/vusVnb8xPXsxF1uB0VgiQ==} + '@swc/core-win32-ia32-msvc@1.11.29': + resolution: {integrity: sha512-h+NjOrbqdRBYr5ItmStmQt6x3tnhqgwbj9YxdGPepbTDamFv7vFnhZR0YfB3jz3UKJ8H3uGJ65Zw1VsC+xpFkg==} engines: {node: '>=10'} cpu: [ia32] os: [win32] @@ -4459,8 +4473,8 @@ packages: cpu: [ia32] os: [win32] - '@swc/core-win32-x64-msvc@1.11.24': - resolution: {integrity: sha512-sybnXtOsdB+XvzVFlBVGgRHLqp3yRpHK7CrmpuDKszhj/QhmsaZzY/GHSeALlMtLup13M0gqbcQvsTNlAHTg3w==} + '@swc/core-win32-x64-msvc@1.11.29': + resolution: {integrity: sha512-Q8cs2BDV9wqDvqobkXOYdC+pLUSEpX/KvI0Dgfun1F+LzuLotRFuDhrvkU9ETJA6OnD2+Fn/ieHgloiKA/Mn/g==} engines: {node: '>=10'} cpu: [x64] os: [win32] @@ -4471,8 +4485,8 @@ packages: cpu: [x64] os: [win32] - '@swc/core@1.11.24': - resolution: {integrity: sha512-MaQEIpfcEMzx3VWWopbofKJvaraqmL6HbLlw2bFZ7qYqYw3rkhM0cQVEgyzbHtTWwCwPMFZSC2DUbhlZgrMfLg==} + '@swc/core@1.11.29': + resolution: {integrity: sha512-g4mThMIpWbNhV8G2rWp5a5/Igv8/2UFRJx2yImrLGMgrDDYZIopqZ/z0jZxDgqNA1QDx93rpwNF7jGsxVWcMlA==} engines: {node: '>=10'} peerDependencies: '@swc/helpers': '>=0.5.17' @@ -4537,544 +4551,544 @@ packages: peerDependencies: tailwindcss: '>=3.0.0 || insiders || >=4.0.0-alpha.20 || >=4.0.0-beta.1' - '@tamagui/accordion@1.126.12': - resolution: {integrity: sha512-Hv2ORxwR3Ypf6gpvM27EsXAjkZaQf1Ks1DWc2TQh5JHKB44/aCNOx5D7epXaKfZ0OKiMxFjVMZ7ip/HZSN5PRg==} + '@tamagui/accordion@1.126.13': + resolution: {integrity: sha512-+16ZLntOSFqT9ggsAbLl/o3koIifnSou0odKrQUEVGsTQvej4oFLFR1i8Fktqky+S0EJIlyAPqWJuKGtgChIhg==} peerDependencies: react: '*' - '@tamagui/adapt@1.126.12': - resolution: {integrity: sha512-QZDF6cXtcEQVj6YYs/zJQ1/cHwC5cF0k1HjfA/DsyZ96xF5roWZDTBAAWAweyx1KgNlhfIOZqmcS8Cna0s3x+Q==} + '@tamagui/adapt@1.126.13': + resolution: {integrity: sha512-l/V2yvFgqQD03j3rcFq3hKfQvq/50uiMYjlmLzyQJGL+/3DBI+K1Rk1PnIrFXSK+4YGK1tfXECZYyK8xIdnCqg==} - '@tamagui/alert-dialog@1.126.12': - resolution: {integrity: sha512-fJMuZSU1aK247kcuf32WJDQ0gumKQMwqHHquPxkdXZqxhSqZXFAf3jULMzTI/sOzjQa1lEBL920vWMWDTLzuvw==} + '@tamagui/alert-dialog@1.126.13': + resolution: {integrity: sha512-ILfww8/9Kop8IonBQHO2mfdiGBxRlfTNSJIppX8AxPRh12QQbnlihaAq6F67ScGBAwA7w1L0/sU3Wysw6mLIbQ==} peerDependencies: react: '*' - '@tamagui/animate-presence@1.126.12': - resolution: {integrity: sha512-NG3aCUUUCLjCAxSzFhc/i9JfwT0iozdmvLXAhDNrIXI6sRYkKOY61o/8wSKn9feaPuAQU9YmbIzFzflAAqj4Fw==} + '@tamagui/animate-presence@1.126.13': + resolution: {integrity: sha512-bQsA0L5L336A09ZefkxpgjtDcheMhmGXKFZAVXJKaWcg9hV/V6EOOjz8QJ7uOFn6wggyXC4uyseXxbYU40Jn5A==} - '@tamagui/animate@1.126.12': - resolution: {integrity: sha512-KBPUvUh5p7f0Dyt0Bxffj1CN++UL1YjgmcGmZQDLUNvSegC2bw7XXDiN2GQwm2uLI9FJJ0W/onjRCcC7TF5UWg==} + '@tamagui/animate@1.126.13': + resolution: {integrity: sha512-nQ2C9RC5V2VTY/9TUvG6wIlUn4PnXd1fn5Ddm+Jpvb64PLppuTPLyCelzCt0v7ZZFDLMM/xhDf59gqmTF0dZfw==} - '@tamagui/animations-css@1.126.12': - resolution: {integrity: sha512-A/8RBt09hTcvHHeRUJ8QDXY3ZddZrCE1YFOy4ZPuhTUsv3XpokI30TRxox80CK9hFvOW5jzIEv01vKviyRbUvQ==} + '@tamagui/animations-css@1.126.13': + resolution: {integrity: sha512-uz6xuWbDtrlE5MpGTScPs4FZIzYFOQZ7nVjCsfhzp4eY4x0jOTNwAhu6zyNeEbdXv9+tgC5BHzA/fkKpsopJlw==} peerDependencies: react: '*' react-dom: '*' - '@tamagui/animations-moti@1.126.12': - resolution: {integrity: sha512-jNVvuw46sqd7ANCOw0rvTcFvER9ktGddqod8xFIdvAoCkjxfFBXpwGlW8u6CXTfrGQd+BMgrybjP2vrDp2H8LA==} + '@tamagui/animations-moti@1.126.13': + resolution: {integrity: sha512-ZOdd+wzvuCBnA0KM2PZWoJzE+OqypopnBSc1MhelCGkWr+qHnPZ4GKvs0483pIwNJ8qCenIh1Ci21LI+KehYVA==} peerDependencies: react: '*' - '@tamagui/animations-react-native@1.126.12': - resolution: {integrity: sha512-41JAU9j7/ad3i9l4AfppOidsEdUHHqiO4g0B6zpV4x5Y8EmphBqSM6DhuM4kKE5ywRkjSwSJYa/P54wR4L5p0A==} + '@tamagui/animations-react-native@1.126.13': + resolution: {integrity: sha512-bYNp73se2vlDf6z4FrINN7eKkvedqLWutbiKnoML4xJZuciirK71vOIf25Puut3EDVtyw4kCkMHAKuSNBkNCcg==} peerDependencies: react: '*' - '@tamagui/aria-hidden@1.126.12': - resolution: {integrity: sha512-6elQuZazsVFPGI2X/04qE+Eg6UQv+imacCcu9hqnwpu3gJGt1I+3oqW9zE4FlzLhfRC/ZFwJOapd4PYW+uNdQw==} + '@tamagui/aria-hidden@1.126.13': + resolution: {integrity: sha512-gogZfgv5UujoVMlJzpcfsedaztwKLpghzhs2rXuBFdRs9xipj6zj7GWTDiVbwco59eULjxLrfk5LpJfyDw4znw==} peerDependencies: react: '*' - '@tamagui/avatar@1.126.12': - resolution: {integrity: sha512-ib+p/vGKDV8xganZb0wRURZHpzaYQIbRVljliU1OnrTyDvyxHU6oN+a0nzXnJlfT67FZhNjOdgrnO4hzjE0PEA==} + '@tamagui/avatar@1.126.13': + resolution: {integrity: sha512-1F2R0C2kEzglAGDqMh/9h0hFhtu4t99v3VE27CJDqiPzlLzWg/at5HEpRMPZ9+jE4ZiYE1V8RJGRXbfB8t/ahg==} peerDependencies: react: '*' - '@tamagui/babel-plugin-fully-specified@1.126.12': - resolution: {integrity: sha512-PoPlrJz0NLCsJLWh/mi9Ebu/vxyP43BQ8KHumbLRFm2wywMZH7BkFRC9U86c5spfG1iELhqZSxQgl626Aqwnew==} + '@tamagui/babel-plugin-fully-specified@1.126.13': + resolution: {integrity: sha512-b4YmjiH4SonxmyeYWJMJtF/qbYNXjqlPMT6NHeA8rRW7V86MJb4U5pp0AWNyU3yo6nIcPNLE1ewepFGRpuMQVg==} - '@tamagui/babel-plugin@1.126.12': - resolution: {integrity: sha512-C2xbOzHGBbtUO4tfVzUSJj6xJE5AqwvffBQMPRXZlR6XT6aBTNRzf1mEqFel0yKYbkspaqjwfPGu7wFK+cDPfA==} + '@tamagui/babel-plugin@1.126.13': + resolution: {integrity: sha512-958N/DWc+B0f2t5rrczuY9Gb9CZMO0FYL8OA3yNUzHRRFdVlclfoAPlHCq7pI+l1T4Oe0y3UDo+1/Q0mjA19CQ==} - '@tamagui/build@1.126.12': - resolution: {integrity: sha512-liCBwOf/a35k9mkApWLYLOgnxy9oEalTGbleUAECTBB8JY0eoq5GB81mqUlJSpyIYgqk3QO1+9fNn4DweTHJBg==} + '@tamagui/build@1.126.13': + resolution: {integrity: sha512-v+Z0QgCy7mBFJD7u7oCtySbi6IyjPWQdBle/etBSTvICFFy77pk0lQtnatKohZK3s+p4unNwZKwp9WsrrcuwsA==} hasBin: true - '@tamagui/button@1.126.12': - resolution: {integrity: sha512-6R8e5FRqrDQAx9Bu52yjRrQPasDrIlHXE4B4IvPu8M8Nn4GdEup4bV20wq3abg5PyHTGAUa6vJX1ElW44H+r5A==} + '@tamagui/button@1.126.13': + resolution: {integrity: sha512-7VrQMWItuLl3SfcmbC6vZdgyjxxtjryimuXpEqkbxTXlyUw8xFt+HABhBdXxUhg5fbjd5kg8Qs4Wm3E/8nX8Pw==} peerDependencies: react: '*' - '@tamagui/card@1.126.12': - resolution: {integrity: sha512-iQ3JOHa/vTgC+lR/cQQs8zaS89lW5ynCgu+S5KOEwFzQ0UuBlCfRU5xN56f6qiaYTnudanEgnCZfIMJhq9jOcA==} + '@tamagui/card@1.126.13': + resolution: {integrity: sha512-bMkntrO8lrcSBNP7qj1tN5mS+gIpRxLGjPG5rTh2W+oK/A3SgPXj8qPetkjKY0DD4Bcmt6JJEZd5mwuuGqkPBw==} peerDependencies: react: '*' - '@tamagui/checkbox-headless@1.126.12': - resolution: {integrity: sha512-PIgnHkVeZ1iGwl4smqO+v2kvZr4Bia3d1ssUDo2ZoGNeL8qy86IdGjEoX11kH1dCuw2JkiPsG8b4wMQ3kcpDHQ==} + '@tamagui/checkbox-headless@1.126.13': + resolution: {integrity: sha512-0wUpRZ/b2ZWLnr/v1A5OmdKhbnyo8xx/b0e8MErhkKejNPljkJrDeccdCeMx69cU1XhcALu1b/Q0+ZBRmvxK3w==} peerDependencies: react: '*' - '@tamagui/checkbox@1.126.12': - resolution: {integrity: sha512-9zHUeZXHfm3AdEqlrzUG0RFNRnbhUk84J3R9uDuskJxEn5TE8aktrpd/RObWQcjIFpbAe/p/g3use0KcKzMuTw==} + '@tamagui/checkbox@1.126.13': + resolution: {integrity: sha512-zdLB6qYn4IEEaePchS+tdnU4Yh8KhX/XsL7t8fKATS5Xrb/O6lfKq07C96RPnRExyi5d9XLsLQNbXdTTJpBngw==} peerDependencies: react: '*' - '@tamagui/cli-color@1.126.12': - resolution: {integrity: sha512-eCo1ixMjlxEtCIUiUQYjI4dEYxkVHL5KBqm1/oCQ/RNlOthPm/tXokEnYgUtJG2Khv94qRw5hEBiCQzllvN/vg==} + '@tamagui/cli-color@1.126.13': + resolution: {integrity: sha512-bpAnKTPvk7XqBqQjk2e0/Y4jQpF41Ee6ltxJ0PPDYiBUZwURIaZLJ2BJrVYRRTSqeHLYYjjN5mXES9sOhFtM6g==} - '@tamagui/collapsible@1.126.12': - resolution: {integrity: sha512-qtxxLaRWYRamGQZDKVIgnNC/qOKOGBNlRe3rubQa3VVVUfriWZO7hhzQquUVdIVhkCWj0+xZ1Fz3aoGzhso7yg==} + '@tamagui/collapsible@1.126.13': + resolution: {integrity: sha512-PgH2fMDmVmEx4/w7FGVYdETzz6nec2Oyrmh4TypuxHC4leey7/gCXLZKUR2xhjaELy6S2MfFo27PHvU0/IhFmA==} peerDependencies: react: '*' - '@tamagui/collection@1.126.12': - resolution: {integrity: sha512-ZyR7vklkLiPZdK6LdR2g45L9yLJyZM0g9KJ1R9VtqzOHANIKvUBv8BGj9KL82HPYgx6MU5KzVs73BiJndKEbPg==} + '@tamagui/collection@1.126.13': + resolution: {integrity: sha512-ydWmZzm2yZyIwpQss//HCaJVM5F2Gj2PJ6iwIPbNHSnIUvALSvnBzLAIQkDhgBTosGPAJW67tWefiQE7ZS34nQ==} peerDependencies: react: '*' - '@tamagui/colors@1.126.12': - resolution: {integrity: sha512-3buBUOaTiEAzmdFiNSBgLl7Q4eVrPRY3cINwbP0tny7UbX+kpRUOq3aWdFjZAkqe6e6mpwJlPHb6htdHTIFFXw==} + '@tamagui/colors@1.126.13': + resolution: {integrity: sha512-pCeh3M+q8OptMAGSwNOQqnzK9+CnJuBK2QOyjgxQhNp2n7Q3vvsCVyMH+MYwt4bXESXz2HtS5sH8W4j0NvZaNg==} - '@tamagui/compose-refs@1.126.12': - resolution: {integrity: sha512-CLdmRHvZWGnb6dUDmYLA/ua0H2G54iKc5Hy7aktHOZf003J2T+peImD/bGjfjOW0CoyRuTAdbtcAciMNmwJegA==} + '@tamagui/compose-refs@1.126.13': + resolution: {integrity: sha512-ko0TN3v8ulN0cIlRxqGpxCV0GgSBgJMPaww77+/Gkm/QCObm6ZSLgbtpSJVEjhVcg287Ghb2vb3DGp9cf5nWVw==} peerDependencies: react: '*' - '@tamagui/config-default@1.126.12': - resolution: {integrity: sha512-EZ9NR6baoJ/moYhYd4Ky2YOVHyqjb5NBGYoYtSqiePot4Obnby8tlmb+rmdi6euRK+Lcq3tpjHk7YwaWv/e/pA==} + '@tamagui/config-default@1.126.13': + resolution: {integrity: sha512-OLOR+PAMCpuJOfKjhkZryvjLOXNwyqTrkynsFgrUGnJo/upFWr9g36HPHTBHfQNBEamc5c3zRP27eoivrPSLdw==} - '@tamagui/config@1.126.12': - resolution: {integrity: sha512-mLTuNsV6E/1Qd0ohVIQBMlq3KgMJgdkUvtlPv5z2oq3SdGlLCysYFJ9tYIQq5goAt3iajYnZGx+YmRvmpxuQCA==} + '@tamagui/config@1.126.13': + resolution: {integrity: sha512-h69YgeEB/c/aQKf0LHPAgCK8bm8bA5pJta0qFrHp5y0QQRtjRP0NbZwz8aWgcG3MZDkAji4fCzkxlUTsnRP+rA==} - '@tamagui/constants@1.126.12': - resolution: {integrity: sha512-Fy5TtNYzZ+DacqxzEXGIDW/Wej0ftYOb7ffRsVD3pHfqWssVdqMOuqPX4ZXhBq5F3ztHhK4H26DMm8E+ROpxwg==} + '@tamagui/constants@1.126.13': + resolution: {integrity: sha512-5HUHD2fbbjHxiKSY61pIp2LRj3oeq81V59p1rItDLF7IKZ/eFBYc+68Bl84kHFJD+bX1OMX2zid/dMQfMmgcvg==} peerDependencies: react: '*' - '@tamagui/core@1.126.12': - resolution: {integrity: sha512-3HGjHIrX92UdMCMFZK3fTClpRy8UJ23uwx5cwvSOgxGk72lq7fssRJI7p5xvBY1H+841HWPBjfsYx0aMrGWNTg==} + '@tamagui/core@1.126.13': + resolution: {integrity: sha512-l2QjjV9FMneGuJcZ0m5DdU3UrhE4N5kon9J13VChxCxF6FWVE4XXkwSPeyPVqxpFWqoPUlyY+DPKO8oKdz2Oxw==} - '@tamagui/create-context@1.126.12': - resolution: {integrity: sha512-Z4lxdN7tUw0G538pJjI2YFhErUu75q0omdppUPhNb4XChat+b1bZBT+Y4jOrjEhtfSkZeHQ4J664K5/pU6BMpQ==} + '@tamagui/create-context@1.126.13': + resolution: {integrity: sha512-K7EllcaMScgAMHnYejWZUNLQHHMpDEsxgDzYPPdiBKtiJjOBaZ2QDaty7mqFnKYOsk9kobpURxikj6jnZXDSLg==} peerDependencies: react: '*' - '@tamagui/create-theme@1.126.12': - resolution: {integrity: sha512-looo2G/9WDBFg+lydbu930lmKu2aZ0GmB6eHi2mkgrsRqB4uIcIYagP9SFhktG6+CXUW5iLd+KW8A/Kfp93ZkQ==} + '@tamagui/create-theme@1.126.13': + resolution: {integrity: sha512-DN/fDP17mN+m+22YkhVVC88iUL5JkuEvHc3lX16IUW6VsHexjuWKJkpllti7WVPrEzo6GfNusi3UbhzdwmKUhA==} - '@tamagui/cubic-bezier-animator@1.126.12': - resolution: {integrity: sha512-loElyQGGWIV/G7RUxekv8nFL8WeHUrd2FB8/w7GnVd7dZIO2px6Hw5fgOhHldZe4Pi51RJxJo5WJguf0qpZHJw==} + '@tamagui/cubic-bezier-animator@1.126.13': + resolution: {integrity: sha512-uDgqRZDtbQYkBljHSTZROF0D3q8JuoUHSIXhFtOP+56TFpumjvloj4YDigTpX7bFv2N2CVCUItmzqdMBHnVXGQ==} - '@tamagui/dialog@1.126.12': - resolution: {integrity: sha512-1t1eLICxK+TWzWzQwSP/jWRrRszyhEBmwLGdAutINAwVgLjsoeBp6xs9k+OtxB+cFQkGsxeqNBVEdOXVludhew==} + '@tamagui/dialog@1.126.13': + resolution: {integrity: sha512-ffyjM0MsmAZI7Uz8mzxo72w5IX9hEp7HNNzyrMG+OqtO4vjtoQdZtPbn1SjOcWs4aVZDRBGnSNIRpC46fA5sgw==} peerDependencies: react: '*' - '@tamagui/dismissable@1.126.12': - resolution: {integrity: sha512-m8Cb1qOjkP7ycK5aZDvOJhp8heEnv4NyFe0NegGRQ22+pXDM0LpYMnwA6LCGcH4FQa0fOOzYUzzwtnjFatZwsQ==} + '@tamagui/dismissable@1.126.13': + resolution: {integrity: sha512-ZWA4I3UD65p4Dydtzh18Yxsibus2mFtK1nuHk3Mjp8QltJ1unRuNdWI6apbpA8kO8vdIKOKQ2F0DI9ylZfZ1Ow==} peerDependencies: react: '*' - '@tamagui/elements@1.126.12': - resolution: {integrity: sha512-KAmoyCdlb0BL23JhcfFbcu4qOEuZyH54xSYV7m1apnQ/fnD76xA7GRhzinrk9Cmm0i14pV+Q1/3ngZivgaUCEQ==} + '@tamagui/elements@1.126.13': + resolution: {integrity: sha512-llOvqrxGBdW/VvxEiG/DkqY5ZgPJB3tLcas2uvQZ3UCOVY3MR4lAz3VU/8iG6T3D/KjJx6DA/Kzs5s5DTbHEuA==} peerDependencies: react: '*' - '@tamagui/fake-react-native@1.126.12': - resolution: {integrity: sha512-A1VOuXnKag9/QELZHjcroSJYh6VXudDlqW2TwDzerXZFaJELgiDhlbcbdQpBnB0WHFel31oluCryf5QwDrlksQ==} + '@tamagui/fake-react-native@1.126.13': + resolution: {integrity: sha512-cky79PrEMzaeUMGK/BhxmuZ5yWPOQ6asZ7ZxWNUdeMx24Lhl2dbJ6sLoD+XbyMb5aFKYkRr1VoNNuQ20Go5ISg==} - '@tamagui/floating@1.126.12': - resolution: {integrity: sha512-TNhugL6ju7QhBfHJPPWBkT0Rc+gI2Z4oT7jGiX6G200LSMWRZQ0OoYnFSvNRSEk1E0nV+RpxtISr5+Tb2SORuw==} + '@tamagui/floating@1.126.13': + resolution: {integrity: sha512-0wEE7+PqylBo0lX7KZ6Jwwr1SsPTQYjKA3wR2ycmkNQIJSGl0u1ckiWycO7cLqbxr4zi8G2aKLco58XCegpj5A==} peerDependencies: react: '*' - '@tamagui/focus-scope@1.126.12': - resolution: {integrity: sha512-6/uLGB5PFqG294LCsVltVdKBbFhrlxMesns/fSbrsnEbjZvrK9SXp3sIaJYxBtzepMvV2MHFv+aZ1LzVCdQLCA==} + '@tamagui/focus-scope@1.126.13': + resolution: {integrity: sha512-Awts9dt2fmG8incsD6wkpXpvUGie+2sO4hCXBvLxYUgcL4szEnh2oDArCwXLE+QypW5K6kf0GLZMut0BRLboow==} peerDependencies: react: '*' - '@tamagui/focusable@1.126.12': - resolution: {integrity: sha512-e+878wj3WyG3+C9jtWcgUBikvBJ87BtJTLTtAHU/yDzBEdAQjYHDbRbJGKeM85MPDDHQ35DpnGy9dyxXfas7pQ==} + '@tamagui/focusable@1.126.13': + resolution: {integrity: sha512-bag9QqUb8jBqYZy3VxhisglejEzEcE1/uQTdEbsDfWwtW4ru2nJEOw8FLmsou2T1pK+db8n2PuftS7+kfyIKcw==} peerDependencies: react: '*' - '@tamagui/font-inter@1.126.12': - resolution: {integrity: sha512-rqOpaQvmng/k1v1/GinSMYy2Qc54s83m3Quyv34Uq1PJMBMRb8NudJV85IG1ICHxxMOqLVbKnGmdTq+kOh1Sdw==} + '@tamagui/font-inter@1.126.13': + resolution: {integrity: sha512-VBtWzFUv3/GtFOFHV268N1AB0l3UlQCh3gEsr4iVSu/qwFSnfT8FibOkyr9CvrhCPCdt41Liggsar3Lcqml+dw==} - '@tamagui/font-silkscreen@1.126.12': - resolution: {integrity: sha512-qOX/R/8Ii3lT4jukf/zscfwKOnQInawGJaUPJkAr45/cmNittZyFmUVgtGa+Xut+Ngjr3Nu+/VLRYUmwhbRLTA==} + '@tamagui/font-silkscreen@1.126.13': + resolution: {integrity: sha512-3AdLJ72+bZpCv1ZKff95hc0Uy86HAv7yHXM412qRLgqhihPMLbZ3HMBTys/hsxBL1bBYZeyglUn8qE9hzIMang==} - '@tamagui/font-size@1.126.12': - resolution: {integrity: sha512-5jsh7ixgYSi3OvjqnXcMEZmZ/VOwTexHKONLRP7EUXrgxLiJWoihgu2k/9WW2eqdJUMOegnOXvSyCnAfM7RtIA==} + '@tamagui/font-size@1.126.13': + resolution: {integrity: sha512-c7+Cp00C6dO9g2nZS8PP9XiLNcFn8P0G+XvravGY+/YElGTqXWpLNb6i8nnEa1wjyLuO9HPxaJes68rWxlvNBg==} peerDependencies: react: '*' - '@tamagui/form@1.126.12': - resolution: {integrity: sha512-JDMH+OiBXqWN6yD+xiCGeUz1qyrYXDJlt2tLOoHZbcdTZFuexnuyEo8OztzJ2FxveVCN7QAQX2NaHJxZVmq69w==} + '@tamagui/form@1.126.13': + resolution: {integrity: sha512-3d8dl5oKTtCPcNibh8ZW5sAdA4Otx19nk9h89Sbk6BZlGz+KCzOeBH3DTjPYd9llIertfWvDbOywDz5nJwviCg==} peerDependencies: react: '*' - '@tamagui/generate-themes@1.126.12': - resolution: {integrity: sha512-L01JjqcuUGq2eQUzjVPXeZE3zuTk98felfFYmuE0Qbtppbz0PIMGAiWnfseq7x0wbaT4szjVcca5J1fpJhI/tA==} + '@tamagui/generate-themes@1.126.13': + resolution: {integrity: sha512-Le2wNO3MoY7Z7W6TEhqW3zHXWmScdh5MkTegfTDkznxQf0xt7TZO5uwKN0cwl4gP7U6o7y1u9PbF98lKK3PSvw==} - '@tamagui/get-button-sized@1.126.12': - resolution: {integrity: sha512-rvZ1Fy1sajLiGxTxx87VfuDbHRaf8BOi3Yi2EvDlOrclffNj8dh9a1QZARitFT0dWdRb400wClnmHaYow4yeTw==} + '@tamagui/get-button-sized@1.126.13': + resolution: {integrity: sha512-7/4lwNxcxFG1lOQxd4dsWBBep5UfNCQqkpkkRWG/wr5eDCFcH2C4BX0d95UoRvTF/2i5ChQxx6KIgsQsBN7gPA==} peerDependencies: react: '*' - '@tamagui/get-font-sized@1.126.12': - resolution: {integrity: sha512-1qrp/aAxol3VJI6SThs+83UenXSQMyeSRgq2/x4T3wgMz+IBmsX5CY4qMmZ3YrR5CTAgR/LKWkkIZsb//Bmm/A==} + '@tamagui/get-font-sized@1.126.13': + resolution: {integrity: sha512-klxiG2yHbJVZIooXL/vSW+wv2YcxUedhsUiDK0Luxt4FSa6nPkAWFnylolSt8l1Xe8O+bP/jyTOAspu1T9OwRw==} peerDependencies: react: '*' - '@tamagui/get-token@1.126.12': - resolution: {integrity: sha512-EoRIWz2daLYCOLPuLOSPJ79EeW9slQcRBJZUnoE8KPfYpoz2Da3jetBQqMymzFcxZia0UJjxJvw6X9IZLzuq6w==} + '@tamagui/get-token@1.126.13': + resolution: {integrity: sha512-FFNChnfAN8itAuUm12hwJSo7Nrjzw9pGHj06+Rh+ggqX4ftkBZxS0ExqZ9dHvBx/4WmUD0JAjSc3CRwQbHfrIQ==} peerDependencies: react: '*' - '@tamagui/group@1.126.12': - resolution: {integrity: sha512-7gY30KAeDPO2PXVnHOhCWfbF4Sc/8rmYHCl0Mot0YImU0dVYrLCzO1IIbuWQCb7QJ8zFPcALTCbAKFLApY9Xxw==} + '@tamagui/group@1.126.13': + resolution: {integrity: sha512-18QyoBZmKLnAaYGyHhyO9zraA+bGNEDCjuS7Qnq0pf7eB/7jtBQk2v5YnykKvSznPQEcgTu0J5j02mba+X4zIQ==} peerDependencies: react: '*' - '@tamagui/helpers-icon@1.126.12': - resolution: {integrity: sha512-LhTSJMSLhJNbFlOHmERQQ5ETCD4Mj7W9v4LdIbvf9+3YXaxoOWOrLGZS3fW3KVqqQ2lhqE6EqWKEpKjxXnGBlQ==} + '@tamagui/helpers-icon@1.126.13': + resolution: {integrity: sha512-BCjlnA1YpGQzfP+3LrPMjiOFIpDVqcFrj9gCRsRsTc3gcqLmY5Lq+C2hDdYNW35ZnLayskr2siUoXkdNKp6l+Q==} peerDependencies: react: '*' react-native-svg: '>=12' - '@tamagui/helpers-node@1.126.12': - resolution: {integrity: sha512-h/yASD/RdIJDkBBSGb5mF5R35X4u/WauuVAGH/UPULP/c1qrtoXFlY85GL39B7dq9bOVOBV3j6CLJPrzyqAa+w==} + '@tamagui/helpers-node@1.126.13': + resolution: {integrity: sha512-BBbRRSJJ0dbDaUQ7EzpC7Trc0HW/v7nQEtaXmcvq9oH2o2zuYdmMnlOlOoP24kdpgtesCTWIkAe2el1fPjcC6Q==} - '@tamagui/helpers-tamagui@1.126.12': - resolution: {integrity: sha512-8reniSIuZ4fQ/PMmYWT/9k/+apq6a8lLP7fxyMrMceH/m2f6IwzvNQi+3Sex6yCtzUB3BMaM8ppWrsWBUJcYAg==} + '@tamagui/helpers-tamagui@1.126.13': + resolution: {integrity: sha512-CaNfUT2wZ51rGgIjnezoWjGZrxFk6u6birU84QYSj2DNbmrootkX5HQcvO16QEvQRAidafHXPWZslvABVEXnuw==} peerDependencies: react: '*' - '@tamagui/helpers@1.126.12': - resolution: {integrity: sha512-ZChjCFGRRbTGf0CuqOG86miv0sQ7Bly3BNkgzWqNdxvK/TNywMKulVrmVDGz39X5Mcr1dcamj6o/4C3VrGr06A==} + '@tamagui/helpers@1.126.13': + resolution: {integrity: sha512-rN+6nQSQnyeeA6sjUWzHHG2vfuxfcLs24z6BO1eahi5x0lLl8qkCBgxc59L8Rj4LE1gVFFEJmnROlk96xiYKtQ==} - '@tamagui/image@1.126.12': - resolution: {integrity: sha512-gy5cXHJe1CWi8gibgKm8j4UJrN6gReyT0p10kKoUFKLP4v4AOoPKfv6FcmD9wqtDvKfoHihPweKFuvjsc7KFPg==} + '@tamagui/image@1.126.13': + resolution: {integrity: sha512-63xCuIYNrlZCBQ/Y7UBU0PVFpdGlneire4XzBpsdpnHNjkJfFLF8Z/82NfJwwsl/xP9i/xpAma+u1FcHhhcIZw==} peerDependencies: react: '*' - '@tamagui/label@1.126.12': - resolution: {integrity: sha512-IO05udUcKZmGHXFZ9JpC72+3Sp7vwaR0soJxEtxU56+lRrRYjQBgT77OsuriUXEn39E0RQKmSKR7w7ncWouxwA==} + '@tamagui/label@1.126.13': + resolution: {integrity: sha512-rdhVJf50ZLJBgtwkcGotof5QIlY+2f/vpFoGCY4hQAbjYipszbmglWQNawiiYh4Ug6wXkeJx212rXekxtNGscg==} peerDependencies: react: '*' react-native: '*' - '@tamagui/linear-gradient@1.126.12': - resolution: {integrity: sha512-GNzwNocld+6HWMgSRnvmFYlpKqg9cMkvXdIX2F2iMGZ/EdVX9QMI9G/KUHJD0oC7sipij56FCUq5HDSGumEasA==} + '@tamagui/linear-gradient@1.126.13': + resolution: {integrity: sha512-uWJqWCfum9Qiluf72t3+U5b11oDDnUCUREZ3hiTWMUgnwHqPzQ2w7pQnFRTCBR9i1XrSrI5hQy/amJtbGBiWtA==} peerDependencies: react: '*' - '@tamagui/list-item@1.126.12': - resolution: {integrity: sha512-d5X4WkCaKFZoA8nD/fpxAc6b/ihBFN5PdPL8cs3tigrtfCgyB5o/Wyl8eMWvmtP3Eiis1cCUUux/SWIuMi3sCg==} + '@tamagui/list-item@1.126.13': + resolution: {integrity: sha512-T8OK/J1M9uDQTX9H0oKhusLmEhaGMhycrctrKkYBwqJhw+NuI6wquCjDDN1Hl0jzpSC6YR0FCMzEh640113xMw==} peerDependencies: react: '*' - '@tamagui/lucide-icons@1.126.12': - resolution: {integrity: sha512-OV2VgnaGXv4nhTxTBduZ44ybalIR5Q9nB1LZh4KEHxuuyHoLVVdxwzWpkWP8Hcra1XPPCBl6kdWWuCyTi4YzcA==} + '@tamagui/lucide-icons@1.126.13': + resolution: {integrity: sha512-qdm0aaNzqt/By+pehvE0k+Ujs259FDpoiINZVEdUCTr2SiOlOJDFZA20WnQExciqQlVv9+jF9RGqq0KnL9ZyaA==} peerDependencies: react: '*' react-native-svg: '>=12' - '@tamagui/next-plugin@1.126.12': - resolution: {integrity: sha512-KuvMSh75Jl6kVDRrfn7wOghFalMSRgUzX+Sdip5ekvSsGUZOAQHq9JtRDYVfp6OAaVkQprjvPLoLmCuatfp4QA==} + '@tamagui/next-plugin@1.126.13': + resolution: {integrity: sha512-nhAMVDHHf/+SsBTmGAzRH5AaZYTYY0m1BJbaXw7Yx4cl+5b0/Z+n1bIxNHhNzGxsk9dD4h5nBey8JFI642eW6Q==} peerDependencies: next: '>=13' - '@tamagui/next-theme@1.126.12': - resolution: {integrity: sha512-eJtIHtJ/75z83lpJMAoWANnDZYd2ekwNICNRFjiYFwbj2P0TZfrE2BBPxwNGktrhRTsVA0yDcNZ6OLMQ/nmFSQ==} + '@tamagui/next-theme@1.126.13': + resolution: {integrity: sha512-CiYs/7cFHB4DaVLkBFr48eBNm0Jjc2h6vzg7d0L7cB5dx+kI6Rtdp1auIXUr5iMKgoSjEDGqh5NaBYSL7XYMvQ==} peerDependencies: react: '*' - '@tamagui/normalize-css-color@1.126.12': - resolution: {integrity: sha512-gaFrZtioA2fXZeJwwOY6p9DmOFzMCIzW5kJ3qg3fCEzoQogDCUY5/fhbbutQjIf7DlPWEf7U9LvysRFO/IZH8A==} + '@tamagui/normalize-css-color@1.126.13': + resolution: {integrity: sha512-vF/gBwNLC/KK9e6qMluxfmg2eq1sumxrXet1KHWo7YfF0rJo3GB1M3NyB0OUPwgsW3JeTdbgr2jXzKx65E2+4g==} - '@tamagui/polyfill-dev@1.126.12': - resolution: {integrity: sha512-P6KH5jbnt8KoJXj/jRYdpyZBOu6YBbnKTqhuBH80fHfCvYDkYBsAxb3XGCj7LZtFEJ4MZoP6N925MZ1Q4Dsznw==} + '@tamagui/polyfill-dev@1.126.13': + resolution: {integrity: sha512-qcLrtqwI3AmYbe+RwOX0ooDzXQTv1FwqWHmsluQ+kVpxJNcL/MGTyQD31sFfskS+Emp1O5If1ZV8fhaIPOcOJQ==} - '@tamagui/popover@1.126.12': - resolution: {integrity: sha512-kpVYviuqkLWU2ofe0g6wFIR6AnwEn9xLewZE3Mxr9Wxqbz0wVTohElAK+NpX2qAjISJIYpPk9recfoHSQ6FLlQ==} + '@tamagui/popover@1.126.13': + resolution: {integrity: sha512-U54ynTL/p2+HXsJKby17STd850V4nJ/WYCz6ZSoyZ+HwDMaDM+v9UjaH6g3O7Wohi8BbwRR7ZDih3wAf9WDuMg==} peerDependencies: react: '*' - '@tamagui/popper@1.126.12': - resolution: {integrity: sha512-wJHWUCsDOvG1eilMv755dFWkR3/T/o4cBw7JTJysWgp3aHdDEw7ZZQaxsNcfp8yhVncC9TY/csfH0dXsJLrTyQ==} + '@tamagui/popper@1.126.13': + resolution: {integrity: sha512-6YVTEsyMnW+VFYyJa/sydgqUwCkaZJdTl+usB0xi65zItnkPTCHVBvxwMrbeksyTGHx69G+D4SbjRl1tpnnhzA==} peerDependencies: react: '*' - '@tamagui/portal@1.126.12': - resolution: {integrity: sha512-ZEusqYWFTEl8/RnFhwTlWsqub5TcH+WedYr2Pr19Zrhjt0JAdWoEg27DLncPmnt3Zj9mKvTtf2YrscQLeGeCvQ==} + '@tamagui/portal@1.126.13': + resolution: {integrity: sha512-dYRDLoHbSPL9XGFDfxsTqNU6IwIaxAeNcxrdrDhmqqpbfwDk8sgkfHbBQHHEjmoTO9trM0xqao/CgutuR9uJ2Q==} - '@tamagui/progress@1.126.12': - resolution: {integrity: sha512-m+AKhdJAWUGyGxdh49d96d84pQgavZrp642SR87jhQOI2Lx3V62De/AtSuYKbx4HWchGC5f3fW3BclLj4DXTuA==} + '@tamagui/progress@1.126.13': + resolution: {integrity: sha512-C04y3KYAWikRblNNDbZxXgda69W0IhFTZ4VPvLXAuZRYDSaCxx9rz4OgzNMti0nU6EcVvlPCDvQGa0R8cjqDNQ==} peerDependencies: react: '*' - '@tamagui/proxy-worm@1.126.12': - resolution: {integrity: sha512-Q0A6cfzTHqsgklLU4VbcN6Lf+sJ8vWf7MAvec5Hvb8VJYGqtTRDXjTdgPwj1Xf4GbtewoyYffu+Dum54GebQ6g==} + '@tamagui/proxy-worm@1.126.13': + resolution: {integrity: sha512-miEnhaAIMAGSDCLR3I4iFQ98uXTW92SrX12RTXxSNPwpNSguyBs8zkW27w5UYs5jghIwwkwTXf6OfjlWpOpWlw==} - '@tamagui/radio-group@1.126.12': - resolution: {integrity: sha512-tLvkcp6dOtbFoTt0LbMJSWhYN8q/bnC22ZMRyBkDBkmkqPOpBvQzuW5NPQcJjm0IjnDSdMLVFdXmsdGe3XJdJg==} + '@tamagui/radio-group@1.126.13': + resolution: {integrity: sha512-VRpEvyOgEIHTsgFGzZMf5sDeUjnzhyWF9F2vQaDVO2Tvo4GBINe7j7S8r7H5Q1mIk4brDNBNSuG/+5ep1XBFng==} peerDependencies: react: '*' - '@tamagui/radio-headless@1.126.12': - resolution: {integrity: sha512-ss8LIPSlfOA60U807MsHrU86R4Q5l0jiPYb0J+/RDUC3i3zl3v6AGd5HuYN+qpIlhqY6wBz0nXUUZlHlfNp9Mw==} + '@tamagui/radio-headless@1.126.13': + resolution: {integrity: sha512-kiR/ulJSkIKjRhZQVaMgs2wtG1N9dWdfwjnipQNkF7sW5XZ+gAGci2d+8NDOx9suzR6ZIVyxiPMZZSnPSPwRpg==} peerDependencies: react: '*' - '@tamagui/react-native-media-driver@1.126.12': - resolution: {integrity: sha512-yXi618Zjt7AVHFXFZKakHw+AfDAhgxDGkA/nNvk2vhBLHqn3SrLOI+s/B3WJx5Ts6Uz6SvyHJP2etY5TBtWE2g==} + '@tamagui/react-native-media-driver@1.126.13': + resolution: {integrity: sha512-MRQUBCU9rYLI1Qu1vHgAAQWYkAmXn8K4dPzTFK/06YPlPHeeo1g9GKA7MZ3UtPmk0tv+Rw+hOu+4t6obiuj9wA==} peerDependencies: react-native: '*' - '@tamagui/react-native-svg@1.126.12': - resolution: {integrity: sha512-N/A9HPgMkAlSh0bmi/GuG0O1SFlhU5AJg9WNShDHEXU+GlcfbY1+YAfahP3OmdNyj2UPiDVyLNNDA3yWyPeGjA==} + '@tamagui/react-native-svg@1.126.13': + resolution: {integrity: sha512-MK0gaAUIciWPwZ8j5luKevj/Ulx4Lf51xSS2zWvJ3U/odGllPp3CVfHOaljodvrGeNDQRufLo8navtr+73augQ==} - '@tamagui/react-native-use-pressable@1.126.12': - resolution: {integrity: sha512-CReoZVVpp0C9OggKIqMQx3pum9Myw+GpRr9YdJSk3EAq4xLGvMvY4vLLV7mW+syH9JVbqiX7whCEk3MPNXxkjA==} + '@tamagui/react-native-use-pressable@1.126.13': + resolution: {integrity: sha512-wI22cnICBVIAcPFc+V7OG6dAP8tSPtBKm2j/lERP4i/sHEbJlx1Lxxb4wpo9Sz7qMGWu3aJohNAoUBl0SCdH+g==} peerDependencies: react: '*' - '@tamagui/react-native-use-responder-events@1.126.12': - resolution: {integrity: sha512-CMuX3jV6KVnzaKjbqNYQZtN8qPMutQSQkBoUJHTCbUcj8nElYpjjXYIP3l+S6GkntGArVlx7qxlPl1gMU3tVeA==} + '@tamagui/react-native-use-responder-events@1.126.13': + resolution: {integrity: sha512-PeF9svASNTJR6N+hu3SBHTtiJdOd0QWxddokRZNjvPCUYssvB4vPj1LQO1tAjR6tpiEtWZ4wVd0JBPKUHKTvDA==} peerDependencies: react: '*' - '@tamagui/react-native-web-internals@1.126.12': - resolution: {integrity: sha512-0CNknaFHCIt6nz6B3fSq9uTSv44b6iN2vqcpNR2++x7twXwLNZAaMfxmPyy/rL166gtcRFmJ944BiXQdrEzz5w==} + '@tamagui/react-native-web-internals@1.126.13': + resolution: {integrity: sha512-sb7pU/KXAKZ2n7Js/aGtJqYMJciosRgh1jza2pvMMfknsohzm+lh1vbzcL0cMY6D4MfnFDTrKAKP4hP4103d4Q==} - '@tamagui/react-native-web-lite@1.126.12': - resolution: {integrity: sha512-xb9ag/XJMEmJynGcnLkay8AuoONr0brtUdar+MwhtQG31qRa4YyR7gMq7qtVuCHSFGVF2nwiHyTGb20ui4dxhg==} + '@tamagui/react-native-web-lite@1.126.13': + resolution: {integrity: sha512-SxORPgoNT+nWOutQ12dQFdcJHwbizRWHLwhy+KlnZMo0cJGS5pycKRsIiMlbY7oEQ6yii0l5RjlTsn5gfhjv8Q==} peerDependencies: react: '*' - '@tamagui/remove-scroll@1.126.12': - resolution: {integrity: sha512-xzmXRwStYLIT1XHbAYCrnizDB1sOYAnM5hR4kEU8zMNPz3nyFYIn+jj1lTma5Px26hCWyhZkFjIUAfXDf1ue6A==} + '@tamagui/remove-scroll@1.126.13': + resolution: {integrity: sha512-2cAdYuhGm2YqsJUrf9bjy5DAaA2ox663mG/2TlTo4f6KloZXaE0zgElBJ7Dq45aNPjjYhK/O2du+b4cOh/O9lA==} peerDependencies: react: '*' - '@tamagui/roving-focus@1.126.12': - resolution: {integrity: sha512-pmgRD+VIKDBrv+crn/hIuNr88XEVx8Cw0aSfJ9Fz5tswq8dx6VJXcDEGw2gPF3aftyivkxzBbqDOz4toKQJ/hw==} + '@tamagui/roving-focus@1.126.13': + resolution: {integrity: sha512-kkZB4VyegVGjuXdbiDNh5VKO5xcNVydR/E1RPTJ/X0DzimGKRDP4+cUhfis6L52Ojb4+fuGiLxNjn+lN9YHsvQ==} peerDependencies: react: '*' - '@tamagui/scroll-view@1.126.12': - resolution: {integrity: sha512-fpz3N708nXxAe7D/3xABukg7VTuNG0qtUAK9aFAZ8cn35j7yZuCI6tU3GDSO30UZhFo9eWSHTCeOrvIqsLJoGA==} + '@tamagui/scroll-view@1.126.13': + resolution: {integrity: sha512-euVF1rkmG2zYvoMIx98DdKPkR9mggc5CSXuSkqPMsCBh8IBmCjGNBZEX6150xwXMpK9Wq9TJlDA0yJj+G9Fdyw==} peerDependencies: react: '*' - '@tamagui/select@1.126.12': - resolution: {integrity: sha512-mD5c+3kBf5aSyFz6oKOlDqpU9VFo4VZ8Lzw4/22QgLTvgdS3iwUAJa2GfwAqAaPufsN5Pvafpnb/EParQRIZQg==} + '@tamagui/select@1.126.13': + resolution: {integrity: sha512-Lw8wi04cZqNTToppovkxpubVqRMxBT5GcoKMHlAJEkvY0VXfLVGzz3WRg7Hnqetmxi9nFDQGkr25SZWVQmrwCw==} peerDependencies: react: '*' - '@tamagui/separator@1.126.12': - resolution: {integrity: sha512-uywZSKQD5P+6I7S0+UMgWsteYeGioocaYxR/6rZ06wFvfLuerF5YwV5tGz2IVxEd+yJKH12LbpjYkwTert9H1Q==} + '@tamagui/separator@1.126.13': + resolution: {integrity: sha512-zEd/onxPICFa4nJpwcDkNnu7HH2Q8jgfNaCuboMhgTXxaEQWykD0t4a483l2E3GtqMvjkUDg44wxizjIzEusXQ==} peerDependencies: react: '*' - '@tamagui/shapes@1.126.12': - resolution: {integrity: sha512-kxAIoUoUZSaoBB0kFmFkgDynOVjAj0U57cdCanhajFt+PtoIeAxc6TlAWzMCBk18mP4xM+YJhbB1ACCli1koLA==} + '@tamagui/shapes@1.126.13': + resolution: {integrity: sha512-WfZCR4NINV7JHD6Sv2k/JCS184H6pZVwbnC5tORKrYjc5Gx41BYgQRi3YMqtO9ejxA9krn1Kt0KPtrhTEK96pw==} peerDependencies: react: '*' - '@tamagui/sheet@1.126.12': - resolution: {integrity: sha512-pAlR3uh7XEowfGvCBQuQiG4z1XZKTz1N93VOAY8t1+K66sWpgssXmafMQ+6guTejLMr+YZPpVXGeU5SxcOg/cQ==} + '@tamagui/sheet@1.126.13': + resolution: {integrity: sha512-oZPOhEvtQlwALPimDRJfYcCoEhyAO/Z0EGS++IpI1Ps912m5A7vQsCZ/KgCzt0m8JG7S0oARBBZns/1RvbkNQg==} peerDependencies: react: '*' - '@tamagui/shorthands@1.126.12': - resolution: {integrity: sha512-N8H4mq+mb44PzOxW3W6C/NEDg6yyFjeeXAbCjoUVsABQsGThjea9nZrLxk1rFfgKRkObHkOKNqK1QV/fkmdZAg==} + '@tamagui/shorthands@1.126.13': + resolution: {integrity: sha512-D5Qs2WRNtHTdHMLowJ++zKIJRjLZ/GJiHmG+54RHIh/+cwvyc3RNAKHZA1ojFW1XlM+YM71YDIYpprez3lhaXQ==} - '@tamagui/simple-hash@1.126.12': - resolution: {integrity: sha512-+JGmNo5SAoLTDZIfkH6EfzDS1aXw9NiTJBnOuMNLPiJCE+1zPs0HezD9Iv6hroIU0WaiUfw5E103Phlp9wlNeQ==} + '@tamagui/simple-hash@1.126.13': + resolution: {integrity: sha512-0uHpTDBHXyz7Rl0mGDFhaQpTJ06h1vtsMvArBbE1M3DH9mXXWMUjEA5F8cUC1WVF22MQLLBKwIQJvnRRHlSEOA==} - '@tamagui/slider@1.126.12': - resolution: {integrity: sha512-IiURazRgvYBW+kCqPk82CL4+EtobPw5T8LbJG21BGseLLlU74peiCDQKVwoi+vbjcuSly61Aao8tZN37UzTVNw==} + '@tamagui/slider@1.126.13': + resolution: {integrity: sha512-aZRfu3du/2llSvAIITXK2XD7GIZ8h7UpyaTFkIG1H+Ud/wdnyCs4vI0L8/K/Af+y+Ujtdu8CQagVIO2vh+jN5A==} peerDependencies: react: '*' - '@tamagui/stacks@1.126.12': - resolution: {integrity: sha512-HoLDrbghaDLPPvZS98DtOfFOOIYIBKnUNwJ/YdCpGsbLvQtkwvQUuToBrwo0BSYT+lYumkbFiaootzS7sA8yEg==} + '@tamagui/stacks@1.126.13': + resolution: {integrity: sha512-nfqMNcVHV9xw/L6JfvD7gbk278cTPzE/OdCijJthh29nPsLdhlOxRl/KYwixzAlV+1x+89NY+Loh3IrGS1J8Vg==} peerDependencies: react: '*' - '@tamagui/start-transition@1.126.12': - resolution: {integrity: sha512-iBf+eXd8yH/AvQFaXHOFyFHtHdFVYW+hB+mCKywjc4PnK4ZZW8AwBSuXVB8Z/BPtTjm6DSNhTg1Y50aBVoYusg==} + '@tamagui/start-transition@1.126.13': + resolution: {integrity: sha512-GNGbN3UYGFtpg0i1UW2dxK15i7bj3X8st9Dx/yWhDjKz3iAgvDnvR9mydnmVco/ESd71fzE2/BCH1n7XUl/vdg==} - '@tamagui/static@1.126.12': - resolution: {integrity: sha512-EE4zA4ND3lt2q0EXsZsztUkQF4Vf41VU/0IcyyQ63wrRcE3/zDN55Gf6fMCtTWRg6jYxtsKkWK2CtqJIfl5aOA==} + '@tamagui/static@1.126.13': + resolution: {integrity: sha512-xXJ/aVh3vVn+GUQ8zDTm6DSUgyL29DS84jMSSLpBjaTaHDnvGuz6xif+UOr6ilOEdBRsde0KgsIo0ovxtJuKog==} peerDependencies: react: '*' - '@tamagui/switch-headless@1.126.12': - resolution: {integrity: sha512-vuiAtNryUKJrO0v8ab7ey30/2BmxkpMwLgx9mIKJAtcQxNj2YsQBVspyCjQey3J3kytoLHQOwRTBViKZFMuacQ==} + '@tamagui/switch-headless@1.126.13': + resolution: {integrity: sha512-jdLbIOeQm1uIFAVj33rkxZlLwW4C3jevmXxB3YBmpi35Zt216OtOIzb07BBb8bUyQ1N9HZb0WybUR7aaNGaObQ==} peerDependencies: react: '*' - '@tamagui/switch@1.126.12': - resolution: {integrity: sha512-0IKlzb6RUJ7j3uMYuroENTGDJ2EgasYYPWYfgUMOzjPwwB5qbgegibq24GoyOkWbHqCUMidG2iQ5f6A4bq6M8Q==} + '@tamagui/switch@1.126.13': + resolution: {integrity: sha512-tirRPG+HYySGCKRFG1KcytppXrpr7JGphSZUd4wMYHmoNOcnapi8ee3R5K81oQKLQAyd5jjX77UHQvDdbme7uw==} peerDependencies: react: '*' - '@tamagui/tabs@1.126.12': - resolution: {integrity: sha512-uy8fFfuCKKzkVLNTNEATFiavMra7EciLaTLOd0IfM2Q1FsbpC9IWRhCyUypBKwGvKehKD20QKc33KVaUERpBtQ==} + '@tamagui/tabs@1.126.13': + resolution: {integrity: sha512-fB+oY9eWJ2MVf6NJnQl1oEsdVdZ+FwHLvZqQTpuazT7JwevKAo1t8U4ho0fRHmw49draisPB64MxFmbJBHO7uw==} peerDependencies: react: '*' - '@tamagui/text@1.126.12': - resolution: {integrity: sha512-VeCT4r1k+0Xyg84zDd4MPf7zkOP6A1vHfOqsOOvNTsAADnura3wR9qQ+zFyZ5z2NuPJiRtRdWWVmbJx60yQ3HQ==} + '@tamagui/text@1.126.13': + resolution: {integrity: sha512-AiqlIlhhnSaPgTtnZgiG9LmlTkc0H7uXMC9ZQhZMyPC2926t3AHj7q4VIyGSSST/x8v+h5/rvlGuPie9gG6udg==} peerDependencies: react: '*' - '@tamagui/theme-builder@1.126.12': - resolution: {integrity: sha512-RzofAeZjC+j7MKQpZQoXEEEJ6LsRC1qEE1NO6FiZZAWcpTp+xiaWwo63NTY1TvhAtQg8zVMOjX15CXUkKSuB3g==} + '@tamagui/theme-builder@1.126.13': + resolution: {integrity: sha512-nUTZiM4eTjHSHbykG316/TXfGu0YQO9TWFnKVn5y61lDFkgEZSDMKxNgDuKHWlAffmf5rPOTU2eyDo8fPJxDSg==} - '@tamagui/theme@1.126.12': - resolution: {integrity: sha512-wzOo4XYcJSM88YQ+8fvQYmWr38QWOUo1I8rEq4BKcKOrAstqUudEperdNlX1ZQQXSxEsUMa+/MggQd7v1DQfcw==} + '@tamagui/theme@1.126.13': + resolution: {integrity: sha512-LcuVl+YlrYiL9E2811Zj9IMemewIRU3oXS2CVGF2AgKKnLhZuECwPHndpWJFIj9vYSSLBrwk5CxD13b1fp643w==} peerDependencies: react: '*' - '@tamagui/themes@1.126.12': - resolution: {integrity: sha512-io7gDp6XefJcHKyGXwJvYI+n/tRm1LcNQ8hBqxTeBdrLGaLerfqawxEtZV8tvHQUasEUA7MWX2SxNL++Edf5Uw==} + '@tamagui/themes@1.126.13': + resolution: {integrity: sha512-2ZiZU96wWw25I5kpPt9HqGPkF/FeA0MS1vdlmckH68yAJ0PGixGr9+yArmn0fWw1zSSJc3cq0etLeGhl70qJPg==} - '@tamagui/timer@1.126.12': - resolution: {integrity: sha512-RSkpQegOBT4swVXPQjjDRqJP9eC8Mzv8ObmoIcbxwoWm/vS0fbn6UwHhHiQrKQvZHHIciXB8HzjRc8ljKxbuuQ==} + '@tamagui/timer@1.126.13': + resolution: {integrity: sha512-akIN8xeLkpoCtepRMhzVo42/MEejMI4v9cT7geGXAektOhQ3DVkhJGz0X0OH3WchvwYCmbFmGNKWhePo3LYzNQ==} - '@tamagui/toast@1.126.12': - resolution: {integrity: sha512-RKKZQSe8wBoX8NDlbOyI/6fa80staHFc74qvlFTRIyohaBQyku1BGWx9g7aHnhs204IxEapLPay5+Qx3nHKXgQ==} + '@tamagui/toast@1.126.13': + resolution: {integrity: sha512-j28JuV13VYtySKXukR7L7SsUSUq8UqiDPK6pcRciQiYBUNzabTHBb+8Zg0I2V6rcKqO+Pg1rXwGRnLjjyJXx9Q==} peerDependencies: react: '*' - '@tamagui/toggle-group@1.126.12': - resolution: {integrity: sha512-FGIXaXYzOlE6CqupkBXU4KaLUsiuLWjCSVxkbl+z/IoBcxUy1hHgtjKCLpZSdZiChBDmCCS2SaZm5O8Z5zPfsg==} + '@tamagui/toggle-group@1.126.13': + resolution: {integrity: sha512-DnJ3r+bKVp84oCc6lFm7GEiqwiyXYcXLFyOFC4i+TjMfgfsZ8TfHRaWa0tb2oSeD6ixjPum9Ab7dc9yAU/jNaA==} peerDependencies: react: '*' - '@tamagui/tooltip@1.126.12': - resolution: {integrity: sha512-sJEYRAaUlumuPoTj48N6l8uPpU0Vcj8h1QpeTMSCtK2LioKs3Dvwh1EqkS9Zdz6+GFouUxUCZiPe6S8hvECRlA==} + '@tamagui/tooltip@1.126.13': + resolution: {integrity: sha512-tQcPT/dLkDGEmgsj+3rgEySB4yvkX6aVyQhbR7RWx+N4mR6UExoFZkIMIAuPkmKMNajpNK66b70M5Rv1mDG3Kw==} peerDependencies: react: '*' - '@tamagui/types@1.126.12': - resolution: {integrity: sha512-fIBHhyKFs6HYDBvHEUiOKHTdSzuLRX5TPIZoh4SH6r3GzmkbElaPErcTe8FgiwJgbkp8NQXog7wiRMRtJKtrYw==} + '@tamagui/types@1.126.13': + resolution: {integrity: sha512-S63+M/be1Rb0zssUicWmgMvluoHtzS8UdQ8JcapbTODZtNuNTviPO9IXacWYafNk2jxguAG6urg4tDPXsyGTlw==} - '@tamagui/use-callback-ref@1.126.12': - resolution: {integrity: sha512-iU9irW+0zSqMiuEEOGZnFhtYa8Rt4EzdzVvg47463ny6ehy3N5DaOYAi1Vzg/ziJLRqu+o8YTO1oYNJwNLbGuw==} + '@tamagui/use-callback-ref@1.126.13': + resolution: {integrity: sha512-thXGA/7xcJEF22lyWIAK6bGKlLCyA9wwvZJVHRPf2Wi5kM2YENF0rTuqBewiOuSDFhufqWn9iPSbqI5AG+vsLQ==} - '@tamagui/use-constant@1.126.12': - resolution: {integrity: sha512-Ukjl85j2C2JEh1ge3K8X8iFM7hYK2QAaTO43fu3tr2sUgxR+Kiuro6bYIuktaWc1NCNY38sPKaJwILprFCuH4w==} + '@tamagui/use-constant@1.126.13': + resolution: {integrity: sha512-MFE6Wj/P7PXNE28UWNmEZaMryi9u60p+0bWbKYEYkmWC64YgSu/csEXjw/mJnyk63bpuiXQk5U6zVNhgeJsuWA==} peerDependencies: react: '*' - '@tamagui/use-controllable-state@1.126.12': - resolution: {integrity: sha512-EmVrFYiUgEqqbwtOlvCr3tTzIp9zq84us8zb7PYRcmN4PlsRrYion0BtjHOhcc8pxRntPKpYMbbMMeNi+Crqzw==} + '@tamagui/use-controllable-state@1.126.13': + resolution: {integrity: sha512-ocWdGu7btAWJ6ID2P579B+f4uYg4N4XlP+EJO/7olS5domIrm2U/y2WMP6tM97FrzF7uauqwjA17T5aag+xKtA==} peerDependencies: react: '*' - '@tamagui/use-debounce@1.126.12': - resolution: {integrity: sha512-8z4AYa4UruX1ZIYFY8oTNvqeBD4+KnbyRGF1xS3qdE17rbFhrzaB/Tn7qt3xuI7M5iCnQOCneyxQ+4ZBfYHyFA==} + '@tamagui/use-debounce@1.126.13': + resolution: {integrity: sha512-BwyInJ6I8ieCAnWNX9b9ucidK1jToatuza/4WZkoocMTQcIifex58d6ogM1UhtMOY32lVCxMIlzT55OMsqRrKQ==} peerDependencies: react: '*' - '@tamagui/use-did-finish-ssr@1.126.12': - resolution: {integrity: sha512-GfH4n3bsF6lscxElAlYlf3fsKrvJbOsUheN7UYyyveKlcYEsT3iAAGXXk/H0/0RVx9sZ4rLX3+zfnf0LNzzgGg==} + '@tamagui/use-did-finish-ssr@1.126.13': + resolution: {integrity: sha512-v25aBADXj3PlpxSqHxu4Tbkla5QidCJJWC136JWqfBYkl+8lHqSUi5leTCPt1NjJ9Hp9MGh6xaigCe5W0Px4dA==} peerDependencies: react: '*' - '@tamagui/use-direction@1.126.12': - resolution: {integrity: sha512-KYtKf4UTkzIV1E41CK18pWY0cWXRdo41teYy5oW7NR4fE4PDo6B+cPl0M6S8KOZIxSDeLFfYWnaGztXx8q6r3w==} + '@tamagui/use-direction@1.126.13': + resolution: {integrity: sha512-eDRnILxaQTxqrQxtsRnAeWsz7tMaBONeDOZJnjFlUWecfJV6ezgfr+nvZ9TYK43aXoYlzU/U2lUxW03Oisna5Q==} peerDependencies: react: '*' - '@tamagui/use-escape-keydown@1.126.12': - resolution: {integrity: sha512-WJxLRifc50u6bYGFvavbzhA0vgCfgzqluiO+fgZKVCFBT7QrgYVrO4FefF96E87HScil8sLnphGpcSOp/MwwNQ==} + '@tamagui/use-escape-keydown@1.126.13': + resolution: {integrity: sha512-U3ucKiQCAsqXZ2Wqa9mbJ0Riqi5CALOuM9lCvHLKlLsnd+a1vfYkm2ommurcT3DKGZWVbDg2mUBVGf53gboeYg==} - '@tamagui/use-event@1.126.12': - resolution: {integrity: sha512-CNwCRPYSTyHablAg97gjaoZ7VOY8XNY0MfUItug1N1xgezx9TcTq/O056ZLAf8UFHsOsWjnthWcLnPeWCw238g==} + '@tamagui/use-event@1.126.13': + resolution: {integrity: sha512-b282fnVNz5tjHIyxnElCYmTvyk3Qe6gEE1IvydsDsPruCNqwnfXlm8t0YKvIHgQpjhfGRKfgc1h2zurnBzlDog==} peerDependencies: react: '*' - '@tamagui/use-force-update@1.126.12': - resolution: {integrity: sha512-ChxPzjdDoYNRehAzJRAAFfMZHvTWQLe6XKWj8YzCIXWygKMMTNo9GFsx+4M1dgL82OhV95mwjYTxc4ICsCbL/g==} + '@tamagui/use-force-update@1.126.13': + resolution: {integrity: sha512-ih3Epvaqbzy0/sDI3klxTBIZYogzLaJR01FIQTeMzvuyP/kGsTZhUji3kAvePL4YmT+cv51i9/GoW+X5BgLCCQ==} peerDependencies: react: '*' - '@tamagui/use-keyboard-visible@1.126.12': - resolution: {integrity: sha512-U/SFooHydfFMviIqLzgDvXOk6JUYIBTLGpOyNLZ5/5rBGiTTLU/TFripNBOUuLDnPR4mbTMvkAhgTWKLe67D8A==} + '@tamagui/use-keyboard-visible@1.126.13': + resolution: {integrity: sha512-QqZwLcfF6mK8TMGGk2xFWw8BolRP6Ry1Juuzbeuh7EWIeO4EaLyMK+N1CT6WokIcf1xSbr4WvZgjFeYnjuP1Mg==} peerDependencies: react: '*' - '@tamagui/use-presence@1.126.12': - resolution: {integrity: sha512-YWgHH00hGQJ5rp8ot0DVPkS4/vkVrjjKa1647y5EiPEiHcUDs1FS5dLAKt9B6tYYaqV30sdXPbM9kBemlgYbXg==} + '@tamagui/use-presence@1.126.13': + resolution: {integrity: sha512-B7jXinwxUVbR5grqbgw6IGmOb6hacMxtGk1UGSPzt1KBn6whk+o9D0WH6+BPIv8k9EmrdqlfNWWas8e1AiwhCw==} peerDependencies: react: '*' - '@tamagui/use-previous@1.126.12': - resolution: {integrity: sha512-0i41WIYXIQ/yzk95XCOM0gVt937dJrwm/9j3wX5LPpUXoBKO5k0G08UvvEJgnVYGXiIb6KvM0OuENbDwr+PRFw==} + '@tamagui/use-previous@1.126.13': + resolution: {integrity: sha512-y1iHBq4pLL51izEEINmzRw17Y3hLH5kOsqQNKPF/h0sJDCenj56uz2ZfAfG4nk8B1/1FxdAoYZP7S9OCvN6qnQ==} - '@tamagui/use-window-dimensions@1.126.12': - resolution: {integrity: sha512-mRp7P3bzzUbGxJYlWoD59DHgJKfvPJfyReZDG3Hv0BONmZPTIvwvMxB+VUKrhyUBllU4SiZuDdE4+hbdwSSryA==} + '@tamagui/use-window-dimensions@1.126.13': + resolution: {integrity: sha512-VKUK1ejKLHwKly5U22RMGwbyJWy13j6TezoVY/V0cuYF4LutZGLNlQNmptAYkq6WKibARD7LDyoq3gPb2/EpuA==} peerDependencies: react: '*' - '@tamagui/visually-hidden@1.126.12': - resolution: {integrity: sha512-M97xl9J2UYDuPROWLbEaD3KIFLDQ78SQB6nYq69GKm0vIkV294PPq3yZrl2npyDvzWUyml5ePAcq1k6YbLS8+A==} + '@tamagui/visually-hidden@1.126.13': + resolution: {integrity: sha512-JgR0JaedwJ0SB1dracH+2uAXYGL4D4Vm2qnAniZTHS2HZ45QWlIcXwouSGa9hu18yKuFZDwF5ABkJJX2kErRXg==} peerDependencies: react: '*' - '@tamagui/web@1.126.12': - resolution: {integrity: sha512-/Ts/sR8UgMNSafWE/AoOS7EZFidXXeoyjbm9HbvrDVUAU0qzOfm8KVN52gssurxN1W6WaHekUbObB/eWOfwXyA==} + '@tamagui/web@1.126.13': + resolution: {integrity: sha512-o5Bd21gIcM63klw+bEbnXU5eL/v4agbLE1q47wczKlJcbnWURkrSdaMPY6QKM898EMw/yHNodr+bH3qy4C1fkA==} peerDependencies: react: '*' react-dom: '*' - '@tamagui/z-index-stack@1.126.12': - resolution: {integrity: sha512-Okq1nWURF/TjZ8Rsx7Y3niR0a7F/clam1vc7UY6pI41jpft+H2CiHIT8U3uR4Qqgv8lnqiqD1p47FfTWWguVVg==} + '@tamagui/z-index-stack@1.126.13': + resolution: {integrity: sha512-yKHWgBC76v5JKly+iRwKqFCyJp7Wp5EHQkrOkY0BsFaJ4wPeN8J1hUjxo0UmrsdKJkMpvY/Ks6uBjLsF6xFhRg==} - '@tanstack/query-async-storage-persister@5.75.7': - resolution: {integrity: sha512-kxXvRaz1EwGYZ6rhdYkSsfibjEeBmBQ0Xw4RAhOnz2sjhTkHfDLzv6sE1J+Mjkjpne7XJpPiO5L0frcR1li1sg==} + '@tanstack/query-async-storage-persister@5.76.2': + resolution: {integrity: sha512-khLLapNtc6DLqXswO3fp/0u+BDXVzqv7ZQ2e2jYLf8hK68RDHq4L8hFvN2WaCt9rN+ja61dZCD5ew84a7oVf7w==} - '@tanstack/query-core@5.75.7': - resolution: {integrity: sha512-4BHu0qnxUHOSnTn3ow9fIoBKTelh0GY08yn1IO9cxjBTsGvnxz1ut42CHZqUE3Vl/8FAjcHsj8RNJMoXvjgHEA==} + '@tanstack/query-core@5.76.2': + resolution: {integrity: sha512-PFGwWh5ss9cJQ67l6bZ7hqXbisX2gy13G2jP+VGY1bgdbCfOMWh6UBVnN62QbFXro6CCoX9hYzTnZHr6Rz00YQ==} - '@tanstack/query-devtools@5.74.7': - resolution: {integrity: sha512-nSNlfuGdnHf4yB0S+BoNYOE1o3oAH093weAYZolIHfS2stulyA/gWfSk/9H4ZFk5mAAHb5vNqAeJOmbdcGPEQw==} + '@tanstack/query-devtools@5.76.0': + resolution: {integrity: sha512-1p92nqOBPYVqVDU0Ua5nzHenC6EGZNrLnB2OZphYw8CNA1exuvI97FVgIKON7Uug3uQqvH/QY8suUKpQo8qHNQ==} - '@tanstack/query-persist-client-core@5.75.7': - resolution: {integrity: sha512-VI6gYsw9TOGd62n9fKrC7gdp0rvxjF7rf5l/9U+QWm0GcjO0MdBt3VMCp4pyVHJKlz4H89N7jKp6svDPLRDXLg==} + '@tanstack/query-persist-client-core@5.76.2': + resolution: {integrity: sha512-aue39xihS9bK2pg+Tg+WMneysQAV3HhrWsFJhOQ0WL6is+ybpBoSFACny/opxroOWGK6uRHHEQ/oS1n/6Dh23Q==} - '@tanstack/react-query-devtools@5.75.7': - resolution: {integrity: sha512-VUzHvxcUAz7oSeX/TlVyDgNxajLAF+b12Z3OfSxCrAdWynELfWohwzCn1iT2NEjnGTb3X3ryzQxeWuWMyMwCmQ==} + '@tanstack/react-query-devtools@5.76.2': + resolution: {integrity: sha512-XQqPM7ByqhitYtzzRXpFcPXY2FIMGY13atJoQnDInxX+ko7wOhAJg51QGzSxQwZ2JEy91taj0IaIUh3pOz2buw==} peerDependencies: - '@tanstack/react-query': ^5.75.7 + '@tanstack/react-query': ^5.76.2 react: ^18 || ^19 - '@tanstack/react-query-next-experimental@5.75.7': - resolution: {integrity: sha512-wsMH6aNP1qgIqGhjr2ZSOPcNbxpWF11JkLZpJZ+HLWN0vYgdaRM/i0W8oZRl+YVB+Ebu6g57UkyZIXHQ1/jNWw==} + '@tanstack/react-query-next-experimental@5.76.2': + resolution: {integrity: sha512-h6CZtNEnf+3x9TPERhxuSnZA7nlmugjREsCRpeSWZUvG2uqUatUoN/oINrpXI780OOJRtREM4S9E+PPXaWErCw==} peerDependencies: - '@tanstack/react-query': ^5.75.7 + '@tanstack/react-query': ^5.76.2 next: ^13 || ^14 || ^15 react: ^18 || ^19 - '@tanstack/react-query-persist-client@5.75.7': - resolution: {integrity: sha512-DJ52g5NVoTja5aSTuhWDDGl2GDODIPPqKI0awowNxzUlsNCPxvEF2p8mkyb6Dsuo/T5OjLSeDjZTgk003DVBWQ==} + '@tanstack/react-query-persist-client@5.76.2': + resolution: {integrity: sha512-Zi0THj+7SRcNzSur28SEHs8UfByfX6vYWIG8V1ItregHGw8jswAiLB64HIGmaJqwewNJhHANJictIxXkz3k8ug==} peerDependencies: - '@tanstack/react-query': ^5.75.7 + '@tanstack/react-query': ^5.76.2 react: ^18 || ^19 - '@tanstack/react-query@5.75.7': - resolution: {integrity: sha512-JYcH1g5pNjKXNQcvvnCU/PueaYg05uKBDHlWIyApspv7r5C0BM12n6ysa2QF2T+1tlPnNXOob8vr8o96Nx0GxQ==} + '@tanstack/react-query@5.76.2': + resolution: {integrity: sha512-rGkWberCrFdIxMdvSAJM/UOKeu0O/JVTbMmfhQoJpiU9Uq0EDx2EMCadnNuJWbXR4smDA2t7DY3NKkYFmDVS5A==} peerDependencies: react: ^18 || ^19 - '@tanstack/react-virtual@3.13.8': - resolution: {integrity: sha512-meS2AanUg50f3FBSNoAdBSRAh8uS0ue01qm7zrw65KGJtiXB9QXfybqZwkh4uFpRv2iX/eu5tjcH5wqUpwYLPg==} + '@tanstack/react-virtual@3.13.9': + resolution: {integrity: sha512-SPWC8kwG/dWBf7Py7cfheAPOxuvIv4fFQ54PdmYbg7CpXfsKxkucak43Q0qKsxVthhUJQ1A7CIMAIplq4BjVwA==} peerDependencies: react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 react-dom: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 - '@tanstack/virtual-core@3.13.8': - resolution: {integrity: sha512-BT6w89Hqy7YKaWewYzmecXQzcJh6HTBbKYJIIkMaNU49DZ06LoTV3z32DWWEdUsgW6n1xTmwTLs4GtWrZC261w==} + '@tanstack/virtual-core@3.13.9': + resolution: {integrity: sha512-3jztt0jpaoJO5TARe2WIHC1UQC3VMLAFUW5mmMo0yrkwtDB2AQP0+sh10BVUpWrnvHjSLvzFizydtEGLCJKFoQ==} '@tootallnate/quickjs-emscripten@0.23.0': resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==} @@ -5085,6 +5099,16 @@ packages: '@trpc/server': 11.1.2 typescript: '>=5.7.2' + '@trpc/react-query@11.1.2': + resolution: {integrity: sha512-Ws3oIaj0qqbVIUyfYd9uFBwqk7eRqsxaLhLKN7grskoBo8wkh/CUADcN6ZD+GGogC3Dsg9S4WhgU1jVgfc/ahg==} + peerDependencies: + '@tanstack/react-query': ^5.67.1 + '@trpc/client': 11.1.2 + '@trpc/server': 11.1.2 + react: '>=18.2.0' + react-dom: '>=18.2.0' + typescript: '>=5.7.2' + '@trpc/server@11.1.2': resolution: {integrity: sha512-Oi9zWHG0ZDkbDo4sYkduoV7q4sIe6UwjrRLC91vNMYQK+PVgpbTCmK1laRwewAGu0zaayqcGDosANjceOIC3GA==} peerDependencies: @@ -5202,8 +5226,8 @@ packages: '@types/node-fetch@2.6.12': resolution: {integrity: sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA==} - '@types/node@20.17.46': - resolution: {integrity: sha512-0PQHLhZPWOxGW4auogW0eOQAuNIlCYvibIpG67ja0TOJ6/sehu+1en7sfceUn+QQtx4Rk3GxbLNwPh0Cav7TWw==} + '@types/node@20.17.50': + resolution: {integrity: sha512-Mxiq0ULv/zo1OzOhwPqOA13I81CV/W3nvd3ChtQZRT5Cwz3cr0FKo/wMSsbTqL3EXpaBAEQhva2B8ByRkOIh9A==} '@types/normalize-package-data@2.4.4': resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==} @@ -5216,13 +5240,13 @@ packages: peerDependencies: '@types/react': ^18.0.0 - '@types/react-dom@19.1.3': - resolution: {integrity: sha512-rJXC08OG0h3W6wDMFxQrZF00Kq6qQvw0djHRdzl3U5DnIERz0MRce3WVc7IS6JYBwtaP/DwYtRRjVlvivNveKg==} + '@types/react-dom@19.1.5': + resolution: {integrity: sha512-CMCjrWucUBZvohgZxkjd6S9h0nZxXjzus6yDfUb+xLxYM7VvjKNH1tQrE9GWLql1XoOP4/Ds3bwFqShHUYraGg==} peerDependencies: '@types/react': ^19.0.0 - '@types/react@19.1.3': - resolution: {integrity: sha512-dLWQ+Z0CkIvK1J8+wrDPwGxEYFA4RAyHoZPxHVGspYmFVnwGSNT24cGIhFJrtfRnWVuW8X7NO52gCXmhkVUWGQ==} + '@types/react@19.1.5': + resolution: {integrity: sha512-piErsCVVbpMMT2r7wbawdZsq4xMvIAhQuac2gedQHysu1TZYEigE6pnFfgZT+/jQnrRuF5r+SHzuehFjfRjr4g==} '@types/resolve@1.20.2': resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==} @@ -5289,22 +5313,13 @@ packages: typescript: optional: true - '@typescript-eslint/types@5.62.0': - resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@typescript-eslint/types@7.18.0': resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==} engines: {node: ^18.18.0 || >=20.0.0} - '@typescript-eslint/typescript-estree@5.62.0': - resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - peerDependencies: - typescript: '*' - peerDependenciesMeta: - typescript: - optional: true + '@typescript-eslint/types@8.32.1': + resolution: {integrity: sha512-YmybwXUJcgGqgAp6bEsgpPXEg6dcCyPyCSr0CAAueacR/CCBi25G3V8gGQ2kRzQRBNol7VQknxMs9HvVa9Rvfg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} '@typescript-eslint/typescript-estree@7.18.0': resolution: {integrity: sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA==} @@ -5315,20 +5330,26 @@ packages: typescript: optional: true + '@typescript-eslint/typescript-estree@8.32.1': + resolution: {integrity: sha512-Y3AP9EIfYwBb4kWGb+simvPaqQoT5oJuzzj9m0i6FCY6SPvlomY2Ei4UEMm7+FXtlNJbor80ximyslzaQF6xhg==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + peerDependencies: + typescript: '>=4.8.4 <5.9.0' + '@typescript-eslint/utils@7.18.0': resolution: {integrity: sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==} engines: {node: ^18.18.0 || >=20.0.0} peerDependencies: eslint: ^8.56.0 - '@typescript-eslint/visitor-keys@5.62.0': - resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} - '@typescript-eslint/visitor-keys@7.18.0': resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==} engines: {node: ^18.18.0 || >=20.0.0} + '@typescript-eslint/visitor-keys@8.32.1': + resolution: {integrity: sha512-ar0tjQfObzhSaW3C3QNmTc5ofj0hDoNQ5XWrCy6zDyabdr0TWhCkClp+rywGNj/odAFBVzzJrK4tEq5M4Hmu4w==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + '@ungap/structured-clone@1.3.0': resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} @@ -5340,28 +5361,35 @@ packages: peerDependencies: '@urql/core': ^5.0.0 - '@vercel/nft@0.27.7': - resolution: {integrity: sha512-FG6H5YkP4bdw9Ll1qhmbxuE8KwW2E/g8fJpM183fWQLeVDGqzeywMIeJ9h2txdWZ03psgWMn6QymTxaDLmdwUg==} - engines: {node: '>=16'} - hasBin: true - - '@vercel/nft@0.29.2': - resolution: {integrity: sha512-A/Si4mrTkQqJ6EXJKv5EYCDQ3NL6nJXxG8VGXePsaiQigsomHYQC9xSpX8qGk7AEZk4b1ssbYIqJ0ISQQ7bfcA==} + '@vercel/nft@0.29.3': + resolution: {integrity: sha512-aVV0E6vJpuvImiMwU1/5QKkw2N96BRFE7mBYGS7FhXUoS6V7SarQ+8tuj33o7ofECz8JtHpmQ9JW+oVzOoB7MA==} engines: {node: '>=18'} hasBin: true '@vue/compiler-core@3.3.4': resolution: {integrity: sha512-cquyDNvZ6jTbf/+x+AgM2Arrp6G4Dzbb0R64jiG804HRMfRiFXWI6kqUVqZ6ZR0bQhIoQjB4+2bhNtVwndW15g==} + '@vue/compiler-core@3.5.14': + resolution: {integrity: sha512-k7qMHMbKvoCXIxPhquKQVw3Twid3Kg4s7+oYURxLGRd56LiuHJVrvFKI4fm2AM3c8apqODPfVJGoh8nePbXMRA==} + '@vue/compiler-dom@3.3.4': resolution: {integrity: sha512-wyM+OjOVpuUukIq6p5+nwHYtj9cFroz9cwkfmP9O1nzH68BenTTv0u7/ndggT8cIQlnBeOo6sUT/gvHcIkLA5w==} + '@vue/compiler-dom@3.5.14': + resolution: {integrity: sha512-1aOCSqxGOea5I80U2hQJvXYpPm/aXo95xL/m/mMhgyPUsKe9jhjwWpziNAw7tYRnbz1I61rd9Mld4W9KmmRoug==} + '@vue/compiler-sfc@3.3.4': resolution: {integrity: sha512-6y/d8uw+5TkCuzBkgLS0v3lSM3hJDntFEiUORM11pQ/hKvkhSKZrXW6i69UyXlJQisJxuUEJKAWEqWbWsLeNKQ==} + '@vue/compiler-sfc@3.5.14': + resolution: {integrity: sha512-9T6m/9mMr81Lj58JpzsiSIjBgv2LiVoWjIVa7kuXHICUi8LiDSIotMpPRXYJsXKqyARrzjT24NAwttrMnMaCXA==} + '@vue/compiler-ssr@3.3.4': resolution: {integrity: sha512-m0v6oKpup2nMSehwA6Uuu+j+wEwcy7QmwMkVNVfrV9P2qE5KshC6RwOCq8fjGS/Eak/uNb8AaWekfiXxbBB6gQ==} + '@vue/compiler-ssr@3.5.14': + resolution: {integrity: sha512-Y0G7PcBxr1yllnHuS/NxNCSPWnRGH4Ogrp0tsLA5QemDZuJLs99YjAKQ7KqkHE0vCg4QTKlQzXLKCMF7WPSl7Q==} + '@vue/reactivity-transform@3.3.4': resolution: {integrity: sha512-MXgwjako4nu5WFLAjpBnCj/ieqcjE2aJBINUNQzkZQfzIZA4xn+0fV1tIYBJvvva3N3OvKGofRLvQIwEQPpaXw==} @@ -5382,6 +5410,9 @@ packages: '@vue/shared@3.3.4': resolution: {integrity: sha512-7OjdcV8vQ74eiz1TZLzZP4JwqM5fA94K6yntPS5Z25r9HDuGNzaGdgvwKYq6S+MxwF0TFRwe50fIR/MYnakdkQ==} + '@vue/shared@3.5.14': + resolution: {integrity: sha512-oXTwNxVfc9EtP1zzXAlSlgARLXNC84frFYkS0HHz0h3E4WZSP9sywqjqzGCP9Y34M8ipNmd380pVgmMuwELDyQ==} + '@webassemblyjs/ast@1.14.1': resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==} @@ -5431,12 +5462,12 @@ packages: resolution: {integrity: sha512-LOtTn+JgJvX8WfBVJtF08TGrdjuFzGJc4mkP8EdDI8ADbvO7kiexYep1o8dwnt0okb0jYclCDXF13xU7Ge4zSw==} engines: {node: '>=18.0.0'} - '@whatwg-node/fetch@0.10.7': - resolution: {integrity: sha512-sL31zX8BqZovZc38ovBFmKEfao9AzZ/24sWSHKNhDhcnzIO/PYAX2xF6vYtgU9hinrEGlvScTTyKSMynHGdfEA==} + '@whatwg-node/fetch@0.10.8': + resolution: {integrity: sha512-Rw9z3ctmeEj8QIB9MavkNJqekiu9usBCSMZa+uuAvM0lF3v70oQVCXNppMIqaV6OTZbdaHF1M2HLow58DEw+wg==} engines: {node: '>=18.0.0'} - '@whatwg-node/node-fetch@0.7.19': - resolution: {integrity: sha512-ippPt75epj7Tg6H5znI9lBBQ4gi+x23QsIF7UN1Z02MUqzhbkjhGsUtNnYGS3osrqvyKtbGKmEya6IqIPRmtdw==} + '@whatwg-node/node-fetch@0.7.21': + resolution: {integrity: sha512-QC16IdsEyIW7kZd77aodrMO7zAoDyyqRCTLg+qG4wqtP4JV9AA+p7/lgqMdD29XyiYdVvIdFrfI9yh7B1QvRvw==} engines: {node: '>=18.0.0'} '@whatwg-node/promise-helpers@1.3.2': @@ -5457,9 +5488,6 @@ packages: '@xtuc/long@4.2.2': resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==} - abbrev@1.1.1: - resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==} - abbrev@3.0.1: resolution: {integrity: sha512-AO2ac6pjRB3SJmGJo+v5/aK6Omggp6fsLrs6wN9bd35ulu4cCwaAU9+7ZhXjeqHVkaHThLuzH0nZr0YpCDhygg==} engines: {node: ^18.17.0 || >=20.5.0} @@ -5497,10 +5525,6 @@ packages: engines: {node: '>=0.4.0'} hasBin: true - agent-base@6.0.2: - resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==} - engines: {node: '>= 6.0.0'} - agent-base@7.1.3: resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==} engines: {node: '>= 14'} @@ -5578,34 +5602,14 @@ packages: resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} engines: {node: '>= 8'} - aproba@2.0.0: - resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==} - - archiver-utils@2.1.0: - resolution: {integrity: sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==} - engines: {node: '>= 6'} - - archiver-utils@3.0.4: - resolution: {integrity: sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==} - engines: {node: '>= 10'} - archiver-utils@5.0.2: resolution: {integrity: sha512-wuLJMmIBQYCsGZgYLTy5FIB2pF6Lfb6cXMSF8Qywwk3t20zWnAi7zLcQFdKQmIB8wyZpY5ER38x08GbwtR2cLA==} engines: {node: '>= 14'} - archiver@5.3.2: - resolution: {integrity: sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==} - engines: {node: '>= 10'} - archiver@7.0.1: resolution: {integrity: sha512-ZcbTaIqJOfCc03QwD468Unz/5Ir8ATtvAHsK+FdXbDIbGfihqh9mrvdcYunQzqn4HrvWWaFyaxJhGZagaJJpPQ==} engines: {node: '>= 14'} - are-we-there-yet@2.0.0: - resolution: {integrity: sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==} - engines: {node: '>=10'} - deprecated: This package is no longer supported. - arg@4.1.0: resolution: {integrity: sha512-ZWc51jO3qegGkVh8Hwpv636EkbesNV5ZNQPCtRa+0qytRYPEs9IYT9qITY9buezqUH5uqyzlWLcufrzU2rffdg==} @@ -5624,8 +5628,8 @@ packages: argsarray@0.0.1: resolution: {integrity: sha512-u96dg2GcAKtpTrBdDoFIM7PjcBA+6rSP0OR94MOReNRyUECL6MtQt5XXmRr4qrftYaef9+l5hcpO5te7sML1Cg==} - aria-hidden@1.2.4: - resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==} + aria-hidden@1.2.6: + resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==} engines: {node: '>=10'} aria-query@5.3.2: @@ -5674,9 +5678,9 @@ packages: assert@2.1.0: resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} - ast-module-types@5.0.0: - resolution: {integrity: sha512-JvqziE0Wc0rXQfma0HZC/aY7URXHFuZV84fJRtP8u+lhp0JYCNd5wJzVXP45t0PH0Mej3ynlzvdyITYIu0G4LQ==} - engines: {node: '>=14'} + ast-module-types@6.0.1: + resolution: {integrity: sha512-WHw67kLXYbZuHTmcdbIrVArCq5wxo6NEuj3hiYAWr8mwJeC+C2mMCIBIWCiDoCye/OF/xelc+teJ1ERoWmnEIA==} + engines: {node: '>=18'} ast-types-flow@0.0.8: resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==} @@ -5818,8 +5822,8 @@ packages: bare-events@2.5.4: resolution: {integrity: sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==} - bare-fs@4.1.4: - resolution: {integrity: sha512-r8+26Voz8dGX3AYpJdFb1ZPaUSM8XOLCZvy+YGpRTmwPHIxA7Z3Jov/oMPtV7hfRQbOnH8qGlLTzQAbgtdNN0Q==} + bare-fs@4.1.5: + resolution: {integrity: sha512-1zccWBMypln0jEE05LzZt+V/8y8AQsQQqxtklqaIyg5nu6OAYFhZxPXinJTSG+kU5qyNmeLgcn9AW7eHiCHVLA==} engines: {bare: '>=1.16.0'} peerDependencies: bare-buffer: '*' @@ -5957,8 +5961,8 @@ packages: resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} engines: {node: '>= 0.8'} - c12@3.0.3: - resolution: {integrity: sha512-uC3MacKBb0Z15o5QWCHvHWj5Zv34pGQj9P+iXKSpTuSGFS0KKhUWf4t9AJ+gWjYOdmWCPEGpEzm8sS0iqbpo1w==} + c12@3.0.4: + resolution: {integrity: sha512-t5FaZTYbbCtvxuZq9xxIruYydrAGsJ+8UdP0pZzMiK2xl/gNiSOy0OxhLzHUEEb0m1QXYqfzfvyIFEmz/g9lqg==} peerDependencies: magicast: ^0.3.5 peerDependenciesMeta: @@ -6034,8 +6038,8 @@ packages: resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==} engines: {node: '>=10'} - caniuse-lite@1.0.30001717: - resolution: {integrity: sha512-auPpttCq6BDEG8ZAuHJIplGw6GODhjw+/11e7IjpnYCxZcW/ONgPs0KVBJ0d1bY3e2+7PRe5RCLyP+PfwVgkYw==} + caniuse-lite@1.0.30001718: + resolution: {integrity: sha512-AflseV1ahcSunK53NfEs9gFWgOEmzr0f+kaMFA4xiLZlr9Hzt7HxcSpIFcnNCUkz6R6dWKa54rUz3HUmI3nVcw==} chalk@2.4.2: resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==} @@ -6082,10 +6086,6 @@ packages: chownr@1.1.4: resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==} - chownr@2.0.0: - resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==} - engines: {node: '>=10'} - chownr@3.0.0: resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} engines: {node: '>=18'} @@ -6206,10 +6206,6 @@ packages: color-string@1.9.1: resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==} - color-support@1.1.3: - resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==} - hasBin: true - color2k@2.0.3: resolution: {integrity: sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==} @@ -6267,10 +6263,6 @@ packages: compatx@0.2.0: resolution: {integrity: sha512-6gLRNt4ygsi5NyMVhceOCFv14CIdDFN7fQjX1U4+47qVE/+kjPoXMK65KWK+dWxmFzMTuKazoQ9sch6pM0p5oA==} - compress-commons@4.1.2: - resolution: {integrity: sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==} - engines: {node: '>= 10'} - compress-commons@6.0.2: resolution: {integrity: sha512-6FqVXeETqWPoGcfzrXb37E50NP0LXT8kAMu5ooZayhWWdgEY4lBEEcbQNXtkuKQsGduxiIcI4gOTsxTmuq/bSg==} engines: {node: '>= 14'} @@ -6303,9 +6295,6 @@ packages: resolution: {integrity: sha512-5IKcdX0nnYavi6G7TtOhwkYzyjfJlatbjMjuLSfE2kYT5pMDOilZ4OvMhi637CcDICTmz3wARPoyhqyX1Y+XvA==} engines: {node: ^14.18.0 || >=16.10.0} - console-control-strings@1.1.0: - resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==} - constant-case@2.0.0: resolution: {integrity: sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==} @@ -6337,6 +6326,10 @@ packages: resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==} engines: {node: '>=12.13'} + copy-file@11.0.0: + resolution: {integrity: sha512-mFsNh/DIANLqFt5VHZoGirdg7bK5+oTWlhnGu6tgRhzBlnEKWaPX2xrFaLltii/6rmhqFMJqffUgknuRdpYlHw==} + engines: {node: '>=18'} + core-js-compat@3.42.0: resolution: {integrity: sha512-bQasjMfyDGyaeWKBIu33lHh9qlSR0MFE/Nmc6nMjf/iU9b3rSMdAYz1Baxrv4lPdGUsTqZudHA4jIGSJy0SWZQ==} @@ -6363,19 +6356,11 @@ packages: typescript: optional: true - cp-file@10.0.0: - resolution: {integrity: sha512-vy2Vi1r2epK5WqxOLnskeKeZkdZvTKfFZQCplE3XWsP+SUJyd5XAUFC9lFgTjjXJF2GMne/UML14iEmkAaDfFg==} - engines: {node: '>=14.16'} - crc-32@1.2.2: resolution: {integrity: sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==} engines: {node: '>=0.8'} hasBin: true - crc32-stream@4.0.3: - resolution: {integrity: sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==} - engines: {node: '>= 10'} - crc32-stream@6.0.0: resolution: {integrity: sha512-piICUB6ei4IlTv1+653yq5+KoqfBYmj9bw6LqXoOneTMDXk5nM1qt12mFW1caG3LlJXEKW1Bp0WggEmIfQB34g==} engines: {node: '>= 14'} @@ -6523,8 +6508,8 @@ packages: supports-color: optional: true - debug@4.4.0: - resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==} + debug@4.4.1: + resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==} engines: {node: '>=6.0'} peerDependencies: supports-color: '*' @@ -6588,9 +6573,6 @@ packages: resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} engines: {node: '>=0.4.0'} - delegates@1.0.0: - resolution: {integrity: sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==} - denque@2.1.0: resolution: {integrity: sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==} engines: {node: '>=0.10'} @@ -6622,38 +6604,48 @@ packages: detect-node-es@1.1.0: resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==} - detective-amd@5.0.2: - resolution: {integrity: sha512-XFd/VEQ76HSpym80zxM68ieB77unNuoMwopU2TFT/ErUk5n4KvUTwW4beafAVUugrjV48l4BmmR0rh2MglBaiA==} - engines: {node: '>=14'} + detective-amd@6.0.1: + resolution: {integrity: sha512-TtyZ3OhwUoEEIhTFoc1C9IyJIud3y+xYkSRjmvCt65+ycQuc3VcBrPRTMWoO/AnuCyOB8T5gky+xf7Igxtjd3g==} + engines: {node: '>=18'} hasBin: true - detective-cjs@5.0.1: - resolution: {integrity: sha512-6nTvAZtpomyz/2pmEmGX1sXNjaqgMplhQkskq2MLrar0ZAIkHMrDhLXkRiK2mvbu9wSWr0V5/IfiTrZqAQMrmQ==} - engines: {node: '>=14'} + detective-cjs@6.0.1: + resolution: {integrity: sha512-tLTQsWvd2WMcmn/60T2inEJNhJoi7a//PQ7DwRKEj1yEeiQs4mrONgsUtEJKnZmrGWBBmE0kJ1vqOG/NAxwaJw==} + engines: {node: '>=18'} - detective-es6@4.0.1: - resolution: {integrity: sha512-k3Z5tB4LQ8UVHkuMrFOlvb3GgFWdJ9NqAa2YLUU/jTaWJIm+JJnEh4PsMc+6dfT223Y8ACKOaC0qcj7diIhBKw==} - engines: {node: '>=14'} + detective-es6@5.0.1: + resolution: {integrity: sha512-XusTPuewnSUdoxRSx8OOI6xIA/uld/wMQwYsouvFN2LAg7HgP06NF1lHRV3x6BZxyL2Kkoih4ewcq8hcbGtwew==} + engines: {node: '>=18'} - detective-postcss@6.1.3: - resolution: {integrity: sha512-7BRVvE5pPEvk2ukUWNQ+H2XOq43xENWbH0LcdCE14mwgTBEAMoAx+Fc1rdp76SmyZ4Sp48HlV7VedUnP6GA1Tw==} - engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} + detective-postcss@7.0.1: + resolution: {integrity: sha512-bEOVpHU9picRZux5XnwGsmCN4+8oZo7vSW0O0/Enq/TO5R2pIAP2279NsszpJR7ocnQt4WXU0+nnh/0JuK4KHQ==} + engines: {node: ^14.0.0 || >=16.0.0} + peerDependencies: + postcss: ^8.4.47 - detective-sass@5.0.3: - resolution: {integrity: sha512-YsYT2WuA8YIafp2RVF5CEfGhhyIVdPzlwQgxSjK+TUm3JoHP+Tcorbk3SfG0cNZ7D7+cYWa0ZBcvOaR0O8+LlA==} - engines: {node: '>=14'} + detective-sass@6.0.1: + resolution: {integrity: sha512-jSGPO8QDy7K7pztUmGC6aiHkexBQT4GIH+mBAL9ZyBmnUIOFbkfZnO8wPRRJFP/QP83irObgsZHCoDHZ173tRw==} + engines: {node: '>=18'} - detective-scss@4.0.3: - resolution: {integrity: sha512-VYI6cHcD0fLokwqqPFFtDQhhSnlFWvU614J42eY6G0s8c+MBhi9QAWycLwIOGxlmD8I/XvGSOUV1kIDhJ70ZPg==} - engines: {node: '>=14'} + detective-scss@5.0.1: + resolution: {integrity: sha512-MAyPYRgS6DCiS6n6AoSBJXLGVOydsr9huwXORUlJ37K3YLyiN0vYHpzs3AdJOgHobBfispokoqrEon9rbmKacg==} + engines: {node: '>=18'} - detective-stylus@4.0.0: - resolution: {integrity: sha512-TfPotjhszKLgFBzBhTOxNHDsutIxx9GTWjrL5Wh7Qx/ydxKhwUrlSFeLIn+ZaHPF+h0siVBkAQSuy6CADyTxgQ==} - engines: {node: '>=14'} + detective-stylus@5.0.1: + resolution: {integrity: sha512-Dgn0bUqdGbE3oZJ+WCKf8Dmu7VWLcmRJGc6RCzBgG31DLIyai9WAoEhYRgIHpt/BCRMrnXLbGWGPQuBUrnF0TA==} + engines: {node: '>=18'} - detective-typescript@11.2.0: - resolution: {integrity: sha512-ARFxjzizOhPqs1fYC/2NMC3N4jrQ6HvVflnXBTRqNEqJuXwyKLRr9CrJwkRcV/SnZt1sNXgsF6FPm0x57Tq0rw==} - engines: {node: ^14.14.0 || >=16.0.0} + detective-typescript@14.0.0: + resolution: {integrity: sha512-pgN43/80MmWVSEi5LUuiVvO/0a9ss5V7fwVfrJ4QzAQRd3cwqU1SfWGXJFcNKUqoD5cS+uIovhw5t/0rSeC5Mw==} + engines: {node: '>=18'} + peerDependencies: + typescript: ^5.4.4 + + detective-vue2@2.2.0: + resolution: {integrity: sha512-sVg/t6O2z1zna8a/UIV6xL5KUa2cMTQbdTIIvqNM0NIPswp52fe43Nwmbahzj3ww4D844u/vC2PYfiGLvD3zFA==} + engines: {node: '>=18'} + peerDependencies: + typescript: ^5.4.4 didyoumean@1.2.2: resolution: {integrity: sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==} @@ -6852,8 +6844,8 @@ packages: ee-first@1.1.1: resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} - electron-to-chromium@1.5.151: - resolution: {integrity: sha512-Rl6uugut2l9sLojjS4H4SAr3A4IgACMLgpuEMPYCVcKydzfyPrn5absNRju38IhQOf/NwjJY8OGWjlteqYeBCA==} + electron-to-chromium@1.5.157: + resolution: {integrity: sha512-/0ybgsQd1muo8QlnuTpKwtl0oX5YMlUGbm8xyqgDU00motRkKFFbUJySAQBWcY79rVqNLWIWa87BGVGClwAB2w==} emoji-regex@8.0.0: resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} @@ -6919,8 +6911,8 @@ packages: error-stack-parser@2.1.4: resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==} - es-abstract@1.23.9: - resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==} + es-abstract@1.23.10: + resolution: {integrity: sha512-MtUbM072wlJNyeYAe0mhzrD+M6DIJa96CZAOBBrhDbgKnB4MApIKefcyAB1eOdYn8cUNZgvwBvEzdoAYsxgEIw==} engines: {node: '>= 0.4'} es-define-property@1.0.1: @@ -7117,6 +7109,10 @@ packages: resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} + eslint-visitor-keys@4.2.0: + resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==} + engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0} + eslint@8.57.1: resolution: {integrity: sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} @@ -7187,10 +7183,6 @@ packages: resolution: {integrity: sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==} engines: {node: '>=10'} - execa@7.2.0: - resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==} - engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} - execa@8.0.1: resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} engines: {node: '>=16.17'} @@ -7335,8 +7327,8 @@ packages: react: '*' react-native: '*' - expo-router@5.0.6: - resolution: {integrity: sha512-/44G3liB7LMMDoUO+lN5TS8XvZrAhLtq7cVGoilO2QkoSBjFQfxFA9VYOVWVlu2R80tN6dM3cgsEuoA275FGQg==} + expo-router@5.0.7: + resolution: {integrity: sha512-NlEgRXCKtseDuIHBp87UfkvqsuVrc0MYG+zg33dopaN6wik4RkrWWxUYdNPHub0s/7qMye6zZBY4ZCrXwd/xpA==} peerDependencies: '@react-navigation/drawer': ^7.3.9 '@testing-library/jest-native': '*' @@ -7528,9 +7520,9 @@ packages: resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==} engines: {node: '>=0.10.0'} - filter-obj@5.1.0: - resolution: {integrity: sha512-qWeTREPoT7I0bifpPUXtxkZJ1XJzxWtfoWWkdVGqa+eCr3SHW/Ocp89o8vLvbUuQnadybJpjOKu4V+RwO6sGng==} - engines: {node: '>=14.16'} + filter-obj@6.1.0: + resolution: {integrity: sha512-xdMtCAODmPloU9qtmPcdBV9Kd27NtMse+4ayThxqIHUES5Z2S6bGpap5PpdmNM56ub7y3i1eyr+vJJIIgWGKmA==} + engines: {node: '>=18'} finalhandler@1.1.2: resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==} @@ -7665,10 +7657,6 @@ packages: resolution: {integrity: sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==} engines: {node: '>=14.14'} - fs-minipass@2.1.0: - resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} - engines: {node: '>= 8'} - fs.realpath@1.0.0: resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} @@ -7687,18 +7675,13 @@ packages: functions-have-names@1.2.3: resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==} - gauge@3.0.2: - resolution: {integrity: sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==} - engines: {node: '>=10'} - deprecated: This package is no longer supported. - gensync@1.0.0-beta.2: resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} engines: {node: '>=6.9.0'} - get-amd-module-type@5.0.1: - resolution: {integrity: sha512-jb65zDeHyDjFR1loOVk0HQGM5WNwoGB8aLWy3LKCieMKol0/ProHkhO2X1JxojuN10vbz1qNn09MJ7tNp7qMzw==} - engines: {node: '>=14'} + get-amd-module-type@6.0.1: + resolution: {integrity: sha512-MtjsmYiCXcYDDrGqtNbeIYdAl85n+5mSv2r3FbzER/YV3ZILw4HNNIw34HuV5pyl0jzs6GFYU1VHVEefhgcNHQ==} + engines: {node: '>=18'} get-caller-file@2.0.5: resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} @@ -7743,8 +7726,8 @@ packages: resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==} engines: {node: '>= 0.4'} - get-tsconfig@4.10.0: - resolution: {integrity: sha512-kGzZ3LWWQcGIAmg6iWvXn0ei6WDtV26wzHRMwDSzmAbcXrTEXxHy6IehI6/4eT6VRKyMP1eF1VqwrVUmE/LR7A==} + get-tsconfig@4.10.1: + resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==} get-uri@6.0.4: resolution: {integrity: sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==} @@ -7905,9 +7888,6 @@ packages: resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} engines: {node: '>= 0.4'} - has-unicode@2.0.1: - resolution: {integrity: sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==} - hasown@2.0.2: resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} engines: {node: '>= 0.4'} @@ -8022,10 +8002,6 @@ packages: resolution: {integrity: sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==} engines: {node: '>=10.19.0'} - https-proxy-agent@5.0.1: - resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==} - engines: {node: '>= 6'} - https-proxy-agent@7.0.6: resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==} engines: {node: '>= 14'} @@ -8037,10 +8013,6 @@ packages: resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==} engines: {node: '>=10.17.0'} - human-signals@4.3.1: - resolution: {integrity: sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==} - engines: {node: '>=14.18.0'} - human-signals@5.0.0: resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} engines: {node: '>=16.17.0'} @@ -8616,8 +8588,8 @@ packages: engines: {node: '>=8'} hasBin: true - lan-network@0.1.6: - resolution: {integrity: sha512-0qPYjNoD89v+bfhkIqFBYGBAof1xhxLqjX8bkNN1kQdP81UHpZw5TDXgEjwB+X2iCFGQmzF8TRmvg4vQcykyDA==} + lan-network@0.1.7: + resolution: {integrity: sha512-mnIlAEMu4OyEvUNdzco9xpuB9YVcPkQec+QsgycBCtPZvEqWPCDPfbAE4OJMdBBWpZWtpCn1xw9jJYlwjWI5zQ==} hasBin: true language-subtag-registry@0.3.23: @@ -8664,8 +8636,8 @@ packages: cpu: [arm64] os: [darwin] - lightningcss-darwin-arm64@1.30.0: - resolution: {integrity: sha512-L9lhvW4rTHL6vaG1WU3Itj0ivtdBuwu7ufrKEbijRCPhS1pt1haXEXI8h9g73qCQsOaYs1GCc9chvSgxPmhpRA==} + lightningcss-darwin-arm64@1.30.1: + resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [darwin] @@ -8682,8 +8654,8 @@ packages: cpu: [x64] os: [darwin] - lightningcss-darwin-x64@1.30.0: - resolution: {integrity: sha512-+qNst+L3GGwG5LypEFTmDUOtNarQVh717Enk4AfmKfwlTrKCSe9kAiPyK7ces269a+f0jNSa8Uww8WwGFXzt8w==} + lightningcss-darwin-x64@1.30.1: + resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [darwin] @@ -8700,8 +8672,8 @@ packages: cpu: [x64] os: [freebsd] - lightningcss-freebsd-x64@1.30.0: - resolution: {integrity: sha512-/sfAWALScgggjjk5ZlmGdpFELwGPIwzAdfcBJcT6UTgQoDHzQ4aP41XTq3N4LL01U9dsJp6uAvCvmHX7snqTdg==} + lightningcss-freebsd-x64@1.30.1: + resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [freebsd] @@ -8718,8 +8690,8 @@ packages: cpu: [arm] os: [linux] - lightningcss-linux-arm-gnueabihf@1.30.0: - resolution: {integrity: sha512-3B5val/f61unLgfZHEfkZGzunlyyL76l8xRoxFx+G0uwxK7rvaFcnkyf6k4Zto2STVj05FsLs+aTZoTqslPaug==} + lightningcss-linux-arm-gnueabihf@1.30.1: + resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==} engines: {node: '>= 12.0.0'} cpu: [arm] os: [linux] @@ -8736,8 +8708,8 @@ packages: cpu: [arm64] os: [linux] - lightningcss-linux-arm64-gnu@1.30.0: - resolution: {integrity: sha512-Q45+fvm7eAAmorsEzc1ZBwajGnXDocB/nRaSldpHQa36QbP93GrzmBqfSdi2pEks2yXMxST4yznio24Q6en7Sg==} + lightningcss-linux-arm64-gnu@1.30.1: + resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] @@ -8754,8 +8726,8 @@ packages: cpu: [arm64] os: [linux] - lightningcss-linux-arm64-musl@1.30.0: - resolution: {integrity: sha512-RNZNW/AyKax8wWR4xMKoyAb40dqhzOtnAw4knjbyxJUUEL0wzBEXO3k44AS3UFRjxTyd/s46adVQXxE/vOaSgg==} + lightningcss-linux-arm64-musl@1.30.1: + resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [linux] @@ -8772,8 +8744,8 @@ packages: cpu: [x64] os: [linux] - lightningcss-linux-x64-gnu@1.30.0: - resolution: {integrity: sha512-ExVnSepsAyQb547i7SvPhS0SrgIDUjA1dYTT0DNFt/YsqfKhkxg405VDtMoV2MQGAyoEQIub+YK5NQo9Lw7IzQ==} + lightningcss-linux-x64-gnu@1.30.1: + resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] @@ -8790,8 +8762,8 @@ packages: cpu: [x64] os: [linux] - lightningcss-linux-x64-musl@1.30.0: - resolution: {integrity: sha512-e/nHeX5SAEcfAzyLob5H1Jhm8uHLKwpOIHzcURKnXTMFdBqIDOsETMhmcB5AGDqsr6Q5D9u0QVswDdRo+btSgg==} + lightningcss-linux-x64-musl@1.30.1: + resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [linux] @@ -8802,8 +8774,8 @@ packages: cpu: [arm64] os: [win32] - lightningcss-win32-arm64-msvc@1.30.0: - resolution: {integrity: sha512-Fd9XejM6GPHx5rv7I8aqsc8mBHs+TpHEVDalP5PVP986tF6rmiVfwQzM2Ic4Cn0rXbS3z95Ru8x50hnzfR2GDA==} + lightningcss-win32-arm64-msvc@1.30.1: + resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==} engines: {node: '>= 12.0.0'} cpu: [arm64] os: [win32] @@ -8820,8 +8792,8 @@ packages: cpu: [x64] os: [win32] - lightningcss-win32-x64-msvc@1.30.0: - resolution: {integrity: sha512-2BhpVDbNa+HpXPu63EYfcsL2TCBKLeuMckx4d6UZCzaj1KVuSRXi6r7H3rUeaADuX5NB/BT2smP4HI3s6I1/Ag==} + lightningcss-win32-x64-msvc@1.30.1: + resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==} engines: {node: '>= 12.0.0'} cpu: [x64] os: [win32] @@ -8834,8 +8806,8 @@ packages: resolution: {integrity: sha512-8f7aNmS1+etYSLHht0fQApPc2kNO8qGRutifN5rVIc6Xo6ABsEbqOr758UwI7ALVbTt4x1fllKt0PYgzD9S3yQ==} engines: {node: '>= 12.0.0'} - lightningcss@1.30.0: - resolution: {integrity: sha512-uuurN2onfoNwQtaWnX9UYLz6DlZHnUd88SceOXDAQzQ5+FJ+ELPgcC/EVtRJoFOveXe44zRE+foh2KMD/vQxqQ==} + lightningcss@1.30.1: + resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==} engines: {node: '>= 12.0.0'} lilconfig@2.1.0: @@ -8907,12 +8879,6 @@ packages: lodash.defaults@4.2.0: resolution: {integrity: sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==} - lodash.difference@4.5.0: - resolution: {integrity: sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==} - - lodash.flatten@4.4.0: - resolution: {integrity: sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==} - lodash.get@4.4.2: resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==} deprecated: This package is deprecated. Use the optional chaining (?.) operator instead. @@ -8935,9 +8901,6 @@ packages: lodash.truncate@4.4.2: resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==} - lodash.union@4.6.0: - resolution: {integrity: sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==} - lodash@4.17.21: resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==} @@ -9053,65 +9016,65 @@ packages: resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} engines: {node: '>= 8'} - metro-babel-transformer@0.82.3: - resolution: {integrity: sha512-eC0f1MSA8rg7VoNDCYMIAIe5AEgYBskh5W8rIa4RGRdmEOsGlXbAV0AWMYoA7NlIALW/S9b10AcdIwD3n1e50w==} + metro-babel-transformer@0.82.4: + resolution: {integrity: sha512-4juJahGRb1gmNbQq48lNinB6WFNfb6m0BQqi/RQibEltNiqTCxew/dBspI2EWA4xVCd3mQWGfw0TML4KurQZnQ==} engines: {node: '>=18.18'} - metro-cache-key@0.82.3: - resolution: {integrity: sha512-dDLTUOJ7YYqGog9kR55InchwnkkHuxBXD765J3hQVWWPCy6xO9uZXZYGX1Y/tIMV8U7Ho1Sve0V13n5rFajrRQ==} + metro-cache-key@0.82.4: + resolution: {integrity: sha512-2JCTqcpF+f2OghOpe/+x+JywfzDkrHdAqinPFWmK2ezNAU/qX0jBFaTETogPibFivxZJil37w9Yp6syX8rFUng==} engines: {node: '>=18.18'} - metro-cache@0.82.3: - resolution: {integrity: sha512-9zKhicA5GENROeP+iXku1NrI8FegtwEg3iPXHGixkm1Yppkbwsy/3lSHSiJZoT6GkZmxUDjN6sQ5QQ+/p72Msw==} + metro-cache@0.82.4: + resolution: {integrity: sha512-vX0ylSMGtORKiZ4G8uP6fgfPdDiCWvLZUGZ5zIblSGylOX6JYhvExl0Zg4UA9pix/SSQu5Pnp9vdODMFsNIxhw==} engines: {node: '>=18.18'} - metro-config@0.82.3: - resolution: {integrity: sha512-GRG9sBkPvrGXD/Wu3RdEDuWg5NDixF9t0c6Zz9kZ9Aa/aQY+m85JgaCI5HYEV+UzVC/IUFFSpJiMfzQRicppLw==} + metro-config@0.82.4: + resolution: {integrity: sha512-Ki3Wumr3hKHGDS7RrHsygmmRNc/PCJrvkLn0+BWWxmbOmOcMMJDSmSI+WRlT8jd5VPZFxIi4wg+sAt5yBXAK0g==} engines: {node: '>=18.18'} - metro-core@0.82.3: - resolution: {integrity: sha512-JQZDdXo3hyLl1pqVT4IKEwcBK+3f11qFXeCjQ1hjVpjMwQLOqSM02J7NC/4DNSBt+qWBxWj6R5Jphcc7+9AEWw==} + metro-core@0.82.4: + resolution: {integrity: sha512-Xo4ozbxPg2vfgJGCgXZ8sVhC2M0lhTqD+tsKO2q9aelq/dCjnnSb26xZKcQO80CQOQUL7e3QWB7pLFGPjZm31A==} engines: {node: '>=18.18'} - metro-file-map@0.82.3: - resolution: {integrity: sha512-o4wtloAge85MZl85F87FT59R/4tn5GvCvLfYcnzzDB20o2YX9AMxZqswrGMaei/GbD/Win5FrLF/Iq8oetcByA==} + metro-file-map@0.82.4: + resolution: {integrity: sha512-eO7HD1O3aeNsbEe6NBZvx1lLJUrxgyATjnDmb7bm4eyF6yWOQot9XVtxTDLNifECuvsZ4jzRiTInrbmIHkTdGA==} engines: {node: '>=18.18'} metro-minify-terser@0.80.12: resolution: {integrity: sha512-muWzUw3y5k+9083ZoX9VaJLWEV2Jcgi+Oan0Mmb/fBNMPqP9xVDuy4pOMn/HOiGndgfh/MK7s4bsjkyLJKMnXQ==} engines: {node: '>=18'} - metro-minify-terser@0.82.3: - resolution: {integrity: sha512-/3FasOULfHq1P0KPNFy5y28Th5oknPSwEbt9JELVBMAPhUnLqQkCLr4M+RQzKG3aEQN1/mEqenWApFCkk6Nm/Q==} + metro-minify-terser@0.82.4: + resolution: {integrity: sha512-W79Mi6BUwWVaM8Mc5XepcqkG+TSsCyyo//dmTsgYfJcsmReQorRFodil3bbJInETvjzdnS1mCsUo9pllNjT1Hg==} engines: {node: '>=18.18'} - metro-resolver@0.82.3: - resolution: {integrity: sha512-pdib7UrOM04j/RjWmaqmjjWRiuCbpA8BdUSuXzvBaK0QlNzHkRRDv6kiOGxgQ+UgG+KdbPcJktsW9olqiDhf9w==} + metro-resolver@0.82.4: + resolution: {integrity: sha512-uWoHzOBGQTPT5PjippB8rRT3iI9CTgFA9tRiLMzrseA5o7YAlgvfTdY9vFk2qyk3lW3aQfFKWkmqENryPRpu+Q==} engines: {node: '>=18.18'} - metro-runtime@0.82.3: - resolution: {integrity: sha512-J4SrUUsBy9ire8I2sFuXN5MzPmuBHlx1bjvAjdoo1ecpH2mtS3ubRqVnMotBxuK5+GhrbW0mtg5/46PVXy26cw==} + metro-runtime@0.82.4: + resolution: {integrity: sha512-vVyFO7H+eLXRV2E7YAUYA7aMGBECGagqxmFvC2hmErS7oq90BbPVENfAHbUWq1vWH+MRiivoRxdxlN8gBoF/dw==} engines: {node: '>=18.18'} - metro-source-map@0.82.3: - resolution: {integrity: sha512-gz7wfjz23rit6ePQ7NKE9x+VOWGKm54vli4wbphR9W+3y0bh6Ad7T0BGH9DUzRAnOnOorewrVEqFmT24mia5sg==} + metro-source-map@0.82.4: + resolution: {integrity: sha512-9jzDQJ0FPas1FuQFtwmBHsez2BfhFNufMowbOMeG3ZaFvzeziE8A0aJwILDS3U+V5039ssCQFiQeqDgENWvquA==} engines: {node: '>=18.18'} - metro-symbolicate@0.82.3: - resolution: {integrity: sha512-WZKhR+QGbwkOLWP1z58Y7BFWUqLVDEEPsSQ5UI5+OWQDAwdtsPU9+sSNoJtD5qRU9qrB2XewQE3lJ2EQRRFJew==} + metro-symbolicate@0.82.4: + resolution: {integrity: sha512-LwEwAtdsx7z8rYjxjpLWxuFa2U0J6TS6ljlQM4WAATKa4uzV8unmnRuN2iNBWTmRqgNR77mzmI2vhwD4QSCo+w==} engines: {node: '>=18.18'} hasBin: true - metro-transform-plugins@0.82.3: - resolution: {integrity: sha512-s1gVrkhczwMbxZLRSLCJ16K/4Sqx5IhO4sWlL6j0jlIEs1/Drn3JrkUUdQTtgmJS8SBpxmmB66cw7wnz751dVg==} + metro-transform-plugins@0.82.4: + resolution: {integrity: sha512-NoWQRPHupVpnDgYguiEcm7YwDhnqW02iWWQjO2O8NsNP09rEMSq99nPjARWfukN7+KDh6YjLvTIN20mj3dk9kw==} engines: {node: '>=18.18'} - metro-transform-worker@0.82.3: - resolution: {integrity: sha512-z5Y7nYlSlLAEhjFi73uEJh69G5IC6HFZmXFcrxnY+JNlsjT2r0GgsDF4WaQGtarAIt5NP88V8983/PedwNfEcw==} + metro-transform-worker@0.82.4: + resolution: {integrity: sha512-kPI7Ad/tdAnI9PY4T+2H0cdgGeSWWdiPRKuytI806UcN4VhFL6OmYa19/4abYVYF+Cd2jo57CDuwbaxRfmXDhw==} engines: {node: '>=18.18'} - metro@0.82.3: - resolution: {integrity: sha512-EfSLtuUmfsGk3znJ+zoN8cRLniQo3W1wyA+nJMfpTLdENfbbPnGRTwmKhzRcJIUh9jgkrrF4oRQ5shLtQ2DsUw==} + metro@0.82.4: + resolution: {integrity: sha512-/gFmw3ux9CPG5WUmygY35hpyno28zi/7OUn6+OFfbweA8l0B+PPqXXLr0/T6cf5nclCcH0d22o+02fICaShVxw==} engines: {node: '>=18.18'} hasBin: true @@ -9200,22 +9163,10 @@ packages: minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} - minipass@3.3.6: - resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==} - engines: {node: '>=8'} - - minipass@5.0.0: - resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} - engines: {node: '>=8'} - minipass@7.1.2: resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} engines: {node: '>=16 || 14 >=14.17'} - minizlib@2.1.2: - resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} - engines: {node: '>= 8'} - minizlib@3.0.2: resolution: {integrity: sha512-oG62iEk+CYt5Xj2YqI5Xi9xWUeZhDI8jjQmC5oThVH5JGCTgIjr7ciJDzC7MBzYd//WvR1OTmP5Q38Q8ShQtVA==} engines: {node: '>= 18'} @@ -9243,9 +9194,9 @@ packages: mnemonic-id@3.2.7: resolution: {integrity: sha512-kysx9gAGbvrzuFYxKkcRjnsg/NK61ovJOV4F1cHTRl9T5leg+bo6WI0pWIvOFh1Z/yDL0cjA5R3EEGPPLDv/XA==} - module-definition@5.0.1: - resolution: {integrity: sha512-kvw3B4G19IXk+BOXnYq/D/VeO9qfHaapMeuS7w7sNUqmGaA6hywdFHMi+VWeR9wUScXM7XjoryTffCZ5B0/8IA==} - engines: {node: '>=14'} + module-definition@6.0.1: + resolution: {integrity: sha512-FeVc50FTfVVQnolk/WQT8MX+2WVcDnTGiq6Wo+/+lJ2ET1bRVi3HG3YlJUfqagNMc/kUlFSoR96AJkxGpKz13g==} + engines: {node: '>=18'} hasBin: true moment@2.30.1: @@ -9266,8 +9217,8 @@ packages: resolution: {integrity: sha512-P0efT1C9jIdVRefqjzOQ9Xml57zpOXnIuS+csaB4MdZbTdmGDLo8XhzBG1N7aO11gKDDkJvBLULeFTo46wwreA==} hasBin: true - msgpackr@1.11.2: - resolution: {integrity: sha512-F9UngXRlPyWCDEASDpTf6c9uNhGPTqnTeLVt7bN+bU1eajoR/8V9ys2BRaV5C/e5ihE6sJ9uPIKaYt6bFuO32g==} + msgpackr@1.11.4: + resolution: {integrity: sha512-uaff7RG9VIC4jacFW9xzL3jc0iM32DNHe4jYVycBcjUePT/Klnfj7pqtWJt9khvDFizmjN2TlYniYmSS2LIaZg==} msgpackr@1.8.5: resolution: {integrity: sha512-mpPs3qqTug6ahbblkThoUY2DQdNXcm4IapwOS3Vm/87vmpzLVelvp9h3It1y9l1VPpiFLV11vfOXnmeEwiIXwg==} @@ -9312,9 +9263,6 @@ packages: nested-error-stacks@2.0.1: resolution: {integrity: sha512-SrQrok4CATudVzBS7coSz26QRSmlK9TzzoFbeKfcPBUFPjcQM9Rqvr/DlJkOrwI/0KcgvMub1n1g5Jt9EgRn4A==} - nested-error-stacks@2.1.1: - resolution: {integrity: sha512-9iN1ka/9zmX1ZvLV9ewJYEk9h7RyRRtqdK0woXcqohu8EWIerfPUjYJPg0ULy0UqP7cslmdGc8xKDJcojlKiaw==} - netlify@13.3.5: resolution: {integrity: sha512-Nc3loyVASW59W+8fLDZT1lncpG7llffyZ2o0UQLx/Fr20i7P8oP+lE7+TEcFvXj9IUWU6LjB9P3BH+iFGyp+mg==} engines: {node: ^14.16.0 || >=16.0.0} @@ -9343,8 +9291,8 @@ packages: next-tick@1.1.0: resolution: {integrity: sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==} - next@14.2.28: - resolution: {integrity: sha512-QLEIP/kYXynIxtcKB6vNjtWLVs3Y4Sb+EClTC/CSVzdLD1gIuItccpu/n1lhmduffI32iPGEK2cLLxxt28qgYA==} + next@14.2.29: + resolution: {integrity: sha512-s98mCOMOWLGGpGOfgKSnleXLuegvvH415qtRZXpSp00HeEgdmrxmwL9cgKU+h4XrhB16zEI5d/7BnkS3ATInsA==} engines: {node: '>=18.17.0'} hasBin: true peerDependencies: @@ -9361,8 +9309,8 @@ packages: sass: optional: true - nitropack@2.11.11: - resolution: {integrity: sha512-KnWkajf2ZIsjr7PNeENvDRi87UdMrn8dRTe/D/Ak3Ud6sbC7ZCArVGeosoY7WZvsvLBN1YAwm//34Bq4dKkAaw==} + nitropack@2.11.12: + resolution: {integrity: sha512-e2AdQrEY1IVoNTdyjfEQV93xkqz4SQxAMR0xWF8mZUUHxMLm6S4nPzpscjksmT4OdUxl0N8/DCaGjKQ9ghdodA==} engines: {node: ^16.11.0 || >=17.0.0} hasBin: true peerDependencies: @@ -9448,18 +9396,13 @@ packages: node-releases@2.0.19: resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==} - node-source-walk@6.0.2: - resolution: {integrity: sha512-jn9vOIK/nfqoFCcpK89/VCVaLg1IHE6UVfDOzvqmANaJ/rWCTEdH8RZ1V278nv2jr36BJdyQXIAavBLXpzdlag==} - engines: {node: '>=14'} + node-source-walk@7.0.1: + resolution: {integrity: sha512-3VW/8JpPqPvnJvseXowjZcirPisssnBuDikk6JIZ8jQzF7KJQX52iPFX4RYYxLycYH7IbMRSPUOga/esVjy5Yg==} + engines: {node: '>=18'} noop-fn@1.0.0: resolution: {integrity: sha512-pQ8vODlgXt2e7A3mIbFDlizkr46r75V+BJxVAyat8Jl7YmI513gG5cfyRL0FedKraoZ+VAouI1h4/IWpus5pcQ==} - nopt@5.0.0: - resolution: {integrity: sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==} - engines: {node: '>=6'} - hasBin: true - nopt@8.1.0: resolution: {integrity: sha512-ieGu42u/Qsa4TFktmaKEwM6MQH0pOWnaB3htzh0JRtx84+Mebc0cbZYN5bC+6WTZ4+77xrL9Pn5m7CV6VIkV7A==} engines: {node: ^18.17.0 || >=20.5.0} @@ -9501,10 +9444,6 @@ packages: resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - npmlog@5.0.1: - resolution: {integrity: sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==} - deprecated: This package is no longer supported. - nth-check@2.1.1: resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==} @@ -9522,8 +9461,8 @@ packages: oauth4webapi@3.5.1: resolution: {integrity: sha512-txg/jZQwcbaF7PMJgY7aoxc9QuCxHVFMiEkDIJ60DwDz3PbtXPQnrzo+3X4IRYGChIwWLabRBRpf1k9hO9+xrQ==} - ob1@0.82.3: - resolution: {integrity: sha512-8/SeymYlPMVODpCATHqm+X8eiuvD1GsKVa11n688V4GGgjrM3CRvrbtrYBs4t89LJDkv5CwGYPdqayuY0DmTTA==} + ob1@0.82.4: + resolution: {integrity: sha512-n9S8e4l5TvkrequEAMDidl4yXesruWTNTzVkeaHSGywoTOIwTzZzKw7Z670H3eaXDZui5MJXjWGNzYowVZIxCA==} engines: {node: '>=18.18'} object-assign@4.1.1: @@ -9648,9 +9587,9 @@ packages: resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==} engines: {node: '>=12.20'} - p-event@5.0.1: - resolution: {integrity: sha512-dd589iCQ7m1L0bmC5NLlVYfy3TbBEsMUfWx9PyAgPeIcFZ/E2yaTZ4Rz4MiBmmJShviiftHVXOqfnfzJ6kyMrQ==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} + p-event@6.0.1: + resolution: {integrity: sha512-Q6Bekk5wpzW5qIyUP4gdMEujObYstZl6DMMOSenwBvV0BlE5LkDwkjs5yHbZmdCEq2o4RJx4tE1vwxFVf2FG1w==} + engines: {node: '>=16.17'} p-limit@2.3.0: resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==} @@ -9684,10 +9623,6 @@ packages: resolution: {integrity: sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==} engines: {node: '>=18'} - p-timeout@5.1.0: - resolution: {integrity: sha512-auFDyzzzGZZZdHz3BtET9VEz0SE/uMEAx7uWfGPucfzEwwe/xH0iVeZibQmANYE/hp9T2+UUZT5m+BKyrDp3Ew==} - engines: {node: '>=12'} - p-timeout@6.1.4: resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==} engines: {node: '>=14.16'} @@ -10006,9 +9941,9 @@ packages: engines: {node: '>=10'} hasBin: true - precinct@11.0.5: - resolution: {integrity: sha512-oHSWLC8cL/0znFhvln26D14KfCQFFn4KOLSw6hmLhd+LQ2SKt9Ljm89but76Pc7flM9Ty1TnXyrA2u16MfRV3w==} - engines: {node: ^14.14.0 || >=16.0.0} + precinct@12.2.0: + resolution: {integrity: sha512-NFBMuwIfaJ4SocE9YXPU/n4AcNSoFMVFjP72nvl3cx69j/ke61/hPOWFREVxLkFhhEGnA8ZuVfTqJBa+PK3b5w==} + engines: {node: '>=18'} hasBin: true prelude-ls@1.2.1: @@ -10217,8 +10152,8 @@ packages: peerDependencies: react: '>=17.0.0' - react-hook-form@7.56.3: - resolution: {integrity: sha512-IK18V6GVbab4TAo1/cz3kqajxbDPGofdF0w7VHdCo0Nt8PrPlOZcuuDq9YYIV1BtjcX78x0XsldbQRQnQXWXmw==} + react-hook-form@7.56.4: + resolution: {integrity: sha512-Rob7Ftz2vyZ/ZGsQZPaRdIefkgOSrQSPXfqBdvOPwJfoGnjwRJUs7EM7Kc1mcoDv3NOtqBzPGbcMB8CGn9CKgw==} engines: {node: '>=18.0.0'} peerDependencies: react: ^16.8.0 || ^17 || ^18 || ^19 @@ -10287,8 +10222,8 @@ packages: react: '*' react-native: '*' - react-native-safe-area-context@5.4.0: - resolution: {integrity: sha512-JaEThVyJcLhA+vU0NU8bZ0a1ih6GiF4faZ+ArZLqpYbL6j7R3caRqj+mE3lEtKCuHgwjLg3bCxLL1GPUJZVqUA==} + react-native-safe-area-context@5.4.1: + resolution: {integrity: sha512-x+g3NblZ9jof8y+XkVvaGlpMrSlixhrJJ33BRzhTAKUKctQVecO1heSXmzxc5UdjvGYBKS6kPZVUw2b8NxHcPg==} peerDependencies: react: '*' react-native: '*' @@ -10369,8 +10304,8 @@ packages: '@types/react': optional: true - react-remove-scroll@2.6.3: - resolution: {integrity: sha512-pnAi91oOk8g8ABQKGF5/M9qxmmOPxaAnopyTHYfqYEwJhyFrbbBtHuSgtKEoH0jpcxx5o3hXqH1mNd9/Oi+8iQ==} + react-remove-scroll@2.7.0: + resolution: {integrity: sha512-sGsQtcjMqdQyijAHytfGEELB8FufGbfXIsvUTe+NLx1GDRJCXtCFLBLUI1eyZCKXXvbEU2C6gai0PZKoIE9Vbg==} engines: {node: '>=10'} peerDependencies: '@types/react': '*' @@ -10595,8 +10530,8 @@ packages: engines: {node: '>=14.18.0', npm: '>=8.0.0'} hasBin: true - rollup@4.40.2: - resolution: {integrity: sha512-tfUOg6DTP4rhQ3VjOO6B4wyrJnGOX85requAXvqYTHsOgb2TFJdZ3aWpT8W2kPoypSGP7dZUyzxJ9ee4buM5Fg==} + rollup@4.41.0: + resolution: {integrity: sha512-HqMFpUbWlf/tvcxBFNKnJyzc7Lk+XO3FGc3pbNBLqEbOz0gPLRgcrlS3UF4MfUrVlstOaP/q0kM6GVvi+LrLRg==} engines: {node: '>=18.0.0', npm: '>=8.0.0'} hasBin: true @@ -10646,8 +10581,8 @@ packages: safer-buffer@2.1.2: resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} - sass@1.88.0: - resolution: {integrity: sha512-sF6TWQqjFvr4JILXzG4ucGOLELkESHL+I5QJhh7CNaE+Yge0SI+ehCatsXhJ7ymU1hAFcIS3/PBpjdIbXoyVbg==} + sass@1.89.0: + resolution: {integrity: sha512-ld+kQU8YTdGNjOLfRWBzewJpU5cwEv/h5yyqlSeJcj6Yh8U4TDA9UA5FPicqDz/xgRPWRSYIQNiFks21TbA9KQ==} engines: {node: '>=14.0.0'} hasBin: true @@ -10689,8 +10624,8 @@ packages: engines: {node: '>=10'} hasBin: true - semver@7.7.1: - resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==} + semver@7.7.2: + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} engines: {node: '>=10'} hasBin: true @@ -10730,9 +10665,6 @@ packages: server-only@0.0.1: resolution: {integrity: sha512-qepMx2JxAa5jjfzxG79yPPq+8BuFToHd1hm7kI+Z4zAq1ftQiP7HcxMhDDItrbtwVeLg/cY2JnKnrcFkmiswNA==} - set-blocking@2.0.0: - resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} - set-function-length@1.2.2: resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} engines: {node: '>= 0.4'} @@ -11126,23 +11058,23 @@ packages: engines: {node: '>=14.0.0'} hasBin: true - tamagui-loader@1.126.12: - resolution: {integrity: sha512-80r7L35Hic7CeMwMLLjBz2a9YCejXDbnPguqrcWXCwL0DFonxQhH/p9MD0HFXDaHV4yrJeM3A6Yne8o3tpusiw==} + tamagui-loader@1.126.13: + resolution: {integrity: sha512-G7irwVprnLP4603ByBwujywlLnjLfClsk4bUXvnHxgYCweQ+X1MxguHxSqs+3IjCa50TWUSZL5AEXetEme/Hew==} - tamagui@1.126.12: - resolution: {integrity: sha512-+V8qEG7WQFIx4yFoq+8s39Wtuq6d+edFeA0AsQhBnyI4HfGw78zqTAWDfh9oVLchyOk8NdAmJhHwAj60LglClQ==} + tamagui@1.126.13: + resolution: {integrity: sha512-JSWvzVhjYuFyyF6tcTPIywUdJ0TdFlHq15sFhv/lg4Cnfg5oRcMQEl59y3/irB+lgWHRIaM44aVysf92p28S7g==} peerDependencies: react: '*' - tapable@2.2.1: - resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==} + tapable@2.2.2: + resolution: {integrity: sha512-Re10+NauLTMCudc7T5WLFLAwDhQ0JWdrMK+9B2M8zR5hRExKmsRDCBA7/aV/pNJFltmBFO5BAMlQFi/vq3nKOg==} engines: {node: '>=6'} - tar-fs@2.1.2: - resolution: {integrity: sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==} + tar-fs@2.1.3: + resolution: {integrity: sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==} - tar-fs@3.0.8: - resolution: {integrity: sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==} + tar-fs@3.0.9: + resolution: {integrity: sha512-XF4w9Xp+ZQgifKakjZYmFdkLoSWd34VGKcsTCwlNWM7QG3ZbaxnTsaBwnjFZqHRf/rROxaR8rXnbtwdvaDI+lA==} tar-stream@2.2.0: resolution: {integrity: sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==} @@ -11151,10 +11083,6 @@ packages: tar-stream@3.1.7: resolution: {integrity: sha512-qJj60CXt7IU1Ffyc3NJMjh6EkuCFej46zUqJ4J7pqYlThyd9bO0XBTmcOIhSzZJVWfsLks0+nle/j538YAW9RQ==} - tar@6.2.1: - resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==} - engines: {node: '>=10'} - tar@7.4.3: resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==} engines: {node: '>=18'} @@ -11191,8 +11119,8 @@ packages: uglify-js: optional: true - terser@5.39.0: - resolution: {integrity: sha512-LBAhFyLho16harJoWMg/nZsQYgTrg5jXOn2nCYjRUcZZEdE3qa2zb8QEDRUGVZBW4rlazf2fxkg8tztybTaqWw==} + terser@5.39.2: + resolution: {integrity: sha512-yEPUmWve+VA78bI71BW70Dh0TuV4HHd+I5SHOAfS1+QBOmvmCiiffgjR8ryyEd3KIfvPGFqoADt8LdQ6XpXIvg==} engines: {node: '>=10'} hasBin: true @@ -11293,6 +11221,12 @@ packages: peerDependencies: typescript: '>=4.2.0' + ts-api-utils@2.1.0: + resolution: {integrity: sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==} + engines: {node: '>=18.12'} + peerDependencies: + typescript: '>=4.8.4' + ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} @@ -11338,12 +11272,6 @@ packages: typescript: optional: true - tsutils@3.21.0: - resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} - engines: {node: '>= 6'} - peerDependencies: - typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' - tsx@4.19.4: resolution: {integrity: sha512-gK5GVzDkJK1SI1zwHf32Mqxf2tSJkNx+eYcNly5+nHvWqXUJYUkWBQtKauoESz3ymezAI++ZwT855x5p5eop+Q==} engines: {node: '>=18.0.0'} @@ -11479,16 +11407,16 @@ packages: undici-types@6.19.8: resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==} - undici@6.21.2: - resolution: {integrity: sha512-uROZWze0R0itiAKVPsYhFov9LxrPMHLMEQFszeI2gCN6bnIIZ8twzBCJcN2LJrBBLfrP0t1FW0g+JmKVl8Vk1g==} + undici@6.21.3: + resolution: {integrity: sha512-gBLkYIlEnSp8pFbT64yFgGE6UIB9tAkhukC23PmMDCe5Nd+cRqKxSjw5y54MK2AZMgZfJWMaNE4nYUHgi1XEOw==} engines: {node: '>=18.17'} - undici@7.9.0: - resolution: {integrity: sha512-e696y354tf5cFZPXsF26Yg+5M63+5H3oE6Vtkh2oqbvsE2Oe7s2nIbcQh5lmG7Lp/eS29vJtTpw9+p6PX0qNSg==} + undici@7.10.0: + resolution: {integrity: sha512-u5otvFBOBZvmdjWLVW+5DAc9Nkq8f24g0O9oY7qw2JVIF1VocIFoyz9JFkuVOS2j41AufeO0xnlweJ2RLT8nGw==} engines: {node: '>=20.18.1'} - unenv@2.0.0-rc.15: - resolution: {integrity: sha512-J/rEIZU8w6FOfLNz/hNKsnY+fFHWnu9MH4yRbSZF3xbbGHovcetXPs7sD+9p8L6CeNC//I9bhRYAOsBt2u7/OA==} + unenv@2.0.0-rc.17: + resolution: {integrity: sha512-B06u0wXkEd+o5gOCMl/ZHl5cfpYbDZKAT+HWTL+Hws6jWu7dCiqBBXXXzMFcFVJb8D4ytAnYmxJA83uwOQRSsg==} unicode-canonical-property-names-ecmascript@2.0.1: resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==} @@ -11549,8 +11477,8 @@ packages: resolution: {integrity: sha512-4/u/j4FrCKdi17jaxuJA0jClGxB1AvU2hw/IuayPc4ay1XGaJs/rbb4v5WKwAjNifjmXK9PIFyuPiaK8azyR9w==} engines: {node: '>=14.0.0'} - unplugin@2.3.2: - resolution: {integrity: sha512-3n7YA46rROb3zSj8fFxtxC/PqoyvYQ0llwz9wtUPUutr9ig09C8gGo5CWCwHrUzlqC1LLR43kxp5vEIyH1ac1w==} + unplugin@2.3.4: + resolution: {integrity: sha512-m4PjxTurwpWfpMomp8AptjD5yj8qEZN5uQjjGM3TAs9MWWD2tXSSNNj6jGR2FoVGod4293ytyV6SwBbertfyJg==} engines: {node: '>=18.12.0'} unstorage@1.16.0: @@ -11752,8 +11680,8 @@ packages: warn-once@0.1.1: resolution: {integrity: sha512-VkQZJbO8zVImzYFteBXvBOZEl1qL175WH8VmZcxF2fZAoudNhNDvHi+doCaAEdU2l2vtcIwa2zn0QK5+I1HQ3Q==} - watchpack@2.4.2: - resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==} + watchpack@2.4.4: + resolution: {integrity: sha512-c5EGNOiyxxV5qmTtAB7rbiXxi1ooX1pQKMLX/MIabJjRA0SJBQOjKF+KSVfHkr9U1cADPon0mRiVe/riyaiDUA==} engines: {node: '>=10.13.0'} wcwidth@1.0.1: @@ -11792,8 +11720,8 @@ packages: webpack-virtual-modules@0.6.2: resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==} - webpack@5.99.8: - resolution: {integrity: sha512-lQ3CPiSTpfOnrEGeXDwoq5hIGzSjmwD72GdfVzF7CQAI7t47rJG9eDWvcEkEn3CUQymAElVvDg3YNTlCYj+qUQ==} + webpack@5.99.9: + resolution: {integrity: sha512-brOPwM3JnmOa+7kd3NsmOUOwbDAj8FT9xDsG3IW0MgbN9yZV7Oi/s/+MNQ/EcSMqw7qfoRyXPoeEWT8zLVdVGg==} engines: {node: '>=10.13.0'} hasBin: true peerDependencies: @@ -11836,9 +11764,6 @@ packages: engines: {node: '>= 8'} hasBin: true - wide-align@1.1.5: - resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==} - winston-transport@4.9.0: resolution: {integrity: sha512-8drMJ4rkgaPo1Me4zD/3WLfI/zPdA9o2IipKODunnGDcuqbHwjsbB79ylv04LCGGzU0xQ6vTznOMpQGaLhhm6A==} engines: {node: '>= 12.0.0'} @@ -11958,9 +11883,9 @@ packages: resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==} engines: {node: '>= 6'} - yaml@2.7.1: - resolution: {integrity: sha512-10ULxpnOCQXxJvBgxsn9ptjq6uviG/htZKk9veJGhlqn3w/DxQ631zFF+nlQXLwmImeS5amR2dl2U8sg6U9jsQ==} - engines: {node: '>= 14'} + yaml@2.8.0: + resolution: {integrity: sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==} + engines: {node: '>= 14.6'} hasBin: true yargs-parser@21.1.1: @@ -11997,19 +11922,15 @@ packages: youtube-caption-extractor@1.4.3: resolution: {integrity: sha512-QLvJxen34wAllF7S8HckPl2k54T2GokNZ+xKwcLGG6TCBv+qNcvn9jOK9czFWZRLAlJ3lUENLUWqONtXuO/WLQ==} - zip-stream@4.1.1: - resolution: {integrity: sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==} - engines: {node: '>= 10'} - zip-stream@6.0.1: resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==} engines: {node: '>= 14'} - zod@3.24.4: - resolution: {integrity: sha512-OdqJE9UDRPwWsrHjLN2F8bPxvwJBK22EHLWtanu0LSYr5YqzsaaW3RMgmjwr8Rypg5k+meEJdSPXJZXE/yqOMg==} + zod@3.25.23: + resolution: {integrity: sha512-Od2bdMosahjSrSgJtakrwjMDb1zM1A3VIHCPGveZt/3/wlrTWBya2lmEh2OYe4OIu8mPTmmr0gnLHIWQXdtWBg==} - zustand@4.5.6: - resolution: {integrity: sha512-ibr/n1hBzLLj5Y+yUcU7dYw8p6WnIVzdJbnX+1YpaScvZVF2ziugqHs+LAmHw4lWO9c/zRj+K1ncgWDQuthEdQ==} + zustand@4.5.7: + resolution: {integrity: sha512-CHOUy7mu3lbD6o6LJLfllpjkzhHXSBlX8B9+qPddUsIfeF5S/UZ5q0kmCsnRqT1UHFQZchNFDDzMbQsuesHWlw==} engines: {node: '>=12.7.0'} peerDependencies: '@types/react': '>=16.8' @@ -12097,7 +12018,7 @@ snapshots: '@babel/traverse': 7.27.1 '@babel/types': 7.27.1 convert-source-map: 2.0.0 - debug: 4.4.0 + debug: 4.4.1 gensync: 1.0.0-beta.2 json5: 2.2.3 semver: 6.3.1 @@ -12149,7 +12070,7 @@ snapshots: '@babel/core': 7.27.1 '@babel/helper-compilation-targets': 7.27.2 '@babel/helper-plugin-utils': 7.27.1 - debug: 4.4.0 + debug: 4.4.1 lodash.debounce: 4.0.8 resolve: 1.22.10 transitivePeerDependencies: @@ -12288,6 +12209,12 @@ snapshots: '@babel/core': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-proposal-export-namespace-from@7.18.9(@babel/core@7.27.1)': + dependencies: + '@babel/core': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.27.1) + '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.27.1)': dependencies: '@babel/core': 7.27.1 @@ -12327,6 +12254,11 @@ snapshots: '@babel/core': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.27.1)': + dependencies: + '@babel/core': 7.27.1 + '@babel/helper-plugin-utils': 7.27.1 + '@babel/plugin-syntax-flow@7.27.1(@babel/core@7.27.1)': dependencies: '@babel/core': 7.27.1 @@ -12919,7 +12851,7 @@ snapshots: '@babel/parser': 7.27.2 '@babel/template': 7.27.2 '@babel/types': 7.27.1 - debug: 4.4.0 + debug: 4.4.1 globals: 11.12.0 transitivePeerDependencies: - supports-color @@ -12980,10 +12912,10 @@ snapshots: enabled: 2.0.0 kuler: 2.0.0 - '@dependents/detective-less@4.1.0': + '@dependents/detective-less@5.0.1': dependencies: gonzales-pe: 4.3.0 - node-source-walk: 6.0.2 + node-source-walk: 7.0.1 '@egjs/hammerjs@2.0.17': dependencies: @@ -13005,7 +12937,7 @@ snapshots: '@esbuild-kit/esm-loader@2.6.5': dependencies: '@esbuild-kit/core-utils': 3.3.2 - get-tsconfig: 4.10.0 + get-tsconfig: 4.10.1 '@esbuild/aix-ppc64@0.19.12': optional: true @@ -13296,7 +13228,7 @@ snapshots: '@eslint/eslintrc@2.1.4': dependencies: ajv: 6.12.6 - debug: 4.4.0 + debug: 4.4.1 espree: 9.6.1 globals: 13.24.0 ignore: 5.3.2 @@ -13340,12 +13272,12 @@ snapshots: ci-info: 3.9.0 compression: 1.8.0 connect: 3.7.0 - debug: 4.4.0 + debug: 4.4.1 env-editor: 0.4.2 freeport-async: 2.0.0 getenv: 1.0.0 glob: 10.4.5 - lan-network: 0.1.6 + lan-network: 0.1.7 minimatch: 9.0.5 node-forge: 1.3.1 npm-package-arg: 11.0.3 @@ -13361,7 +13293,7 @@ snapshots: resolve: 1.22.10 resolve-from: 5.0.0 resolve.exports: 2.0.3 - semver: 7.7.1 + semver: 7.7.2 send: 0.19.1 slugify: 1.6.6 source-map-support: 0.5.21 @@ -13369,7 +13301,7 @@ snapshots: structured-headers: 0.4.1 tar: 7.4.3 terminal-link: 2.1.1 - undici: 6.21.2 + undici: 6.21.3 wrap-ansi: 7.0.0 ws: 8.18.2 transitivePeerDependencies: @@ -13390,11 +13322,11 @@ snapshots: '@expo/plist': 0.3.4 '@expo/sdk-runtime-versions': 1.0.0 chalk: 4.1.2 - debug: 4.4.0 + debug: 4.4.1 getenv: 1.0.0 glob: 10.4.5 resolve-from: 5.0.0 - semver: 7.7.1 + semver: 7.7.2 slash: 3.0.0 slugify: 1.6.6 xcode: 3.0.1 @@ -13416,7 +13348,7 @@ snapshots: require-from-string: 2.0.2 resolve-from: 5.0.0 resolve-workspace-root: 2.0.0 - semver: 7.7.1 + semver: 7.7.2 slugify: 1.6.6 sucrase: 3.35.0 transitivePeerDependencies: @@ -13433,7 +13365,7 @@ snapshots: '@expo/env@1.0.5': dependencies: chalk: 4.1.2 - debug: 4.4.0 + debug: 4.4.1 dotenv: 16.4.7 dotenv-expand: 11.0.7 getenv: 1.0.0 @@ -13445,13 +13377,13 @@ snapshots: '@expo/spawn-async': 1.7.2 arg: 5.0.2 chalk: 4.1.2 - debug: 4.4.0 + debug: 4.4.1 find-up: 5.0.0 getenv: 1.0.0 minimatch: 9.0.5 p-limit: 3.1.0 resolve-from: 5.0.0 - semver: 7.7.1 + semver: 7.7.2 transitivePeerDependencies: - supports-color @@ -13463,7 +13395,7 @@ snapshots: jimp-compact: 0.16.1 parse-png: 2.1.0 resolve-from: 5.0.0 - semver: 7.7.1 + semver: 7.7.2 temp-dir: 2.0.0 unique-string: 2.0.0 @@ -13483,7 +13415,7 @@ snapshots: '@expo/json-file': 9.1.4 '@expo/spawn-async': 1.7.2 chalk: 4.1.2 - debug: 4.4.0 + debug: 4.4.1 dotenv: 16.4.7 dotenv-expand: 11.0.7 getenv: 1.0.0 @@ -13496,9 +13428,9 @@ snapshots: transitivePeerDependencies: - supports-color - '@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))': + '@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))': dependencies: - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) '@expo/ngrok-bin-darwin-arm64@2.3.41': optional: true @@ -13582,9 +13514,9 @@ snapshots: '@expo/image-utils': 0.7.4 '@expo/json-file': 9.1.4 '@react-native/normalize-colors': 0.79.2 - debug: 4.4.0 + debug: 4.4.1 resolve-from: 5.0.0 - semver: 7.7.1 + semver: 7.7.2 xml2js: 0.6.0 transitivePeerDependencies: - supports-color @@ -13594,9 +13526,9 @@ snapshots: '@expo/server@0.6.2': dependencies: abort-controller: 3.0.0 - debug: 4.4.0 + debug: 4.4.1 source-map-support: 0.5.21 - undici: 7.9.0 + undici: 7.10.0 transitivePeerDependencies: - supports-color @@ -13606,11 +13538,11 @@ snapshots: '@expo/sudo-prompt@9.3.2': {} - '@expo/vector-icons@14.1.0(expo-font@13.3.1(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@expo/vector-icons@14.1.0(expo-font@13.3.1(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - expo-font: 13.3.1(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0) + expo-font: 13.3.1(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0) react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) '@expo/websql@1.0.1': dependencies: @@ -13652,11 +13584,11 @@ snapshots: react: 19.0.0 react-dom: 19.0.0(react@19.0.0) - '@floating-ui/react-native@0.10.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@floating-ui/react-native@0.10.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: '@floating-ui/core': 1.7.0 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) '@floating-ui/react@0.27.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: @@ -13670,27 +13602,27 @@ snapshots: '@formkit/auto-animate@0.8.2': {} - '@gorhom/bottom-sheet@5.1.4(@types/react@19.1.3)(react-native-gesture-handler@2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@gorhom/bottom-sheet@5.1.4(@types/react@19.1.5)(react-native-gesture-handler@2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@gorhom/portal': 1.0.14(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@gorhom/portal': 1.0.14(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) invariant: 2.2.4 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) - react-native-gesture-handler: 2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - react-native-reanimated: 3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) + react-native-gesture-handler: 2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + react-native-reanimated: 3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@gorhom/portal@1.0.14(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@gorhom/portal@1.0.14(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: nanoid: 3.3.11 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) '@humanwhocodes/config-array@0.13.0': dependencies: '@humanwhocodes/object-schema': 2.0.3 - debug: 4.4.0 + debug: 4.4.1 minimatch: 3.1.2 transitivePeerDependencies: - supports-color @@ -13699,16 +13631,16 @@ snapshots: '@humanwhocodes/object-schema@2.0.3': {} - '@ianvs/prettier-plugin-sort-imports@4.4.1(@vue/compiler-sfc@3.3.4)(prettier@3.5.3)': + '@ianvs/prettier-plugin-sort-imports@4.4.1(@vue/compiler-sfc@3.5.14)(prettier@3.5.3)': dependencies: '@babel/generator': 7.27.1 '@babel/parser': 7.27.2 '@babel/traverse': 7.27.1 '@babel/types': 7.27.1 prettier: 3.5.3 - semver: 7.7.1 + semver: 7.7.2 optionalDependencies: - '@vue/compiler-sfc': 3.3.4 + '@vue/compiler-sfc': 3.5.14 transitivePeerDependencies: - supports-color @@ -13749,14 +13681,14 @@ snapshots: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.17.46 + '@types/node': 20.17.50 jest-mock: 29.7.0 '@jest/fake-timers@29.7.0': dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 20.17.46 + '@types/node': 20.17.50 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -13790,7 +13722,7 @@ snapshots: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 20.17.46 + '@types/node': 20.17.50 '@types/yargs': 17.0.33 chalk: 4.1.2 @@ -13935,21 +13867,6 @@ snapshots: '@lmdb/lmdb-win32-x64@2.7.11': optional: true - '@mapbox/node-pre-gyp@1.0.11': - dependencies: - detect-libc: 2.0.4 - https-proxy-agent: 5.0.1 - make-dir: 3.1.0 - node-fetch: 2.7.0 - nopt: 5.0.0 - npmlog: 5.0.1 - rimraf: 3.0.2 - semver: 7.7.1 - tar: 6.2.1 - transitivePeerDependencies: - - encoding - - supports-color - '@mapbox/node-pre-gyp@2.0.0': dependencies: consola: 3.4.2 @@ -13957,21 +13874,21 @@ snapshots: https-proxy-agent: 7.0.6 node-fetch: 2.7.0 nopt: 8.1.0 - semver: 7.7.1 + semver: 7.7.2 tar: 7.4.3 transitivePeerDependencies: - encoding - supports-color - '@million/lint@0.0.73(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(rollup@4.40.2)': + '@million/lint@0.0.73(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(rollup@4.41.0)': dependencies: '@babel/core': 7.27.1 '@babel/helper-module-imports': 7.27.1 '@babel/types': 7.27.1 - '@radix-ui/react-dialog': 1.1.13(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-tooltip': 1.2.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@rollup/pluginutils': 5.1.4(rollup@4.40.2) - cmdk: 0.2.1(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-dialog': 1.1.14(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-tooltip': 1.2.7(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@rollup/pluginutils': 5.1.4(rollup@4.41.0) + cmdk: 0.2.1(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) esbuild: 0.20.2 escalade: 3.2.0 isomorphic-fetch: 3.0.0 @@ -13981,7 +13898,7 @@ snapshots: react-draggable: 4.4.6(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react-reconciler: 0.29.2(react@18.3.1) unplugin: 1.16.1 - zustand: 4.5.6(@types/react@19.1.3)(react@18.3.1) + zustand: 4.5.7(@types/react@19.1.5)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@types/react-dom' @@ -14060,12 +13977,12 @@ snapshots: '@netlify/binary-info@1.0.0': {} - '@netlify/blobs@9.1.1': + '@netlify/blobs@9.1.2': dependencies: - '@netlify/dev-utils': 2.1.1 + '@netlify/dev-utils': 2.2.0 '@netlify/runtime-utils': 1.3.1 - '@netlify/dev-utils@2.1.1': + '@netlify/dev-utils@2.2.0': dependencies: '@whatwg-node/server': 0.9.71 chokidar: 4.0.3 @@ -14079,12 +13996,12 @@ snapshots: uuid: 11.1.0 write-file-atomic: 6.0.0 - '@netlify/functions@3.1.8(rollup@4.40.2)': + '@netlify/functions@3.1.9(rollup@4.41.0)': dependencies: - '@netlify/blobs': 9.1.1 - '@netlify/dev-utils': 2.1.1 - '@netlify/serverless-functions-api': 1.41.1 - '@netlify/zip-it-and-ship-it': 10.1.1(rollup@4.40.2) + '@netlify/blobs': 9.1.2 + '@netlify/dev-utils': 2.2.0 + '@netlify/serverless-functions-api': 1.41.2 + '@netlify/zip-it-and-ship-it': 12.1.0(rollup@4.41.0) cron-parser: 4.9.0 decache: 4.6.2 extract-zip: 2.0.1 @@ -14102,24 +14019,24 @@ snapshots: '@netlify/runtime-utils@1.3.1': {} - '@netlify/serverless-functions-api@1.41.1': {} + '@netlify/serverless-functions-api@1.41.2': {} - '@netlify/zip-it-and-ship-it@10.1.1(rollup@4.40.2)': + '@netlify/zip-it-and-ship-it@12.1.0(rollup@4.41.0)': dependencies: '@babel/parser': 7.27.2 '@babel/types': 7.27.1 '@netlify/binary-info': 1.0.0 - '@netlify/serverless-functions-api': 1.41.1 - '@vercel/nft': 0.27.7(rollup@4.40.2) - archiver: 5.3.2 + '@netlify/serverless-functions-api': 1.41.2 + '@vercel/nft': 0.29.3(rollup@4.41.0) + archiver: 7.0.1 common-path-prefix: 3.0.0 - cp-file: 10.0.0 + copy-file: 11.0.0 es-module-lexer: 1.7.0 esbuild: 0.25.4 - execa: 7.2.0 + execa: 8.0.1 fast-glob: 3.3.3 - filter-obj: 5.1.0 - find-up: 6.3.0 + filter-obj: 6.1.0 + find-up: 7.0.0 glob: 8.1.0 is-builtin-module: 3.2.1 is-path-inside: 4.0.0 @@ -14130,52 +14047,52 @@ snapshots: normalize-path: 3.0.0 p-map: 7.0.3 path-exists: 5.0.0 - precinct: 11.0.5 + precinct: 12.2.0 require-package-name: 2.0.1 resolve: 2.0.0-next.5 - semver: 7.7.1 + semver: 7.7.2 tmp-promise: 3.0.3 toml: 3.0.0 unixify: 1.0.0 urlpattern-polyfill: 8.0.2 yargs: 17.7.2 - zod: 3.24.4 + zod: 3.25.23 transitivePeerDependencies: - encoding - rollup - supports-color - '@next/env@14.2.28': {} + '@next/env@14.2.29': {} - '@next/eslint-plugin-next@14.2.28': + '@next/eslint-plugin-next@14.2.29': dependencies: glob: 10.3.10 - '@next/swc-darwin-arm64@14.2.28': + '@next/swc-darwin-arm64@14.2.29': optional: true - '@next/swc-darwin-x64@14.2.28': + '@next/swc-darwin-x64@14.2.29': optional: true - '@next/swc-linux-arm64-gnu@14.2.28': + '@next/swc-linux-arm64-gnu@14.2.29': optional: true - '@next/swc-linux-arm64-musl@14.2.28': + '@next/swc-linux-arm64-musl@14.2.29': optional: true - '@next/swc-linux-x64-gnu@14.2.28': + '@next/swc-linux-x64-gnu@14.2.29': optional: true - '@next/swc-linux-x64-musl@14.2.28': + '@next/swc-linux-x64-musl@14.2.29': optional: true - '@next/swc-win32-arm64-msvc@14.2.28': + '@next/swc-win32-arm64-msvc@14.2.29': optional: true - '@next/swc-win32-ia32-msvc@14.2.28': + '@next/swc-win32-ia32-msvc@14.2.29': optional: true - '@next/swc-win32-x64-msvc@14.2.28': + '@next/swc-win32-x64-msvc@14.2.29': optional: true '@nodelib/fs.scandir@2.1.5': @@ -14259,14 +14176,14 @@ snapshots: transitivePeerDependencies: - '@parcel/core' - '@parcel/config-default@2.9.3(@parcel/core@2.9.3)(@swc/helpers@0.5.17)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.0)(typescript@5.2.2)': + '@parcel/config-default@2.9.3(@parcel/core@2.9.3)(@swc/helpers@0.5.17)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.2)(typescript@5.2.2)': dependencies: '@parcel/bundler-default': 2.9.3(@parcel/core@2.9.3) '@parcel/compressor-raw': 2.9.3(@parcel/core@2.9.3) '@parcel/core': 2.9.3 '@parcel/namer-default': 2.9.3(@parcel/core@2.9.3) '@parcel/optimizer-css': 2.9.3(@parcel/core@2.9.3) - '@parcel/optimizer-htmlnano': 2.9.3(@parcel/core@2.9.3)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.0)(typescript@5.2.2) + '@parcel/optimizer-htmlnano': 2.9.3(@parcel/core@2.9.3)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.2)(typescript@5.2.2) '@parcel/optimizer-image': 2.9.3(@parcel/core@2.9.3) '@parcel/optimizer-svgo': 2.9.3(@parcel/core@2.9.3) '@parcel/optimizer-swc': 2.9.3(@parcel/core@2.9.3)(@swc/helpers@0.5.17) @@ -14327,7 +14244,7 @@ snapshots: dotenv: 7.0.0 dotenv-expand: 5.1.0 json5: 2.2.3 - msgpackr: 1.11.2 + msgpackr: 1.11.4 nullthrows: 1.1.1 semver: 7.5.4 @@ -14426,7 +14343,7 @@ snapshots: '@parcel/source-map': 2.1.1 '@parcel/utils': 2.9.3 browserslist: 4.24.5 - lightningcss: 1.30.0 + lightningcss: 1.30.1 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' @@ -14440,10 +14357,10 @@ snapshots: transitivePeerDependencies: - '@parcel/core' - '@parcel/optimizer-htmlnano@2.9.3(@parcel/core@2.9.3)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.0)(typescript@5.2.2)': + '@parcel/optimizer-htmlnano@2.9.3(@parcel/core@2.9.3)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.2)(typescript@5.2.2)': dependencies: '@parcel/plugin': 2.9.3(@parcel/core@2.9.3) - htmlnano: 2.1.2(postcss@8.5.3)(relateurl@0.2.7)(svgo@2.8.0)(terser@5.39.0)(typescript@5.2.2) + htmlnano: 2.1.2(postcss@8.5.3)(relateurl@0.2.7)(svgo@2.8.0)(terser@5.39.2)(typescript@5.2.2) nullthrows: 1.1.1 posthtml: 0.16.6 svgo: 2.8.0 @@ -14481,7 +14398,7 @@ snapshots: '@parcel/plugin': 2.9.3(@parcel/core@2.9.3) '@parcel/source-map': 2.1.1 '@parcel/utils': 2.9.3 - '@swc/core': 1.11.24(@swc/helpers@0.5.17) + '@swc/core': 1.11.29(@swc/helpers@0.5.17) nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' @@ -14660,7 +14577,7 @@ snapshots: '@parcel/source-map': 2.1.1 '@parcel/utils': 2.9.3 browserslist: 4.24.5 - lightningcss: 1.30.0 + lightningcss: 1.30.1 nullthrows: 1.1.1 transitivePeerDependencies: - '@parcel/core' @@ -14773,7 +14690,7 @@ snapshots: dependencies: '@parcel/plugin': 2.9.3(@parcel/core@2.9.3) '@parcel/source-map': 2.1.1 - sass: 1.88.0 + sass: 1.89.0 transitivePeerDependencies: - '@parcel/core' @@ -15014,10 +14931,10 @@ snapshots: transitivePeerDependencies: - '@parcel/core' - '@plasmohq/parcel-config@0.40.8(@swc/core@1.11.24(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(handlebars@4.7.8)(lodash@4.17.21)(postcss@8.5.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(relateurl@0.2.7)(terser@5.39.0)(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3))(typescript@5.2.2)': + '@plasmohq/parcel-config@0.40.8(@swc/core@1.11.29(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(handlebars@4.7.8)(lodash@4.17.21)(postcss@8.5.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(relateurl@0.2.7)(terser@5.39.2)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3))(typescript@5.2.2)': dependencies: '@parcel/compressor-raw': 2.9.3(@parcel/core@2.9.3) - '@parcel/config-default': 2.9.3(@parcel/core@2.9.3)(@swc/helpers@0.5.17)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.0)(typescript@5.2.2) + '@parcel/config-default': 2.9.3(@parcel/core@2.9.3)(@swc/helpers@0.5.17)(postcss@8.5.3)(relateurl@0.2.7)(terser@5.39.2)(typescript@5.2.2) '@parcel/core': 2.9.3 '@parcel/optimizer-data-url': 2.9.3(@parcel/core@2.9.3) '@parcel/reporter-bundle-buddy': 2.9.3(@parcel/core@2.9.3) @@ -15044,7 +14961,7 @@ snapshots: '@plasmohq/parcel-optimizer-es': 0.4.0(@swc/helpers@0.5.17) '@plasmohq/parcel-packager': 0.6.14 '@plasmohq/parcel-resolver': 0.14.0 - '@plasmohq/parcel-resolver-post': 0.4.4(@swc/core@1.11.24(@swc/helpers@0.5.17))(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)) + '@plasmohq/parcel-resolver-post': 0.4.4(@swc/core@1.11.29(@swc/helpers@0.5.17))(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)) '@plasmohq/parcel-runtime': 0.23.1 '@plasmohq/parcel-transformer-inject-env': 0.2.11 '@plasmohq/parcel-transformer-inline-css': 0.3.11 @@ -15164,14 +15081,14 @@ snapshots: '@parcel/utils': 2.9.3 nullthrows: 1.1.1 - '@plasmohq/parcel-resolver-post@0.4.4(@swc/core@1.11.24(@swc/helpers@0.5.17))(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3))': + '@plasmohq/parcel-resolver-post@0.4.4(@swc/core@1.11.29(@swc/helpers@0.5.17))(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3))': dependencies: '@parcel/core': 2.9.3 '@parcel/hash': 2.9.3 '@parcel/plugin': 2.9.3(@parcel/core@2.9.3) '@parcel/types': 2.9.3(@parcel/core@2.9.3) '@parcel/utils': 2.9.3 - tsup: 7.2.0(@swc/core@1.11.24(@swc/helpers@0.5.17))(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3))(typescript@5.2.2) + tsup: 7.2.0(@swc/core@1.11.29(@swc/helpers@0.5.17))(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3))(typescript@5.2.2) typescript: 5.2.2 transitivePeerDependencies: - '@swc/core' @@ -15322,44 +15239,44 @@ snapshots: '@radix-ui/primitive@1.1.2': {} - '@radix-ui/react-arrow@1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-arrow@1.1.7(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-primitive': 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 - '@types/react-dom': 19.1.3(@types/react@19.1.3) + '@types/react': 19.1.5 + '@types/react-dom': 19.1.5(@types/react@19.1.5) '@radix-ui/react-compose-refs@1.0.0(react@18.3.1)': dependencies: '@babel/runtime': 7.27.1 react: 18.3.1 - '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.3)(react@18.3.1)': + '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.5)(react@18.3.1)': dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.3)(react@19.0.0)': + '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.5)(react@19.0.0)': dependencies: react: 19.0.0 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 '@radix-ui/react-context@1.0.0(react@18.3.1)': dependencies: '@babel/runtime': 7.27.1 react: 18.3.1 - '@radix-ui/react-context@1.1.2(@types/react@19.1.3)(react@18.3.1)': + '@radix-ui/react-context@1.1.2(@types/react@19.1.5)(react@18.3.1)': dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@radix-ui/react-dialog@1.0.0(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-dialog@1.0.0(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@babel/runtime': 7.27.1 '@radix-ui/primitive': 1.0.0 @@ -15374,34 +15291,34 @@ snapshots: '@radix-ui/react-primitive': 1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) '@radix-ui/react-slot': 1.0.0(react@18.3.1) '@radix-ui/react-use-controllable-state': 1.0.0(react@18.3.1) - aria-hidden: 1.2.4 + aria-hidden: 1.2.6 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-remove-scroll: 2.5.4(@types/react@19.1.3)(react@18.3.1) + react-remove-scroll: 2.5.4(@types/react@19.1.5)(react@18.3.1) transitivePeerDependencies: - '@types/react' - '@radix-ui/react-dialog@1.1.13(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-dialog@1.1.14(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-context': 1.1.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-focus-scope': 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.1.1(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-portal': 1.1.8(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.2.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.3)(react@18.3.1) - aria-hidden: 1.2.4 + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.1.1(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.5)(react@18.3.1) + aria-hidden: 1.2.6 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - react-remove-scroll: 2.6.3(@types/react@19.1.3)(react@18.3.1) + react-remove-scroll: 2.7.0(@types/react@19.1.5)(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 - '@types/react-dom': 19.1.3(@types/react@19.1.3) + '@types/react': 19.1.5 + '@types/react-dom': 19.1.5(@types/react@19.1.5) '@radix-ui/react-dismissable-layer@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -15414,29 +15331,29 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@radix-ui/react-dismissable-layer@1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-dismissable-layer@1.1.10(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-primitive': 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.3)(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.5)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 - '@types/react-dom': 19.1.3(@types/react@19.1.3) + '@types/react': 19.1.5 + '@types/react-dom': 19.1.5(@types/react@19.1.5) '@radix-ui/react-focus-guards@1.0.0(react@18.3.1)': dependencies: '@babel/runtime': 7.27.1 react: 18.3.1 - '@radix-ui/react-focus-guards@1.1.2(@types/react@19.1.3)(react@18.3.1)': + '@radix-ui/react-focus-guards@1.1.2(@types/react@19.1.5)(react@18.3.1)': dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 '@radix-ui/react-focus-scope@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -15447,16 +15364,16 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@radix-ui/react-focus-scope@1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-primitive': 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.3)(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.5)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 - '@types/react-dom': 19.1.3(@types/react@19.1.3) + '@types/react': 19.1.5 + '@types/react-dom': 19.1.5(@types/react@19.1.5) '@radix-ui/react-id@1.0.0(react@18.3.1)': dependencies: @@ -15464,30 +15381,30 @@ snapshots: '@radix-ui/react-use-layout-effect': 1.0.0(react@18.3.1) react: 18.3.1 - '@radix-ui/react-id@1.1.1(@types/react@19.1.3)(react@18.3.1)': + '@radix-ui/react-id@1.1.1(@types/react@19.1.5)(react@18.3.1)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.3)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.5)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@radix-ui/react-popper@1.2.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-popper@1.2.7(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@floating-ui/react-dom': 2.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-arrow': 1.1.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-context': 1.1.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-primitive': 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.3)(react@18.3.1) + '@radix-ui/react-arrow': 1.1.7(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.5)(react@18.3.1) '@radix-ui/rect': 1.1.1 react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 - '@types/react-dom': 19.1.3(@types/react@19.1.3) + '@types/react': 19.1.5 + '@types/react-dom': 19.1.5(@types/react@19.1.5) '@radix-ui/react-portal@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -15496,15 +15413,15 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@radix-ui/react-portal@1.1.8(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-portal@1.1.9(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-primitive': 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.3)(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.5)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 - '@types/react-dom': 19.1.3(@types/react@19.1.3) + '@types/react': 19.1.5 + '@types/react-dom': 19.1.5(@types/react@19.1.5) '@radix-ui/react-presence@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -15514,15 +15431,15 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@radix-ui/react-presence@1.1.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-presence@1.1.4(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.3)(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.5)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 - '@types/react-dom': 19.1.3(@types/react@19.1.3) + '@types/react': 19.1.5 + '@types/react-dom': 19.1.5(@types/react@19.1.5) '@radix-ui/react-primitive@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: @@ -15531,14 +15448,14 @@ snapshots: react: 18.3.1 react-dom: 18.3.1(react@18.3.1) - '@radix-ui/react-primitive@2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-primitive@2.1.3(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-slot': 1.2.2(@types/react@19.1.3)(react@18.3.1) + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.5)(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 - '@types/react-dom': 19.1.3(@types/react@19.1.3) + '@types/react': 19.1.5 + '@types/react-dom': 19.1.5(@types/react@19.1.5) '@radix-ui/react-slot@1.0.0(react@18.3.1)': dependencies: @@ -15546,50 +15463,50 @@ snapshots: '@radix-ui/react-compose-refs': 1.0.0(react@18.3.1) react: 18.3.1 - '@radix-ui/react-slot@1.2.0(@types/react@19.1.3)(react@19.0.0)': + '@radix-ui/react-slot@1.2.0(@types/react@19.1.5)(react@19.0.0)': dependencies: - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.3)(react@19.0.0) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.5)(react@19.0.0) react: 19.0.0 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@radix-ui/react-slot@1.2.2(@types/react@19.1.3)(react@18.3.1)': + '@radix-ui/react-slot@1.2.3(@types/react@19.1.5)(react@18.3.1)': dependencies: - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.3)(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.5)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@radix-ui/react-tooltip@1.2.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-tooltip@1.2.7(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: '@radix-ui/primitive': 1.1.2 - '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-context': 1.1.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-dismissable-layer': 1.1.9(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-id': 1.1.1(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-popper': 1.2.6(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-portal': 1.1.8(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-primitive': 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) - '@radix-ui/react-slot': 1.2.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-visually-hidden': 1.2.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-context': 1.1.2(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-dismissable-layer': 1.1.10(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-id': 1.1.1(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-popper': 1.2.7(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-portal': 1.1.9(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-slot': 1.2.3(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 - '@types/react-dom': 19.1.3(@types/react@19.1.3) + '@types/react': 19.1.5 + '@types/react-dom': 19.1.5(@types/react@19.1.5) '@radix-ui/react-use-callback-ref@1.0.0(react@18.3.1)': dependencies: '@babel/runtime': 7.27.1 react: 18.3.1 - '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.3)(react@18.3.1)': + '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.5)(react@18.3.1)': dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 '@radix-ui/react-use-controllable-state@1.0.0(react@18.3.1)': dependencies: @@ -15597,20 +15514,20 @@ snapshots: '@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1) react: 18.3.1 - '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.3)(react@18.3.1)': + '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.5)(react@18.3.1)': dependencies: - '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.3)(react@18.3.1) - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.3)(react@18.3.1) + '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.5)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.5)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.3)(react@18.3.1)': + '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.5)(react@18.3.1)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.3)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.5)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 '@radix-ui/react-use-escape-keydown@1.0.0(react@18.3.1)': dependencies: @@ -15618,61 +15535,61 @@ snapshots: '@radix-ui/react-use-callback-ref': 1.0.0(react@18.3.1) react: 18.3.1 - '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.3)(react@18.3.1)': + '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.5)(react@18.3.1)': dependencies: - '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.3)(react@18.3.1) + '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.5)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 '@radix-ui/react-use-layout-effect@1.0.0(react@18.3.1)': dependencies: '@babel/runtime': 7.27.1 react: 18.3.1 - '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.3)(react@18.3.1)': + '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.5)(react@18.3.1)': dependencies: react: 18.3.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@radix-ui/react-use-rect@1.1.1(@types/react@19.1.3)(react@18.3.1)': + '@radix-ui/react-use-rect@1.1.1(@types/react@19.1.5)(react@18.3.1)': dependencies: '@radix-ui/rect': 1.1.1 react: 18.3.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@radix-ui/react-use-size@1.1.1(@types/react@19.1.3)(react@18.3.1)': + '@radix-ui/react-use-size@1.1.1(@types/react@19.1.5)(react@18.3.1)': dependencies: - '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.3)(react@18.3.1) + '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.5)(react@18.3.1) react: 18.3.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@radix-ui/react-visually-hidden@1.2.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': + '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': dependencies: - '@radix-ui/react-primitive': 2.1.2(@types/react-dom@19.1.3(@types/react@19.1.3))(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-primitive': 2.1.3(@types/react-dom@19.1.5(@types/react@19.1.5))(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 - '@types/react-dom': 19.1.3(@types/react@19.1.3) + '@types/react': 19.1.5 + '@types/react-dom': 19.1.5(@types/react@19.1.5) '@radix-ui/rect@1.1.1': {} - '@react-native-async-storage/async-storage@2.1.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))': + '@react-native-async-storage/async-storage@2.1.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))': dependencies: merge-options: 3.0.4 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - '@react-native-community/datetimepicker@8.3.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@react-native-community/datetimepicker@8.3.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: invariant: 2.2.4 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) optionalDependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) '@react-native/assets-registry@0.79.2': {} @@ -15749,10 +15666,10 @@ snapshots: chalk: 4.1.2 debug: 2.6.9 invariant: 2.2.4 - metro: 0.82.3 - metro-config: 0.82.3 - metro-core: 0.82.3 - semver: 7.7.1 + metro: 0.82.4 + metro-config: 0.82.4 + metro-core: 0.82.4 + semver: 7.7.2 transitivePeerDependencies: - bufferutil - supports-color @@ -15788,28 +15705,28 @@ snapshots: '@react-native/normalize-colors@0.79.2': {} - '@react-native/virtualized-lists@0.79.2(@types/react@19.1.3)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@react-native/virtualized-lists@0.79.2(@types/react@19.1.5)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: invariant: 2.2.4 nullthrows: 1.1.1 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@react-navigation/bottom-tabs@7.3.12(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@react-navigation/bottom-tabs@7.3.13(@react-navigation/native@7.1.9(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@react-navigation/elements': 2.4.1(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@react-navigation/native': 7.1.8(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@react-navigation/elements': 2.4.2(@react-navigation/native@7.1.9(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@react-navigation/native': 7.1.9(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) color: 4.2.3 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) - react-native-safe-area-context: 5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - react-native-screens: 4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) + react-native-safe-area-context: 5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + react-native-screens: 4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - '@react-native-masked-view/masked-view' - '@react-navigation/core@7.9.1(react@19.0.0)': + '@react-navigation/core@7.9.2(react@19.0.0)': dependencies: '@react-navigation/routers': 7.3.7 escape-string-regexp: 4.0.0 @@ -15820,47 +15737,47 @@ snapshots: use-latest-callback: 0.2.3(react@19.0.0) use-sync-external-store: 1.5.0(react@19.0.0) - '@react-navigation/elements@2.4.1(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@react-navigation/elements@2.4.2(@react-navigation/native@7.1.9(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@react-navigation/native': 7.1.8(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@react-navigation/native': 7.1.9(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) color: 4.2.3 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) - react-native-safe-area-context: 5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) + react-native-safe-area-context: 5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) - '@react-navigation/native-stack@7.3.12(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@react-navigation/native-stack@7.3.13(@react-navigation/native@7.1.9(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@react-navigation/elements': 2.4.1(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@react-navigation/native': 7.1.8(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@react-navigation/elements': 2.4.2(@react-navigation/native@7.1.9(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@react-navigation/native': 7.1.9(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) - react-native-safe-area-context: 5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - react-native-screens: 4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) + react-native-safe-area-context: 5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + react-native-screens: 4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) warn-once: 0.1.1 transitivePeerDependencies: - '@react-native-masked-view/masked-view' - '@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@react-navigation/native@7.1.9(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@react-navigation/core': 7.9.1(react@19.0.0) + '@react-navigation/core': 7.9.2(react@19.0.0) escape-string-regexp: 4.0.0 fast-deep-equal: 3.1.3 nanoid: 3.3.11 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) use-latest-callback: 0.2.3(react@19.0.0) '@react-navigation/routers@7.3.7': dependencies: nanoid: 3.3.11 - '@rollup/plugin-alias@5.1.1(rollup@4.40.2)': + '@rollup/plugin-alias@5.1.1(rollup@4.41.0)': optionalDependencies: - rollup: 4.40.2 + rollup: 4.41.0 - '@rollup/plugin-commonjs@28.0.3(rollup@4.40.2)': + '@rollup/plugin-commonjs@28.0.3(rollup@4.41.0)': dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.40.2) + '@rollup/pluginutils': 5.1.4(rollup@4.41.0) commondir: 1.0.1 estree-walker: 2.0.2 fdir: 6.4.4(picomatch@4.0.2) @@ -15868,123 +15785,123 @@ snapshots: magic-string: 0.30.17 picomatch: 4.0.2 optionalDependencies: - rollup: 4.40.2 + rollup: 4.41.0 - '@rollup/plugin-inject@5.0.5(rollup@4.40.2)': + '@rollup/plugin-inject@5.0.5(rollup@4.41.0)': dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.40.2) + '@rollup/pluginutils': 5.1.4(rollup@4.41.0) estree-walker: 2.0.2 magic-string: 0.30.17 optionalDependencies: - rollup: 4.40.2 + rollup: 4.41.0 - '@rollup/plugin-json@6.1.0(rollup@4.40.2)': + '@rollup/plugin-json@6.1.0(rollup@4.41.0)': dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.40.2) + '@rollup/pluginutils': 5.1.4(rollup@4.41.0) optionalDependencies: - rollup: 4.40.2 + rollup: 4.41.0 - '@rollup/plugin-node-resolve@16.0.1(rollup@4.40.2)': + '@rollup/plugin-node-resolve@16.0.1(rollup@4.41.0)': dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.40.2) + '@rollup/pluginutils': 5.1.4(rollup@4.41.0) '@types/resolve': 1.20.2 deepmerge: 4.3.1 is-module: 1.0.0 resolve: 1.22.10 optionalDependencies: - rollup: 4.40.2 + rollup: 4.41.0 - '@rollup/plugin-replace@6.0.2(rollup@4.40.2)': + '@rollup/plugin-replace@6.0.2(rollup@4.41.0)': dependencies: - '@rollup/pluginutils': 5.1.4(rollup@4.40.2) + '@rollup/pluginutils': 5.1.4(rollup@4.41.0) magic-string: 0.30.17 optionalDependencies: - rollup: 4.40.2 + rollup: 4.41.0 - '@rollup/plugin-terser@0.4.4(rollup@4.40.2)': + '@rollup/plugin-terser@0.4.4(rollup@4.41.0)': dependencies: serialize-javascript: 6.0.2 smob: 1.5.0 - terser: 5.39.0 + terser: 5.39.2 optionalDependencies: - rollup: 4.40.2 + rollup: 4.41.0 - '@rollup/pluginutils@5.1.4(rollup@4.40.2)': + '@rollup/pluginutils@5.1.4(rollup@4.41.0)': dependencies: '@types/estree': 1.0.7 estree-walker: 2.0.2 picomatch: 4.0.2 optionalDependencies: - rollup: 4.40.2 + rollup: 4.41.0 - '@rollup/rollup-android-arm-eabi@4.40.2': + '@rollup/rollup-android-arm-eabi@4.41.0': optional: true - '@rollup/rollup-android-arm64@4.40.2': + '@rollup/rollup-android-arm64@4.41.0': optional: true - '@rollup/rollup-darwin-arm64@4.40.2': + '@rollup/rollup-darwin-arm64@4.41.0': optional: true - '@rollup/rollup-darwin-x64@4.40.2': + '@rollup/rollup-darwin-x64@4.41.0': optional: true - '@rollup/rollup-freebsd-arm64@4.40.2': + '@rollup/rollup-freebsd-arm64@4.41.0': optional: true - '@rollup/rollup-freebsd-x64@4.40.2': + '@rollup/rollup-freebsd-x64@4.41.0': optional: true - '@rollup/rollup-linux-arm-gnueabihf@4.40.2': + '@rollup/rollup-linux-arm-gnueabihf@4.41.0': optional: true - '@rollup/rollup-linux-arm-musleabihf@4.40.2': + '@rollup/rollup-linux-arm-musleabihf@4.41.0': optional: true - '@rollup/rollup-linux-arm64-gnu@4.40.2': + '@rollup/rollup-linux-arm64-gnu@4.41.0': optional: true - '@rollup/rollup-linux-arm64-musl@4.40.2': + '@rollup/rollup-linux-arm64-musl@4.41.0': optional: true - '@rollup/rollup-linux-loongarch64-gnu@4.40.2': + '@rollup/rollup-linux-loongarch64-gnu@4.41.0': optional: true - '@rollup/rollup-linux-powerpc64le-gnu@4.40.2': + '@rollup/rollup-linux-powerpc64le-gnu@4.41.0': optional: true - '@rollup/rollup-linux-riscv64-gnu@4.40.2': + '@rollup/rollup-linux-riscv64-gnu@4.41.0': optional: true - '@rollup/rollup-linux-riscv64-musl@4.40.2': + '@rollup/rollup-linux-riscv64-musl@4.41.0': optional: true - '@rollup/rollup-linux-s390x-gnu@4.40.2': + '@rollup/rollup-linux-s390x-gnu@4.41.0': optional: true - '@rollup/rollup-linux-x64-gnu@4.40.2': + '@rollup/rollup-linux-x64-gnu@4.41.0': optional: true - '@rollup/rollup-linux-x64-musl@4.40.2': + '@rollup/rollup-linux-x64-musl@4.41.0': optional: true - '@rollup/rollup-win32-arm64-msvc@4.40.2': + '@rollup/rollup-win32-arm64-msvc@4.41.0': optional: true - '@rollup/rollup-win32-ia32-msvc@4.40.2': + '@rollup/rollup-win32-ia32-msvc@4.41.0': optional: true - '@rollup/rollup-win32-x64-msvc@4.40.2': + '@rollup/rollup-win32-x64-msvc@4.41.0': optional: true '@rtsao/scc@1.1.0': {} - '@shopify/flash-list@1.7.6(@babel/runtime@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@shopify/flash-list@1.7.6(@babel/runtime@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: '@babel/runtime': 7.27.1 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) - recyclerlistview: 4.2.3(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) + recyclerlistview: 4.2.3(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) tslib: 2.8.1 '@sinclair/typebox@0.27.8': {} @@ -16083,81 +16000,81 @@ snapshots: deepmerge: 4.3.1 svgo: 2.8.0 - '@swc/core-darwin-arm64@1.11.24': + '@swc/core-darwin-arm64@1.11.29': optional: true '@swc/core-darwin-arm64@1.3.82': optional: true - '@swc/core-darwin-x64@1.11.24': + '@swc/core-darwin-x64@1.11.29': optional: true '@swc/core-darwin-x64@1.3.82': optional: true - '@swc/core-linux-arm-gnueabihf@1.11.24': + '@swc/core-linux-arm-gnueabihf@1.11.29': optional: true '@swc/core-linux-arm-gnueabihf@1.3.82': optional: true - '@swc/core-linux-arm64-gnu@1.11.24': + '@swc/core-linux-arm64-gnu@1.11.29': optional: true '@swc/core-linux-arm64-gnu@1.3.82': optional: true - '@swc/core-linux-arm64-musl@1.11.24': + '@swc/core-linux-arm64-musl@1.11.29': optional: true '@swc/core-linux-arm64-musl@1.3.82': optional: true - '@swc/core-linux-x64-gnu@1.11.24': + '@swc/core-linux-x64-gnu@1.11.29': optional: true '@swc/core-linux-x64-gnu@1.3.82': optional: true - '@swc/core-linux-x64-musl@1.11.24': + '@swc/core-linux-x64-musl@1.11.29': optional: true '@swc/core-linux-x64-musl@1.3.82': optional: true - '@swc/core-win32-arm64-msvc@1.11.24': + '@swc/core-win32-arm64-msvc@1.11.29': optional: true '@swc/core-win32-arm64-msvc@1.3.82': optional: true - '@swc/core-win32-ia32-msvc@1.11.24': + '@swc/core-win32-ia32-msvc@1.11.29': optional: true '@swc/core-win32-ia32-msvc@1.3.82': optional: true - '@swc/core-win32-x64-msvc@1.11.24': + '@swc/core-win32-x64-msvc@1.11.29': optional: true '@swc/core-win32-x64-msvc@1.3.82': optional: true - '@swc/core@1.11.24(@swc/helpers@0.5.17)': + '@swc/core@1.11.29(@swc/helpers@0.5.17)': dependencies: '@swc/counter': 0.1.3 '@swc/types': 0.1.21 optionalDependencies: - '@swc/core-darwin-arm64': 1.11.24 - '@swc/core-darwin-x64': 1.11.24 - '@swc/core-linux-arm-gnueabihf': 1.11.24 - '@swc/core-linux-arm64-gnu': 1.11.24 - '@swc/core-linux-arm64-musl': 1.11.24 - '@swc/core-linux-x64-gnu': 1.11.24 - '@swc/core-linux-x64-musl': 1.11.24 - '@swc/core-win32-arm64-msvc': 1.11.24 - '@swc/core-win32-ia32-msvc': 1.11.24 - '@swc/core-win32-x64-msvc': 1.11.24 + '@swc/core-darwin-arm64': 1.11.29 + '@swc/core-darwin-x64': 1.11.29 + '@swc/core-linux-arm-gnueabihf': 1.11.29 + '@swc/core-linux-arm64-gnu': 1.11.29 + '@swc/core-linux-arm64-musl': 1.11.29 + '@swc/core-linux-x64-gnu': 1.11.29 + '@swc/core-linux-x64-musl': 1.11.29 + '@swc/core-win32-arm64-msvc': 1.11.29 + '@swc/core-win32-ia32-msvc': 1.11.29 + '@swc/core-win32-x64-msvc': 1.11.29 '@swc/helpers': 0.5.17 '@swc/core@1.3.82(@swc/helpers@0.5.17)': @@ -16199,163 +16116,163 @@ snapshots: dependencies: defer-to-connect: 2.0.1 - '@t3-oss/env-core@0.9.2(typescript@5.8.3)(zod@3.24.4)': + '@t3-oss/env-core@0.9.2(typescript@5.8.3)(zod@3.25.23)': dependencies: - zod: 3.24.4 + zod: 3.25.23 optionalDependencies: typescript: 5.8.3 - '@t3-oss/env-nextjs@0.9.2(typescript@5.8.3)(zod@3.24.4)': + '@t3-oss/env-nextjs@0.9.2(typescript@5.8.3)(zod@3.25.23)': dependencies: - '@t3-oss/env-core': 0.9.2(typescript@5.8.3)(zod@3.24.4) - zod: 3.24.4 + '@t3-oss/env-core': 0.9.2(typescript@5.8.3)(zod@3.25.23) + zod: 3.25.23 optionalDependencies: typescript: 5.8.3 - '@tailwindcss/forms@0.5.10(tailwindcss@3.3.5(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)))': + '@tailwindcss/forms@0.5.10(tailwindcss@3.3.5(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)))': dependencies: mini-svg-data-uri: 1.4.4 - tailwindcss: 3.3.5(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)) + tailwindcss: 3.3.5(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)) - '@tailwindcss/typography@0.5.16(tailwindcss@3.3.5(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)))': + '@tailwindcss/typography@0.5.16(tailwindcss@3.3.5(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)))': dependencies: lodash.castarray: 4.4.0 lodash.isplainobject: 4.0.6 lodash.merge: 4.6.2 postcss-selector-parser: 6.0.10 - tailwindcss: 3.3.5(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)) - - '@tamagui/accordion@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': - dependencies: - '@tamagui/collapsible': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/collection': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/polyfill-dev': 1.126.12 - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/text': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) + tailwindcss: 3.3.5(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)) + + '@tamagui/accordion@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': + dependencies: + '@tamagui/collapsible': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/collection': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/polyfill-dev': 1.126.13 + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/text': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/adapt@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/adapt@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/portal': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/z-index-stack': 1.126.12 + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/portal': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/z-index-stack': 1.126.13 transitivePeerDependencies: - react - react-dom - react-native - '@tamagui/alert-dialog@1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': - dependencies: - '@tamagui/animate-presence': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/aria-hidden': 1.126.12(react@19.0.0) - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/dialog': 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/dismissable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/focus-scope': 1.126.12(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/polyfill-dev': 1.126.12 - '@tamagui/popper': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/portal': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/remove-scroll': 1.126.12(@types/react@19.1.3)(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/text': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) + '@tamagui/alert-dialog@1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': + dependencies: + '@tamagui/animate-presence': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/aria-hidden': 1.126.13(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/dialog': 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/dismissable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/focus-scope': 1.126.13(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/polyfill-dev': 1.126.13 + '@tamagui/popper': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/portal': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/remove-scroll': 1.126.13(@types/react@19.1.5)(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/text': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - '@types/react' - react-dom - react-native - '@tamagui/animate-presence@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/animate-presence@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/use-constant': 1.126.12(react@19.0.0) - '@tamagui/use-force-update': 1.126.12(react@19.0.0) - '@tamagui/use-presence': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/use-constant': 1.126.13(react@19.0.0) + '@tamagui/use-force-update': 1.126.13(react@19.0.0) + '@tamagui/use-presence': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react - react-dom - '@tamagui/animate@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/animate@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/animate-presence': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/animate-presence': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react - react-dom - '@tamagui/animations-css@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/animations-css@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/cubic-bezier-animator': 1.126.12 - '@tamagui/use-presence': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/cubic-bezier-animator': 1.126.13 + '@tamagui/use-presence': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(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) - '@tamagui/animations-moti@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0)': + '@tamagui/animations-moti@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/use-presence': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - moti: 0.29.0(react-dom@19.0.0(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0) + '@tamagui/use-presence': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + moti: 0.29.0(react-dom@19.0.0(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native-reanimated - '@tamagui/animations-react-native@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/animations-react-native@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/use-presence': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/use-presence': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - '@tamagui/aria-hidden@1.126.12(react@19.0.0)': + '@tamagui/aria-hidden@1.126.13(react@19.0.0)': dependencies: - aria-hidden: 1.2.4 + aria-hidden: 1.2.6 react: 19.0.0 - '@tamagui/avatar@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/avatar@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/image': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/shapes': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/text': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/image': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/shapes': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/text': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/babel-plugin-fully-specified@1.126.12': + '@tamagui/babel-plugin-fully-specified@1.126.13': dependencies: '@babel/core': 7.27.1 transitivePeerDependencies: - supports-color - '@tamagui/babel-plugin@1.126.12(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/babel-plugin@1.126.13(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: '@babel/core': 7.27.1 '@babel/generator': 7.27.1 '@babel/helper-plugin-utils': 7.27.1 '@babel/template': 7.27.2 '@babel/traverse': 7.27.1 - '@tamagui/static': 1.126.12(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/static': 1.126.13(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - '@swc/helpers' - encoding @@ -16364,11 +16281,11 @@ snapshots: - react-native - supports-color - '@tamagui/build@1.126.12(@swc/helpers@0.5.17)': + '@tamagui/build@1.126.13(@swc/helpers@0.5.17)': dependencies: '@babel/core': 7.27.1 - '@swc/core': 1.11.24(@swc/helpers@0.5.17) - '@tamagui/babel-plugin-fully-specified': 1.126.12 + '@swc/core': 1.11.29(@swc/helpers@0.5.17) + '@tamagui/babel-plugin-fully-specified': 1.126.13 '@types/fs-extra': 9.0.13 chokidar: 3.6.0 esbuild: 0.25.4 @@ -16384,278 +16301,278 @@ snapshots: - '@swc/helpers' - supports-color - '@tamagui/button@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/button@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/font-size': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/get-button-sized': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/helpers-tamagui': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/text': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/font-size': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/get-button-sized': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/helpers-tamagui': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/text': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/card@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/card@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/checkbox-headless@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/checkbox-headless@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/focusable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/label': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/use-previous': 1.126.12 + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/focusable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/label': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/use-previous': 1.126.13 react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/checkbox@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': - dependencies: - '@tamagui/checkbox-headless': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/focusable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/font-size': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/get-token': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/helpers-tamagui': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/label': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/use-previous': 1.126.12 + '@tamagui/checkbox@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': + dependencies: + '@tamagui/checkbox-headless': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/focusable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/font-size': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/get-token': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/helpers-tamagui': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/label': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/use-previous': 1.126.13 react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/cli-color@1.126.12': {} + '@tamagui/cli-color@1.126.13': {} - '@tamagui/collapsible@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/collapsible@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/animate-presence': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/polyfill-dev': 1.126.12 - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) + '@tamagui/animate-presence': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/polyfill-dev': 1.126.13 + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/collection@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/collection@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/polyfill-dev': 1.126.12 - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/polyfill-dev': 1.126.13 + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/colors@1.126.12': {} + '@tamagui/colors@1.126.13': {} - '@tamagui/compose-refs@1.126.12(react@19.0.0)': + '@tamagui/compose-refs@1.126.13(react@19.0.0)': dependencies: react: 19.0.0 - '@tamagui/config-default@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/config-default@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/animations-css': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/shorthands': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/animations-css': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/shorthands': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react - react-dom - react-native - '@tamagui/config@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/config@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/animations-css': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/animations-moti': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0) - '@tamagui/animations-react-native': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/colors': 1.126.12 - '@tamagui/font-inter': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/font-silkscreen': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/react-native-media-driver': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/shorthands': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/themes': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/animations-css': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/animations-moti': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0) + '@tamagui/animations-react-native': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/colors': 1.126.13 + '@tamagui/font-inter': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/font-silkscreen': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/react-native-media-driver': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/shorthands': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/themes': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react - react-dom - react-native - react-native-reanimated - '@tamagui/constants@1.126.12(react@19.0.0)': + '@tamagui/constants@1.126.13(react@19.0.0)': dependencies: react: 19.0.0 - '@tamagui/core@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/core@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/react-native-media-driver': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/react-native-use-pressable': 1.126.12(react@19.0.0) - '@tamagui/react-native-use-responder-events': 1.126.12(react@19.0.0) - '@tamagui/use-event': 1.126.12(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/react-native-media-driver': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/react-native-use-pressable': 1.126.13(react@19.0.0) + '@tamagui/react-native-use-responder-events': 1.126.13(react@19.0.0) + '@tamagui/use-event': 1.126.13(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react - react-dom - react-native - '@tamagui/create-context@1.126.12(react@19.0.0)': + '@tamagui/create-context@1.126.13(react@19.0.0)': dependencies: react: 19.0.0 - '@tamagui/create-theme@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/create-theme@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react - react-dom - '@tamagui/cubic-bezier-animator@1.126.12': {} - - '@tamagui/dialog@1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': - dependencies: - '@tamagui/adapt': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/animate-presence': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/aria-hidden': 1.126.12(react@19.0.0) - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/dismissable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/focus-scope': 1.126.12(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/polyfill-dev': 1.126.12 - '@tamagui/popper': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/portal': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/remove-scroll': 1.126.12(@types/react@19.1.3)(react@19.0.0) - '@tamagui/sheet': 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/text': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/z-index-stack': 1.126.12 + '@tamagui/cubic-bezier-animator@1.126.13': {} + + '@tamagui/dialog@1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': + dependencies: + '@tamagui/adapt': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/animate-presence': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/aria-hidden': 1.126.13(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/dismissable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/focus-scope': 1.126.13(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/polyfill-dev': 1.126.13 + '@tamagui/popper': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/portal': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/remove-scroll': 1.126.13(@types/react@19.1.5)(react@19.0.0) + '@tamagui/sheet': 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/text': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/z-index-stack': 1.126.13 react: 19.0.0 transitivePeerDependencies: - '@types/react' - react-dom - react-native - '@tamagui/dismissable@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/dismissable@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/use-escape-keydown': 1.126.12 - '@tamagui/use-event': 1.126.12(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/use-escape-keydown': 1.126.13 + '@tamagui/use-event': 1.126.13(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/elements@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/elements@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/fake-react-native@1.126.12': {} + '@tamagui/fake-react-native@1.126.13': {} - '@tamagui/floating@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/floating@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.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-native': 0.10.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@floating-ui/react-native': 0.10.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/focus-scope@1.126.12(react@19.0.0)': + '@tamagui/focus-scope@1.126.13(react@19.0.0)': dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/start-transition': 1.126.12 - '@tamagui/use-event': 1.126.12(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/start-transition': 1.126.13 + '@tamagui/use-event': 1.126.13(react@19.0.0) react: 19.0.0 - '@tamagui/focusable@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/focusable@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - '@tamagui/font-inter@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/font-inter@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react - react-dom - react-native - '@tamagui/font-silkscreen@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/font-silkscreen@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react - react-dom - react-native - '@tamagui/font-size@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/font-size@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/form@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/form@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/focusable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/get-button-sized': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/get-font-sized': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/text': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/focusable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/get-button-sized': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/get-font-sized': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/text': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/generate-themes@1.126.12(esbuild@0.25.4)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/generate-themes@1.126.13(esbuild@0.25.4)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/create-theme': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/theme-builder': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/types': 1.126.12 + '@tamagui/create-theme': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/theme-builder': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/types': 1.126.13 esbuild-register: 3.6.0(esbuild@0.25.4) fs-extra: 11.3.0 transitivePeerDependencies: @@ -16664,143 +16581,143 @@ snapshots: - react-dom - supports-color - '@tamagui/get-button-sized@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/get-button-sized@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/get-token': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/get-token': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - '@tamagui/get-font-sized@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/get-font-sized@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/get-token@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/get-token@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - '@tamagui/group@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/group@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/helpers-icon@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/helpers-icon@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 - react-native-svg: 15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native-svg: 15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react-dom - react-native - '@tamagui/helpers-node@1.126.12': + '@tamagui/helpers-node@1.126.13': dependencies: - '@tamagui/types': 1.126.12 + '@tamagui/types': 1.126.13 - '@tamagui/helpers-tamagui@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/helpers-tamagui@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - '@tamagui/helpers@1.126.12(react@19.0.0)': + '@tamagui/helpers@1.126.13(react@19.0.0)': dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/simple-hash': 1.126.12 + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/simple-hash': 1.126.13 transitivePeerDependencies: - react - '@tamagui/image@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/image@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/label@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/label@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/focusable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/get-button-sized': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/get-font-sized': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/text': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/focusable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/get-button-sized': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/get-font-sized': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/text': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) transitivePeerDependencies: - react-dom - '@tamagui/linear-gradient@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/linear-gradient@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/list-item@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/list-item@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/font-size': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/get-font-sized': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/get-token': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/helpers-tamagui': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/text': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/font-size': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/get-font-sized': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/get-token': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/helpers-tamagui': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/text': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/lucide-icons@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/lucide-icons@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/helpers-icon': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/helpers-icon': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 - react-native-svg: 15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native-svg: 15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react-dom - react-native - '@tamagui/next-plugin@1.126.12(@babel/core@7.27.1)(@swc/helpers@0.5.17)(next@14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17)))': + '@tamagui/next-plugin@1.126.13(@babel/core@7.27.1)(@swc/helpers@0.5.17)(next@14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17)))': dependencies: '@babel/preset-react': 7.27.1(@babel/core@7.27.1) - '@tamagui/proxy-worm': 1.126.12 - '@tamagui/react-native-svg': 1.126.12 - '@tamagui/static': 1.126.12(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - babel-loader: 9.2.1(@babel/core@7.27.1)(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))) + '@tamagui/proxy-worm': 1.126.13 + '@tamagui/react-native-svg': 1.126.13 + '@tamagui/static': 1.126.13(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + babel-loader: 9.2.1(@babel/core@7.27.1)(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))) browserslist: 4.24.5 - css-loader: 6.11.0(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))) - esbuild-loader: 4.3.0(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))) - file-loader: 6.2.0(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))) - html-webpack-plugin: 5.6.3(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))) - next: 14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0) - tamagui-loader: 1.126.12(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))) - url-loader: 4.1.1(file-loader@6.2.0(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))))(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))) + css-loader: 6.11.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))) + esbuild-loader: 4.3.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))) + file-loader: 6.2.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))) + html-webpack-plugin: 5.6.3(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))) + next: 14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0) + tamagui-loader: 1.126.13(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))) + url-loader: 4.1.1(file-loader@6.2.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))))(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))) transitivePeerDependencies: - '@babel/core' - '@rspack/core' @@ -16812,39 +16729,39 @@ snapshots: - supports-color - webpack - '@tamagui/next-theme@1.126.12(react@19.0.0)': + '@tamagui/next-theme@1.126.13(react@19.0.0)': dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/use-event': 1.126.12(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/use-event': 1.126.13(react@19.0.0) react: 19.0.0 - '@tamagui/normalize-css-color@1.126.12': + '@tamagui/normalize-css-color@1.126.13': dependencies: '@react-native/normalize-color': 2.1.0 - '@tamagui/polyfill-dev@1.126.12': {} + '@tamagui/polyfill-dev@1.126.13': {} - '@tamagui/popover@1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/popover@1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: '@floating-ui/react': 0.27.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/adapt': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/animate': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/aria-hidden': 1.126.12(react@19.0.0) - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/dismissable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/floating': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/focus-scope': 1.126.12(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/polyfill-dev': 1.126.12 - '@tamagui/popper': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/portal': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/remove-scroll': 1.126.12(@types/react@19.1.3)(react@19.0.0) - '@tamagui/scroll-view': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/sheet': 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) + '@tamagui/adapt': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/animate': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/aria-hidden': 1.126.13(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/dismissable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/floating': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/focus-scope': 1.126.13(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/polyfill-dev': 1.126.13 + '@tamagui/popper': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/portal': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/remove-scroll': 1.126.13(@types/react@19.1.5)(react@19.0.0) + '@tamagui/scroll-view': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/sheet': 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) react: 19.0.0 react-freeze: 1.0.4(react@19.0.0) transitivePeerDependencies: @@ -16852,269 +16769,269 @@ snapshots: - react-dom - react-native - '@tamagui/popper@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/popper@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/floating': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/get-token': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/start-transition': 1.126.12 - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/floating': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/get-token': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/start-transition': 1.126.13 + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/portal@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/portal@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/start-transition': 1.126.12 - '@tamagui/use-did-finish-ssr': 1.126.12(react@19.0.0) - '@tamagui/use-event': 1.126.12(react@19.0.0) - '@tamagui/z-index-stack': 1.126.12 + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/start-transition': 1.126.13 + '@tamagui/use-did-finish-ssr': 1.126.13(react@19.0.0) + '@tamagui/use-event': 1.126.13(react@19.0.0) + '@tamagui/z-index-stack': 1.126.13 transitivePeerDependencies: - react - react-dom - react-native - '@tamagui/progress@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/progress@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/get-token': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/get-token': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/proxy-worm@1.126.12': {} - - '@tamagui/radio-group@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': - dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/focusable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/get-token': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/label': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/radio-headless': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/roving-focus': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/use-previous': 1.126.12 + '@tamagui/proxy-worm@1.126.13': {} + + '@tamagui/radio-group@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': + dependencies: + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/focusable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/get-token': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/label': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/radio-headless': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/roving-focus': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/use-previous': 1.126.13 react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/radio-headless@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/radio-headless@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/focusable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/label': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/use-previous': 1.126.12 + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/focusable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/label': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/use-previous': 1.126.13 react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/react-native-media-driver@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/react-native-media-driver@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) transitivePeerDependencies: - react - react-dom - '@tamagui/react-native-svg@1.126.12': {} + '@tamagui/react-native-svg@1.126.13': {} - '@tamagui/react-native-use-pressable@1.126.12(react@19.0.0)': + '@tamagui/react-native-use-pressable@1.126.13(react@19.0.0)': dependencies: react: 19.0.0 - '@tamagui/react-native-use-responder-events@1.126.12(react@19.0.0)': + '@tamagui/react-native-use-responder-events@1.126.13(react@19.0.0)': dependencies: react: 19.0.0 - '@tamagui/react-native-web-internals@1.126.12(react-dom@19.0.0(react@19.0.0))': + '@tamagui/react-native-web-internals@1.126.13(react-dom@19.0.0(react@19.0.0))': dependencies: - '@tamagui/normalize-css-color': 1.126.12 - '@tamagui/react-native-use-pressable': 1.126.12(react@19.0.0) - '@tamagui/react-native-use-responder-events': 1.126.12(react@19.0.0) - '@tamagui/simple-hash': 1.126.12 - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/normalize-css-color': 1.126.13 + '@tamagui/react-native-use-pressable': 1.126.13(react@19.0.0) + '@tamagui/react-native-use-responder-events': 1.126.13(react@19.0.0) + '@tamagui/simple-hash': 1.126.13 + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - '@tamagui/react-native-web-lite@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/react-native-web-lite@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/normalize-css-color': 1.126.12 - '@tamagui/react-native-use-pressable': 1.126.12(react@19.0.0) - '@tamagui/react-native-use-responder-events': 1.126.12(react@19.0.0) - '@tamagui/react-native-web-internals': 1.126.12(react-dom@19.0.0(react@19.0.0)) + '@tamagui/normalize-css-color': 1.126.13 + '@tamagui/react-native-use-pressable': 1.126.13(react@19.0.0) + '@tamagui/react-native-use-responder-events': 1.126.13(react@19.0.0) + '@tamagui/react-native-web-internals': 1.126.13(react-dom@19.0.0(react@19.0.0)) invariant: 2.2.4 react: 19.0.0 transitivePeerDependencies: - react-dom - '@tamagui/remove-scroll@1.126.12(@types/react@19.1.3)(react@19.0.0)': + '@tamagui/remove-scroll@1.126.13(@types/react@19.1.5)(react@19.0.0)': dependencies: react: 19.0.0 - react-remove-scroll: 2.6.3(@types/react@19.1.3)(react@19.0.0) + react-remove-scroll: 2.7.0(@types/react@19.1.5)(react@19.0.0) transitivePeerDependencies: - '@types/react' - '@tamagui/roving-focus@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': - dependencies: - '@tamagui/collection': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/use-direction': 1.126.12(react@19.0.0) - '@tamagui/use-event': 1.126.12(react@19.0.0) + '@tamagui/roving-focus@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': + dependencies: + '@tamagui/collection': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/use-direction': 1.126.13(react@19.0.0) + '@tamagui/use-event': 1.126.13(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/scroll-view@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/scroll-view@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/select@1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/select@1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: '@floating-ui/react': 0.27.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) '@floating-ui/react-dom': 2.1.2(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@floating-ui/react-native': 0.10.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/adapt': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/animate-presence': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/dismissable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/focus-scope': 1.126.12(react@19.0.0) - '@tamagui/get-token': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/list-item': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/portal': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/remove-scroll': 1.126.12(@types/react@19.1.3)(react@19.0.0) - '@tamagui/separator': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/sheet': 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/text': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/use-debounce': 1.126.12(react@19.0.0) - '@tamagui/use-event': 1.126.12(react@19.0.0) - '@tamagui/use-previous': 1.126.12 + '@floating-ui/react-native': 0.10.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/adapt': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/animate-presence': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/dismissable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/focus-scope': 1.126.13(react@19.0.0) + '@tamagui/get-token': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/list-item': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/portal': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/remove-scroll': 1.126.13(@types/react@19.1.5)(react@19.0.0) + '@tamagui/separator': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/sheet': 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/text': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/use-debounce': 1.126.13(react@19.0.0) + '@tamagui/use-event': 1.126.13(react@19.0.0) + '@tamagui/use-previous': 1.126.13 react: 19.0.0 transitivePeerDependencies: - '@types/react' - react-dom - react-native - '@tamagui/separator@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/separator@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/shapes@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/shapes@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/sheet@1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': - dependencies: - '@tamagui/adapt': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/animate-presence': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/animations-react-native': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/portal': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/remove-scroll': 1.126.12(@types/react@19.1.3)(react@19.0.0) - '@tamagui/scroll-view': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-constant': 1.126.12(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/use-did-finish-ssr': 1.126.12(react@19.0.0) - '@tamagui/use-keyboard-visible': 1.126.12(react@19.0.0) - '@tamagui/z-index-stack': 1.126.12 + '@tamagui/sheet@1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': + dependencies: + '@tamagui/adapt': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/animate-presence': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/animations-react-native': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/portal': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/remove-scroll': 1.126.13(@types/react@19.1.5)(react@19.0.0) + '@tamagui/scroll-view': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-constant': 1.126.13(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/use-did-finish-ssr': 1.126.13(react@19.0.0) + '@tamagui/use-keyboard-visible': 1.126.13(react@19.0.0) + '@tamagui/z-index-stack': 1.126.13 react: 19.0.0 transitivePeerDependencies: - '@types/react' - react-dom - react-native - '@tamagui/shorthands@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/shorthands@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react - react-dom - '@tamagui/simple-hash@1.126.12': {} + '@tamagui/simple-hash@1.126.13': {} - '@tamagui/slider@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/slider@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/get-token': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/use-debounce': 1.126.12(react@19.0.0) - '@tamagui/use-direction': 1.126.12(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/get-token': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/use-debounce': 1.126.13(react@19.0.0) + '@tamagui/use-direction': 1.126.13(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/stacks@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/stacks@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/start-transition@1.126.12': {} + '@tamagui/start-transition@1.126.13': {} - '@tamagui/static@1.126.12(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/static@1.126.13(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: '@babel/core': 7.27.1 '@babel/generator': 7.27.1 @@ -17124,19 +17041,19 @@ snapshots: '@babel/runtime': 7.27.1 '@babel/traverse': 7.27.1 '@babel/types': 7.27.1 - '@tamagui/build': 1.126.12(@swc/helpers@0.5.17) - '@tamagui/cli-color': 1.126.12 - '@tamagui/config-default': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/fake-react-native': 1.126.12 - '@tamagui/generate-themes': 1.126.12(esbuild@0.25.4)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/helpers-node': 1.126.12 - '@tamagui/proxy-worm': 1.126.12 - '@tamagui/react-native-web-internals': 1.126.12(react-dom@19.0.0(react@19.0.0)) - '@tamagui/react-native-web-lite': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/shorthands': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/types': 1.126.12 + '@tamagui/build': 1.126.13(@swc/helpers@0.5.17) + '@tamagui/cli-color': 1.126.13 + '@tamagui/config-default': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/fake-react-native': 1.126.13 + '@tamagui/generate-themes': 1.126.13(esbuild@0.25.4)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/helpers-node': 1.126.13 + '@tamagui/proxy-worm': 1.126.13 + '@tamagui/react-native-web-internals': 1.126.13(react-dom@19.0.0(react@19.0.0)) + '@tamagui/react-native-web-lite': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/shorthands': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/types': 1.126.13 babel-literal-to-ast: 2.1.0(@babel/core@7.27.1) browserslist: 4.24.5 check-dependency-version-consistency: 4.1.1 @@ -17158,277 +17075,277 @@ snapshots: - react-native - supports-color - '@tamagui/switch-headless@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/switch-headless@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/label': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-previous': 1.126.12 + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/label': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-previous': 1.126.13 react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/switch@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': - dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/focusable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/get-token': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/label': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/switch-headless': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/use-previous': 1.126.12 + '@tamagui/switch@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': + dependencies: + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/focusable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/get-token': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/label': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/switch-headless': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/use-previous': 1.126.13 react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/tabs@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': - dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/get-button-sized': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/group': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/roving-focus': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/use-direction': 1.126.12(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/tabs@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': + dependencies: + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/get-button-sized': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/group': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/roving-focus': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/use-direction': 1.126.13(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/text@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/text@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/get-font-sized': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/helpers-tamagui': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/get-font-sized': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/helpers-tamagui': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/theme-builder@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/theme-builder@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/create-theme': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/create-theme': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) color2k: 2.0.3 transitivePeerDependencies: - react - react-dom - '@tamagui/theme@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/theme@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - '@tamagui/themes@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/themes@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/colors': 1.126.12 - '@tamagui/create-theme': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/theme-builder': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/colors': 1.126.13 + '@tamagui/create-theme': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/theme-builder': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) color2k: 2.0.3 transitivePeerDependencies: - react - react-dom - '@tamagui/timer@1.126.12': {} - - '@tamagui/toast@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': - dependencies: - '@tamagui/animate-presence': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/dismissable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/polyfill-dev': 1.126.12 - '@tamagui/portal': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/start-transition': 1.126.12 - '@tamagui/text': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/visually-hidden': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/timer@1.126.13': {} + + '@tamagui/toast@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': + dependencies: + '@tamagui/animate-presence': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/dismissable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/polyfill-dev': 1.126.13 + '@tamagui/portal': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/start-transition': 1.126.13 + '@tamagui/text': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/visually-hidden': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/toggle-group@1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': - dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/focusable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/font-size': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/get-token': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/group': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/helpers-tamagui': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/roving-focus': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/use-direction': 1.126.12(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/toggle-group@1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': + dependencies: + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/focusable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/font-size': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/get-token': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/group': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/helpers-tamagui': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/roving-focus': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/use-direction': 1.126.13(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - react-native - '@tamagui/tooltip@1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)': + '@tamagui/tooltip@1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)': dependencies: '@floating-ui/react': 0.27.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/floating': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/get-token': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/polyfill-dev': 1.126.12 - '@tamagui/popover': 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/popper': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/text': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/floating': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/get-token': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/polyfill-dev': 1.126.13 + '@tamagui/popover': 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/popper': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/text': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - '@types/react' - react-dom - react-native - '@tamagui/types@1.126.12': {} + '@tamagui/types@1.126.13': {} - '@tamagui/use-callback-ref@1.126.12': {} + '@tamagui/use-callback-ref@1.126.13': {} - '@tamagui/use-constant@1.126.12(react@19.0.0)': + '@tamagui/use-constant@1.126.13(react@19.0.0)': dependencies: react: 19.0.0 - '@tamagui/use-controllable-state@1.126.12(react@19.0.0)': + '@tamagui/use-controllable-state@1.126.13(react@19.0.0)': dependencies: - '@tamagui/start-transition': 1.126.12 - '@tamagui/use-event': 1.126.12(react@19.0.0) + '@tamagui/start-transition': 1.126.13 + '@tamagui/use-event': 1.126.13(react@19.0.0) react: 19.0.0 - '@tamagui/use-debounce@1.126.12(react@19.0.0)': + '@tamagui/use-debounce@1.126.13(react@19.0.0)': dependencies: react: 19.0.0 - '@tamagui/use-did-finish-ssr@1.126.12(react@19.0.0)': + '@tamagui/use-did-finish-ssr@1.126.13(react@19.0.0)': dependencies: react: 19.0.0 - '@tamagui/use-direction@1.126.12(react@19.0.0)': + '@tamagui/use-direction@1.126.13(react@19.0.0)': dependencies: react: 19.0.0 - '@tamagui/use-escape-keydown@1.126.12': + '@tamagui/use-escape-keydown@1.126.13': dependencies: - '@tamagui/use-callback-ref': 1.126.12 + '@tamagui/use-callback-ref': 1.126.13 - '@tamagui/use-event@1.126.12(react@19.0.0)': + '@tamagui/use-event@1.126.13(react@19.0.0)': dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) react: 19.0.0 - '@tamagui/use-force-update@1.126.12(react@19.0.0)': + '@tamagui/use-force-update@1.126.13(react@19.0.0)': dependencies: react: 19.0.0 - '@tamagui/use-keyboard-visible@1.126.12(react@19.0.0)': + '@tamagui/use-keyboard-visible@1.126.13(react@19.0.0)': dependencies: react: 19.0.0 - '@tamagui/use-presence@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/use-presence@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - '@tamagui/use-previous@1.126.12': {} + '@tamagui/use-previous@1.126.13': {} - '@tamagui/use-window-dimensions@1.126.12(react@19.0.0)': + '@tamagui/use-window-dimensions@1.126.13(react@19.0.0)': dependencies: - '@tamagui/constants': 1.126.12(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) react: 19.0.0 - '@tamagui/visually-hidden@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tamagui/visually-hidden@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) react: 19.0.0 transitivePeerDependencies: - react-dom - '@tamagui/web@1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': - dependencies: - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/helpers': 1.126.12(react@19.0.0) - '@tamagui/normalize-css-color': 1.126.12 - '@tamagui/timer': 1.126.12 - '@tamagui/types': 1.126.12 - '@tamagui/use-did-finish-ssr': 1.126.12(react@19.0.0) - '@tamagui/use-event': 1.126.12(react@19.0.0) - '@tamagui/use-force-update': 1.126.12(react@19.0.0) + '@tamagui/web@1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + dependencies: + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/helpers': 1.126.13(react@19.0.0) + '@tamagui/normalize-css-color': 1.126.13 + '@tamagui/timer': 1.126.13 + '@tamagui/types': 1.126.13 + '@tamagui/use-did-finish-ssr': 1.126.13(react@19.0.0) + '@tamagui/use-event': 1.126.13(react@19.0.0) + '@tamagui/use-force-update': 1.126.13(react@19.0.0) react: 19.0.0 react-dom: 19.0.0(react@19.0.0) - '@tamagui/z-index-stack@1.126.12': {} + '@tamagui/z-index-stack@1.126.13': {} - '@tanstack/query-async-storage-persister@5.75.7': + '@tanstack/query-async-storage-persister@5.76.2': dependencies: - '@tanstack/query-persist-client-core': 5.75.7 + '@tanstack/query-persist-client-core': 5.76.2 - '@tanstack/query-core@5.75.7': {} + '@tanstack/query-core@5.76.2': {} - '@tanstack/query-devtools@5.74.7': {} + '@tanstack/query-devtools@5.76.0': {} - '@tanstack/query-persist-client-core@5.75.7': + '@tanstack/query-persist-client-core@5.76.2': dependencies: - '@tanstack/query-core': 5.75.7 + '@tanstack/query-core': 5.76.2 - '@tanstack/react-query-devtools@5.75.7(@tanstack/react-query@5.75.7(react@19.0.0))(react@19.0.0)': + '@tanstack/react-query-devtools@5.76.2(@tanstack/react-query@5.76.2(react@19.0.0))(react@19.0.0)': dependencies: - '@tanstack/query-devtools': 5.74.7 - '@tanstack/react-query': 5.75.7(react@19.0.0) + '@tanstack/query-devtools': 5.76.0 + '@tanstack/react-query': 5.76.2(react@19.0.0) react: 19.0.0 - '@tanstack/react-query-next-experimental@5.75.7(@tanstack/react-query@5.75.7(react@19.0.0))(next@14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0))(react@19.0.0)': + '@tanstack/react-query-next-experimental@5.76.2(@tanstack/react-query@5.76.2(react@19.0.0))(next@14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0))(react@19.0.0)': dependencies: - '@tanstack/react-query': 5.75.7(react@19.0.0) - next: 14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0) + '@tanstack/react-query': 5.76.2(react@19.0.0) + next: 14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0) react: 19.0.0 - '@tanstack/react-query-persist-client@5.75.7(@tanstack/react-query@5.75.7(react@19.0.0))(react@19.0.0)': + '@tanstack/react-query-persist-client@5.76.2(@tanstack/react-query@5.76.2(react@19.0.0))(react@19.0.0)': dependencies: - '@tanstack/query-persist-client-core': 5.75.7 - '@tanstack/react-query': 5.75.7(react@19.0.0) + '@tanstack/query-persist-client-core': 5.76.2 + '@tanstack/react-query': 5.76.2(react@19.0.0) react: 19.0.0 - '@tanstack/react-query@5.75.7(react@19.0.0)': + '@tanstack/react-query@5.76.2(react@19.0.0)': dependencies: - '@tanstack/query-core': 5.75.7 + '@tanstack/query-core': 5.76.2 react: 19.0.0 - '@tanstack/react-virtual@3.13.8(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': + '@tanstack/react-virtual@3.13.9(react-dom@19.0.0(react@19.0.0))(react@19.0.0)': dependencies: - '@tanstack/virtual-core': 3.13.8 + '@tanstack/virtual-core': 3.13.9 react: 19.0.0 react-dom: 19.0.0(react@19.0.0) - '@tanstack/virtual-core@3.13.8': {} + '@tanstack/virtual-core@3.13.9': {} '@tootallnate/quickjs-emscripten@0.23.0': {} @@ -17437,13 +17354,22 @@ snapshots: '@trpc/server': 11.1.2(typescript@5.8.3) typescript: 5.8.3 + '@trpc/react-query@11.1.2(@tanstack/react-query@5.76.2(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': + dependencies: + '@tanstack/react-query': 5.76.2(react@19.0.0) + '@trpc/client': 11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3) + '@trpc/server': 11.1.2(typescript@5.8.3) + react: 19.0.0 + react-dom: 19.0.0(react@19.0.0) + typescript: 5.8.3 + '@trpc/server@11.1.2(typescript@5.8.3)': dependencies: typescript: 5.8.3 - '@trpc/tanstack-react-query@11.1.2(@tanstack/react-query@5.75.7(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': + '@trpc/tanstack-react-query@11.1.2(@tanstack/react-query@5.76.2(react@19.0.0))(@trpc/client@11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.1.2(typescript@5.8.3))(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(typescript@5.8.3)': dependencies: - '@tanstack/react-query': 5.75.7(react@19.0.0) + '@tanstack/react-query': 5.76.2(react@19.0.0) '@trpc/client': 11.1.2(@trpc/server@11.1.2(typescript@5.8.3))(typescript@5.8.3) '@trpc/server': 11.1.2(typescript@5.8.3) react: 19.0.0 @@ -17460,7 +17386,7 @@ snapshots: '@tsconfig/node16@1.0.4': {} - '@turbo/gen@1.13.4(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)': + '@turbo/gen@1.13.4(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)': dependencies: '@turbo/workspaces': 1.13.4 chalk: 2.4.2 @@ -17470,7 +17396,7 @@ snapshots: minimatch: 9.0.5 node-plop: 0.26.3 proxy-agent: 6.5.0 - ts-node: 10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3) + ts-node: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3) update-check: 1.5.4 validate-npm-package-name: 5.0.1 transitivePeerDependencies: @@ -17492,7 +17418,7 @@ snapshots: js-yaml: 4.1.0 ora: 4.1.1 rimraf: 3.0.2 - semver: 7.7.1 + semver: 7.7.2 update-check: 1.5.4 '@types/babel__core@7.20.5': @@ -17520,7 +17446,7 @@ snapshots: dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 - '@types/node': 20.17.46 + '@types/node': 20.17.50 '@types/responselike': 1.0.3 '@types/cookie@0.6.0': {} @@ -17539,16 +17465,16 @@ snapshots: '@types/fs-extra@9.0.13': dependencies: - '@types/node': 20.17.46 + '@types/node': 20.17.50 '@types/glob@7.2.0': dependencies: '@types/minimatch': 5.1.2 - '@types/node': 20.17.46 + '@types/node': 20.17.50 '@types/graceful-fs@4.1.9': dependencies: - '@types/node': 20.17.46 + '@types/node': 20.17.50 '@types/hammerjs@2.0.46': {} @@ -17581,16 +17507,16 @@ snapshots: '@types/keyv@3.1.4': dependencies: - '@types/node': 20.17.46 + '@types/node': 20.17.50 '@types/minimatch@5.1.2': {} '@types/node-fetch@2.6.12': dependencies: - '@types/node': 20.17.46 + '@types/node': 20.17.50 form-data: 4.0.2 - '@types/node@20.17.46': + '@types/node@20.17.50': dependencies: undici-types: 6.19.8 @@ -17598,15 +17524,15 @@ snapshots: '@types/parse-json@4.0.2': {} - '@types/react-dom@18.3.7(@types/react@19.1.3)': + '@types/react-dom@18.3.7(@types/react@19.1.5)': dependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@types/react-dom@19.1.3(@types/react@19.1.3)': + '@types/react-dom@19.1.5(@types/react@19.1.5)': dependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - '@types/react@19.1.3': + '@types/react@19.1.5': dependencies: csstype: 3.1.3 @@ -17614,13 +17540,13 @@ snapshots: '@types/responselike@1.0.3': dependencies: - '@types/node': 20.17.46 + '@types/node': 20.17.50 '@types/stack-utils@2.0.3': {} '@types/through@0.0.33': dependencies: - '@types/node': 20.17.46 + '@types/node': 20.17.50 '@types/tinycolor2@1.4.6': {} @@ -17628,7 +17554,7 @@ snapshots: '@types/ws@8.18.1': dependencies: - '@types/node': 20.17.46 + '@types/node': 20.17.50 '@types/yargs-parser@21.0.3': {} @@ -17638,7 +17564,7 @@ snapshots: '@types/yauzl@2.10.3': dependencies: - '@types/node': 20.17.46 + '@types/node': 20.17.50 optional: true '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.8.3))(eslint@8.57.1)(typescript@5.8.3)': @@ -17665,7 +17591,7 @@ snapshots: '@typescript-eslint/types': 7.18.0 '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.3) '@typescript-eslint/visitor-keys': 7.18.0 - debug: 4.4.0 + debug: 4.4.1 eslint: 8.57.1 optionalDependencies: typescript: 5.8.3 @@ -17681,7 +17607,7 @@ snapshots: dependencies: '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.8.3) '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.8.3) - debug: 4.4.0 + debug: 4.4.1 eslint: 8.57.1 ts-api-utils: 1.4.3(typescript@5.8.3) optionalDependencies: @@ -17689,35 +17615,35 @@ snapshots: transitivePeerDependencies: - supports-color - '@typescript-eslint/types@5.62.0': {} - '@typescript-eslint/types@7.18.0': {} - '@typescript-eslint/typescript-estree@5.62.0(typescript@5.8.3)': + '@typescript-eslint/types@8.32.1': {} + + '@typescript-eslint/typescript-estree@7.18.0(typescript@5.8.3)': dependencies: - '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/visitor-keys': 5.62.0 - debug: 4.4.0 + '@typescript-eslint/types': 7.18.0 + '@typescript-eslint/visitor-keys': 7.18.0 + debug: 4.4.1 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.7.1 - tsutils: 3.21.0(typescript@5.8.3) + minimatch: 9.0.5 + semver: 7.7.2 + ts-api-utils: 1.4.3(typescript@5.8.3) optionalDependencies: typescript: 5.8.3 transitivePeerDependencies: - supports-color - '@typescript-eslint/typescript-estree@7.18.0(typescript@5.8.3)': + '@typescript-eslint/typescript-estree@8.32.1(typescript@5.8.3)': dependencies: - '@typescript-eslint/types': 7.18.0 - '@typescript-eslint/visitor-keys': 7.18.0 - debug: 4.4.0 - globby: 11.1.0 + '@typescript-eslint/types': 8.32.1 + '@typescript-eslint/visitor-keys': 8.32.1 + debug: 4.4.1 + fast-glob: 3.3.3 is-glob: 4.0.3 minimatch: 9.0.5 - semver: 7.7.1 - ts-api-utils: 1.4.3(typescript@5.8.3) - optionalDependencies: + semver: 7.7.2 + ts-api-utils: 2.1.0(typescript@5.8.3) typescript: 5.8.3 transitivePeerDependencies: - supports-color @@ -17733,16 +17659,16 @@ snapshots: - supports-color - typescript - '@typescript-eslint/visitor-keys@5.62.0': - dependencies: - '@typescript-eslint/types': 5.62.0 - eslint-visitor-keys: 3.4.3 - '@typescript-eslint/visitor-keys@7.18.0': dependencies: '@typescript-eslint/types': 7.18.0 eslint-visitor-keys: 3.4.3 + '@typescript-eslint/visitor-keys@8.32.1': + dependencies: + '@typescript-eslint/types': 8.32.1 + eslint-visitor-keys: 4.2.0 + '@ungap/structured-clone@1.3.0': {} '@urql/core@5.1.1(graphql@15.10.1)': @@ -17757,29 +17683,10 @@ snapshots: '@urql/core': 5.1.1(graphql@15.10.1) wonka: 6.3.5 - '@vercel/nft@0.27.7(rollup@4.40.2)': - dependencies: - '@mapbox/node-pre-gyp': 1.0.11 - '@rollup/pluginutils': 5.1.4(rollup@4.40.2) - acorn: 8.14.1 - acorn-import-attributes: 1.9.5(acorn@8.14.1) - async-sema: 3.1.1 - bindings: 1.5.0 - estree-walker: 2.0.2 - glob: 7.2.3 - graceful-fs: 4.2.11 - micromatch: 4.0.8 - node-gyp-build: 4.8.4 - resolve-from: 5.0.0 - transitivePeerDependencies: - - encoding - - rollup - - supports-color - - '@vercel/nft@0.29.2(rollup@4.40.2)': + '@vercel/nft@0.29.3(rollup@4.41.0)': dependencies: '@mapbox/node-pre-gyp': 2.0.0 - '@rollup/pluginutils': 5.1.4(rollup@4.40.2) + '@rollup/pluginutils': 5.1.4(rollup@4.41.0) acorn: 8.14.1 acorn-import-attributes: 1.9.5(acorn@8.14.1) async-sema: 3.1.1 @@ -17802,11 +17709,24 @@ snapshots: estree-walker: 2.0.2 source-map-js: 1.2.1 + '@vue/compiler-core@3.5.14': + dependencies: + '@babel/parser': 7.27.2 + '@vue/shared': 3.5.14 + entities: 4.5.0 + estree-walker: 2.0.2 + source-map-js: 1.2.1 + '@vue/compiler-dom@3.3.4': dependencies: '@vue/compiler-core': 3.3.4 '@vue/shared': 3.3.4 + '@vue/compiler-dom@3.5.14': + dependencies: + '@vue/compiler-core': 3.5.14 + '@vue/shared': 3.5.14 + '@vue/compiler-sfc@3.3.4': dependencies: '@babel/parser': 7.27.2 @@ -17820,11 +17740,28 @@ snapshots: postcss: 8.5.3 source-map-js: 1.2.1 + '@vue/compiler-sfc@3.5.14': + dependencies: + '@babel/parser': 7.27.2 + '@vue/compiler-core': 3.5.14 + '@vue/compiler-dom': 3.5.14 + '@vue/compiler-ssr': 3.5.14 + '@vue/shared': 3.5.14 + estree-walker: 2.0.2 + magic-string: 0.30.17 + postcss: 8.5.3 + source-map-js: 1.2.1 + '@vue/compiler-ssr@3.3.4': dependencies: '@vue/compiler-dom': 3.3.4 '@vue/shared': 3.3.4 + '@vue/compiler-ssr@3.5.14': + dependencies: + '@vue/compiler-dom': 3.5.14 + '@vue/shared': 3.5.14 + '@vue/reactivity-transform@3.3.4': dependencies: '@babel/parser': 7.27.2 @@ -17856,6 +17793,8 @@ snapshots: '@vue/shared@3.3.4': {} + '@vue/shared@3.5.14': {} + '@webassemblyjs/ast@1.14.1': dependencies: '@webassemblyjs/helper-numbers': 1.13.2 @@ -17937,12 +17876,12 @@ snapshots: '@whatwg-node/promise-helpers': 1.3.2 tslib: 2.8.1 - '@whatwg-node/fetch@0.10.7': + '@whatwg-node/fetch@0.10.8': dependencies: - '@whatwg-node/node-fetch': 0.7.19 + '@whatwg-node/node-fetch': 0.7.21 urlpattern-polyfill: 10.1.0 - '@whatwg-node/node-fetch@0.7.19': + '@whatwg-node/node-fetch@0.7.21': dependencies: '@fastify/busboy': 3.1.1 '@whatwg-node/disposablestack': 0.0.6 @@ -17956,7 +17895,7 @@ snapshots: '@whatwg-node/server@0.9.71': dependencies: '@whatwg-node/disposablestack': 0.0.6 - '@whatwg-node/fetch': 0.10.7 + '@whatwg-node/fetch': 0.10.8 '@whatwg-node/promise-helpers': 1.3.2 tslib: 2.8.1 @@ -17966,8 +17905,6 @@ snapshots: '@xtuc/long@4.2.2': {} - abbrev@1.1.1: {} - abbrev@3.0.1: {} abort-controller@3.0.0: @@ -17997,12 +17934,6 @@ snapshots: acorn@8.14.1: {} - agent-base@6.0.2: - dependencies: - debug: 4.4.0 - transitivePeerDependencies: - - supports-color - agent-base@7.1.3: {} aggregate-error@3.1.0: @@ -18075,34 +18006,6 @@ snapshots: normalize-path: 3.0.0 picomatch: 2.3.1 - aproba@2.0.0: {} - - archiver-utils@2.1.0: - dependencies: - glob: 7.2.3 - graceful-fs: 4.2.11 - lazystream: 1.0.1 - lodash.defaults: 4.2.0 - lodash.difference: 4.5.0 - lodash.flatten: 4.4.0 - lodash.isplainobject: 4.0.6 - lodash.union: 4.6.0 - normalize-path: 3.0.0 - readable-stream: 2.3.8 - - archiver-utils@3.0.4: - dependencies: - glob: 7.2.3 - graceful-fs: 4.2.11 - lazystream: 1.0.1 - lodash.defaults: 4.2.0 - lodash.difference: 4.5.0 - lodash.flatten: 4.4.0 - lodash.isplainobject: 4.0.6 - lodash.union: 4.6.0 - normalize-path: 3.0.0 - readable-stream: 3.6.2 - archiver-utils@5.0.2: dependencies: glob: 10.4.5 @@ -18113,16 +18016,6 @@ snapshots: normalize-path: 3.0.0 readable-stream: 4.7.0 - archiver@5.3.2: - dependencies: - archiver-utils: 2.1.0 - async: 3.2.6 - buffer-crc32: 0.2.13 - readable-stream: 3.6.2 - readdir-glob: 1.1.3 - tar-stream: 2.2.0 - zip-stream: 4.1.1 - archiver@7.0.1: dependencies: archiver-utils: 5.0.2 @@ -18133,11 +18026,6 @@ snapshots: tar-stream: 3.1.7 zip-stream: 6.0.1 - are-we-there-yet@2.0.0: - dependencies: - delegates: 1.0.0 - readable-stream: 3.6.2 - arg@4.1.0: {} arg@4.1.3: {} @@ -18152,7 +18040,7 @@ snapshots: argsarray@0.0.1: {} - aria-hidden@1.2.4: + aria-hidden@1.2.6: dependencies: tslib: 2.8.1 @@ -18167,7 +18055,7 @@ snapshots: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 es-object-atoms: 1.1.1 get-intrinsic: 1.3.0 is-string: 1.1.1 @@ -18178,7 +18066,7 @@ snapshots: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 es-errors: 1.3.0 es-object-atoms: 1.1.1 es-shim-unscopables: 1.1.0 @@ -18188,7 +18076,7 @@ snapshots: call-bind: 1.0.8 call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 es-errors: 1.3.0 es-object-atoms: 1.1.1 es-shim-unscopables: 1.1.0 @@ -18197,21 +18085,21 @@ snapshots: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 es-shim-unscopables: 1.1.0 array.prototype.flatmap@1.3.3: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 es-shim-unscopables: 1.1.0 array.prototype.tosorted@1.1.4: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 es-errors: 1.3.0 es-shim-unscopables: 1.1.0 @@ -18220,7 +18108,7 @@ snapshots: array-buffer-byte-length: 1.0.2 call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 es-errors: 1.3.0 get-intrinsic: 1.3.0 is-array-buffer: 3.0.5 @@ -18235,7 +18123,7 @@ snapshots: object.assign: 4.1.7 util: 0.12.5 - ast-module-types@5.0.0: {} + ast-module-types@6.0.1: {} ast-types-flow@0.0.8: {} @@ -18258,7 +18146,7 @@ snapshots: autoprefixer@10.4.21(postcss@8.5.3): dependencies: browserslist: 4.24.5 - caniuse-lite: 1.0.30001717 + caniuse-lite: 1.0.30001718 fraction.js: 4.3.7 normalize-range: 0.1.2 picocolors: 1.1.1 @@ -18309,12 +18197,12 @@ snapshots: transitivePeerDependencies: - supports-color - babel-loader@9.2.1(@babel/core@7.27.1)(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))): + babel-loader@9.2.1(@babel/core@7.27.1)(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))): dependencies: '@babel/core': 7.27.1 find-cache-dir: 4.0.0 schema-utils: 4.3.2 - webpack: 5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17)) + webpack: 5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17)) babel-plugin-inline-import@3.0.0: dependencies: @@ -18412,7 +18300,7 @@ snapshots: babel-plugin-react-native-web: 0.19.13 babel-plugin-syntax-hermes-parser: 0.25.1 babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.27.1) - debug: 4.4.0 + debug: 4.4.1 react-refresh: 0.14.2 resolve-from: 5.0.0 transitivePeerDependencies: @@ -18432,7 +18320,7 @@ snapshots: bare-events@2.5.4: optional: true - bare-fs@4.1.4: + bare-fs@4.1.5: dependencies: bare-events: 2.5.4 bare-path: 3.0.0 @@ -18513,15 +18401,15 @@ snapshots: browserslist@4.22.1: dependencies: - caniuse-lite: 1.0.30001717 - electron-to-chromium: 1.5.151 + caniuse-lite: 1.0.30001718 + electron-to-chromium: 1.5.157 node-releases: 2.0.19 update-browserslist-db: 1.1.3(browserslist@4.22.1) browserslist@4.24.5: dependencies: - caniuse-lite: 1.0.30001717 - electron-to-chromium: 1.5.151 + caniuse-lite: 1.0.30001718 + electron-to-chromium: 1.5.157 node-releases: 2.0.19 update-browserslist-db: 1.1.3(browserslist@4.24.5) @@ -18552,11 +18440,11 @@ snapshots: esbuild: 0.18.20 load-tsconfig: 0.2.5 - burnt@0.12.2(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + burnt@0.12.2(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) sf-symbols-typescript: 1.0.0 sonner: 0.3.5(react-dom@19.0.0(react@19.0.0))(react@19.0.0) transitivePeerDependencies: @@ -18568,7 +18456,7 @@ snapshots: bytes@3.1.2: {} - c12@3.0.3(magicast@0.3.5): + c12@3.0.4(magicast@0.3.5): dependencies: chokidar: 4.0.3 confbox: 0.2.2 @@ -18658,7 +18546,7 @@ snapshots: camelcase@6.3.0: {} - caniuse-lite@1.0.30001717: {} + caniuse-lite@1.0.30001718: {} chalk@2.4.2: dependencies: @@ -18713,7 +18601,7 @@ snapshots: edit-json-file: 1.8.1 globby: 13.2.2 js-yaml: 4.1.0 - semver: 7.7.1 + semver: 7.7.2 table: 6.9.0 type-fest: 4.41.0 @@ -18735,13 +18623,11 @@ snapshots: chownr@1.1.4: {} - chownr@2.0.0: {} - chownr@3.0.0: {} chrome-launcher@0.15.2: dependencies: - '@types/node': 20.17.46 + '@types/node': 20.17.50 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -18752,7 +18638,7 @@ snapshots: chromium-edge-launcher@0.2.0: dependencies: - '@types/node': 20.17.46 + '@types/node': 20.17.50 escape-string-regexp: 4.0.0 is-wsl: 2.2.0 lighthouse-logger: 1.4.2 @@ -18829,9 +18715,9 @@ snapshots: cluster-key-slot@1.1.2: {} - cmdk@0.2.1(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): + cmdk@0.2.1(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1): dependencies: - '@radix-ui/react-dialog': 1.0.0(@types/react@19.1.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) + '@radix-ui/react-dialog': 1.0.0(@types/react@19.1.5)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) react: 18.3.1 react-dom: 18.3.1(react@18.3.1) transitivePeerDependencies: @@ -18862,8 +18748,6 @@ snapshots: color-name: 1.1.4 simple-swizzle: 0.2.2 - color-support@1.1.3: {} - color2k@2.0.3: {} color@3.2.1: @@ -18907,13 +18791,6 @@ snapshots: compatx@0.2.0: {} - compress-commons@4.1.2: - dependencies: - buffer-crc32: 0.2.13 - crc32-stream: 4.0.3 - normalize-path: 3.0.0 - readable-stream: 3.6.2 - compress-commons@6.0.2: dependencies: crc-32: 1.2.2 @@ -18960,8 +18837,6 @@ snapshots: consola@3.4.2: {} - console-control-strings@1.1.0: {} - constant-case@2.0.0: dependencies: snake-case: 2.1.0 @@ -18987,6 +18862,11 @@ snapshots: dependencies: is-what: 4.1.16 + copy-file@11.0.0: + dependencies: + graceful-fs: 4.2.11 + p-event: 6.0.1 + core-js-compat@3.42.0: dependencies: browserslist: 4.24.5 @@ -19019,19 +18899,8 @@ snapshots: optionalDependencies: typescript: 5.2.2 - cp-file@10.0.0: - dependencies: - graceful-fs: 4.2.11 - nested-error-stacks: 2.1.1 - p-event: 5.0.1 - crc-32@1.2.2: {} - crc32-stream@4.0.3: - dependencies: - crc-32: 1.2.2 - readable-stream: 3.6.2 - crc32-stream@6.0.0: dependencies: crc-32: 1.2.2 @@ -19071,7 +18940,7 @@ snapshots: dependencies: hyphenate-style-name: 1.1.0 - css-loader@6.11.0(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))): + css-loader@6.11.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))): dependencies: icss-utils: 5.1.0(postcss@8.5.3) postcss: 8.5.3 @@ -19080,9 +18949,9 @@ snapshots: postcss-modules-scope: 3.2.1(postcss@8.5.3) postcss-modules-values: 4.0.0(postcss@8.5.3) postcss-value-parser: 4.2.0 - semver: 7.7.1 + semver: 7.7.2 optionalDependencies: - webpack: 5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17)) + webpack: 5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17)) css-select@4.3.0: dependencies: @@ -19151,10 +19020,10 @@ snapshots: date-fns@4.1.0: {} - db0@0.3.2(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0)): + db0@0.3.2(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0)): optionalDependencies: '@libsql/client': 0.5.6 - drizzle-orm: 0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0) + drizzle-orm: 0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0) debug@2.6.9: dependencies: @@ -19164,7 +19033,7 @@ snapshots: dependencies: ms: 2.1.3 - debug@4.4.0: + debug@4.4.1: dependencies: ms: 2.1.3 @@ -19225,8 +19094,6 @@ snapshots: delayed-stream@1.0.0: {} - delegates@1.0.0: {} - denque@2.1.0: {} depd@2.0.0: {} @@ -19243,45 +19110,58 @@ snapshots: detect-node-es@1.1.0: {} - detective-amd@5.0.2: + detective-amd@6.0.1: dependencies: - ast-module-types: 5.0.0 + ast-module-types: 6.0.1 escodegen: 2.1.0 - get-amd-module-type: 5.0.1 - node-source-walk: 6.0.2 + get-amd-module-type: 6.0.1 + node-source-walk: 7.0.1 - detective-cjs@5.0.1: + detective-cjs@6.0.1: dependencies: - ast-module-types: 5.0.0 - node-source-walk: 6.0.2 + ast-module-types: 6.0.1 + node-source-walk: 7.0.1 - detective-es6@4.0.1: + detective-es6@5.0.1: dependencies: - node-source-walk: 6.0.2 + node-source-walk: 7.0.1 - detective-postcss@6.1.3: + detective-postcss@7.0.1(postcss@8.5.3): dependencies: is-url: 1.2.4 postcss: 8.5.3 postcss-values-parser: 6.0.2(postcss@8.5.3) - detective-sass@5.0.3: + detective-sass@6.0.1: dependencies: gonzales-pe: 4.3.0 - node-source-walk: 6.0.2 + node-source-walk: 7.0.1 - detective-scss@4.0.3: + detective-scss@5.0.1: dependencies: gonzales-pe: 4.3.0 - node-source-walk: 6.0.2 + node-source-walk: 7.0.1 - detective-stylus@4.0.0: {} + detective-stylus@5.0.1: {} - detective-typescript@11.2.0: + detective-typescript@14.0.0(typescript@5.8.3): dependencies: - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.8.3) - ast-module-types: 5.0.0 - node-source-walk: 6.0.2 + '@typescript-eslint/typescript-estree': 8.32.1(typescript@5.8.3) + ast-module-types: 6.0.1 + node-source-walk: 7.0.1 + typescript: 5.8.3 + transitivePeerDependencies: + - supports-color + + detective-vue2@2.2.0(typescript@5.8.3): + dependencies: + '@dependents/detective-less': 5.0.1 + '@vue/compiler-sfc': 3.5.14 + detective-es6: 5.0.1 + detective-sass: 6.0.1 + detective-scss: 5.0.1 + detective-stylus: 5.0.1 + detective-typescript: 14.0.0(typescript@5.8.3) typescript: 5.8.3 transitivePeerDependencies: - supports-color @@ -19398,21 +19278,21 @@ snapshots: glob: 8.1.0 hanji: 0.0.5 json-diff: 0.9.0 - zod: 3.24.4 + zod: 3.25.23 transitivePeerDependencies: - supports-color - drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0): + drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0): optionalDependencies: '@libsql/client': 0.5.6 - '@types/react': 19.1.3 - expo-sqlite: 15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@types/react': 19.1.5 + expo-sqlite: 15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 - drizzle-zod@0.5.1(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0))(zod@3.24.4): + drizzle-zod@0.5.1(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0))(zod@3.25.23): dependencies: - drizzle-orm: 0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0) - zod: 3.24.4 + drizzle-orm: 0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0) + zod: 3.25.23 dunder-proto@1.0.1: dependencies: @@ -19434,7 +19314,7 @@ snapshots: ee-first@1.1.1: {} - electron-to-chromium@1.5.151: {} + electron-to-chromium@1.5.157: {} emoji-regex@8.0.0: {} @@ -19455,7 +19335,7 @@ snapshots: enhanced-resolve@5.18.1: dependencies: graceful-fs: 4.2.11 - tapable: 2.2.1 + tapable: 2.2.2 entities@2.2.0: {} @@ -19484,7 +19364,7 @@ snapshots: dependencies: stackframe: 1.3.4 - es-abstract@1.23.9: + es-abstract@1.23.10: dependencies: array-buffer-byte-length: 1.0.2 arraybuffer.prototype.slice: 1.0.4 @@ -19547,7 +19427,7 @@ snapshots: call-bind: 1.0.8 call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 es-errors: 1.3.0 es-set-tostringtag: 2.1.0 function-bind: 1.1.2 @@ -19609,31 +19489,31 @@ snapshots: es6-iterator: 2.0.3 es6-symbol: 3.1.4 - esbuild-loader@4.3.0(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))): + esbuild-loader@4.3.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))): dependencies: esbuild: 0.25.4 - get-tsconfig: 4.10.0 + get-tsconfig: 4.10.1 loader-utils: 2.0.4 - webpack: 5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17)) + webpack: 5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17)) webpack-sources: 1.4.3 esbuild-plugin-es5@2.1.1(esbuild@0.25.4): dependencies: - '@swc/core': 1.11.24(@swc/helpers@0.5.17) + '@swc/core': 1.11.29(@swc/helpers@0.5.17) '@swc/helpers': 0.5.17 deepmerge: 4.3.1 esbuild: 0.25.4 esbuild-register@3.6.0(esbuild@0.19.12): dependencies: - debug: 4.4.0 + debug: 4.4.1 esbuild: 0.19.12 transitivePeerDependencies: - supports-color esbuild-register@3.6.0(esbuild@0.25.4): dependencies: - debug: 4.4.0 + debug: 4.4.1 esbuild: 0.25.4 transitivePeerDependencies: - supports-color @@ -19885,6 +19765,8 @@ snapshots: eslint-visitor-keys@3.4.3: {} + eslint-visitor-keys@4.2.0: {} + eslint@8.57.1: dependencies: '@eslint-community/eslint-utils': 4.7.0(eslint@8.57.1) @@ -19898,7 +19780,7 @@ snapshots: ajv: 6.12.6 chalk: 4.1.2 cross-spawn: 7.0.6 - debug: 4.4.0 + debug: 4.4.1 doctrine: 3.0.0 escape-string-regexp: 4.0.0 eslint-scope: 7.2.2 @@ -19990,18 +19872,6 @@ snapshots: signal-exit: 3.0.7 strip-final-newline: 2.0.0 - execa@7.2.0: - dependencies: - cross-spawn: 7.0.6 - get-stream: 6.0.1 - human-signals: 4.3.1 - is-stream: 3.0.0 - merge-stream: 2.0.0 - npm-run-path: 5.3.0 - onetime: 6.0.0 - signal-exit: 3.0.7 - strip-final-newline: 3.0.0 - execa@8.0.1: dependencies: cross-spawn: 7.0.6 @@ -20016,133 +19886,133 @@ snapshots: expand-template@2.0.3: {} - expo-application@6.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-application@6.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) - expo-asset@11.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + expo-asset@11.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: '@expo/image-utils': 0.7.4 - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) transitivePeerDependencies: - supports-color - expo-background-fetch@13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)): + expo-background-fetch@13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - expo-task-manager: 13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + expo-task-manager: 13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) transitivePeerDependencies: - react-native expo-bluetooth@0.0.0: {} - expo-blur@14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + expo-blur@14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - expo-constants@17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)): + expo-constants@17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)): dependencies: '@expo/config': 11.0.10 '@expo/env': 1.0.5 - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) transitivePeerDependencies: - supports-color - expo-dev-client@5.1.8(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-dev-client@5.1.8(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - expo-dev-launcher: 5.1.11(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) - expo-dev-menu: 6.1.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) - expo-dev-menu-interface: 1.10.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) - expo-manifests: 0.16.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) - expo-updates-interface: 1.1.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + expo-dev-launcher: 5.1.11(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) + expo-dev-menu: 6.1.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) + expo-dev-menu-interface: 1.10.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) + expo-manifests: 0.16.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) + expo-updates-interface: 1.1.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) transitivePeerDependencies: - supports-color - expo-dev-launcher@5.1.11(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-dev-launcher@5.1.11(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: ajv: 8.11.0 - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - expo-dev-menu: 6.1.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) - expo-manifests: 0.16.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + expo-dev-menu: 6.1.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) + expo-manifests: 0.16.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) resolve-from: 5.0.0 transitivePeerDependencies: - supports-color - expo-dev-menu-interface@1.10.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-dev-menu-interface@1.10.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) - expo-dev-menu@6.1.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-dev-menu@6.1.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - expo-dev-menu-interface: 1.10.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + expo-dev-menu-interface: 1.10.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) - expo-device@7.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-device@7.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) ua-parser-js: 0.7.40 - expo-drizzle-studio-plugin@0.0.2(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-drizzle-studio-plugin@0.0.2(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - expo-sqlite: 14.0.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + expo-sqlite: 14.0.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) expo-eas-client@0.14.3: {} - expo-file-system@18.1.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)): + expo-file-system@18.1.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - expo-font@11.10.3(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-font@11.10.3(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) fontfaceobserver: 2.3.0 - expo-font@13.3.1(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0): + expo-font@13.3.1(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) fontfaceobserver: 2.3.0 react: 19.0.0 - expo-haptics@14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-haptics@14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-json-utils@0.15.0: {} - expo-keep-awake@14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0): + expo-keep-awake@14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 - expo-linear-gradient@14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + expo-linear-gradient@14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - expo-linking@7.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + expo-linking@7.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: - expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) invariant: 2.2.4 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) transitivePeerDependencies: - expo - supports-color - expo-manifests@0.16.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-manifests@0.16.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: '@expo/config': 11.0.10 - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-json-utils: 0.15.0 transitivePeerDependencies: - supports-color @@ -20161,56 +20031,56 @@ snapshots: dependencies: invariant: 2.2.4 - expo-navigation-bar@4.2.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + expo-navigation-bar@4.2.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: '@react-native/normalize-colors': 0.79.2 - debug: 4.4.0 - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + debug: 4.4.1 + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) - react-native-edge-to-edge: 1.6.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - react-native-is-edge-to-edge: 1.1.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) + react-native-edge-to-edge: 1.6.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + react-native-is-edge-to-edge: 1.1.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - supports-color - expo-notifications@0.31.2(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + expo-notifications@0.31.2(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: '@expo/image-utils': 0.7.4 '@ide/backoff': 1.0.0 abort-controller: 3.0.0 assert: 2.1.0 badgin: 1.2.3 - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - expo-application: 6.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) - expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + expo-application: 6.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) + expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) transitivePeerDependencies: - supports-color - expo-router@5.0.6(sdevgqcnb4s7gkn5llf2fp5dhi): + expo-router@5.0.7(j7aitewh3qrlmj3lk335ovk6zq): dependencies: - '@expo/metro-runtime': 5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + '@expo/metro-runtime': 5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) '@expo/server': 0.6.2 - '@radix-ui/react-slot': 1.2.0(@types/react@19.1.3)(react@19.0.0) - '@react-navigation/bottom-tabs': 7.3.12(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@react-navigation/native': 7.1.8(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@react-navigation/native-stack': 7.3.12(@react-navigation/native@7.1.8(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@radix-ui/react-slot': 1.2.0(@types/react@19.1.5)(react@19.0.0) + '@react-navigation/bottom-tabs': 7.3.13(@react-navigation/native@7.1.9(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@react-navigation/native': 7.1.9(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@react-navigation/native-stack': 7.3.13(@react-navigation/native@7.1.9(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-safe-area-context@5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) client-only: 0.0.1 - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) - expo-linking: 7.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) + expo-linking: 7.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) invariant: 2.2.4 react-fast-compare: 3.2.2 - react-native-is-edge-to-edge: 1.1.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - react-native-safe-area-context: 5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - react-native-screens: 4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native-is-edge-to-edge: 1.1.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + react-native-safe-area-context: 5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + react-native-screens: 4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) schema-utils: 4.3.2 semver: 7.6.3 server-only: 0.0.1 shallowequal: 1.1.0 optionalDependencies: - react-native-reanimated: 3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native-reanimated: 3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - '@react-native-masked-view/masked-view' - '@types/react' @@ -20218,45 +20088,45 @@ snapshots: - react-native - supports-color - expo-splash-screen@0.30.8(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-splash-screen@0.30.8(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: '@expo/prebuild-config': 9.0.6 - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - supports-color - expo-sqlite@14.0.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-sqlite@14.0.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: '@expo/websql': 1.0.1 - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) - expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: await-lock: 2.2.2 - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - expo-status-bar@2.2.3(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + expo-status-bar@2.2.3(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) - react-native-edge-to-edge: 1.6.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - react-native-is-edge-to-edge: 1.1.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) + react-native-edge-to-edge: 1.6.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + react-native-is-edge-to-edge: 1.1.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-structured-headers@4.1.0: {} - expo-task-manager@13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)): + expo-task-manager@13.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) unimodules-app-loader: 5.1.3 - expo-updates-interface@1.1.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)): + expo-updates-interface@1.1.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) - expo-updates@0.28.13(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0): + expo-updates@0.28.13(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0): dependencies: '@expo/code-signing-certificates': 0.0.5 '@expo/config': 11.0.10 @@ -20264,11 +20134,11 @@ snapshots: '@expo/spawn-async': 1.7.2 arg: 4.1.0 chalk: 4.1.2 - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) expo-eas-client: 0.14.3 - expo-manifests: 0.16.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + expo-manifests: 0.16.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) expo-structured-headers: 4.1.0 - expo-updates-interface: 1.1.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)) + expo-updates-interface: 1.1.0(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)) glob: 10.4.5 ignore: 5.3.2 react: 19.0.0 @@ -20276,13 +20146,13 @@ snapshots: transitivePeerDependencies: - supports-color - expo-video@2.1.9(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + expo-video@2.1.9(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: - expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + expo: 53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: '@babel/runtime': 7.27.1 '@expo/cli': 0.24.13(graphql@15.10.1) @@ -20290,21 +20160,21 @@ snapshots: '@expo/config-plugins': 10.0.2 '@expo/fingerprint': 0.12.4 '@expo/metro-config': 0.20.14 - '@expo/vector-icons': 14.1.0(expo-font@13.3.1(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@expo/vector-icons': 14.1.0(expo-font@13.3.1(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) babel-preset-expo: 13.1.11(@babel/core@7.27.1) - expo-asset: 11.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) - expo-file-system: 18.1.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) - expo-font: 13.3.1(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0) - expo-keep-awake: 14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0) + expo-asset: 11.1.5(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + expo-constants: 17.1.6(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) + expo-file-system: 18.1.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) + expo-font: 13.3.1(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0) + expo-keep-awake: 14.1.4(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0) expo-modules-autolinking: 2.1.10 expo-modules-core: 2.3.13 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) - react-native-edge-to-edge: 1.6.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) + react-native-edge-to-edge: 1.6.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) whatwg-url-without-unicode: 8.0.0-3 optionalDependencies: - '@expo/metro-runtime': 5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)) + '@expo/metro-runtime': 5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)) transitivePeerDependencies: - '@babel/core' - babel-plugin-react-compiler @@ -20329,7 +20199,7 @@ snapshots: extract-zip@2.0.1: dependencies: - debug: 4.4.0 + debug: 4.4.1 get-stream: 5.2.0 yauzl: 2.10.0 optionalDependencies: @@ -20417,11 +20287,11 @@ snapshots: dependencies: flat-cache: 3.2.0 - file-loader@6.2.0(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))): + file-loader@6.2.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))): dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17)) + webpack: 5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17)) file-uri-to-path@1.0.0: {} @@ -20431,7 +20301,7 @@ snapshots: filter-obj@1.1.0: {} - filter-obj@5.1.0: {} + filter-obj@6.1.0: {} finalhandler@1.1.2: dependencies: @@ -20574,10 +20444,6 @@ snapshots: jsonfile: 6.1.0 universalify: 2.0.1 - fs-minipass@2.1.0: - dependencies: - minipass: 3.3.6 - fs.realpath@1.0.0: {} fsevents@2.3.3: @@ -20596,24 +20462,12 @@ snapshots: functions-have-names@1.2.3: {} - gauge@3.0.2: - dependencies: - aproba: 2.0.0 - color-support: 1.1.3 - console-control-strings: 1.1.0 - has-unicode: 2.0.1 - object-assign: 4.1.1 - signal-exit: 3.0.7 - string-width: 4.2.3 - strip-ansi: 6.0.1 - wide-align: 1.1.5 - gensync@1.0.0-beta.2: {} - get-amd-module-type@5.0.1: + get-amd-module-type@6.0.1: dependencies: - ast-module-types: 5.0.0 - node-source-walk: 6.0.2 + ast-module-types: 6.0.1 + node-source-walk: 7.0.1 get-caller-file@2.0.5: {} @@ -20657,7 +20511,7 @@ snapshots: es-errors: 1.3.0 get-intrinsic: 1.3.0 - get-tsconfig@4.10.0: + get-tsconfig@4.10.1: dependencies: resolve-pkg-maps: 1.0.0 @@ -20665,7 +20519,7 @@ snapshots: dependencies: basic-ftp: 5.0.5 data-uri-to-buffer: 6.0.2 - debug: 4.4.0 + debug: 4.4.1 transitivePeerDependencies: - supports-color @@ -20891,8 +20745,6 @@ snapshots: dependencies: has-symbols: 1.1.0 - has-unicode@2.0.1: {} - hasown@2.0.2: dependencies: function-bind: 1.1.2 @@ -20938,19 +20790,19 @@ snapshots: he: 1.2.0 param-case: 3.0.4 relateurl: 0.2.7 - terser: 5.39.0 + terser: 5.39.2 - html-webpack-plugin@5.6.3(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))): + html-webpack-plugin@5.6.3(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))): dependencies: '@types/html-minifier-terser': 6.1.0 html-minifier-terser: 6.1.0 lodash: 4.17.21 pretty-error: 4.0.0 - tapable: 2.2.1 + tapable: 2.2.2 optionalDependencies: - webpack: 5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17)) + webpack: 5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17)) - htmlnano@2.1.2(postcss@8.5.3)(relateurl@0.2.7)(svgo@2.8.0)(terser@5.39.0)(typescript@5.2.2): + htmlnano@2.1.2(postcss@8.5.3)(relateurl@0.2.7)(svgo@2.8.0)(terser@5.39.2)(typescript@5.2.2): dependencies: cosmiconfig: 9.0.0(typescript@5.2.2) posthtml: 0.16.6 @@ -20958,7 +20810,7 @@ snapshots: postcss: 8.5.3 relateurl: 0.2.7 svgo: 2.8.0 - terser: 5.39.0 + terser: 5.39.2 transitivePeerDependencies: - typescript @@ -20989,7 +20841,7 @@ snapshots: http-proxy-agent@7.0.2: dependencies: agent-base: 7.1.3 - debug: 4.4.0 + debug: 4.4.1 transitivePeerDependencies: - supports-color @@ -21005,17 +20857,10 @@ snapshots: quick-lru: 5.1.1 resolve-alpn: 1.2.1 - https-proxy-agent@5.0.1: - dependencies: - agent-base: 6.0.2 - debug: 4.4.0 - transitivePeerDependencies: - - supports-color - https-proxy-agent@7.0.6: dependencies: agent-base: 7.1.3 - debug: 4.4.0 + debug: 4.4.1 transitivePeerDependencies: - supports-color @@ -21023,8 +20868,6 @@ snapshots: human-signals@2.1.0: {} - human-signals@4.3.1: {} - human-signals@5.0.0: {} hyphenate-style-name@1.1.0: {} @@ -21161,7 +21004,7 @@ snapshots: dependencies: '@ioredis/commands': 1.2.0 cluster-key-slot: 1.1.2 - debug: 4.4.0 + debug: 4.4.1 denque: 2.1.0 lodash.defaults: 4.2.0 lodash.isarguments: 3.1.0 @@ -21442,7 +21285,7 @@ snapshots: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.17.46 + '@types/node': 20.17.50 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -21452,7 +21295,7 @@ snapshots: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 20.17.46 + '@types/node': 20.17.50 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -21479,7 +21322,7 @@ snapshots: jest-mock@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.17.46 + '@types/node': 20.17.50 jest-util: 29.7.0 jest-regex-util@29.6.3: {} @@ -21487,7 +21330,7 @@ snapshots: jest-util@29.7.0: dependencies: '@jest/types': 29.6.3 - '@types/node': 20.17.46 + '@types/node': 20.17.50 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -21504,13 +21347,13 @@ snapshots: jest-worker@27.5.1: dependencies: - '@types/node': 20.17.46 + '@types/node': 20.17.50 merge-stream: 2.0.0 supports-color: 8.1.1 jest-worker@29.7.0: dependencies: - '@types/node': 20.17.46 + '@types/node': 20.17.50 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 @@ -21523,9 +21366,9 @@ snapshots: jose@5.10.0: {} - jotai@2.12.4(@types/react@19.1.3)(react@19.0.0): + jotai@2.12.4(@types/react@19.1.5)(react@19.0.0): optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 react: 19.0.0 joycon@3.1.1: {} @@ -21620,7 +21463,7 @@ snapshots: dotenv: 16.5.0 winston: 3.17.0 - lan-network@0.1.6: {} + lan-network@0.1.7: {} language-subtag-registry@0.3.23: {} @@ -21679,7 +21522,7 @@ snapshots: lightningcss-darwin-arm64@1.27.0: optional: true - lightningcss-darwin-arm64@1.30.0: + lightningcss-darwin-arm64@1.30.1: optional: true lightningcss-darwin-x64@1.21.8: @@ -21688,7 +21531,7 @@ snapshots: lightningcss-darwin-x64@1.27.0: optional: true - lightningcss-darwin-x64@1.30.0: + lightningcss-darwin-x64@1.30.1: optional: true lightningcss-freebsd-x64@1.21.8: @@ -21697,7 +21540,7 @@ snapshots: lightningcss-freebsd-x64@1.27.0: optional: true - lightningcss-freebsd-x64@1.30.0: + lightningcss-freebsd-x64@1.30.1: optional: true lightningcss-linux-arm-gnueabihf@1.21.8: @@ -21706,7 +21549,7 @@ snapshots: lightningcss-linux-arm-gnueabihf@1.27.0: optional: true - lightningcss-linux-arm-gnueabihf@1.30.0: + lightningcss-linux-arm-gnueabihf@1.30.1: optional: true lightningcss-linux-arm64-gnu@1.21.8: @@ -21715,7 +21558,7 @@ snapshots: lightningcss-linux-arm64-gnu@1.27.0: optional: true - lightningcss-linux-arm64-gnu@1.30.0: + lightningcss-linux-arm64-gnu@1.30.1: optional: true lightningcss-linux-arm64-musl@1.21.8: @@ -21724,7 +21567,7 @@ snapshots: lightningcss-linux-arm64-musl@1.27.0: optional: true - lightningcss-linux-arm64-musl@1.30.0: + lightningcss-linux-arm64-musl@1.30.1: optional: true lightningcss-linux-x64-gnu@1.21.8: @@ -21733,7 +21576,7 @@ snapshots: lightningcss-linux-x64-gnu@1.27.0: optional: true - lightningcss-linux-x64-gnu@1.30.0: + lightningcss-linux-x64-gnu@1.30.1: optional: true lightningcss-linux-x64-musl@1.21.8: @@ -21742,13 +21585,13 @@ snapshots: lightningcss-linux-x64-musl@1.27.0: optional: true - lightningcss-linux-x64-musl@1.30.0: + lightningcss-linux-x64-musl@1.30.1: optional: true lightningcss-win32-arm64-msvc@1.27.0: optional: true - lightningcss-win32-arm64-msvc@1.30.0: + lightningcss-win32-arm64-msvc@1.30.1: optional: true lightningcss-win32-x64-msvc@1.21.8: @@ -21757,7 +21600,7 @@ snapshots: lightningcss-win32-x64-msvc@1.27.0: optional: true - lightningcss-win32-x64-msvc@1.30.0: + lightningcss-win32-x64-msvc@1.30.1: optional: true lightningcss@1.21.8: @@ -21789,20 +21632,20 @@ snapshots: lightningcss-win32-arm64-msvc: 1.27.0 lightningcss-win32-x64-msvc: 1.27.0 - lightningcss@1.30.0: + lightningcss@1.30.1: dependencies: detect-libc: 2.0.4 optionalDependencies: - lightningcss-darwin-arm64: 1.30.0 - lightningcss-darwin-x64: 1.30.0 - lightningcss-freebsd-x64: 1.30.0 - lightningcss-linux-arm-gnueabihf: 1.30.0 - lightningcss-linux-arm64-gnu: 1.30.0 - lightningcss-linux-arm64-musl: 1.30.0 - lightningcss-linux-x64-gnu: 1.30.0 - lightningcss-linux-x64-musl: 1.30.0 - lightningcss-win32-arm64-msvc: 1.30.0 - lightningcss-win32-x64-msvc: 1.30.0 + lightningcss-darwin-arm64: 1.30.1 + lightningcss-darwin-x64: 1.30.1 + lightningcss-freebsd-x64: 1.30.1 + lightningcss-linux-arm-gnueabihf: 1.30.1 + lightningcss-linux-arm64-gnu: 1.30.1 + lightningcss-linux-arm64-musl: 1.30.1 + lightningcss-linux-x64-gnu: 1.30.1 + lightningcss-linux-x64-musl: 1.30.1 + lightningcss-win32-arm64-msvc: 1.30.1 + lightningcss-win32-x64-msvc: 1.30.1 lilconfig@2.1.0: {} @@ -21833,7 +21676,7 @@ snapshots: lmdb@2.5.2: dependencies: - msgpackr: 1.11.2 + msgpackr: 1.11.4 node-addon-api: 4.3.0 node-gyp-build-optional-packages: 5.0.3 ordered-binary: 1.5.3 @@ -21901,10 +21744,6 @@ snapshots: lodash.defaults@4.2.0: {} - lodash.difference@4.5.0: {} - - lodash.flatten@4.4.0: {} - lodash.get@4.4.2: {} lodash.isarguments@3.1.0: {} @@ -21919,8 +21758,6 @@ snapshots: lodash.truncate@4.4.2: {} - lodash.union@4.6.0: {} - lodash@4.17.21: {} log-symbols@2.2.0: @@ -22038,7 +21875,7 @@ snapshots: merge2@1.4.1: {} - metro-babel-transformer@0.82.3: + metro-babel-transformer@0.82.4: dependencies: '@babel/core': 7.27.1 flow-enums-runtime: 0.0.6 @@ -22047,43 +21884,43 @@ snapshots: transitivePeerDependencies: - supports-color - metro-cache-key@0.82.3: + metro-cache-key@0.82.4: dependencies: flow-enums-runtime: 0.0.6 - metro-cache@0.82.3: + metro-cache@0.82.4: dependencies: exponential-backoff: 3.1.2 flow-enums-runtime: 0.0.6 https-proxy-agent: 7.0.6 - metro-core: 0.82.3 + metro-core: 0.82.4 transitivePeerDependencies: - supports-color - metro-config@0.82.3: + metro-config@0.82.4: dependencies: connect: 3.7.0 cosmiconfig: 5.2.1 flow-enums-runtime: 0.0.6 jest-validate: 29.7.0 - metro: 0.82.3 - metro-cache: 0.82.3 - metro-core: 0.82.3 - metro-runtime: 0.82.3 + metro: 0.82.4 + metro-cache: 0.82.4 + metro-core: 0.82.4 + metro-runtime: 0.82.4 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - metro-core@0.82.3: + metro-core@0.82.4: dependencies: flow-enums-runtime: 0.0.6 lodash.throttle: 4.1.1 - metro-resolver: 0.82.3 + metro-resolver: 0.82.4 - metro-file-map@0.82.3: + metro-file-map@0.82.4: dependencies: - debug: 4.4.0 + debug: 4.4.1 fb-watchman: 2.0.2 flow-enums-runtime: 0.0.6 graceful-fs: 4.2.11 @@ -22098,49 +21935,49 @@ snapshots: metro-minify-terser@0.80.12: dependencies: flow-enums-runtime: 0.0.6 - terser: 5.39.0 + terser: 5.39.2 - metro-minify-terser@0.82.3: + metro-minify-terser@0.82.4: dependencies: flow-enums-runtime: 0.0.6 - terser: 5.39.0 + terser: 5.39.2 - metro-resolver@0.82.3: + metro-resolver@0.82.4: dependencies: flow-enums-runtime: 0.0.6 - metro-runtime@0.82.3: + metro-runtime@0.82.4: dependencies: '@babel/runtime': 7.27.1 flow-enums-runtime: 0.0.6 - metro-source-map@0.82.3: + metro-source-map@0.82.4: dependencies: '@babel/traverse': 7.27.1 '@babel/traverse--for-generate-function-map': '@babel/traverse@7.27.1' '@babel/types': 7.27.1 flow-enums-runtime: 0.0.6 invariant: 2.2.4 - metro-symbolicate: 0.82.3 + metro-symbolicate: 0.82.4 nullthrows: 1.1.1 - ob1: 0.82.3 + ob1: 0.82.4 source-map: 0.5.7 vlq: 1.0.1 transitivePeerDependencies: - supports-color - metro-symbolicate@0.82.3: + metro-symbolicate@0.82.4: dependencies: flow-enums-runtime: 0.0.6 invariant: 2.2.4 - metro-source-map: 0.82.3 + metro-source-map: 0.82.4 nullthrows: 1.1.1 source-map: 0.5.7 vlq: 1.0.1 transitivePeerDependencies: - supports-color - metro-transform-plugins@0.82.3: + metro-transform-plugins@0.82.4: dependencies: '@babel/core': 7.27.1 '@babel/generator': 7.27.1 @@ -22151,27 +21988,27 @@ snapshots: transitivePeerDependencies: - supports-color - metro-transform-worker@0.82.3: + metro-transform-worker@0.82.4: dependencies: '@babel/core': 7.27.1 '@babel/generator': 7.27.1 '@babel/parser': 7.27.2 '@babel/types': 7.27.1 flow-enums-runtime: 0.0.6 - metro: 0.82.3 - metro-babel-transformer: 0.82.3 - metro-cache: 0.82.3 - metro-cache-key: 0.82.3 - metro-minify-terser: 0.82.3 - metro-source-map: 0.82.3 - metro-transform-plugins: 0.82.3 + metro: 0.82.4 + metro-babel-transformer: 0.82.4 + metro-cache: 0.82.4 + metro-cache-key: 0.82.4 + metro-minify-terser: 0.82.4 + metro-source-map: 0.82.4 + metro-transform-plugins: 0.82.4 nullthrows: 1.1.1 transitivePeerDependencies: - bufferutil - supports-color - utf-8-validate - metro@0.82.3: + metro@0.82.4: dependencies: '@babel/code-frame': 7.27.1 '@babel/core': 7.27.1 @@ -22184,7 +22021,7 @@ snapshots: chalk: 4.1.2 ci-info: 2.0.0 connect: 3.7.0 - debug: 4.4.0 + debug: 4.4.1 error-stack-parser: 2.1.4 flow-enums-runtime: 0.0.6 graceful-fs: 4.2.11 @@ -22194,18 +22031,18 @@ snapshots: jest-worker: 29.7.0 jsc-safe-url: 0.2.4 lodash.throttle: 4.1.1 - metro-babel-transformer: 0.82.3 - metro-cache: 0.82.3 - metro-cache-key: 0.82.3 - metro-config: 0.82.3 - metro-core: 0.82.3 - metro-file-map: 0.82.3 - metro-resolver: 0.82.3 - metro-runtime: 0.82.3 - metro-source-map: 0.82.3 - metro-symbolicate: 0.82.3 - metro-transform-plugins: 0.82.3 - metro-transform-worker: 0.82.3 + metro-babel-transformer: 0.82.4 + metro-cache: 0.82.4 + metro-cache-key: 0.82.4 + metro-config: 0.82.4 + metro-core: 0.82.4 + metro-file-map: 0.82.4 + metro-resolver: 0.82.4 + metro-runtime: 0.82.4 + metro-source-map: 0.82.4 + metro-symbolicate: 0.82.4 + metro-transform-plugins: 0.82.4 + metro-transform-worker: 0.82.4 mime-types: 2.1.35 nullthrows: 1.1.1 serialize-error: 2.1.0 @@ -22273,19 +22110,8 @@ snapshots: minimist@1.2.8: {} - minipass@3.3.6: - dependencies: - yallist: 4.0.0 - - minipass@5.0.0: {} - minipass@7.1.2: {} - minizlib@2.1.2: - dependencies: - minipass: 3.3.6 - yallist: 4.0.0 - minizlib@3.0.2: dependencies: minipass: 7.1.2 @@ -22309,18 +22135,18 @@ snapshots: mnemonic-id@3.2.7: {} - module-definition@5.0.1: + module-definition@6.0.1: dependencies: - ast-module-types: 5.0.0 - node-source-walk: 6.0.2 + ast-module-types: 6.0.1 + node-source-walk: 7.0.1 moment@2.30.1: optional: true - moti@0.29.0(react-dom@19.0.0(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0): + moti@0.29.0(react-dom@19.0.0(react@19.0.0))(react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0): dependencies: framer-motion: 6.5.1(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - react-native-reanimated: 3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native-reanimated: 3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - react - react-dom @@ -22341,7 +22167,7 @@ snapshots: '@msgpackr-extract/msgpackr-extract-win32-x64': 3.0.3 optional: true - msgpackr@1.11.2: + msgpackr@1.11.4: optionalDependencies: msgpackr-extract: 3.0.3 @@ -22379,8 +22205,6 @@ snapshots: nested-error-stacks@2.0.1: {} - nested-error-stacks@2.1.1: {} - netlify@13.3.5: dependencies: '@netlify/open-api': 2.37.0 @@ -22392,63 +22216,63 @@ snapshots: netmask@2.0.2: {} - next-auth@5.0.0-beta.3(next@14.2.28(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0))(react@19.0.0): + next-auth@5.0.0-beta.3(next@14.2.29(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0))(react@19.0.0): dependencies: '@auth/core': 0.0.0-manual.fdbc96ab - next: 14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0) + next: 14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0) react: 19.0.0 transitivePeerDependencies: - '@simplewebauthn/browser' - '@simplewebauthn/server' - next-themes@0.2.1(next@14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0): + next-themes@0.2.1(next@14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0))(react-dom@19.0.0(react@19.0.0))(react@19.0.0): dependencies: - next: 14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0) + next: 14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0) react: 19.0.0 react-dom: 19.0.0(react@19.0.0) next-tick@1.1.0: {} - next@14.2.28(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.88.0): + next@14.2.29(@babel/core@7.27.1)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(sass@1.89.0): dependencies: - '@next/env': 14.2.28 + '@next/env': 14.2.29 '@swc/helpers': 0.5.5 busboy: 1.6.0 - caniuse-lite: 1.0.30001717 + caniuse-lite: 1.0.30001718 graceful-fs: 4.2.11 postcss: 8.4.31 react: 19.0.0 react-dom: 19.0.0(react@19.0.0) styled-jsx: 5.1.1(@babel/core@7.27.1)(react@19.0.0) optionalDependencies: - '@next/swc-darwin-arm64': 14.2.28 - '@next/swc-darwin-x64': 14.2.28 - '@next/swc-linux-arm64-gnu': 14.2.28 - '@next/swc-linux-arm64-musl': 14.2.28 - '@next/swc-linux-x64-gnu': 14.2.28 - '@next/swc-linux-x64-musl': 14.2.28 - '@next/swc-win32-arm64-msvc': 14.2.28 - '@next/swc-win32-ia32-msvc': 14.2.28 - '@next/swc-win32-x64-msvc': 14.2.28 - sass: 1.88.0 + '@next/swc-darwin-arm64': 14.2.29 + '@next/swc-darwin-x64': 14.2.29 + '@next/swc-linux-arm64-gnu': 14.2.29 + '@next/swc-linux-arm64-musl': 14.2.29 + '@next/swc-linux-x64-gnu': 14.2.29 + '@next/swc-linux-x64-musl': 14.2.29 + '@next/swc-win32-arm64-msvc': 14.2.29 + '@next/swc-win32-ia32-msvc': 14.2.29 + '@next/swc-win32-x64-msvc': 14.2.29 + sass: 1.89.0 transitivePeerDependencies: - '@babel/core' - babel-plugin-macros - nitropack@2.11.11(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0)): + nitropack@2.11.12(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0)): dependencies: '@cloudflare/kv-asset-handler': 0.4.0 - '@netlify/functions': 3.1.8(rollup@4.40.2) - '@rollup/plugin-alias': 5.1.1(rollup@4.40.2) - '@rollup/plugin-commonjs': 28.0.3(rollup@4.40.2) - '@rollup/plugin-inject': 5.0.5(rollup@4.40.2) - '@rollup/plugin-json': 6.1.0(rollup@4.40.2) - '@rollup/plugin-node-resolve': 16.0.1(rollup@4.40.2) - '@rollup/plugin-replace': 6.0.2(rollup@4.40.2) - '@rollup/plugin-terser': 0.4.4(rollup@4.40.2) - '@vercel/nft': 0.29.2(rollup@4.40.2) + '@netlify/functions': 3.1.9(rollup@4.41.0) + '@rollup/plugin-alias': 5.1.1(rollup@4.41.0) + '@rollup/plugin-commonjs': 28.0.3(rollup@4.41.0) + '@rollup/plugin-inject': 5.0.5(rollup@4.41.0) + '@rollup/plugin-json': 6.1.0(rollup@4.41.0) + '@rollup/plugin-node-resolve': 16.0.1(rollup@4.41.0) + '@rollup/plugin-replace': 6.0.2(rollup@4.41.0) + '@rollup/plugin-terser': 0.4.4(rollup@4.41.0) + '@vercel/nft': 0.29.3(rollup@4.41.0) archiver: 7.0.1 - c12: 3.0.3(magicast@0.3.5) + c12: 3.0.4(magicast@0.3.5) chokidar: 4.0.3 citty: 0.1.6 compatx: 0.2.0 @@ -22457,7 +22281,7 @@ snapshots: cookie-es: 2.0.0 croner: 9.0.0 crossws: 0.3.5 - db0: 0.3.2(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0)) + db0: 0.3.2(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0)) defu: 6.1.4 destr: 2.0.5 dot-prop: 9.0.0 @@ -22488,10 +22312,10 @@ snapshots: pkg-types: 2.1.0 pretty-bytes: 6.1.1 radix3: 1.1.2 - rollup: 4.40.2 - rollup-plugin-visualizer: 5.14.0(rollup@4.40.2) + rollup: 4.41.0 + rollup-plugin-visualizer: 5.14.0(rollup@4.41.0) scule: 1.3.0 - semver: 7.7.1 + semver: 7.7.2 serve-placeholder: 2.0.2 serve-static: 2.2.0 source-map: 0.7.4 @@ -22500,10 +22324,10 @@ snapshots: ultrahtml: 1.6.0 uncrypto: 0.1.3 unctx: 2.4.1 - unenv: 2.0.0-rc.15 + unenv: 2.0.0-rc.17 unimport: 5.0.1 unplugin-utils: 0.2.4 - unstorage: 1.16.0(db0@0.3.2(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0)))(ioredis@5.6.1) + unstorage: 1.16.0(db0@0.3.2(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0)))(ioredis@5.6.1) untyped: 2.0.0 unwasm: 0.3.9 youch: 4.1.0-beta.7 @@ -22603,16 +22427,12 @@ snapshots: node-releases@2.0.19: {} - node-source-walk@6.0.2: + node-source-walk@7.0.1: dependencies: '@babel/parser': 7.27.2 noop-fn@1.0.0: {} - nopt@5.0.0: - dependencies: - abbrev: 1.1.1 - nopt@8.1.0: dependencies: abbrev: 3.0.1 @@ -22620,7 +22440,7 @@ snapshots: normalize-package-data@6.0.2: dependencies: hosted-git-info: 7.0.2 - semver: 7.7.1 + semver: 7.7.2 validate-npm-package-license: 3.0.4 normalize-path@2.1.1: @@ -22639,7 +22459,7 @@ snapshots: dependencies: hosted-git-info: 7.0.2 proc-log: 4.2.0 - semver: 7.7.1 + semver: 7.7.2 validate-npm-package-name: 5.0.1 npm-run-path@4.0.1: @@ -22650,13 +22470,6 @@ snapshots: dependencies: path-key: 4.0.0 - npmlog@5.0.1: - dependencies: - are-we-there-yet: 2.0.0 - console-control-strings: 1.1.0 - gauge: 3.0.2 - set-blocking: 2.0.0 - nth-check@2.1.1: dependencies: boolbase: 1.0.0 @@ -22675,7 +22488,7 @@ snapshots: oauth4webapi@3.5.1: {} - ob1@0.82.3: + ob1@0.82.4: dependencies: flow-enums-runtime: 0.0.6 @@ -22712,14 +22525,14 @@ snapshots: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 es-object-atoms: 1.1.1 object.groupby@1.0.3: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 object.values@1.2.1: dependencies: @@ -22843,9 +22656,9 @@ snapshots: p-cancelable@3.0.0: {} - p-event@5.0.1: + p-event@6.0.1: dependencies: - p-timeout: 5.1.0 + p-timeout: 6.1.4 p-limit@2.3.0: dependencies: @@ -22877,8 +22690,6 @@ snapshots: p-map@7.0.3: {} - p-timeout@5.1.0: {} - p-timeout@6.1.4: {} p-try@2.2.0: {} @@ -22891,7 +22702,7 @@ snapshots: dependencies: '@tootallnate/quickjs-emscripten': 0.23.0 agent-base: 7.1.3 - debug: 4.4.0 + debug: 4.4.1 get-uri: 6.0.4 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 @@ -23041,7 +22852,7 @@ snapshots: exsolve: 1.0.5 pathe: 2.0.3 - plasmo@0.86.3(@swc/core@1.11.24(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(handlebars@4.7.8)(lodash@4.17.21)(postcss@8.5.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(relateurl@0.2.7)(terser@5.39.0)(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)): + plasmo@0.86.3(@swc/core@1.11.29(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(handlebars@4.7.8)(lodash@4.17.21)(postcss@8.5.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(relateurl@0.2.7)(terser@5.39.2)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)): dependencies: '@expo/spawn-async': 1.7.2 '@parcel/core': 2.9.3 @@ -23049,7 +22860,7 @@ snapshots: '@parcel/package-manager': 2.9.3(@parcel/core@2.9.3) '@parcel/watcher': 2.2.0 '@plasmohq/init': 0.7.0 - '@plasmohq/parcel-config': 0.40.8(@swc/core@1.11.24(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(handlebars@4.7.8)(lodash@4.17.21)(postcss@8.5.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(relateurl@0.2.7)(terser@5.39.0)(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3))(typescript@5.2.2) + '@plasmohq/parcel-config': 0.40.8(@swc/core@1.11.29(@swc/helpers@0.5.17))(@swc/helpers@0.5.17)(handlebars@4.7.8)(lodash@4.17.21)(postcss@8.5.3)(react-dom@19.0.0(react@19.0.0))(react@19.0.0)(relateurl@0.2.7)(terser@5.39.2)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3))(typescript@5.2.2) '@plasmohq/parcel-core': 0.1.8 buffer: 6.0.3 chalk: 5.3.0 @@ -23162,13 +22973,13 @@ snapshots: camelcase-css: 2.0.1 postcss: 8.5.3 - postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)): + postcss-load-config@4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)): dependencies: lilconfig: 3.1.3 - yaml: 2.7.1 + yaml: 2.8.0 optionalDependencies: postcss: 8.5.3 - ts-node: 10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3) + ts-node: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3) postcss-modules-extract-imports@3.1.0(postcss@8.5.3): dependencies: @@ -23289,33 +23100,36 @@ snapshots: pump: 3.0.2 rc: 1.2.8 simple-get: 4.0.1 - tar-fs: 2.1.2 + tar-fs: 2.1.3 tunnel-agent: 0.6.0 - precinct@11.0.5: + precinct@12.2.0: dependencies: - '@dependents/detective-less': 4.1.0 - commander: 10.0.1 - detective-amd: 5.0.2 - detective-cjs: 5.0.1 - detective-es6: 4.0.1 - detective-postcss: 6.1.3 - detective-sass: 5.0.3 - detective-scss: 4.0.3 - detective-stylus: 4.0.0 - detective-typescript: 11.2.0 - module-definition: 5.0.1 - node-source-walk: 6.0.2 + '@dependents/detective-less': 5.0.1 + commander: 12.1.0 + detective-amd: 6.0.1 + detective-cjs: 6.0.1 + detective-es6: 5.0.1 + detective-postcss: 7.0.1(postcss@8.5.3) + detective-sass: 6.0.1 + detective-scss: 5.0.1 + detective-stylus: 5.0.1 + detective-typescript: 14.0.0(typescript@5.8.3) + detective-vue2: 2.2.0(typescript@5.8.3) + module-definition: 6.0.1 + node-source-walk: 7.0.1 + postcss: 8.5.3 + typescript: 5.8.3 transitivePeerDependencies: - supports-color prelude-ls@1.2.1: {} - prettier-plugin-tailwindcss@0.5.14(@ianvs/prettier-plugin-sort-imports@4.4.1(@vue/compiler-sfc@3.3.4)(prettier@3.5.3))(prettier@3.5.3): + prettier-plugin-tailwindcss@0.5.14(@ianvs/prettier-plugin-sort-imports@4.4.1(@vue/compiler-sfc@3.5.14)(prettier@3.5.3))(prettier@3.5.3): dependencies: prettier: 3.5.3 optionalDependencies: - '@ianvs/prettier-plugin-sort-imports': 4.4.1(@vue/compiler-sfc@3.3.4)(prettier@3.5.3) + '@ianvs/prettier-plugin-sort-imports': 4.4.1(@vue/compiler-sfc@3.5.14)(prettier@3.5.3) prettier@3.5.3: {} @@ -23368,7 +23182,7 @@ snapshots: proxy-agent@6.5.0: dependencies: agent-base: 7.1.3 - debug: 4.4.0 + debug: 4.4.1 http-proxy-agent: 7.0.2 https-proxy-agent: 7.0.6 lru-cache: 7.18.3 @@ -23473,7 +23287,7 @@ snapshots: dependencies: react: 19.0.0 - react-hook-form@7.56.3(react@19.0.0): + react-hook-form@7.56.4(react@19.0.0): dependencies: react: 19.0.0 @@ -23483,20 +23297,20 @@ snapshots: react-is@19.1.0: {} - react-native-ble-plx@3.5.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + react-native-ble-plx@3.5.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - react-native-calendars@1.1312.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + react-native-calendars@1.1312.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: hoist-non-react-statics: 3.3.2 lodash: 4.17.21 memoize-one: 5.2.1 prop-types: 15.8.1 - react-native-safe-area-context: 4.5.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native-safe-area-context: 4.5.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) react-native-swipe-gestures: 1.0.5 - recyclerlistview: 4.2.3(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + recyclerlistview: 4.2.3(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) xdate: 0.8.3 optionalDependencies: moment: 2.30.1 @@ -23504,36 +23318,36 @@ snapshots: - react - react-native - react-native-edge-to-edge@1.6.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + react-native-edge-to-edge@1.6.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - react-native-element-dropdown@2.12.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + react-native-element-dropdown@2.12.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: lodash: 4.17.21 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - react-native-gesture-handler@2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + react-native-gesture-handler@2.24.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: '@egjs/hammerjs': 2.0.17 hoist-non-react-statics: 3.3.2 invariant: 2.2.4 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - react-native-is-edge-to-edge@1.1.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + react-native-is-edge-to-edge@1.1.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - react-native-mmkv@3.2.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + react-native-mmkv@3.2.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + react-native-reanimated@3.17.5(@babel/core@7.27.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: '@babel/core': 7.27.1 '@babel/plugin-transform-arrow-functions': 7.27.1(@babel/core@7.27.1) @@ -23548,34 +23362,34 @@ snapshots: convert-source-map: 2.0.0 invariant: 2.2.4 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) - react-native-is-edge-to-edge: 1.1.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) + react-native-is-edge-to-edge: 1.1.7(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) transitivePeerDependencies: - supports-color - react-native-safe-area-context@4.5.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + react-native-safe-area-context@4.5.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - react-native-safe-area-context@5.4.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + react-native-safe-area-context@5.4.1(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) - react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + react-native-screens@4.10.0(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: react: 19.0.0 react-freeze: 1.0.4(react@19.0.0) - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) warn-once: 0.1.1 - react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + react-native-svg@15.11.2(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: css-select: 5.1.0 css-tree: 1.1.3 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) warn-once: 0.1.1 react-native-swipe-gestures@1.0.5: {} @@ -23610,7 +23424,7 @@ snapshots: transitivePeerDependencies: - encoding - react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0): + react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0): dependencies: '@jest/create-cache-key-function': 29.7.0 '@react-native/assets-registry': 0.79.2 @@ -23619,7 +23433,7 @@ snapshots: '@react-native/gradle-plugin': 0.79.2 '@react-native/js-polyfills': 0.79.2 '@react-native/normalize-colors': 0.79.2 - '@react-native/virtualized-lists': 0.79.2(@types/react@19.1.3)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) + '@react-native/virtualized-lists': 0.79.2(@types/react@19.1.5)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) abort-controller: 3.0.0 anser: 1.4.10 ansi-regex: 5.0.1 @@ -23634,8 +23448,8 @@ snapshots: invariant: 2.2.4 jest-environment-node: 29.7.0 memoize-one: 5.2.1 - metro-runtime: 0.82.3 - metro-source-map: 0.82.3 + metro-runtime: 0.82.4 + metro-source-map: 0.82.4 nullthrows: 1.1.1 pretty-format: 29.7.0 promise: 8.3.0 @@ -23644,13 +23458,13 @@ snapshots: react-refresh: 0.14.2 regenerator-runtime: 0.13.11 scheduler: 0.25.0 - semver: 7.7.1 + semver: 7.7.2 stacktrace-parser: 0.1.11 whatwg-fetch: 3.6.20 ws: 6.2.3 yargs: 17.7.2 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 transitivePeerDependencies: - '@babel/core' - '@react-native-community/cli' @@ -23670,70 +23484,70 @@ snapshots: react-refresh@0.9.0: {} - react-remove-scroll-bar@2.3.8(@types/react@19.1.3)(react@18.3.1): + react-remove-scroll-bar@2.3.8(@types/react@19.1.5)(react@18.3.1): dependencies: react: 18.3.1 - react-style-singleton: 2.2.3(@types/react@19.1.3)(react@18.3.1) + react-style-singleton: 2.2.3(@types/react@19.1.5)(react@18.3.1) tslib: 2.8.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - react-remove-scroll-bar@2.3.8(@types/react@19.1.3)(react@19.0.0): + react-remove-scroll-bar@2.3.8(@types/react@19.1.5)(react@19.0.0): dependencies: react: 19.0.0 - react-style-singleton: 2.2.3(@types/react@19.1.3)(react@19.0.0) + react-style-singleton: 2.2.3(@types/react@19.1.5)(react@19.0.0) tslib: 2.8.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - react-remove-scroll@2.5.4(@types/react@19.1.3)(react@18.3.1): + react-remove-scroll@2.5.4(@types/react@19.1.5)(react@18.3.1): dependencies: react: 18.3.1 - react-remove-scroll-bar: 2.3.8(@types/react@19.1.3)(react@18.3.1) - react-style-singleton: 2.2.3(@types/react@19.1.3)(react@18.3.1) + react-remove-scroll-bar: 2.3.8(@types/react@19.1.5)(react@18.3.1) + react-style-singleton: 2.2.3(@types/react@19.1.5)(react@18.3.1) tslib: 2.8.1 - use-callback-ref: 1.3.3(@types/react@19.1.3)(react@18.3.1) - use-sidecar: 1.1.3(@types/react@19.1.3)(react@18.3.1) + use-callback-ref: 1.3.3(@types/react@19.1.5)(react@18.3.1) + use-sidecar: 1.1.3(@types/react@19.1.5)(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - react-remove-scroll@2.6.3(@types/react@19.1.3)(react@18.3.1): + react-remove-scroll@2.7.0(@types/react@19.1.5)(react@18.3.1): dependencies: react: 18.3.1 - react-remove-scroll-bar: 2.3.8(@types/react@19.1.3)(react@18.3.1) - react-style-singleton: 2.2.3(@types/react@19.1.3)(react@18.3.1) + react-remove-scroll-bar: 2.3.8(@types/react@19.1.5)(react@18.3.1) + react-style-singleton: 2.2.3(@types/react@19.1.5)(react@18.3.1) tslib: 2.8.1 - use-callback-ref: 1.3.3(@types/react@19.1.3)(react@18.3.1) - use-sidecar: 1.1.3(@types/react@19.1.3)(react@18.3.1) + use-callback-ref: 1.3.3(@types/react@19.1.5)(react@18.3.1) + use-sidecar: 1.1.3(@types/react@19.1.5)(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - react-remove-scroll@2.6.3(@types/react@19.1.3)(react@19.0.0): + react-remove-scroll@2.7.0(@types/react@19.1.5)(react@19.0.0): dependencies: react: 19.0.0 - react-remove-scroll-bar: 2.3.8(@types/react@19.1.3)(react@19.0.0) - react-style-singleton: 2.2.3(@types/react@19.1.3)(react@19.0.0) + react-remove-scroll-bar: 2.3.8(@types/react@19.1.5)(react@19.0.0) + react-style-singleton: 2.2.3(@types/react@19.1.5)(react@19.0.0) tslib: 2.8.1 - use-callback-ref: 1.3.3(@types/react@19.1.3)(react@19.0.0) - use-sidecar: 1.1.3(@types/react@19.1.3)(react@19.0.0) + use-callback-ref: 1.3.3(@types/react@19.1.5)(react@19.0.0) + use-sidecar: 1.1.3(@types/react@19.1.5)(react@19.0.0) optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - react-style-singleton@2.2.3(@types/react@19.1.3)(react@18.3.1): + react-style-singleton@2.2.3(@types/react@19.1.5)(react@18.3.1): dependencies: get-nonce: 1.0.1 react: 18.3.1 tslib: 2.8.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - react-style-singleton@2.2.3(@types/react@19.1.3)(react@19.0.0): + react-style-singleton@2.2.3(@types/react@19.1.5)(react@19.0.0): dependencies: get-nonce: 1.0.1 react: 19.0.0 tslib: 2.8.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 react@18.3.1: dependencies: @@ -23793,12 +23607,12 @@ snapshots: readdirp@4.1.2: {} - recyclerlistview@4.2.3(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): + recyclerlistview@4.2.3(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): dependencies: lodash.debounce: 4.0.8 prop-types: 15.8.1 react: 19.0.0 - react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0) + react-native: 0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0) ts-object-utils: 0.0.5 redis-errors@1.2.0: {} @@ -23811,7 +23625,7 @@ snapshots: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 es-errors: 1.3.0 es-object-atoms: 1.1.1 get-intrinsic: 1.3.0 @@ -23949,43 +23763,43 @@ snapshots: dependencies: glob: 7.2.3 - rollup-plugin-visualizer@5.14.0(rollup@4.40.2): + rollup-plugin-visualizer@5.14.0(rollup@4.41.0): dependencies: open: 8.4.2 picomatch: 4.0.2 source-map: 0.7.4 yargs: 17.7.2 optionalDependencies: - rollup: 4.40.2 + rollup: 4.41.0 rollup@3.29.5: optionalDependencies: fsevents: 2.3.3 - rollup@4.40.2: + rollup@4.41.0: dependencies: '@types/estree': 1.0.7 optionalDependencies: - '@rollup/rollup-android-arm-eabi': 4.40.2 - '@rollup/rollup-android-arm64': 4.40.2 - '@rollup/rollup-darwin-arm64': 4.40.2 - '@rollup/rollup-darwin-x64': 4.40.2 - '@rollup/rollup-freebsd-arm64': 4.40.2 - '@rollup/rollup-freebsd-x64': 4.40.2 - '@rollup/rollup-linux-arm-gnueabihf': 4.40.2 - '@rollup/rollup-linux-arm-musleabihf': 4.40.2 - '@rollup/rollup-linux-arm64-gnu': 4.40.2 - '@rollup/rollup-linux-arm64-musl': 4.40.2 - '@rollup/rollup-linux-loongarch64-gnu': 4.40.2 - '@rollup/rollup-linux-powerpc64le-gnu': 4.40.2 - '@rollup/rollup-linux-riscv64-gnu': 4.40.2 - '@rollup/rollup-linux-riscv64-musl': 4.40.2 - '@rollup/rollup-linux-s390x-gnu': 4.40.2 - '@rollup/rollup-linux-x64-gnu': 4.40.2 - '@rollup/rollup-linux-x64-musl': 4.40.2 - '@rollup/rollup-win32-arm64-msvc': 4.40.2 - '@rollup/rollup-win32-ia32-msvc': 4.40.2 - '@rollup/rollup-win32-x64-msvc': 4.40.2 + '@rollup/rollup-android-arm-eabi': 4.41.0 + '@rollup/rollup-android-arm64': 4.41.0 + '@rollup/rollup-darwin-arm64': 4.41.0 + '@rollup/rollup-darwin-x64': 4.41.0 + '@rollup/rollup-freebsd-arm64': 4.41.0 + '@rollup/rollup-freebsd-x64': 4.41.0 + '@rollup/rollup-linux-arm-gnueabihf': 4.41.0 + '@rollup/rollup-linux-arm-musleabihf': 4.41.0 + '@rollup/rollup-linux-arm64-gnu': 4.41.0 + '@rollup/rollup-linux-arm64-musl': 4.41.0 + '@rollup/rollup-linux-loongarch64-gnu': 4.41.0 + '@rollup/rollup-linux-powerpc64le-gnu': 4.41.0 + '@rollup/rollup-linux-riscv64-gnu': 4.41.0 + '@rollup/rollup-linux-riscv64-musl': 4.41.0 + '@rollup/rollup-linux-s390x-gnu': 4.41.0 + '@rollup/rollup-linux-x64-gnu': 4.41.0 + '@rollup/rollup-linux-x64-musl': 4.41.0 + '@rollup/rollup-win32-arm64-msvc': 4.41.0 + '@rollup/rollup-win32-ia32-msvc': 4.41.0 + '@rollup/rollup-win32-x64-msvc': 4.41.0 fsevents: 2.3.3 run-async@2.4.1: {} @@ -24033,7 +23847,7 @@ snapshots: safer-buffer@2.1.2: {} - sass@1.88.0: + sass@1.89.0: dependencies: chokidar: 4.0.3 immutable: 5.1.2 @@ -24074,7 +23888,7 @@ snapshots: semver@7.6.3: {} - semver@7.7.1: {} + semver@7.7.2: {} send@0.19.0: dependencies: @@ -24114,7 +23928,7 @@ snapshots: send@1.2.0: dependencies: - debug: 4.4.0 + debug: 4.4.1 encodeurl: 2.0.0 escape-html: 1.0.3 etag: 1.8.1 @@ -24163,8 +23977,6 @@ snapshots: server-only@0.0.1: {} - set-blocking@2.0.0: {} - set-function-length@1.2.2: dependencies: define-data-property: 1.1.4 @@ -24208,7 +24020,7 @@ snapshots: prebuild-install: 7.1.3 semver: 7.5.4 simple-get: 4.0.1 - tar-fs: 3.0.8 + tar-fs: 3.0.9 tunnel-agent: 0.6.0 transitivePeerDependencies: - bare-buffer @@ -24298,7 +24110,7 @@ snapshots: socks-proxy-agent@8.0.5: dependencies: agent-base: 7.1.3 - debug: 4.4.0 + debug: 4.4.1 socks: 2.8.4 transitivePeerDependencies: - supports-color @@ -24409,14 +24221,14 @@ snapshots: dependencies: call-bind: 1.0.8 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 string.prototype.matchall@4.0.12: dependencies: call-bind: 1.0.8 call-bound: 1.0.4 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 es-errors: 1.3.0 es-object-atoms: 1.1.1 get-intrinsic: 1.3.0 @@ -24430,7 +24242,7 @@ snapshots: string.prototype.repeat@1.0.0: dependencies: define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 string.prototype.trim@1.2.10: dependencies: @@ -24438,7 +24250,7 @@ snapshots: call-bound: 1.0.4 define-data-property: 1.1.4 define-properties: 1.2.1 - es-abstract: 1.23.9 + es-abstract: 1.23.10 es-object-atoms: 1.1.1 has-property-descriptors: 1.0.2 @@ -24589,7 +24401,7 @@ snapshots: tailwind-merge@1.14.0: {} - tailwindcss@3.3.5(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)): + tailwindcss@3.3.5(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)): dependencies: '@alloc/quick-lru': 5.2.0 arg: 5.0.2 @@ -24608,7 +24420,7 @@ snapshots: postcss: 8.5.3 postcss-import: 15.1.0(postcss@8.5.3) postcss-js: 4.0.1(postcss@8.5.3) - postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)) + postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)) postcss-nested: 6.2.0(postcss@8.5.3) postcss-selector-parser: 6.1.2 resolve: 1.22.10 @@ -24616,13 +24428,13 @@ snapshots: transitivePeerDependencies: - ts-node - tamagui-loader@1.126.12(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0)(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))): + tamagui-loader@1.126.13(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0)(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))): dependencies: - '@tamagui/cli-color': 1.126.12 - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/static': 1.126.12(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/web': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - esbuild-loader: 4.3.0(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))) + '@tamagui/cli-color': 1.126.13 + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/static': 1.126.13(@swc/helpers@0.5.17)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/web': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + esbuild-loader: 4.3.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))) esm-resolve: 1.0.11 fs-extra: 11.3.0 loader-utils: 3.3.1 @@ -24636,82 +24448,82 @@ snapshots: - supports-color - webpack - tamagui@1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0): - dependencies: - '@tamagui/accordion': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/adapt': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/alert-dialog': 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/animate-presence': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/avatar': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/button': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/card': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/checkbox': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/compose-refs': 1.126.12(react@19.0.0) - '@tamagui/constants': 1.126.12(react@19.0.0) - '@tamagui/core': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/create-context': 1.126.12(react@19.0.0) - '@tamagui/dialog': 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/elements': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/fake-react-native': 1.126.12 - '@tamagui/focusable': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/font-size': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/form': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/get-button-sized': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/get-font-sized': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/get-token': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/group': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/helpers-tamagui': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/image': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/label': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/linear-gradient': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/list-item': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/polyfill-dev': 1.126.12 - '@tamagui/popover': 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/popper': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/portal': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/progress': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/radio-group': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/react-native-media-driver': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/scroll-view': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/select': 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/separator': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/shapes': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/sheet': 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/slider': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/stacks': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/switch': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/tabs': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/text': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/theme': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/toggle-group': 1.126.12(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/tooltip': 1.126.12(@types/react@19.1.3)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0) - '@tamagui/use-controllable-state': 1.126.12(react@19.0.0) - '@tamagui/use-debounce': 1.126.12(react@19.0.0) - '@tamagui/use-force-update': 1.126.12(react@19.0.0) - '@tamagui/use-window-dimensions': 1.126.12(react@19.0.0) - '@tamagui/visually-hidden': 1.126.12(react-dom@19.0.0(react@19.0.0))(react@19.0.0) - '@tamagui/z-index-stack': 1.126.12 + tamagui@1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0): + dependencies: + '@tamagui/accordion': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/adapt': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/alert-dialog': 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/animate-presence': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/avatar': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/button': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/card': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/checkbox': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/compose-refs': 1.126.13(react@19.0.0) + '@tamagui/constants': 1.126.13(react@19.0.0) + '@tamagui/core': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/create-context': 1.126.13(react@19.0.0) + '@tamagui/dialog': 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/elements': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/fake-react-native': 1.126.13 + '@tamagui/focusable': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/font-size': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/form': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/get-button-sized': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/get-font-sized': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/get-token': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/group': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/helpers-tamagui': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/image': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/label': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/linear-gradient': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/list-item': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/polyfill-dev': 1.126.13 + '@tamagui/popover': 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/popper': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/portal': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/progress': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/radio-group': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/react-native-media-driver': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/scroll-view': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/select': 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/separator': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/shapes': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/sheet': 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/slider': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/stacks': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/switch': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/tabs': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/text': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/theme': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/toggle-group': 1.126.13(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/tooltip': 1.126.13(@types/react@19.1.5)(react-dom@19.0.0(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0) + '@tamagui/use-controllable-state': 1.126.13(react@19.0.0) + '@tamagui/use-debounce': 1.126.13(react@19.0.0) + '@tamagui/use-force-update': 1.126.13(react@19.0.0) + '@tamagui/use-window-dimensions': 1.126.13(react@19.0.0) + '@tamagui/visually-hidden': 1.126.13(react-dom@19.0.0(react@19.0.0))(react@19.0.0) + '@tamagui/z-index-stack': 1.126.13 react: 19.0.0 transitivePeerDependencies: - '@types/react' - react-dom - react-native - tapable@2.2.1: {} + tapable@2.2.2: {} - tar-fs@2.1.2: + tar-fs@2.1.3: dependencies: chownr: 1.1.4 mkdirp-classic: 0.5.3 pump: 3.0.2 tar-stream: 2.2.0 - tar-fs@3.0.8: + tar-fs@3.0.9: dependencies: pump: 3.0.2 tar-stream: 3.1.7 optionalDependencies: - bare-fs: 4.1.4 + bare-fs: 4.1.5 bare-path: 3.0.0 transitivePeerDependencies: - bare-buffer @@ -24730,15 +24542,6 @@ snapshots: fast-fifo: 1.3.2 streamx: 2.22.0 - tar@6.2.1: - dependencies: - chownr: 2.0.0 - fs-minipass: 2.1.0 - minipass: 5.0.0 - minizlib: 2.1.2 - mkdirp: 1.0.4 - yallist: 4.0.0 - tar@7.4.3: dependencies: '@isaacs/fs-minipass': 4.0.1 @@ -24764,18 +24567,18 @@ snapshots: ansi-escapes: 4.3.2 supports-hyperlinks: 2.3.0 - terser-webpack-plugin@5.3.14(@swc/core@1.11.24(@swc/helpers@0.5.17))(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))): + terser-webpack-plugin@5.3.14(@swc/core@1.11.29(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))): dependencies: '@jridgewell/trace-mapping': 0.3.25 jest-worker: 27.5.1 schema-utils: 4.3.2 serialize-javascript: 6.0.2 - terser: 5.39.0 - webpack: 5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17)) + terser: 5.39.2 + webpack: 5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17)) optionalDependencies: - '@swc/core': 1.11.24(@swc/helpers@0.5.17) + '@swc/core': 1.11.29(@swc/helpers@0.5.17) - terser@5.39.0: + terser@5.39.2: dependencies: '@jridgewell/source-map': 0.3.6 acorn: 8.14.1 @@ -24870,16 +24673,20 @@ snapshots: dependencies: typescript: 5.8.3 + ts-api-utils@2.1.0(typescript@5.8.3): + dependencies: + typescript: 5.8.3 + ts-interface-checker@0.1.13: {} - ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3): + ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3): dependencies: '@cspotcode/source-map-support': 0.8.1 '@tsconfig/node10': 1.0.11 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.17.46 + '@types/node': 20.17.50 acorn: 8.14.1 acorn-walk: 8.3.4 arg: 4.1.3 @@ -24890,7 +24697,7 @@ snapshots: v8-compile-cache-lib: 3.0.1 yn: 3.1.1 optionalDependencies: - '@swc/core': 1.11.24(@swc/helpers@0.5.17) + '@swc/core': 1.11.29(@swc/helpers@0.5.17) ts-object-utils@0.0.5: {} @@ -24905,39 +24712,34 @@ snapshots: tslib@2.8.1: {} - tsup@7.2.0(@swc/core@1.11.24(@swc/helpers@0.5.17))(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3))(typescript@5.2.2): + tsup@7.2.0(@swc/core@1.11.29(@swc/helpers@0.5.17))(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3))(typescript@5.2.2): dependencies: bundle-require: 4.2.1(esbuild@0.18.20) cac: 6.7.14 chokidar: 3.6.0 - debug: 4.4.0 + debug: 4.4.1 esbuild: 0.18.20 execa: 5.1.1 globby: 11.1.0 joycon: 3.1.1 - postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3)) + postcss-load-config: 4.0.2(postcss@8.5.3)(ts-node@10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3)) resolve-from: 5.0.0 rollup: 3.29.5 source-map: 0.8.0-beta.0 sucrase: 3.35.0 tree-kill: 1.2.2 optionalDependencies: - '@swc/core': 1.11.24(@swc/helpers@0.5.17) + '@swc/core': 1.11.29(@swc/helpers@0.5.17) postcss: 8.5.3 typescript: 5.2.2 transitivePeerDependencies: - supports-color - ts-node - tsutils@3.21.0(typescript@5.8.3): - dependencies: - tslib: 1.14.1 - typescript: 5.8.3 - tsx@4.19.4: dependencies: esbuild: 0.25.4 - get-tsconfig: 4.10.0 + get-tsconfig: 4.10.1 optionalDependencies: fsevents: 2.3.3 @@ -25054,15 +24856,15 @@ snapshots: acorn: 8.14.1 estree-walker: 3.0.3 magic-string: 0.30.17 - unplugin: 2.3.2 + unplugin: 2.3.4 undici-types@6.19.8: {} - undici@6.21.2: {} + undici@6.21.3: {} - undici@7.9.0: {} + undici@7.10.0: {} - unenv@2.0.0-rc.15: + unenv@2.0.0-rc.17: dependencies: defu: 6.1.4 exsolve: 1.0.5 @@ -25101,7 +24903,7 @@ snapshots: scule: 1.3.0 strip-literal: 3.0.0 tinyglobby: 0.2.13 - unplugin: 2.3.2 + unplugin: 2.3.4 unplugin-utils: 0.2.4 unique-string@2.0.0: @@ -25130,13 +24932,13 @@ snapshots: acorn: 8.14.1 webpack-virtual-modules: 0.6.2 - unplugin@2.3.2: + unplugin@2.3.4: dependencies: acorn: 8.14.1 picomatch: 4.0.2 webpack-virtual-modules: 0.6.2 - unstorage@1.16.0(db0@0.3.2(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0)))(ioredis@5.6.1): + unstorage@1.16.0(db0@0.3.2(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0)))(ioredis@5.6.1): dependencies: anymatch: 3.1.3 chokidar: 4.0.3 @@ -25147,7 +24949,7 @@ snapshots: ofetch: 1.4.1 ufo: 1.6.1 optionalDependencies: - db0: 0.3.2(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.3)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.3)(react@19.0.0))(react@19.0.0))(react@19.0.0)) + db0: 0.3.2(@libsql/client@0.5.6)(drizzle-orm@0.29.5(@libsql/client@0.5.6)(@types/react@19.1.5)(expo-sqlite@15.2.10(expo@53.0.9(@babel/core@7.27.1)(@expo/metro-runtime@5.0.4(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0)))(graphql@15.10.1)(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react-native@0.79.2(@babel/core@7.27.1)(@types/react@19.1.5)(react@19.0.0))(react@19.0.0))(react@19.0.0)) ioredis: 5.6.1 untun@0.1.3: @@ -25202,52 +25004,52 @@ snapshots: dependencies: punycode: 2.3.1 - url-loader@4.1.1(file-loader@6.2.0(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))))(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))): + url-loader@4.1.1(file-loader@6.2.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))))(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))): dependencies: loader-utils: 2.0.4 mime-types: 2.1.35 schema-utils: 3.3.0 - webpack: 5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17)) + webpack: 5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17)) optionalDependencies: - file-loader: 6.2.0(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))) + file-loader: 6.2.0(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))) urlpattern-polyfill@10.1.0: {} urlpattern-polyfill@8.0.2: {} - use-callback-ref@1.3.3(@types/react@19.1.3)(react@18.3.1): + use-callback-ref@1.3.3(@types/react@19.1.5)(react@18.3.1): dependencies: react: 18.3.1 tslib: 2.8.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - use-callback-ref@1.3.3(@types/react@19.1.3)(react@19.0.0): + use-callback-ref@1.3.3(@types/react@19.1.5)(react@19.0.0): dependencies: react: 19.0.0 tslib: 2.8.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 use-latest-callback@0.2.3(react@19.0.0): dependencies: react: 19.0.0 - use-sidecar@1.1.3(@types/react@19.1.3)(react@18.3.1): + use-sidecar@1.1.3(@types/react@19.1.5)(react@18.3.1): dependencies: detect-node-es: 1.1.0 react: 18.3.1 tslib: 2.8.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 - use-sidecar@1.1.3(@types/react@19.1.3)(react@19.0.0): + use-sidecar@1.1.3(@types/react@19.1.5)(react@19.0.0): dependencies: detect-node-es: 1.1.0 react: 19.0.0 tslib: 2.8.1 optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 use-sync-external-store@1.5.0(react@18.3.1): dependencies: @@ -25310,7 +25112,7 @@ snapshots: warn-once@0.1.1: {} - watchpack@2.4.2: + watchpack@2.4.4: dependencies: glob-to-regexp: 0.4.1 graceful-fs: 4.2.11 @@ -25344,7 +25146,7 @@ snapshots: webpack-virtual-modules@0.6.2: {} - webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17)): + webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17)): dependencies: '@types/eslint-scope': 3.7.7 '@types/estree': 1.0.7 @@ -25366,9 +25168,9 @@ snapshots: mime-types: 2.1.35 neo-async: 2.6.2 schema-utils: 4.3.2 - tapable: 2.2.1 - terser-webpack-plugin: 5.3.14(@swc/core@1.11.24(@swc/helpers@0.5.17))(webpack@5.99.8(@swc/core@1.11.24(@swc/helpers@0.5.17))) - watchpack: 2.4.2 + tapable: 2.2.2 + terser-webpack-plugin: 5.3.14(@swc/core@1.11.29(@swc/helpers@0.5.17))(webpack@5.99.9(@swc/core@1.11.29(@swc/helpers@0.5.17))) + watchpack: 2.4.4 webpack-sources: 3.2.3 transitivePeerDependencies: - '@swc/core' @@ -25439,10 +25241,6 @@ snapshots: dependencies: isexe: 2.0.0 - wide-align@1.1.5: - dependencies: - string-width: 4.2.3 - winston-transport@4.9.0: dependencies: logform: 2.7.0 @@ -25539,7 +25337,7 @@ snapshots: yaml@1.10.2: {} - yaml@2.7.1: {} + yaml@2.8.0: {} yargs-parser@21.1.1: {} @@ -25576,42 +25374,36 @@ snapshots: cookie: 1.0.2 youch-core: 0.3.2 - youtube-caption-extractor@1.4.3(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46): + youtube-caption-extractor@1.4.3(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50): dependencies: '@types/he': 1.2.3 he: 1.2.0 striptags: 3.2.0 - ts-node: 10.9.2(@swc/core@1.11.24(@swc/helpers@0.5.17))(@types/node@20.17.46)(typescript@5.8.3) + ts-node: 10.9.2(@swc/core@1.11.29(@swc/helpers@0.5.17))(@types/node@20.17.50)(typescript@5.8.3) typescript: 5.8.3 transitivePeerDependencies: - '@swc/core' - '@swc/wasm' - '@types/node' - zip-stream@4.1.1: - dependencies: - archiver-utils: 3.0.4 - compress-commons: 4.1.2 - readable-stream: 3.6.2 - zip-stream@6.0.1: dependencies: archiver-utils: 5.0.2 compress-commons: 6.0.2 readable-stream: 4.7.0 - zod@3.24.4: {} + zod@3.25.23: {} - zustand@4.5.6(@types/react@19.1.3)(react@18.3.1): + zustand@4.5.7(@types/react@19.1.5)(react@18.3.1): dependencies: use-sync-external-store: 1.5.0(react@18.3.1) optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 react: 18.3.1 - zustand@4.5.6(@types/react@19.1.3)(react@19.0.0): + zustand@4.5.7(@types/react@19.1.5)(react@19.0.0): dependencies: use-sync-external-store: 1.5.0(react@19.0.0) optionalDependencies: - '@types/react': 19.1.3 + '@types/react': 19.1.5 react: 19.0.0