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.
@@ -4567,9 +4567,11 @@ var ConfirmationContainer = function ConfirmationContainer(_ref) {
4567
4567
  className: "title"
4568
4568
  }, "Your Tickets are Confirmed!"), React.createElement("div", {
4569
4569
  className: "share-message-section"
4570
- }, React.createElement("span", {
4570
+ }, data.attach_tickets ? React.createElement("span", {
4571
+ className: "main"
4572
+ }, "Your tickets have been emailed to you") : React.createElement("span", {
4571
4573
  className: "main"
4572
- }, "Your tickets have been emailed to you"), React.createElement("span", {
4574
+ }, "Your tickets are available in My Tickets section"), React.createElement("span", {
4573
4575
  className: "helper"
4574
4576
  }, "Please bring them with you to the event")))), data.disable_referral === false && isReferralEnabled && React.createElement(React.Fragment, null, React.createElement("div", {
4575
4577
  className: "referral_text_image_section"
@@ -6073,6 +6075,7 @@ var TicketResaleModal = function TicketResaleModal(_ref) {
6073
6075
  event_name = ticket.event_name,
6074
6076
  currency = ticket.currency,
6075
6077
  resale_fee_amount = ticket.resale_fee_amount,
6078
+ retain_amount_on_sale = ticket.retain_amount_on_sale,
6076
6079
  ticket_type_is_active = ticket.ticket_type_is_active;
6077
6080
  return React.createElement(Modal$1, {
6078
6081
  open: true,
@@ -6152,7 +6155,7 @@ var TicketResaleModal = function TicketResaleModal(_ref) {
6152
6155
  type: "radio",
6153
6156
  value: "anyone",
6154
6157
  component: RadioField
6155
- })), React.createElement("div", null, React.createElement("h4", null, "Terms of Resale"), React.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.createElement("p", null, "I also understand that, if no one chooses to buy it, it remains my property, is valid for entry to ", React.createElement("strong", null, event_name), " and I will not receive any refund."), React.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.createElement("strong", null, (currency || '') + " " + (resale_fee_amount || '')), ", and that any existing refunds due to me for referring sales for this event are no longer valid."), React.createElement(Field, {
6158
+ })), React.createElement("div", null, React.createElement("h4", null, "Terms of Resale"), React.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.createElement("p", null, "I also understand that, if no one chooses to buy it, it remains my property, is valid for entry to ", React.createElement("strong", null, event_name), " and I will not receive any refund."), React.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.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.createElement("p", null, "In order to receive the refund, I agree to pay a fee of ", React.createElement("strong", null, (currency != null ? currency : '') + " " + (resale_fee_amount != null ? resale_fee_amount : '0')), "."), React.createElement(Field, {
6156
6159
  name: 'confirm',
6157
6160
  label: 'I agree',
6158
6161
  type: 'checkbox',