dsh-bots 0.2.26 → 0.2.27
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 +3 -2
- package/package.json +1 -1
package/lib/client.js
CHANGED
|
@@ -289,7 +289,8 @@
|
|
|
289
289
|
row on hover and shrink it on leave — width/height jitter the user read
|
|
290
290
|
as flicker. Fixed 30px row + always-laid-out actions = zero geometry
|
|
291
291
|
change; the same trick the native headerActions uses (max-width/opacity). */
|
|
292
|
-
.dbs-secHead{position:relative;cursor:pointer;border-radius:8px;height:30px}
|
|
292
|
+
.dbs-secHead{position:relative;cursor:pointer;border-radius:8px;height:30px;margin-bottom:4px}
|
|
293
|
+
.dbs-secGroup+.dbs-secGroup{margin-top:10px}
|
|
293
294
|
.dbs-secHead:hover{background:var(--dsw-alias-interactive-bg-hover)}
|
|
294
295
|
.dbs-secHead .dbs-rowActions{display:inline-flex;visibility:hidden;opacity:0;pointer-events:none;transition:opacity .12s ease-out}
|
|
295
296
|
.dbs-secHead:hover .dbs-rowActions,.dbs-secHead:focus-within .dbs-rowActions,.dbs-secHead[data-menu="true"] .dbs-rowActions{visibility:visible;opacity:1;pointer-events:auto}
|
|
@@ -1175,7 +1176,7 @@
|
|
|
1175
1176
|
const toggle = () => {
|
|
1176
1177
|
patch({ sectionMenu: null, sectionsOpen: { ...(s.sectionsOpen ?? {}), [menuKind]: !isOpen } });
|
|
1177
1178
|
};
|
|
1178
|
-
return e('div', { key: label }, e('div', {
|
|
1179
|
+
return e('div', { key: label, className: 'dbs-secGroup' }, e('div', {
|
|
1179
1180
|
className: 'dbs-navBodyErr dbs-secHead', role: 'button', tabIndex: 0, 'aria-expanded': isOpen,
|
|
1180
1181
|
'data-menu': menuOpen ? 'true' : 'false',
|
|
1181
1182
|
// Native sectionHeader outdent: label at x=16 (12 sidebar
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-bots",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.27",
|
|
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",
|