tickera-angular-components 0.0.1-dev.0 → 0.0.1-dev.1
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
|
@@ -6,6 +6,7 @@ import * as rxjs from 'rxjs';
|
|
|
6
6
|
import { Observable, Subject } from 'rxjs';
|
|
7
7
|
import { TranslocoService } from '@jsverse/transloco';
|
|
8
8
|
import { Toolbar, Editor } from 'ngx-editor';
|
|
9
|
+
import { Router } from '@angular/router';
|
|
9
10
|
|
|
10
11
|
interface TickeraComponentsConfig {
|
|
11
12
|
apiUrl: string;
|
|
@@ -2246,5 +2247,92 @@ declare class PriceZoneSelectComponent implements OnInit, OnDestroy, ControlValu
|
|
|
2246
2247
|
static ɵcmp: i0.ɵɵComponentDeclaration<PriceZoneSelectComponent, "price-zone-select", never, { "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "name": { "alias": "name"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "showError": { "alias": "showError"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "control": { "alias": "control"; "required": false; }; }, { "priceZoneChange": "priceZoneChange"; }, never, never, true, never>;
|
|
2247
2248
|
}
|
|
2248
2249
|
|
|
2249
|
-
|
|
2250
|
+
declare class DaySelectorGridComponent {
|
|
2251
|
+
private platformId;
|
|
2252
|
+
protected performanceService: PerformanceService;
|
|
2253
|
+
protected listEventService: PerformancesListEventsService;
|
|
2254
|
+
protected toastService: ToastService;
|
|
2255
|
+
displayMode: 'grid' | 'carousel';
|
|
2256
|
+
loadingData: WritableSignal<boolean>;
|
|
2257
|
+
days: WritableSignal<PerformanceAvailableDay[]>;
|
|
2258
|
+
carouselTrack?: ElementRef<HTMLElement>;
|
|
2259
|
+
constructor(platformId: object, performanceService: PerformanceService, listEventService: PerformancesListEventsService, toastService: ToastService);
|
|
2260
|
+
private loadData;
|
|
2261
|
+
isDayActive(day: PerformanceAvailableDay): boolean;
|
|
2262
|
+
onToggle(day: PerformanceAvailableDay): void;
|
|
2263
|
+
scrollCarousel(direction: 1 | -1): void;
|
|
2264
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DaySelectorGridComponent, never>;
|
|
2265
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DaySelectorGridComponent, "day-selector-grid", never, { "displayMode": { "alias": "displayMode"; "required": false; }; }, {}, never, never, true, never>;
|
|
2266
|
+
}
|
|
2267
|
+
|
|
2268
|
+
declare class PerformanceCardComponent {
|
|
2269
|
+
protected listEventService: PerformancesListEventsService;
|
|
2270
|
+
card: DailyPerformanceItem;
|
|
2271
|
+
constructor(listEventService: PerformancesListEventsService);
|
|
2272
|
+
onSelect(): void;
|
|
2273
|
+
isSelected(): boolean;
|
|
2274
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceCardComponent, never>;
|
|
2275
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceCardComponent, "performance-card", never, { "card": { "alias": "card"; "required": true; }; }, {}, never, never, true, never>;
|
|
2276
|
+
}
|
|
2277
|
+
|
|
2278
|
+
declare class PerformanceCardListComponent {
|
|
2279
|
+
private platformId;
|
|
2280
|
+
protected performanceService: PerformanceService;
|
|
2281
|
+
protected listEventService: PerformancesListEventsService;
|
|
2282
|
+
protected toastService: ToastService;
|
|
2283
|
+
loadingData: WritableSignal<boolean>;
|
|
2284
|
+
performances: WritableSignal<DailyPerformanceItem[]>;
|
|
2285
|
+
constructor(platformId: object, performanceService: PerformanceService, listEventService: PerformancesListEventsService, toastService: ToastService);
|
|
2286
|
+
ngOnInit(): void;
|
|
2287
|
+
private loadData;
|
|
2288
|
+
get selectedDayDate(): string | null;
|
|
2289
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceCardListComponent, never>;
|
|
2290
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceCardListComponent, "performance-card-list", never, {}, {}, never, never, true, never>;
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
declare class PerformanceStepperComponent {
|
|
2294
|
+
stepLabel: string;
|
|
2295
|
+
title: string;
|
|
2296
|
+
highlight: string;
|
|
2297
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PerformanceStepperComponent, never>;
|
|
2298
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PerformanceStepperComponent, "performance-stepper", never, { "stepLabel": { "alias": "stepLabel"; "required": true; }; "title": { "alias": "title"; "required": true; }; "highlight": { "alias": "highlight"; "required": true; }; }, {}, never, never, true, never>;
|
|
2299
|
+
}
|
|
2300
|
+
|
|
2301
|
+
declare class ShowsFilterComponent {
|
|
2302
|
+
private platformId;
|
|
2303
|
+
protected showService: ShowService;
|
|
2304
|
+
protected listEventService: PerformancesListEventsService;
|
|
2305
|
+
protected toastService: ToastService;
|
|
2306
|
+
private router;
|
|
2307
|
+
loadingData: WritableSignal<boolean>;
|
|
2308
|
+
shows: WritableSignal<Show[]>;
|
|
2309
|
+
constructor(platformId: object, showService: ShowService, listEventService: PerformancesListEventsService, toastService: ToastService, router: Router);
|
|
2310
|
+
ngOnInit(): void;
|
|
2311
|
+
private loadData;
|
|
2312
|
+
isActive(showId: number): boolean;
|
|
2313
|
+
onFilter(show: Show): void;
|
|
2314
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ShowsFilterComponent, never>;
|
|
2315
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ShowsFilterComponent, "shows-filter", never, {}, {}, never, never, true, never>;
|
|
2316
|
+
}
|
|
2317
|
+
|
|
2318
|
+
interface PriceZoneItem {
|
|
2319
|
+
colorClass: string;
|
|
2320
|
+
name: string;
|
|
2321
|
+
seatsAvailable: number;
|
|
2322
|
+
price: string;
|
|
2323
|
+
}
|
|
2324
|
+
|
|
2325
|
+
declare class ZonePriceItemComponent {
|
|
2326
|
+
zone: PriceZoneItem;
|
|
2327
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ZonePriceItemComponent, never>;
|
|
2328
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ZonePriceItemComponent, "zone-price-item", never, { "zone": { "alias": "zone"; "required": true; }; }, {}, never, never, true, never>;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
declare class ZonePriceListComponent {
|
|
2332
|
+
zones: PriceZoneItem[];
|
|
2333
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ZonePriceListComponent, never>;
|
|
2334
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ZonePriceListComponent, "zone-price-list", never, { "zones": { "alias": "zones"; "required": true; }; }, {}, never, never, true, never>;
|
|
2335
|
+
}
|
|
2336
|
+
|
|
2337
|
+
export { ADMIN_API_ROUTES, ALERT_BASE_CLASSES, ALERT_COLOR_CLASSES, ALERT_ICONS, ALERT_SIZE_CLASSES, AdminSelectComponent, AdminService, ApiService, AppAlertComponent, AppButtonComponent, AppLinkButtonComponent, AppModalComponent, AsyncSelectComponent, AuditInformationComponent, BASE_BUTTON_CLASSES, BASE_INPUT_CLASSES, BUTTON_SIZES_CLASSES, BUTTON_VARIANT_CLASSES, CITY_API_ENDPOINTS, COUNTRY_API_ENDPOINTS, CUSTOMERS_API_ROUTES, ChangePasswordFormComponent, ChangePasswordFormService, CitiesService, CitySelectComponent, ColorPickerComponent, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CustomerSelectComponent, CustomerService, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, FORM_ERROR_MESSAGES, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, LanguageSwitcherComponent, LoadingModalService, LoadingmModalComponent, MinTodayValidator, MustMatchValidator, OrderItemType, OrderStatus, PERFORMANCES_API_ROUTES, PRICE_ZONES_API_ROUTES, PRODUCTS_API_ROUTES, PerformanceCardComponent, PerformanceCardListComponent, PerformanceMultiSelectComponent, PerformanceSelectComponent, PerformanceService, PerformanceStatus, PerformanceStepperComponent, PerformanceTicketStatus, PerformancesListEventsService, PriceZoneEventService, PriceZoneFormModalService, PriceZoneSelectComponent, PriceZoneService, ProductMultiSelectComponent, ProductSelectComponent, ProductService, RoomMapElementOrientation, RoomMapElementType, SHOWS_API_ROUTES, STATE_API_ENDPOINTS, ShowMultiSelectComponent, ShowSelectComponent, ShowService, ShowsFilterComponent, StateSelectComponent, StatesService, TICKERA_COMPONENTS_CONFIG, ToastService, ToggleSwitchComponent, VENUES_API_ROUTES, ZonePriceItemComponent, ZonePriceListComponent, authInterceptor, formatCitiesResponseToSelect, getCustomerFullname, parseJsonToFormDataAdvanced, provideTickeraComponents, transformImageToFile };
|
|
2250
2338
|
export type { Admin, AdminsResponse, AsyncSelectConfig, Auditable, CitiesResponse, City, CityResponse, CorporateBond, CorporateBondCode, CorporateBondResponse, CountriesResponse, Country, CountryResponse, Coupon, CouponResponse, Customer, CustomerResponse, CustomersResponse, DailyPerformanceHall, DailyPerformanceItem, DailyPerformancePriceZone, DailyPerformanceShow, DailyPerformanceVenue, DailyPerformancesResponse, DeleteConfirmationOpen, DragDropEvent, DynamicTableHeader, ElementPropertiesTab, FetchCitiesParams, FetchDailyPerformancesParams, FetchShowsParams, FileUploadConfig, FindAllPriceZoneParams, Hall, HallFloor, NumerationConfig, Order, OrderItem, OrderResponse, OrdersResponse, Performance, PerformanceAvailableDay, PerformanceBookingDataResponse, PerformanceResponse, PerformanceTicket, PerformancesAvailableDaysResponse, PerformancesResponseInterface, PriceZone, PriceZoneResponse, PriceZoneUpdateResponse, PriceZonesResponseInterface, Product, ProductResponse, ProductsResponseInterface, RoomMap, RoomMapBaseElement, RoomMapCanvasConfiguration, RoomMapCanvasElement, RoomMapChairPosition, RoomMapElementTemplate, RoomMapExitElement, RoomMapGridPosition, RoomMapPosition, RoomMapProductionAreaElement, RoomMapSeatDisplayState, RoomMapSeatElement, RoomMapSeatState, RoomMapSize, RoomMapStageElement, RoomMapTableElement, RoomMapUnavailableElement, RoomMapZoneElement, SelectOption, Show, ShowImage, ShowResponse, ShowType, ShowsResponseInterface, State, StateResponse, StatesResponse, TickeraComponentsConfig, UploadedFile, ValidateCorporateBondResponse, ValidateCouponResponse, Venue, VenueImage };
|