dsh-composer-height
其他 活跃维护

dsh-composer-height

tuogusa/dsh-composer-height

支持将Web编辑器的默认最小文本高度从两行52px提升至三行76px,修改默认参数即可直接生效,无需额外配置,避免短文本内容被截断,适配更多文本编辑需求。

0
Stars 标星
0
Forks 分支
0
Watchers 关注
0
Open Issues
JavaScript
主要语言
MIT
开源协议
5 KB
仓库大小
1 个月前
最后推送
一键安装扩展 / 插件指令
dsh plugin --profile web add github:tuogusa/dsh-composer-height
git clone https://github.com/tuogusa/dsh-composer-height.git
git clone git@github.com:tuogusa/dsh-composer-height.git
README.md master

dsh-composer-height

DeepSeek Harness Web 输入框高度微调插件(client-only):把对话输入框文本区的最小高度从官方默认的两行(52px)提高到三行(76px)。

效果

  • 空输入时文本区默认显示三行(76px),整个输入卡片随之增高(卡片总高从约 118px 变为约 142px);
  • 输入内容超过三行后仍按官方 auto-grow 逻辑自动增高,直到官方最大高度 --dsh-composer-text-max-height;
  • 消息区的滚动避让由 DSH 自身实测 --dsh-composer-height 完成,无需任何额外处理。

原理

官方输入框的 auto-grow 结构中,[data-input-mirror](visibility:hidden 的镜像 div,内容为草稿文本 + 换行)是唯一撑起文本区高度的在流元素,textarea 高度 100% 跟随、卡片高度自动适应。因此只需注入一条规则:

[data-input-mirror] {
  min-height: 76px !important;
}

即可让文本区、卡片与消息区避让全部自适应,不修改任何 DSH 源码与内部状态。

调整高度

编辑 lib/client.js 顶部的 MIN_HEIGHT_PX 常量(当前 76 = 3 行;每行 24px),保存后重启 DSH 并 Ctrl+Shift+R 强刷。

安装

dsh plugin --profile web add github:tuogusa/dsh-composer-height

兼容 Profile:web(DSH Web GUI)。

验证

仓库自带离线验证脚本(8 项断言:host 空插件、样式注入内容与幂等性):

node verify.mjs

结构

cordis.patch.yml     bundle patch(loader 行)
lib/index.js         host 端(空插件,保持 loader 行 enabled)
lib/client.js        client 端:注入 min-height 规则
verify.mjs           离线验证脚本

License

MIT