refactor(ui): 将工具栏按钮移入 Chat Header

- 移除 App.tsx 中 absolute 定位的悬浮按钮
- 将设置和文件浏览器按钮移入 Chat Header
- 通过 props 传递按钮状态和回调函数
- 修复 tsconfig.json 的 include 配置错误
This commit is contained in:
2025-12-12 16:34:06 +08:00
parent 68ab6a2016
commit 67c6918b28
5 changed files with 163 additions and 115 deletions
-3
View File
@@ -4,8 +4,6 @@
"module": "NodeNext",
"moduleResolution": "NodeNext",
"lib": ["ES2022"],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
@@ -15,6 +13,5 @@
"declarationMap": true,
"sourceMap": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}