@linxin666/dsh-client-ui-skin-center 0.3.22 → 0.3.23

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.
@@ -73,6 +73,9 @@ family / 插件区域:
73
73
  | `tag-filter` | task-board | 标签筛选条;`[data-dsh-taskboard-board] [data-dsh-part="tag-filter"]` |
74
74
  | `tag-chip` | task-board | 筛选条内的标签胶囊;`[data-dsh-part="tag-chip"]`,`data-tag-tone` 为 0-5 调色板槽 |
75
75
  | `tag-badge` | task-board | 卡片上的标签徽章;`[data-dsh-part="tag-badge"]`,`data-tag-tone` 同上 |
76
+ | `project-filter` | task-board | 项目分区下拉;`[data-dsh-part="project-filter"]`,筛选项为工作区 id,空值为「全部项目」 |
77
+ | `project-dialog` | task-board | 看板内新建项目表单;`[data-dsh-part="project-dialog"]`,含一个绝对路径输入与创建/取消按钮 |
78
+ | `ai-parse` | task-board | 新建任务弹窗内的「粘贴内容 → AI 解析」区块;`[data-dsh-part="ai-parse"]`,含文本框、模型下拉与解析按钮 |
76
79
  | `tab-bar` / `tab` | ssh | 页签条/页签;`[role="tablist"]` / `[role="tab"]` |
77
80
  | `host-table` / `host-row` | ssh | 主机表/行;`[data-dsh-ssh-view]` 内 table/tr |
78
81
  | `terminal` | ssh | xterm 终端;面板内 termContainer(.xterm 辅锚) |
package/lib/client.js CHANGED
@@ -4125,6 +4125,22 @@ window.__ModuleLoader__.load({
4125
4125
  backdrop-filter: none !important;
4126
4126
  -webkit-backdrop-filter: none !important;
4127
4127
  }
4128
+ ${scoped("[data-phase=\"active\"] [data-slot=\"conversation.input.dock\"] > [data-queue-dock]")} {
4129
+ /* The native queue dock stacks two boxes inside the input dock: a root
4130
+ wrapper that only supplies the shared dock inset, and the panel inside
4131
+ it that paints its own --dsw-specific-tip fill. Painting the wrapper as
4132
+ an accessory adds a second opaque plate one dock inset (8px) wider than
4133
+ the panel on each side, which reads as an extra sheet of paper under
4134
+ the queue (issue #1572). Reset the accessory surface so the panel stays
4135
+ the single layer; the wrapper keeps its inset, so the panel remains
4136
+ aligned with the composer card. */
4137
+ background: transparent !important;
4138
+ border: 0 !important;
4139
+ border-radius: 0 !important;
4140
+ box-shadow: none !important;
4141
+ backdrop-filter: none !important;
4142
+ -webkit-backdrop-filter: none !important;
4143
+ }
4128
4144
  ${scoped("[data-conversation-scroll]")},
4129
4145
  ${scoped("[data-dsh-part=\"scrollport\"]")} {
4130
4146
  /* The composer is the scrollport's final in-flow child. Reserving physical
@@ -5141,7 +5157,7 @@ window.__ModuleLoader__.load({
5141
5157
  /** The building package's version, when the bundle carries it. */
5142
5158
  function bakedVersion() {
5143
5159
  try {
5144
- return "0.3.22";
5160
+ return "0.3.23";
5145
5161
  } catch {
5146
5162
  return;
5147
5163
  }