mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-07-12 22:42:13 +02:00
- Introduced PlaygroundSidebar component for improved navigation within the API Playground. - Added utility functions for generating navigation items and groups, enhancing modularity and reusability. - Updated PlaygroundLayoutShell to utilize new navigation functions, streamlining the layout structure. - Enhanced RoutedSectionShell to support optional desktop navigation, improving responsiveness and user experience.
25 lines
715 B
TypeScript
25 lines
715 B
TypeScript
export { CreateWorkspaceDialog } from "./dialogs";
|
|
export { Header } from "./header";
|
|
export { IconRail, NavIcon, WorkspaceAvatar } from "./icon-rail";
|
|
export {
|
|
getPlaygroundActiveValue,
|
|
getPlaygroundNavGroups,
|
|
getPlaygroundNavItems,
|
|
getPlaygroundSelectedLabel,
|
|
PlaygroundSidebar,
|
|
} from "./playground/PlaygroundSidebar";
|
|
export type { RoutedSectionGroup, RoutedSectionItem } from "./RoutedSectionShell";
|
|
export { RoutedSectionShell } from "./RoutedSectionShell";
|
|
export { LayoutShell } from "./shell";
|
|
export {
|
|
ChatListItem,
|
|
CreditBalanceDisplay,
|
|
MobileSidebar,
|
|
MobileSidebarTrigger,
|
|
NavSection,
|
|
Sidebar,
|
|
SidebarCollapseButton,
|
|
SidebarHeader,
|
|
SidebarSection,
|
|
SidebarUserProfile,
|
|
} from "./sidebar";
|