feat(planning): grille hebdomadaire complète avec API et filtres

- Connexion API via proxy Angular (résolution CORS, base path /api)
- Import CSS ng-zorro global pour les modales et composants
- Filtres Camion/Show câblés sur l'affichage de la grille
- Camions affichés via TrucksService (linkés au show du même créneau)
- Panneau de détails : spectacles + camions du jour sélectionné
- Modale de création de spectacle stylisée avec fond et centrage
- Positionnement précis des events à la minute dans leur créneau
- Auto-scroll vers l'heure courante au chargement
- Ligne "maintenant" sur la colonne du jour actuel
- Régénération des services OpenAPI (nouveaux noms de types)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-27 20:36:03 +02:00
parent 150b97cd2e
commit 654b297e2e
3131 changed files with 149304 additions and 104334 deletions
+1 -9
View File
@@ -5,7 +5,7 @@ import { Direction } from '@angular/cdk/bidi';
import { SafeUrl } from '@angular/platform-browser';
import { ThemeType } from '@ant-design/icons-angular';
import { NzBreakpointEnum } from 'ng-zorro-antd/core/services';
import { NzVariant, NzSafeAny, NzShapeSCType, NzSizeLDSType, NzSizeDSType, NzSizeMDSType, NzTSType } from 'ng-zorro-antd/core/types';
import { NzSafeAny, NzShapeSCType, NzSizeLDSType, NzSizeDSType, NzSizeMDSType, NzTSType } from 'ng-zorro-antd/core/types';
/**
* Use of this source code is governed by an MIT-style license that can be
@@ -79,10 +79,6 @@ interface Theme {
[key: string]: string | undefined;
}
interface SelectConfig {
nzVariant?: NzVariant;
/**
* @deprecated Will be removed in v21.0.0, please use `nzVariant` instead.
*/
nzBorderless?: boolean;
nzSuffixIcon?: TemplateRef<NzSafeAny> | string | null;
nzBackdrop?: boolean;
@@ -145,7 +141,6 @@ interface CarouselConfig {
interface CascaderConfig {
nzSize?: string;
nzBackdrop?: boolean;
nzVariant?: boolean;
}
interface CollapseConfig {
nzAccordion?: boolean;
@@ -159,7 +154,6 @@ interface DatePickerConfig {
nzSeparator?: string;
nzSuffixIcon?: string | TemplateRef<NzSafeAny>;
nzBackdrop?: boolean;
nzVariant?: NzVariant;
}
interface DescriptionsConfig {
nzBordered?: boolean;
@@ -285,7 +279,6 @@ interface TimePickerConfig {
nzUse12Hours?: string;
nzSuffixIcon?: string | TemplateRef<NzSafeAny>;
nzBackdrop?: boolean;
nzVariant?: NzVariant;
}
interface TreeConfig {
nzBlockNode?: boolean;
@@ -299,7 +292,6 @@ interface TreeSelectConfig {
nzHideUnMatched?: boolean;
nzSize?: 'large' | 'small' | 'default';
nzBackdrop?: boolean;
nzVariant?: NzVariant;
}
interface TypographyConfig {
nzEllipsisRows?: number;