tickera-angular-components 0.0.1-dev.43 → 0.0.1-dev.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -1871,6 +1871,7 @@ declare class TicketSelectionTotalsService {
|
|
|
1871
1871
|
|
|
1872
1872
|
declare class TicketSelectionService {
|
|
1873
1873
|
private bookingDataService;
|
|
1874
|
+
private feedbackModalService;
|
|
1874
1875
|
private selectionDetailsService;
|
|
1875
1876
|
private selectionDiscountService;
|
|
1876
1877
|
private _zoneQuantities;
|
|
@@ -2956,6 +2957,9 @@ declare class PerformanceCardListComponent {
|
|
|
2956
2957
|
protected performanceService: PerformanceService;
|
|
2957
2958
|
protected listEventService: PerformancesListEventsService;
|
|
2958
2959
|
protected toastService: ToastService;
|
|
2960
|
+
linkText: string;
|
|
2961
|
+
linkUrlFn?: (card: DailyPerformanceItem) => string;
|
|
2962
|
+
linkQueryParams?: Record<string, any>;
|
|
2959
2963
|
loadingData: WritableSignal<boolean>;
|
|
2960
2964
|
performances: WritableSignal<DailyPerformanceItem[]>;
|
|
2961
2965
|
constructor(platformId: object, performanceService: PerformanceService, listEventService: PerformancesListEventsService, toastService: ToastService);
|
|
@@ -2963,7 +2967,7 @@ declare class PerformanceCardListComponent {
|
|
|
2963
2967
|
private loadData;
|
|
2964
2968
|
get selectedDayDate(): string | null;
|
|
2965
2969
|
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceCardListComponent, never>;
|
|
2966
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceCardListComponent, "performance-card-list", never, {}, {}, never, never, true, never>;
|
|
2970
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceCardListComponent, "performance-card-list", never, { "linkText": { "alias": "linkText"; "required": false; }; "linkUrlFn": { "alias": "linkUrlFn"; "required": false; }; "linkQueryParams": { "alias": "linkQueryParams"; "required": false; }; }, {}, never, never, true, never>;
|
|
2967
2971
|
}
|
|
2968
2972
|
|
|
2969
2973
|
declare class PerformanceStepperComponent {
|
|
@@ -3042,7 +3046,10 @@ declare class PerformanceTicketMapComponent implements OnDestroy, AfterViewInit
|
|
|
3042
3046
|
protected selectionService: TicketSelectionService;
|
|
3043
3047
|
protected zoomService: TicketMapZoomService;
|
|
3044
3048
|
selectionChange: EventEmitter<PerformanceTicket[]>;
|
|
3049
|
+
needsLoginError: EventEmitter<any>;
|
|
3045
3050
|
readOnly: boolean;
|
|
3051
|
+
needsLogin: boolean;
|
|
3052
|
+
isLoggedIn: boolean;
|
|
3046
3053
|
stageComponent?: StageComponent;
|
|
3047
3054
|
protected tooltipData: i0.WritableSignal<TicketMapTooltipData | null>;
|
|
3048
3055
|
private stageReady;
|
|
@@ -3063,7 +3070,7 @@ declare class PerformanceTicketMapComponent implements OnDestroy, AfterViewInit
|
|
|
3063
3070
|
protected trackByElementId(_index: number, item: ElementRenderData): number;
|
|
3064
3071
|
protected trackByFloorId(_index: number, floor: HallFloorOption): HallFloorOption;
|
|
3065
3072
|
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceTicketMapComponent, never>;
|
|
3066
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceTicketMapComponent, "performance-ticket-map", never, { "readOnly": { "alias": "readOnly"; "required": false; }; }, { "selectionChange": "selectionChange"; }, never, never, true, never>;
|
|
3073
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceTicketMapComponent, "performance-ticket-map", never, { "readOnly": { "alias": "readOnly"; "required": false; }; "needsLogin": { "alias": "needsLogin"; "required": false; }; "isLoggedIn": { "alias": "isLoggedIn"; "required": false; }; }, { "selectionChange": "selectionChange"; "needsLoginError": "needsLoginError"; }, never, never, true, never>;
|
|
3067
3074
|
}
|
|
3068
3075
|
|
|
3069
3076
|
declare class TicketMapPriceZonesComponent {
|
|
@@ -3113,8 +3120,13 @@ declare class TicketMapTotalsComponent {
|
|
|
3113
3120
|
}
|
|
3114
3121
|
|
|
3115
3122
|
declare class TicketMapWrapperComponent {
|
|
3123
|
+
selectionChange: EventEmitter<PerformanceTicket[]>;
|
|
3124
|
+
needsLoginError: EventEmitter<any>;
|
|
3125
|
+
readOnly: boolean;
|
|
3126
|
+
needsLogin: boolean;
|
|
3127
|
+
isLoggedIn: boolean;
|
|
3116
3128
|
static ɵfac: i0.ɵɵFactoryDeclaration<TicketMapWrapperComponent, never>;
|
|
3117
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapWrapperComponent, "ticket-map-wrapper", never, {}, {}, never, never, true, never>;
|
|
3129
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TicketMapWrapperComponent, "ticket-map-wrapper", never, { "readOnly": { "alias": "readOnly"; "required": false; }; "needsLogin": { "alias": "needsLogin"; "required": false; }; "isLoggedIn": { "alias": "isLoggedIn"; "required": false; }; }, { "selectionChange": "selectionChange"; "needsLoginError": "needsLoginError"; }, never, never, true, never>;
|
|
3118
3130
|
}
|
|
3119
3131
|
|
|
3120
3132
|
declare class SeatSelectionEmptySummaryComponent {
|