@planetaexo/design-system 0.26.0 → 0.28.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.d.cts CHANGED
@@ -1160,6 +1160,14 @@ interface PaymentReminderEmailAdventure {
1160
1160
  itinerary?: string[];
1161
1161
  /** Subtotal por aventura formatado (ex.: "R$ 1.500,00"). */
1162
1162
  subtotal?: string;
1163
+ /**
1164
+ * URL da imagem de cover (opcional). Propagada ao `BookingAdventureCard`
1165
+ * interno — quando presente, card renderiza com foto da aventura igual ao
1166
+ * `BookingConfirmation`. Paridade visual entre lembretes e confirmation.
1167
+ */
1168
+ image?: string;
1169
+ /** Alt da imagem de cover (default no card: `name`). */
1170
+ imageAlt?: string;
1163
1171
  }
1164
1172
  interface PaymentReminderEmailVariantLabels {
1165
1173
  /** Frase de intro — recebe bookingNumber e data de vencimento já formatada. */
package/dist/index.d.ts CHANGED
@@ -1160,6 +1160,14 @@ interface PaymentReminderEmailAdventure {
1160
1160
  itinerary?: string[];
1161
1161
  /** Subtotal por aventura formatado (ex.: "R$ 1.500,00"). */
1162
1162
  subtotal?: string;
1163
+ /**
1164
+ * URL da imagem de cover (opcional). Propagada ao `BookingAdventureCard`
1165
+ * interno — quando presente, card renderiza com foto da aventura igual ao
1166
+ * `BookingConfirmation`. Paridade visual entre lembretes e confirmation.
1167
+ */
1168
+ image?: string;
1169
+ /** Alt da imagem de cover (default no card: `name`). */
1170
+ imageAlt?: string;
1163
1171
  }
1164
1172
  interface PaymentReminderEmailVariantLabels {
1165
1173
  /** Frase de intro — recebe bookingNumber e data de vencimento já formatada. */
package/dist/index.js CHANGED
@@ -5104,28 +5104,28 @@ var DEFAULT_LABELS6 = {
5104
5104
  dMinus1: {
5105
5105
  intro: (b, d) => `This is a friendly reminder that the remaining balance for your booking #${b} with PlanetaEXO is due tomorrow (${d}).`,
5106
5106
  secureLine: "To secure your booking, please complete the payment through your booking page using the button below:",
5107
- closingThanks: "Many thanks, and we look forward to helping you experience your next adventure with us.",
5107
+ closingThanks: "Many thanks.",
5108
5108
  disregardIfPaid: "",
5109
5109
  closingAlternative: EMPTY_CLOSING_ALTERNATIVE
5110
5110
  },
5111
5111
  dZero: {
5112
5112
  intro: (b, d) => `This is a friendly reminder that the remaining balance for your booking #${b} with PlanetaEXO is due today (${d}).`,
5113
5113
  secureLine: "To keep your booking confirmed, please complete the payment through your booking page using the button below:",
5114
- closingThanks: "Many thanks, and we look forward to welcoming you soon.",
5114
+ closingThanks: "Many thanks.",
5115
5115
  disregardIfPaid: "",
5116
5116
  closingAlternative: EMPTY_CLOSING_ALTERNATIVE
5117
5117
  },
5118
5118
  dPlus1: {
5119
5119
  intro: (b, d) => `We noticed that the remaining balance for your booking #${b} with PlanetaEXO was due yesterday (${d}) and is still pending.`,
5120
5120
  secureLine: "To avoid any impact on your booking confirmation, we kindly ask you to complete the payment as soon as possible through your booking page:",
5121
- closingThanks: "Thank you, and we hope to welcome you on your upcoming adventure soon.",
5121
+ closingThanks: "Thank you.",
5122
5122
  disregardIfPaid: "If you have already completed the payment, please disregard this message.",
5123
5123
  closingAlternative: EMPTY_CLOSING_ALTERNATIVE
5124
5124
  },
5125
5125
  dPlus2: {
5126
5126
  intro: (b, d) => `This is a final reminder regarding the remaining balance for your booking #${b} with PlanetaEXO, which was due on ${d} and is still pending.`,
5127
5127
  secureLine: "To avoid any impact on your booking status or availability, we kindly ask you to complete the payment as soon as possible through your booking page:",
5128
- closingThanks: "Thank you for your attention, and we hope to welcome you on this adventure soon.",
5128
+ closingThanks: "Thank you for your attention.",
5129
5129
  disregardIfPaid: "If you have already completed the payment, please disregard this message.",
5130
5130
  closingAlternative: (agentName, contact) => /* @__PURE__ */ jsxs(Fragment, { children: [
5131
5131
  "If you are experiencing any issues with payment or need additional time, please contact your agent ",
@@ -5265,6 +5265,8 @@ function PaymentReminderEmail({
5265
5265
  travellerCount: adv.travellerCount,
5266
5266
  travellers: adv.travellers,
5267
5267
  itinerary: adv.itinerary,
5268
+ image: adv.image,
5269
+ imageAlt: adv.imageAlt,
5268
5270
  lineItems: adv.lineItems.map((li) => ({
5269
5271
  unitPrice: li.unitPrice,
5270
5272
  quantity: li.quantity,
@@ -5306,7 +5308,7 @@ function PaymentReminderEmail({
5306
5308
  children: variantLabels.disregardIfPaid
5307
5309
  }
5308
5310
  ),
5309
- /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px", fontSize: "14px", color: emailTokens.bodyText }, children: closingMainNode }),
5311
+ /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px", fontSize: "14px", fontWeight: 700, color: emailTokens.bodyText }, children: closingMainNode }),
5310
5312
  /* @__PURE__ */ jsx("p", { style: { marginBottom: "16px", fontSize: "14px", color: emailTokens.bodyText }, children: variantLabels.closingThanks }),
5311
5313
  /* @__PURE__ */ jsx("p", { style: { marginTop: 0, marginBottom: 0, fontSize: "14px", color: emailTokens.bodyText }, children: l.teamSignature })
5312
5314
  ]