tickera-angular-components 0.0.1-dev.25 → 0.0.1-dev.27
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/fesm2022/tickera-angular-components.mjs +162 -403
- package/fesm2022/tickera-angular-components.mjs.map +1 -1
- package/index.d.ts +200 -286
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -33,15 +33,6 @@ declare const ALERT_ICONS: {
|
|
|
33
33
|
info: string;
|
|
34
34
|
};
|
|
35
35
|
|
|
36
|
-
declare const BUTTON_VARIANT_CLASSES: Record<string, string>;
|
|
37
|
-
declare const BASE_BUTTON_CLASSES = "btn";
|
|
38
|
-
declare const BUTTON_SIZES_CLASSES: Record<string, string>;
|
|
39
|
-
|
|
40
|
-
declare const FORM_ERROR_MESSAGES: Record<string, string>;
|
|
41
|
-
|
|
42
|
-
declare const BASE_INPUT_CLASSES: string;
|
|
43
|
-
declare const ERROR_INPUT_CLASSES: string;
|
|
44
|
-
|
|
45
36
|
declare const ADMIN_API_ROUTES: {
|
|
46
37
|
FIND_ALL: string;
|
|
47
38
|
CREATE: string;
|
|
@@ -166,174 +157,14 @@ declare const VENUES_API_ROUTES: {
|
|
|
166
157
|
deleteOneImage: (venueId: number, imageId: number) => string;
|
|
167
158
|
};
|
|
168
159
|
|
|
169
|
-
declare
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
EXCEL = "excel",
|
|
173
|
-
WORD = "word",
|
|
174
|
-
TEXT = "text",
|
|
175
|
-
DEFAULT = "default"
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
declare enum CouponApplicability {
|
|
179
|
-
GENERAL = "GENERAL",
|
|
180
|
-
CUSTOMER_EMAIL = "CUSTOMER_EMAIL",
|
|
181
|
-
MEMBERSHIP_TYPE = "MEMBERSHIP_TYPE",
|
|
182
|
-
SHOWS = "SHOWS",
|
|
183
|
-
PERFORMANCES = "PERFORMANCES"
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
declare enum CouponDiscountType {
|
|
187
|
-
PERCENTAGE = "PERCENTAGE",
|
|
188
|
-
FIXED = "FIXED"
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
declare enum CouponStatus {
|
|
192
|
-
ACTIVE = "ACTIVE",
|
|
193
|
-
INACTIVE = "INACTIVE",
|
|
194
|
-
EXPIRED = "EXPIRED",
|
|
195
|
-
CONSUMED = "CONSUMED"
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
declare enum CorporateBondStatus {
|
|
199
|
-
ACTIVE = "ACTIVE",
|
|
200
|
-
INACTIVE = "INACTIVE",
|
|
201
|
-
EXPIRED = "EXPIRED",
|
|
202
|
-
CONSUMED = "CONSUMED"
|
|
203
|
-
}
|
|
204
|
-
|
|
205
|
-
declare enum PerformanceStatus {
|
|
206
|
-
SCHEDULED = "scheduled",
|
|
207
|
-
OPEN = "open",
|
|
208
|
-
CLOSED = "closed",
|
|
209
|
-
CANCELLED = "cancelled",
|
|
210
|
-
COMPLETED = "completed",
|
|
211
|
-
POSTPONED = "postponed"
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
declare enum PerformanceTicketStatus {
|
|
215
|
-
AVAILABLE = "available",
|
|
216
|
-
RESERVED = "reserved",
|
|
217
|
-
SOLD = "sold",
|
|
218
|
-
BLOCKED = "blocked"
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
declare enum RoomMapElementOrientation {
|
|
222
|
-
TOP = "top",
|
|
223
|
-
RIGHT = "right",
|
|
224
|
-
BOTTOM = "bottom",
|
|
225
|
-
LEFT = "left",
|
|
226
|
-
CENTER = "center"
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
declare enum RoomMapElementType {
|
|
230
|
-
SEAT_BLOCK = "seat_block",
|
|
231
|
-
TABLE = "table",
|
|
232
|
-
ZONE = "zone",
|
|
233
|
-
EXIT = "exit",
|
|
234
|
-
STAGE = "stage",
|
|
235
|
-
PRODUCTION_AREA = "production_area",
|
|
236
|
-
UNAVAILABLE_SPACE = "unavailable_space",
|
|
237
|
-
STAIR = "stair",
|
|
238
|
-
HALLWAY = "hallway"
|
|
239
|
-
}
|
|
240
|
-
|
|
241
|
-
declare enum GiftBondStatus {
|
|
242
|
-
ACTIVE = "ACTIVE",
|
|
243
|
-
INACTIVE = "INACTIVE",
|
|
244
|
-
EXPIRED = "EXPIRED",
|
|
245
|
-
CONSUMED = "CONSUMED"
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
declare enum OrderItemType {
|
|
249
|
-
TICKET = "TICKET",
|
|
250
|
-
PRODUCT = "PRODUCT"
|
|
251
|
-
}
|
|
252
|
-
|
|
253
|
-
declare enum OrderStatus {
|
|
254
|
-
ON_HOLD = "on-hold",
|
|
255
|
-
PENDING_PAYMENT = "pending-payment",
|
|
256
|
-
PROCESSING = "processing",
|
|
257
|
-
COMPLETED = "completed",
|
|
258
|
-
FAILED = "failed",
|
|
259
|
-
CANCELLED = "cancelled",
|
|
260
|
-
REFUNDED = "refunded"
|
|
261
|
-
}
|
|
262
|
-
|
|
263
|
-
interface RoomMapPosition {
|
|
264
|
-
x: number;
|
|
265
|
-
y: number;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
interface RoomMapSize {
|
|
269
|
-
width: number;
|
|
270
|
-
height: number;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
interface RoomMapBaseElement {
|
|
274
|
-
id: string;
|
|
275
|
-
type: RoomMapElementType;
|
|
276
|
-
position: RoomMapPosition;
|
|
277
|
-
size: RoomMapSize;
|
|
278
|
-
rotation: number;
|
|
279
|
-
name?: string;
|
|
280
|
-
isLocked: boolean;
|
|
281
|
-
isVisible: boolean;
|
|
282
|
-
zIndex: number;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
interface RoomMapExitElement extends RoomMapBaseElement {
|
|
286
|
-
type: RoomMapElementType.EXIT;
|
|
287
|
-
exitName?: string;
|
|
288
|
-
exitType: 'emergency' | 'regular';
|
|
289
|
-
width: number;
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
interface RoomMapProductionAreaElement extends RoomMapBaseElement {
|
|
293
|
-
type: RoomMapElementType.PRODUCTION_AREA;
|
|
294
|
-
areaName?: string;
|
|
295
|
-
areaType: 'lighting' | 'sound' | 'backstage' | 'orchestra' | 'custom';
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
interface RoomMapSeatElement extends RoomMapBaseElement {
|
|
299
|
-
type: RoomMapElementType.SEAT_BLOCK;
|
|
300
|
-
seatNumber?: string;
|
|
301
|
-
isAvailable: boolean;
|
|
302
|
-
priceCategory?: string;
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
interface RoomMapStageElement extends RoomMapBaseElement {
|
|
306
|
-
type: RoomMapElementType.STAGE;
|
|
307
|
-
stageName?: string;
|
|
308
|
-
orientation: RoomMapElementOrientation;
|
|
309
|
-
isMainStage: boolean;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
interface RoomMapTableElement extends RoomMapBaseElement {
|
|
313
|
-
type: RoomMapElementType.TABLE;
|
|
314
|
-
tableNumber?: string;
|
|
315
|
-
capacity: number;
|
|
316
|
-
shape: 'round' | 'rectangular' | 'square';
|
|
317
|
-
}
|
|
318
|
-
|
|
319
|
-
interface RoomMapUnavailableElement extends RoomMapBaseElement {
|
|
320
|
-
type: RoomMapElementType.UNAVAILABLE_SPACE;
|
|
321
|
-
reason?: string;
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
interface RoomMapZoneElement extends RoomMapBaseElement {
|
|
325
|
-
type: RoomMapElementType.ZONE;
|
|
326
|
-
zoneName: string;
|
|
327
|
-
zoneType: 'vip' | 'general' | 'premium' | 'balcony' | 'custom';
|
|
328
|
-
color: string;
|
|
329
|
-
capacity?: number;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
type RoomMapCanvasElement = RoomMapSeatElement | RoomMapTableElement | RoomMapZoneElement | RoomMapExitElement | RoomMapStageElement | RoomMapProductionAreaElement | RoomMapUnavailableElement;
|
|
160
|
+
declare const BUTTON_VARIANT_CLASSES: Record<string, string>;
|
|
161
|
+
declare const BASE_BUTTON_CLASSES = "btn";
|
|
162
|
+
declare const BUTTON_SIZES_CLASSES: Record<string, string>;
|
|
333
163
|
|
|
334
|
-
|
|
164
|
+
declare const FORM_ERROR_MESSAGES: Record<string, string>;
|
|
335
165
|
|
|
336
|
-
|
|
166
|
+
declare const BASE_INPUT_CLASSES: string;
|
|
167
|
+
declare const ERROR_INPUT_CLASSES: string;
|
|
337
168
|
|
|
338
169
|
interface SelectOption {
|
|
339
170
|
value: any;
|
|
@@ -607,6 +438,17 @@ interface ShowImage {
|
|
|
607
438
|
created_at: Date;
|
|
608
439
|
}
|
|
609
440
|
|
|
441
|
+
type ShowType = 'play' | 'musical' | 'concert' | 'dance' | 'opera' | 'comedy' | 'other';
|
|
442
|
+
|
|
443
|
+
declare enum PerformanceStatus {
|
|
444
|
+
SCHEDULED = "scheduled",
|
|
445
|
+
OPEN = "open",
|
|
446
|
+
CLOSED = "closed",
|
|
447
|
+
CANCELLED = "cancelled",
|
|
448
|
+
COMPLETED = "completed",
|
|
449
|
+
POSTPONED = "postponed"
|
|
450
|
+
}
|
|
451
|
+
|
|
610
452
|
interface PriceZone {
|
|
611
453
|
id: number;
|
|
612
454
|
name: string;
|
|
@@ -741,6 +583,18 @@ interface Product extends Auditable {
|
|
|
741
583
|
images?: ProductImage[];
|
|
742
584
|
}
|
|
743
585
|
|
|
586
|
+
declare enum RoomMapElementType {
|
|
587
|
+
SEAT_BLOCK = "seat_block",
|
|
588
|
+
TABLE = "table",
|
|
589
|
+
ZONE = "zone",
|
|
590
|
+
EXIT = "exit",
|
|
591
|
+
STAGE = "stage",
|
|
592
|
+
PRODUCTION_AREA = "production_area",
|
|
593
|
+
UNAVAILABLE_SPACE = "unavailable_space",
|
|
594
|
+
STAIR = "stair",
|
|
595
|
+
HALLWAY = "hallway"
|
|
596
|
+
}
|
|
597
|
+
|
|
744
598
|
interface NumerationConfig {
|
|
745
599
|
start_row_letter: string;
|
|
746
600
|
row_order: 'TOP_TO_BOTTOM' | 'BOTTOM_TO_TOP';
|
|
@@ -796,6 +650,85 @@ interface RoomMap {
|
|
|
796
650
|
updated_at: Date;
|
|
797
651
|
}
|
|
798
652
|
|
|
653
|
+
interface RoomMapPosition {
|
|
654
|
+
x: number;
|
|
655
|
+
y: number;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
interface RoomMapSize {
|
|
659
|
+
width: number;
|
|
660
|
+
height: number;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
interface RoomMapBaseElement {
|
|
664
|
+
id: string;
|
|
665
|
+
type: RoomMapElementType;
|
|
666
|
+
position: RoomMapPosition;
|
|
667
|
+
size: RoomMapSize;
|
|
668
|
+
rotation: number;
|
|
669
|
+
name?: string;
|
|
670
|
+
isLocked: boolean;
|
|
671
|
+
isVisible: boolean;
|
|
672
|
+
zIndex: number;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
interface RoomMapExitElement extends RoomMapBaseElement {
|
|
676
|
+
type: RoomMapElementType.EXIT;
|
|
677
|
+
exitName?: string;
|
|
678
|
+
exitType: 'emergency' | 'regular';
|
|
679
|
+
width: number;
|
|
680
|
+
}
|
|
681
|
+
|
|
682
|
+
interface RoomMapProductionAreaElement extends RoomMapBaseElement {
|
|
683
|
+
type: RoomMapElementType.PRODUCTION_AREA;
|
|
684
|
+
areaName?: string;
|
|
685
|
+
areaType: 'lighting' | 'sound' | 'backstage' | 'orchestra' | 'custom';
|
|
686
|
+
}
|
|
687
|
+
|
|
688
|
+
interface RoomMapSeatElement extends RoomMapBaseElement {
|
|
689
|
+
type: RoomMapElementType.SEAT_BLOCK;
|
|
690
|
+
seatNumber?: string;
|
|
691
|
+
isAvailable: boolean;
|
|
692
|
+
priceCategory?: string;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
declare enum RoomMapElementOrientation {
|
|
696
|
+
TOP = "top",
|
|
697
|
+
RIGHT = "right",
|
|
698
|
+
BOTTOM = "bottom",
|
|
699
|
+
LEFT = "left",
|
|
700
|
+
CENTER = "center"
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
interface RoomMapStageElement extends RoomMapBaseElement {
|
|
704
|
+
type: RoomMapElementType.STAGE;
|
|
705
|
+
stageName?: string;
|
|
706
|
+
orientation: RoomMapElementOrientation;
|
|
707
|
+
isMainStage: boolean;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
interface RoomMapTableElement extends RoomMapBaseElement {
|
|
711
|
+
type: RoomMapElementType.TABLE;
|
|
712
|
+
tableNumber?: string;
|
|
713
|
+
capacity: number;
|
|
714
|
+
shape: 'round' | 'rectangular' | 'square';
|
|
715
|
+
}
|
|
716
|
+
|
|
717
|
+
interface RoomMapUnavailableElement extends RoomMapBaseElement {
|
|
718
|
+
type: RoomMapElementType.UNAVAILABLE_SPACE;
|
|
719
|
+
reason?: string;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
interface RoomMapZoneElement extends RoomMapBaseElement {
|
|
723
|
+
type: RoomMapElementType.ZONE;
|
|
724
|
+
zoneName: string;
|
|
725
|
+
zoneType: 'vip' | 'general' | 'premium' | 'balcony' | 'custom';
|
|
726
|
+
color: string;
|
|
727
|
+
capacity?: number;
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
type RoomMapCanvasElement = RoomMapSeatElement | RoomMapTableElement | RoomMapZoneElement | RoomMapExitElement | RoomMapStageElement | RoomMapProductionAreaElement | RoomMapUnavailableElement;
|
|
731
|
+
|
|
799
732
|
interface RoomMapCanvasConfiguration {
|
|
800
733
|
id: string;
|
|
801
734
|
name: string;
|
|
@@ -813,6 +746,23 @@ interface RoomMapCanvasConfiguration {
|
|
|
813
746
|
};
|
|
814
747
|
}
|
|
815
748
|
|
|
749
|
+
declare enum OrderItemType {
|
|
750
|
+
TICKET = "TICKET",
|
|
751
|
+
PRODUCT = "PRODUCT"
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
declare enum OrderStatus {
|
|
755
|
+
ON_HOLD = "on-hold",
|
|
756
|
+
PENDING_PAYMENT = "pending-payment",
|
|
757
|
+
PROCESSING = "processing",
|
|
758
|
+
COMPLETED = "completed",
|
|
759
|
+
FAILED = "failed",
|
|
760
|
+
CANCELLED = "cancelled",
|
|
761
|
+
REFUNDED = "refunded"
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
type RoomMapSeatDisplayState = 'normal' | 'accessible' | 'non_existent';
|
|
765
|
+
|
|
816
766
|
interface RoomMapChairPosition {
|
|
817
767
|
position: RoomMapPosition;
|
|
818
768
|
isOccupied: boolean;
|
|
@@ -943,6 +893,13 @@ interface PerformancesResponseInterface {
|
|
|
943
893
|
message: string;
|
|
944
894
|
}
|
|
945
895
|
|
|
896
|
+
declare enum PerformanceTicketStatus {
|
|
897
|
+
AVAILABLE = "available",
|
|
898
|
+
RESERVED = "reserved",
|
|
899
|
+
SOLD = "sold",
|
|
900
|
+
BLOCKED = "blocked"
|
|
901
|
+
}
|
|
902
|
+
|
|
946
903
|
interface OrderItem {
|
|
947
904
|
id: number;
|
|
948
905
|
order: Order;
|
|
@@ -962,6 +919,26 @@ interface OrderItem {
|
|
|
962
919
|
updated_by: number;
|
|
963
920
|
}
|
|
964
921
|
|
|
922
|
+
declare enum CouponApplicability {
|
|
923
|
+
GENERAL = "GENERAL",
|
|
924
|
+
CUSTOMER_EMAIL = "CUSTOMER_EMAIL",
|
|
925
|
+
MEMBERSHIP_TYPE = "MEMBERSHIP_TYPE",
|
|
926
|
+
SHOWS = "SHOWS",
|
|
927
|
+
PERFORMANCES = "PERFORMANCES"
|
|
928
|
+
}
|
|
929
|
+
|
|
930
|
+
declare enum CouponDiscountType {
|
|
931
|
+
PERCENTAGE = "PERCENTAGE",
|
|
932
|
+
FIXED = "FIXED"
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
declare enum CouponStatus {
|
|
936
|
+
ACTIVE = "ACTIVE",
|
|
937
|
+
INACTIVE = "INACTIVE",
|
|
938
|
+
EXPIRED = "EXPIRED",
|
|
939
|
+
CONSUMED = "CONSUMED"
|
|
940
|
+
}
|
|
941
|
+
|
|
965
942
|
interface Coupon extends Auditable {
|
|
966
943
|
id: number;
|
|
967
944
|
code: string;
|
|
@@ -986,6 +963,13 @@ interface Coupon extends Auditable {
|
|
|
986
963
|
customers?: Customer[];
|
|
987
964
|
}
|
|
988
965
|
|
|
966
|
+
declare enum CorporateBondStatus {
|
|
967
|
+
ACTIVE = "ACTIVE",
|
|
968
|
+
INACTIVE = "INACTIVE",
|
|
969
|
+
EXPIRED = "EXPIRED",
|
|
970
|
+
CONSUMED = "CONSUMED"
|
|
971
|
+
}
|
|
972
|
+
|
|
989
973
|
interface CorporateBond {
|
|
990
974
|
id: number;
|
|
991
975
|
name: string;
|
|
@@ -1231,6 +1215,13 @@ interface FindAllPriceZoneParams {
|
|
|
1231
1215
|
limit?: number;
|
|
1232
1216
|
}
|
|
1233
1217
|
|
|
1218
|
+
declare enum GiftBondStatus {
|
|
1219
|
+
ACTIVE = "ACTIVE",
|
|
1220
|
+
INACTIVE = "INACTIVE",
|
|
1221
|
+
EXPIRED = "EXPIRED",
|
|
1222
|
+
CONSUMED = "CONSUMED"
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1234
1225
|
interface GiftBond {
|
|
1235
1226
|
id: number;
|
|
1236
1227
|
uuid: string;
|
|
@@ -1285,6 +1276,19 @@ interface ValidateCouponResponse {
|
|
|
1285
1276
|
};
|
|
1286
1277
|
}
|
|
1287
1278
|
|
|
1279
|
+
declare const DOCUMENT_TYPES_OPTIONS: SelectOption[];
|
|
1280
|
+
|
|
1281
|
+
declare const PAYMENT_METHODS_OPTIONS: SelectOption[];
|
|
1282
|
+
|
|
1283
|
+
declare enum FileType {
|
|
1284
|
+
IMAGE = "image",
|
|
1285
|
+
PDF = "pdf",
|
|
1286
|
+
EXCEL = "excel",
|
|
1287
|
+
WORD = "word",
|
|
1288
|
+
TEXT = "text",
|
|
1289
|
+
DEFAULT = "default"
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1288
1292
|
declare const getCustomerFullname: (customer: Customer) => string;
|
|
1289
1293
|
|
|
1290
1294
|
declare function parseJsonToFormDataAdvanced(imageGallery: any[]): FormData;
|
|
@@ -1326,24 +1330,6 @@ declare class ToastService {
|
|
|
1326
1330
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToastService>;
|
|
1327
1331
|
}
|
|
1328
1332
|
|
|
1329
|
-
declare class BaseModalService {
|
|
1330
|
-
readonly isOpen: WritableSignal<boolean>;
|
|
1331
|
-
get modalIsOpen(): WritableSignal<boolean>;
|
|
1332
|
-
open(): void;
|
|
1333
|
-
close(): void;
|
|
1334
|
-
}
|
|
1335
|
-
|
|
1336
|
-
type FeedbackModalType = 'loading' | 'success' | 'info' | 'warning' | 'error';
|
|
1337
|
-
declare class FeedbackModalService extends BaseModalService {
|
|
1338
|
-
readonly type: WritableSignal<FeedbackModalType>;
|
|
1339
|
-
readonly title: WritableSignal<string>;
|
|
1340
|
-
readonly message: WritableSignal<string>;
|
|
1341
|
-
openFeedback(type: FeedbackModalType, title: string, message: string): void;
|
|
1342
|
-
close(): void;
|
|
1343
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FeedbackModalService, never>;
|
|
1344
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FeedbackModalService>;
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
1333
|
declare class DeleteConfirmationService {
|
|
1348
1334
|
title: WritableSignal<string>;
|
|
1349
1335
|
resourceName: WritableSignal<string>;
|
|
@@ -1617,6 +1603,13 @@ declare class ProductService {
|
|
|
1617
1603
|
static ɵprov: i0.ɵɵInjectableDeclaration<ProductService>;
|
|
1618
1604
|
}
|
|
1619
1605
|
|
|
1606
|
+
declare class BaseModalService {
|
|
1607
|
+
readonly isOpen: WritableSignal<boolean>;
|
|
1608
|
+
get modalIsOpen(): WritableSignal<boolean>;
|
|
1609
|
+
open(): void;
|
|
1610
|
+
close(): void;
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1620
1613
|
declare const authInterceptor: HttpInterceptorFn;
|
|
1621
1614
|
|
|
1622
1615
|
declare class AppButtonComponent {
|
|
@@ -1661,109 +1654,30 @@ declare class AppAlertComponent {
|
|
|
1661
1654
|
static ɵcmp: i0.ɵɵComponentDeclaration<AppAlertComponent, "app-alert", never, { "type": { "alias": "type"; "required": false; }; "text": { "alias": "text"; "required": false; }; "closeable": { "alias": "closeable"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, true, never>;
|
|
1662
1655
|
}
|
|
1663
1656
|
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
showTitle: boolean;
|
|
1671
|
-
private autoCloseTimeout;
|
|
1672
|
-
constructor(feedbackModalService: FeedbackModalService);
|
|
1673
|
-
get isOpen(): i0.WritableSignal<boolean>;
|
|
1674
|
-
get title(): i0.WritableSignal<string>;
|
|
1675
|
-
get message(): i0.WritableSignal<string>;
|
|
1676
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1677
|
-
ngOnDestroy(): void;
|
|
1678
|
-
closeModal(): void;
|
|
1679
|
-
private scheduleAutoClose;
|
|
1680
|
-
private clearAutoClose;
|
|
1681
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingFeedbackModalComponent, never>;
|
|
1682
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoadingFeedbackModalComponent, "loading-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1683
|
-
}
|
|
1684
|
-
|
|
1685
|
-
declare class SuccessFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1686
|
-
private feedbackModalService;
|
|
1687
|
-
autoClose: boolean;
|
|
1688
|
-
autoCloseDuration: number;
|
|
1689
|
-
showHeader: boolean;
|
|
1690
|
-
showCloseButton: boolean;
|
|
1691
|
-
showTitle: boolean;
|
|
1692
|
-
private autoCloseTimeout;
|
|
1693
|
-
constructor(feedbackModalService: FeedbackModalService);
|
|
1694
|
-
get isOpen(): i0.WritableSignal<boolean>;
|
|
1695
|
-
get title(): i0.WritableSignal<string>;
|
|
1696
|
-
get message(): i0.WritableSignal<string>;
|
|
1697
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1698
|
-
ngOnDestroy(): void;
|
|
1699
|
-
closeModal(): void;
|
|
1700
|
-
private scheduleAutoClose;
|
|
1701
|
-
private clearAutoClose;
|
|
1702
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SuccessFeedbackModalComponent, never>;
|
|
1703
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SuccessFeedbackModalComponent, "success-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1704
|
-
}
|
|
1705
|
-
|
|
1706
|
-
declare class InfoFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1707
|
-
private feedbackModalService;
|
|
1708
|
-
autoClose: boolean;
|
|
1709
|
-
autoCloseDuration: number;
|
|
1710
|
-
showHeader: boolean;
|
|
1711
|
-
showCloseButton: boolean;
|
|
1712
|
-
showTitle: boolean;
|
|
1713
|
-
private autoCloseTimeout;
|
|
1714
|
-
constructor(feedbackModalService: FeedbackModalService);
|
|
1715
|
-
get isOpen(): i0.WritableSignal<boolean>;
|
|
1716
|
-
get title(): i0.WritableSignal<string>;
|
|
1717
|
-
get message(): i0.WritableSignal<string>;
|
|
1718
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1719
|
-
ngOnDestroy(): void;
|
|
1720
|
-
closeModal(): void;
|
|
1721
|
-
private scheduleAutoClose;
|
|
1722
|
-
private clearAutoClose;
|
|
1723
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoFeedbackModalComponent, never>;
|
|
1724
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<InfoFeedbackModalComponent, "info-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1725
|
-
}
|
|
1726
|
-
|
|
1727
|
-
declare class WarningFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1728
|
-
private feedbackModalService;
|
|
1729
|
-
autoClose: boolean;
|
|
1730
|
-
autoCloseDuration: number;
|
|
1657
|
+
type FeedbackModalType = 'loading' | 'success' | 'info' | 'warning' | 'error';
|
|
1658
|
+
declare class FeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1659
|
+
isOpen: WritableSignal<boolean>;
|
|
1660
|
+
type: FeedbackModalType;
|
|
1661
|
+
title: string;
|
|
1662
|
+
message: string;
|
|
1731
1663
|
showHeader: boolean;
|
|
1732
1664
|
showCloseButton: boolean;
|
|
1733
1665
|
showTitle: boolean;
|
|
1734
|
-
private autoCloseTimeout;
|
|
1735
|
-
constructor(feedbackModalService: FeedbackModalService);
|
|
1736
|
-
get isOpen(): i0.WritableSignal<boolean>;
|
|
1737
|
-
get title(): i0.WritableSignal<string>;
|
|
1738
|
-
get message(): i0.WritableSignal<string>;
|
|
1739
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1740
|
-
ngOnDestroy(): void;
|
|
1741
|
-
closeModal(): void;
|
|
1742
|
-
private scheduleAutoClose;
|
|
1743
|
-
private clearAutoClose;
|
|
1744
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WarningFeedbackModalComponent, never>;
|
|
1745
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WarningFeedbackModalComponent, "warning-feedback-modal", never, { "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; }, {}, never, never, true, never>;
|
|
1746
|
-
}
|
|
1747
|
-
|
|
1748
|
-
declare class ErrorFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1749
|
-
private feedbackModalService;
|
|
1750
1666
|
autoClose: boolean;
|
|
1751
1667
|
autoCloseDuration: number;
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
showTitle: boolean;
|
|
1668
|
+
buttonText: string;
|
|
1669
|
+
closed: EventEmitter<void>;
|
|
1755
1670
|
private autoCloseTimeout;
|
|
1756
|
-
|
|
1757
|
-
get
|
|
1758
|
-
get
|
|
1759
|
-
get message(): i0.WritableSignal<string>;
|
|
1671
|
+
get defaultButtonText(): string;
|
|
1672
|
+
get resolvedButtonText(): string;
|
|
1673
|
+
get buttonVariant(): 'primary' | 'secondary';
|
|
1760
1674
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1761
1675
|
ngOnDestroy(): void;
|
|
1762
1676
|
closeModal(): void;
|
|
1763
1677
|
private scheduleAutoClose;
|
|
1764
1678
|
private clearAutoClose;
|
|
1765
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
1766
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
1679
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedbackModalComponent, never>;
|
|
1680
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FeedbackModalComponent, "feedback-modal", never, { "isOpen": { "alias": "isOpen"; "required": false; }; "type": { "alias": "type"; "required": false; }; "title": { "alias": "title"; "required": false; }; "message": { "alias": "message"; "required": false; }; "showHeader": { "alias": "showHeader"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showTitle": { "alias": "showTitle"; "required": false; }; "autoClose": { "alias": "autoClose"; "required": false; }; "autoCloseDuration": { "alias": "autoCloseDuration"; "required": false; }; "buttonText": { "alias": "buttonText"; "required": false; }; }, { "closed": "closed"; }, never, never, true, never>;
|
|
1767
1681
|
}
|
|
1768
1682
|
|
|
1769
1683
|
declare class DeleteConfirmationComponent {
|
|
@@ -2705,5 +2619,5 @@ declare class ZonePriceListComponent {
|
|
|
2705
2619
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZonePriceListComponent, "zone-price-list", never, { "zones": { "alias": "zones"; "required": true; }; }, {}, never, never, true, never>;
|
|
2706
2620
|
}
|
|
2707
2621
|
|
|
2708
|
-
export { ADMIN_API_ROUTES, ALERT_ICONS, AdminSelectComponent, AdminService, ApiService, AppAlertComponent, AppButtonComponent, AppLinkButtonComponent, AppModalComponent, AsyncSelectComponent, AuditInformationComponent, BASE_BUTTON_CLASSES, BASE_INPUT_CLASSES, BUTTON_SIZES_CLASSES, BUTTON_VARIANT_CLASSES, BaseModalService, CITY_API_ENDPOINTS, COUNTRY_API_ENDPOINTS, CUSTOMERS_API_ROUTES, ChangePasswordFormComponent, ChangePasswordFormService, CitiesService, CitySelectComponent, ColorPickerComponent, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CouponStatus, CustomerSelectComponent, CustomerService, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator,
|
|
2622
|
+
export { ADMIN_API_ROUTES, ALERT_ICONS, AdminSelectComponent, AdminService, ApiService, AppAlertComponent, AppButtonComponent, AppLinkButtonComponent, AppModalComponent, AsyncSelectComponent, AuditInformationComponent, BASE_BUTTON_CLASSES, BASE_INPUT_CLASSES, BUTTON_SIZES_CLASSES, BUTTON_VARIANT_CLASSES, BaseModalService, CITY_API_ENDPOINTS, COUNTRY_API_ENDPOINTS, CUSTOMERS_API_ROUTES, ChangePasswordFormComponent, ChangePasswordFormService, CitiesService, CitySelectComponent, ColorPickerComponent, CorporateBondStatus, CountrySelectComponent, CountryService, CouponApplicability, CouponDiscountType, CouponStatus, CustomerSelectComponent, CustomerService, DOCUMENT_TYPES_OPTIONS, DateInputComponent, DateService, DaySelectorGridComponent, DeleteConfirmationComponent, DeleteConfirmationService, DynamicTableComponent, ERROR_INPUT_CLASSES, EndDateGreaterThanStartValidator, FORM_ERROR_MESSAGES, FeedbackModalComponent, FileType, FileUploadComponent, FileUploadPreviewComponent, FormEditorComponent, FormInputComponent, FormSelectComponent, FormTextareaComponent, GiftBondStatus, LanguageSwitcherComponent, MinTodayValidator, MustMatchValidator, OrderItemType, OrderStatus, PAYMENT_METHODS_OPTIONS, PERFORMANCES_API_ROUTES, PRICE_ZONES_API_ROUTES, PRODUCTS_API_ROUTES, PRODUCT_CATEGORIES_API_ROUTES, PRODUCT_TAGS_API_ROUTES, PRODUCT_TYPES_API_ROUTES, PerformanceCardComponent, PerformanceCardListComponent, PerformanceMultiSelectComponent, PerformanceSelectComponent, PerformanceService, PerformanceStatus, PerformanceStepperComponent, PerformanceTicketStatus, PerformancesListEventsService, PriceZoneEventService, PriceZoneFormModalService, PriceZoneSelectComponent, PriceZoneService, ProductCategoryService, ProductMultiSelectComponent, ProductSelectComponent, ProductService, ProductTagService, ProductTypeService, RoomMapElementOrientation, RoomMapElementType, SHOWS_API_ROUTES, STATE_API_ENDPOINTS, ShowMultiSelectComponent, ShowSelectComponent, ShowService, ShowsFilterComponent, StateSelectComponent, StatesService, TICKERA_COMPONENTS_CONFIG, TickeraTranslocoLoader, ToastService, ToggleSwitchComponent, VENUES_API_ROUTES, ZonePriceItemComponent, ZonePriceListComponent, authInterceptor, formatCitiesResponseToSelect, getBrowserLanguage, getCustomerFullname, getStoredLanguage, parseJsonToFormDataAdvanced, provideTickeraComponents, resolveLanguage, setStoredLanguage, transformImageToFile };
|
|
2709
2623
|
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, FeedbackModalType, FetchCitiesParams, FetchDailyPerformancesParams, FetchProductCategoriesParams, FetchProductTagsParams, FetchProductTypesParams, FetchShowsParams, FileUploadConfig, FindAllPriceZoneParams, GiftBond, GiftBondResponse, GiftBondsResponse, Hall, HallFloor, NumerationConfig, Order, OrderItem, OrderResponse, OrdersResponse, Performance, PerformanceAvailableDay, PerformanceBookingDataResponse, PerformanceResponse, PerformanceTicket, PerformancesAvailableDaysResponse, PerformancesResponseInterface, PriceZone, PriceZoneResponse, PriceZoneUpdateResponse, PriceZonesResponseInterface, Product, ProductCategoriesResponse, ProductCategory, ProductCategoryResponse, ProductImage, ProductResponse, ProductTag, ProductTagResponse, ProductTagsResponse, ProductTaxonomy, ProductType, ProductTypeResponse, ProductTypesResponse, ProductsResponseInterface, RoomMap, RoomMapBaseElement, RoomMapCanvasConfiguration, RoomMapCanvasElement, RoomMapChairPosition, RoomMapElementTemplate, RoomMapExitElement, RoomMapGridPosition, RoomMapPosition, RoomMapProductionAreaElement, RoomMapSeatDisplayState, RoomMapSeatElement, RoomMapSeatState, RoomMapSize, RoomMapStageElement, RoomMapTableElement, RoomMapUnavailableElement, RoomMapZoneElement, SelectOption, Show, ShowCategoriesResponse, ShowCategory, ShowCategoryResponse, ShowGender, ShowGenderResponse, ShowGendersResponse, ShowImage, ShowResponse, ShowType, ShowsResponseInterface, State, StateResponse, StatesResponse, TickeraComponentsConfig, UploadedFile, ValidateCorporateBondResponse, ValidateCouponResponse, ValidateGiftBondResponse, Venue, VenueImage };
|