tickera-angular-components 0.0.1-dev.26 → 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 +101 -358
- package/fesm2022/tickera-angular-components.mjs.map +1 -1
- package/index.d.ts +21 -111
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1330,24 +1330,6 @@ declare class ToastService {
|
|
|
1330
1330
|
static ɵprov: i0.ɵɵInjectableDeclaration<ToastService>;
|
|
1331
1331
|
}
|
|
1332
1332
|
|
|
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
1333
|
declare class DeleteConfirmationService {
|
|
1352
1334
|
title: WritableSignal<string>;
|
|
1353
1335
|
resourceName: WritableSignal<string>;
|
|
@@ -1621,6 +1603,13 @@ declare class ProductService {
|
|
|
1621
1603
|
static ɵprov: i0.ɵɵInjectableDeclaration<ProductService>;
|
|
1622
1604
|
}
|
|
1623
1605
|
|
|
1606
|
+
declare class BaseModalService {
|
|
1607
|
+
readonly isOpen: WritableSignal<boolean>;
|
|
1608
|
+
get modalIsOpen(): WritableSignal<boolean>;
|
|
1609
|
+
open(): void;
|
|
1610
|
+
close(): void;
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1624
1613
|
declare const authInterceptor: HttpInterceptorFn;
|
|
1625
1614
|
|
|
1626
1615
|
declare class AppButtonComponent {
|
|
@@ -1665,109 +1654,30 @@ declare class AppAlertComponent {
|
|
|
1665
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>;
|
|
1666
1655
|
}
|
|
1667
1656
|
|
|
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;
|
|
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;
|
|
1735
1663
|
showHeader: boolean;
|
|
1736
1664
|
showCloseButton: boolean;
|
|
1737
1665
|
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
1666
|
autoClose: boolean;
|
|
1755
1667
|
autoCloseDuration: number;
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
showTitle: boolean;
|
|
1668
|
+
buttonText: string;
|
|
1669
|
+
closed: EventEmitter<void>;
|
|
1759
1670
|
private autoCloseTimeout;
|
|
1760
|
-
|
|
1761
|
-
get
|
|
1762
|
-
get
|
|
1763
|
-
get message(): i0.WritableSignal<string>;
|
|
1671
|
+
get defaultButtonText(): string;
|
|
1672
|
+
get resolvedButtonText(): string;
|
|
1673
|
+
get buttonVariant(): 'primary' | 'secondary';
|
|
1764
1674
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1765
1675
|
ngOnDestroy(): void;
|
|
1766
1676
|
closeModal(): void;
|
|
1767
1677
|
private scheduleAutoClose;
|
|
1768
1678
|
private clearAutoClose;
|
|
1769
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<
|
|
1770
|
-
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>;
|
|
1771
1681
|
}
|
|
1772
1682
|
|
|
1773
1683
|
declare class DeleteConfirmationComponent {
|
|
@@ -2709,5 +2619,5 @@ declare class ZonePriceListComponent {
|
|
|
2709
2619
|
static ɵcmp: i0.ɵɵComponentDeclaration<ZonePriceListComponent, "zone-price-list", never, { "zones": { "alias": "zones"; "required": true; }; }, {}, never, never, true, never>;
|
|
2710
2620
|
}
|
|
2711
2621
|
|
|
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,
|
|
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 };
|
|
2713
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 };
|