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:
+5
-4
@@ -1,7 +1,7 @@
|
||||
import * as i0 from '@angular/core';
|
||||
import { AfterContentInit, OnInit, ViewContainerRef, EventEmitter, TemplateRef, AfterViewInit, OnChanges, ElementRef, SimpleChanges, EmbeddedViewRef } from '@angular/core';
|
||||
import { NzConfigService, NzConfigKey } from 'ng-zorro-antd/core/config';
|
||||
import { NzSafeAny, IndexableObject } from 'ng-zorro-antd/core/types';
|
||||
import { IndexableObject, NzSafeAny } from 'ng-zorro-antd/core/types';
|
||||
import * as rxjs from 'rxjs';
|
||||
import { BehaviorSubject } from 'rxjs';
|
||||
import { AnimationEvent } from '@angular/animations';
|
||||
@@ -18,21 +18,21 @@ declare class NzDropdownMenuComponent implements AfterContentInit, OnInit {
|
||||
viewContainerRef: ViewContainerRef;
|
||||
private directionality;
|
||||
private destroyRef;
|
||||
noAnimation: NzNoAnimationDirective | null;
|
||||
mouseState$: BehaviorSubject<boolean>;
|
||||
nzMenuService: MenuService;
|
||||
isChildSubMenuOpen$: BehaviorSubject<boolean>;
|
||||
descendantMenuItemClick$: rxjs.Subject<any>;
|
||||
mouseState$: BehaviorSubject<boolean>;
|
||||
animationStateChange$: EventEmitter<AnimationEvent>;
|
||||
templateRef: TemplateRef<NzSafeAny>;
|
||||
nzOverlayClassName: string;
|
||||
nzOverlayStyle: IndexableObject;
|
||||
nzArrow: boolean;
|
||||
placement: NzPlacementType | 'bottom' | 'top';
|
||||
templateRef: TemplateRef<NzSafeAny>;
|
||||
dir: Direction;
|
||||
onAnimationEvent(event: AnimationEvent): void;
|
||||
setMouseState(visible: boolean): void;
|
||||
setValue<T extends keyof NzDropdownMenuComponent>(key: T, value: this[T]): void;
|
||||
noAnimation: NzNoAnimationDirective | null;
|
||||
ngOnInit(): void;
|
||||
ngAfterContentInit(): void;
|
||||
static ɵfac: i0.ɵɵFactoryDeclaration<NzDropdownMenuComponent, never>;
|
||||
@@ -50,6 +50,7 @@ declare class NzDropDownDirective implements AfterViewInit, OnChanges {
|
||||
private injector;
|
||||
private portal?;
|
||||
private overlayRef;
|
||||
private positionStrategy;
|
||||
private inputVisible$;
|
||||
private nzTrigger$;
|
||||
private overlayClose$;
|
||||
|
||||
Reference in New Issue
Block a user