From d2c2b921836b9dd8b087ca5bc5b9b90dacea1a76 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Thu, 2 Apr 2026 17:55:29 +0200 Subject: [PATCH] feat(sidebar): update barrel exports for composable sidebar Export SidebarTree, SidebarTreeNode, and useStarred from the layout barrel. Remove old app-domain type exports (SidebarApp, SidebarRoute, SidebarAgent) that no longer exist in the rewritten Sidebar. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/design-system/layout/index.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/design-system/layout/index.ts b/src/design-system/layout/index.ts index edf5cd5..b8a9ad0 100644 --- a/src/design-system/layout/index.ts +++ b/src/design-system/layout/index.ts @@ -1,4 +1,6 @@ export { AppShell } from './AppShell/AppShell' export { Sidebar } from './Sidebar/Sidebar' -export type { SidebarApp, SidebarRoute, SidebarAgent } from './Sidebar/Sidebar' +export { SidebarTree } from './Sidebar/SidebarTree' +export type { SidebarTreeNode } from './Sidebar/SidebarTree' +export { useStarred } from './Sidebar/useStarred' export { TopBar } from './TopBar/TopBar'