Skip to content

Commit 197bab7

Browse files
committed
UI
Signed-off-by: Hubert Zub <hubert.zub@databricks.com>
1 parent 0a9a18e commit 197bab7

File tree

129 files changed

+15700
-37
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+15700
-37
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" />
7+
<meta name="theme-color" content="hsl(0 0% 100%)" id="theme-color-meta" />
8+
<title>Databricks Chat</title>
9+
<link rel="preconnect" href="https://fonts.googleapis.com" />
10+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
11+
</head>
12+
<body class="antialiased">
13+
<div id="root"></div>
14+
<script type="module" src="/src/main.tsx"></script>
15+
</body>
16+
</html>
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
{
2+
"name": "@databricks/chat-client",
3+
"version": "0.1.0",
4+
"private": true,
5+
"type": "module",
6+
"scripts": {
7+
"dev": "vite",
8+
"build": "vite build",
9+
"preview": "vite preview"
10+
},
11+
"browser": {
12+
"child_process": false,
13+
"crypto": false,
14+
"fs": false,
15+
"fs/promises": false,
16+
"path": false,
17+
"url": false,
18+
"vm": false,
19+
"ws": false
20+
},
21+
"dependencies": {
22+
"@ai-sdk/react": "^3.0.59",
23+
"@radix-ui/react-alert-dialog": "^1.1.2",
24+
"@radix-ui/react-collapsible": "^1.1.12",
25+
"@radix-ui/react-dialog": "^1.1.2",
26+
"@radix-ui/react-dropdown-menu": "^2.1.2",
27+
"@radix-ui/react-separator": "^1.1.0",
28+
"@radix-ui/react-slot": "^1.1.2",
29+
"@radix-ui/react-tooltip": "^1.1.3",
30+
"@radix-ui/react-use-controllable-state": "^1.2.2",
31+
"ai": "^6.0.70",
32+
"class-variance-authority": "^0.7.0",
33+
"clsx": "^2.1.1",
34+
"date-fns": "^4.1.0",
35+
"fast-deep-equal": "^3.1.3",
36+
"framer-motion": "^11.3.19",
37+
"lucide-react": "^0.446.0",
38+
"next-themes": "^0.4.6",
39+
"react": "^18.2.0",
40+
"react-dom": "^18.2.0",
41+
"react-router-dom": "^6.22.0",
42+
"react-syntax-highlighter": "^15.6.6",
43+
"sonner": "^1.5.0",
44+
"streamdown": "^1.4.0",
45+
"swr": "^2.2.5",
46+
"tailwind-merge": "^2.5.2",
47+
"use-stick-to-bottom": "^1.1.1",
48+
"usehooks-ts": "^3.1.0",
49+
"zod": "^4.3.5"
50+
},
51+
"devDependencies": {
52+
"@tailwindcss/postcss": "^4.1.13",
53+
"@tailwindcss/typography": "^0.5.19",
54+
"@types/react": "^18",
55+
"@types/react-dom": "^18",
56+
"@types/react-syntax-highlighter": "^15.5.13",
57+
"@vitejs/plugin-react": "^4.2.1",
58+
"postcss": "^8",
59+
"tailwindcss": "^4.1.13",
60+
"tailwindcss-animate": "^1.0.7",
61+
"typescript": "^5.9.3",
62+
"vite": "npm:rolldown-vite@latest"
63+
}
64+
}

0 commit comments

Comments
 (0)