Skip to content

Commit 87316e7

Browse files
authored
chore: update frontend dependencies and reorder Tailwind CSS classes for consistency. (#581)
## 📝 Pull Request Template ### 1. Related Issue Closes # (issue number) ### 2. Type of Change (select one) Type of Change: Chore Update ### 3. Description update frontend dependencies and reorder Tailwind CSS classes for consistency. ### 4. Testing - [x] I have tested this locally. - [x] I have updated or added relevant tests. ### 5. Checklist - [x] I have read the [Code of Conduct](./CODE_OF_CONDUCT.md) - [x] I have followed the [Contributing Guidelines](./CONTRIBUTING.md) - [x] My changes follow the project's coding style
1 parent e5fe7c3 commit 87316e7

5 files changed

Lines changed: 22 additions & 22 deletions

File tree

frontend/bun.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"framer-motion": "^12.23.26",
5959
"i18next": "^25.7.2",
6060
"isbot": "5.1.31",
61-
"lucide-react": "^0.559.0",
61+
"lucide-react": "^0.561.0",
6262
"mutative": "^1.3.0",
6363
"next-themes": "^0.4.6",
6464
"react": "^19.2.0",
@@ -74,7 +74,7 @@
7474
"zustand": "^5.0.9"
7575
},
7676
"devDependencies": {
77-
"@biomejs/biome": "^2.3.8",
77+
"@biomejs/biome": "^2.3.9",
7878
"@react-router/dev": "^7.10.1",
7979
"@react-router/serve": "^7.10.1",
8080
"@tailwindcss/typography": "^0.5.19",
@@ -88,7 +88,7 @@
8888
"typescript": "^5.9.3",
8989
"vite": "^7.1.12",
9090
"vite-plugin-svg-sprite": "^0.6.3",
91-
"vite-tsconfig-paths": "^5.1.4"
91+
"vite-tsconfig-paths": "^6.0.2"
9292
},
9393
"overrides": {
9494
"vite": "npm:rolldown-vite@latest",

frontend/src/app/agent/components/chat-conversation/chat-welcome-screen.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const ChatWelcomeScreen: FC<ChatWelcomeScreenProps> = ({
4141
};
4242

4343
const ChatBackground = () => (
44-
<div className="-z-10 absolute inset-0 overflow-hidden opacity-30">
44+
<div className="absolute inset-0 -z-10 overflow-hidden opacity-30">
4545
{[
4646
{
4747
left: "12%",
@@ -76,7 +76,7 @@ const ChatBackground = () => (
7676
].map((blur) => (
7777
<div
7878
key={`blur-${blur.left}-${blur.colors}`}
79-
className={`-translate-x-1/2 -translate-y-1/2 absolute ${blur.size}`}
79+
className={`absolute -translate-x-1/2 -translate-y-1/2 ${blur.size}`}
8080
style={{ left: blur.left, top: blur.top }}
8181
>
8282
<div

frontend/src/app/home/components/agent-suggestions-list.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ function AgentSuggestionItem({
9999
{suggestion.avatars.map((avatar, index) => (
100100
<div
101101
key={`${suggestion.id}-avatar-${index}`}
102-
className="-mr-2 relative size-6 overflow-hidden rounded-full border-2 border-white last:mr-0"
102+
className="relative -mr-2 size-6 overflow-hidden rounded-full border-2 border-white last:mr-0"
103103
>
104104
{avatar}
105105
</div>

frontend/src/components/valuecell/modal/login-modal.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export default function LoginModal({ children }: LoginModalProps) {
151151
disabled={pendingAction !== null}
152152
>
153153
<svg
154-
className="-translate-y-1/2 absolute top-1/2 left-4"
154+
className="absolute top-1/2 left-4 -translate-y-1/2"
155155
width="16"
156156
height="16"
157157
viewBox="0 0 16 16"
@@ -176,7 +176,7 @@ export default function LoginModal({ children }: LoginModalProps) {
176176
</svg>
177177
Continue with Google
178178
{pendingAction === "gmail" && (
179-
<Spinner className="-translate-y-1/2 absolute top-1/2 right-4" />
179+
<Spinner className="absolute top-1/2 right-4 -translate-y-1/2" />
180180
)}
181181
</Button>
182182
{/*

0 commit comments

Comments
 (0)