@planetaexo/design-system 0.4.13 → 0.4.15

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.d.cts CHANGED
@@ -420,7 +420,7 @@ interface BookingOtpEmailProps {
420
420
  declare function BookingOtpEmail({ bodyMessage, expiryMessage, logoUrl, className, }: BookingOtpEmailProps): react_jsx_runtime.JSX.Element;
421
421
 
422
422
  interface TravellerFormInviteLink {
423
- adventureName: string;
423
+ adventureName?: string;
424
424
  url: string;
425
425
  }
426
426
  interface TravellerFormInviteEmailLabels {
package/dist/index.d.ts CHANGED
@@ -420,7 +420,7 @@ interface BookingOtpEmailProps {
420
420
  declare function BookingOtpEmail({ bodyMessage, expiryMessage, logoUrl, className, }: BookingOtpEmailProps): react_jsx_runtime.JSX.Element;
421
421
 
422
422
  interface TravellerFormInviteLink {
423
- adventureName: string;
423
+ adventureName?: string;
424
424
  url: string;
425
425
  }
426
426
  interface TravellerFormInviteEmailLabels {
package/dist/index.js CHANGED
@@ -3171,7 +3171,13 @@ function BookingConfirmation({
3171
3171
  adventure.description && /* @__PURE__ */ jsxs("div", { style: { marginTop: "4px" }, children: [
3172
3172
  /* @__PURE__ */ jsx("hr", { style: { border: "none", borderTop: `1px solid ${emailTokens.border}`, marginBottom: "10px" } }),
3173
3173
  /* @__PURE__ */ jsx("p", { style: { fontSize: "10px", fontWeight: "700", color: emailTokens.mutedForeground, textTransform: "uppercase", letterSpacing: "0.1em", margin: "0 0 8px 0" }, children: l.itineraryLabel }),
3174
- /* @__PURE__ */ jsx("p", { style: { fontSize: "14px", color: emailTokens.bodyText, lineHeight: "1.6", margin: 0 }, children: adventure.description })
3174
+ /* @__PURE__ */ jsx(
3175
+ "div",
3176
+ {
3177
+ style: { fontSize: "14px", color: emailTokens.bodyText, lineHeight: "1.6", margin: 0 },
3178
+ dangerouslySetInnerHTML: { __html: adventure.description }
3179
+ }
3180
+ )
3175
3181
  ] }),
3176
3182
  adventure.included && adventure.included.length > 0 && /* @__PURE__ */ jsxs("div", { style: { marginTop: "10px" }, children: [
3177
3183
  /* @__PURE__ */ jsx("h4", { style: { fontSize: "14px", fontWeight: "700", color: emailTokens.foreground, margin: "0 0 8px 0" }, children: l.includedLabel }),
@@ -3429,7 +3435,7 @@ function TravellerFormInviteEmail({
3429
3435
  /* @__PURE__ */ jsx("p", { style: { fontSize: "15px", lineHeight: "1.5", margin: "0 0 8px" }, children: bodyIntro }),
3430
3436
  /* @__PURE__ */ jsx("p", { style: { fontSize: "15px", lineHeight: "1.5", margin: "0 0 20px" }, children: bodyInstruction }),
3431
3437
  /* @__PURE__ */ jsx("ul", { style: { listStyle: "none", padding: 0, margin: "0 0 24px" }, children: links.map((link, i) => /* @__PURE__ */ jsxs("li", { style: { marginBottom: "12px" }, children: [
3432
- /* @__PURE__ */ jsx(
3438
+ link.adventureName && /* @__PURE__ */ jsx(
3433
3439
  "span",
3434
3440
  {
3435
3441
  style: {