@norman-else/dsh-claude 0.1.50 → 0.1.51
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 +5 -3
- package/lib/client.js.map +1 -1
- package/package.json +1 -1
package/lib/client.js
CHANGED
|
@@ -9711,8 +9711,10 @@ window.__ModuleLoader__.load({
|
|
|
9711
9711
|
}
|
|
9712
9712
|
/** The fold control floats above the dock in the Host's jump-to-latest seat,
|
|
9713
9713
|
* stepping left of that button while the Host shows it: a circle holding a
|
|
9714
|
-
* double chevron
|
|
9715
|
-
*
|
|
9714
|
+
* double chevron pointing where the bars will go -- up while folded, since
|
|
9715
|
+
* unfolding stacks more bars upward; down once open, since folding pulls
|
|
9716
|
+
* them back down toward the composer. The count and the words live in its
|
|
9717
|
+
* tooltip and accessible name. */
|
|
9716
9718
|
function LinkedFoldChip({ sessionId, hidden, expanded, onToggle, t, seat }) {
|
|
9717
9719
|
const label = expanded ? t("linkedCollapse") : `${t("linkedMore", { count: hidden })} · ${t("linkedShowAll")}`;
|
|
9718
9720
|
return /* @__PURE__ */ jsx(Tooltip, {
|
|
@@ -9734,7 +9736,7 @@ window.__ModuleLoader__.load({
|
|
|
9734
9736
|
className: linkedFoldGlyphClass,
|
|
9735
9737
|
style: linkedFoldGlyph,
|
|
9736
9738
|
"aria-hidden": "true",
|
|
9737
|
-
children: expanded ? /* @__PURE__ */ jsxs(Fragment$1, { children: [/* @__PURE__ */ jsx(
|
|
9739
|
+
children: expanded ? /* @__PURE__ */ jsxs(Fragment$1, { children: [/* @__PURE__ */ jsx(IconChevronDownOutline14, {}), /* @__PURE__ */ jsx(IconChevronDownOutline14, {})] }) : /* @__PURE__ */ jsxs(Fragment$1, { children: [/* @__PURE__ */ jsx(IconChevronUpOutline14, {}), /* @__PURE__ */ jsx(IconChevronUpOutline14, {})] })
|
|
9738
9740
|
})
|
|
9739
9741
|
})
|
|
9740
9742
|
});
|