diff --git a/docs/package.json b/docs/package.json
index f1fcea4bd6..aefb53db6a 100644
--- a/docs/package.json
+++ b/docs/package.json
@@ -17,7 +17,7 @@
"@heroicons/react": "^2.2.0",
"@mdx-js/loader": "^3.1.0",
"@mdx-js/react": "^3.1.0",
- "@next/mdx": "^15.1.3",
+ "@next/mdx": "15.5.8",
"@scalar/api-reference-react": "^0.4.25",
"@shikijs/transformers": "^1.29.2",
"@sindresorhus/slugify": "^2.1.1",
@@ -25,8 +25,8 @@
"@types/mdast": "^4.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"@types/react-highlight-words": "^0.20.0",
"@uploadthing/react": "workspace:*",
"acorn": "^8.12.1",
@@ -36,13 +36,13 @@
"mdast-util-to-string": "^4.0.0",
"mdx-annotations": "^0.1.4",
"motion": "^12.0.6",
- "next": "15.3.1",
+ "next": "15.5.8",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.6",
"next-view-transitions": "^0.3.4",
"npm-to-yarn": "^3.0.0",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"react-highlight-words": "^0.20.0",
"recma-import-images": "^0.0.3",
"remark": "^15.0.1",
diff --git a/docs/src/app/(docs)/concepts/auth-security/page.mdx b/docs/src/app/(docs)/concepts/auth-security/page.mdx
index bf5efa44ea..959f385547 100644
--- a/docs/src/app/(docs)/concepts/auth-security/page.mdx
+++ b/docs/src/app/(docs)/concepts/auth-security/page.mdx
@@ -13,11 +13,9 @@ Authentication is a vital part in protecting your app from malicious usage. In
this section we'll go over how to protect different parts of the UploadThing
flow.
-
- Do not protect the entire `/api/uploadthing` route from being called by
- unauthenticated users. The endpoint is called as a webhook by our server and
- thus must be publicly available.
-
+WARNING: Do not protect the entire `/api/uploadthing` route from being called by
+unauthenticated users. The endpoint is called as a webhook by our server and
+thus must be publicly available.
## Protecting the endpoint from spoofing
diff --git a/docs/src/app/(docs)/concepts/error-handling/page.mdx b/docs/src/app/(docs)/concepts/error-handling/page.mdx
index 2d0fd91489..70737130c0 100644
--- a/docs/src/app/(docs)/concepts/error-handling/page.mdx
+++ b/docs/src/app/(docs)/concepts/error-handling/page.mdx
@@ -99,7 +99,7 @@ type UploadThingErrorOptions =
message?: string;
/**
* The original error that caused this, if any.
- */
+ */
cause?: unknown;
/**
* Data associated with the error
diff --git a/docs/src/components/Code.tsx b/docs/src/components/Code.tsx
index 67c85583f9..fe0adf408c 100644
--- a/docs/src/components/Code.tsx
+++ b/docs/src/components/Code.tsx
@@ -121,7 +121,15 @@ function CodePanel({
label?: string;
code?: string;
}) {
- let child = React.Children.only(children);
+ let child: React.ReactElement | null = null;
+ const childrenCount = React.Children.count(children);
+
+ if (childrenCount === 1) {
+ child = React.Children.only(children) as React.ReactElement;
+ } else if (childrenCount > 1) {
+ // If multiple children, take the first one for prop extraction
+ child = React.Children.toArray(children)[0] as React.ReactElement;
+ }
if (React.isValidElement(child)) {
tag = (child.props as { tag?: string }).tag ?? tag;
diff --git a/examples/backend-adapters/client-react/package.json b/examples/backend-adapters/client-react/package.json
index fa8a6fcc9a..48e3f649bd 100644
--- a/examples/backend-adapters/client-react/package.json
+++ b/examples/backend-adapters/client-react/package.json
@@ -9,13 +9,13 @@
},
"dependencies": {
"@uploadthing/react": "7.3.3",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"uploadthing": "7.7.4"
},
"devDependencies": {
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"@vitejs/plugin-react-swc": "^3.7.2",
"typescript": "5.8.3",
"vite": "^6.3.4"
diff --git a/examples/minimal-appdir/package.json b/examples/minimal-appdir/package.json
index fa2c4b6543..33ca9e6868 100644
--- a/examples/minimal-appdir/package.json
+++ b/examples/minimal-appdir/package.json
@@ -10,16 +10,16 @@
},
"dependencies": {
"@uploadthing/react": "7.3.3",
- "next": "15.3.1",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "next": "15.5.8",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"uploadthing": "7.7.4"
},
"devDependencies": {
"@next/bundle-analyzer": "15.1.3",
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"typescript": "5.8.3"
}
}
diff --git a/examples/minimal-astro-react/package.json b/examples/minimal-astro-react/package.json
index 84e47dcfbf..c798f7928e 100644
--- a/examples/minimal-astro-react/package.json
+++ b/examples/minimal-astro-react/package.json
@@ -15,14 +15,14 @@
"@astrojs/react": "^4.1.2",
"@uploadthing/react": "7.3.3",
"astro": "^5.1.2",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"uploadthing": "7.7.4"
},
"devDependencies": {
"@astrojs/check": "0.9.4",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"typescript": "5.8.3"
}
}
diff --git a/examples/minimal-expo/package.json b/examples/minimal-expo/package.json
index 51406aafd0..0e1f3aa907 100644
--- a/examples/minimal-expo/package.json
+++ b/examples/minimal-expo/package.json
@@ -33,8 +33,8 @@
"expo-status-bar": "~1.12.1",
"expo-web-browser": "^13.0.3",
"nativewind": "^4.0.36",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"react-native": "^0.74.1",
"react-native-gesture-handler": "~2.16.2",
"react-native-reanimated": "~3.10.0",
@@ -47,7 +47,7 @@
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/runtime": "^7.24.4",
- "@types/react": "19.1.2",
+ "@types/react": "19.2.7",
"tailwindcss": "^3.4.16",
"typescript": "5.8.3"
}
diff --git a/examples/minimal-pagedir/package.json b/examples/minimal-pagedir/package.json
index 5e6dc4d097..b452fa145a 100644
--- a/examples/minimal-pagedir/package.json
+++ b/examples/minimal-pagedir/package.json
@@ -10,15 +10,15 @@
},
"dependencies": {
"@uploadthing/react": "7.3.3",
- "next": "15.3.1",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "next": "15.5.8",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"uploadthing": "7.7.4"
},
"devDependencies": {
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"typescript": "5.8.3"
}
}
diff --git a/examples/minimal-tanstack-start/package.json b/examples/minimal-tanstack-start/package.json
index 235f0a8f09..b56a59266a 100644
--- a/examples/minimal-tanstack-start/package.json
+++ b/examples/minimal-tanstack-start/package.json
@@ -12,13 +12,13 @@
"@tanstack/react-router": "^1.121.27",
"@tanstack/react-start": "^1.121.32",
"@uploadthing/react": "7.3.3",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"uploadthing": "7.7.4"
},
"devDependencies": {
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"typescript": "5.8.3",
"vite": "^6.3.4"
}
diff --git a/examples/profile-picture/package.json b/examples/profile-picture/package.json
index b8a8b5d653..6e61fbd30b 100644
--- a/examples/profile-picture/package.json
+++ b/examples/profile-picture/package.json
@@ -20,11 +20,11 @@
"client-only": "^0.0.1",
"drizzle-orm": "^0.38.3",
"lucide-react": "^0.469.0",
- "next": "15.3.1",
+ "next": "15.5.8",
"next-auth": "5.0.0-beta.25",
"radix-ui": "1.3.4",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"react-easy-crop": "^5.2.0",
"server-only": "0.0.1",
"sonner": "^2.0.3",
@@ -35,8 +35,8 @@
"devDependencies": {
"@tailwindcss/postcss": "npm:@tailwindcss/postcss@4.0.0-beta.8",
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"drizzle-kit": "^0.30.1",
"eslint": "9.25.1",
"postcss": "8.4.49",
diff --git a/examples/with-clerk-appdir/package.json b/examples/with-clerk-appdir/package.json
index 734214e197..5be940bb6d 100644
--- a/examples/with-clerk-appdir/package.json
+++ b/examples/with-clerk-appdir/package.json
@@ -14,19 +14,19 @@
"@clerk/nextjs": "^6.9.6",
"@t3-oss/env-nextjs": "^0.11.1",
"@uploadthing/react": "7.3.3",
- "next": "15.3.1",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "next": "15.5.8",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"uploadthing": "7.7.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"eslint": "9.25.1",
- "eslint-config-next": "15.2.3",
+ "eslint-config-next": "15.5.8",
"typescript": "5.8.3"
},
"ct3aMetadata": {
diff --git a/examples/with-clerk-pagesdir/package.json b/examples/with-clerk-pagesdir/package.json
index b814975dad..0b3925c9d6 100644
--- a/examples/with-clerk-pagesdir/package.json
+++ b/examples/with-clerk-pagesdir/package.json
@@ -14,19 +14,19 @@
"@clerk/nextjs": "^6.9.6",
"@t3-oss/env-nextjs": "^0.11.1",
"@uploadthing/react": "7.3.3",
- "next": "15.3.1",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "next": "15.5.8",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"uploadthing": "7.7.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"eslint": "9.25.1",
- "eslint-config-next": "15.2.3",
+ "eslint-config-next": "15.5.8",
"typescript": "5.8.3"
},
"ct3aMetadata": {
diff --git a/examples/with-clerk-react-router/package.json b/examples/with-clerk-react-router/package.json
index 581a429808..460a861ee8 100644
--- a/examples/with-clerk-react-router/package.json
+++ b/examples/with-clerk-react-router/package.json
@@ -15,16 +15,16 @@
"@react-router/serve": "^7.0.0",
"@uploadthing/react": "7.3.3",
"isbot": "^5.1.19",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"react-router": "^7.0.0",
"react-router-dom": "^7.1.3",
"uploadthing": "7.7.4"
},
"devDependencies": {
"@react-router/dev": "^7.0.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"postcss": "8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "5.8.3",
diff --git a/examples/with-clerk-remix/package.json b/examples/with-clerk-remix/package.json
index 7ea1076cf0..3a378b7a88 100644
--- a/examples/with-clerk-remix/package.json
+++ b/examples/with-clerk-remix/package.json
@@ -16,14 +16,14 @@
"@remix-run/serve": "^2.12.0",
"@uploadthing/react": "7.3.3",
"isbot": "^5.1.19",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"uploadthing": "7.7.4"
},
"devDependencies": {
"@remix-run/dev": "^2.12.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"postcss": "8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "5.8.3",
diff --git a/examples/with-drizzle-appdir/package.json b/examples/with-drizzle-appdir/package.json
index 4837c1776e..7471f02df6 100644
--- a/examples/with-drizzle-appdir/package.json
+++ b/examples/with-drizzle-appdir/package.json
@@ -16,19 +16,19 @@
"@t3-oss/env-nextjs": "^0.11.1",
"@uploadthing/react": "7.3.3",
"drizzle-orm": "^0.38.3",
- "next": "15.3.1",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "next": "15.5.8",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"uploadthing": "7.7.4",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"eslint": "9.25.1",
- "eslint-config-next": "15.2.3",
+ "eslint-config-next": "15.5.8",
"typescript": "5.8.3"
},
"ct3aMetadata": {
diff --git a/examples/with-drizzle-pagesdir/package.json b/examples/with-drizzle-pagesdir/package.json
index 3e7bf11f62..f230a40700 100644
--- a/examples/with-drizzle-pagesdir/package.json
+++ b/examples/with-drizzle-pagesdir/package.json
@@ -16,9 +16,9 @@
"@t3-oss/env-nextjs": "^0.11.1",
"@uploadthing/react": "7.3.3",
"drizzle-orm": "^0.38.3",
- "next": "15.3.1",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "next": "15.5.8",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"swr": "^2.2.5",
"uploadthing": "7.7.4",
"zod": "^3.24.1"
@@ -26,10 +26,10 @@
"devDependencies": {
"@eslint/eslintrc": "3.2.0",
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"eslint": "9.25.1",
- "eslint-config-next": "15.2.3",
+ "eslint-config-next": "15.5.8",
"typescript": "5.8.3"
},
"ct3aMetadata": {
diff --git a/examples/with-novel/package.json b/examples/with-novel/package.json
index 1f34bca175..7bf8537549 100644
--- a/examples/with-novel/package.json
+++ b/examples/with-novel/package.json
@@ -14,12 +14,12 @@
"class-variance-authority": "^0.7.1",
"cmdk": "^1.1.1",
"lucide-react": "^0.469.0",
- "next": "15.3.1",
+ "next": "15.5.8",
"next-themes": "^0.4.6",
"novel": "^0.5.0",
"radix-ui": "1.3.4",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"sonner": "^2.0.3",
"tailwind-merge": "^2.2.1",
"uploadthing": "7.7.4",
@@ -27,8 +27,8 @@
},
"devDependencies": {
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"tailwindcss": "^3.4.16",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.8.3"
diff --git a/examples/with-react-image-crop/package.json b/examples/with-react-image-crop/package.json
index 76655de6f5..61cd762480 100644
--- a/examples/with-react-image-crop/package.json
+++ b/examples/with-react-image-crop/package.json
@@ -10,16 +10,16 @@
},
"dependencies": {
"@uploadthing/react": "7.3.3",
- "next": "15.3.1",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "next": "15.5.8",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"react-image-crop": "^11.0.5",
"uploadthing": "7.7.4"
},
"devDependencies": {
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"typescript": "5.8.3"
}
}
diff --git a/examples/with-serveractions/package.json b/examples/with-serveractions/package.json
index 3ba2049b97..d4dbec611d 100644
--- a/examples/with-serveractions/package.json
+++ b/examples/with-serveractions/package.json
@@ -9,15 +9,15 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
- "next": "15.3.1",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "next": "15.5.8",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"uploadthing": "7.7.4"
},
"devDependencies": {
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"typescript": "5.8.3"
}
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index 585c3f2c75..197a86ee8f 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -10,15 +10,15 @@
},
"dependencies": {
"@uploadthing/react": "7.3.3",
- "next": "15.3.1",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "next": "15.5.8",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"uploadthing": "7.7.4"
},
"devDependencies": {
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"postcss": "8.4.49",
"tailwindcss": "^3.4.16",
"typescript": "5.8.3"
diff --git a/packages/expo/package.json b/packages/expo/package.json
index 2f07e7a560..bf1ed24f1c 100644
--- a/packages/expo/package.json
+++ b/packages/expo/package.json
@@ -42,14 +42,14 @@
"@uploadthing/shared": "workspace:*"
},
"devDependencies": {
- "@types/react": "19.1.2",
+ "@types/react": "19.2.7",
"@uploadthing/eslint-config": "workspace:*",
"@uploadthing/tsconfig": "workspace:*",
"eslint": "9.25.1",
"expo-constants": "^16.0.0",
"expo-document-picker": "^12.0.1",
"expo-image-picker": "^15.0.4",
- "react": "19.1.0",
+ "react": "19.2.2",
"react-native": "^0.74.1",
"tsdown": "0.14.1",
"typescript": "5.8.3",
diff --git a/packages/mime-types/tsdown.config.ts b/packages/mime-types/tsdown.config.ts
index bcae6289df..9bd3de0c13 100644
--- a/packages/mime-types/tsdown.config.ts
+++ b/packages/mime-types/tsdown.config.ts
@@ -10,8 +10,5 @@ export default defineConfig({
"../video/index": "src/video.ts",
},
format: ["esm", "cjs"],
- dts: {
- sourcemap: true,
- tsconfig: "tsconfig.build.json",
- },
+ dts: { sourcemap: true, tsconfig: "tsconfig.build.json" },
});
diff --git a/packages/react/package.json b/packages/react/package.json
index 41f63a7830..7c49fcf543 100644
--- a/packages/react/package.json
+++ b/packages/react/package.json
@@ -79,8 +79,8 @@
},
"devDependencies": {
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"@uploadthing/eslint-config": "workspace:*",
"@uploadthing/tsconfig": "workspace:*",
"@uploadthing/vitest-config": "workspace:*",
@@ -89,9 +89,9 @@
"concurrently": "^9.1.2",
"eslint": "9.25.1",
"msw": "2.7.5",
- "next": "15.3.1",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "next": "15.5.8",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"tailwindcss": "^3.4.16",
"tsdown": "0.14.1",
"typescript": "5.8.3",
diff --git a/packages/shared/package.json b/packages/shared/package.json
index cd5f2ce3f9..0546332474 100644
--- a/packages/shared/package.json
+++ b/packages/shared/package.json
@@ -47,13 +47,13 @@
},
"devDependencies": {
"@effect/vitest": "0.25.1",
- "@types/react": "19.1.2",
+ "@types/react": "19.2.7",
"@uploadthing/eslint-config": "workspace:",
"@uploadthing/tsconfig": "workspace:",
"@uploadthing/vitest-config": "workspace:",
"@vitest/coverage-istanbul": "3.2.4",
"eslint": "9.25.1",
- "react": "19.1.0",
+ "react": "19.2.2",
"solid-js": "^1.9.3",
"tsdown": "0.14.1",
"typescript": "5.8.3",
diff --git a/packages/uploadthing/package.json b/packages/uploadthing/package.json
index d3df494f14..036efa2598 100644
--- a/packages/uploadthing/package.json
+++ b/packages/uploadthing/package.json
@@ -171,7 +171,7 @@
"@types/body-parser": "^1.19.5",
"@types/express": "^5.0.0",
"@types/express-serve-static-core": "^5.0.3",
- "@types/react": "19.1.2",
+ "@types/react": "19.2.7",
"@uploadthing/eslint-config": "workspace:*",
"@uploadthing/tsconfig": "workspace:*",
"@uploadthing/vitest-config": "workspace:*",
@@ -182,7 +182,7 @@
"fastify": "^5.2.0",
"h3": "^1.13.0",
"msw": "2.7.5",
- "next": "15.3.1",
+ "next": "15.5.8",
"solid-js": "^1.9.3",
"tailwindcss": "^3.4.16",
"tsdown": "0.14.1",
diff --git a/packages/uploadthing/tsdown.config.ts b/packages/uploadthing/tsdown.config.ts
index 8cdba7bffb..252aa9688a 100644
--- a/packages/uploadthing/tsdown.config.ts
+++ b/packages/uploadthing/tsdown.config.ts
@@ -17,10 +17,7 @@ export default defineConfig({
"../types/index": "src/types.ts",
},
format: ["esm", "cjs"],
- dts: {
- sourcemap: true,
- tsconfig: "tsconfig.build.json",
- },
+ dts: { sourcemap: true, tsconfig: "tsconfig.build.json" },
onSuccess: async () => {
await fsp.copyFile("src/tw/v4.css", "tw/v4.css");
},
diff --git a/playground-v6/package.json b/playground-v6/package.json
index 2fc89aba23..ba6ee42e03 100644
--- a/playground-v6/package.json
+++ b/playground-v6/package.json
@@ -13,15 +13,15 @@
"clsx": "2.1.1",
"effect": "3.17.7",
"next": "canary",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"uploadthing": "npm:uploadthing@6",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"eslint": "9.25.1",
"typescript": "5.8.3",
"typescript-eslint": "8.31.0"
diff --git a/playground/package.json b/playground/package.json
index 41c891cf3f..b94bacaadf 100644
--- a/playground/package.json
+++ b/playground/package.json
@@ -14,8 +14,8 @@
"effect": "3.17.7",
"lucide-react": "^0.469.0",
"next": "canary",
- "react": "19.1.0",
- "react-dom": "19.1.0",
+ "react": "19.2.2",
+ "react-dom": "19.2.2",
"tailwind-merge": "^2.2.1",
"uploadthing": "workspace:*",
"zod": "^3.24.1"
@@ -23,8 +23,8 @@
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@types/node": "^22.10.0",
- "@types/react": "19.1.2",
- "@types/react-dom": "19.1.2",
+ "@types/react": "19.2.7",
+ "@types/react-dom": "19.2.3",
"eslint": "9.25.1",
"postcss": "8.4.49",
"tailwindcss": "npm:tailwindcss@^4.0.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 475529174c..70ddce0000 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,6 +4,9 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
+overrides:
+ rolldown: 1.0.0-beta.32
+
importers:
.:
@@ -58,25 +61,25 @@ importers:
version: 1.18.0(@algolia/client-search@5.18.0)(algoliasearch@5.18.0)(search-insights@2.17.3)
'@headlessui/react':
specifier: ^2.2.0
- version: 2.2.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.2.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@headlessui/tailwindcss':
specifier: ^0.2.1
version: 0.2.1(tailwindcss@3.4.17)
'@heroicons/react':
specifier: ^2.2.0
- version: 2.2.0(react@19.1.0)
+ version: 2.2.0(react@19.2.2)
'@mdx-js/loader':
specifier: ^3.1.0
version: 3.1.0(webpack@5.97.1)
'@mdx-js/react':
specifier: ^3.1.0
- version: 3.1.0(@types/react@19.1.2)(react@19.1.0)
+ version: 3.1.0(@types/react@19.2.7)(react@19.2.2)
'@next/mdx':
- specifier: ^15.1.3
- version: 15.1.3(@mdx-js/loader@3.1.0(webpack@5.97.1))(@mdx-js/react@3.1.0(@types/react@19.1.2)(react@19.1.0))
+ specifier: 15.5.8
+ version: 15.5.8(@mdx-js/loader@3.1.0(webpack@5.97.1))(@mdx-js/react@3.1.0(@types/react@19.2.7)(react@19.2.2))
'@scalar/api-reference-react':
specifier: ^0.4.25
- version: 0.4.25(@hyperjump/browser@1.2.0)(axios@1.7.9)(change-case@5.4.4)(jwt-decode@4.0.0)(react@19.1.0)(tailwindcss@3.4.17)(typescript@5.8.3)
+ version: 0.4.25(@hyperjump/browser@1.2.0)(axios@1.7.9)(change-case@5.4.4)(jwt-decode@4.0.0)(react@19.2.2)(tailwindcss@3.4.17)(typescript@5.8.3)
'@shikijs/transformers':
specifier: ^1.29.2
version: 1.29.2
@@ -96,11 +99,11 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
'@types/react-highlight-words':
specifier: ^0.20.0
version: 0.20.0
@@ -127,31 +130,31 @@ importers:
version: 0.1.4
motion:
specifier: ^12.0.6
- version: 12.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 12.0.6(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
next-sitemap:
specifier: ^4.2.3
- version: 4.2.3(next@15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))
+ version: 4.2.3(next@15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))
next-themes:
specifier: ^0.4.6
- version: 0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 0.4.6(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
next-view-transitions:
specifier: ^0.3.4
- version: 0.3.4(next@15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 0.3.4(next@15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
npm-to-yarn:
specifier: ^3.0.0
version: 3.0.1
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
react-highlight-words:
specifier: ^0.20.0
- version: 0.20.0(react@19.1.0)
+ version: 0.20.0(react@19.2.2)
recma-import-images:
specifier: ^0.0.3
version: 0.0.3
@@ -199,7 +202,7 @@ importers:
version: 3.25.67
zustand:
specifier: ^5.0.2
- version: 5.0.2(@types/react@19.1.2)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0))
+ version: 5.0.2(@types/react@19.2.7)(react@19.2.2)(use-sync-external-store@1.5.0(react@19.2.2))
examples/backend-adapters:
dependencies:
@@ -225,21 +228,21 @@ importers:
specifier: 7.3.3
version: link:../../../packages/react
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../../packages/uploadthing
devDependencies:
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react-swc':
specifier: ^3.7.2
version: 3.7.2(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))
@@ -367,14 +370,14 @@ importers:
specifier: 7.3.3
version: link:../../packages/react
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
@@ -386,11 +389,11 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
typescript:
specifier: 5.8.3
version: 5.8.3
@@ -399,22 +402,22 @@ importers:
dependencies:
'@astrojs/node':
specifier: ^9.0.0
- version: 9.0.0(astro@5.1.2(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(yaml@2.7.0))
+ version: 9.0.0(astro@5.1.2(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(yaml@2.7.0))
'@astrojs/react':
specifier: ^4.1.2
- version: 4.1.2(@types/node@22.12.0)(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(jiti@2.4.2)(lightningcss@1.29.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)
+ version: 4.1.2(@types/node@22.12.0)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(jiti@2.4.2)(lightningcss@1.29.3)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)
'@uploadthing/react':
specifier: 7.3.3
version: link:../../packages/react
astro:
specifier: ^5.1.2
- version: 5.1.2(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(yaml@2.7.0)
+ version: 5.1.2(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(yaml@2.7.0)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
@@ -423,11 +426,11 @@ importers:
specifier: 0.9.4
version: 0.9.4(prettier@3.5.3)(typescript@5.8.3)
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
typescript:
specifier: 5.8.3
version: 5.8.3
@@ -436,19 +439,19 @@ importers:
dependencies:
'@bacons/text-decoder':
specifier: ^0.0.0
- version: 0.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))
+ version: 0.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))
'@expo/vector-icons':
specifier: ^14.0.1
version: 14.0.4
'@gorhom/bottom-sheet':
specifier: ^4.6.1
- version: 4.6.4(@types/react@19.1.2)(react-native-gesture-handler@2.16.2(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ version: 4.6.4(@types/react@19.2.7)(react-native-gesture-handler@2.16.2(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
'@shopify/flash-list':
specifier: 1.6.4
- version: 1.6.4(@babel/runtime@7.26.7)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ version: 1.6.4(@babel/runtime@7.26.7)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
'@tanstack/react-query':
specifier: ^5.29.2
- version: 5.62.14(react@19.1.0)
+ version: 5.62.14(react@19.2.2)
'@trpc/client':
specifier: 11.0.0-rc.772
version: 11.0.0-rc.772(@trpc/server@11.0.0-rc.772(typescript@5.8.3))(typescript@5.8.3)
@@ -457,7 +460,7 @@ importers:
version: 11.0.0-rc.772(typescript@5.8.3)
'@trpc/tanstack-react-query':
specifier: 11.0.0-rc.772
- version: 11.0.0-rc.772(@tanstack/react-query@5.62.14(react@19.1.0))(@trpc/client@11.0.0-rc.772(@trpc/server@11.0.0-rc.772(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.0.0-rc.772(typescript@5.8.3))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
+ version: 11.0.0-rc.772(@tanstack/react-query@5.62.14(react@19.2.2))(@trpc/client@11.0.0-rc.772(@trpc/server@11.0.0-rc.772(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.0.0-rc.772(typescript@5.8.3))(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(typescript@5.8.3)
'@uploadthing/expo':
specifier: 7.2.6
version: link:../../packages/expo
@@ -487,7 +490,7 @@ importers:
version: 6.3.1(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13))
expo-router:
specifier: ~3.5.9
- version: 3.5.24(3db0b6ee7bd5f52af15fe8c5edbef6f6)
+ version: 3.5.24(858a37ec74463a188b353be2630531aa)
expo-splash-screen:
specifier: ~0.27.4
version: 0.27.7(encoding@0.1.13)(expo-modules-autolinking@1.11.3)(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13))
@@ -499,31 +502,31 @@ importers:
version: 13.0.3(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13))
nativewind:
specifier: ^4.0.36
- version: 4.1.23(react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17)
+ version: 4.1.23(react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)(tailwindcss@3.4.17)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
react-native:
specifier: ^0.74.1
- version: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ version: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
react-native-gesture-handler:
specifier: ~2.16.2
- version: 2.16.2(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ version: 2.16.2(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
react-native-reanimated:
specifier: ~3.10.0
- version: 3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ version: 3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
react-native-safe-area-context:
specifier: 4.10.1
- version: 4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ version: 4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
react-native-screens:
specifier: ~3.31.1
- version: 3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ version: 3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
react-native-web:
specifier: ~0.19.12
- version: 0.19.13(encoding@0.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 0.19.13(encoding@0.1.13)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
@@ -538,8 +541,8 @@ importers:
specifier: ^7.24.4
version: 7.26.7
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
tailwindcss:
specifier: ^3.4.16
version: 3.4.17
@@ -554,7 +557,7 @@ importers:
version: link:../../packages/nuxt
nuxt:
specifier: ^3.15.0
- version: 3.15.0(@libsql/client@0.14.0)(@parcel/watcher@2.5.1)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(eslint@9.25.1(jiti@2.4.2))(ioredis@5.6.1)(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(yaml@2.7.0)
+ version: 3.15.0(@libsql/client@0.14.0)(@parcel/watcher@2.5.1)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(eslint@9.25.1(jiti@2.4.2))(ioredis@5.6.1)(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.32)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(yaml@2.7.0)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
@@ -571,14 +574,14 @@ importers:
specifier: 7.3.3
version: link:../../packages/react
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
@@ -587,11 +590,11 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
typescript:
specifier: 5.8.3
version: 5.8.3
@@ -606,7 +609,7 @@ importers:
version: 0.15.2(solid-js@1.9.3)
'@solidjs/start':
specifier: ^1.0.10
- version: 1.0.10(@testing-library/jest-dom@6.6.3)(solid-js@1.9.3)(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))
+ version: 1.0.10(@testing-library/jest-dom@6.6.3)(solid-js@1.9.3)(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))
'@uploadthing/solid':
specifier: 7.3.3
version: link:../../packages/solid
@@ -618,7 +621,7 @@ importers:
version: link:../../packages/uploadthing
vinxi:
specifier: ^0.5.1
- version: 0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0)
+ version: 0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0)
devDependencies:
autoprefixer:
specifier: ^10.4.20
@@ -668,29 +671,29 @@ importers:
dependencies:
'@tanstack/react-router':
specifier: ^1.121.27
- version: 1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@tanstack/react-start':
specifier: ^1.121.32
- version: 1.121.32(@tanstack/react-router@1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)))(encoding@0.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)
+ version: 1.121.32(@tanstack/react-router@1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)))(encoding@0.1.13)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)
'@uploadthing/react':
specifier: 7.3.3
version: link:../../packages/react
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
devDependencies:
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
typescript:
specifier: 5.8.3
version: 5.8.3
@@ -717,34 +720,34 @@ importers:
version: 0.0.1
drizzle-orm:
specifier: ^0.38.3
- version: 0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)
+ version: 0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)
lucide-react:
specifier: ^0.469.0
- version: 0.469.0(react@19.1.0)
+ version: 0.469.0(react@19.2.2)
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
next-auth:
specifier: 5.0.0-beta.25
- version: 5.0.0-beta.25(next@15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ version: 5.0.0-beta.25(next@15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react@19.2.2)
radix-ui:
specifier: 1.3.4
- version: 1.3.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.3.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
react-easy-crop:
specifier: ^5.2.0
- version: 5.2.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 5.2.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
server-only:
specifier: 0.0.1
version: 0.0.1
sonner:
specifier: ^2.0.3
- version: 2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.0.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
tailwind-merge:
specifier: ^2.2.1
version: 2.6.0
@@ -762,11 +765,11 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
drizzle-kit:
specifier: ^0.30.1
version: 0.30.1
@@ -790,7 +793,7 @@ importers:
dependencies:
'@clerk/nextjs':
specifier: ^6.9.6
- version: 6.9.6(next@15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 6.9.6(next@15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@t3-oss/env-nextjs':
specifier: ^0.11.1
version: 0.11.1(typescript@5.8.3)(zod@3.25.67)
@@ -798,14 +801,14 @@ importers:
specifier: 7.3.3
version: link:../../packages/react
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
@@ -820,17 +823,17 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
eslint:
specifier: 9.25.1
version: 9.25.1(jiti@2.4.2)
eslint-config-next:
- specifier: 15.2.3
- version: 15.2.3(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ specifier: 15.5.8
+ version: 15.5.8(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
typescript:
specifier: 5.8.3
version: 5.8.3
@@ -839,7 +842,7 @@ importers:
dependencies:
'@clerk/nextjs':
specifier: ^6.9.6
- version: 6.9.6(next@15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 6.9.6(next@15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@t3-oss/env-nextjs':
specifier: ^0.11.1
version: 0.11.1(typescript@5.8.3)(zod@3.25.67)
@@ -847,14 +850,14 @@ importers:
specifier: 7.3.3
version: link:../../packages/react
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
@@ -869,17 +872,17 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
eslint:
specifier: 9.25.1
version: 9.25.1(jiti@2.4.2)
eslint-config-next:
- specifier: 15.2.3
- version: 15.2.3(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ specifier: 15.5.8
+ version: 15.5.8(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
typescript:
specifier: 5.8.3
version: 5.8.3
@@ -888,13 +891,13 @@ importers:
dependencies:
'@clerk/react-router':
specifier: ^0.2.1
- version: 0.2.1(react-dom@19.1.0(react@19.1.0))(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ version: 0.2.1(react-dom@19.2.2(react@19.2.2))(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react@19.2.2)
'@react-router/node':
specifier: ^7.0.0
- version: 7.1.3(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(typescript@5.8.3)
+ version: 7.1.3(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(typescript@5.8.3)
'@react-router/serve':
specifier: ^7.0.0
- version: 7.1.3(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(typescript@5.8.3)
+ version: 7.1.3(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(typescript@5.8.3)
'@uploadthing/react':
specifier: 7.3.3
version: link:../../packages/react
@@ -902,30 +905,30 @@ importers:
specifier: ^5.1.19
version: 5.1.28
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
react-router:
specifier: ^7.0.0
- version: 7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react-router-dom:
specifier: ^7.1.3
- version: 7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
devDependencies:
'@react-router/dev':
specifier: ^7.0.0
- version: 7.1.3(@react-router/serve@7.1.3(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(typescript@5.8.3))(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.99.0(@cloudflare/workers-types@4.20241230.0))(yaml@2.7.0)
+ version: 7.1.3(@react-router/serve@7.1.3(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(typescript@5.8.3))(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.99.0(@cloudflare/workers-types@4.20241230.0))(yaml@2.7.0)
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
postcss:
specifier: 8.4.49
version: 8.4.49
@@ -946,13 +949,13 @@ importers:
dependencies:
'@clerk/remix':
specifier: ^4.2.25
- version: 4.4.6(@remix-run/react@2.15.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3))(@remix-run/server-runtime@2.15.2(typescript@5.8.3))(react-dom@19.1.0(react@19.1.0))(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ version: 4.4.6(@remix-run/react@2.15.2(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(typescript@5.8.3))(@remix-run/server-runtime@2.15.2(typescript@5.8.3))(react-dom@19.2.2(react@19.2.2))(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react@19.2.2)
'@remix-run/node':
specifier: ^2.12.0
version: 2.15.2(typescript@5.8.3)
'@remix-run/react':
specifier: ^2.12.0
- version: 2.15.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
+ version: 2.15.2(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(typescript@5.8.3)
'@remix-run/serve':
specifier: ^2.12.0
version: 2.15.2(typescript@5.8.3)
@@ -963,24 +966,24 @@ importers:
specifier: ^5.1.19
version: 5.1.28
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
devDependencies:
'@remix-run/dev':
specifier: ^2.12.0
- version: 2.15.2(@remix-run/react@2.15.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3))(@remix-run/serve@2.15.2(typescript@5.8.3))(@types/node@22.12.0)(lightningcss@1.29.3)(terser@5.37.0)(typescript@5.8.3)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.99.0(@cloudflare/workers-types@4.20241230.0))
+ version: 2.15.2(@remix-run/react@2.15.2(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(typescript@5.8.3))(@remix-run/serve@2.15.2(typescript@5.8.3))(@types/node@22.12.0)(lightningcss@1.29.3)(terser@5.37.0)(typescript@5.8.3)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.99.0(@cloudflare/workers-types@4.20241230.0))
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
postcss:
specifier: 8.4.49
version: 8.4.49
@@ -1010,16 +1013,16 @@ importers:
version: link:../../packages/react
drizzle-orm:
specifier: ^0.38.3
- version: 0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)
+ version: 0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
@@ -1034,17 +1037,17 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
eslint:
specifier: 9.25.1
version: 9.25.1(jiti@2.4.2)
eslint-config-next:
- specifier: 15.2.3
- version: 15.2.3(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ specifier: 15.5.8
+ version: 15.5.8(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
typescript:
specifier: 5.8.3
version: 5.8.3
@@ -1062,19 +1065,19 @@ importers:
version: link:../../packages/react
drizzle-orm:
specifier: ^0.38.3
- version: 0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)
+ version: 0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
swr:
specifier: ^2.2.5
- version: 2.3.0(react@19.1.0)
+ version: 2.3.0(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
@@ -1089,17 +1092,17 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
eslint:
specifier: 9.25.1
version: 9.25.1(jiti@2.4.2)
eslint-config-next:
- specifier: 15.2.3
- version: 15.2.3(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
+ specifier: 15.5.8
+ version: 15.5.8(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
typescript:
specifier: 5.8.3
version: 5.8.3
@@ -1117,31 +1120,31 @@ importers:
version: 0.7.1
cmdk:
specifier: ^1.1.1
- version: 1.1.1(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.1.1(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
lucide-react:
specifier: ^0.469.0
- version: 0.469.0(react@19.1.0)
+ version: 0.469.0(react@19.2.2)
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
next-themes:
specifier: ^0.4.6
- version: 0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 0.4.6(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
novel:
specifier: ^0.5.0
- version: 0.5.0(@tiptap/extension-code-block@2.11.0(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2))(@types/react@19.1.2)(highlight.js@11.11.1)(lowlight@3.3.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 0.5.0(@tiptap/extension-code-block@2.11.0(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2))(@types/react@19.2.7)(highlight.js@11.11.1)(lowlight@3.3.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
radix-ui:
specifier: 1.3.4
- version: 1.3.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 1.3.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
sonner:
specifier: ^2.0.3
- version: 2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 2.0.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
tailwind-merge:
specifier: ^2.2.1
version: 2.6.0
@@ -1150,17 +1153,17 @@ importers:
version: link:../../packages/uploadthing
use-debounce:
specifier: ^10.0.4
- version: 10.0.4(react@19.1.0)
+ version: 10.0.4(react@19.2.2)
devDependencies:
'@types/node':
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
tailwindcss:
specifier: ^3.4.16
version: 3.4.17
@@ -1177,17 +1180,17 @@ importers:
specifier: 7.3.3
version: link:../../packages/react
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
react-image-crop:
specifier: ^11.0.5
- version: 11.0.7(react@19.1.0)
+ version: 11.0.7(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
@@ -1196,11 +1199,11 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
typescript:
specifier: 5.8.3
version: 5.8.3
@@ -1208,14 +1211,14 @@ importers:
examples/with-serveractions:
dependencies:
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
@@ -1224,11 +1227,11 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
typescript:
specifier: 5.8.3
version: 5.8.3
@@ -1239,14 +1242,14 @@ importers:
specifier: 7.3.3
version: link:../../packages/react
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
uploadthing:
specifier: 7.7.4
version: link:../../packages/uploadthing
@@ -1255,11 +1258,11 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
postcss:
specifier: 8.4.49
version: 8.4.49
@@ -1280,8 +1283,8 @@ importers:
version: link:../shared
devDependencies:
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@uploadthing/eslint-config':
specifier: workspace:*
version: link:../../tooling/eslint-config
@@ -1293,19 +1296,19 @@ importers:
version: 9.25.1(jiti@2.4.2)
expo-constants:
specifier: ^16.0.0
- version: 16.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))
+ version: 16.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))
expo-document-picker:
specifier: ^12.0.1
- version: 12.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))
+ version: 12.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))
expo-image-picker:
specifier: ^15.0.4
- version: 15.0.7(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))
+ version: 15.0.7(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-native:
specifier: ^0.74.1
- version: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ version: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
tsdown:
specifier: 0.14.1
version: 0.14.1(typescript@5.8.3)
@@ -1372,7 +1375,7 @@ importers:
version: 1.15.3
nuxt:
specifier: ^3.15.0
- version: 3.15.0(@libsql/client@0.14.0)(@parcel/watcher@2.5.1)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(eslint@9.25.1(jiti@2.4.2))(ioredis@5.6.1)(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(yaml@2.7.0)
+ version: 3.15.0(@libsql/client@0.14.0)(@parcel/watcher@2.5.1)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(eslint@9.25.1(jiti@2.4.2))(ioredis@5.6.1)(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.32)(rollup@3.29.5)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(yaml@2.7.0)
uploadthing:
specifier: workspace:*
version: link:../uploadthing
@@ -1390,7 +1393,7 @@ importers:
version: 6.12.2(magicast@0.3.5)(rollup@4.44.0)
nuxt:
specifier: ^3.15.0
- version: 3.15.0(@libsql/client@0.14.0)(@parcel/watcher@2.5.1)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(eslint@9.25.1(jiti@2.4.2))(ioredis@5.6.1)(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(yaml@2.7.0)
+ version: 3.15.0(@libsql/client@0.14.0)(@parcel/watcher@2.5.1)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(eslint@9.25.1(jiti@2.4.2))(ioredis@5.6.1)(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.32)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(yaml@2.7.0)
packages/react:
dependencies:
@@ -1405,11 +1408,11 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
'@uploadthing/eslint-config':
specifier: workspace:*
version: link:../../tooling/eslint-config
@@ -1435,14 +1438,14 @@ importers:
specifier: 2.7.5
version: 2.7.5(@types/node@22.12.0)(typescript@5.8.3)
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
tailwindcss:
specifier: ^3.4.16
version: 3.4.17
@@ -1460,7 +1463,7 @@ importers:
version: 3.2.4(@types/node@22.12.0)(@vitest/browser@3.2.4)(happy-dom@16.3.0)(jiti@2.4.2)(lightningcss@1.29.3)(msw@2.7.5(@types/node@22.12.0)(typescript@5.8.3))(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)
vitest-browser-react:
specifier: 0.3.0
- version: 0.3.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(@vitest/browser@3.2.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(vitest@3.2.4)
+ version: 0.3.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(@vitest/browser@3.2.4)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(vitest@3.2.4)
wait-on:
specifier: ^8.0.1
version: 8.0.1
@@ -1484,8 +1487,8 @@ importers:
specifier: 0.25.1
version: 0.25.1(effect@3.17.7)(vitest@3.2.4)
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@uploadthing/eslint-config':
specifier: 'workspace:'
version: link:../../tooling/eslint-config
@@ -1502,8 +1505,8 @@ importers:
specifier: 9.25.1
version: 9.25.1(jiti@2.4.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
solid-js:
specifier: ^1.9.3
version: 1.9.3
@@ -1652,8 +1655,8 @@ importers:
specifier: ^5.0.3
version: 5.0.3
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@uploadthing/eslint-config':
specifier: workspace:*
version: link:../../tooling/eslint-config
@@ -1685,8 +1688,8 @@ importers:
specifier: 2.7.5
version: 2.7.5(@types/node@22.12.0)(typescript@5.8.3)
next:
- specifier: 15.3.1
- version: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ specifier: 15.5.8
+ version: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
solid-js:
specifier: ^1.9.3
version: 1.9.3
@@ -1771,16 +1774,16 @@ importers:
version: 3.17.7
lucide-react:
specifier: ^0.469.0
- version: 0.469.0(react@19.1.0)
+ version: 0.469.0(react@19.2.2)
next:
specifier: canary
- version: 15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
tailwind-merge:
specifier: ^2.2.1
version: 2.6.0
@@ -1798,11 +1801,11 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
eslint:
specifier: 9.25.1
version: 9.25.1(jiti@2.4.2)
@@ -1823,7 +1826,7 @@ importers:
dependencies:
'@uploadthing/react':
specifier: npm:@uploadthing/react@6
- version: 6.8.0(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)(solid-js@1.9.3)(uploadthing@6.13.3(@effect/platform@0.90.3(effect@3.17.7))(express@5.0.1)(fastify@5.2.0)(h3@1.15.3)(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(tailwindcss@4.0.0))(vue@3.5.13(typescript@5.8.3))
+ version: 6.8.0(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react@19.2.2)(solid-js@1.9.3)(uploadthing@6.13.3(@effect/platform@0.90.3(effect@3.17.7))(express@5.0.1)(fastify@5.2.0)(h3@1.15.3)(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(tailwindcss@4.0.0))(vue@3.5.13(typescript@5.8.3))
clsx:
specifier: 2.1.1
version: 2.1.1
@@ -1832,16 +1835,16 @@ importers:
version: 3.17.7
next:
specifier: canary
- version: 15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ version: 15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
react:
- specifier: 19.1.0
- version: 19.1.0
+ specifier: 19.2.2
+ version: 19.2.2
react-dom:
- specifier: 19.1.0
- version: 19.1.0(react@19.1.0)
+ specifier: 19.2.2
+ version: 19.2.2(react@19.2.2)
uploadthing:
specifier: npm:uploadthing@6
- version: 6.13.3(@effect/platform@0.90.3(effect@3.17.7))(express@5.0.1)(fastify@5.2.0)(h3@1.15.3)(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(tailwindcss@4.0.0)
+ version: 6.13.3(@effect/platform@0.90.3(effect@3.17.7))(express@5.0.1)(fastify@5.2.0)(h3@1.15.3)(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(tailwindcss@4.0.0)
zod:
specifier: ^3.24.1
version: 3.25.67
@@ -1850,11 +1853,11 @@ importers:
specifier: ^22.10.0
version: 22.12.0
'@types/react':
- specifier: 19.1.2
- version: 19.1.2
+ specifier: 19.2.7
+ version: 19.2.7
'@types/react-dom':
- specifier: 19.1.2
- version: 19.1.2(@types/react@19.1.2)
+ specifier: 19.2.3
+ version: 19.2.3(@types/react@19.2.7)
eslint:
specifier: 9.25.1
version: 9.25.1(jiti@2.4.2)
@@ -4730,12 +4733,6 @@ packages:
cpu: [arm64]
os: [darwin]
- '@img/sharp-darwin-arm64@0.34.1':
- resolution: {integrity: sha512-pn44xgBtgpEbZsu+lWf2KNb6OAf70X68k+yk69Ic2Xz11zHR/w24/U49XT7AeRwJ0Px+mhALhU5LPci1Aymk7A==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [arm64]
- os: [darwin]
-
'@img/sharp-darwin-arm64@0.34.3':
resolution: {integrity: sha512-ryFMfvxxpQRsgZJqBd4wsttYQbCxsJksrv9Lw/v798JcQ8+w84mBWuXwl+TT0WJ/WrYOLaYpwQXi3sA9nTIaIg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -4748,12 +4745,6 @@ packages:
cpu: [x64]
os: [darwin]
- '@img/sharp-darwin-x64@0.34.1':
- resolution: {integrity: sha512-VfuYgG2r8BpYiOUN+BfYeFo69nP/MIwAtSJ7/Zpxc5QF3KS22z8Pvg3FkrSFJBPNQ7mmcUcYQFBmEQp7eu1F8Q==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [x64]
- os: [darwin]
-
'@img/sharp-darwin-x64@0.34.3':
resolution: {integrity: sha512-yHpJYynROAj12TA6qil58hmPmAwxKKC7reUqtGLzsOHfP7/rniNGTL8tjWX6L3CTV4+5P4ypcS7Pp+7OB+8ihA==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -4765,11 +4756,6 @@ packages:
cpu: [arm64]
os: [darwin]
- '@img/sharp-libvips-darwin-arm64@1.1.0':
- resolution: {integrity: sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA==}
- cpu: [arm64]
- os: [darwin]
-
'@img/sharp-libvips-darwin-arm64@1.2.0':
resolution: {integrity: sha512-sBZmpwmxqwlqG9ueWFXtockhsxefaV6O84BMOrhtg/YqbTaRdqDE7hxraVE3y6gVM4eExmfzW4a8el9ArLeEiQ==}
cpu: [arm64]
@@ -4780,11 +4766,6 @@ packages:
cpu: [x64]
os: [darwin]
- '@img/sharp-libvips-darwin-x64@1.1.0':
- resolution: {integrity: sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ==}
- cpu: [x64]
- os: [darwin]
-
'@img/sharp-libvips-darwin-x64@1.2.0':
resolution: {integrity: sha512-M64XVuL94OgiNHa5/m2YvEQI5q2cl9d/wk0qFTDVXcYzi43lxuiFTftMR1tOnFQovVXNZJ5TURSDK2pNe9Yzqg==}
cpu: [x64]
@@ -4795,11 +4776,6 @@ packages:
cpu: [arm64]
os: [linux]
- '@img/sharp-libvips-linux-arm64@1.1.0':
- resolution: {integrity: sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew==}
- cpu: [arm64]
- os: [linux]
-
'@img/sharp-libvips-linux-arm64@1.2.0':
resolution: {integrity: sha512-RXwd0CgG+uPRX5YYrkzKyalt2OJYRiJQ8ED/fi1tq9WQW2jsQIn0tqrlR5l5dr/rjqq6AHAxURhj2DVjyQWSOA==}
cpu: [arm64]
@@ -4810,21 +4786,11 @@ packages:
cpu: [arm]
os: [linux]
- '@img/sharp-libvips-linux-arm@1.1.0':
- resolution: {integrity: sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA==}
- cpu: [arm]
- os: [linux]
-
'@img/sharp-libvips-linux-arm@1.2.0':
resolution: {integrity: sha512-mWd2uWvDtL/nvIzThLq3fr2nnGfyr/XMXlq8ZJ9WMR6PXijHlC3ksp0IpuhK6bougvQrchUAfzRLnbsen0Cqvw==}
cpu: [arm]
os: [linux]
- '@img/sharp-libvips-linux-ppc64@1.1.0':
- resolution: {integrity: sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ==}
- cpu: [ppc64]
- os: [linux]
-
'@img/sharp-libvips-linux-ppc64@1.2.0':
resolution: {integrity: sha512-Xod/7KaDDHkYu2phxxfeEPXfVXFKx70EAFZ0qyUdOjCcxbjqyJOEUpDe6RIyaunGxT34Anf9ue/wuWOqBW2WcQ==}
cpu: [ppc64]
@@ -4835,11 +4801,6 @@ packages:
cpu: [s390x]
os: [linux]
- '@img/sharp-libvips-linux-s390x@1.1.0':
- resolution: {integrity: sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA==}
- cpu: [s390x]
- os: [linux]
-
'@img/sharp-libvips-linux-s390x@1.2.0':
resolution: {integrity: sha512-eMKfzDxLGT8mnmPJTNMcjfO33fLiTDsrMlUVcp6b96ETbnJmd4uvZxVJSKPQfS+odwfVaGifhsB07J1LynFehw==}
cpu: [s390x]
@@ -4850,11 +4811,6 @@ packages:
cpu: [x64]
os: [linux]
- '@img/sharp-libvips-linux-x64@1.1.0':
- resolution: {integrity: sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q==}
- cpu: [x64]
- os: [linux]
-
'@img/sharp-libvips-linux-x64@1.2.0':
resolution: {integrity: sha512-ZW3FPWIc7K1sH9E3nxIGB3y3dZkpJlMnkk7z5tu1nSkBoCgw2nSRTFHI5pB/3CQaJM0pdzMF3paf9ckKMSE9Tg==}
cpu: [x64]
@@ -4865,11 +4821,6 @@ packages:
cpu: [arm64]
os: [linux]
- '@img/sharp-libvips-linuxmusl-arm64@1.1.0':
- resolution: {integrity: sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w==}
- cpu: [arm64]
- os: [linux]
-
'@img/sharp-libvips-linuxmusl-arm64@1.2.0':
resolution: {integrity: sha512-UG+LqQJbf5VJ8NWJ5Z3tdIe/HXjuIdo4JeVNADXBFuG7z9zjoegpzzGIyV5zQKi4zaJjnAd2+g2nna8TZvuW9Q==}
cpu: [arm64]
@@ -4880,11 +4831,6 @@ packages:
cpu: [x64]
os: [linux]
- '@img/sharp-libvips-linuxmusl-x64@1.1.0':
- resolution: {integrity: sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A==}
- cpu: [x64]
- os: [linux]
-
'@img/sharp-libvips-linuxmusl-x64@1.2.0':
resolution: {integrity: sha512-SRYOLR7CXPgNze8akZwjoGBoN1ThNZoqpOgfnOxmWsklTGVfJiGJoC/Lod7aNMGA1jSsKWM1+HRX43OP6p9+6Q==}
cpu: [x64]
@@ -4896,12 +4842,6 @@ packages:
cpu: [arm64]
os: [linux]
- '@img/sharp-linux-arm64@0.34.1':
- resolution: {integrity: sha512-kX2c+vbvaXC6vly1RDf/IWNXxrlxLNpBVWkdpRq5Ka7OOKj6nr66etKy2IENf6FtOgklkg9ZdGpEu9kwdlcwOQ==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [arm64]
- os: [linux]
-
'@img/sharp-linux-arm64@0.34.3':
resolution: {integrity: sha512-QdrKe3EvQrqwkDrtuTIjI0bu6YEJHTgEeqdzI3uWJOH6G1O8Nl1iEeVYRGdj1h5I21CqxSvQp1Yv7xeU3ZewbA==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -4914,12 +4854,6 @@ packages:
cpu: [arm]
os: [linux]
- '@img/sharp-linux-arm@0.34.1':
- resolution: {integrity: sha512-anKiszvACti2sGy9CirTlNyk7BjjZPiML1jt2ZkTdcvpLU1YH6CXwRAZCA2UmRXnhiIftXQ7+Oh62Ji25W72jA==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [arm]
- os: [linux]
-
'@img/sharp-linux-arm@0.34.3':
resolution: {integrity: sha512-oBK9l+h6KBN0i3dC8rYntLiVfW8D8wH+NPNT3O/WBHeW0OQWCjfWksLUaPidsrDKpJgXp3G3/hkmhptAW0I3+A==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -4938,12 +4872,6 @@ packages:
cpu: [s390x]
os: [linux]
- '@img/sharp-linux-s390x@0.34.1':
- resolution: {integrity: sha512-7s0KX2tI9mZI2buRipKIw2X1ufdTeaRgwmRabt5bi9chYfhur+/C1OXg3TKg/eag1W+6CCWLVmSauV1owmRPxA==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [s390x]
- os: [linux]
-
'@img/sharp-linux-s390x@0.34.3':
resolution: {integrity: sha512-3gahT+A6c4cdc2edhsLHmIOXMb17ltffJlxR0aC2VPZfwKoTGZec6u5GrFgdR7ciJSsHT27BD3TIuGcuRT0KmQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -4956,12 +4884,6 @@ packages:
cpu: [x64]
os: [linux]
- '@img/sharp-linux-x64@0.34.1':
- resolution: {integrity: sha512-wExv7SH9nmoBW3Wr2gvQopX1k8q2g5V5Iag8Zk6AVENsjwd+3adjwxtp3Dcu2QhOXr8W9NusBU6XcQUohBZ5MA==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [x64]
- os: [linux]
-
'@img/sharp-linux-x64@0.34.3':
resolution: {integrity: sha512-8kYso8d806ypnSq3/Ly0QEw90V5ZoHh10yH0HnrzOCr6DKAPI6QVHvwleqMkVQ0m+fc7EH8ah0BB0QPuWY6zJQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -4974,12 +4896,6 @@ packages:
cpu: [arm64]
os: [linux]
- '@img/sharp-linuxmusl-arm64@0.34.1':
- resolution: {integrity: sha512-DfvyxzHxw4WGdPiTF0SOHnm11Xv4aQexvqhRDAoD00MzHekAj9a/jADXeXYCDFH/DzYruwHbXU7uz+H+nWmSOQ==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [arm64]
- os: [linux]
-
'@img/sharp-linuxmusl-arm64@0.34.3':
resolution: {integrity: sha512-vAjbHDlr4izEiXM1OTggpCcPg9tn4YriK5vAjowJsHwdBIdx0fYRsURkxLG2RLm9gyBq66gwtWI8Gx0/ov+JKQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -4992,12 +4908,6 @@ packages:
cpu: [x64]
os: [linux]
- '@img/sharp-linuxmusl-x64@0.34.1':
- resolution: {integrity: sha512-pax/kTR407vNb9qaSIiWVnQplPcGU8LRIJpDT5o8PdAx5aAA7AS3X9PS8Isw1/WfqgQorPotjrZL3Pqh6C5EBg==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [x64]
- os: [linux]
-
'@img/sharp-linuxmusl-x64@0.34.3':
resolution: {integrity: sha512-gCWUn9547K5bwvOn9l5XGAEjVTTRji4aPTqLzGXHvIr6bIDZKNTA34seMPgM0WmSf+RYBH411VavCejp3PkOeQ==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -5009,11 +4919,6 @@ packages:
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
cpu: [wasm32]
- '@img/sharp-wasm32@0.34.1':
- resolution: {integrity: sha512-YDybQnYrLQfEpzGOQe7OKcyLUCML4YOXl428gOOzBgN6Gw0rv8dpsJ7PqTHxBnXnwXr8S1mYFSLSa727tpz0xg==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [wasm32]
-
'@img/sharp-wasm32@0.34.3':
resolution: {integrity: sha512-+CyRcpagHMGteySaWos8IbnXcHgfDn7pO2fiC2slJxvNq9gDipYBN42/RagzctVRKgxATmfqOSulgZv5e1RdMg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -5031,12 +4936,6 @@ packages:
cpu: [ia32]
os: [win32]
- '@img/sharp-win32-ia32@0.34.1':
- resolution: {integrity: sha512-WKf/NAZITnonBf3U1LfdjoMgNO5JYRSlhovhRhMxXVdvWYveM4kM3L8m35onYIdh75cOMCo1BexgVQcCDzyoWw==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [ia32]
- os: [win32]
-
'@img/sharp-win32-ia32@0.34.3':
resolution: {integrity: sha512-xuCdhH44WxuXgOM714hn4amodJMZl3OEvf0GVTm0BEyMeA2to+8HEdRPShH0SLYptJY1uBw+SCFP9WVQi1Q/cw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -5049,12 +4948,6 @@ packages:
cpu: [x64]
os: [win32]
- '@img/sharp-win32-x64@0.34.1':
- resolution: {integrity: sha512-hw1iIAHpNE8q3uMIRCgGOeDoz9KtFNarFLQclLxr/LK1VBkj8nby18RjFvr6aP7USRYAjTZW6yisnBWMX571Tw==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- cpu: [x64]
- os: [win32]
-
'@img/sharp-win32-x64@0.34.3':
resolution: {integrity: sha512-OWwz05d++TxzLEv4VnsTz5CmZ6mI6S05sfQGEMrNrQcOEERbX46332IvE7pO/EUiw7jUrrS40z/M7kPyjfl04g==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -5384,17 +5277,17 @@ packages:
'@next/env@13.5.6':
resolution: {integrity: sha512-Yac/bV5sBGkkEXmAX5FWPS9Mmo2rthrOPRQQNfycJPkjUAUclomCPH7QFVCDQ4Mp2k2K1SSM6m0zrxYrOwtFQw==}
- '@next/env@15.3.1':
- resolution: {integrity: sha512-cwK27QdzrMblHSn9DZRV+DQscHXRuJv6MydlJRpFSqJWZrTYMLzKDeyueJNN9MGd8NNiUKzDQADAf+dMLXX7YQ==}
-
'@next/env@15.4.2-canary.51':
resolution: {integrity: sha512-xiO1sTeqYlXaa39tTUe7KsWAe/9Fzg9zjVsHUDgfO8wl+5hN7sE9sxZLSw2+or2s85ozaU4g2loIJTBpOX8ROg==}
- '@next/eslint-plugin-next@15.2.3':
- resolution: {integrity: sha512-eNSOIMJtjs+dp4Ms1tB1PPPJUQHP3uZK+OQ7iFY9qXpGO6ojT6imCL+KcUOqE/GXGidWbBZJzYdgAdPHqeCEPA==}
+ '@next/env@15.5.8':
+ resolution: {integrity: sha512-ejZHa3ogTxcy851dFoNtfB5B2h7AbSAtHbR5CymUlnz4yW1QjHNufVpvTu8PTnWBKFKjrd4k6Gbi2SsCiJKvxw==}
- '@next/mdx@15.1.3':
- resolution: {integrity: sha512-dvOQWYbvdztu9ubhSwQPTnIY5zUA8lorEtO1+f8kaba2nVjQSh3G16tfqY/8Ovw9T3kAJhxOZIbuWMpaeDIBAw==}
+ '@next/eslint-plugin-next@15.5.8':
+ resolution: {integrity: sha512-PBv6j6YxyC9cFgZKSGFlFydQ+lzzR3Fs1GBr9Z2YzoZK7dH/K8ebRtZiN4pV+b8MbSJiHjZYTKVPKF/UzNgrOA==}
+
+ '@next/mdx@15.5.8':
+ resolution: {integrity: sha512-muaATfjp56oPXywHnR5kZKrr0N9FOgb8luzDRJxZ2Uq4FmYAtdoP+pgn0tdzKrubsoFHMNP+m5j9ALdo3ixmAQ==}
peerDependencies:
'@mdx-js/loader': '>=0.15.0'
'@mdx-js/react': '>=0.15.0'
@@ -5404,22 +5297,16 @@ packages:
'@mdx-js/react':
optional: true
- '@next/swc-darwin-arm64@15.3.1':
- resolution: {integrity: sha512-hjDw4f4/nla+6wysBL07z52Gs55Gttp5Bsk5/8AncQLJoisvTBP0pRIBK/B16/KqQyH+uN4Ww8KkcAqJODYH3w==}
- engines: {node: '>= 10'}
- cpu: [arm64]
- os: [darwin]
-
'@next/swc-darwin-arm64@15.4.2-canary.51':
resolution: {integrity: sha512-9wKXXuJGQuNlNFrHdsSXMMEWA4zlXs7I2AcNk8MEQZbLIhaqE4pAyoLcXIyHWfbU+rQM49zAsRNF8jGkVxVKSw==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@next/swc-darwin-x64@15.3.1':
- resolution: {integrity: sha512-q+aw+cJ2ooVYdCEqZVk+T4Ni10jF6Fo5DfpEV51OupMaV5XL6pf3GCzrk6kSSZBsMKZtVC1Zm/xaNBFpA6bJ2g==}
+ '@next/swc-darwin-arm64@15.5.7':
+ resolution: {integrity: sha512-IZwtxCEpI91HVU/rAUOOobWSZv4P2DeTtNaCdHqLcTJU4wdNXgAySvKa/qJCgR5m6KI8UsKDXtO2B31jcaw1Yw==}
engines: {node: '>= 10'}
- cpu: [x64]
+ cpu: [arm64]
os: [darwin]
'@next/swc-darwin-x64@15.4.2-canary.51':
@@ -5428,11 +5315,11 @@ packages:
cpu: [x64]
os: [darwin]
- '@next/swc-linux-arm64-gnu@15.3.1':
- resolution: {integrity: sha512-wBQ+jGUI3N0QZyWmmvRHjXjTWFy8o+zPFLSOyAyGFI94oJi+kK/LIZFJXeykvgXUk1NLDAEFDZw/NVINhdk9FQ==}
+ '@next/swc-darwin-x64@15.5.7':
+ resolution: {integrity: sha512-UP6CaDBcqaCBuiq/gfCEJw7sPEoX1aIjZHnBWN9v9qYHQdMKvCKcAVs4OX1vIjeE+tC5EIuwDTVIoXpUes29lg==}
engines: {node: '>= 10'}
- cpu: [arm64]
- os: [linux]
+ cpu: [x64]
+ os: [darwin]
'@next/swc-linux-arm64-gnu@15.4.2-canary.51':
resolution: {integrity: sha512-iR8XYOUC0MWXIbW+gN8MRoI/yPb4HfccHGkVgz7hQsGgOTm33NqO01Bf1abm7ezhLpNHdw5oukLwGsQM3VdYkw==}
@@ -5440,8 +5327,8 @@ packages:
cpu: [arm64]
os: [linux]
- '@next/swc-linux-arm64-musl@15.3.1':
- resolution: {integrity: sha512-IIxXEXRti/AulO9lWRHiCpUUR8AR/ZYLPALgiIg/9ENzMzLn3l0NSxVdva7R/VDcuSEBo0eGVCe3evSIHNz0Hg==}
+ '@next/swc-linux-arm64-gnu@15.5.7':
+ resolution: {integrity: sha512-NCslw3GrNIw7OgmRBxHtdWFQYhexoUCq+0oS2ccjyYLtcn1SzGzeM54jpTFonIMUjNbHmpKpziXnpxhSWLcmBA==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
@@ -5452,10 +5339,10 @@ packages:
cpu: [arm64]
os: [linux]
- '@next/swc-linux-x64-gnu@15.3.1':
- resolution: {integrity: sha512-bfI4AMhySJbyXQIKH5rmLJ5/BP7bPwuxauTvVEiJ/ADoddaA9fgyNNCcsbu9SlqfHDoZmfI6g2EjzLwbsVTr5A==}
+ '@next/swc-linux-arm64-musl@15.5.7':
+ resolution: {integrity: sha512-nfymt+SE5cvtTrG9u1wdoxBr9bVB7mtKTcj0ltRn6gkP/2Nu1zM5ei8rwP9qKQP0Y//umK+TtkKgNtfboBxRrw==}
engines: {node: '>= 10'}
- cpu: [x64]
+ cpu: [arm64]
os: [linux]
'@next/swc-linux-x64-gnu@15.4.2-canary.51':
@@ -5464,8 +5351,8 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-linux-x64-musl@15.3.1':
- resolution: {integrity: sha512-FeAbR7FYMWR+Z+M5iSGytVryKHiAsc0x3Nc3J+FD5NVbD5Mqz7fTSy8CYliXinn7T26nDMbpExRUI/4ekTvoiA==}
+ '@next/swc-linux-x64-gnu@15.5.7':
+ resolution: {integrity: sha512-hvXcZvCaaEbCZcVzcY7E1uXN9xWZfFvkNHwbe/n4OkRhFWrs1J1QV+4U1BN06tXLdaS4DazEGXwgqnu/VMcmqw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
@@ -5476,11 +5363,11 @@ packages:
cpu: [x64]
os: [linux]
- '@next/swc-win32-arm64-msvc@15.3.1':
- resolution: {integrity: sha512-yP7FueWjphQEPpJQ2oKmshk/ppOt+0/bB8JC8svPUZNy0Pi3KbPx2Llkzv1p8CoQa+D2wknINlJpHf3vtChVBw==}
+ '@next/swc-linux-x64-musl@15.5.7':
+ resolution: {integrity: sha512-4IUO539b8FmF0odY6/SqANJdgwn1xs1GkPO5doZugwZ3ETF6JUdckk7RGmsfSf7ws8Qb2YB5It33mvNL/0acqA==}
engines: {node: '>= 10'}
- cpu: [arm64]
- os: [win32]
+ cpu: [x64]
+ os: [linux]
'@next/swc-win32-arm64-msvc@15.4.2-canary.51':
resolution: {integrity: sha512-wfa1TYSGMiSR2HgRfvQMa5p/Mw+J9DfYsTy/qxZucXq8mbbb7W2FFvYMjYBd9gMe0mBsiailrEWU9fq2g2qlUQ==}
@@ -5488,10 +5375,10 @@ packages:
cpu: [arm64]
os: [win32]
- '@next/swc-win32-x64-msvc@15.3.1':
- resolution: {integrity: sha512-3PMvF2zRJAifcRNni9uMk/gulWfWS+qVI/pagd+4yLF5bcXPZPPH2xlYRYOsUjmCJOXSTAC2PjRzbhsRzR2fDQ==}
+ '@next/swc-win32-arm64-msvc@15.5.7':
+ resolution: {integrity: sha512-CpJVTkYI3ZajQkC5vajM7/ApKJUOlm6uP4BknM3XKvJ7VXAvCqSjSLmM0LKdYzn6nBJVSjdclx8nYJSa3xlTgQ==}
engines: {node: '>= 10'}
- cpu: [x64]
+ cpu: [arm64]
os: [win32]
'@next/swc-win32-x64-msvc@15.4.2-canary.51':
@@ -5500,6 +5387,12 @@ packages:
cpu: [x64]
os: [win32]
+ '@next/swc-win32-x64-msvc@15.5.7':
+ resolution: {integrity: sha512-gMzgBX164I6DN+9/PGA+9dQiwmTkE4TloBNx8Kv9UiGARsr9Nba7IpcBRA1iTV9vwlYnrE3Uy6I7Aj6qLjQuqw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -8239,16 +8132,16 @@ packages:
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
- '@types/react-dom@19.1.2':
- resolution: {integrity: sha512-XGJkWF41Qq305SKWEILa1O8vzhb3aOo3ogBlSmiqNko/WmRb6QIaweuZCXjKygVDXpzXb5wyxKTSOsmkuqj+Qw==}
+ '@types/react-dom@19.2.3':
+ resolution: {integrity: sha512-jp2L/eY6fn+KgVVQAOqYItbF0VY/YApe5Mz2F0aykSO8gx31bYCZyvSeYxCHKvzHG5eZjc+zyaS5BrBWya2+kQ==}
peerDependencies:
- '@types/react': ^19.0.0
+ '@types/react': ^19.2.0
'@types/react-highlight-words@0.20.0':
resolution: {integrity: sha512-Qm512TiOakvtNzHJ2+TNVHnLn5cJ2wLQV0+LrhuispVth6dRf5b8ydjq3Kc0thpZ7bz4s6RnG6meboAXHWRK+Q==}
- '@types/react@19.1.2':
- resolution: {integrity: sha512-oxLPMytKchWGbnQM9O7D67uPa9paTNxO7jVoNMXgkkErULBPhPARCfkKL9ytcIJJRGjbsVwW4ugJzyFFvm/Tiw==}
+ '@types/react@19.2.7':
+ resolution: {integrity: sha512-MWtvHrGZLFttgeEj28VXHxpmwYbor/ATPYbBfSFZEIRK0ecCFLl2Qo55z52Hss+UV9CRN7trSeq1zbgx7YDWWg==}
'@types/resolve@1.20.2':
resolution: {integrity: sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==}
@@ -9356,10 +9249,6 @@ packages:
peerDependencies:
esbuild: '>=0.18'
- busboy@1.6.0:
- resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
- engines: {node: '>=10.16.0'}
-
bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
@@ -9992,6 +9881,9 @@ packages:
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+ csstype@3.2.3:
+ resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
+
cva@1.0.0-beta.2:
resolution: {integrity: sha512-dqcOFe247I5pKxfuzqfq3seLL5iMYsTgo40Uw7+pKZAntPgFtR7Tmy59P5IVIq/XgB0NQWoIvYDt9TwHkuK8Cg==}
peerDependencies:
@@ -10756,8 +10648,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
- eslint-config-next@15.2.3:
- resolution: {integrity: sha512-VDQwbajhNMFmrhLWVyUXCqsGPN+zz5G8Ys/QwFubfsxTIrkqdx3N3x3QPW+pERz8bzGPP0IgEm8cNbZcd8PFRQ==}
+ eslint-config-next@15.5.8:
+ resolution: {integrity: sha512-FU2nFCVYt3z60EH8upds4frThuIAiSt81zUtQI/9fIc25VVVT3yaKsFwGIY6BIDT/I0X/Dam+RR7xzTRZMyArQ==}
peerDependencies:
eslint: ^7.23.0 || ^8.0.0 || ^9.0.0
typescript: '>=3.3.1'
@@ -13984,13 +13876,13 @@ packages:
react: ^18.2.0
react-dom: ^18.2.0
- next@15.3.1:
- resolution: {integrity: sha512-8+dDV0xNLOgHlyBxP1GwHGVaNXsmp+2NhZEYrXr24GWLHtt27YrBPbPuHvzlhi7kZNYjeJNR93IF5zfFu5UL0g==}
+ next@15.4.2-canary.51:
+ resolution: {integrity: sha512-0danfHCbTvU5cAXiSQWPow2AXgFC11ymChQzgMEBqqSd+1v/hBc2TASlB+x5GhUF/wLxmCe9861kcbqocEDDEQ==}
engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
hasBin: true
peerDependencies:
'@opentelemetry/api': ^1.1.0
- '@playwright/test': ^1.41.2
+ '@playwright/test': ^1.51.1
babel-plugin-react-compiler: '*'
react: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
react-dom: ^18.2.0 || 19.0.0-rc-de68d2f4-20241204 || ^19.0.0
@@ -14005,8 +13897,8 @@ packages:
sass:
optional: true
- next@15.4.2-canary.51:
- resolution: {integrity: sha512-0danfHCbTvU5cAXiSQWPow2AXgFC11ymChQzgMEBqqSd+1v/hBc2TASlB+x5GhUF/wLxmCe9861kcbqocEDDEQ==}
+ next@15.5.8:
+ resolution: {integrity: sha512-Tma2R50eiM7Fx6fbDeHiThq7sPgl06mBr76j6Ga0lMFGrmaLitFsy31kykgb8Z++DR2uIEKi2RZ0iyjIwFd15Q==}
engines: {node: ^18.18.0 || ^19.8.0 || >= 20.0.0}
hasBin: true
peerDependencies:
@@ -15598,10 +15490,10 @@ packages:
react-devtools-core@5.3.2:
resolution: {integrity: sha512-crr9HkVrDiJ0A4zot89oS0Cgv0Oa4OG1Em4jit3P3ZxZSKPMYyMjfwMqgcJna9o625g8oN87rBm8SWWrSTBZxg==}
- react-dom@19.1.0:
- resolution: {integrity: sha512-Xs1hdnE+DyKgeHJeJznQmYMIBG3TKIHJJT95Q58nHLSrElKlGQqDTR2HQ9fx5CN/Gk6Vh/kupBTDLU11/nDk/g==}
+ react-dom@19.2.2:
+ resolution: {integrity: sha512-fhyD2BLrew6qYf4NNtHff1rLXvzR25rq49p+FeqByOazc6TcSi2n8EYulo5C1PbH+1uBW++5S1SG7FcUU6mlDg==}
peerDependencies:
- react: ^19.1.0
+ react: ^19.2.2
react-easy-crop@5.2.0:
resolution: {integrity: sha512-gjb7jN+WnwfgpbNUI2jSwyoIxF1sJ0PVSNVgEysAgF1rj8AqR75fqmdvqZ6PFVgEX3rT1G4HJELesiQXr2ZvAg==}
@@ -15801,8 +15693,8 @@ packages:
react: '>= 18.0.0'
react-dom: '>= 18.0.0'
- react@19.1.0:
- resolution: {integrity: sha512-FS+XFBNvn3GTAWq26joslQgWNoFu08F4kl0J4CgdNKADkdSGXQyTCnKteIAJy96Br6YbpEU1LSzV5dYtjMkMDg==}
+ react@19.2.2:
+ resolution: {integrity: sha512-BdOGOY8OKRBcgoDkwqA8Q5XvOIhoNx/Sh6BnGJlet2Abt0X5BK0BDrqGyQgLhAVjD2nAg5f6o01u/OPUhG022Q==}
engines: {node: '>=0.10.0'}
read-cache@1.0.0:
@@ -16137,7 +16029,7 @@ packages:
engines: {node: '>=20.18.0'}
peerDependencies:
'@typescript/native-preview': '>=7.0.0-dev.20250601.1'
- rolldown: ^1.0.0-beta.9
+ rolldown: 1.0.0-beta.32
typescript: ^5.0.0
vue-tsc: ~3.0.3
peerDependenciesMeta:
@@ -16171,7 +16063,7 @@ packages:
engines: {node: '>=18'}
hasBin: true
peerDependencies:
- rolldown: 1.x
+ rolldown: 1.0.0-beta.32
rollup: 2.x || 3.x || 4.x
peerDependenciesMeta:
rolldown:
@@ -16247,8 +16139,8 @@ packages:
scheduler@0.24.0-canary-efb381bbf-20230505:
resolution: {integrity: sha512-ABvovCDe/k9IluqSh4/ISoq8tIJnW8euVAWYt5j/bg6dRnqwQwiGO1F/V4AyK96NGF/FB04FhOUDuWj8IKfABA==}
- scheduler@0.26.0:
- resolution: {integrity: sha512-NlHwttCI/l5gCPR3D1nNXtWABUmBwvZpEQiD4IXSbIDq8BzLIK/7Ir5gTFSGZDUu37K5cMNp0hFtzO38sC7gWA==}
+ scheduler@0.27.0:
+ resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==}
schema-utils@3.3.0:
resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
@@ -16378,10 +16270,6 @@ packages:
resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
- sharp@0.34.1:
- resolution: {integrity: sha512-1j0w61+eVxu7DawFJtnfYcvSv6qPFvfTaqzTQ2BLknVhHTwGS8sc63ZBF4rzkWMBVKybo4S5OBtDdZahh2A1xg==}
- engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
-
sharp@0.34.3:
resolution: {integrity: sha512-eX2IQ6nFohW4DbvHIOLRB3MHFpYqaqvXd3Tp5e/T/dSH83fxaNJQRvDMhASmkNTsNTVF2/OOopzRCt7xokgPfg==}
engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
@@ -16645,10 +16533,6 @@ packages:
stream-slice@0.1.2:
resolution: {integrity: sha512-QzQxpoacatkreL6jsxnVb7X5R/pGw9OUv2qWTYWnmLpg4NdN31snPy/f3TdQE1ZUXaThRvj1Zw4/OGg0ZkaLMA==}
- streamsearch@1.1.0:
- resolution: {integrity: sha512-Mcc5wHehp9aXz1ax6bZUyY5afg9u2rv5cqQI3mRrYkGC8rW2hM02jWuwjtL++LS5qinSyhj2QfLyNsuc+VsExg==}
- engines: {node: '>=10.0.0'}
-
streamx@2.16.1:
resolution: {integrity: sha512-m9QYj6WygWyWa3H1YY69amr4nVgy61xfjys7xO7kviL5rfIEc2naf+ewFiOA+aEJD7y0JO3h2GoiUv4TDwEGzQ==}
@@ -18850,9 +18734,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@astrojs/node@9.0.0(astro@5.1.2(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(yaml@2.7.0))':
+ '@astrojs/node@9.0.0(astro@5.1.2(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(yaml@2.7.0))':
dependencies:
- astro: 5.1.2(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(yaml@2.7.0)
+ astro: 5.1.2(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(yaml@2.7.0)
send: 1.2.0
server-destroy: 1.0.1
transitivePeerDependencies:
@@ -18862,13 +18746,13 @@ snapshots:
dependencies:
prismjs: 1.29.0
- '@astrojs/react@4.1.2(@types/node@22.12.0)(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(jiti@2.4.2)(lightningcss@1.29.3)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)':
+ '@astrojs/react@4.1.2(@types/node@22.12.0)(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(jiti@2.4.2)(lightningcss@1.29.3)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)':
dependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
'@vitejs/plugin-react': 4.4.1(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
ultrahtml: 1.6.0
vite: 6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)
transitivePeerDependencies:
@@ -19857,9 +19741,9 @@ snapshots:
'@babel/helper-string-parser': 7.27.1
'@babel/helper-validator-identifier': 7.27.1
- '@bacons/text-decoder@0.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))':
+ '@bacons/text-decoder@0.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))':
dependencies:
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
'@bundled-es-modules/cookie@2.0.1':
dependencies:
@@ -20035,9 +19919,9 @@ snapshots:
human-id: 1.0.2
prettier: 2.8.8
- '@clerk/backend@1.23.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@clerk/backend@1.23.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@clerk/shared': 2.20.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@clerk/shared': 2.20.10(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@clerk/types': 4.41.1
cookie: 1.0.2
snakecase-keys: 8.0.1
@@ -20046,64 +19930,64 @@ snapshots:
- react
- react-dom
- '@clerk/clerk-react@5.22.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@clerk/clerk-react@5.22.2(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@clerk/shared': 2.20.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@clerk/shared': 2.20.10(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@clerk/types': 4.41.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
tslib: 2.4.1
- '@clerk/nextjs@6.9.6(next@15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@clerk/nextjs@6.9.6(next@15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@clerk/backend': 1.23.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@clerk/clerk-react': 5.22.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@clerk/shared': 2.20.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@clerk/backend': 1.23.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@clerk/clerk-react': 5.22.2(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@clerk/shared': 2.20.10(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@clerk/types': 4.41.1
crypto-js: 4.2.0
- next: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ next: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
server-only: 0.0.1
tslib: 2.4.1
- '@clerk/react-router@0.2.1(react-dom@19.1.0(react@19.1.0))(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)':
+ '@clerk/react-router@0.2.1(react-dom@19.2.2(react@19.2.2))(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react@19.2.2)':
dependencies:
- '@clerk/backend': 1.23.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@clerk/clerk-react': 5.22.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@clerk/shared': 2.20.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@clerk/backend': 1.23.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@clerk/clerk-react': 5.22.2(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@clerk/shared': 2.20.10(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@clerk/types': 4.41.1
cookie: 0.7.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-router: 7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ react-router: 7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
tslib: 2.4.1
- '@clerk/remix@4.4.6(@remix-run/react@2.15.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3))(@remix-run/server-runtime@2.15.2(typescript@5.8.3))(react-dom@19.1.0(react@19.1.0))(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)':
+ '@clerk/remix@4.4.6(@remix-run/react@2.15.2(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(typescript@5.8.3))(@remix-run/server-runtime@2.15.2(typescript@5.8.3))(react-dom@19.2.2(react@19.2.2))(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react@19.2.2)':
dependencies:
- '@clerk/backend': 1.23.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@clerk/clerk-react': 5.22.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@clerk/shared': 2.20.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@clerk/backend': 1.23.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@clerk/clerk-react': 5.22.2(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@clerk/shared': 2.20.10(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@clerk/types': 4.41.1
- '@remix-run/react': 2.15.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
+ '@remix-run/react': 2.15.2(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(typescript@5.8.3)
'@remix-run/server-runtime': 2.15.2(typescript@5.8.3)
cookie: 0.7.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-router: 7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ react-router: 7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
tslib: 2.4.1
- '@clerk/shared@2.20.10(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@clerk/shared@2.20.10(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@clerk/types': 4.41.1
dequal: 2.0.3
glob-to-regexp: 0.4.1
js-cookie: 3.0.5
std-env: 3.9.0
- swr: 2.3.0(react@19.1.0)
+ swr: 2.3.0(react@19.2.2)
optionalDependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
'@clerk/types@4.41.1':
dependencies:
@@ -21444,13 +21328,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@expo/metro-runtime@3.2.3(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))':
+ '@expo/metro-runtime@3.2.3(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))':
dependencies:
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
- '@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))':
+ '@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))':
dependencies:
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
optional: true
'@expo/osascript@2.1.5':
@@ -21592,18 +21476,18 @@ snapshots:
'@floating-ui/core': 1.6.9
'@floating-ui/utils': 0.2.9
- '@floating-ui/react-dom@2.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@floating-ui/react-dom@2.1.1(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@floating-ui/dom': 1.6.13
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
- '@floating-ui/react@0.26.23(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@floating-ui/react@0.26.23(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@floating-ui/react-dom': 2.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@floating-ui/react-dom': 2.1.1(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@floating-ui/utils': 0.2.9
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
tabbable: 6.2.0
'@floating-ui/utils@0.2.9': {}
@@ -21619,22 +21503,22 @@ snapshots:
'@fontsource-variable/inter@5.1.1': {}
- '@gorhom/bottom-sheet@4.6.4(@types/react@19.1.2)(react-native-gesture-handler@2.16.2(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)':
+ '@gorhom/bottom-sheet@4.6.4(@types/react@19.2.7)(react-native-gesture-handler@2.16.2(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)':
dependencies:
- '@gorhom/portal': 1.0.14(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ '@gorhom/portal': 1.0.14(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
invariant: 2.2.4
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
- react-native-gesture-handler: 2.16.2(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- react-native-reanimated: 3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
+ react-native-gesture-handler: 2.16.2(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ react-native-reanimated: 3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@gorhom/portal@1.0.14(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)':
+ '@gorhom/portal@1.0.14(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)':
dependencies:
nanoid: 3.3.8
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
'@graphql-typed-document-node/core@3.2.0(graphql@15.8.0)':
dependencies:
@@ -21646,14 +21530,14 @@ snapshots:
dependencies:
'@hapi/hoek': 9.3.0
- '@headlessui/react@2.2.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@headlessui/react@2.2.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@floating-ui/react': 0.26.23(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@react-aria/focus': 3.18.2(react@19.1.0)
- '@react-aria/interactions': 3.22.2(react@19.1.0)
- '@tanstack/react-virtual': 3.10.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@floating-ui/react': 0.26.23(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@react-aria/focus': 3.18.2(react@19.2.2)
+ '@react-aria/interactions': 3.22.2(react@19.2.2)
+ '@tanstack/react-virtual': 3.10.7(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
'@headlessui/tailwindcss@0.2.1(tailwindcss@3.4.17)':
dependencies:
@@ -21664,9 +21548,9 @@ snapshots:
'@tanstack/vue-virtual': 3.11.3(vue@3.5.13(typescript@5.8.3))
vue: 3.5.13(typescript@5.8.3)
- '@heroicons/react@2.2.0(react@19.1.0)':
+ '@heroicons/react@2.2.0(react@19.2.2)':
dependencies:
- react: 19.1.0
+ react: 19.2.2
'@hono/node-server@1.13.7(hono@4.6.15)':
dependencies:
@@ -21730,11 +21614,6 @@ snapshots:
'@img/sharp-libvips-darwin-arm64': 1.0.4
optional: true
- '@img/sharp-darwin-arm64@0.34.1':
- optionalDependencies:
- '@img/sharp-libvips-darwin-arm64': 1.1.0
- optional: true
-
'@img/sharp-darwin-arm64@0.34.3':
optionalDependencies:
'@img/sharp-libvips-darwin-arm64': 1.2.0
@@ -21745,11 +21624,6 @@ snapshots:
'@img/sharp-libvips-darwin-x64': 1.0.4
optional: true
- '@img/sharp-darwin-x64@0.34.1':
- optionalDependencies:
- '@img/sharp-libvips-darwin-x64': 1.1.0
- optional: true
-
'@img/sharp-darwin-x64@0.34.3':
optionalDependencies:
'@img/sharp-libvips-darwin-x64': 1.2.0
@@ -21758,78 +21632,51 @@ snapshots:
'@img/sharp-libvips-darwin-arm64@1.0.4':
optional: true
- '@img/sharp-libvips-darwin-arm64@1.1.0':
- optional: true
-
'@img/sharp-libvips-darwin-arm64@1.2.0':
optional: true
'@img/sharp-libvips-darwin-x64@1.0.4':
optional: true
- '@img/sharp-libvips-darwin-x64@1.1.0':
- optional: true
-
'@img/sharp-libvips-darwin-x64@1.2.0':
optional: true
'@img/sharp-libvips-linux-arm64@1.0.4':
optional: true
- '@img/sharp-libvips-linux-arm64@1.1.0':
- optional: true
-
'@img/sharp-libvips-linux-arm64@1.2.0':
optional: true
'@img/sharp-libvips-linux-arm@1.0.5':
optional: true
- '@img/sharp-libvips-linux-arm@1.1.0':
- optional: true
-
'@img/sharp-libvips-linux-arm@1.2.0':
optional: true
- '@img/sharp-libvips-linux-ppc64@1.1.0':
- optional: true
-
'@img/sharp-libvips-linux-ppc64@1.2.0':
optional: true
'@img/sharp-libvips-linux-s390x@1.0.4':
optional: true
- '@img/sharp-libvips-linux-s390x@1.1.0':
- optional: true
-
'@img/sharp-libvips-linux-s390x@1.2.0':
optional: true
'@img/sharp-libvips-linux-x64@1.0.4':
optional: true
- '@img/sharp-libvips-linux-x64@1.1.0':
- optional: true
-
'@img/sharp-libvips-linux-x64@1.2.0':
optional: true
'@img/sharp-libvips-linuxmusl-arm64@1.0.4':
optional: true
- '@img/sharp-libvips-linuxmusl-arm64@1.1.0':
- optional: true
-
'@img/sharp-libvips-linuxmusl-arm64@1.2.0':
optional: true
'@img/sharp-libvips-linuxmusl-x64@1.0.4':
optional: true
- '@img/sharp-libvips-linuxmusl-x64@1.1.0':
- optional: true
-
'@img/sharp-libvips-linuxmusl-x64@1.2.0':
optional: true
@@ -21838,11 +21685,6 @@ snapshots:
'@img/sharp-libvips-linux-arm64': 1.0.4
optional: true
- '@img/sharp-linux-arm64@0.34.1':
- optionalDependencies:
- '@img/sharp-libvips-linux-arm64': 1.1.0
- optional: true
-
'@img/sharp-linux-arm64@0.34.3':
optionalDependencies:
'@img/sharp-libvips-linux-arm64': 1.2.0
@@ -21853,11 +21695,6 @@ snapshots:
'@img/sharp-libvips-linux-arm': 1.0.5
optional: true
- '@img/sharp-linux-arm@0.34.1':
- optionalDependencies:
- '@img/sharp-libvips-linux-arm': 1.1.0
- optional: true
-
'@img/sharp-linux-arm@0.34.3':
optionalDependencies:
'@img/sharp-libvips-linux-arm': 1.2.0
@@ -21873,11 +21710,6 @@ snapshots:
'@img/sharp-libvips-linux-s390x': 1.0.4
optional: true
- '@img/sharp-linux-s390x@0.34.1':
- optionalDependencies:
- '@img/sharp-libvips-linux-s390x': 1.1.0
- optional: true
-
'@img/sharp-linux-s390x@0.34.3':
optionalDependencies:
'@img/sharp-libvips-linux-s390x': 1.2.0
@@ -21888,11 +21720,6 @@ snapshots:
'@img/sharp-libvips-linux-x64': 1.0.4
optional: true
- '@img/sharp-linux-x64@0.34.1':
- optionalDependencies:
- '@img/sharp-libvips-linux-x64': 1.1.0
- optional: true
-
'@img/sharp-linux-x64@0.34.3':
optionalDependencies:
'@img/sharp-libvips-linux-x64': 1.2.0
@@ -21903,11 +21730,6 @@ snapshots:
'@img/sharp-libvips-linuxmusl-arm64': 1.0.4
optional: true
- '@img/sharp-linuxmusl-arm64@0.34.1':
- optionalDependencies:
- '@img/sharp-libvips-linuxmusl-arm64': 1.1.0
- optional: true
-
'@img/sharp-linuxmusl-arm64@0.34.3':
optionalDependencies:
'@img/sharp-libvips-linuxmusl-arm64': 1.2.0
@@ -21918,11 +21740,6 @@ snapshots:
'@img/sharp-libvips-linuxmusl-x64': 1.0.4
optional: true
- '@img/sharp-linuxmusl-x64@0.34.1':
- optionalDependencies:
- '@img/sharp-libvips-linuxmusl-x64': 1.1.0
- optional: true
-
'@img/sharp-linuxmusl-x64@0.34.3':
optionalDependencies:
'@img/sharp-libvips-linuxmusl-x64': 1.2.0
@@ -21933,11 +21750,6 @@ snapshots:
'@emnapi/runtime': 1.4.5
optional: true
- '@img/sharp-wasm32@0.34.1':
- dependencies:
- '@emnapi/runtime': 1.4.5
- optional: true
-
'@img/sharp-wasm32@0.34.3':
dependencies:
'@emnapi/runtime': 1.4.5
@@ -21949,18 +21761,12 @@ snapshots:
'@img/sharp-win32-ia32@0.33.5':
optional: true
- '@img/sharp-win32-ia32@0.34.1':
- optional: true
-
'@img/sharp-win32-ia32@0.34.3':
optional: true
'@img/sharp-win32-x64@0.33.5':
optional: true
- '@img/sharp-win32-x64@0.34.1':
- optional: true
-
'@img/sharp-win32-x64@0.34.3':
optional: true
@@ -22340,11 +22146,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@mdx-js/react@3.1.0(@types/react@19.1.2)(react@19.1.0)':
+ '@mdx-js/react@3.1.0(@types/react@19.2.7)(react@19.2.2)':
dependencies:
'@types/mdx': 2.0.13
- '@types/react': 19.1.2
- react: 19.1.0
+ '@types/react': 19.2.7
+ react: 19.2.2
'@mjackson/node-fetch-server@0.2.0': {}
@@ -22481,69 +22287,69 @@ snapshots:
'@next/env@13.5.6': {}
- '@next/env@15.3.1': {}
-
'@next/env@15.4.2-canary.51': {}
- '@next/eslint-plugin-next@15.2.3':
+ '@next/env@15.5.8': {}
+
+ '@next/eslint-plugin-next@15.5.8':
dependencies:
fast-glob: 3.3.1
- '@next/mdx@15.1.3(@mdx-js/loader@3.1.0(webpack@5.97.1))(@mdx-js/react@3.1.0(@types/react@19.1.2)(react@19.1.0))':
+ '@next/mdx@15.5.8(@mdx-js/loader@3.1.0(webpack@5.97.1))(@mdx-js/react@3.1.0(@types/react@19.2.7)(react@19.2.2))':
dependencies:
source-map: 0.7.4
optionalDependencies:
'@mdx-js/loader': 3.1.0(webpack@5.97.1)
- '@mdx-js/react': 3.1.0(@types/react@19.1.2)(react@19.1.0)
-
- '@next/swc-darwin-arm64@15.3.1':
- optional: true
+ '@mdx-js/react': 3.1.0(@types/react@19.2.7)(react@19.2.2)
'@next/swc-darwin-arm64@15.4.2-canary.51':
optional: true
- '@next/swc-darwin-x64@15.3.1':
+ '@next/swc-darwin-arm64@15.5.7':
optional: true
'@next/swc-darwin-x64@15.4.2-canary.51':
optional: true
- '@next/swc-linux-arm64-gnu@15.3.1':
+ '@next/swc-darwin-x64@15.5.7':
optional: true
'@next/swc-linux-arm64-gnu@15.4.2-canary.51':
optional: true
- '@next/swc-linux-arm64-musl@15.3.1':
+ '@next/swc-linux-arm64-gnu@15.5.7':
optional: true
'@next/swc-linux-arm64-musl@15.4.2-canary.51':
optional: true
- '@next/swc-linux-x64-gnu@15.3.1':
+ '@next/swc-linux-arm64-musl@15.5.7':
optional: true
'@next/swc-linux-x64-gnu@15.4.2-canary.51':
optional: true
- '@next/swc-linux-x64-musl@15.3.1':
+ '@next/swc-linux-x64-gnu@15.5.7':
optional: true
'@next/swc-linux-x64-musl@15.4.2-canary.51':
optional: true
- '@next/swc-win32-arm64-msvc@15.3.1':
+ '@next/swc-linux-x64-musl@15.5.7':
optional: true
'@next/swc-win32-arm64-msvc@15.4.2-canary.51':
optional: true
- '@next/swc-win32-x64-msvc@15.3.1':
+ '@next/swc-win32-arm64-msvc@15.5.7':
optional: true
'@next/swc-win32-x64-msvc@15.4.2-canary.51':
optional: true
+ '@next/swc-win32-x64-msvc@15.5.7':
+ optional: true
+
'@nodelib/fs.scandir@2.1.5':
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -22874,7 +22680,7 @@ snapshots:
- rollup
- supports-color
- '@nuxt/vite-builder@3.15.0(@types/node@22.12.0)(eslint@9.25.1(jiti@2.4.2))(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.0)':
+ '@nuxt/vite-builder@3.15.0(@types/node@22.12.0)(eslint@9.25.1(jiti@2.4.2))(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.32)(rollup@3.29.5)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.0)':
dependencies:
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@3.29.5)
'@rollup/plugin-replace': 6.0.2(rollup@3.29.5)
@@ -22898,7 +22704,7 @@ snapshots:
perfect-debounce: 1.0.0
pkg-types: 1.3.1
postcss: 8.4.49
- rollup-plugin-visualizer: 5.14.0(rollup@3.29.5)
+ rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-beta.32)(rollup@3.29.5)
std-env: 3.9.0
ufo: 1.6.1
unenv: 1.10.0
@@ -22933,7 +22739,7 @@ snapshots:
- vue-tsc
- yaml
- '@nuxt/vite-builder@3.15.0(@types/node@22.12.0)(eslint@9.25.1(jiti@2.4.2))(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.0)':
+ '@nuxt/vite-builder@3.15.0(@types/node@22.12.0)(eslint@9.25.1(jiti@2.4.2))(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.32)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.0)':
dependencies:
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.44.0)
'@rollup/plugin-replace': 6.0.2(rollup@4.44.0)
@@ -22957,7 +22763,7 @@ snapshots:
perfect-debounce: 1.0.0
pkg-types: 1.3.1
postcss: 8.4.49
- rollup-plugin-visualizer: 5.14.0(rollup@4.44.0)
+ rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-beta.32)(rollup@4.44.0)
std-env: 3.9.0
ufo: 1.6.1
unenv: 1.10.0
@@ -23250,882 +23056,882 @@ snapshots:
'@radix-ui/primitive@1.1.2': {}
- '@radix-ui/react-accessible-icon@1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-accessible-icon@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-accordion@1.2.8(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-accordion@1.2.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-collapsible': 1.1.8(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-collapsible': 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-alert-dialog@1.1.11(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-alert-dialog@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-dialog': 1.1.11(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-dialog': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-arrow@1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-arrow@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-aspect-ratio@1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-aspect-ratio@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
-
- '@radix-ui/react-avatar@1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
+
+ '@radix-ui/react-avatar@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
+ dependencies:
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-checkbox@1.2.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-checkbox@1.2.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-collapsible@1.1.8(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-collapsible@1.1.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-collection@1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-collection@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-compose-refs@1.0.0(react@19.1.0)':
+ '@radix-ui/react-compose-refs@1.0.0(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- react: 19.1.0
+ react: 19.2.2
- '@radix-ui/react-compose-refs@1.1.2(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- react: 19.1.0
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-context-menu@2.2.12(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-context-menu@2.2.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-menu': 2.1.12(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-menu': 2.1.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-context@1.0.0(react@19.1.0)':
+ '@radix-ui/react-context@1.0.0(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- react: 19.1.0
+ react: 19.2.2
- '@radix-ui/react-context@1.1.2(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-context@1.1.2(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- react: 19.1.0
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-dialog@1.0.0(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-dialog@1.0.0(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
'@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0(react@19.1.0)
- '@radix-ui/react-context': 1.0.0(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-focus-guards': 1.0.0(react@19.1.0)
- '@radix-ui/react-focus-scope': 1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.0.0(react@19.1.0)
- '@radix-ui/react-portal': 1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.0.0(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.0.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.2.2)
+ '@radix-ui/react-context': 1.0.0(react@19.2.2)
+ '@radix-ui/react-dismissable-layer': 1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-focus-guards': 1.0.0(react@19.2.2)
+ '@radix-ui/react-focus-scope': 1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-id': 1.0.0(react@19.2.2)
+ '@radix-ui/react-portal': 1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-presence': 1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-slot': 1.0.0(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.0.0(react@19.2.2)
aria-hidden: 1.2.4
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.5.4(@types/react@19.1.2)(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ react-remove-scroll: 2.5.4(@types/react@19.2.7)(react@19.2.2)
transitivePeerDependencies:
- '@types/react'
- '@radix-ui/react-dialog@1.1.11(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-dialog@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
aria-hidden: 1.2.4
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.6.3(@types/react@19.1.2)(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ react-remove-scroll: 2.6.3(@types/react@19.2.7)(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-direction@1.1.1(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-direction@1.1.1(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- react: 19.1.0
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-dismissable-layer@1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-dismissable-layer@1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
'@radix-ui/primitive': 1.0.0
- '@radix-ui/react-compose-refs': 1.0.0(react@19.1.0)
- '@radix-ui/react-primitive': 1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.0.0(react@19.1.0)
- '@radix-ui/react-use-escape-keydown': 1.0.0(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.2.2)
+ '@radix-ui/react-primitive': 1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@19.2.2)
+ '@radix-ui/react-use-escape-keydown': 1.0.0(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
- '@radix-ui/react-dismissable-layer@1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-dismissable-layer@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-dropdown-menu@2.1.12(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-dropdown-menu@2.1.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-menu': 2.1.12(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-menu': 2.1.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-focus-guards@1.0.0(react@19.1.0)':
+ '@radix-ui/react-focus-guards@1.0.0(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- react: 19.1.0
+ react: 19.2.2
- '@radix-ui/react-focus-guards@1.1.2(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-focus-guards@1.1.2(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- react: 19.1.0
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-focus-scope@1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-focus-scope@1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- '@radix-ui/react-compose-refs': 1.0.0(react@19.1.0)
- '@radix-ui/react-primitive': 1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.0.0(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
-
- '@radix-ui/react-focus-scope@1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.2.2)
+ '@radix-ui/react-primitive': 1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+
+ '@radix-ui/react-focus-scope@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-form@0.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-form@0.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-label': 2.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-label': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-hover-card@1.1.11(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-hover-card@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-id@1.0.0(react@19.1.0)':
+ '@radix-ui/react-id@1.0.0(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- '@radix-ui/react-use-layout-effect': 1.0.0(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-use-layout-effect': 1.0.0(react@19.2.2)
+ react: 19.2.2
- '@radix-ui/react-id@1.1.1(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-id@1.1.1(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-label@2.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-label@2.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-menu@2.1.12(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-menu@2.1.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
aria-hidden: 1.2.4
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.6.3(@types/react@19.1.2)(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ react-remove-scroll: 2.6.3(@types/react@19.2.7)(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-menubar@1.1.12(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-menubar@1.1.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-menu': 2.1.12(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-menu': 2.1.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-navigation-menu@1.2.10(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-navigation-menu@1.2.10(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-one-time-password-field@0.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-one-time-password-field@0.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/number': 1.1.1
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-popover@1.1.11(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-popover@1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
aria-hidden: 1.2.4
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.6.3(@types/react@19.1.2)(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ react-remove-scroll: 2.6.3(@types/react@19.2.7)(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
-
- '@radix-ui/react-popper@1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
- dependencies:
- '@floating-ui/react-dom': 2.1.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-arrow': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-rect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
+
+ '@radix-ui/react-popper@1.2.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.1(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-arrow': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-rect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.7)(react@19.2.2)
'@radix-ui/rect': 1.1.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-portal@1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-portal@1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- '@radix-ui/react-primitive': 1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
- '@radix-ui/react-portal@1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-portal@1.1.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-presence@1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-presence@1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- '@radix-ui/react-compose-refs': 1.0.0(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.0.0(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.0.0(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
- '@radix-ui/react-presence@1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-presence@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-primitive@1.0.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-primitive@1.0.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- '@radix-ui/react-slot': 1.0.0(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-slot': 1.0.0(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
- '@radix-ui/react-primitive@2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-primitive@2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-progress@1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-progress@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-radio-group@1.3.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-radio-group@1.3.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-roving-focus@1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-roving-focus@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-scroll-area@1.2.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-scroll-area@1.2.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/number': 1.1.1
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-select@2.2.2(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-select@2.2.2(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/number': 1.1.1
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
aria-hidden: 1.2.4
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-remove-scroll: 2.6.3(@types/react@19.1.2)(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ react-remove-scroll: 2.6.3(@types/react@19.2.7)(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-separator@1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-separator@1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-slider@1.3.2(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-slider@1.3.2(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/number': 1.1.1
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-slot@1.0.0(react@19.1.0)':
+ '@radix-ui/react-slot@1.0.0(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- '@radix-ui/react-compose-refs': 1.0.0(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.2.2)
+ react: 19.2.2
- '@radix-ui/react-slot@1.0.1(react@19.1.0)':
+ '@radix-ui/react-slot@1.0.1(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- '@radix-ui/react-compose-refs': 1.0.0(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-compose-refs': 1.0.0(react@19.2.2)
+ react: 19.2.2
- '@radix-ui/react-slot@1.2.0(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-slot@1.2.0(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-switch@1.2.2(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-switch@1.2.2(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-previous': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-tabs@1.1.9(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-tabs@1.1.9(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-toast@1.2.11(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-toast@1.2.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-toggle-group@1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-toggle-group@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-toggle': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-toggle': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-toggle@1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-toggle@1.1.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-toolbar@1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-toolbar@1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-separator': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-toggle-group': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-separator': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-toggle-group': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-tooltip@1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-tooltip@1.2.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
- '@radix-ui/react-use-callback-ref@1.0.0(react@19.1.0)':
+ '@radix-ui/react-use-callback-ref@1.0.0(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- react: 19.1.0
+ react: 19.2.2
- '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- react: 19.1.0
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-use-controllable-state@1.0.0(react@19.1.0)':
+ '@radix-ui/react-use-controllable-state@1.0.0(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- '@radix-ui/react-use-callback-ref': 1.0.0(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@19.2.2)
+ react: 19.2.2
- '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-use-escape-keydown@1.0.0(react@19.1.0)':
+ '@radix-ui/react-use-escape-keydown@1.0.0(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- '@radix-ui/react-use-callback-ref': 1.0.0(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-use-callback-ref': 1.0.0(react@19.2.2)
+ react: 19.2.2
- '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-use-is-hydrated@0.1.0(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- react: 19.1.0
- use-sync-external-store: 1.5.0(react@19.1.0)
+ react: 19.2.2
+ use-sync-external-store: 1.5.0(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-use-layout-effect@1.0.0(react@19.1.0)':
+ '@radix-ui/react-use-layout-effect@1.0.0(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- react: 19.1.0
+ react: 19.2.2
- '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- react: 19.1.0
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-use-previous@1.1.1(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-use-previous@1.1.1(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- react: 19.1.0
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-use-rect@1.1.1(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-use-rect@1.1.1(@types/react@19.2.7)(react@19.2.2)':
dependencies:
'@radix-ui/rect': 1.1.1
- react: 19.1.0
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-use-size@1.1.1(@types/react@19.1.2)(react@19.1.0)':
+ '@radix-ui/react-use-size@1.1.1(@types/react@19.2.7)(react@19.2.2)':
dependencies:
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- react: 19.1.0
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ react: 19.2.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@radix-ui/react-visually-hidden@1.2.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@radix-ui/react-visually-hidden@1.2.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
'@radix-ui/rect@1.1.1': {}
- '@react-aria/focus@3.18.2(react@19.1.0)':
+ '@react-aria/focus@3.18.2(react@19.2.2)':
dependencies:
- '@react-aria/interactions': 3.22.2(react@19.1.0)
- '@react-aria/utils': 3.25.2(react@19.1.0)
- '@react-types/shared': 3.24.1(react@19.1.0)
+ '@react-aria/interactions': 3.22.2(react@19.2.2)
+ '@react-aria/utils': 3.25.2(react@19.2.2)
+ '@react-types/shared': 3.24.1(react@19.2.2)
'@swc/helpers': 0.5.15
clsx: 2.1.1
- react: 19.1.0
+ react: 19.2.2
- '@react-aria/interactions@3.22.2(react@19.1.0)':
+ '@react-aria/interactions@3.22.2(react@19.2.2)':
dependencies:
- '@react-aria/ssr': 3.9.5(react@19.1.0)
- '@react-aria/utils': 3.25.2(react@19.1.0)
- '@react-types/shared': 3.24.1(react@19.1.0)
+ '@react-aria/ssr': 3.9.5(react@19.2.2)
+ '@react-aria/utils': 3.25.2(react@19.2.2)
+ '@react-types/shared': 3.24.1(react@19.2.2)
'@swc/helpers': 0.5.15
- react: 19.1.0
+ react: 19.2.2
- '@react-aria/ssr@3.9.5(react@19.1.0)':
+ '@react-aria/ssr@3.9.5(react@19.2.2)':
dependencies:
'@swc/helpers': 0.5.15
- react: 19.1.0
+ react: 19.2.2
- '@react-aria/utils@3.25.2(react@19.1.0)':
+ '@react-aria/utils@3.25.2(react@19.2.2)':
dependencies:
- '@react-aria/ssr': 3.9.5(react@19.1.0)
- '@react-stately/utils': 3.10.3(react@19.1.0)
- '@react-types/shared': 3.24.1(react@19.1.0)
+ '@react-aria/ssr': 3.9.5(react@19.2.2)
+ '@react-stately/utils': 3.10.3(react@19.2.2)
+ '@react-types/shared': 3.24.1(react@19.2.2)
'@swc/helpers': 0.5.15
clsx: 2.1.1
- react: 19.1.0
+ react: 19.2.2
'@react-native-community/cli-clean@13.6.9(encoding@0.1.13)':
dependencies:
@@ -24595,67 +24401,67 @@ snapshots:
'@react-native/normalize-colors@0.76.6': {}
- '@react-native/virtualized-lists@0.74.88(@types/react@19.1.2)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)':
+ '@react-native/virtualized-lists@0.74.88(@types/react@19.2.7)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)':
+ '@react-navigation/bottom-tabs@6.5.20(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)':
dependencies:
- '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ '@react-navigation/native': 6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
color: 4.2.3
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
- react-native-safe-area-context: 4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
+ react-native-safe-area-context: 4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
warn-once: 0.1.1
- '@react-navigation/core@6.4.17(react@19.1.0)':
+ '@react-navigation/core@6.4.17(react@19.2.2)':
dependencies:
'@react-navigation/routers': 6.1.9
escape-string-regexp: 4.0.0
nanoid: 3.3.8
query-string: 7.1.3
- react: 19.1.0
+ react: 19.2.2
react-is: 16.13.1
- use-latest-callback: 0.2.3(react@19.1.0)
+ use-latest-callback: 0.2.3(react@19.2.2)
- '@react-navigation/elements@1.3.31(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)':
+ '@react-navigation/elements@1.3.31(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)':
dependencies:
- '@react-navigation/native': 6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
- react-native-safe-area-context: 4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/native': 6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
+ react-native-safe-area-context: 4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
- '@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)':
+ '@react-navigation/native-stack@6.9.26(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)':
dependencies:
- '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
- react-native-safe-area-context: 4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ '@react-navigation/elements': 1.3.31(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ '@react-navigation/native': 6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
+ react-native-safe-area-context: 4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
warn-once: 0.1.1
- '@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)':
+ '@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)':
dependencies:
- '@react-navigation/core': 6.4.17(react@19.1.0)
+ '@react-navigation/core': 6.4.17(react@19.2.2)
escape-string-regexp: 4.0.0
fast-deep-equal: 3.1.3
nanoid: 3.3.8
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
'@react-navigation/routers@6.1.9':
dependencies:
nanoid: 3.3.8
- '@react-router/dev@7.1.3(@react-router/serve@7.1.3(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(typescript@5.8.3))(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.99.0(@cloudflare/workers-types@4.20241230.0))(yaml@2.7.0)':
+ '@react-router/dev@7.1.3(@react-router/serve@7.1.3(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(typescript@5.8.3))(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.99.0(@cloudflare/workers-types@4.20241230.0))(yaml@2.7.0)':
dependencies:
'@babel/core': 7.27.4
'@babel/generator': 7.28.3
@@ -24666,7 +24472,7 @@ snapshots:
'@babel/traverse': 7.27.4
'@babel/types': 7.28.2
'@npmcli/package-json': 4.0.1
- '@react-router/node': 7.1.3(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(typescript@5.8.3)
+ '@react-router/node': 7.1.3(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(typescript@5.8.3)
arg: 5.0.2
babel-dead-code-elimination: 1.0.10
chokidar: 4.0.3
@@ -24682,14 +24488,14 @@ snapshots:
picomatch: 2.3.1
prettier: 2.8.8
react-refresh: 0.14.2
- react-router: 7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-router: 7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
semver: 7.7.2
set-cookie-parser: 2.7.1
valibot: 0.41.0(typescript@5.8.3)
vite: 6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)
vite-node: 3.0.0-beta.2(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)
optionalDependencies:
- '@react-router/serve': 7.1.3(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(typescript@5.8.3)
+ '@react-router/serve': 7.1.3(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(typescript@5.8.3)
typescript: 5.8.3
wrangler: 3.99.0(@cloudflare/workers-types@4.20241230.0)
transitivePeerDependencies:
@@ -24708,50 +24514,50 @@ snapshots:
- tsx
- yaml
- '@react-router/express@7.1.3(express@4.21.1)(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(typescript@5.8.3)':
+ '@react-router/express@7.1.3(express@4.21.1)(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(typescript@5.8.3)':
dependencies:
- '@react-router/node': 7.1.3(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(typescript@5.8.3)
+ '@react-router/node': 7.1.3(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(typescript@5.8.3)
express: 4.21.1
- react-router: 7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-router: 7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
optionalDependencies:
typescript: 5.8.3
- '@react-router/node@7.1.3(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(typescript@5.8.3)':
+ '@react-router/node@7.1.3(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(typescript@5.8.3)':
dependencies:
'@mjackson/node-fetch-server': 0.2.0
- react-router: 7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-router: 7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
source-map-support: 0.5.21
stream-slice: 0.1.2
undici: 6.21.1
optionalDependencies:
typescript: 5.8.3
- '@react-router/serve@7.1.3(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(typescript@5.8.3)':
+ '@react-router/serve@7.1.3(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(typescript@5.8.3)':
dependencies:
- '@react-router/express': 7.1.3(express@4.21.1)(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(typescript@5.8.3)
- '@react-router/node': 7.1.3(react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(typescript@5.8.3)
+ '@react-router/express': 7.1.3(express@4.21.1)(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(typescript@5.8.3)
+ '@react-router/node': 7.1.3(react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(typescript@5.8.3)
compression: 1.7.5
express: 4.21.1
get-port: 5.1.1
morgan: 1.10.0
- react-router: 7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-router: 7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
source-map-support: 0.5.21
transitivePeerDependencies:
- supports-color
- typescript
- '@react-stately/utils@3.10.3(react@19.1.0)':
+ '@react-stately/utils@3.10.3(react@19.2.2)':
dependencies:
'@swc/helpers': 0.5.15
- react: 19.1.0
+ react: 19.2.2
- '@react-types/shared@3.24.1(react@19.1.0)':
+ '@react-types/shared@3.24.1(react@19.2.2)':
dependencies:
- react: 19.1.0
+ react: 19.2.2
'@remirror/core-constants@2.0.2': {}
- '@remix-run/dev@2.15.2(@remix-run/react@2.15.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3))(@remix-run/serve@2.15.2(typescript@5.8.3))(@types/node@22.12.0)(lightningcss@1.29.3)(terser@5.37.0)(typescript@5.8.3)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.99.0(@cloudflare/workers-types@4.20241230.0))':
+ '@remix-run/dev@2.15.2(@remix-run/react@2.15.2(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(typescript@5.8.3))(@remix-run/serve@2.15.2(typescript@5.8.3))(@types/node@22.12.0)(lightningcss@1.29.3)(terser@5.37.0)(typescript@5.8.3)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(wrangler@3.99.0(@cloudflare/workers-types@4.20241230.0))':
dependencies:
'@babel/core': 7.27.4
'@babel/generator': 7.28.3
@@ -24764,7 +24570,7 @@ snapshots:
'@mdx-js/mdx': 2.3.0
'@npmcli/package-json': 4.0.1
'@remix-run/node': 2.15.2(typescript@5.8.3)
- '@remix-run/react': 2.15.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)
+ '@remix-run/react': 2.15.2(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(typescript@5.8.3)
'@remix-run/router': 1.21.0
'@remix-run/server-runtime': 2.15.2(typescript@5.8.3)
'@types/mdx': 2.0.13
@@ -24849,14 +24655,14 @@ snapshots:
optionalDependencies:
typescript: 5.8.3
- '@remix-run/react@2.15.2(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)':
+ '@remix-run/react@2.15.2(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(typescript@5.8.3)':
dependencies:
'@remix-run/router': 1.21.0
'@remix-run/server-runtime': 2.15.2(typescript@5.8.3)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-router: 6.28.1(react@19.1.0)
- react-router-dom: 6.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ react-router: 6.28.1(react@19.2.2)
+ react-router-dom: 6.28.1(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
turbo-stream: 2.4.0
optionalDependencies:
typescript: 5.8.3
@@ -25210,10 +25016,10 @@ snapshots:
- typescript
- universal-cookie
- '@scalar/api-reference-react@0.4.25(@hyperjump/browser@1.2.0)(axios@1.7.9)(change-case@5.4.4)(jwt-decode@4.0.0)(react@19.1.0)(tailwindcss@3.4.17)(typescript@5.8.3)':
+ '@scalar/api-reference-react@0.4.25(@hyperjump/browser@1.2.0)(axios@1.7.9)(change-case@5.4.4)(jwt-decode@4.0.0)(react@19.2.2)(tailwindcss@3.4.17)(typescript@5.8.3)':
dependencies:
'@scalar/api-reference': 1.25.116(@hyperjump/browser@1.2.0)(axios@1.7.9)(change-case@5.4.4)(jwt-decode@4.0.0)(tailwindcss@3.4.17)(typescript@5.8.3)
- react: 19.1.0
+ react: 19.2.2
transitivePeerDependencies:
- '@hyperjump/browser'
- '@vue/composition-api'
@@ -25493,12 +25299,12 @@ snapshots:
'@shikijs/vscode-textmate@10.0.1': {}
- '@shopify/flash-list@1.6.4(@babel/runtime@7.26.7)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)':
+ '@shopify/flash-list@1.6.4(@babel/runtime@7.26.7)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)':
dependencies:
'@babel/runtime': 7.26.7
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
- recyclerlistview: 4.2.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
+ recyclerlistview: 4.2.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
tslib: 2.4.0
'@sideway/address@4.1.5':
@@ -25542,11 +25348,11 @@ snapshots:
dependencies:
solid-js: 1.9.3
- '@solidjs/start@1.0.10(@testing-library/jest-dom@6.6.3)(solid-js@1.9.3)(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))':
+ '@solidjs/start@1.0.10(@testing-library/jest-dom@6.6.3)(solid-js@1.9.3)(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))':
dependencies:
- '@vinxi/plugin-directives': 0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))
- '@vinxi/server-components': 0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))
- '@vinxi/server-functions': 0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))
+ '@vinxi/plugin-directives': 0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))
+ '@vinxi/server-components': 0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))
+ '@vinxi/server-functions': 0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))
defu: 6.1.4
error-stack-parser: 2.1.4
html-to-image: 1.11.11
@@ -25845,37 +25651,37 @@ snapshots:
'@tanstack/query-core@5.62.12': {}
- '@tanstack/react-query@5.62.14(react@19.1.0)':
+ '@tanstack/react-query@5.62.14(react@19.2.2)':
dependencies:
'@tanstack/query-core': 5.62.12
- react: 19.1.0
+ react: 19.2.2
- '@tanstack/react-router@1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@tanstack/react-router@1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@tanstack/history': 1.121.21
- '@tanstack/react-store': 0.7.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@tanstack/react-store': 0.7.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@tanstack/router-core': 1.121.27
jsesc: 3.1.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
tiny-invariant: 1.3.3
tiny-warning: 1.0.3
- '@tanstack/react-start-client@1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@tanstack/react-start-client@1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
- '@tanstack/react-router': 1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@tanstack/react-router': 1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@tanstack/router-core': 1.121.27
'@tanstack/start-client-core': 1.121.27
cookie-es: 1.2.2
jsesc: 3.1.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
tiny-invariant: 1.3.3
tiny-warning: 1.0.3
- '@tanstack/react-start-plugin@1.121.32(@tanstack/react-router@1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)))(encoding@0.1.13)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)':
+ '@tanstack/react-start-plugin@1.121.32(@tanstack/react-router@1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)))(encoding@0.1.13)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)':
dependencies:
- '@tanstack/start-plugin-core': 1.121.32(@tanstack/react-router@1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(encoding@0.1.13)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)
+ '@tanstack/start-plugin-core': 1.121.32(@tanstack/react-router@1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(encoding@0.1.13)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)
'@vitejs/plugin-react': 4.4.1(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))
vite: 6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)
zod: 3.25.67
@@ -25911,28 +25717,28 @@ snapshots:
- webpack
- xml2js
- '@tanstack/react-start-server@1.121.32(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@tanstack/react-start-server@1.121.32(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@tanstack/history': 1.121.21
- '@tanstack/react-router': 1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@tanstack/react-router': 1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@tanstack/router-core': 1.121.27
'@tanstack/start-client-core': 1.121.27
'@tanstack/start-server-core': 1.121.32
h3: 1.13.0
isbot: 5.1.28
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
- '@tanstack/react-start@1.121.32(@tanstack/react-router@1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)))(encoding@0.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)':
+ '@tanstack/react-start@1.121.32(@tanstack/react-router@1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)))(encoding@0.1.13)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)':
dependencies:
- '@tanstack/react-start-client': 1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@tanstack/react-start-plugin': 1.121.32(@tanstack/react-router@1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)))(encoding@0.1.13)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)
- '@tanstack/react-start-server': 1.121.32(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@tanstack/react-start-client': 1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@tanstack/react-start-plugin': 1.121.32(@tanstack/react-router@1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(@vitejs/plugin-react@4.4.1(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)))(encoding@0.1.13)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)
+ '@tanstack/react-start-server': 1.121.32(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@tanstack/start-server-functions-client': 1.121.31(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))
'@tanstack/start-server-functions-server': 1.121.31(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))
'@vitejs/plugin-react': 4.4.1(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
vite: 6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -25966,18 +25772,18 @@ snapshots:
- webpack
- xml2js
- '@tanstack/react-store@0.7.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@tanstack/react-store@0.7.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@tanstack/store': 0.7.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- use-sync-external-store: 1.5.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ use-sync-external-store: 1.5.0(react@19.2.2)
- '@tanstack/react-virtual@3.10.7(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@tanstack/react-virtual@3.10.7(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@tanstack/virtual-core': 3.10.7
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
'@tanstack/router-core@1.121.27':
dependencies:
@@ -25998,7 +25804,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@tanstack/router-plugin@1.121.29(@tanstack/react-router@1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)':
+ '@tanstack/router-plugin@1.121.29(@tanstack/react-router@1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)':
dependencies:
'@babel/core': 7.27.4
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4)
@@ -26015,7 +25821,7 @@ snapshots:
unplugin: 2.3.5
zod: 3.25.67
optionalDependencies:
- '@tanstack/react-router': 1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@tanstack/react-router': 1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
vite: 6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)
webpack: 5.97.1
transitivePeerDependencies:
@@ -26055,14 +25861,14 @@ snapshots:
tiny-invariant: 1.3.3
tiny-warning: 1.0.3
- '@tanstack/start-plugin-core@1.121.32(@tanstack/react-router@1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(encoding@0.1.13)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)':
+ '@tanstack/start-plugin-core@1.121.32(@tanstack/react-router@1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(encoding@0.1.13)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)':
dependencies:
'@babel/code-frame': 7.26.2
'@babel/core': 7.27.4
'@babel/types': 7.28.2
'@tanstack/router-core': 1.121.27
'@tanstack/router-generator': 1.121.27
- '@tanstack/router-plugin': 1.121.29(@tanstack/react-router@1.121.27(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)
+ '@tanstack/router-plugin': 1.121.29(@tanstack/react-router@1.121.27(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(webpack@5.97.1)
'@tanstack/router-utils': 1.121.21
'@tanstack/server-functions-plugin': 1.121.31(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))
'@tanstack/start-server-core': 1.121.32
@@ -26071,7 +25877,7 @@ snapshots:
babel-dead-code-elimination: 1.0.10
cheerio: 1.1.0
h3: 1.13.0
- nitropack: 2.11.12(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(uploadthing@packages+uploadthing)
+ nitropack: 2.11.12(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(rolldown@1.0.0-beta.32)(uploadthing@packages+uploadthing)
pathe: 2.0.3
ufo: 1.6.1
vite: 6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)
@@ -26353,14 +26159,14 @@ snapshots:
prosemirror-transform: 1.9.0
prosemirror-view: 1.33.6
- '@tiptap/react@2.3.2(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)':
+ '@tiptap/react@2.3.2(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)':
dependencies:
'@tiptap/core': 2.3.2(@tiptap/pm@2.3.2)
'@tiptap/extension-bubble-menu': 2.3.2(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2)
'@tiptap/extension-floating-menu': 2.3.2(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2)
'@tiptap/pm': 2.3.2
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
'@tiptap/starter-kit@2.3.2(@tiptap/pm@2.3.2)':
dependencies:
@@ -26400,13 +26206,13 @@ snapshots:
dependencies:
typescript: 5.8.3
- '@trpc/tanstack-react-query@11.0.0-rc.772(@tanstack/react-query@5.62.14(react@19.1.0))(@trpc/client@11.0.0-rc.772(@trpc/server@11.0.0-rc.772(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.0.0-rc.772(typescript@5.8.3))(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(typescript@5.8.3)':
+ '@trpc/tanstack-react-query@11.0.0-rc.772(@tanstack/react-query@5.62.14(react@19.2.2))(@trpc/client@11.0.0-rc.772(@trpc/server@11.0.0-rc.772(typescript@5.8.3))(typescript@5.8.3))(@trpc/server@11.0.0-rc.772(typescript@5.8.3))(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(typescript@5.8.3)':
dependencies:
- '@tanstack/react-query': 5.62.14(react@19.1.0)
+ '@tanstack/react-query': 5.62.14(react@19.2.2)
'@trpc/client': 11.0.0-rc.772(@trpc/server@11.0.0-rc.772(typescript@5.8.3))(typescript@5.8.3)
'@trpc/server': 11.0.0-rc.772(typescript@5.8.3)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
typescript: 5.8.3
'@trysound/sax@0.2.0': {}
@@ -26593,17 +26399,17 @@ snapshots:
'@types/range-parser@1.2.7': {}
- '@types/react-dom@19.1.2(@types/react@19.1.2)':
+ '@types/react-dom@19.2.3(@types/react@19.2.7)':
dependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
'@types/react-highlight-words@0.20.0':
dependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- '@types/react@19.1.2':
+ '@types/react@19.2.7':
dependencies:
- csstype: 3.1.3
+ csstype: 3.2.3
'@types/resolve@1.20.2': {}
@@ -26771,26 +26577,26 @@ snapshots:
unhead: 1.11.18
vue: 3.5.13(typescript@5.8.3)
- '@uploadthing/dropzone@0.4.1(react@19.1.0)(solid-js@1.9.3)(vue@3.5.13(typescript@5.8.3))':
+ '@uploadthing/dropzone@0.4.1(react@19.2.2)(solid-js@1.9.3)(vue@3.5.13(typescript@5.8.3))':
dependencies:
file-selector: 0.6.0
optionalDependencies:
- react: 19.1.0
+ react: 19.2.2
solid-js: 1.9.3
vue: 3.5.13(typescript@5.8.3)
'@uploadthing/mime-types@0.2.10': {}
- '@uploadthing/react@6.8.0(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0)(solid-js@1.9.3)(uploadthing@6.13.3(@effect/platform@0.90.3(effect@3.17.7))(express@5.0.1)(fastify@5.2.0)(h3@1.15.3)(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(tailwindcss@4.0.0))(vue@3.5.13(typescript@5.8.3))':
+ '@uploadthing/react@6.8.0(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react@19.2.2)(solid-js@1.9.3)(uploadthing@6.13.3(@effect/platform@0.90.3(effect@3.17.7))(express@5.0.1)(fastify@5.2.0)(h3@1.15.3)(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(tailwindcss@4.0.0))(vue@3.5.13(typescript@5.8.3))':
dependencies:
- '@uploadthing/dropzone': 0.4.1(react@19.1.0)(solid-js@1.9.3)(vue@3.5.13(typescript@5.8.3))
+ '@uploadthing/dropzone': 0.4.1(react@19.2.2)(solid-js@1.9.3)(vue@3.5.13(typescript@5.8.3))
'@uploadthing/shared': 6.7.9
file-selector: 0.6.0
- react: 19.1.0
+ react: 19.2.2
tailwind-merge: 2.6.0
- uploadthing: 6.13.3(@effect/platform@0.90.3(effect@3.17.7))(express@5.0.1)(fastify@5.2.0)(h3@1.15.3)(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(tailwindcss@4.0.0)
+ uploadthing: 6.13.3(@effect/platform@0.90.3(effect@3.17.7))(express@5.0.1)(fastify@5.2.0)(h3@1.15.3)(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(tailwindcss@4.0.0)
optionalDependencies:
- next: 15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ next: 15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
transitivePeerDependencies:
- solid-js
- svelte
@@ -26845,7 +26651,7 @@ snapshots:
'@vanilla-extract/private': 1.0.6
css-what: 6.1.0
cssesc: 3.0.0
- csstype: 3.1.3
+ csstype: 3.2.3
dedent: 1.5.3
deep-object-diff: 1.1.9
deepmerge: 4.3.1
@@ -26924,7 +26730,7 @@ snapshots:
untun: 0.1.3
uqr: 0.1.2
- '@vinxi/plugin-directives@0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))':
+ '@vinxi/plugin-directives@0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))':
dependencies:
'@babel/parser': 7.28.3
acorn: 8.14.1
@@ -26935,29 +26741,29 @@ snapshots:
magicast: 0.2.11
recast: 0.23.11
tslib: 2.8.1
- vinxi: 0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0)
+ vinxi: 0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0)
- '@vinxi/server-components@0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))':
+ '@vinxi/server-components@0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))':
dependencies:
- '@vinxi/plugin-directives': 0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))
+ '@vinxi/plugin-directives': 0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))
acorn: 8.14.1
acorn-loose: 8.4.0
acorn-typescript: 1.4.13(acorn@8.14.1)
astring: 1.9.0
magicast: 0.2.11
recast: 0.23.11
- vinxi: 0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0)
+ vinxi: 0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0)
- '@vinxi/server-functions@0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))':
+ '@vinxi/server-functions@0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))':
dependencies:
- '@vinxi/plugin-directives': 0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))
+ '@vinxi/plugin-directives': 0.4.3(vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0))
acorn: 8.14.1
acorn-loose: 8.4.0
acorn-typescript: 1.4.13(acorn@8.14.1)
astring: 1.9.0
magicast: 0.2.11
recast: 0.23.11
- vinxi: 0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0)
+ vinxi: 0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0)
'@vitejs/plugin-react-swc@3.7.2(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))':
dependencies:
@@ -27785,7 +27591,7 @@ snapshots:
astring@1.9.0: {}
- astro@5.1.2(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(yaml@2.7.0):
+ astro@5.1.2(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(yaml@2.7.0):
dependencies:
'@astrojs/compiler': 2.10.3
'@astrojs/internal-helpers': 0.4.2
@@ -28228,10 +28034,6 @@ snapshots:
esbuild: 0.24.2
load-tsconfig: 0.2.5
- busboy@1.6.0:
- dependencies:
- streamsearch: 1.1.0
-
bytes@3.1.2: {}
c12@2.0.1(magicast@0.3.5):
@@ -28547,22 +28349,22 @@ snapshots:
cluster-key-slot@1.1.2: {}
- cmdk@0.2.1(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ cmdk@0.2.1(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
- '@radix-ui/react-dialog': 1.0.0(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-dialog': 1.0.0(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
transitivePeerDependencies:
- '@types/react'
- cmdk@1.1.1(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ cmdk@1.1.1(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-dialog': 1.1.11(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-id': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-dialog': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
transitivePeerDependencies:
- '@types/react'
- '@types/react-dom'
@@ -28970,6 +28772,8 @@ snapshots:
csstype@3.1.3: {}
+ csstype@3.2.3: {}
+
cva@1.0.0-beta.2(typescript@5.8.3):
dependencies:
clsx: 2.1.1
@@ -29015,10 +28819,10 @@ snapshots:
dayjs@1.11.13: {}
- db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)):
+ db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)):
optionalDependencies:
'@libsql/client': 0.14.0
- drizzle-orm: 0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)
+ drizzle-orm: 0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)
de-indent@1.0.2: {}
@@ -29293,13 +29097,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0):
+ drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2):
optionalDependencies:
'@cloudflare/workers-types': 4.20241230.0
'@libsql/client': 0.14.0
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
bun-types: 1.2.5
- react: 19.1.0
+ react: 19.2.2
dset@3.1.4: {}
@@ -29785,16 +29589,16 @@ snapshots:
eslint: 9.25.1(jiti@2.4.2)
semver: 7.7.2
- eslint-config-next@15.2.3(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3):
+ eslint-config-next@15.5.8(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3):
dependencies:
- '@next/eslint-plugin-next': 15.2.3
+ '@next/eslint-plugin-next': 15.5.8
'@rushstack/eslint-patch': 1.10.4
'@typescript-eslint/eslint-plugin': 8.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
'@typescript-eslint/parser': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
eslint: 9.25.1(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.4.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.6.1)(eslint@9.25.1(jiti@2.4.2))
eslint-plugin-jsx-a11y: 6.10.2(eslint@9.25.1(jiti@2.4.2))
eslint-plugin-react: 7.37.0(eslint@9.25.1(jiti@2.4.2))
eslint-plugin-react-hooks: 5.1.0(eslint@9.25.1(jiti@2.4.2))
@@ -29812,13 +29616,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2)):
+ eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.4.2)):
dependencies:
debug: 4.4.1
enhanced-resolve: 5.18.0
eslint: 9.25.1(jiti@2.4.2)
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2))
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@9.25.1(jiti@2.4.2))
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.6.1)(eslint@9.25.1(jiti@2.4.2))
fast-glob: 3.3.3
get-tsconfig: 4.10.1
is-core-module: 2.16.1
@@ -29829,14 +29633,14 @@ snapshots:
- eslint-import-resolver-webpack
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2)):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@9.25.1(jiti@2.4.2)):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3)
eslint: 9.25.1(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2))
+ eslint-import-resolver-typescript: 3.6.1(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@9.25.1(jiti@2.4.2))
transitivePeerDependencies:
- supports-color
@@ -29860,7 +29664,7 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2)):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-typescript@3.6.1)(eslint@9.25.1(jiti@2.4.2)):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.8
@@ -29871,7 +29675,7 @@ snapshots:
doctrine: 2.1.0
eslint: 9.25.1(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2)))(eslint@9.25.1(jiti@2.4.2))
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.31.0(eslint@9.25.1(jiti@2.4.2))(typescript@5.8.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1)(eslint@9.25.1(jiti@2.4.2))
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -30187,15 +29991,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- expo-asset@11.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0):
+ expo-asset@11.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2):
dependencies:
'@expo/image-utils': 0.6.4
- expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- expo-constants: 17.0.5(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))
+ expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ expo-constants: 17.0.5(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))
invariant: 2.2.4
md5-file: 3.2.3
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
transitivePeerDependencies:
- supports-color
@@ -30207,20 +30011,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- expo-constants@16.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)):
+ expo-constants@16.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)):
dependencies:
'@expo/config': 9.0.4
'@expo/env': 0.3.0
- expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
transitivePeerDependencies:
- supports-color
- expo-constants@17.0.5(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)):
+ expo-constants@17.0.5(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)):
dependencies:
'@expo/config': 10.0.8
'@expo/env': 0.4.1
- expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
transitivePeerDependencies:
- supports-color
@@ -30260,18 +30064,18 @@ snapshots:
dependencies:
expo: 51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)
- expo-document-picker@12.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)):
+ expo-document-picker@12.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)):
dependencies:
- expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
expo-file-system@17.0.1(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)):
dependencies:
expo: 51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)
- expo-file-system@18.0.7(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)):
+ expo-file-system@18.0.7(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)):
dependencies:
- expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
web-streams-polyfill: 3.3.3
expo-font@12.0.10(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)):
@@ -30279,11 +30083,11 @@ snapshots:
expo: 51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)
fontfaceobserver: 2.3.0
- expo-font@13.0.3(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react@19.1.0):
+ expo-font@13.0.3(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react@19.2.2):
dependencies:
- expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
fontfaceobserver: 2.3.0
- react: 19.1.0
+ react: 19.2.2
expo-haptics@13.0.1(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)):
dependencies:
@@ -30293,19 +30097,19 @@ snapshots:
dependencies:
expo: 51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)
- expo-image-loader@4.7.0(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)):
+ expo-image-loader@4.7.0(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)):
dependencies:
- expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
expo-image-picker@15.0.7(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)):
dependencies:
expo: 51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)
expo-image-loader: 4.7.0(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13))
- expo-image-picker@15.0.7(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)):
+ expo-image-picker@15.0.7(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)):
dependencies:
- expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- expo-image-loader: 4.7.0(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))
+ expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ expo-image-loader: 4.7.0(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))
expo-image@1.13.0(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)):
dependencies:
@@ -30317,10 +30121,10 @@ snapshots:
dependencies:
expo: 51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)
- expo-keep-awake@14.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react@19.1.0):
+ expo-keep-awake@14.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react@19.2.2):
dependencies:
- expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- react: 19.1.0
+ expo: 52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
expo-linking@6.3.1(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)):
dependencies:
@@ -30367,25 +30171,25 @@ snapshots:
dependencies:
invariant: 2.2.4
- expo-router@3.5.24(3db0b6ee7bd5f52af15fe8c5edbef6f6):
+ expo-router@3.5.24(858a37ec74463a188b353be2630531aa):
dependencies:
- '@expo/metro-runtime': 3.2.3(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))
+ '@expo/metro-runtime': 3.2.3(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))
'@expo/server': 0.4.4(typescript@5.8.3)
- '@radix-ui/react-slot': 1.0.1(react@19.1.0)
- '@react-navigation/bottom-tabs': 6.5.20(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- '@react-navigation/native': 6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- '@react-navigation/native-stack': 6.9.26(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ '@radix-ui/react-slot': 1.0.1(react@19.2.2)
+ '@react-navigation/bottom-tabs': 6.5.20(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ '@react-navigation/native': 6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ '@react-navigation/native-stack': 6.9.26(@react-navigation/native@6.1.18(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
expo: 51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13)
expo-constants: 16.0.2(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13))
expo-linking: 6.3.1(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13))
expo-splash-screen: 0.27.7(encoding@0.1.13)(expo-modules-autolinking@1.11.3)(expo@51.0.39(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(encoding@0.1.13))
expo-status-bar: 1.12.1
- react-native-helmet-async: 2.0.4(react@19.1.0)
- react-native-safe-area-context: 4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ react-native-helmet-async: 2.0.4(react@19.2.2)
+ react-native-safe-area-context: 4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ react-native-screens: 3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
schema-utils: 4.3.0
optionalDependencies:
- react-native-reanimated: 3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ react-native-reanimated: 3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
transitivePeerDependencies:
- encoding
- expo-modules-autolinking
@@ -30438,7 +30242,7 @@ snapshots:
- supports-color
- utf-8-validate
- expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0):
+ expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2):
dependencies:
'@babel/runtime': 7.26.7
'@expo/cli': 0.22.7(encoding@0.1.13)(graphql@16.10.0)
@@ -30448,20 +30252,20 @@ snapshots:
'@expo/metro-config': 0.19.8
'@expo/vector-icons': 14.0.4
babel-preset-expo: 12.0.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))
- expo-asset: 11.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
- expo-constants: 17.0.5(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))
- expo-file-system: 18.0.7(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))
- expo-font: 13.0.3(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react@19.1.0)
- expo-keep-awake: 14.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react@19.1.0)
+ expo-asset: 11.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
+ expo-constants: 17.0.5(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))
+ expo-file-system: 18.0.7(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))
+ expo-font: 13.0.3(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react@19.2.2)
+ expo-keep-awake: 14.0.2(expo@52.0.23(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@expo/metro-runtime@4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)))(encoding@0.1.13)(graphql@16.10.0)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react@19.2.2)
expo-modules-autolinking: 2.0.4
expo-modules-core: 2.1.2
fbemitter: 3.0.0(encoding@0.1.13)
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
web-streams-polyfill: 3.3.3
whatwg-url-without-unicode: 8.0.0-3
optionalDependencies:
- '@expo/metro-runtime': 4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))
+ '@expo/metro-runtime': 4.0.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
@@ -30870,14 +30674,14 @@ snapshots:
fraction.js@4.3.7: {}
- framer-motion@12.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ framer-motion@12.0.6(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
motion-dom: 12.0.0
motion-utils: 12.0.0
tslib: 2.8.1
optionalDependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
framework-utils@1.1.0: {}
@@ -32136,10 +31940,10 @@ snapshots:
jose@5.9.6: {}
- jotai@2.8.0(@types/react@19.1.2)(react@19.1.0):
+ jotai@2.8.0(@types/react@19.2.7)(react@19.2.2):
optionalDependencies:
- '@types/react': 19.1.2
- react: 19.1.0
+ '@types/react': 19.2.7
+ react: 19.2.2
joycon@3.1.1: {}
@@ -32703,9 +32507,9 @@ snapshots:
lru-cache@7.18.3: {}
- lucide-react@0.469.0(react@19.1.0):
+ lucide-react@0.469.0(react@19.2.2):
dependencies:
- react: 19.1.0
+ react: 19.2.2
luxon@3.6.1: {}
@@ -33954,13 +33758,13 @@ snapshots:
motion-utils@12.0.0: {}
- motion@12.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ motion@12.0.6(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
- framer-motion: 12.0.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ framer-motion: 12.0.6(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
tslib: 2.8.1
optionalDependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
mri@1.2.0: {}
@@ -34035,11 +33839,11 @@ snapshots:
nanotar@0.1.1: {}
- nativewind@4.1.23(react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17):
+ nativewind@4.1.23(react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)(tailwindcss@3.4.17):
dependencies:
comment-json: 4.2.5
debug: 4.4.1
- react-native-css-interop: 0.1.22(react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17)
+ react-native-css-interop: 0.1.22(react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)(tailwindcss@3.4.17)
tailwindcss: 3.4.17
transitivePeerDependencies:
- react
@@ -34072,75 +33876,73 @@ snapshots:
p-wait-for: 5.0.2
qs: 6.13.0
- next-auth@5.0.0-beta.25(next@15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react@19.1.0):
+ next-auth@5.0.0-beta.25(next@15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react@19.2.2):
dependencies:
'@auth/core': 0.37.2
- next: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
+ next: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
- next-sitemap@4.2.3(next@15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)):
+ next-sitemap@4.2.3(next@15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)):
dependencies:
'@corex/deepmerge': 4.0.43
'@next/env': 13.5.6
fast-glob: 3.3.3
minimist: 1.2.8
- next: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ next: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
- next-themes@0.4.6(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ next-themes@0.4.6(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
- next-view-transitions@0.3.4(next@15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ next-view-transitions@0.3.4(next@15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
- next: 15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ next: 15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
- next@15.3.1(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
- '@next/env': 15.3.1
- '@swc/counter': 0.1.3
+ '@next/env': 15.4.2-canary.51
'@swc/helpers': 0.5.15
- busboy: 1.6.0
caniuse-lite: 1.0.30001696
postcss: 8.4.31
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- styled-jsx: 5.1.6(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ styled-jsx: 5.1.6(react@19.2.2)
optionalDependencies:
- '@next/swc-darwin-arm64': 15.3.1
- '@next/swc-darwin-x64': 15.3.1
- '@next/swc-linux-arm64-gnu': 15.3.1
- '@next/swc-linux-arm64-musl': 15.3.1
- '@next/swc-linux-x64-gnu': 15.3.1
- '@next/swc-linux-x64-musl': 15.3.1
- '@next/swc-win32-arm64-msvc': 15.3.1
- '@next/swc-win32-x64-msvc': 15.3.1
+ '@next/swc-darwin-arm64': 15.4.2-canary.51
+ '@next/swc-darwin-x64': 15.4.2-canary.51
+ '@next/swc-linux-arm64-gnu': 15.4.2-canary.51
+ '@next/swc-linux-arm64-musl': 15.4.2-canary.51
+ '@next/swc-linux-x64-gnu': 15.4.2-canary.51
+ '@next/swc-linux-x64-musl': 15.4.2-canary.51
+ '@next/swc-win32-arm64-msvc': 15.4.2-canary.51
+ '@next/swc-win32-x64-msvc': 15.4.2-canary.51
'@playwright/test': 1.52.0
- sharp: 0.34.1
+ sharp: 0.34.3
transitivePeerDependencies:
- '@babel/core'
- babel-plugin-macros
- next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ next@15.5.8(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
- '@next/env': 15.4.2-canary.51
+ '@next/env': 15.5.8
'@swc/helpers': 0.5.15
caniuse-lite: 1.0.30001696
postcss: 8.4.31
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- styled-jsx: 5.1.6(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ styled-jsx: 5.1.6(react@19.2.2)
optionalDependencies:
- '@next/swc-darwin-arm64': 15.4.2-canary.51
- '@next/swc-darwin-x64': 15.4.2-canary.51
- '@next/swc-linux-arm64-gnu': 15.4.2-canary.51
- '@next/swc-linux-arm64-musl': 15.4.2-canary.51
- '@next/swc-linux-x64-gnu': 15.4.2-canary.51
- '@next/swc-linux-x64-musl': 15.4.2-canary.51
- '@next/swc-win32-arm64-msvc': 15.4.2-canary.51
- '@next/swc-win32-x64-msvc': 15.4.2-canary.51
+ '@next/swc-darwin-arm64': 15.5.7
+ '@next/swc-darwin-x64': 15.5.7
+ '@next/swc-linux-arm64-gnu': 15.5.7
+ '@next/swc-linux-arm64-musl': 15.5.7
+ '@next/swc-linux-x64-gnu': 15.5.7
+ '@next/swc-linux-x64-musl': 15.5.7
+ '@next/swc-win32-arm64-msvc': 15.5.7
+ '@next/swc-win32-x64-msvc': 15.5.7
'@playwright/test': 1.52.0
sharp: 0.34.3
transitivePeerDependencies:
@@ -34149,7 +33951,7 @@ snapshots:
nice-try@1.0.5: {}
- nitropack@2.11.12(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(uploadthing@packages+uploadthing):
+ nitropack@2.11.12(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(rolldown@1.0.0-beta.32)(uploadthing@packages+uploadthing):
dependencies:
'@cloudflare/kv-asset-handler': 0.4.0
'@netlify/functions': 3.1.10(encoding@0.1.13)(rollup@4.44.0)
@@ -34171,7 +33973,7 @@ snapshots:
cookie-es: 2.0.0
croner: 9.0.0
crossws: 0.3.5
- db0: 0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))
+ db0: 0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))
defu: 6.1.4
destr: 2.0.5
dot-prop: 9.0.0
@@ -34203,7 +34005,7 @@ snapshots:
pretty-bytes: 6.1.1
radix3: 1.1.2
rollup: 4.44.0
- rollup-plugin-visualizer: 5.14.0(rollup@4.44.0)
+ rollup-plugin-visualizer: 5.14.0(rolldown@1.0.0-beta.32)(rollup@4.44.0)
scule: 1.3.0
semver: 7.7.2
serve-placeholder: 2.0.2
@@ -34336,9 +34138,9 @@ snapshots:
normalize-wheel@1.0.1: {}
- novel@0.5.0(@tiptap/extension-code-block@2.11.0(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2))(@types/react@19.1.2)(highlight.js@11.11.1)(lowlight@3.3.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ novel@0.5.0(@tiptap/extension-code-block@2.11.0(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2))(@types/react@19.2.7)(highlight.js@11.11.1)(lowlight@3.3.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
- '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.2.7)(react@19.2.2)
'@tiptap/core': 2.3.2(@tiptap/pm@2.3.2)
'@tiptap/extension-character-count': 2.11.0(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2)
'@tiptap/extension-code-block-lowlight': 2.11.0(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/extension-code-block@2.11.0(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2)(highlight.js@11.11.1)(lowlight@3.3.0)
@@ -34354,22 +34156,22 @@ snapshots:
'@tiptap/extension-underline': 2.3.2(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))
'@tiptap/extension-youtube': 2.11.0(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))
'@tiptap/pm': 2.3.2
- '@tiptap/react': 2.3.2(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ '@tiptap/react': 2.3.2(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
'@tiptap/starter-kit': 2.3.2(@tiptap/pm@2.3.2)
'@tiptap/suggestion': 2.3.2(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))(@tiptap/pm@2.3.2)
'@types/node': 18.15.3
- cmdk: 0.2.1(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- jotai: 2.8.0(@types/react@19.1.2)(react@19.1.0)
+ cmdk: 0.2.1(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ jotai: 2.8.0(@types/react@19.2.7)(react@19.2.2)
katex: 0.16.19
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-markdown: 8.0.7(@types/react@19.1.2)(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ react-markdown: 8.0.7(@types/react@19.2.7)(react@19.2.2)
react-moveable: 0.56.0
- react-tweet: 3.2.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react-tweet: 3.2.1(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
tippy.js: 6.3.7
tiptap-extension-global-drag-handle: 0.1.16
tiptap-markdown: 0.8.10(@tiptap/core@2.3.2(@tiptap/pm@2.3.2))
- tunnel-rat: 0.1.2(@types/react@19.1.2)(react@19.1.0)
+ tunnel-rat: 0.1.2(@types/react@19.2.7)(react@19.2.2)
transitivePeerDependencies:
- '@tiptap/extension-code-block'
- '@types/react'
@@ -34447,14 +34249,14 @@ snapshots:
nuxi@3.17.2: {}
- nuxt@3.15.0(@libsql/client@0.14.0)(@parcel/watcher@2.5.1)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(eslint@9.25.1(jiti@2.4.2))(ioredis@5.6.1)(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(yaml@2.7.0):
+ nuxt@3.15.0(@libsql/client@0.14.0)(@parcel/watcher@2.5.1)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(eslint@9.25.1(jiti@2.4.2))(ioredis@5.6.1)(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.32)(rollup@3.29.5)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(yaml@2.7.0):
dependencies:
'@nuxt/devalue': 2.0.2
'@nuxt/devtools': 1.7.0(rollup@3.29.5)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.3))
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@3.29.5)
'@nuxt/schema': 3.15.0(magicast@0.3.5)(rollup@3.29.5)
'@nuxt/telemetry': 2.6.2(magicast@0.3.5)(rollup@3.29.5)
- '@nuxt/vite-builder': 3.15.0(@types/node@22.12.0)(eslint@9.25.1(jiti@2.4.2))(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rollup@3.29.5)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.0)
+ '@nuxt/vite-builder': 3.15.0(@types/node@22.12.0)(eslint@9.25.1(jiti@2.4.2))(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.32)(rollup@3.29.5)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.0)
'@unhead/dom': 1.11.18
'@unhead/shared': 1.11.18
'@unhead/ssr': 1.11.14
@@ -34484,7 +34286,7 @@ snapshots:
magic-string: 0.30.17
mlly: 1.7.4
nanotar: 0.1.1
- nitropack: 2.11.12(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(uploadthing@packages+uploadthing)
+ nitropack: 2.11.12(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(rolldown@1.0.0-beta.32)(uploadthing@packages+uploadthing)
nuxi: 3.17.2
nypm: 0.4.1
ofetch: 1.4.1
@@ -34569,14 +34371,14 @@ snapshots:
- xml2js
- yaml
- nuxt@3.15.0(@libsql/client@0.14.0)(@parcel/watcher@2.5.1)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(eslint@9.25.1(jiti@2.4.2))(ioredis@5.6.1)(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(yaml@2.7.0):
+ nuxt@3.15.0(@libsql/client@0.14.0)(@parcel/watcher@2.5.1)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(eslint@9.25.1(jiti@2.4.2))(ioredis@5.6.1)(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.32)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(uploadthing@packages+uploadthing)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(yaml@2.7.0):
dependencies:
'@nuxt/devalue': 2.0.2
'@nuxt/devtools': 1.7.0(rollup@4.44.0)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(vue@3.5.13(typescript@5.8.3))
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.44.0)
'@nuxt/schema': 3.15.0(magicast@0.3.5)(rollup@4.44.0)
'@nuxt/telemetry': 2.6.2(magicast@0.3.5)(rollup@4.44.0)
- '@nuxt/vite-builder': 3.15.0(@types/node@22.12.0)(eslint@9.25.1(jiti@2.4.2))(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.0)
+ '@nuxt/vite-builder': 3.15.0(@types/node@22.12.0)(eslint@9.25.1(jiti@2.4.2))(lightningcss@1.29.3)(magicast@0.3.5)(optionator@0.9.4)(rolldown@1.0.0-beta.32)(rollup@4.44.0)(terser@5.37.0)(tsx@4.19.2)(typescript@5.8.3)(vue@3.5.13(typescript@5.8.3))(yaml@2.7.0)
'@unhead/dom': 1.11.18
'@unhead/shared': 1.11.18
'@unhead/ssr': 1.11.14
@@ -34606,7 +34408,7 @@ snapshots:
magic-string: 0.30.17
mlly: 1.7.4
nanotar: 0.1.1
- nitropack: 2.11.12(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(uploadthing@packages+uploadthing)
+ nitropack: 2.11.12(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(rolldown@1.0.0-beta.32)(uploadthing@packages+uploadthing)
nuxi: 3.17.2
nypm: 0.4.1
ofetch: 1.4.1
@@ -36003,67 +35805,67 @@ snapshots:
quote-unquote@1.0.0: {}
- radix-ui@1.3.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ radix-ui@1.3.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
'@radix-ui/primitive': 1.1.2
- '@radix-ui/react-accessible-icon': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-accordion': 1.2.8(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-alert-dialog': 1.1.11(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-arrow': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-aspect-ratio': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-avatar': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-checkbox': 1.2.3(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-collapsible': 1.1.8(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-context-menu': 2.2.12(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-dialog': 1.1.11(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-direction': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-dropdown-menu': 2.1.12(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-form': 0.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-hover-card': 1.1.11(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-label': 2.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-menu': 2.1.12(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-menubar': 1.1.12(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-navigation-menu': 1.2.10(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-one-time-password-field': 0.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-popover': 1.1.11(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-progress': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-radio-group': 1.3.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-scroll-area': 1.2.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-select': 2.2.2(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-separator': 1.1.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slider': 1.3.2(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-slot': 1.2.0(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-switch': 1.2.2(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-tabs': 1.1.9(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-toast': 1.2.11(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-toggle': 1.1.6(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-toggle-group': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-toolbar': 1.1.7(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-tooltip': 1.2.4(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-use-size': 1.1.1(@types/react@19.1.2)(react@19.1.0)
- '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ '@radix-ui/react-accessible-icon': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-accordion': 1.2.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-alert-dialog': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-arrow': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-aspect-ratio': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-avatar': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-checkbox': 1.2.3(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-collapsible': 1.1.8(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-collection': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-context-menu': 2.2.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-dialog': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-dismissable-layer': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-dropdown-menu': 2.1.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-focus-guards': 1.1.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-focus-scope': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-form': 0.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-hover-card': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-label': 2.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-menu': 2.1.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-menubar': 1.1.12(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-navigation-menu': 1.2.10(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-one-time-password-field': 0.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-popover': 1.1.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-popper': 1.2.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-portal': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-presence': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-primitive': 2.1.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-progress': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-radio-group': 1.3.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-roving-focus': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-scroll-area': 1.2.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-select': 2.2.2(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-separator': 1.1.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-slider': 1.3.2(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-slot': 1.2.0(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-switch': 1.2.2(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-tabs': 1.1.9(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-toast': 1.2.11(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-toggle': 1.1.6(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-toggle-group': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-toolbar': 1.1.7(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-tooltip': 1.2.4(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@19.2.7)(react@19.2.2)
+ '@radix-ui/react-visually-hidden': 1.2.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
radix-vue@1.9.13(vue@3.5.13(typescript@5.8.3)):
dependencies:
@@ -36129,34 +35931,34 @@ snapshots:
- bufferutil
- utf-8-validate
- react-dom@19.1.0(react@19.1.0):
+ react-dom@19.2.2(react@19.2.2):
dependencies:
- react: 19.1.0
- scheduler: 0.26.0
+ react: 19.2.2
+ scheduler: 0.27.0
- react-easy-crop@5.2.0(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-easy-crop@5.2.0(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
normalize-wheel: 1.0.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
tslib: 2.8.1
react-fast-compare@3.2.2: {}
- react-freeze@1.0.4(react@19.1.0):
+ react-freeze@1.0.4(react@19.2.2):
dependencies:
- react: 19.1.0
+ react: 19.2.2
- react-highlight-words@0.20.0(react@19.1.0):
+ react-highlight-words@0.20.0(react@19.2.2):
dependencies:
highlight-words-core: 1.2.2
memoize-one: 4.0.3
prop-types: 15.8.1
- react: 19.1.0
+ react: 19.2.2
- react-image-crop@11.0.7(react@19.1.0):
+ react-image-crop@11.0.7(react@19.2.2):
dependencies:
- react: 19.1.0
+ react: 19.2.2
react-is@16.13.1: {}
@@ -36164,17 +35966,17 @@ snapshots:
react-is@18.3.1: {}
- react-markdown@8.0.7(@types/react@19.1.2)(react@19.1.0):
+ react-markdown@8.0.7(@types/react@19.2.7)(react@19.2.2):
dependencies:
'@types/hast': 2.3.10
'@types/prop-types': 15.7.5
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
'@types/unist': 2.0.11
comma-separated-tokens: 2.0.3
hast-util-whitespace: 2.0.1
prop-types: 15.8.1
property-information: 6.5.0
- react: 19.1.0
+ react: 19.2.2
react-is: 18.3.1
remark-parse: 10.0.2
remark-rehype: 10.1.0
@@ -36202,41 +36004,41 @@ snapshots:
react-css-styled: 1.1.9
react-selecto: 1.26.3
- react-native-css-interop@0.1.22(react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)(tailwindcss@3.4.17):
+ react-native-css-interop@0.1.22(react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2))(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)(tailwindcss@3.4.17):
dependencies:
'@babel/helper-module-imports': 7.27.1
'@babel/traverse': 7.27.4
'@babel/types': 7.28.2
debug: 4.4.1
lightningcss: 1.29.3
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
- react-native-reanimated: 3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
+ react-native-reanimated: 3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
semver: 7.7.2
tailwindcss: 3.4.17
optionalDependencies:
- react-native-safe-area-context: 4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ react-native-safe-area-context: 4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
transitivePeerDependencies:
- supports-color
- react-native-gesture-handler@2.16.2(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0):
+ react-native-gesture-handler@2.16.2(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2):
dependencies:
'@egjs/hammerjs': 2.0.17
hoist-non-react-statics: 3.3.2
invariant: 2.2.4
lodash: 4.17.21
prop-types: 15.8.1
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
- react-native-helmet-async@2.0.4(react@19.1.0):
+ react-native-helmet-async@2.0.4(react@19.2.2):
dependencies:
invariant: 2.2.4
- react: 19.1.0
+ react: 19.2.2
react-fast-compare: 3.2.2
shallowequal: 1.1.0
- react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0):
+ react-native-reanimated@3.10.1(@babel/core@7.27.4)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2):
dependencies:
'@babel/core': 7.27.4
'@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.27.4)
@@ -36247,24 +36049,24 @@ snapshots:
'@babel/preset-typescript': 7.27.1(@babel/core@7.27.4)
convert-source-map: 2.0.0
invariant: 2.2.4
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
transitivePeerDependencies:
- supports-color
- react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0):
+ react-native-safe-area-context@4.10.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2):
dependencies:
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
- react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0):
+ react-native-screens@3.31.1(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2):
dependencies:
- react: 19.1.0
- react-freeze: 1.0.4(react@19.1.0)
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react: 19.2.2
+ react-freeze: 1.0.4(react@19.2.2)
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
warn-once: 0.1.1
- react-native-web@0.19.13(encoding@0.1.13)(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-native-web@0.19.13(encoding@0.1.13)(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
'@babel/runtime': 7.26.7
'@react-native/normalize-colors': 0.74.88
@@ -36273,13 +36075,13 @@ snapshots:
memoize-one: 6.0.0
nullthrows: 1.1.1
postcss-value-parser: 4.2.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
styleq: 0.1.3
transitivePeerDependencies:
- encoding
- react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0):
+ react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 13.6.9(encoding@0.1.13)
@@ -36291,7 +36093,7 @@ snapshots:
'@react-native/gradle-plugin': 0.74.88
'@react-native/js-polyfills': 0.74.88
'@react-native/normalize-colors': 0.74.88
- '@react-native/virtualized-lists': 0.74.88(@types/react@19.1.2)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0)
+ '@react-native/virtualized-lists': 0.74.88(@types/react@19.2.7)(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -36310,10 +36112,10 @@ snapshots:
nullthrows: 1.1.1
pretty-format: 26.6.2
promise: 8.3.0
- react: 19.1.0
+ react: 19.2.2
react-devtools-core: 5.3.2
react-refresh: 0.14.2
- react-shallow-renderer: 16.15.0(react@19.1.0)
+ react-shallow-renderer: 16.15.0(react@19.2.2)
regenerator-runtime: 0.13.11
scheduler: 0.24.0-canary-efb381bbf-20230505
stacktrace-parser: 0.1.10
@@ -36321,7 +36123,7 @@ snapshots:
ws: 6.2.3
yargs: 17.7.2
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
transitivePeerDependencies:
- '@babel/core'
- '@babel/preset-env'
@@ -36334,91 +36136,91 @@ snapshots:
react-refresh@0.17.0: {}
- react-remove-scroll-bar@2.3.8(@types/react@19.1.2)(react@19.1.0):
+ react-remove-scroll-bar@2.3.8(@types/react@19.2.7)(react@19.2.2):
dependencies:
- react: 19.1.0
- react-style-singleton: 2.2.3(@types/react@19.1.2)(react@19.1.0)
+ react: 19.2.2
+ react-style-singleton: 2.2.3(@types/react@19.2.7)(react@19.2.2)
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- react-remove-scroll@2.5.4(@types/react@19.1.2)(react@19.1.0):
+ react-remove-scroll@2.5.4(@types/react@19.2.7)(react@19.2.2):
dependencies:
- react: 19.1.0
- react-remove-scroll-bar: 2.3.8(@types/react@19.1.2)(react@19.1.0)
- react-style-singleton: 2.2.3(@types/react@19.1.2)(react@19.1.0)
+ react: 19.2.2
+ react-remove-scroll-bar: 2.3.8(@types/react@19.2.7)(react@19.2.2)
+ react-style-singleton: 2.2.3(@types/react@19.2.7)(react@19.2.2)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.1.2)(react@19.1.0)
- use-sidecar: 1.1.3(@types/react@19.1.2)(react@19.1.0)
+ use-callback-ref: 1.3.3(@types/react@19.2.7)(react@19.2.2)
+ use-sidecar: 1.1.3(@types/react@19.2.7)(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- react-remove-scroll@2.6.3(@types/react@19.1.2)(react@19.1.0):
+ react-remove-scroll@2.6.3(@types/react@19.2.7)(react@19.2.2):
dependencies:
- react: 19.1.0
- react-remove-scroll-bar: 2.3.8(@types/react@19.1.2)(react@19.1.0)
- react-style-singleton: 2.2.3(@types/react@19.1.2)(react@19.1.0)
+ react: 19.2.2
+ react-remove-scroll-bar: 2.3.8(@types/react@19.2.7)(react@19.2.2)
+ react-style-singleton: 2.2.3(@types/react@19.2.7)(react@19.2.2)
tslib: 2.8.1
- use-callback-ref: 1.3.3(@types/react@19.1.2)(react@19.1.0)
- use-sidecar: 1.1.3(@types/react@19.1.2)(react@19.1.0)
+ use-callback-ref: 1.3.3(@types/react@19.2.7)(react@19.2.2)
+ use-sidecar: 1.1.3(@types/react@19.2.7)(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- react-router-dom@6.28.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-router-dom@6.28.1(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
'@remix-run/router': 1.21.0
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-router: 6.28.1(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ react-router: 6.28.1(react@19.2.2)
- react-router-dom@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-router-dom@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- react-router: 7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ react-router: 7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
- react-router@6.28.1(react@19.1.0):
+ react-router@6.28.1(react@19.2.2):
dependencies:
'@remix-run/router': 1.21.0
- react: 19.1.0
+ react: 19.2.2
- react-router@7.1.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-router@7.1.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
'@types/cookie': 0.6.0
cookie: 1.0.2
- react: 19.1.0
+ react: 19.2.2
set-cookie-parser: 2.7.1
turbo-stream: 2.4.0
optionalDependencies:
- react-dom: 19.1.0(react@19.1.0)
+ react-dom: 19.2.2(react@19.2.2)
react-selecto@1.26.3:
dependencies:
selecto: 1.26.3
- react-shallow-renderer@16.15.0(react@19.1.0):
+ react-shallow-renderer@16.15.0(react@19.2.2):
dependencies:
object-assign: 4.1.1
- react: 19.1.0
+ react: 19.2.2
react-is: 18.3.1
- react-style-singleton@2.2.3(@types/react@19.1.2)(react@19.1.0):
+ react-style-singleton@2.2.3(@types/react@19.2.7)(react@19.2.2):
dependencies:
get-nonce: 1.0.1
- react: 19.1.0
+ react: 19.2.2
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- react-tweet@3.2.1(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ react-tweet@3.2.1(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
'@swc/helpers': 0.5.15
clsx: 2.1.1
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
- swr: 2.3.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
+ swr: 2.3.0(react@19.2.2)
- react@19.1.0: {}
+ react@19.2.2: {}
read-cache@1.0.0:
dependencies:
@@ -36503,12 +36305,12 @@ snapshots:
'@sindresorhus/slugify': 2.2.1
estree-util-visit: 1.2.1
- recyclerlistview@4.2.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0))(react@19.1.0):
+ recyclerlistview@4.2.0(react-native@0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2))(react@19.2.2):
dependencies:
lodash.debounce: 4.0.8
prop-types: 15.8.1
- react: 19.1.0
- react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.1.2)(encoding@0.1.13)(react@19.1.0)
+ react: 19.2.2
+ react-native: 0.74.6(@babel/core@7.27.4)(@babel/preset-env@7.26.0(@babel/core@7.27.4))(@types/react@19.2.7)(encoding@0.1.13)(react@19.2.2)
ts-object-utils: 0.0.5
redent@3.0.0:
@@ -36919,22 +36721,24 @@ snapshots:
dependencies:
rollup-plugin-inject: 3.0.2
- rollup-plugin-visualizer@5.14.0(rollup@3.29.5):
+ rollup-plugin-visualizer@5.14.0(rolldown@1.0.0-beta.32)(rollup@3.29.5):
dependencies:
open: 8.4.2
picomatch: 4.0.2
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
+ rolldown: 1.0.0-beta.32
rollup: 3.29.5
- rollup-plugin-visualizer@5.14.0(rollup@4.44.0):
+ rollup-plugin-visualizer@5.14.0(rolldown@1.0.0-beta.32)(rollup@4.44.0):
dependencies:
open: 8.4.2
picomatch: 4.0.2
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
+ rolldown: 1.0.0-beta.32
rollup: 4.44.0
rollup-pluginutils@2.8.2:
@@ -37034,7 +36838,7 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- scheduler@0.26.0: {}
+ scheduler@0.27.0: {}
schema-utils@3.3.0:
dependencies:
@@ -37256,34 +37060,6 @@ snapshots:
'@img/sharp-win32-ia32': 0.33.5
'@img/sharp-win32-x64': 0.33.5
- sharp@0.34.1:
- dependencies:
- color: 4.2.3
- detect-libc: 2.0.3
- semver: 7.7.2
- optionalDependencies:
- '@img/sharp-darwin-arm64': 0.34.1
- '@img/sharp-darwin-x64': 0.34.1
- '@img/sharp-libvips-darwin-arm64': 1.1.0
- '@img/sharp-libvips-darwin-x64': 1.1.0
- '@img/sharp-libvips-linux-arm': 1.1.0
- '@img/sharp-libvips-linux-arm64': 1.1.0
- '@img/sharp-libvips-linux-ppc64': 1.1.0
- '@img/sharp-libvips-linux-s390x': 1.1.0
- '@img/sharp-libvips-linux-x64': 1.1.0
- '@img/sharp-libvips-linuxmusl-arm64': 1.1.0
- '@img/sharp-libvips-linuxmusl-x64': 1.1.0
- '@img/sharp-linux-arm': 0.34.1
- '@img/sharp-linux-arm64': 0.34.1
- '@img/sharp-linux-s390x': 0.34.1
- '@img/sharp-linux-x64': 0.34.1
- '@img/sharp-linuxmusl-arm64': 0.34.1
- '@img/sharp-linuxmusl-x64': 0.34.1
- '@img/sharp-wasm32': 0.34.1
- '@img/sharp-win32-ia32': 0.34.1
- '@img/sharp-win32-x64': 0.34.1
- optional: true
-
sharp@0.34.3:
dependencies:
color: 4.2.3
@@ -37465,10 +37241,10 @@ snapshots:
dependencies:
atomic-sleep: 1.0.0
- sonner@2.0.3(react-dom@19.1.0(react@19.1.0))(react@19.1.0):
+ sonner@2.0.3(react-dom@19.2.2(react@19.2.2))(react@19.2.2):
dependencies:
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
source-map-js@1.2.1: {}
@@ -37574,8 +37350,6 @@ snapshots:
stream-slice@0.1.2: {}
- streamsearch@1.1.0: {}
-
streamx@2.16.1:
dependencies:
fast-fifo: 1.3.2
@@ -37729,10 +37503,10 @@ snapshots:
dependencies:
inline-style-parser: 0.2.4
- styled-jsx@5.1.6(react@19.1.0):
+ styled-jsx@5.1.6(react@19.2.2):
dependencies:
client-only: 0.0.1
- react: 19.1.0
+ react: 19.2.2
stylehacks@6.1.1(postcss@8.4.49):
dependencies:
@@ -37857,11 +37631,11 @@ snapshots:
csso: 5.0.5
picocolors: 1.1.1
- swr@2.3.0(react@19.1.0):
+ swr@2.3.0(react@19.2.2):
dependencies:
dequal: 2.0.3
- react: 19.1.0
- use-sync-external-store: 1.5.0(react@19.1.0)
+ react: 19.2.2
+ use-sync-external-store: 1.5.0(react@19.2.2)
system-architecture@0.1.0: {}
@@ -38248,9 +38022,9 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- tunnel-rat@0.1.2(@types/react@19.1.2)(react@19.1.0):
+ tunnel-rat@0.1.2(@types/react@19.2.7)(react@19.2.2):
dependencies:
- zustand: 4.5.2(@types/react@19.1.2)(react@19.1.0)
+ zustand: 4.5.2(@types/react@19.2.7)(react@19.2.2)
transitivePeerDependencies:
- '@types/react'
- immer
@@ -38775,7 +38549,7 @@ snapshots:
ofetch: 1.4.1
ufo: 1.6.1
optionalDependencies:
- db0: 0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))
+ db0: 0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))
ioredis: 5.6.1
uploadthing: link:packages/uploadthing
@@ -38821,7 +38595,7 @@ snapshots:
escalade: 3.2.0
picocolors: 1.1.1
- uploadthing@6.13.3(@effect/platform@0.90.3(effect@3.17.7))(express@5.0.1)(fastify@5.2.0)(h3@1.15.3)(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0))(tailwindcss@4.0.0):
+ uploadthing@6.13.3(@effect/platform@0.90.3(effect@3.17.7))(express@5.0.1)(fastify@5.2.0)(h3@1.15.3)(next@15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2))(tailwindcss@4.0.0):
dependencies:
'@effect/schema': 0.68.18(effect@3.4.8)
'@uploadthing/mime-types': 0.2.10
@@ -38834,7 +38608,7 @@ snapshots:
express: 5.0.1
fastify: 5.2.0
h3: 1.15.3
- next: 15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)
+ next: 15.4.2-canary.51(@playwright/test@1.52.0)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)
tailwindcss: 4.0.0
uqr@0.1.2: {}
@@ -38854,36 +38628,36 @@ snapshots:
urlpattern-polyfill@8.0.2: {}
- use-callback-ref@1.3.3(@types/react@19.1.2)(react@19.1.0):
+ use-callback-ref@1.3.3(@types/react@19.2.7)(react@19.2.2):
dependencies:
- react: 19.1.0
+ react: 19.2.2
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- use-debounce@10.0.4(react@19.1.0):
+ use-debounce@10.0.4(react@19.2.2):
dependencies:
- react: 19.1.0
+ react: 19.2.2
- use-latest-callback@0.2.3(react@19.1.0):
+ use-latest-callback@0.2.3(react@19.2.2):
dependencies:
- react: 19.1.0
+ react: 19.2.2
- use-sidecar@1.1.3(@types/react@19.1.2)(react@19.1.0):
+ use-sidecar@1.1.3(@types/react@19.2.7)(react@19.2.2):
dependencies:
detect-node-es: 1.1.0
- react: 19.1.0
+ react: 19.2.2
tslib: 2.8.1
optionalDependencies:
- '@types/react': 19.1.2
+ '@types/react': 19.2.7
- use-sync-external-store@1.2.0(react@19.1.0):
+ use-sync-external-store@1.2.0(react@19.2.2):
dependencies:
- react: 19.1.0
+ react: 19.2.2
- use-sync-external-store@1.5.0(react@19.1.0):
+ use-sync-external-store@1.5.0(react@19.2.2):
dependencies:
- react: 19.1.0
+ react: 19.2.2
util-deprecate@1.0.2: {}
@@ -38964,7 +38738,7 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
- vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0):
+ vinxi@0.5.1(@libsql/client@0.14.0)(@types/node@22.12.0)(db0@0.3.2(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2)))(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(ioredis@5.6.1)(jiti@2.4.2)(lightningcss@1.29.3)(rolldown@1.0.0-beta.32)(terser@5.37.0)(tsx@4.19.2)(uploadthing@packages+uploadthing)(yaml@2.7.0):
dependencies:
'@babel/core': 7.27.4
'@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.27.4)
@@ -38986,7 +38760,7 @@ snapshots:
hookable: 5.5.3
http-proxy: 1.18.1
micromatch: 4.0.8
- nitropack: 2.11.12(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.1.2)(bun-types@1.2.5)(react@19.1.0))(encoding@0.1.13)(uploadthing@packages+uploadthing)
+ nitropack: 2.11.12(@libsql/client@0.14.0)(drizzle-orm@0.38.3(@cloudflare/workers-types@4.20241230.0)(@libsql/client@0.14.0)(@types/react@19.2.7)(bun-types@1.2.5)(react@19.2.2))(encoding@0.1.13)(rolldown@1.0.0-beta.32)(uploadthing@packages+uploadthing)
node-fetch-native: 1.6.6
path-to-regexp: 6.3.0
pathe: 1.1.2
@@ -39255,15 +39029,15 @@ snapshots:
optionalDependencies:
vite: 6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)
- vitest-browser-react@0.3.0(@types/react-dom@19.1.2(@types/react@19.1.2))(@types/react@19.1.2)(@vitest/browser@3.2.4)(react-dom@19.1.0(react@19.1.0))(react@19.1.0)(vitest@3.2.4):
+ vitest-browser-react@0.3.0(@types/react-dom@19.2.3(@types/react@19.2.7))(@types/react@19.2.7)(@vitest/browser@3.2.4)(react-dom@19.2.2(react@19.2.2))(react@19.2.2)(vitest@3.2.4):
dependencies:
'@vitest/browser': 3.2.4(msw@2.7.5(@types/node@22.12.0)(typescript@5.8.3))(playwright@1.52.0)(vite@6.3.5(@types/node@22.12.0)(jiti@2.4.2)(lightningcss@1.29.3)(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0))(vitest@3.2.4)
- react: 19.1.0
- react-dom: 19.1.0(react@19.1.0)
+ react: 19.2.2
+ react-dom: 19.2.2(react@19.2.2)
vitest: 3.2.4(@types/node@22.12.0)(@vitest/browser@3.2.4)(happy-dom@16.3.0)(jiti@2.4.2)(lightningcss@1.29.3)(msw@2.7.5(@types/node@22.12.0)(typescript@5.8.3))(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0)
optionalDependencies:
- '@types/react': 19.1.2
- '@types/react-dom': 19.1.2(@types/react@19.1.2)
+ '@types/react': 19.2.7
+ '@types/react-dom': 19.2.3(@types/react@19.2.7)
vitest@3.2.4(@types/node@22.12.0)(@vitest/browser@3.2.4)(happy-dom@16.3.0)(jiti@2.4.2)(lightningcss@1.29.3)(msw@2.7.5(@types/node@22.12.0)(typescript@5.8.3))(terser@5.37.0)(tsx@4.19.2)(yaml@2.7.0):
dependencies:
@@ -39931,17 +39705,17 @@ snapshots:
zod@3.25.67: {}
- zustand@4.5.2(@types/react@19.1.2)(react@19.1.0):
+ zustand@4.5.2(@types/react@19.2.7)(react@19.2.2):
dependencies:
- use-sync-external-store: 1.2.0(react@19.1.0)
+ use-sync-external-store: 1.2.0(react@19.2.2)
optionalDependencies:
- '@types/react': 19.1.2
- react: 19.1.0
+ '@types/react': 19.2.7
+ react: 19.2.2
- zustand@5.0.2(@types/react@19.1.2)(react@19.1.0)(use-sync-external-store@1.5.0(react@19.1.0)):
+ zustand@5.0.2(@types/react@19.2.7)(react@19.2.2)(use-sync-external-store@1.5.0(react@19.2.2)):
optionalDependencies:
- '@types/react': 19.1.2
- react: 19.1.0
- use-sync-external-store: 1.5.0(react@19.1.0)
+ '@types/react': 19.2.7
+ react: 19.2.2
+ use-sync-external-store: 1.5.0(react@19.2.2)
zwitch@2.0.4: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index f030ece6ed..bd7afa2985 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -14,3 +14,6 @@ packages:
- "playground"
- "playground-v6"
- "tooling/*"
+
+overrides:
+ rolldown: 1.0.0-beta.32