larkway 0.3.47 → 0.3.48

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/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  You @ the bot in a Feishu thread. It runs on your machine — reading your real codebase, executing commands, opening MRs — and posts the result back. You define what the agent knows and what it can do. Larkway just carries the messages.
10
10
 
11
- **Current release: v0.3.47**
11
+ **Current release: v0.3.48**
12
12
 
13
13
  ---
14
14
 
package/README.zh.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  你在飞书话题里 @ bot,它在你的机器上运行——读真实代码库、执行命令、开 MR——把结果贴回飞书。你定义 agent 知道什么、能做什么。Larkway 只负责传递消息。
10
10
 
11
- **当前版本:v0.3.47**
11
+ **当前版本:v0.3.48**
12
12
 
13
13
  ---
14
14
 
@@ -3936,11 +3936,14 @@ textarea.input {
3936
3936
  }
3937
3937
  .bk2-sel-desc { flex: 1; min-width: 0; font-size: 12px; color: var(--faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
3938
3938
  .bk2-select .icon { width: 15px; height: 15px; color: var(--faint); flex-shrink: 0; }
3939
+ /* 菜单走文档流内展开(不用 absolute):外层 .ac-layer 有 overflow:hidden
3940
+ 圆角裁剪,浮层会被裁得只剩一两项「看起来没有选项」—— in-flow 展开时卡片
3941
+ 自然撑高,免疫任何祖先裁剪(2026-07-10 本机部署实测修复)。 */
3939
3942
  .bk2-menu {
3940
- position: absolute; left: 0; right: 0; top: calc(100% + 6px); z-index: 30;
3943
+ margin-top: 6px;
3941
3944
  border: 1px solid var(--border); border-radius: 11px;
3942
3945
  background: #fff; overflow: hidden;
3943
- box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
3946
+ box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
3944
3947
  }
3945
3948
  .bk2-mi {
3946
3949
  display: flex; align-items: baseline; gap: 10px;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "larkway",
3
- "version": "0.3.47",
3
+ "version": "0.3.48",
4
4
  "description": "Thin bridge: Feishu thread to local Claude Code CLI",
5
5
  "license": "MIT",
6
6
  "author": "Chuck Wu (chuckwu0)",