tickera-angular-components 0.0.1-dev.26 → 0.0.1-dev.28
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 +101 -358
- package/fesm2022/tickera-angular-components.mjs.map +1 -1
- package/index.d.ts +25 -113
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -763,6 +763,8 @@ declare enum OrderStatus {
|
|
|
763
763
|
|
|
764
764
|
type RoomMapSeatDisplayState = 'normal' | 'accessible' | 'non_existent';
|
|
765
765
|
|
|
766
|
+
type ModalSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl' | '3xl' | '4xl';
|
|
767
|
+
|
|
766
768
|
interface RoomMapChairPosition {
|
|
767
769
|
position: RoomMapPosition;
|
|
768
770
|
isOccupied: boolean;
|
|
@@ -1330,24 +1332,6 @@ declare class ToastService {
|
|
|
1330
1332
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToastService>;
|
|
1331
1333
|
}
|
|
1332
1334
|
|
|
1333
|
-
declare class BaseModalService {
|
|
1334
|
-
readonly isOpen: WritableSignal<boolean>;
|
|
1335
|
-
get modalIsOpen(): WritableSignal<boolean>;
|
|
1336
|
-
open(): void;
|
|
1337
|
-
close(): void;
|
|
1338
|
-
}
|
|
1339
|
-
|
|
1340
|
-
type FeedbackModalType = 'loading' | 'success' | 'info' | 'warning' | 'error';
|
|
1341
|
-
declare class FeedbackModalService extends BaseModalService {
|
|
1342
|
-
readonly type: WritableSignal<FeedbackModalType>;
|
|
1343
|
-
readonly title: WritableSignal<string>;
|
|
1344
|
-
readonly message: WritableSignal<string>;
|
|
1345
|
-
openFeedback(type: FeedbackModalType, title: string, message: string): void;
|
|
1346
|
-
close(): void;
|
|
1347
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FeedbackModalService, never>;
|
|
1348
|
-
static ɵprov: i0.ɵɵInjectableDeclaration<FeedbackModalService>;
|
|
1349
|
-
}
|
|
1350
|
-
|
|
1351
1335
|
declare class DeleteConfirmationService {
|
|
1352
1336
|
title: WritableSignal<string>;
|
|
1353
1337
|
resourceName: WritableSignal<string>;
|
|
@@ -1621,6 +1605,13 @@ declare class ProductService {
|
|
|
1621
1605
|
static ɵprov: i0.ɵɵInjectableDeclaration<ProductService>;
|
|
1622
1606
|
}
|
|
1623
1607
|
|
|
1608
|
+
declare class BaseModalService {
|
|
1609
|
+
readonly isOpen: WritableSignal<boolean>;
|
|
1610
|
+
get modalIsOpen(): WritableSignal<boolean>;
|
|
1611
|
+
open(): void;
|
|
1612
|
+
close(): void;
|
|
1613
|
+
}
|
|
1614
|
+
|
|
1624
1615
|
declare const authInterceptor: HttpInterceptorFn;
|
|
1625
1616
|
|
|
1626
1617
|
declare class AppButtonComponent {
|
|
@@ -1665,109 +1656,30 @@ declare class AppAlertComponent {
|
|
|
1665
1656
|
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>;
|
|
1666
1657
|
}
|
|
1667
1658
|
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
showTitle: boolean;
|
|
1675
|
-
private autoCloseTimeout;
|
|
1676
|
-
constructor(feedbackModalService: FeedbackModalService);
|
|
1677
|
-
get isOpen(): i0.WritableSignal<boolean>;
|
|
1678
|
-
get title(): i0.WritableSignal<string>;
|
|
1679
|
-
get message(): i0.WritableSignal<string>;
|
|
1680
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1681
|
-
ngOnDestroy(): void;
|
|
1682
|
-
closeModal(): void;
|
|
1683
|
-
private scheduleAutoClose;
|
|
1684
|
-
private clearAutoClose;
|
|
1685
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<LoadingFeedbackModalComponent, never>;
|
|
1686
|
-
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>;
|
|
1687
|
-
}
|
|
1688
|
-
|
|
1689
|
-
declare class SuccessFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1690
|
-
private feedbackModalService;
|
|
1691
|
-
autoClose: boolean;
|
|
1692
|
-
autoCloseDuration: number;
|
|
1693
|
-
showHeader: boolean;
|
|
1694
|
-
showCloseButton: boolean;
|
|
1695
|
-
showTitle: boolean;
|
|
1696
|
-
private autoCloseTimeout;
|
|
1697
|
-
constructor(feedbackModalService: FeedbackModalService);
|
|
1698
|
-
get isOpen(): i0.WritableSignal<boolean>;
|
|
1699
|
-
get title(): i0.WritableSignal<string>;
|
|
1700
|
-
get message(): i0.WritableSignal<string>;
|
|
1701
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1702
|
-
ngOnDestroy(): void;
|
|
1703
|
-
closeModal(): void;
|
|
1704
|
-
private scheduleAutoClose;
|
|
1705
|
-
private clearAutoClose;
|
|
1706
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SuccessFeedbackModalComponent, never>;
|
|
1707
|
-
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>;
|
|
1708
|
-
}
|
|
1709
|
-
|
|
1710
|
-
declare class InfoFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1711
|
-
private feedbackModalService;
|
|
1712
|
-
autoClose: boolean;
|
|
1713
|
-
autoCloseDuration: number;
|
|
1714
|
-
showHeader: boolean;
|
|
1715
|
-
showCloseButton: boolean;
|
|
1716
|
-
showTitle: boolean;
|
|
1717
|
-
private autoCloseTimeout;
|
|
1718
|
-
constructor(feedbackModalService: FeedbackModalService);
|
|
1719
|
-
get isOpen(): i0.WritableSignal<boolean>;
|
|
1720
|
-
get title(): i0.WritableSignal<string>;
|
|
1721
|
-
get message(): i0.WritableSignal<string>;
|
|
1722
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1723
|
-
ngOnDestroy(): void;
|
|
1724
|
-
closeModal(): void;
|
|
1725
|
-
private scheduleAutoClose;
|
|
1726
|
-
private clearAutoClose;
|
|
1727
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<InfoFeedbackModalComponent, never>;
|
|
1728
|
-
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>;
|
|
1729
|
-
}
|
|
1730
|
-
|
|
1731
|
-
declare class WarningFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1732
|
-
private feedbackModalService;
|
|
1733
|
-
autoClose: boolean;
|
|
1734
|
-
autoCloseDuration: number;
|
|
1659
|
+
type FeedbackModalType = 'loading' | 'success' | 'info' | 'warning' | 'error';
|
|
1660
|
+
declare class FeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1661
|
+
isOpen: WritableSignal<boolean>;
|
|
1662
|
+
type: FeedbackModalType;
|
|
1663
|
+
title: string;
|
|
1664
|
+
message: string;
|
|
1735
1665
|
showHeader: boolean;
|
|
1736
1666
|
showCloseButton: boolean;
|
|
1737
1667
|
showTitle: boolean;
|
|
1738
|
-
private autoCloseTimeout;
|
|
1739
|
-
constructor(feedbackModalService: FeedbackModalService);
|
|
1740
|
-
get isOpen(): i0.WritableSignal<boolean>;
|
|
1741
|
-
get title(): i0.WritableSignal<string>;
|
|
1742
|
-
get message(): i0.WritableSignal<string>;
|
|
1743
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
1744
|
-
ngOnDestroy(): void;
|
|
1745
|
-
closeModal(): void;
|
|
1746
|
-
private scheduleAutoClose;
|
|
1747
|
-
private clearAutoClose;
|
|
1748
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WarningFeedbackModalComponent, never>;
|
|
1749
|
-
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>;
|
|
1750
|
-
}
|
|
1751
|
-
|
|
1752
|
-
declare class ErrorFeedbackModalComponent implements OnChanges, OnDestroy {
|
|
1753
|
-
private feedbackModalService;
|
|
1754
1668
|
autoClose: boolean;
|
|
1755
1669
|
autoCloseDuration: number;
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
showTitle: boolean;
|
|
1670
|
+
buttonText: string;
|
|
1671
|
+
closed: EventEmitter<void>;
|
|
1759
1672
|
private autoCloseTimeout;
|
|
1760
|
-
|
|
1761
|
-
get
|
|
1762
|
-
get
|
|
1763
|
-
get message(): i0.WritableSignal<string>;
|
|
1673
|
+
get defaultButtonText(): string;
|
|
1674
|
+
get resolvedButtonText(): string;
|
|
1675
|
+
get buttonVariant(): 'primary' | 'secondary';
|
|
1764
1676
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1765
1677
|
ngOnDestroy(): void;
|
|
1766
1678
|
closeModal(): void;
|
|
1767
1679
|
private scheduleAutoClose;
|
|
1768
1680
|
private clearAutoClose;
|
|
1769
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
1770
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<
|
|
1681
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FeedbackModalComponent, never>;
|
|
1682
|
+
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>;
|
|
1771
1683
|
}
|
|
1772
1684
|
|
|
1773
1685
|
declare class DeleteConfirmationComponent {
|
|
@@ -1794,7 +1706,7 @@ declare class AppModalComponent {
|
|
|
1794
1706
|
showCloseButton: boolean;
|
|
1795
1707
|
showTitle: boolean;
|
|
1796
1708
|
isOpen: WritableSignal<boolean>;
|
|
1797
|
-
size:
|
|
1709
|
+
size: ModalSize;
|
|
1798
1710
|
closeModal: EventEmitter<void>;
|
|
1799
1711
|
onCloseModal(): void;
|
|
1800
1712
|
onKeydownEscape(): void;
|
|
@@ -2709,5 +2621,5 @@ declare class ZonePriceListComponent {
|
|
|
2709
2621
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZonePriceListComponent, "zone-price-list", never, { "zones": { "alias": "zones"; "required": true; }; }, {}, never, never, true, never>;
|
|
2710
2622
|
}
|
|
2711
2623
|
|
|
2712
|
-
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,
|
|
2713
|
-
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 };
|
|
2624
|
+
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 };
|
|
2625
|
+
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, ModalSize, 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 };
|