Add new components, styles, and services for user management and navigation

This commit is contained in:
liosha84
2025-06-25 13:50:14 +03:00
parent 13a8ff4494
commit 5dc79438b7
42 changed files with 1439 additions and 0 deletions
@@ -0,0 +1,10 @@
<li class="nav-item coded-menu-caption">
<label>{{ item().title }}</label>
</li>
@for (item of item().children; track item) {
@if (item.type === 'collapse') {
<app-nav-collapse [item]="item"></app-nav-collapse>
} @else if (item.type === 'item') {
<app-nav-item [item]="item"></app-nav-item>
}
}