@harborclient/sdk 1.0.9 → 1.0.10

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.
@@ -17,8 +17,8 @@ export function PageSidebar({ items, selected, onSelect, ariaLabel }) {
17
17
  return (_jsx("nav", { className: "hc-page-sidebar flex w-[180px] shrink-0 flex-col gap-0.5 border-r border-separator bg-sidebar px-2 py-3", "aria-label": ariaLabel, children: items.map((item) => {
18
18
  const active = selected === item.value;
19
19
  const rowClass = item.icon
20
- ? `${sidebarRow(active)} w-full gap-2 border-none text-left text-[14px] app-no-drag`
21
- : `${sidebarRow(active)} w-full border-none text-left text-[14px] app-no-drag`;
20
+ ? `${sidebarRow(active)} w-full gap-2 border-none text-left text-[15px] app-no-drag`
21
+ : `${sidebarRow(active)} w-full border-none text-left text-[15px] app-no-drag`;
22
22
  return (_jsxs("button", { type: "button", className: rowClass, "aria-current": active ? 'page' : undefined, onClick: () => onSelect(item.value), children: [item.icon ? (_jsx(FaIcon, { icon: item.icon, className: `h-3.5 w-3.5 shrink-0 ${active ? 'text-text' : 'text-muted'}`, "aria-hidden": true })) : null, _jsx("span", { className: "min-w-0 truncate", children: item.label })] }, item.value));
23
23
  }) }));
24
24
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@harborclient/sdk",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "description": "TypeScript SDK for HarborClient plugin development.",
5
5
  "keywords": [
6
6
  "harborclient",