dsh-bots 0.2.13 → 0.2.15
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/lib/client.js +6 -1
- package/package.json +1 -1
package/lib/client.js
CHANGED
|
@@ -272,7 +272,12 @@
|
|
|
272
272
|
const StateDot = NATIVE.StateDot ?? null;
|
|
273
273
|
// ---- CSS: own stable class names, values mirrored from the shell ----
|
|
274
274
|
const CSS = `
|
|
275
|
-
|
|
275
|
+
/* The native regionArea bleeds right by --dsh-sidebar-inline-padding
|
|
276
|
+
(margin-right: -12px, ui-sidebar.js) for its own scroll model; our rows
|
|
277
|
+
don't follow that bleed, so pull the nav back inside the padded column —
|
|
278
|
+
verified in the live page: removing the parent's margin-right reads
|
|
279
|
+
"normal", this counter-margin is the same geometry from our side. */
|
|
280
|
+
.dbs-nav{flex:1;min-height:0;display:flex;flex-direction:column;gap:2px;font-family:var(--dsw-font-family,inherit);margin-right:var(--dsh-sidebar-inline-padding,12px)}
|
|
276
281
|
.dbs-navGroup{display:flex;flex-direction:column;min-height:0}
|
|
277
282
|
.dbs-navGroup[data-open="true"]{flex:1 1 auto}
|
|
278
283
|
.dbs-navGroup[data-open="false"]{flex:none}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-bots",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.15",
|
|
4
4
|
"description": "Multi-bot workbench for DeepSeek Harness: bridges the sdk-bots orchestration gateway (group chats, single bots) into the dsh web shell with official-styled UI.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "lib/index.js",
|