tf-checkout-react 1.3.45 → 1.3.46
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/dist/components/confirmationContainer/index.d.ts +2 -1
- package/dist/components/ticketsContainer/TicketsSection.d.ts +3 -2
- package/dist/components/ticketsContainer/index.d.ts +2 -1
- package/dist/tf-checkout-react.cjs.development.js +1159 -2448
- package/dist/tf-checkout-react.cjs.development.js.map +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js +1 -1
- package/dist/tf-checkout-react.cjs.production.min.js.map +1 -1
- package/dist/tf-checkout-react.esm.js +1159 -2449
- package/dist/tf-checkout-react.esm.js.map +1 -1
- package/dist/tf-checkout-styles.css +1 -1
- package/package.json +1 -1
- package/src/components/confirmationContainer/index.tsx +8 -3
- package/src/components/ticketsContainer/TicketsSection.tsx +9 -12
- package/src/components/ticketsContainer/index.tsx +4 -3
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
|
@@ -26,5 +26,6 @@ export interface IConfirmationPage {
|
|
|
26
26
|
clientLabel?: string;
|
|
27
27
|
showReferralsInfoText?: boolean;
|
|
28
28
|
showCopyInfoModal?: boolean;
|
|
29
|
+
showPricingNoteSection?: boolean;
|
|
29
30
|
}
|
|
30
|
-
export declare const ConfirmationContainer: ({ confirmationLabels, hasCopyIcon, isReferralEnabled, showDefaultShareButtons, messengerAppId, shareButtons, onGetConfirmationDataSuccess, onGetConfirmationDataError, orderHash, onLinkCopied, clientLabel, showReferralsInfoText, showCopyInfoModal, }: IConfirmationPage) => JSX.Element;
|
|
31
|
+
export declare const ConfirmationContainer: ({ confirmationLabels, hasCopyIcon, isReferralEnabled, showDefaultShareButtons, messengerAppId, shareButtons, onGetConfirmationDataSuccess, onGetConfirmationDataError, orderHash, onLinkCopied, clientLabel, showReferralsInfoText, showCopyInfoModal, showPricingNoteSection, }: IConfirmationPage) => JSX.Element;
|
|
@@ -6,9 +6,10 @@ interface ITicketsSectionProps {
|
|
|
6
6
|
selectedTickets: any;
|
|
7
7
|
handleTicketSelect: any;
|
|
8
8
|
sortBySoldOut: boolean;
|
|
9
|
-
ticketsHeaderComponent?: ReactNode;
|
|
10
9
|
hideTicketsHeader: boolean;
|
|
10
|
+
ticketsHeaderComponent?: ReactNode;
|
|
11
11
|
showGroupNameBlock?: boolean;
|
|
12
|
+
currencySybmol?: string;
|
|
12
13
|
}
|
|
13
|
-
export declare const TicketsSection: ({ event, ticketsList, selectedTickets, handleTicketSelect, sortBySoldOut, ticketsHeaderComponent, hideTicketsHeader, showGroupNameBlock, }: ITicketsSectionProps) => JSX.Element;
|
|
14
|
+
export declare const TicketsSection: ({ event, ticketsList, selectedTickets, handleTicketSelect, sortBySoldOut, ticketsHeaderComponent, hideTicketsHeader, showGroupNameBlock, currencySybmol, }: ITicketsSectionProps) => JSX.Element;
|
|
14
15
|
export {};
|
|
@@ -56,6 +56,7 @@ export interface IGetTickets {
|
|
|
56
56
|
showPoweredByImage?: boolean;
|
|
57
57
|
promoText?: string;
|
|
58
58
|
showGroupNameBlock?: boolean;
|
|
59
|
+
currencySybmol?: string;
|
|
59
60
|
}
|
|
60
61
|
export interface ITicket {
|
|
61
62
|
id: string | number;
|
|
@@ -64,5 +65,5 @@ export interface ITicket {
|
|
|
64
65
|
export interface ISelectedTickets {
|
|
65
66
|
[key: string]: string | number;
|
|
66
67
|
}
|
|
67
|
-
export declare const TicketsContainer: ({ onLoginSuccess, getTicketsLabel, eventId, onAddToCartSuccess, contentStyle, onAddToCartError, onGetTicketsSuccess, onGetTicketsError, onLogoutSuccess, onLogoutError, onGetProfileDataSuccess, onGetProfileDataError, theme, queryPromoCode, isPromotionsEnabled, themeOptions, isAccessCodeEnabled, hideSessionButtons, hideWaitingList, enableBillingInfoAutoCreate, isButtonScrollable, sortBySoldOut, disableCountdownLeadingZero, isLoggedIn, actionsSectionComponent: ActionsSectionComponent, ticketsHeaderComponent, hideTicketsHeader, enableInfluencersSection, enableAddOns, handleNotInvitedModalClose, handleInvalidLinkModalClose, ordersPath, showPoweredByImage, promoText, showGroupNameBlock, }: IGetTickets) => JSX.Element;
|
|
68
|
+
export declare const TicketsContainer: ({ onLoginSuccess, getTicketsLabel, eventId, onAddToCartSuccess, contentStyle, onAddToCartError, onGetTicketsSuccess, onGetTicketsError, onLogoutSuccess, onLogoutError, onGetProfileDataSuccess, onGetProfileDataError, theme, queryPromoCode, isPromotionsEnabled, themeOptions, isAccessCodeEnabled, hideSessionButtons, hideWaitingList, enableBillingInfoAutoCreate, isButtonScrollable, sortBySoldOut, disableCountdownLeadingZero, isLoggedIn, actionsSectionComponent: ActionsSectionComponent, ticketsHeaderComponent, hideTicketsHeader, enableInfluencersSection, enableAddOns, handleNotInvitedModalClose, handleInvalidLinkModalClose, ordersPath, showPoweredByImage, promoText, showGroupNameBlock, currencySybmol, }: IGetTickets) => JSX.Element;
|
|
68
69
|
export {};
|