tickera-angular-components 0.0.1-dev.186 → 0.0.1-dev.187

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.
@@ -4923,6 +4923,76 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
4923
4923
  args: [{ providedIn: 'root' }]
4924
4924
  }], ctorParameters: () => [{ type: ApiService }] });
4925
4925
 
4926
+ /**
4927
+ * Servicio genérico de "cambios pendientes" para tablas con edición rápida
4928
+ * + guardado masivo (QTN-49, primer consumidor: Bonos de Regalo en
4929
+ * tickera-backoffice-frontend).
4930
+ *
4931
+ * IMPORTANTE: proveerlo a nivel de componente/página
4932
+ * (`providers: [PendingChangesService]` en el `@Component` que lo usa),
4933
+ * NUNCA en `providedIn: 'root'` — si no, dos tablas con edición rápida
4934
+ * abiertas al mismo tiempo (dos pestañas, o dos listados en la misma
4935
+ * sesión) compartirían el mismo estado de cambios pendientes. Mismo
4936
+ * criterio que ya sigue este repo con GiftBondService, provisto a nivel de
4937
+ * GiftBondDetailsComponent en vez de en 'root'.
4938
+ */
4939
+ class PendingChangesService {
4940
+ changesSignal = signal(new Map(), ...(ngDevMode ? [{ debugName: "changesSignal" }] : []));
4941
+ originalValues = new Map();
4942
+ changes = this.changesSignal.asReadonly();
4943
+ changeCount = computed(() => this.changesSignal().size, ...(ngDevMode ? [{ debugName: "changeCount" }] : []));
4944
+ hasChanges = computed(() => this.changesSignal().size > 0, ...(ngDevMode ? [{ debugName: "hasChanges" }] : []));
4945
+ /**
4946
+ * Registra (o actualiza) el cambio pendiente de `id`. `originalValue` es
4947
+ * el valor que tenía la fila antes de cualquier edición en esta sesión de
4948
+ * la tabla — solo se guarda la primera vez que se llama para ese id, así
4949
+ * que no importa pasarlo en cada llamada subsiguiente.
4950
+ *
4951
+ * Si `newValue` termina siendo igual al valor original, el id se
4952
+ * elimina automáticamente de los cambios pendientes (evita que quede
4953
+ * marcado como "modificado" un valor que el usuario cambió y luego
4954
+ * revirtió a mano).
4955
+ */
4956
+ setChange(id, originalValue, newValue) {
4957
+ if (!this.originalValues.has(id)) {
4958
+ this.originalValues.set(id, originalValue);
4959
+ }
4960
+ const next = new Map(this.changesSignal());
4961
+ if (newValue === this.originalValues.get(id)) {
4962
+ next.delete(id);
4963
+ this.originalValues.delete(id);
4964
+ }
4965
+ else {
4966
+ next.set(id, newValue);
4967
+ }
4968
+ this.changesSignal.set(next);
4969
+ }
4970
+ getPendingValue(id) {
4971
+ return this.changesSignal().get(id);
4972
+ }
4973
+ /** Descarta el cambio pendiente de una fila puntual (botón "Deshacer" por fila, si aplica). */
4974
+ discard(id) {
4975
+ const next = new Map(this.changesSignal());
4976
+ next.delete(id);
4977
+ this.changesSignal.set(next);
4978
+ this.originalValues.delete(id);
4979
+ }
4980
+ /** Descarta todos los cambios pendientes sin guardar nada (botón "Deshacer" de la barra flotante). */
4981
+ discardAll() {
4982
+ this.changesSignal.set(new Map());
4983
+ this.originalValues.clear();
4984
+ }
4985
+ /** Llamar después de que el guardado en lote fue exitoso, para limpiar el estado. */
4986
+ clearAfterSave() {
4987
+ this.discardAll();
4988
+ }
4989
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: PendingChangesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
4990
+ static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: PendingChangesService });
4991
+ }
4992
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: PendingChangesService, decorators: [{
4993
+ type: Injectable
4994
+ }] });
4995
+
4926
4996
  const authInterceptor = (req, next) => {
4927
4997
  const platformId = inject(PLATFORM_ID);
4928
4998
  const config = inject(TICKERA_COMPONENTS_CONFIG);
@@ -5605,6 +5675,83 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
5605
5675
  type: Input
5606
5676
  }] } });
5607
5677
 
5678
+ /**
5679
+ * Select genérico para editar un campo (típicamente "estado") directamente
5680
+ * en una celda de tabla, sin guardar de inmediato (QTN-49).
5681
+ *
5682
+ * Este componente es deliberadamente "tonto": no sabe a qué recurso
5683
+ * pertenece la fila ni cómo guardarla — solo muestra `options`, refleja
5684
+ * `value`, y emite `valueChange` cuando el usuario elige otra opción.
5685
+ * El componente que lo envuelve (p. ej. gift-bond-table-status en
5686
+ * tickera-backoffice-frontend) es quien conoce el id de la fila y decide
5687
+ * si guarda de inmediato o acumula el cambio en un
5688
+ * PendingChangesService + bulk-save-bar para guardado masivo.
5689
+ */
5690
+ class QuickStatusEditComponent {
5691
+ options = [];
5692
+ value;
5693
+ /** Resalta visualmente la celda como "modificada, sin guardar". */
5694
+ dirty = false;
5695
+ disabled = false;
5696
+ valueChange = new EventEmitter();
5697
+ onChange(newValue) {
5698
+ this.value = newValue;
5699
+ this.valueChange.emit(newValue);
5700
+ }
5701
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: QuickStatusEditComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
5702
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: QuickStatusEditComponent, isStandalone: true, selector: "quick-status-edit", inputs: { options: "options", value: "value", dirty: "dirty", disabled: "disabled" }, outputs: { valueChange: "valueChange" }, ngImport: i0, template: "<select\n class=\"quick-status-edit-select\"\n [class.quick-status-edit-select--dirty]=\"dirty\"\n [ngModel]=\"value\"\n [disabled]=\"disabled\"\n (ngModelChange)=\"onChange($event)\"\n>\n @for (option of options; track option.value) {\n <option [value]=\"option.value\" [disabled]=\"option.disabled\">{{ option.label }}</option>\n }\n</select>\n", styles: [".quick-status-edit-select{border:1px solid #d1d5db;border-radius:.375rem;padding:.25rem .5rem;font-size:.75rem;background-color:#fff;cursor:pointer}.quick-status-edit-select--dirty{border-color:#f59e0b;background-color:#fffbeb}.quick-status-edit-select:disabled{cursor:not-allowed;opacity:.6}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$2.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$2.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i1$2.SelectControlValueAccessor, selector: "select:not([multiple])[formControlName],select:not([multiple])[formControl],select:not([multiple])[ngModel]", inputs: ["compareWith"] }, { kind: "directive", type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$2.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }] });
5703
+ }
5704
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: QuickStatusEditComponent, decorators: [{
5705
+ type: Component,
5706
+ args: [{ selector: 'quick-status-edit', standalone: true, imports: [CommonModule, FormsModule], template: "<select\n class=\"quick-status-edit-select\"\n [class.quick-status-edit-select--dirty]=\"dirty\"\n [ngModel]=\"value\"\n [disabled]=\"disabled\"\n (ngModelChange)=\"onChange($event)\"\n>\n @for (option of options; track option.value) {\n <option [value]=\"option.value\" [disabled]=\"option.disabled\">{{ option.label }}</option>\n }\n</select>\n", styles: [".quick-status-edit-select{border:1px solid #d1d5db;border-radius:.375rem;padding:.25rem .5rem;font-size:.75rem;background-color:#fff;cursor:pointer}.quick-status-edit-select--dirty{border-color:#f59e0b;background-color:#fffbeb}.quick-status-edit-select:disabled{cursor:not-allowed;opacity:.6}\n"] }]
5707
+ }], propDecorators: { options: [{
5708
+ type: Input,
5709
+ args: [{ required: true }]
5710
+ }], value: [{
5711
+ type: Input
5712
+ }], dirty: [{
5713
+ type: Input
5714
+ }], disabled: [{
5715
+ type: Input
5716
+ }], valueChange: [{
5717
+ type: Output
5718
+ }] } });
5719
+
5720
+ /**
5721
+ * Barra flotante "Guardar cambios" para guardado masivo (QTN-49).
5722
+ *
5723
+ * No conoce el recurso concreto ni cómo persistir los cambios — el
5724
+ * componente que la usa le pasa `[count]` (típicamente
5725
+ * `pendingChangesService.changeCount()`) y escucha `(save)`/`(discard)`
5726
+ * para llamar al endpoint bulk correspondiente.
5727
+ */
5728
+ class BulkSaveBarComponent {
5729
+ count = 0;
5730
+ loading = false;
5731
+ saveLabel = 'Guardar cambios';
5732
+ discardLabel = 'Deshacer';
5733
+ save = new EventEmitter();
5734
+ discard = new EventEmitter();
5735
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: BulkSaveBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
5736
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "20.3.25", type: BulkSaveBarComponent, isStandalone: true, selector: "bulk-save-bar", inputs: { count: "count", loading: "loading", saveLabel: "saveLabel", discardLabel: "discardLabel" }, outputs: { save: "save", discard: "discard" }, ngImport: i0, template: "@if (count > 0) {\n <div class=\"bulk-save-bar\">\n <span class=\"bulk-save-bar__badge\">{{ count }}</span>\n <span class=\"bulk-save-bar__label\">\n {{ count === 1 ? '1 cambio sin guardar' : count + ' cambios sin guardar' }}\n </span>\n <button\n type=\"button\"\n class=\"bulk-save-bar__discard\"\n [disabled]=\"loading\"\n (click)=\"discard.emit()\"\n >\n {{ discardLabel }}\n </button>\n <button\n type=\"button\"\n class=\"bulk-save-bar__save\"\n [disabled]=\"loading\"\n (click)=\"save.emit()\"\n >\n {{ loading ? 'Guardando...' : saveLabel }}\n </button>\n </div>\n}\n", styles: [".bulk-save-bar{position:fixed;bottom:1.5rem;left:50%;transform:translate(-50%);display:flex;align-items:center;gap:.75rem;background-color:#111827;color:#fff;border-radius:9999px;padding:.5rem .75rem .5rem 1rem;box-shadow:0 10px 25px #00000040;z-index:40}.bulk-save-bar__badge{background-color:#f59e0b;color:#111827;font-weight:700;font-size:.75rem;border-radius:9999px;min-width:1.25rem;height:1.25rem;display:inline-flex;align-items:center;justify-content:center;padding:0 .375rem}.bulk-save-bar__label{font-size:.8125rem;white-space:nowrap}.bulk-save-bar__discard,.bulk-save-bar__save{border:none;border-radius:9999px;padding:.375rem .875rem;font-size:.75rem;font-weight:600;cursor:pointer}.bulk-save-bar__discard:disabled,.bulk-save-bar__save:disabled{cursor:not-allowed;opacity:.6}.bulk-save-bar__discard{background-color:transparent;color:#d1d5db}.bulk-save-bar__discard:hover:not(:disabled){color:#fff}.bulk-save-bar__save{background-color:#fff;color:#111827}.bulk-save-bar__save:hover:not(:disabled){background-color:#f3f4f6}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }] });
5737
+ }
5738
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: BulkSaveBarComponent, decorators: [{
5739
+ type: Component,
5740
+ args: [{ selector: 'bulk-save-bar', standalone: true, imports: [CommonModule], template: "@if (count > 0) {\n <div class=\"bulk-save-bar\">\n <span class=\"bulk-save-bar__badge\">{{ count }}</span>\n <span class=\"bulk-save-bar__label\">\n {{ count === 1 ? '1 cambio sin guardar' : count + ' cambios sin guardar' }}\n </span>\n <button\n type=\"button\"\n class=\"bulk-save-bar__discard\"\n [disabled]=\"loading\"\n (click)=\"discard.emit()\"\n >\n {{ discardLabel }}\n </button>\n <button\n type=\"button\"\n class=\"bulk-save-bar__save\"\n [disabled]=\"loading\"\n (click)=\"save.emit()\"\n >\n {{ loading ? 'Guardando...' : saveLabel }}\n </button>\n </div>\n}\n", styles: [".bulk-save-bar{position:fixed;bottom:1.5rem;left:50%;transform:translate(-50%);display:flex;align-items:center;gap:.75rem;background-color:#111827;color:#fff;border-radius:9999px;padding:.5rem .75rem .5rem 1rem;box-shadow:0 10px 25px #00000040;z-index:40}.bulk-save-bar__badge{background-color:#f59e0b;color:#111827;font-weight:700;font-size:.75rem;border-radius:9999px;min-width:1.25rem;height:1.25rem;display:inline-flex;align-items:center;justify-content:center;padding:0 .375rem}.bulk-save-bar__label{font-size:.8125rem;white-space:nowrap}.bulk-save-bar__discard,.bulk-save-bar__save{border:none;border-radius:9999px;padding:.375rem .875rem;font-size:.75rem;font-weight:600;cursor:pointer}.bulk-save-bar__discard:disabled,.bulk-save-bar__save:disabled{cursor:not-allowed;opacity:.6}.bulk-save-bar__discard{background-color:transparent;color:#d1d5db}.bulk-save-bar__discard:hover:not(:disabled){color:#fff}.bulk-save-bar__save{background-color:#fff;color:#111827}.bulk-save-bar__save:hover:not(:disabled){background-color:#f3f4f6}\n"] }]
5741
+ }], propDecorators: { count: [{
5742
+ type: Input
5743
+ }], loading: [{
5744
+ type: Input
5745
+ }], saveLabel: [{
5746
+ type: Input
5747
+ }], discardLabel: [{
5748
+ type: Input
5749
+ }], save: [{
5750
+ type: Output
5751
+ }], discard: [{
5752
+ type: Output
5753
+ }] } });
5754
+
5608
5755
  class ShowTypeBadgeComponent {
5609
5756
  show;
5610
5757
  size = 'xs';
@@ -10955,5 +11102,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.25", ngImpo
10955
11102
  * Generated bundle index. Do not edit.
10956
11103
  */
10957
11104
 
10958
- export { ADMIN_API_ROUTES, ADMISSION_API_ROUTES, ALERT_ICONS, AdminSelectComponent, AdminService, AdmissionQueueService, ApiService, AppAlertComponent, AppBadgeComponent, AppBreadcumbComponent, AppButtonComponent, AppLinkButtonComponent, AppModalComponent, AsyncSelectComponent, AuditInformationComponent, BASE_BUTTON_CLASSES, BASE_INPUT_CLASSES, BUTTON_SIZES_CLASSES, BUTTON_VARIANT_CLASSES, BaseModalService, BrowserZoomLockService, CITY_API_ENDPOINTS, COUNTRY_API_ENDPOINTS, CUSTOMERS_API_ROUTES, ChangePasswordFormComponent, ChangePasswordFormService, CitiesService, CitySelectComponent, ColorPickerComponent, ConfirmationOrderModalComponent, ConfirmationOrderModalService, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CouponStatus, CreatorType, CustomerSelectComponent, CustomerService, DEFAULT_STAGE_CONFIG, DOCUMENT_TYPES_OPTIONS, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, FORM_ERROR_MESSAGES, FeedbackModalComponent, FeedbackModalService, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondPurchaseStatus, GiftBondStatus, IdentityDocumentInputComponent, KONVA_SHAPE_MAPPINGS, LanguageSwitcherComponent, MembershipStatus, MinTodayValidator, MustMatchValidator, NumberInputComponent, ORDER_DISCOUNT_COLORS, ORDER_ITEM_TYPES_COLORS, ORDER_STATUS_COLORS, OrderBillingInfoComponent, OrderDiscountAppliedComponent, OrderInformationComponent, OrderItemType, OrderItemTypeBadgeComponent, OrderItemsComponent, OrderStatus, OrderStatusBadgeComponent, OrderTransactionDetailsModalComponent, OrderTransactionDetailsModalService, OrderTransactionsComponent, PAYMENT_METHODS_OPTIONS, PERFORMANCES_API_ROUTES, PERFORMANCE_STATUS_COLORS, PERFORMANCE_TICKET_STATUS_COLORS, PHONE_COUNTRIES, PRICE_ZONES_API_ROUTES, PRODUCTS_API_ROUTES, PRODUCT_CATEGORIES_API_ROUTES, PRODUCT_TAGS_API_ROUTES, PRODUCT_TYPES_API_ROUTES, PaymentMethod, PerformanceBookingDataService, PerformanceCardComponent, PerformanceCardListComponent, PerformanceMultiSelectComponent, PerformanceSelectComponent, PerformanceService, PerformanceStatus, PerformanceStatusBadgeComponent, PerformanceStepperComponent, PerformanceTicketMapComponent, PerformanceTicketStatus, PerformanceTicketStatusBadgeComponent, PerformancesListEventsService, PhoneInputComponent, PriceZoneEventService, PriceZoneFormModalService, PriceZoneSelectComponent, PriceZoneService, ProductCategoryService, ProductMultiSelectComponent, ProductSelectComponent, ProductService, ProductTagService, ProductTypeService, PurchaseLimitService, RoomMapElementOrientation, RoomMapElementType, SHOWS_API_ROUTES, SHOW_TYPE_COLORS, STATE_API_ENDPOINTS, SeatAvailabilitySseService, SeatSelectionEmptySummaryComponent, SeatSelectionSummaryComponent, SeatSelectionSummaryItemComponent, SelectedDiscountCardType, ShowCardComponent, ShowCardSkeletonComponent, ShowMultiSelectComponent, ShowSelectComponent, ShowService, ShowType, ShowTypeBadgeComponent, ShowsFilterComponent, StateSelectComponent, StatesService, TICKERA_COMPONENTS_CONFIG, TICKET_ELEMENT_TYPES, TICKET_MAP_GRID_SIZE, TICKET_MAP_LAST_TICKETS_LIMIT, TICKET_MAP_TITLE_HEIGHT, TICKET_STATUS_COLORS, TICKET_STATUS_FILLS, TICKET_STATUS_LABELS, TIcketMapProductSelectionComponent, TRANSACTION_STATUS_COLORS, TextExpandableComponent, TickeraTranslocoLoader, TicketMapFloorSelectorComponent, TicketMapPriceZonesComponent, TicketMapProductSelectionItemComponent, TicketMapTotalsComponent, TicketMapWidgetComponent, TicketMapWidgetHeaderComponent, TicketMapWrapperComponent, TicketMapZoomControlsComponent, TicketMapZoomService, TicketQrComponent, TicketQrModalComponent, TicketQrModalService, TicketQrService, TicketSelectionDetailsService, TicketSelectionDiscountService, TicketSelectionService, TicketSelectionTotalsService, ToastService, ToggleSwitchComponent, TransactionStatus, VENUES_API_ROUTES, VIP_CARDS_API_ROUTES, VipBalanceCardComponent, VipCardService, VipCardStatus, VipCardStatusBadgeComponent, VipRechargeModalComponent, VipTransactionType, VipTransactionsTableComponent, ZonePriceItemComponent, ZonePriceListComponent, authInterceptor, drawChairIcon$1 as drawChairIcon, drawHappyFace, drawRoundedRect, drawWheelchairIcon, emailValidator, findElementAtPosition, findTicketAtPosition, formatCitiesResponseToSelect, generateExitScene, generateHallwayScene, generateProductionAreaScene, generateSeatBlockScene, generateSeatBlockTicketScene, generateStageScene, generateStairScene, generateTableScene, generateTableTicketScene, generateUnavailableSpaceScene, generateZoneScene, getBrowserLanguage, getCustomerFullname, getItemTypeIcon, getOrderDiscount, getStoredLanguage, numberToLetter$1 as numberToLetter, parseJsonToFormDataAdvanced, phoneCountryFlag, processElementsToRenderData, provideTickeraComponents, resolveLanguage, setStoredLanguage, ticketCanOpenQr, tintColor, transformImageToFile, transformUrlParams };
11105
+ export { ADMIN_API_ROUTES, ADMISSION_API_ROUTES, ALERT_ICONS, AdminSelectComponent, AdminService, AdmissionQueueService, ApiService, AppAlertComponent, AppBadgeComponent, AppBreadcumbComponent, AppButtonComponent, AppLinkButtonComponent, AppModalComponent, AsyncSelectComponent, AuditInformationComponent, BASE_BUTTON_CLASSES, BASE_INPUT_CLASSES, BUTTON_SIZES_CLASSES, BUTTON_VARIANT_CLASSES, BaseModalService, BrowserZoomLockService, BulkSaveBarComponent, CITY_API_ENDPOINTS, COUNTRY_API_ENDPOINTS, CUSTOMERS_API_ROUTES, ChangePasswordFormComponent, ChangePasswordFormService, CitiesService, CitySelectComponent, ColorPickerComponent, ConfirmationOrderModalComponent, ConfirmationOrderModalService, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CouponStatus, CreatorType, CustomerSelectComponent, CustomerService, DEFAULT_STAGE_CONFIG, DOCUMENT_TYPES_OPTIONS, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, FORM_ERROR_MESSAGES, FeedbackModalComponent, FeedbackModalService, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondPurchaseStatus, GiftBondStatus, IdentityDocumentInputComponent, KONVA_SHAPE_MAPPINGS, LanguageSwitcherComponent, MembershipStatus, MinTodayValidator, MustMatchValidator, NumberInputComponent, ORDER_DISCOUNT_COLORS, ORDER_ITEM_TYPES_COLORS, ORDER_STATUS_COLORS, OrderBillingInfoComponent, OrderDiscountAppliedComponent, OrderInformationComponent, OrderItemType, OrderItemTypeBadgeComponent, OrderItemsComponent, OrderStatus, OrderStatusBadgeComponent, OrderTransactionDetailsModalComponent, OrderTransactionDetailsModalService, OrderTransactionsComponent, PAYMENT_METHODS_OPTIONS, PERFORMANCES_API_ROUTES, PERFORMANCE_STATUS_COLORS, PERFORMANCE_TICKET_STATUS_COLORS, PHONE_COUNTRIES, PRICE_ZONES_API_ROUTES, PRODUCTS_API_ROUTES, PRODUCT_CATEGORIES_API_ROUTES, PRODUCT_TAGS_API_ROUTES, PRODUCT_TYPES_API_ROUTES, PaymentMethod, PendingChangesService, PerformanceBookingDataService, PerformanceCardComponent, PerformanceCardListComponent, PerformanceMultiSelectComponent, PerformanceSelectComponent, PerformanceService, PerformanceStatus, PerformanceStatusBadgeComponent, PerformanceStepperComponent, PerformanceTicketMapComponent, PerformanceTicketStatus, PerformanceTicketStatusBadgeComponent, PerformancesListEventsService, PhoneInputComponent, PriceZoneEventService, PriceZoneFormModalService, PriceZoneSelectComponent, PriceZoneService, ProductCategoryService, ProductMultiSelectComponent, ProductSelectComponent, ProductService, ProductTagService, ProductTypeService, PurchaseLimitService, QuickStatusEditComponent, RoomMapElementOrientation, RoomMapElementType, SHOWS_API_ROUTES, SHOW_TYPE_COLORS, STATE_API_ENDPOINTS, SeatAvailabilitySseService, SeatSelectionEmptySummaryComponent, SeatSelectionSummaryComponent, SeatSelectionSummaryItemComponent, SelectedDiscountCardType, ShowCardComponent, ShowCardSkeletonComponent, ShowMultiSelectComponent, ShowSelectComponent, ShowService, ShowType, ShowTypeBadgeComponent, ShowsFilterComponent, StateSelectComponent, StatesService, TICKERA_COMPONENTS_CONFIG, TICKET_ELEMENT_TYPES, TICKET_MAP_GRID_SIZE, TICKET_MAP_LAST_TICKETS_LIMIT, TICKET_MAP_TITLE_HEIGHT, TICKET_STATUS_COLORS, TICKET_STATUS_FILLS, TICKET_STATUS_LABELS, TIcketMapProductSelectionComponent, TRANSACTION_STATUS_COLORS, TextExpandableComponent, TickeraTranslocoLoader, TicketMapFloorSelectorComponent, TicketMapPriceZonesComponent, TicketMapProductSelectionItemComponent, TicketMapTotalsComponent, TicketMapWidgetComponent, TicketMapWidgetHeaderComponent, TicketMapWrapperComponent, TicketMapZoomControlsComponent, TicketMapZoomService, TicketQrComponent, TicketQrModalComponent, TicketQrModalService, TicketQrService, TicketSelectionDetailsService, TicketSelectionDiscountService, TicketSelectionService, TicketSelectionTotalsService, ToastService, ToggleSwitchComponent, TransactionStatus, VENUES_API_ROUTES, VIP_CARDS_API_ROUTES, VipBalanceCardComponent, VipCardService, VipCardStatus, VipCardStatusBadgeComponent, VipRechargeModalComponent, VipTransactionType, VipTransactionsTableComponent, ZonePriceItemComponent, ZonePriceListComponent, authInterceptor, drawChairIcon$1 as drawChairIcon, drawHappyFace, drawRoundedRect, drawWheelchairIcon, emailValidator, findElementAtPosition, findTicketAtPosition, formatCitiesResponseToSelect, generateExitScene, generateHallwayScene, generateProductionAreaScene, generateSeatBlockScene, generateSeatBlockTicketScene, generateStageScene, generateStairScene, generateTableScene, generateTableTicketScene, generateUnavailableSpaceScene, generateZoneScene, getBrowserLanguage, getCustomerFullname, getItemTypeIcon, getOrderDiscount, getStoredLanguage, numberToLetter$1 as numberToLetter, parseJsonToFormDataAdvanced, phoneCountryFlag, processElementsToRenderData, provideTickeraComponents, resolveLanguage, setStoredLanguage, ticketCanOpenQr, tintColor, transformImageToFile, transformUrlParams };
10959
11106
  //# sourceMappingURL=tickera-angular-components.mjs.map