@planetaexo/design-system 0.28.0 → 0.30.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
@@ -1055,6 +1055,161 @@ interface BookingConfirmationEmailProps {
1055
1055
  }
1056
1056
  declare function BookingConfirmationEmail({ recipientName, addTravellersUrl, logoUrl, bookingNumber, activity, adventure, startingDate, numberOfPeople, host, labels, className, nextSteps, nextStepsImportant, directBookingLinkLabel, }: BookingConfirmationEmailProps): react_jsx_runtime.JSX.Element;
1057
1057
 
1058
+ interface BookingSummaryRow {
1059
+ /** Label da linha (coluna esquerda, mutedForeground). */
1060
+ label: string;
1061
+ /** Valor da linha (coluna direita, foreground + fontWeight 500). */
1062
+ value: string | number;
1063
+ }
1064
+ interface BookingSummaryProps {
1065
+ /** Heading do bloco (ex.: "Booking summary" ou "📝 Here's a quick summary of your booking:"). */
1066
+ heading: string;
1067
+ /** Linhas do resumo. Cada par renderiza como (label | value) na tabela. */
1068
+ rows: BookingSummaryRow[];
1069
+ /** className adicional no wrapper externo. */
1070
+ className?: string;
1071
+ }
1072
+ declare function BookingSummary({ heading, rows, className }: BookingSummaryProps): react_jsx_runtime.JSX.Element;
1073
+
1074
+ type RegistrationProgressTone = "complete" | "partial" | "empty";
1075
+ interface RegistrationProgressBarProps {
1076
+ /** Quantidade completada (apenas informativo — não usado pra calcular pct internamente). */
1077
+ completed: number;
1078
+ /** Total (apenas informativo). */
1079
+ total: number;
1080
+ /** Tom do progresso, decidido pelo helper compartilhado. */
1081
+ tone: RegistrationProgressTone;
1082
+ /** Percentual já clampado entre 0 e 100 (decidido pelo helper). */
1083
+ pct: number;
1084
+ /** Cor do fill da barra (hex, ex. "#22c55e"). */
1085
+ barHex: string;
1086
+ /** Cor do label de texto (hex, ex. "#4ade80"). */
1087
+ labelHex: string;
1088
+ /** Cor do trilho de fundo (hex). Default: "#e5e7eb" (cinza claro pra email com fundo branco). */
1089
+ railHex?: string;
1090
+ /** Label completo da linha 1 (ex.: "Completed: 2 / 4 travellers"). */
1091
+ label: string;
1092
+ }
1093
+ declare function RegistrationProgressBar({ tone, pct, barHex, labelHex, railHex, label, }: RegistrationProgressBarProps): react_jsx_runtime.JSX.Element;
1094
+
1095
+ type RegistrationReminderSlug = "d_minus_30" | "d_minus_15" | "d_minus_7" | "d_minus_2";
1096
+ interface RegistrationReminderAdventureBlock {
1097
+ /** Nome da aventura já resolvido por locale. */
1098
+ name: string;
1099
+ /** Data de início já formatada (long, locale-aware). */
1100
+ startDateFormatted: string;
1101
+ /** Total de travellers atribuídos à aventura. */
1102
+ totalTravellers: number;
1103
+ /** Travellers cuja formEntry.completedAt != null para esta aventura. */
1104
+ completedTravellers: number;
1105
+ /** Tom calculado pelo helper compartilhado `getRegistrationProgressTone`. */
1106
+ tone: RegistrationProgressTone;
1107
+ /** Percentual já clampado entre 0 e 100. */
1108
+ pct: number;
1109
+ /** Cor do fill da barra (hex). */
1110
+ barHex: string;
1111
+ /** Cor do label de progresso (hex). */
1112
+ labelHex: string;
1113
+ /** Cor do trilho de fundo (hex). */
1114
+ railHex?: string;
1115
+ }
1116
+ /**
1117
+ * URLs/dados de contato do agente para renderizar `WhatsApp` e `email`
1118
+ * como hyperlinks inline no closing. Quando uma URL é `undefined`, a palavra
1119
+ * correspondente cai em plain text (mesmo padrão do `PaymentReminderEmail`).
1120
+ */
1121
+ interface RegistrationReminderAgentContactLinks {
1122
+ /** URL completa do WhatsApp (ex.: "https://wa.me/5511987654321"). */
1123
+ whatsappUrl?: string;
1124
+ /** E-mail do agente (renderizado como `mailto:`). */
1125
+ email?: string;
1126
+ }
1127
+ interface RegistrationReminderEmailVariantLabels {
1128
+ /** Subject literal do email (EN 1:1 com o briefing). */
1129
+ subject?: string;
1130
+ /** 1º parágrafo após o "Hi {firstName}," — varia por slug. */
1131
+ intro?: string;
1132
+ /** 2º parágrafo (logística / regra geral) — varia por slug. */
1133
+ contextNote?: string;
1134
+ /** Cabeçalho do bloco de bullets em D-30 ("Please note:"). Vazio para outros slugs. */
1135
+ pleaseNoteHeader?: string;
1136
+ /** Bullets do bloco "Please note" em D-30. [] para outros slugs. */
1137
+ pleaseNoteBullets?: string[];
1138
+ /** Coordenação do booker — só em D-15. */
1139
+ bookerCoordinationNote?: string;
1140
+ /** Frase antes do CTA explicando que abrir o painel é o próximo passo. */
1141
+ progressIntro?: string;
1142
+ /** Benefício de completar cedo — só em D-15. */
1143
+ earlyCompletionBenefit?: string;
1144
+ /** Nota destacada (D-7) ou tagline final (D-2). */
1145
+ importantNote?: string;
1146
+ /** Tagline em destaque (D-2 only): "This is a final reminder." */
1147
+ finalReminderTagline?: string;
1148
+ /** Nota multi-traveller — só em D-7. */
1149
+ multiTravellerNote?: string;
1150
+ /** "If registrations have already been completed, please disregard this email." — só em D-2. */
1151
+ disregardIfCompleted?: string;
1152
+ /** Frase de fechamento positivo (D-2 only). */
1153
+ closingThanks?: string;
1154
+ }
1155
+ interface RegistrationReminderEmailLabels {
1156
+ logoAlt?: string;
1157
+ greeting?: (firstName: string) => string;
1158
+ intermediateHello?: string;
1159
+ bookingSummaryHeader?: string;
1160
+ bookingNumberLabel?: string;
1161
+ adventuresCountLabel?: (count: number) => string;
1162
+ travellersCountLabel?: (count: number) => string;
1163
+ /** Label da row "Adventures" na BookingSummary. */
1164
+ adventuresRowLabel?: string;
1165
+ /** Label da row "Travellers" na BookingSummary. */
1166
+ travellersRowLabel?: string;
1167
+ /** Label da row "Agent" na BookingSummary. */
1168
+ agentRowLabel?: string;
1169
+ progressHeader?: string;
1170
+ startsLabel?: string;
1171
+ completedFractionLabel?: (completed: number, total: number) => string;
1172
+ ctaLabel?: string;
1173
+ /**
1174
+ * Closing principal quando há agente. Recebe nome + URLs de contato e
1175
+ * retorna JSX com WhatsApp/email como hyperlinks inline na frase
1176
+ * (paridade visual com `PaymentReminderEmail.closingAgent`).
1177
+ * Quando URLs ausentes, as palavras "WhatsApp" e "email" caem em plain text.
1178
+ */
1179
+ closingAgent?: (agentName: string, contact: RegistrationReminderAgentContactLinks) => React.ReactNode;
1180
+ /**
1181
+ * Closing alternativo quando o booking não tem agente atribuído.
1182
+ * Texto plano sem hyperlinks — paridade com `PaymentReminderEmail.closingNoAgent`.
1183
+ */
1184
+ closingNoAgent?: string;
1185
+ teamSignature?: string;
1186
+ variants?: {
1187
+ d_minus_30?: RegistrationReminderEmailVariantLabels;
1188
+ d_minus_15?: RegistrationReminderEmailVariantLabels;
1189
+ d_minus_7?: RegistrationReminderEmailVariantLabels;
1190
+ d_minus_2?: RegistrationReminderEmailVariantLabels;
1191
+ };
1192
+ }
1193
+ interface RegistrationReminderEmailProps {
1194
+ slug: RegistrationReminderSlug;
1195
+ locale: "en" | "pt" | "fr" | "de";
1196
+ recipientFirstName: string;
1197
+ bookingNumber: string;
1198
+ totalAdventures: number;
1199
+ totalTravellers: number;
1200
+ adventures: RegistrationReminderAdventureBlock[];
1201
+ ctaUrl: string;
1202
+ agent: {
1203
+ name: string;
1204
+ whatsappUrl?: string;
1205
+ email?: string;
1206
+ } | null;
1207
+ logoUrl?: string;
1208
+ labels?: RegistrationReminderEmailLabels;
1209
+ className?: string;
1210
+ }
1211
+ declare function RegistrationReminderEmail({ slug, recipientFirstName, bookingNumber, totalAdventures, totalTravellers, adventures, ctaUrl, agent, logoUrl, labels, className, }: RegistrationReminderEmailProps): react_jsx_runtime.JSX.Element;
1212
+
1058
1213
  interface PaymentReceiptEmailLabels {
1059
1214
  logoAlt?: string;
1060
1215
  greeting?: (name: string) => string;
@@ -2670,4 +2825,4 @@ declare function LeadCapturePopup({ config: _config, }: {
2670
2825
  config: LeadCapturePopupConfig;
2671
2826
  }): react_jsx_runtime.JSX.Element | null;
2672
2827
 
2673
- export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, BookingConfirmation, BookingConfirmationEmail, type BookingConfirmationEmailLabels, type BookingConfirmationEmailProps, type BookingConfirmationLabels, type BookingConfirmationProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingShell, type BookingShellProps, type BookingStatus, type BookingSummaryLineItem, type BookingTraveller, Button, type ButtonProps, COUNTRIES, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, type DatePickerFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Itinerary, ItineraryDay, type ItineraryDayPhoto, type ItineraryDayPhotoLayout, type ItineraryDayProps, type ItineraryDaySpec, type ItineraryProps, type ItineraryRoute, type ItineraryStop, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, type LeadCapturePopupConfig, MenuTrip, type MenuTripProps, type MenuTripSection, type MenuTripVariant, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, type PaymentReminderAgentContactLinks, PaymentReminderEmail, type PaymentReminderEmailAdventure, type PaymentReminderEmailLabels, type PaymentReminderEmailLineItem, type PaymentReminderEmailProps, type PaymentReminderEmailVariantLabels, type PaymentReminderVariant, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, TransferDetailsBlock, type TransferDetailsBlockProps, type TravellerFormConfig, type TravellerFormData, TravellerFormInviteEmail, type TravellerFormInviteEmailLabels, type TravellerFormInviteEmailProps, type TravellerFormInviteLink, type TravellerFormLabels, TripCard, type TripCardCta, type TripCardProps, type TripCardSize, type TripCardStatus, type TripDuration, type TripFaq, TripHeader, type TripHeaderProps, type TripHighlight, type TripInfoGroup, type TripItineraryDay, type TripItineraryStep, type TripMeetingPoint, type TripOverviewHighlight, TripPage, type TripPageProps, type TripReview, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, buttonVariants, cn, emailTokens, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, wrapEmailHtml };
2828
+ export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, BookingConfirmation, BookingConfirmationEmail, type BookingConfirmationEmailLabels, type BookingConfirmationEmailProps, type BookingConfirmationLabels, type BookingConfirmationProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingShell, type BookingShellProps, type BookingStatus, BookingSummary, type BookingSummaryLineItem, type BookingSummaryProps, type BookingSummaryRow, type BookingTraveller, Button, type ButtonProps, COUNTRIES, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, type DatePickerFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Itinerary, ItineraryDay, type ItineraryDayPhoto, type ItineraryDayPhotoLayout, type ItineraryDayProps, type ItineraryDaySpec, type ItineraryProps, type ItineraryRoute, type ItineraryStop, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, type LeadCapturePopupConfig, MenuTrip, type MenuTripProps, type MenuTripSection, type MenuTripVariant, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, type PaymentReminderAgentContactLinks, PaymentReminderEmail, type PaymentReminderEmailAdventure, type PaymentReminderEmailLabels, type PaymentReminderEmailLineItem, type PaymentReminderEmailProps, type PaymentReminderEmailVariantLabels, type PaymentReminderVariant, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationProgressBar, type RegistrationProgressBarProps, type RegistrationProgressTone, type RegistrationReminderAdventureBlock, type RegistrationReminderAgentContactLinks, RegistrationReminderEmail, type RegistrationReminderEmailLabels, type RegistrationReminderEmailProps, type RegistrationReminderEmailVariantLabels, type RegistrationReminderSlug, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, TransferDetailsBlock, type TransferDetailsBlockProps, type TravellerFormConfig, type TravellerFormData, TravellerFormInviteEmail, type TravellerFormInviteEmailLabels, type TravellerFormInviteEmailProps, type TravellerFormInviteLink, type TravellerFormLabels, TripCard, type TripCardCta, type TripCardProps, type TripCardSize, type TripCardStatus, type TripDuration, type TripFaq, TripHeader, type TripHeaderProps, type TripHighlight, type TripInfoGroup, type TripItineraryDay, type TripItineraryStep, type TripMeetingPoint, type TripOverviewHighlight, TripPage, type TripPageProps, type TripReview, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, buttonVariants, cn, emailTokens, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, wrapEmailHtml };
package/dist/index.d.ts CHANGED
@@ -1055,6 +1055,161 @@ interface BookingConfirmationEmailProps {
1055
1055
  }
1056
1056
  declare function BookingConfirmationEmail({ recipientName, addTravellersUrl, logoUrl, bookingNumber, activity, adventure, startingDate, numberOfPeople, host, labels, className, nextSteps, nextStepsImportant, directBookingLinkLabel, }: BookingConfirmationEmailProps): react_jsx_runtime.JSX.Element;
1057
1057
 
1058
+ interface BookingSummaryRow {
1059
+ /** Label da linha (coluna esquerda, mutedForeground). */
1060
+ label: string;
1061
+ /** Valor da linha (coluna direita, foreground + fontWeight 500). */
1062
+ value: string | number;
1063
+ }
1064
+ interface BookingSummaryProps {
1065
+ /** Heading do bloco (ex.: "Booking summary" ou "📝 Here's a quick summary of your booking:"). */
1066
+ heading: string;
1067
+ /** Linhas do resumo. Cada par renderiza como (label | value) na tabela. */
1068
+ rows: BookingSummaryRow[];
1069
+ /** className adicional no wrapper externo. */
1070
+ className?: string;
1071
+ }
1072
+ declare function BookingSummary({ heading, rows, className }: BookingSummaryProps): react_jsx_runtime.JSX.Element;
1073
+
1074
+ type RegistrationProgressTone = "complete" | "partial" | "empty";
1075
+ interface RegistrationProgressBarProps {
1076
+ /** Quantidade completada (apenas informativo — não usado pra calcular pct internamente). */
1077
+ completed: number;
1078
+ /** Total (apenas informativo). */
1079
+ total: number;
1080
+ /** Tom do progresso, decidido pelo helper compartilhado. */
1081
+ tone: RegistrationProgressTone;
1082
+ /** Percentual já clampado entre 0 e 100 (decidido pelo helper). */
1083
+ pct: number;
1084
+ /** Cor do fill da barra (hex, ex. "#22c55e"). */
1085
+ barHex: string;
1086
+ /** Cor do label de texto (hex, ex. "#4ade80"). */
1087
+ labelHex: string;
1088
+ /** Cor do trilho de fundo (hex). Default: "#e5e7eb" (cinza claro pra email com fundo branco). */
1089
+ railHex?: string;
1090
+ /** Label completo da linha 1 (ex.: "Completed: 2 / 4 travellers"). */
1091
+ label: string;
1092
+ }
1093
+ declare function RegistrationProgressBar({ tone, pct, barHex, labelHex, railHex, label, }: RegistrationProgressBarProps): react_jsx_runtime.JSX.Element;
1094
+
1095
+ type RegistrationReminderSlug = "d_minus_30" | "d_minus_15" | "d_minus_7" | "d_minus_2";
1096
+ interface RegistrationReminderAdventureBlock {
1097
+ /** Nome da aventura já resolvido por locale. */
1098
+ name: string;
1099
+ /** Data de início já formatada (long, locale-aware). */
1100
+ startDateFormatted: string;
1101
+ /** Total de travellers atribuídos à aventura. */
1102
+ totalTravellers: number;
1103
+ /** Travellers cuja formEntry.completedAt != null para esta aventura. */
1104
+ completedTravellers: number;
1105
+ /** Tom calculado pelo helper compartilhado `getRegistrationProgressTone`. */
1106
+ tone: RegistrationProgressTone;
1107
+ /** Percentual já clampado entre 0 e 100. */
1108
+ pct: number;
1109
+ /** Cor do fill da barra (hex). */
1110
+ barHex: string;
1111
+ /** Cor do label de progresso (hex). */
1112
+ labelHex: string;
1113
+ /** Cor do trilho de fundo (hex). */
1114
+ railHex?: string;
1115
+ }
1116
+ /**
1117
+ * URLs/dados de contato do agente para renderizar `WhatsApp` e `email`
1118
+ * como hyperlinks inline no closing. Quando uma URL é `undefined`, a palavra
1119
+ * correspondente cai em plain text (mesmo padrão do `PaymentReminderEmail`).
1120
+ */
1121
+ interface RegistrationReminderAgentContactLinks {
1122
+ /** URL completa do WhatsApp (ex.: "https://wa.me/5511987654321"). */
1123
+ whatsappUrl?: string;
1124
+ /** E-mail do agente (renderizado como `mailto:`). */
1125
+ email?: string;
1126
+ }
1127
+ interface RegistrationReminderEmailVariantLabels {
1128
+ /** Subject literal do email (EN 1:1 com o briefing). */
1129
+ subject?: string;
1130
+ /** 1º parágrafo após o "Hi {firstName}," — varia por slug. */
1131
+ intro?: string;
1132
+ /** 2º parágrafo (logística / regra geral) — varia por slug. */
1133
+ contextNote?: string;
1134
+ /** Cabeçalho do bloco de bullets em D-30 ("Please note:"). Vazio para outros slugs. */
1135
+ pleaseNoteHeader?: string;
1136
+ /** Bullets do bloco "Please note" em D-30. [] para outros slugs. */
1137
+ pleaseNoteBullets?: string[];
1138
+ /** Coordenação do booker — só em D-15. */
1139
+ bookerCoordinationNote?: string;
1140
+ /** Frase antes do CTA explicando que abrir o painel é o próximo passo. */
1141
+ progressIntro?: string;
1142
+ /** Benefício de completar cedo — só em D-15. */
1143
+ earlyCompletionBenefit?: string;
1144
+ /** Nota destacada (D-7) ou tagline final (D-2). */
1145
+ importantNote?: string;
1146
+ /** Tagline em destaque (D-2 only): "This is a final reminder." */
1147
+ finalReminderTagline?: string;
1148
+ /** Nota multi-traveller — só em D-7. */
1149
+ multiTravellerNote?: string;
1150
+ /** "If registrations have already been completed, please disregard this email." — só em D-2. */
1151
+ disregardIfCompleted?: string;
1152
+ /** Frase de fechamento positivo (D-2 only). */
1153
+ closingThanks?: string;
1154
+ }
1155
+ interface RegistrationReminderEmailLabels {
1156
+ logoAlt?: string;
1157
+ greeting?: (firstName: string) => string;
1158
+ intermediateHello?: string;
1159
+ bookingSummaryHeader?: string;
1160
+ bookingNumberLabel?: string;
1161
+ adventuresCountLabel?: (count: number) => string;
1162
+ travellersCountLabel?: (count: number) => string;
1163
+ /** Label da row "Adventures" na BookingSummary. */
1164
+ adventuresRowLabel?: string;
1165
+ /** Label da row "Travellers" na BookingSummary. */
1166
+ travellersRowLabel?: string;
1167
+ /** Label da row "Agent" na BookingSummary. */
1168
+ agentRowLabel?: string;
1169
+ progressHeader?: string;
1170
+ startsLabel?: string;
1171
+ completedFractionLabel?: (completed: number, total: number) => string;
1172
+ ctaLabel?: string;
1173
+ /**
1174
+ * Closing principal quando há agente. Recebe nome + URLs de contato e
1175
+ * retorna JSX com WhatsApp/email como hyperlinks inline na frase
1176
+ * (paridade visual com `PaymentReminderEmail.closingAgent`).
1177
+ * Quando URLs ausentes, as palavras "WhatsApp" e "email" caem em plain text.
1178
+ */
1179
+ closingAgent?: (agentName: string, contact: RegistrationReminderAgentContactLinks) => React.ReactNode;
1180
+ /**
1181
+ * Closing alternativo quando o booking não tem agente atribuído.
1182
+ * Texto plano sem hyperlinks — paridade com `PaymentReminderEmail.closingNoAgent`.
1183
+ */
1184
+ closingNoAgent?: string;
1185
+ teamSignature?: string;
1186
+ variants?: {
1187
+ d_minus_30?: RegistrationReminderEmailVariantLabels;
1188
+ d_minus_15?: RegistrationReminderEmailVariantLabels;
1189
+ d_minus_7?: RegistrationReminderEmailVariantLabels;
1190
+ d_minus_2?: RegistrationReminderEmailVariantLabels;
1191
+ };
1192
+ }
1193
+ interface RegistrationReminderEmailProps {
1194
+ slug: RegistrationReminderSlug;
1195
+ locale: "en" | "pt" | "fr" | "de";
1196
+ recipientFirstName: string;
1197
+ bookingNumber: string;
1198
+ totalAdventures: number;
1199
+ totalTravellers: number;
1200
+ adventures: RegistrationReminderAdventureBlock[];
1201
+ ctaUrl: string;
1202
+ agent: {
1203
+ name: string;
1204
+ whatsappUrl?: string;
1205
+ email?: string;
1206
+ } | null;
1207
+ logoUrl?: string;
1208
+ labels?: RegistrationReminderEmailLabels;
1209
+ className?: string;
1210
+ }
1211
+ declare function RegistrationReminderEmail({ slug, recipientFirstName, bookingNumber, totalAdventures, totalTravellers, adventures, ctaUrl, agent, logoUrl, labels, className, }: RegistrationReminderEmailProps): react_jsx_runtime.JSX.Element;
1212
+
1058
1213
  interface PaymentReceiptEmailLabels {
1059
1214
  logoAlt?: string;
1060
1215
  greeting?: (name: string) => string;
@@ -2670,4 +2825,4 @@ declare function LeadCapturePopup({ config: _config, }: {
2670
2825
  config: LeadCapturePopupConfig;
2671
2826
  }): react_jsx_runtime.JSX.Element | null;
2672
2827
 
2673
- export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, BookingConfirmation, BookingConfirmationEmail, type BookingConfirmationEmailLabels, type BookingConfirmationEmailProps, type BookingConfirmationLabels, type BookingConfirmationProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingShell, type BookingShellProps, type BookingStatus, type BookingSummaryLineItem, type BookingTraveller, Button, type ButtonProps, COUNTRIES, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, type DatePickerFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Itinerary, ItineraryDay, type ItineraryDayPhoto, type ItineraryDayPhotoLayout, type ItineraryDayProps, type ItineraryDaySpec, type ItineraryProps, type ItineraryRoute, type ItineraryStop, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, type LeadCapturePopupConfig, MenuTrip, type MenuTripProps, type MenuTripSection, type MenuTripVariant, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, type PaymentReminderAgentContactLinks, PaymentReminderEmail, type PaymentReminderEmailAdventure, type PaymentReminderEmailLabels, type PaymentReminderEmailLineItem, type PaymentReminderEmailProps, type PaymentReminderEmailVariantLabels, type PaymentReminderVariant, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, TransferDetailsBlock, type TransferDetailsBlockProps, type TravellerFormConfig, type TravellerFormData, TravellerFormInviteEmail, type TravellerFormInviteEmailLabels, type TravellerFormInviteEmailProps, type TravellerFormInviteLink, type TravellerFormLabels, TripCard, type TripCardCta, type TripCardProps, type TripCardSize, type TripCardStatus, type TripDuration, type TripFaq, TripHeader, type TripHeaderProps, type TripHighlight, type TripInfoGroup, type TripItineraryDay, type TripItineraryStep, type TripMeetingPoint, type TripOverviewHighlight, TripPage, type TripPageProps, type TripReview, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, buttonVariants, cn, emailTokens, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, wrapEmailHtml };
2828
+ export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, BookingConfirmation, BookingConfirmationEmail, type BookingConfirmationEmailLabels, type BookingConfirmationEmailProps, type BookingConfirmationLabels, type BookingConfirmationProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingShell, type BookingShellProps, type BookingStatus, BookingSummary, type BookingSummaryLineItem, type BookingSummaryProps, type BookingSummaryRow, type BookingTraveller, Button, type ButtonProps, COUNTRIES, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, type DatePickerFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Itinerary, ItineraryDay, type ItineraryDayPhoto, type ItineraryDayPhotoLayout, type ItineraryDayProps, type ItineraryDaySpec, type ItineraryProps, type ItineraryRoute, type ItineraryStop, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, type LeadCapturePopupConfig, MenuTrip, type MenuTripProps, type MenuTripSection, type MenuTripVariant, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, type PaymentReminderAgentContactLinks, PaymentReminderEmail, type PaymentReminderEmailAdventure, type PaymentReminderEmailLabels, type PaymentReminderEmailLineItem, type PaymentReminderEmailProps, type PaymentReminderEmailVariantLabels, type PaymentReminderVariant, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationProgressBar, type RegistrationProgressBarProps, type RegistrationProgressTone, type RegistrationReminderAdventureBlock, type RegistrationReminderAgentContactLinks, RegistrationReminderEmail, type RegistrationReminderEmailLabels, type RegistrationReminderEmailProps, type RegistrationReminderEmailVariantLabels, type RegistrationReminderSlug, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, TransferDetailsBlock, type TransferDetailsBlockProps, type TravellerFormConfig, type TravellerFormData, TravellerFormInviteEmail, type TravellerFormInviteEmailLabels, type TravellerFormInviteEmailProps, type TravellerFormInviteLink, type TravellerFormLabels, TripCard, type TripCardCta, type TripCardProps, type TripCardSize, type TripCardStatus, type TripDuration, type TripFaq, TripHeader, type TripHeaderProps, type TripHighlight, type TripInfoGroup, type TripItineraryDay, type TripItineraryStep, type TripMeetingPoint, type TripOverviewHighlight, TripPage, type TripPageProps, type TripReview, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, buttonVariants, cn, emailTokens, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, wrapEmailHtml };