@planetaexo/design-system 0.30.0 → 0.31.0

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/index.js CHANGED
@@ -4578,7 +4578,7 @@ var DEFAULT_LABELS3 = {
4578
4578
  footerContact: (agent) => `If you have any questions, just reply to this email or contact ${agent} \u2014 happy to help.`,
4579
4579
  closingMessage: "You can access your booking at any time through the link below."
4580
4580
  };
4581
- function BookingConfirmation({
4581
+ function BookingPaymentConfirmationEmail({
4582
4582
  recipientName,
4583
4583
  logoUrl,
4584
4584
  bookingReference,
@@ -4798,32 +4798,93 @@ function BookingConfirmation({
4798
4798
  }
4799
4799
  );
4800
4800
  }
4801
- function BookingSummary({ heading, rows, className }) {
4802
- return /* @__PURE__ */ jsxs("div", { className, style: { marginBottom: "32px" }, children: [
4801
+ function BookingSummary({ heading, rows, footer, className }) {
4802
+ var _a, _b;
4803
+ return /* @__PURE__ */ jsxs("div", { className, style: { marginBottom: "24px" }, children: [
4803
4804
  /* @__PURE__ */ jsx(
4804
4805
  "p",
4805
4806
  {
4806
4807
  style: {
4807
- marginBottom: "16px",
4808
- fontWeight: "700",
4808
+ marginBottom: "12px",
4809
+ fontWeight: 700,
4809
4810
  color: emailTokens.foreground,
4811
+ fontSize: "16px",
4810
4812
  fontFamily: emailTokens.fontFamily
4811
4813
  },
4812
4814
  children: heading
4813
4815
  }
4814
4816
  ),
4815
4817
  /* @__PURE__ */ jsx(
4816
- "table",
4818
+ "div",
4817
4819
  {
4818
4820
  style: {
4819
- width: "100%",
4820
- fontSize: "14px",
4821
- borderCollapse: "collapse"
4821
+ borderRadius: "12px",
4822
+ border: `1px solid ${emailTokens.border}`,
4823
+ overflow: "hidden"
4822
4824
  },
4823
- children: /* @__PURE__ */ jsx("tbody", { children: rows.map((row, i) => /* @__PURE__ */ jsxs("tr", { style: i > 0 ? { borderTop: `1px solid ${emailTokens.border}` } : {}, children: [
4824
- /* @__PURE__ */ jsx("td", { style: { padding: "4px 16px 4px 0", color: emailTokens.mutedForeground }, children: row.label }),
4825
- /* @__PURE__ */ jsx("td", { style: { padding: "4px 0", fontWeight: "500", color: emailTokens.foreground }, children: row.value })
4826
- ] }, i)) })
4825
+ children: /* @__PURE__ */ jsx(
4826
+ "table",
4827
+ {
4828
+ style: {
4829
+ width: "100%",
4830
+ fontSize: "14px",
4831
+ borderCollapse: "collapse"
4832
+ },
4833
+ children: /* @__PURE__ */ jsxs("tbody", { children: [
4834
+ rows.map((row, i) => {
4835
+ var _a2;
4836
+ return /* @__PURE__ */ jsxs(
4837
+ "tr",
4838
+ {
4839
+ style: i > 0 ? { borderTop: `1px solid ${emailTokens.border}` } : {},
4840
+ children: [
4841
+ /* @__PURE__ */ jsx(
4842
+ "td",
4843
+ {
4844
+ style: {
4845
+ padding: "10px 16px",
4846
+ color: emailTokens.mutedForeground,
4847
+ verticalAlign: "top"
4848
+ },
4849
+ children: row.label
4850
+ }
4851
+ ),
4852
+ /* @__PURE__ */ jsx(
4853
+ "td",
4854
+ {
4855
+ style: {
4856
+ padding: "10px 16px",
4857
+ textAlign: "right",
4858
+ fontWeight: 500,
4859
+ color: (_a2 = row.valueColor) != null ? _a2 : emailTokens.foreground,
4860
+ whiteSpace: "nowrap"
4861
+ },
4862
+ children: row.value
4863
+ }
4864
+ )
4865
+ ]
4866
+ },
4867
+ i
4868
+ );
4869
+ }),
4870
+ footer && /* @__PURE__ */ jsx("tr", { children: /* @__PURE__ */ jsx(
4871
+ "td",
4872
+ {
4873
+ colSpan: 2,
4874
+ style: {
4875
+ padding: "12px 16px",
4876
+ textAlign: "center",
4877
+ fontWeight: (_a = footer.fontWeight) != null ? _a : 600,
4878
+ color: (_b = footer.color) != null ? _b : emailTokens.foreground,
4879
+ backgroundColor: footer.backgroundColor,
4880
+ borderTop: `1px solid ${emailTokens.border}`
4881
+ },
4882
+ children: footer.text
4883
+ }
4884
+ ) })
4885
+ ] })
4886
+ }
4887
+ )
4827
4888
  }
4828
4889
  )
4829
4890
  ] });
@@ -4834,7 +4895,7 @@ var DEFAULT_LABELS4 = {
4834
4895
  greeting: (recipientName) => `Hi ${recipientName},`,
4835
4896
  thankYouMessage: "Thank you for booking your adventure with PlanetaEXO \u2014 we\u2019re really looking forward to your adventure.",
4836
4897
  addTravellersInstruction: "To move forward, the first step is to add all travellers included in your booking. Once you do this, each person \u2014 including you \u2014 will receive an email with a link to complete their individual registration.",
4837
- summaryHeading: "\u{1F4DD} Here\u2019s a quick summary of your booking:",
4898
+ summaryHeading: "\u{1F4DD} Booking Summary",
4838
4899
  bookingNumberLabel: "Booking Number:",
4839
4900
  activityLabel: "Activity:",
4840
4901
  adventureLabel: "Adventure:",
@@ -4845,7 +4906,7 @@ var DEFAULT_LABELS4 = {
4845
4906
  closingMessage: "If you have any questions, just reply to this email \u2014 happy to help.",
4846
4907
  nextStepsHeading: "Next steps:"
4847
4908
  };
4848
- function BookingConfirmationEmail({
4909
+ function BookingCreatedEmail({
4849
4910
  recipientName,
4850
4911
  addTravellersUrl,
4851
4912
  logoUrl,
@@ -4875,7 +4936,7 @@ function BookingConfirmationEmail({
4875
4936
  };
4876
4937
  const AddTravellersCta = addTravellersUrl ? /* @__PURE__ */ jsx("a", { href: addTravellersUrl, style: ctaStyle, children: l.ctaButton }) : /* @__PURE__ */ jsx("span", { style: ctaStyle, role: "presentation", children: l.ctaButton });
4877
4938
  const tableRows = [
4878
- { label: l.bookingNumberLabel, value: bookingNumber },
4939
+ { label: l.bookingNumberLabel, value: bookingNumber, valueColor: emailTokens.primary },
4879
4940
  ...activity && activity.trim().length > 0 ? [{ label: l.activityLabel, value: activity }] : [],
4880
4941
  { label: l.adventureLabel, value: adventure },
4881
4942
  { label: l.startingDateLabel, value: startingDate },
@@ -5026,12 +5087,12 @@ var DEFAULT_LABELS5 = {
5026
5087
  logoAlt: "PlanetaEXO",
5027
5088
  greeting: (n) => `Hi ${n},`,
5028
5089
  intermediateHello: "Hope you're doing well.",
5029
- bookingSummaryHeader: "Booking summary",
5030
- bookingNumberLabel: "Booking number",
5031
- adventuresCountLabel: (c) => `${c} adventure${c === 1 ? "" : "s"}`,
5032
- travellersCountLabel: (c) => `${c} traveller${c === 1 ? "" : "s"}`,
5090
+ bookingSummaryHeader: "\u{1F4DD} Booking Summary",
5091
+ bookingNumberLabel: "Booking Number",
5092
+ adventuresCountLabel: (c) => String(c),
5093
+ travellersCountLabel: (c) => String(c),
5033
5094
  adventuresRowLabel: "Adventures",
5034
- travellersRowLabel: "Total travellers",
5095
+ travellersRowLabel: "Total Travellers",
5035
5096
  agentRowLabel: "Agent",
5036
5097
  progressHeader: "Registration progress",
5037
5098
  startsLabel: "Starts",
@@ -5090,7 +5151,7 @@ var DEFAULT_LABELS5 = {
5090
5151
  contextNote: "Please ensure all pending registrations are completed as soon as possible.",
5091
5152
  importantNote: "Important: Registration is mandatory and required for participation in the adventure.",
5092
5153
  progressIntro: "Review your booking page to complete missing information:",
5093
- multiTravellerNote: "If your booking includes multiple travellers, please ensure every traveller completes their registration before departure.",
5154
+ multiTravellerNote: "",
5094
5155
  pleaseNoteHeader: "",
5095
5156
  pleaseNoteBullets: [],
5096
5157
  bookerCoordinationNote: "",
@@ -5105,7 +5166,7 @@ var DEFAULT_LABELS5 = {
5105
5166
  finalReminderTagline: "This is a final reminder.",
5106
5167
  importantNote: "Traveller registration is mandatory. Without completed registration forms, we may be unable to confirm logistics and travellers may not be allowed to board transfers, flights, boats, or participate in activities.",
5107
5168
  progressIntro: "Please complete all pending registrations immediately through your booking page:",
5108
- disregardIfCompleted: "If registrations have already been completed, please disregard this email.",
5169
+ disregardIfCompleted: "",
5109
5170
  closingThanks: "We look forward to welcoming you soon.",
5110
5171
  contextNote: "",
5111
5172
  pleaseNoteHeader: "",
@@ -5157,7 +5218,7 @@ function RegistrationReminderEmail({
5157
5218
  fontFamily: emailTokens.fontFamily
5158
5219
  };
5159
5220
  const summaryRows = [
5160
- { label: l.bookingNumberLabel, value: `#${bookingNumber}` },
5221
+ { label: l.bookingNumberLabel, value: bookingNumber, valueColor: emailTokens.primary },
5161
5222
  { label: l.adventuresRowLabel, value: l.adventuresCountLabel(totalAdventures) },
5162
5223
  { label: l.travellersRowLabel, value: l.travellersCountLabel(totalTravellers) },
5163
5224
  ...(agent == null ? void 0 : agent.name) ? [{ label: l.agentRowLabel, value: agent.name }] : []
@@ -5167,9 +5228,24 @@ function RegistrationReminderEmail({
5167
5228
  const showEarlyBenefit = hasText(v.earlyCompletionBenefit);
5168
5229
  const showImportant = hasText(v.importantNote);
5169
5230
  const showFinalTagline = hasText(v.finalReminderTagline);
5170
- const showMultiTraveller = hasText(v.multiTravellerNote);
5231
+ hasText(v.multiTravellerNote);
5171
5232
  const showDisregard = hasText(v.disregardIfCompleted);
5172
5233
  const showClosingThanks = hasText(v.closingThanks);
5234
+ const sectionDivider = /* @__PURE__ */ jsx(
5235
+ "hr",
5236
+ {
5237
+ style: {
5238
+ border: "none",
5239
+ borderTop: `1px solid ${emailTokens.border}`,
5240
+ marginTop: 0,
5241
+ marginBottom: "24px"
5242
+ }
5243
+ }
5244
+ );
5245
+ const hasIntroBlock = hasText(v.intro) || hasText(v.contextNote);
5246
+ const hasPleaseNote = showPleaseNote;
5247
+ const hasD7Highlight = showImportant && slug === "d_minus_7";
5248
+ const hasD2Highlight = showFinalTagline || showImportant && slug === "d_minus_2";
5173
5249
  return /* @__PURE__ */ jsxs(
5174
5250
  "div",
5175
5251
  {
@@ -5193,45 +5269,18 @@ function RegistrationReminderEmail({
5193
5269
  hasText(l.intermediateHello) && /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px" }, children: l.intermediateHello }),
5194
5270
  hasText(v.intro) && /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px" }, children: v.intro }),
5195
5271
  hasText(v.contextNote) && /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px" }, children: v.contextNote }),
5196
- showPleaseNote && /* @__PURE__ */ jsxs("div", { style: { marginBottom: "24px" }, children: [
5197
- /* @__PURE__ */ jsx("p", { style: { marginBottom: "8px", fontWeight: 700, color: emailTokens.foreground }, children: v.pleaseNoteHeader }),
5198
- /* @__PURE__ */ jsx("ul", { style: { paddingLeft: "20px", margin: 0 }, children: v.pleaseNoteBullets.map((b, i) => /* @__PURE__ */ jsx("li", { style: { marginBottom: "6px", color: emailTokens.bodyText }, children: b }, i)) })
5199
- ] }),
5200
- showBookerCoord && /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px" }, children: v.bookerCoordinationNote }),
5201
- /* @__PURE__ */ jsx(
5202
- "hr",
5203
- {
5204
- style: {
5205
- border: "none",
5206
- borderTop: `1px solid ${emailTokens.border}`,
5207
- marginBottom: "24px"
5208
- }
5209
- }
5210
- ),
5211
- /* @__PURE__ */ jsx(BookingSummary, { heading: l.bookingSummaryHeader, rows: summaryRows }),
5212
- showImportant && slug === "d_minus_7" && /* @__PURE__ */ jsx(
5213
- "p",
5214
- {
5215
- style: {
5216
- marginBottom: "20px",
5217
- padding: "12px 16px",
5218
- borderRadius: "8px",
5219
- backgroundColor: "#fef3c7",
5220
- color: "#78350f",
5221
- fontWeight: 600
5222
- },
5223
- children: v.importantNote
5224
- }
5225
- ),
5272
+ hasIntroBlock && sectionDivider,
5273
+ slug === "d_minus_30" && /* @__PURE__ */ jsx(BookingSummary, { heading: l.bookingSummaryHeader, rows: summaryRows }),
5274
+ slug === "d_minus_15" && showBookerCoord && /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px" }, children: v.bookerCoordinationNote }),
5226
5275
  hasItems(adventures) && /* @__PURE__ */ jsxs(Fragment, { children: [
5227
5276
  /* @__PURE__ */ jsx(
5228
5277
  "p",
5229
5278
  {
5230
5279
  style: {
5231
- marginTop: "8px",
5280
+ marginTop: 0,
5232
5281
  marginBottom: "12px",
5233
5282
  fontWeight: 700,
5234
- fontSize: "15px",
5283
+ fontSize: "16px",
5235
5284
  color: emailTokens.foreground
5236
5285
  },
5237
5286
  children: l.progressHeader
@@ -5297,8 +5346,8 @@ function RegistrationReminderEmail({
5297
5346
  `${adv.name}-${i}`
5298
5347
  ))
5299
5348
  ] }),
5300
- showEarlyBenefit && /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px", color: emailTokens.bodyText }, children: v.earlyCompletionBenefit }),
5301
- (showFinalTagline || showImportant && slug === "d_minus_2") && /* @__PURE__ */ jsxs(
5349
+ slug === "d_minus_15" && showEarlyBenefit && /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px", color: emailTokens.bodyText }, children: v.earlyCompletionBenefit }),
5350
+ slug === "d_minus_2" && hasD2Highlight && /* @__PURE__ */ jsxs(
5302
5351
  "div",
5303
5352
  {
5304
5353
  style: {
@@ -5311,12 +5360,47 @@ function RegistrationReminderEmail({
5311
5360
  },
5312
5361
  children: [
5313
5362
  showFinalTagline && /* @__PURE__ */ jsx("p", { style: { margin: 0, marginBottom: showImportant ? "8px" : 0, fontWeight: 700 }, children: v.finalReminderTagline }),
5314
- showImportant && slug === "d_minus_2" && /* @__PURE__ */ jsx("p", { style: { margin: 0 }, children: v.importantNote })
5363
+ showImportant && /* @__PURE__ */ jsx("p", { style: { margin: 0 }, children: v.importantNote })
5315
5364
  ]
5316
5365
  }
5317
5366
  ),
5318
- showMultiTraveller && /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px", color: emailTokens.bodyText }, children: v.multiTravellerNote }),
5319
5367
  /* @__PURE__ */ jsx("div", { style: { marginBottom: "24px", textAlign: "left" }, children: /* @__PURE__ */ jsx("a", { href: ctaUrl, style: ctaStyle, children: l.ctaLabel }) }),
5368
+ slug === "d_minus_7" && hasD7Highlight && /* @__PURE__ */ jsx(
5369
+ "p",
5370
+ {
5371
+ style: {
5372
+ marginBottom: "20px",
5373
+ padding: "12px 16px",
5374
+ borderRadius: "8px",
5375
+ backgroundColor: "#fef3c7",
5376
+ color: "#78350f",
5377
+ fontWeight: 600
5378
+ },
5379
+ children: v.importantNote
5380
+ }
5381
+ ),
5382
+ slug !== "d_minus_30" && /* @__PURE__ */ jsxs(Fragment, { children: [
5383
+ sectionDivider,
5384
+ /* @__PURE__ */ jsx(BookingSummary, { heading: l.bookingSummaryHeader, rows: summaryRows })
5385
+ ] }),
5386
+ hasPleaseNote && /* @__PURE__ */ jsxs(Fragment, { children: [
5387
+ sectionDivider,
5388
+ /* @__PURE__ */ jsx(
5389
+ "p",
5390
+ {
5391
+ style: {
5392
+ marginTop: 0,
5393
+ marginBottom: "12px",
5394
+ fontWeight: 700,
5395
+ fontSize: "16px",
5396
+ color: emailTokens.foreground
5397
+ },
5398
+ children: v.pleaseNoteHeader
5399
+ }
5400
+ ),
5401
+ /* @__PURE__ */ jsx("ul", { style: { paddingLeft: "20px", margin: 0, marginBottom: "24px" }, children: v.pleaseNoteBullets.map((b, i) => /* @__PURE__ */ jsx("li", { style: { marginBottom: "6px", color: emailTokens.bodyText }, children: b }, i)) })
5402
+ ] }),
5403
+ sectionDivider,
5320
5404
  /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px", fontSize: "14px", fontWeight: 700, color: emailTokens.bodyText }, children: (agent == null ? void 0 : agent.name) ? l.closingAgent(agent.name, {
5321
5405
  whatsappUrl: agent.whatsappUrl,
5322
5406
  email: agent.email
@@ -5435,37 +5519,16 @@ function PaymentReceiptEmail({
5435
5519
  ] }) })
5436
5520
  }
5437
5521
  ),
5438
- /* @__PURE__ */ jsx("p", { style: { marginBottom: "12px", fontWeight: 700, color: emailTokens.foreground, fontSize: "16px" }, children: l.summaryHeading }),
5439
5522
  /* @__PURE__ */ jsx(
5440
- "div",
5523
+ BookingSummary,
5441
5524
  {
5442
- style: {
5443
- borderRadius: "12px",
5444
- border: `1px solid ${emailTokens.border}`,
5445
- overflow: "hidden",
5446
- marginBottom: "24px"
5447
- },
5448
- children: /* @__PURE__ */ jsx("table", { style: { width: "100%", fontSize: "14px", borderCollapse: "collapse" }, children: /* @__PURE__ */ jsxs("tbody", { children: [
5449
- summaryRows.map((row, i) => /* @__PURE__ */ jsxs("tr", { style: i > 0 ? { borderTop: `1px solid ${emailTokens.border}` } : {}, children: [
5450
- /* @__PURE__ */ jsx("td", { style: { padding: "10px 16px", color: emailTokens.mutedForeground, verticalAlign: "top" }, children: row.label }),
5451
- /* @__PURE__ */ jsx("td", { style: { padding: "10px 16px", textAlign: "right", fontWeight: 500, color: emailTokens.foreground, whiteSpace: "nowrap" }, children: row.value })
5452
- ] }, i)),
5453
- isPaidInFull && /* @__PURE__ */ jsx("tr", { children: /* @__PURE__ */ jsx(
5454
- "td",
5455
- {
5456
- colSpan: 2,
5457
- style: {
5458
- padding: "12px 16px",
5459
- textAlign: "center",
5460
- fontWeight: 600,
5461
- color: emailTokens.green,
5462
- backgroundColor: emailTokens.greenBg,
5463
- borderTop: `1px solid ${emailTokens.border}`
5464
- },
5465
- children: l.paidInFullMessage
5466
- }
5467
- ) })
5468
- ] }) })
5525
+ heading: l.summaryHeading,
5526
+ rows: summaryRows,
5527
+ footer: isPaidInFull ? {
5528
+ text: l.paidInFullMessage,
5529
+ color: emailTokens.green,
5530
+ backgroundColor: emailTokens.greenBg
5531
+ } : void 0
5469
5532
  }
5470
5533
  ),
5471
5534
  /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px", fontSize: "14px", color: emailTokens.bodyText }, children: l.closingMessage }),
@@ -5717,6 +5780,17 @@ function PaymentReminderEmail({
5717
5780
  ]
5718
5781
  }
5719
5782
  ) }),
5783
+ /* @__PURE__ */ jsx(
5784
+ "hr",
5785
+ {
5786
+ style: {
5787
+ border: "none",
5788
+ borderTop: `1px solid ${emailTokens.border}`,
5789
+ marginTop: 0,
5790
+ marginBottom: "24px"
5791
+ }
5792
+ }
5793
+ ),
5720
5794
  showDisregard && /* @__PURE__ */ jsx(
5721
5795
  "p",
5722
5796
  {
@@ -11679,6 +11753,6 @@ function LeadCapturePopup({
11679
11753
  );
11680
11754
  }
11681
11755
 
11682
- export { ActivityCard, AgentContactCard, Alert, BirthDateField, BookingAdventureCard, BookingConfirmation, BookingConfirmationEmail, BookingConfirmedCard, BookingDetails, BookingForm, BookingOtpEmail, BookingShell, BookingSummary, Button, COUNTRIES, CounterField, CountrySearchField, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, FilterPanel, FloatingInput, FloatingSelect, Itinerary, ItineraryDay, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, MenuTrip, OTPCodeInput, Offer, OfferAdventureCard, PaymentAmountSelector, PaymentDetailsBlock, PaymentMethodSelector, PaymentModalShell, PaymentReceiptEmail, PaymentReminderEmail, PhoneCountrySelect, PhotoGallery, PricingTrip, RegistrationForm, RegistrationProgressBar, RegistrationReminderEmail, RegistrationSuccessCard, SiteHeader, TERMS_ACCEPT_KEY, TermsSection, ThemeToggle, Toast, TransferDetailsBlock, TravellerFormInviteEmail, TripCard, TripHeader, TripPage, TrustpilotEmbed, buttonVariants, cn, emailTokens, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, wrapEmailHtml };
11756
+ export { ActivityCard, AgentContactCard, Alert, BirthDateField, BookingAdventureCard, BookingConfirmedCard, BookingCreatedEmail, BookingDetails, BookingForm, BookingOtpEmail, BookingPaymentConfirmationEmail, BookingShell, BookingSummary, Button, COUNTRIES, CounterField, CountrySearchField, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, FilterPanel, FloatingInput, FloatingSelect, Itinerary, ItineraryDay, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, MenuTrip, OTPCodeInput, Offer, OfferAdventureCard, PaymentAmountSelector, PaymentDetailsBlock, PaymentMethodSelector, PaymentModalShell, PaymentReceiptEmail, PaymentReminderEmail, PhoneCountrySelect, PhotoGallery, PricingTrip, RegistrationForm, RegistrationProgressBar, RegistrationReminderEmail, RegistrationSuccessCard, SiteHeader, TERMS_ACCEPT_KEY, TermsSection, ThemeToggle, Toast, TransferDetailsBlock, TravellerFormInviteEmail, TripCard, TripHeader, TripPage, TrustpilotEmbed, buttonVariants, cn, emailTokens, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, wrapEmailHtml };
11683
11757
  //# sourceMappingURL=index.js.map
11684
11758
  //# sourceMappingURL=index.js.map