mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-31 09:37:15 +01:00
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.
11 lines
310 B
HTML
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" />
|
|
}
|