codebee 0.1.21 → 0.1.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/app/ui/style.css CHANGED
@@ -5392,3 +5392,33 @@ body.welcome-open { overflow: hidden; }
5392
5392
  #rd-chat-voice.live { color: var(--bad); animation: cb-rise .6s ease infinite alternate; }
5393
5393
  /* 设置导航标题保持单行,避免较长标题在手机抽屉里增高并把末尾入口推离视口。 */
5394
5394
  .side-settings .set-item { white-space: nowrap; }
5395
+
5396
+ /* ---------------- 请求即时反馈(统一 api 写操作,追加于文件尾防并行重排) ---------------- */
5397
+ .request-progress {
5398
+ position: fixed; z-index: 320; top: 0; left: 0; width: 34%; height: 2px;
5399
+ background: var(--accent); opacity: 0; pointer-events: none;
5400
+ transform: translateX(-110%);
5401
+ }
5402
+ .request-progress.active {
5403
+ opacity: 1;
5404
+ animation: request-progress-run 1.15s ease-in-out infinite;
5405
+ }
5406
+ @keyframes request-progress-run {
5407
+ 0% { transform: translateX(-110%); }
5408
+ 70% { transform: translateX(185%); }
5409
+ 100% { transform: translateX(300%); }
5410
+ }
5411
+ button.request-busy {
5412
+ position: relative; pointer-events: none; cursor: wait;
5413
+ }
5414
+ button.request-busy::after {
5415
+ content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 14px;
5416
+ margin: -8px 0 0 -8px; border: 2px solid currentColor; border-right-color: transparent;
5417
+ border-radius: 50%; animation: request-busy-spin .7s linear infinite;
5418
+ }
5419
+ button.request-busy > * { opacity: .18; }
5420
+ @keyframes request-busy-spin { to { transform: rotate(360deg); } }
5421
+ @media (prefers-reduced-motion: reduce) {
5422
+ .request-progress.active { animation: none; transform: translateX(95%); }
5423
+ button.request-busy::after { animation-duration: 1.4s; }
5424
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codebee",
3
- "version": "0.1.21",
3
+ "version": "0.1.22",
4
4
  "description": "CodeBee · 多智能体编排台 — 统一编排本机 AI 编码 CLI(Codex / Claude Code / QwenCode / OpenCode / Aider…):目标→拆解→路由→执行→验证→跨厂商评审→修复→报告。纯 Python 标准库实现,本地 Web UI。",
5
5
  "license": "MIT",
6
6
  "bin": {