diff --git a/web/biome.json b/web/biome.json index 525a77f2..3d549dd0 100644 --- a/web/biome.json +++ b/web/biome.json @@ -1,5 +1,5 @@ { - "$schema": "https://biomejs.dev/schemas/2.0.5/schema.json", + "$schema": "https://biomejs.dev/schemas/2.0.6/schema.json", "vcs": { "enabled": true, "clientKind": "git", diff --git a/web/bun.lockb b/web/bun.lockb index aa378ee8..42f8b88c 100755 Binary files a/web/bun.lockb and b/web/bun.lockb differ diff --git a/web/package.json b/web/package.json index 067a12ef..ed99f07d 100644 --- a/web/package.json +++ b/web/package.json @@ -14,8 +14,8 @@ "lint:fix": "bunx @biomejs/biome check ./ --write" }, "devDependencies": { - "@biomejs/biome": "2.0.5", - "@types/node": "^24.0.4", + "@biomejs/biome": "2.0.6", + "@types/node": "^24.0.5", "@types/react": "^19.1.8", "@types/react-copy-to-clipboard": "^5.0.7", "@types/react-dom": "^19.1.6", @@ -29,24 +29,22 @@ }, "dependencies": { "@hookform/resolvers": "^5.1.1", - "@radix-ui/react-navigation-menu": "^1.2.13", - "@radix-ui/react-popover": "^1.1.14", "@tailwindcss/vite": "^4.1.11", - "@tanstack/react-query": "^5.81.2", + "@tanstack/react-query": "^5.81.4", "class-variance-authority": "^0.7.1", "clsx": "^2.1.1", - "framer-motion": "^12.19.1", + "framer-motion": "^12.19.2", "i18next": "^25.2.1", - "lucide-react": "^0.523.0", - "motion": "^12.19.1", + "lucide-react": "^0.525.0", + "motion": "^12.19.2", "radix-ui": "^1.4.2", "react": "^19.1.0", "react-copy-to-clipboard": "^5.1.0", "react-dom": "^19.1.0", "react-hook-form": "^7.58.1", "react-i18next": "^15.5.3", - "react-router": "^7.6.2", - "react-router-dom": "^7.6.2", + "react-router": "^7.6.3", + "react-router-dom": "^7.6.3", "react-syntax-highlighter": "^15.6.1", "sonner": "^2.0.5", "tailwind-merge": "^3.3.1", diff --git a/web/src/components/ui/navigation-menu.tsx b/web/src/components/ui/navigation-menu.tsx index 757034df..ee3c0757 100644 --- a/web/src/components/ui/navigation-menu.tsx +++ b/web/src/components/ui/navigation-menu.tsx @@ -1,6 +1,6 @@ -import * as NavigationMenuPrimitive from "@radix-ui/react-navigation-menu"; import { cva } from "class-variance-authority"; import { ChevronDownIcon } from "lucide-react"; +import { NavigationMenu as NavigationMenuPrimitive } from "radix-ui"; import * as React from "react"; import { cn } from "@/lib/utils"; diff --git a/web/src/components/ui/popover.tsx b/web/src/components/ui/popover.tsx index 8e9ec5b0..75273990 100644 --- a/web/src/components/ui/popover.tsx +++ b/web/src/components/ui/popover.tsx @@ -1,4 +1,4 @@ -import * as PopoverPrimitive from "@radix-ui/react-popover"; +import { Popover as PopoverPrimitive } from "radix-ui"; import * as React from "react"; import { cn } from "@/lib/utils";