Skip to content

Commit 006b0d6

Browse files
committed
feat: use new theme
1 parent d4727c6 commit 006b0d6

File tree

14 files changed

+86
-173
lines changed

14 files changed

+86
-173
lines changed

web/bun.lockb

-48.4 KB
Binary file not shown.

web/components.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
"rsc": false,
55
"tsx": true,
66
"tailwind": {
7-
"config": "tailwind.config.js",
7+
"config": "",
88
"css": "src/index.css",
99
"baseColor": "zinc",
10-
"cssVariables": true,
11-
"prefix": ""
10+
"cssVariables": true
1211
},
1312
"aliases": {
1413
"components": "@/components",

web/package.json

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
},
1616
"devDependencies": {
1717
"@biomejs/biome": "1.9.4",
18-
"@types/node": "^22.15.21",
18+
"@types/node": "^22.15.28",
1919
"@types/react": "^19.1.6",
2020
"@types/react-copy-to-clipboard": "^5.0.7",
2121
"@types/react-dom": "^19.1.5",
2222
"@types/react-syntax-highlighter": "^15.5.13",
2323
"@vitejs/plugin-react": "^4.5.0",
2424
"rimraf": "^6.0.1",
25-
"tailwindcss": "^4.1.7",
25+
"tailwindcss": "^4.1.8",
2626
"typescript": "^5.8.3",
2727
"vite": "^6.3.5",
2828
"vite-bundle-visualizer": "^1.2.1"
@@ -34,7 +34,6 @@
3434
"@radix-ui/react-aspect-ratio": "^1.1.7",
3535
"@radix-ui/react-avatar": "^1.1.10",
3636
"@radix-ui/react-checkbox": "^1.3.2",
37-
"@radix-ui/react-collapsible": "^1.1.11",
3837
"@radix-ui/react-context-menu": "^2.2.15",
3938
"@radix-ui/react-dialog": "^1.1.14",
4039
"@radix-ui/react-dropdown-menu": "^2.1.15",
@@ -48,40 +47,34 @@
4847
"@radix-ui/react-scroll-area": "^1.2.9",
4948
"@radix-ui/react-select": "^2.2.5",
5049
"@radix-ui/react-separator": "^1.1.7",
51-
"@radix-ui/react-slider": "^1.3.5",
5250
"@radix-ui/react-slot": "^1.2.3",
5351
"@radix-ui/react-switch": "^1.2.5",
5452
"@radix-ui/react-tabs": "^1.1.12",
5553
"@radix-ui/react-toggle": "^1.1.9",
5654
"@radix-ui/react-toggle-group": "^1.1.10",
5755
"@radix-ui/react-tooltip": "^1.2.7",
58-
"@tailwindcss/vite": "^4.1.7",
59-
"@tanstack/react-query": "^5.77.2",
56+
"@tailwindcss/vite": "^4.1.8",
57+
"@tanstack/react-query": "^5.79.0",
6058
"class-variance-authority": "^0.7.1",
6159
"clsx": "^2.1.1",
62-
"cmdk": "^1.1.1",
6360
"date-fns": "^4.1.0",
64-
"embla-carousel-react": "^8.6.0",
6561
"i18next": "^25.2.1",
66-
"input-otp": "^1.4.2",
6762
"lucide-react": "^0.511.0",
6863
"react": "^19.1.0",
6964
"react-copy-to-clipboard": "^5.1.0",
7065
"react-day-picker": "9.7.0",
7166
"react-dom": "^19.1.0",
7267
"react-hook-form": "^7.56.4",
7368
"react-i18next": "^15.5.2",
74-
"react-resizable-panels": "^3.0.2",
7569
"react-router": "^7.6.1",
7670
"react-router-dom": "^7.6.1",
7771
"react-syntax-highlighter": "^15.6.1",
78-
"recharts": "^2.15.3",
7972
"sonner": "^2.0.3",
8073
"tailwind-merge": "^3.3.0",
8174
"tailwind-scrollbar": "^4.0.2",
82-
"tailwindcss-animate": "^1.0.7",
83-
"vaul": "^1.1.2",
84-
"yup": "^1.6.1"
75+
"tw-animate-css": "^1.3.2",
76+
"yup": "^1.6.1",
77+
"zod": "^3.25.42"
8578
},
8679
"trustedDependencies": ["@biomejs/biome"]
8780
}

web/src/components/main-config-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ export function MainConfigCard({
332332
className="w-full"
333333
>
334334
<div className="relative bg-muted rounded-lg">
335-
<TabsList className="flex flex-wrap gap-1 w-full bg-transparent tabs-list">
335+
<TabsList className="flex flex-wrap gap-1 w-full bg-transparent overflow-x-auto tabs-list">
336336
{shellTools.map((shellTool) => (
337337
<TabsTrigger
338338
key={shellTool}

web/src/components/ui/alert-dialog.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"use client";
2-
31
import * as React from "react";
42
import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
53

web/src/components/ui/checkbox.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"use client";
2-
31
import * as React from "react";
42
import * as CheckboxPrimitive from "@radix-ui/react-checkbox";
53
import { CheckIcon } from "lucide-react";

web/src/components/ui/dropdown-menu.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"use client";
2-
31
import * as React from "react";
42
import * as DropdownMenuPrimitive from "@radix-ui/react-dropdown-menu";
53
import { CheckIcon, ChevronRightIcon, CircleIcon } from "lucide-react";

web/src/components/ui/label.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"use client";
2-
31
import * as React from "react";
42
import * as LabelPrimitive from "@radix-ui/react-label";
53

web/src/components/ui/radio-group.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"use client";
2-
31
import * as React from "react";
42
import * as RadioGroupPrimitive from "@radix-ui/react-radio-group";
53
import { CircleIcon } from "lucide-react";

web/src/components/ui/separator.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
"use client";
2-
31
import * as React from "react";
42
import * as SeparatorPrimitive from "@radix-ui/react-separator";
53

@@ -13,7 +11,7 @@ function Separator({
1311
}: React.ComponentProps<typeof SeparatorPrimitive.Root>) {
1412
return (
1513
<SeparatorPrimitive.Root
16-
data-slot="separator-root"
14+
data-slot="separator"
1715
decorative={decorative}
1816
orientation={orientation}
1917
className={cn(

0 commit comments

Comments
 (0)