jamdesk 1.1.169 → 1.1.170

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jamdesk",
3
- "version": "1.1.169",
3
+ "version": "1.1.170",
4
4
  "description": "CLI for Jamdesk — build, preview, and deploy documentation sites from MDX. Dev server with hot reload, 50+ components, OpenAPI support, AI search, and Mintlify migration",
5
5
  "keywords": [
6
6
  "jamdesk",
@@ -612,16 +612,19 @@ export function Sidebar({ config, layout = 'header-logo', tabsPosition: tabsPosi
612
612
  {group.icon && (
613
613
  <i className={`${getIconClass(group.icon)} text-[14px]`} aria-hidden="true" />
614
614
  )}
615
- <span className="flex-1 min-w-0 truncate">{group.name}</span>
615
+ {/* Chevron sits right after the label: the jam hover pill
616
+ (.nav-group-l1::before) stops 16px short of the button's right
617
+ edge, so a right-aligned chevron gets clipped by the pill. */}
618
+ <span className="truncate">{group.name}</span>
619
+ <i
620
+ className={`fa-solid fa-chevron-right text-[8px] text-[var(--color-text-muted)] transition-transform ${isExpanded ? 'rotate-90' : ''}`}
621
+ aria-hidden="true"
622
+ />
616
623
  {group.tag && (
617
624
  <span className="px-1.5 py-0.5 text-[10px] font-semibold rounded bg-[var(--color-accent)]/15 text-[var(--color-accent)]">
618
625
  {group.tag}
619
626
  </span>
620
627
  )}
621
- <i
622
- className={`fa-solid fa-chevron-right text-[8px] text-[var(--color-text-muted)] transition-transform ${isExpanded ? 'rotate-90' : ''}`}
623
- aria-hidden="true"
624
- />
625
628
  </button>
626
629
  )}
627
630
  {group.name ? (