tf-checkout-react 1.2.27 → 1.2.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/dist/components/orderDetailsContainer/ticketsTable.d.ts +1 -0
- package/dist/tf-checkout-react.cjs.development.js +6 -3
- 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 +6 -3
- package/dist/tf-checkout-react.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/confirmationContainer/index.tsx +5 -1
- package/src/components/orderDetailsContainer/ticketsTable.tsx +1 -0
- package/src/components/ticketResaleModal/index.tsx +3 -2
- package/src/.DS_Store +0 -0
- package/src/components/.DS_Store +0 -0
- package/src/components/common/dist/PhoneNumberField.js +0 -96
|
@@ -4569,9 +4569,11 @@ var ConfirmationContainer = function ConfirmationContainer(_ref) {
|
|
|
4569
4569
|
className: "title"
|
|
4570
4570
|
}, "Your Tickets are Confirmed!"), React__default.createElement("div", {
|
|
4571
4571
|
className: "share-message-section"
|
|
4572
|
-
}, React__default.createElement("span", {
|
|
4572
|
+
}, data.attach_tickets ? React__default.createElement("span", {
|
|
4573
|
+
className: "main"
|
|
4574
|
+
}, "Your tickets have been emailed to you") : React__default.createElement("span", {
|
|
4573
4575
|
className: "main"
|
|
4574
|
-
}, "Your tickets
|
|
4576
|
+
}, "Your tickets are available in My Tickets section"), React__default.createElement("span", {
|
|
4575
4577
|
className: "helper"
|
|
4576
4578
|
}, "Please bring them with you to the event")))), data.disable_referral === false && isReferralEnabled && React__default.createElement(React__default.Fragment, null, React__default.createElement("div", {
|
|
4577
4579
|
className: "referral_text_image_section"
|
|
@@ -6075,6 +6077,7 @@ var TicketResaleModal = function TicketResaleModal(_ref) {
|
|
|
6075
6077
|
event_name = ticket.event_name,
|
|
6076
6078
|
currency = ticket.currency,
|
|
6077
6079
|
resale_fee_amount = ticket.resale_fee_amount,
|
|
6080
|
+
retain_amount_on_sale = ticket.retain_amount_on_sale,
|
|
6078
6081
|
ticket_type_is_active = ticket.ticket_type_is_active;
|
|
6079
6082
|
return React__default.createElement(Modal, {
|
|
6080
6083
|
open: true,
|
|
@@ -6154,7 +6157,7 @@ var TicketResaleModal = function TicketResaleModal(_ref) {
|
|
|
6154
6157
|
type: "radio",
|
|
6155
6158
|
value: "anyone",
|
|
6156
6159
|
component: RadioField
|
|
6157
|
-
})), React__default.createElement("div", null, React__default.createElement("h4", null, "Terms of Resale"), React__default.createElement("p", null, "I confirm that I want to sell this ticket and that, if someone chooses to buy it, I will no longer own it or have the right to ask for it back."), React__default.createElement("p", null, "I also understand that, if no one chooses to buy it, it remains my property, is valid for entry to ", React__default.createElement("strong", null, event_name), " and I will not receive any refund."), React__default.createElement("p", null, "If my ticket is sold, the original card I used to buy my ticket will be refunded with the original amount paid, minus a small handling fee of ", React__default.createElement("strong", null, (currency
|
|
6160
|
+
})), React__default.createElement("div", null, React__default.createElement("h4", null, "Terms of Resale"), React__default.createElement("p", null, "I confirm that I want to sell this ticket and that, if someone chooses to buy it, I will no longer own it or have the right to ask for it back."), React__default.createElement("p", null, "I also understand that, if no one chooses to buy it, it remains my property, is valid for entry to ", React__default.createElement("strong", null, event_name), " and I will not receive any refund."), React__default.createElement("p", null, "If my ticket is sold, the original card I used to buy my ticket will be refunded with the original amount paid, minus a small handling fee of ", React__default.createElement("strong", null, (currency != null ? currency : '') + " " + (retain_amount_on_sale != null ? retain_amount_on_sale : '0')), ", and that any existing refunds due to me for referring sales for this event are no longer valid."), React__default.createElement("p", null, "In order to receive the refund, I agree to pay a fee of ", React__default.createElement("strong", null, (currency != null ? currency : '') + " " + (resale_fee_amount != null ? resale_fee_amount : '0')), "."), React__default.createElement(formik.Field, {
|
|
6158
6161
|
name: 'confirm',
|
|
6159
6162
|
label: 'I agree',
|
|
6160
6163
|
type: 'checkbox',
|