- ng update @angular/core@21 @angular/cli@21 (corrige GHSA-jrmj-c5cx-3cw6, XSS SVG) - Migration automatique des templates vers le control flow natif (@if/@for, 138 fichiers) - Correction des 5 `track` invalides generes par la migration (trackBy a 1 argument -> track $index) + suppression des fonctions trackBy mortes - TypeScript 5.9, zone.js 0.15 ; npm audit : 0 vulnerabilite Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
23 lines
581 B
HTML
23 lines
581 B
HTML
<app-update-banner></app-update-banner>
|
|
|
|
<div class="app-container">
|
|
<app-sidebar></app-sidebar>
|
|
|
|
@if (sidebarConfig$ | async; as config) {
|
|
<app-secondary-sidebar
|
|
[title]="config.title"
|
|
[titleRoute]="config.titleRoute || null"
|
|
[items]="config.items"
|
|
[createActions]="config.createActions"
|
|
[bottomPanel]="config.bottomPanel || null">
|
|
</app-secondary-sidebar>
|
|
}
|
|
|
|
<main class="main-content">
|
|
<router-outlet></router-outlet>
|
|
</main>
|
|
</div>
|
|
|
|
<app-global-search></app-global-search>
|
|
<app-confirm-dialog-host></app-confirm-dialog-host>
|