Files
ISA-Frontend/libs/shell/navigation/src/lib/components/navigation-group/navigation-group.component.html
Lorenz Hilpert e3c60f14f7 feat(shell-navigation): implement navigation components with collapsible menu
Add modular navigation system with three reusable components:
- NavigationGroupComponent for grouped navigation sections
- NavigationItemComponent for main navigation entries with expand/collapse
- NavigationSubItemComponent for nested child routes

Include navigation types, route configuration with dynamic tabId support,
and integrate navigation into shell-layout sidebar.
2025-12-04 22:15:35 +01:00

11 lines
310 B
HTML

<div class="flex flex-col h-14 items-start self-stretch px-4">
<div
class="isa-text-caption-caps flex h-6 flex-col justify-center flex-[1_0_0] self-stretch"
>
{{ group().label }}
</div>
</div>
@for (item of group().items; track item.label) {
<shell-navigation-item [item]="item" />
}