@planetaexo/design-system 0.23.4 → 0.25.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.cjs +904 -110
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +229 -1
- package/dist/index.d.ts +229 -1
- package/dist/index.js +903 -111
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -844,6 +844,118 @@ interface BookingConfirmationProps {
|
|
|
844
844
|
}
|
|
845
845
|
declare function BookingConfirmation({ recipientName, logoUrl, bookingReference, adventures, summaryLineItems, subtotal, total, depositInfo, agent, viewBookingUrl, labels, className, flow, }: BookingConfirmationProps): react_jsx_runtime.JSX.Element;
|
|
846
846
|
|
|
847
|
+
interface BookingAdventureCardLineItem {
|
|
848
|
+
/** Valor unitário formatado, ex.: "R$ 1.500,00". Opcional quando o caller usa `label` livre. */
|
|
849
|
+
unitPrice?: string;
|
|
850
|
+
/** Quantidade, ex.: 2. Opcional quando o caller usa `label` livre. */
|
|
851
|
+
quantity?: number;
|
|
852
|
+
/** Label localizado da categoria de viajante (ex.: "Adults"). Opcional quando o caller usa `label` livre. */
|
|
853
|
+
categoryLabel?: string;
|
|
854
|
+
/** Subtotal/preço formatado, ex.: "R$ 3.000,00". */
|
|
855
|
+
subtotal: string;
|
|
856
|
+
/**
|
|
857
|
+
* Label livre alternativa. Quando informada, prevalece sobre o formato
|
|
858
|
+
* "unitPrice × quantity categoryLabel =". Usada pelo consumer
|
|
859
|
+
* `BookingConfirmation`, cujos line items têm rótulos arbitrários
|
|
860
|
+
* (ex.: "Coupon", "Optional: Snorkel"). Aceitada para preservar
|
|
861
|
+
* paridade visual no card extraído.
|
|
862
|
+
*/
|
|
863
|
+
label?: string;
|
|
864
|
+
/** Quando `true`, valor renderiza em verde com prefixo "−". */
|
|
865
|
+
isDiscount?: boolean;
|
|
866
|
+
}
|
|
867
|
+
interface BookingAdventureCardTraveller {
|
|
868
|
+
/** Nome completo do viajante (já formatado pelo caller). */
|
|
869
|
+
fullName: string;
|
|
870
|
+
/** Quando `true`, renderiza badge "child" à direita do nome. */
|
|
871
|
+
isChild?: boolean;
|
|
872
|
+
/** Texto do badge "child" — fallback para labels.childBadge. */
|
|
873
|
+
childBadgeLabel?: string;
|
|
874
|
+
}
|
|
875
|
+
interface BookingAdventureCardLabels {
|
|
876
|
+
/** Heading da seção VIAJANTES. */
|
|
877
|
+
travellersHeading?: string;
|
|
878
|
+
/** Heading da seção DETALHES (itinerário). */
|
|
879
|
+
detailsHeading?: string;
|
|
880
|
+
/** Heading da seção PREÇOS (line items). */
|
|
881
|
+
pricesHeading?: string;
|
|
882
|
+
/** Label do subtotal. */
|
|
883
|
+
subtotalLabel?: string;
|
|
884
|
+
/** Função que produz o texto curto da linha "👥 N viajante(s)". */
|
|
885
|
+
travellersCountLabel?: (count: number) => string;
|
|
886
|
+
/** Símbolo separador em "R$ X × N Adults = R$ Y" (default "×"). */
|
|
887
|
+
lineItemSeparator?: string;
|
|
888
|
+
/** Símbolo de igual em "R$ X × N Adults = R$ Y" (default "="). */
|
|
889
|
+
lineItemEquals?: string;
|
|
890
|
+
/** Heading "O que está incluso" (usado pelo BookingConfirmation). */
|
|
891
|
+
includedHeading?: string;
|
|
892
|
+
/** Heading "O que não está incluso" (usado pelo BookingConfirmation). */
|
|
893
|
+
notIncludedHeading?: string;
|
|
894
|
+
/** Texto do pill de badge "child" (usado pelo BookingConfirmation). */
|
|
895
|
+
childBadge?: string;
|
|
896
|
+
/** Unidade adulto em slots (ex.: "adult(s)"). */
|
|
897
|
+
adultsUnit?: string;
|
|
898
|
+
/** Unidade criança em slots (ex.: "child(ren)"). */
|
|
899
|
+
childrenUnit?: string;
|
|
900
|
+
}
|
|
901
|
+
interface BookingAdventureCardSlots {
|
|
902
|
+
adults: number;
|
|
903
|
+
children?: number;
|
|
904
|
+
}
|
|
905
|
+
interface BookingAdventureCardProps {
|
|
906
|
+
/** Tag opcional renderizada como pill verde acima do título (ex.: "TST-C1"). */
|
|
907
|
+
tag?: string;
|
|
908
|
+
/** Nome da aventura, ex.: "Vale do Pati Trek". */
|
|
909
|
+
name: string;
|
|
910
|
+
/** Data de início formatada (ex.: "1 de junho de 2026"). */
|
|
911
|
+
startDate: string;
|
|
912
|
+
/** Data de fim formatada. Quando ausente, range vira apenas startDate. */
|
|
913
|
+
endDate?: string;
|
|
914
|
+
/**
|
|
915
|
+
* Quantidade total de viajantes (renderizada na linha "👥 N viajante(s)").
|
|
916
|
+
* Quando `slots` for fornecido, este campo é ignorado em favor de
|
|
917
|
+
* "👥 X adult(s) · Y child(ren)" (compat BookingConfirmation).
|
|
918
|
+
*/
|
|
919
|
+
travellerCount?: number;
|
|
920
|
+
/** Slots adults/children — quando presente, sobrepõe `travellerCount`. */
|
|
921
|
+
slots?: BookingAdventureCardSlots;
|
|
922
|
+
/**
|
|
923
|
+
* Lista de viajantes. Aceita strings (nome cru, modo PaymentReminder) ou
|
|
924
|
+
* objetos `{fullName, isChild}` (modo BookingConfirmation com badge child).
|
|
925
|
+
* Vazio = seção VIAJANTES não renderiza.
|
|
926
|
+
*/
|
|
927
|
+
travellers?: (string | BookingAdventureCardTraveller)[];
|
|
928
|
+
/** Itinerário (cada item já formatado). Vazio = seção DETALHES não renderiza. */
|
|
929
|
+
itinerary?: string[];
|
|
930
|
+
/**
|
|
931
|
+
* Descrição em HTML (alternativa a `itinerary`). Quando ambos presentes,
|
|
932
|
+
* `description` prevalece. Usada pelo BookingConfirmation para itinerário
|
|
933
|
+
* pré-formatado em HTML.
|
|
934
|
+
*/
|
|
935
|
+
description?: string;
|
|
936
|
+
/** Imagem de cover (opcional). Usada pelo BookingConfirmation. */
|
|
937
|
+
image?: string;
|
|
938
|
+
/** Alt da imagem de cover (default: `name`). */
|
|
939
|
+
imageAlt?: string;
|
|
940
|
+
/** Linha 📍 location (legado BookingConfirmation). */
|
|
941
|
+
location?: string;
|
|
942
|
+
/** Linha 🧭 destination/partner (legado BookingConfirmation). */
|
|
943
|
+
destination?: string;
|
|
944
|
+
/** Lista de itens inclusos (legado BookingConfirmation). */
|
|
945
|
+
included?: string[];
|
|
946
|
+
/** Lista de itens não inclusos (legado BookingConfirmation). */
|
|
947
|
+
notIncluded?: string[];
|
|
948
|
+
/** Line items de pricing por categoria. */
|
|
949
|
+
lineItems: BookingAdventureCardLineItem[];
|
|
950
|
+
/** Subtotal formatado, ex.: "R$ 1.500,00". Quando ausente, linha do subtotal some. */
|
|
951
|
+
subtotal?: string;
|
|
952
|
+
/** Labels para i18n / customização. */
|
|
953
|
+
labels?: BookingAdventureCardLabels;
|
|
954
|
+
/** className extra no container. */
|
|
955
|
+
className?: string;
|
|
956
|
+
}
|
|
957
|
+
declare function BookingAdventureCard({ tag, name, startDate, endDate, travellerCount, slots, travellers, itinerary, description, image, imageAlt, location, destination, included, notIncluded, lineItems, subtotal, labels, className, }: BookingAdventureCardProps): react_jsx_runtime.JSX.Element;
|
|
958
|
+
|
|
847
959
|
interface BookingConfirmationEmailLabels {
|
|
848
960
|
ctaButton?: string;
|
|
849
961
|
logoAlt?: string;
|
|
@@ -964,6 +1076,122 @@ interface PaymentReceiptEmailProps {
|
|
|
964
1076
|
}
|
|
965
1077
|
declare function PaymentReceiptEmail({ recipientName, bookingNumber, paymentMethodLabel, paymentDate, amount, chargedAmount, statusLabel, travellers, totalOrderAmount, totalPaidCumulative, remainingBalance, balanceDueDate, isPaidInFull, logoUrl, labels, className, }: PaymentReceiptEmailProps): react_jsx_runtime.JSX.Element;
|
|
966
1078
|
|
|
1079
|
+
/**
|
|
1080
|
+
* Variante do lembrete:
|
|
1081
|
+
* - `dMinus1` → 1 dia antes do vencimento (amigável).
|
|
1082
|
+
* - `dZero` → no dia do vencimento (amigável).
|
|
1083
|
+
* - `dPlus1` → 1 dia após o vencimento (factual).
|
|
1084
|
+
* - `dPlus2` → 2 dias após o vencimento (firme — último lembrete).
|
|
1085
|
+
*/
|
|
1086
|
+
type PaymentReminderVariant = "dMinus1" | "dZero" | "dPlus1" | "dPlus2";
|
|
1087
|
+
interface PaymentReminderEmailLineItem {
|
|
1088
|
+
/** Valor unitário formatado, ex.: "R$ 1.500,00". */
|
|
1089
|
+
unitPrice: string;
|
|
1090
|
+
/** Quantidade, ex.: 2. */
|
|
1091
|
+
quantity: number;
|
|
1092
|
+
/** Label localizado da categoria de viajante, ex.: "Adults". */
|
|
1093
|
+
categoryLabel: string;
|
|
1094
|
+
/** Subtotal formatado, ex.: "R$ 3.000,00". */
|
|
1095
|
+
subtotal: string;
|
|
1096
|
+
}
|
|
1097
|
+
interface PaymentReminderEmailAdventure {
|
|
1098
|
+
/** Nome da aventura, ex.: "Vale do Pati Trek". */
|
|
1099
|
+
name: string;
|
|
1100
|
+
/** Linhas de pricing por categoria de viajante. */
|
|
1101
|
+
lineItems: PaymentReminderEmailLineItem[];
|
|
1102
|
+
/** Tag opcional renderizada como pill verde acima do título (ex.: "TST-C1"). */
|
|
1103
|
+
tag?: string;
|
|
1104
|
+
/** Data de início formatada (ex.: "1 de junho de 2026"). */
|
|
1105
|
+
startDate?: string;
|
|
1106
|
+
/** Data de fim formatada. Quando ausente, range vira apenas startDate. */
|
|
1107
|
+
endDate?: string;
|
|
1108
|
+
/** Quantidade total de pessoas (ex.: 1). */
|
|
1109
|
+
travellerCount?: number;
|
|
1110
|
+
/** Lista de nomes completos de viajantes. Vazio = seção VIAJANTES não renderiza. */
|
|
1111
|
+
travellers?: string[];
|
|
1112
|
+
/** Itinerário (cada item já formatado, ex.: "Dia 1: ..."). Vazio = seção DETALHES não renderiza. */
|
|
1113
|
+
itinerary?: string[];
|
|
1114
|
+
/** Subtotal por aventura formatado (ex.: "R$ 1.500,00"). */
|
|
1115
|
+
subtotal?: string;
|
|
1116
|
+
}
|
|
1117
|
+
interface PaymentReminderEmailVariantLabels {
|
|
1118
|
+
/** Frase de intro — recebe bookingNumber e data de vencimento já formatada. */
|
|
1119
|
+
intro?: (bookingNumber: string, dueDate: string) => string;
|
|
1120
|
+
/** Linha de chamada para ação. */
|
|
1121
|
+
secureLine?: string;
|
|
1122
|
+
/** Closing antes do team signature. */
|
|
1123
|
+
closingThanks?: string;
|
|
1124
|
+
/** Aparece apenas em dPlus1/dPlus2. Quando vazia/undefined, linha some. */
|
|
1125
|
+
disregardIfPaid?: string;
|
|
1126
|
+
/** Aparece apenas em dPlus2. Quando vazia/undefined, parágrafo some. */
|
|
1127
|
+
closingAlternative?: (agentName: string) => string;
|
|
1128
|
+
}
|
|
1129
|
+
interface PaymentReminderEmailLabels {
|
|
1130
|
+
logoAlt?: string;
|
|
1131
|
+
/** Saudação compartilhada entre slugs. */
|
|
1132
|
+
greeting?: (name: string) => string;
|
|
1133
|
+
/** "Hope you're doing well." */
|
|
1134
|
+
intermediateHello?: string;
|
|
1135
|
+
/** "Booking summary" */
|
|
1136
|
+
bookingSummaryHeader?: string;
|
|
1137
|
+
/** "Amount already paid" */
|
|
1138
|
+
amountAlreadyPaidLabel?: string;
|
|
1139
|
+
/** "Remaining balance due" */
|
|
1140
|
+
remainingBalanceDueLabel?: string;
|
|
1141
|
+
/** "Total booking amount" */
|
|
1142
|
+
totalBookingAmountLabel?: string;
|
|
1143
|
+
/** CTA do botão "Complete Payment". */
|
|
1144
|
+
ctaLabel?: string;
|
|
1145
|
+
/** Assinatura: "The PlanetaEXO Team". */
|
|
1146
|
+
teamSignature?: string;
|
|
1147
|
+
/** Strings por slug — cada variante tem seu próprio intro/secureLine/closingThanks. */
|
|
1148
|
+
variants?: {
|
|
1149
|
+
dMinus1?: PaymentReminderEmailVariantLabels;
|
|
1150
|
+
dZero?: PaymentReminderEmailVariantLabels;
|
|
1151
|
+
dPlus1?: PaymentReminderEmailVariantLabels;
|
|
1152
|
+
dPlus2?: PaymentReminderEmailVariantLabels;
|
|
1153
|
+
};
|
|
1154
|
+
/** Closing "If you need any assistance... contact your agent <name>...". */
|
|
1155
|
+
closingAgent?: (agentName: string) => string;
|
|
1156
|
+
/** Closing alternativo quando booking não tem agente atribuído. */
|
|
1157
|
+
closingNoAgent?: string;
|
|
1158
|
+
/**
|
|
1159
|
+
* Labels do `BookingAdventureCard` aninhado. Repassadas para cada card de
|
|
1160
|
+
* aventura — controla headings VIAJANTES/DETALHES/PREÇOS, subtotal e o
|
|
1161
|
+
* formato "👥 N viajante(s)".
|
|
1162
|
+
*/
|
|
1163
|
+
adventureCard?: BookingAdventureCardLabels;
|
|
1164
|
+
}
|
|
1165
|
+
interface PaymentReminderEmailProps {
|
|
1166
|
+
/** Variante do lembrete — controla intro/secureLine/closingThanks + presença de blocos condicionais. */
|
|
1167
|
+
variant: PaymentReminderVariant;
|
|
1168
|
+
/** Nome do destinatário, ex.: "Maria". */
|
|
1169
|
+
recipientName: string;
|
|
1170
|
+
/** Número canônico da reserva (string para suportar futuros formatos), ex.: "12345". */
|
|
1171
|
+
bookingNumber: string;
|
|
1172
|
+
/** Data de vencimento formatada e localizada, ex.: "15 de junho de 2026". */
|
|
1173
|
+
balanceDueDate: string;
|
|
1174
|
+
/** Aventuras com line items estruturados. */
|
|
1175
|
+
adventures: PaymentReminderEmailAdventure[];
|
|
1176
|
+
/** Total já pago formatado, ex.: "R$ 3.000,00". */
|
|
1177
|
+
amountAlreadyPaid: string;
|
|
1178
|
+
/** Saldo restante formatado, ex.: "R$ 3.000,00". */
|
|
1179
|
+
remainingBalanceDue: string;
|
|
1180
|
+
/** Total da reserva formatado, ex.: "R$ 6.000,00". */
|
|
1181
|
+
totalBookingAmount: string;
|
|
1182
|
+
/** URL do CTA "Complete Payment". */
|
|
1183
|
+
viewBookingUrl: string;
|
|
1184
|
+
/** Nome do agente para personalizar closing. Quando ausente, closingNoAgent é usado. */
|
|
1185
|
+
agentName?: string;
|
|
1186
|
+
/** URL da logo. Default: data URI via EmailLogo. */
|
|
1187
|
+
logoUrl?: string;
|
|
1188
|
+
/** Labels para i18n / customização. */
|
|
1189
|
+
labels?: PaymentReminderEmailLabels;
|
|
1190
|
+
/** className extra no container. */
|
|
1191
|
+
className?: string;
|
|
1192
|
+
}
|
|
1193
|
+
declare function PaymentReminderEmail({ variant, recipientName, bookingNumber, balanceDueDate, adventures, amountAlreadyPaid, remainingBalanceDue, totalBookingAmount, viewBookingUrl, agentName, logoUrl, labels, className, }: PaymentReminderEmailProps): react_jsx_runtime.JSX.Element;
|
|
1194
|
+
|
|
967
1195
|
interface BookingOtpEmailProps {
|
|
968
1196
|
/** Saudação (ex.: "Hello!" / "Olá!"). */
|
|
969
1197
|
greeting: string;
|
|
@@ -2361,4 +2589,4 @@ declare function LeadCapturePopup({ config: _config, }: {
|
|
|
2361
2589
|
config: LeadCapturePopupConfig;
|
|
2362
2590
|
}): react_jsx_runtime.JSX.Element | null;
|
|
2363
2591
|
|
|
2364
|
-
export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, 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, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, 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 };
|
|
2592
|
+
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, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, 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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -844,6 +844,118 @@ interface BookingConfirmationProps {
|
|
|
844
844
|
}
|
|
845
845
|
declare function BookingConfirmation({ recipientName, logoUrl, bookingReference, adventures, summaryLineItems, subtotal, total, depositInfo, agent, viewBookingUrl, labels, className, flow, }: BookingConfirmationProps): react_jsx_runtime.JSX.Element;
|
|
846
846
|
|
|
847
|
+
interface BookingAdventureCardLineItem {
|
|
848
|
+
/** Valor unitário formatado, ex.: "R$ 1.500,00". Opcional quando o caller usa `label` livre. */
|
|
849
|
+
unitPrice?: string;
|
|
850
|
+
/** Quantidade, ex.: 2. Opcional quando o caller usa `label` livre. */
|
|
851
|
+
quantity?: number;
|
|
852
|
+
/** Label localizado da categoria de viajante (ex.: "Adults"). Opcional quando o caller usa `label` livre. */
|
|
853
|
+
categoryLabel?: string;
|
|
854
|
+
/** Subtotal/preço formatado, ex.: "R$ 3.000,00". */
|
|
855
|
+
subtotal: string;
|
|
856
|
+
/**
|
|
857
|
+
* Label livre alternativa. Quando informada, prevalece sobre o formato
|
|
858
|
+
* "unitPrice × quantity categoryLabel =". Usada pelo consumer
|
|
859
|
+
* `BookingConfirmation`, cujos line items têm rótulos arbitrários
|
|
860
|
+
* (ex.: "Coupon", "Optional: Snorkel"). Aceitada para preservar
|
|
861
|
+
* paridade visual no card extraído.
|
|
862
|
+
*/
|
|
863
|
+
label?: string;
|
|
864
|
+
/** Quando `true`, valor renderiza em verde com prefixo "−". */
|
|
865
|
+
isDiscount?: boolean;
|
|
866
|
+
}
|
|
867
|
+
interface BookingAdventureCardTraveller {
|
|
868
|
+
/** Nome completo do viajante (já formatado pelo caller). */
|
|
869
|
+
fullName: string;
|
|
870
|
+
/** Quando `true`, renderiza badge "child" à direita do nome. */
|
|
871
|
+
isChild?: boolean;
|
|
872
|
+
/** Texto do badge "child" — fallback para labels.childBadge. */
|
|
873
|
+
childBadgeLabel?: string;
|
|
874
|
+
}
|
|
875
|
+
interface BookingAdventureCardLabels {
|
|
876
|
+
/** Heading da seção VIAJANTES. */
|
|
877
|
+
travellersHeading?: string;
|
|
878
|
+
/** Heading da seção DETALHES (itinerário). */
|
|
879
|
+
detailsHeading?: string;
|
|
880
|
+
/** Heading da seção PREÇOS (line items). */
|
|
881
|
+
pricesHeading?: string;
|
|
882
|
+
/** Label do subtotal. */
|
|
883
|
+
subtotalLabel?: string;
|
|
884
|
+
/** Função que produz o texto curto da linha "👥 N viajante(s)". */
|
|
885
|
+
travellersCountLabel?: (count: number) => string;
|
|
886
|
+
/** Símbolo separador em "R$ X × N Adults = R$ Y" (default "×"). */
|
|
887
|
+
lineItemSeparator?: string;
|
|
888
|
+
/** Símbolo de igual em "R$ X × N Adults = R$ Y" (default "="). */
|
|
889
|
+
lineItemEquals?: string;
|
|
890
|
+
/** Heading "O que está incluso" (usado pelo BookingConfirmation). */
|
|
891
|
+
includedHeading?: string;
|
|
892
|
+
/** Heading "O que não está incluso" (usado pelo BookingConfirmation). */
|
|
893
|
+
notIncludedHeading?: string;
|
|
894
|
+
/** Texto do pill de badge "child" (usado pelo BookingConfirmation). */
|
|
895
|
+
childBadge?: string;
|
|
896
|
+
/** Unidade adulto em slots (ex.: "adult(s)"). */
|
|
897
|
+
adultsUnit?: string;
|
|
898
|
+
/** Unidade criança em slots (ex.: "child(ren)"). */
|
|
899
|
+
childrenUnit?: string;
|
|
900
|
+
}
|
|
901
|
+
interface BookingAdventureCardSlots {
|
|
902
|
+
adults: number;
|
|
903
|
+
children?: number;
|
|
904
|
+
}
|
|
905
|
+
interface BookingAdventureCardProps {
|
|
906
|
+
/** Tag opcional renderizada como pill verde acima do título (ex.: "TST-C1"). */
|
|
907
|
+
tag?: string;
|
|
908
|
+
/** Nome da aventura, ex.: "Vale do Pati Trek". */
|
|
909
|
+
name: string;
|
|
910
|
+
/** Data de início formatada (ex.: "1 de junho de 2026"). */
|
|
911
|
+
startDate: string;
|
|
912
|
+
/** Data de fim formatada. Quando ausente, range vira apenas startDate. */
|
|
913
|
+
endDate?: string;
|
|
914
|
+
/**
|
|
915
|
+
* Quantidade total de viajantes (renderizada na linha "👥 N viajante(s)").
|
|
916
|
+
* Quando `slots` for fornecido, este campo é ignorado em favor de
|
|
917
|
+
* "👥 X adult(s) · Y child(ren)" (compat BookingConfirmation).
|
|
918
|
+
*/
|
|
919
|
+
travellerCount?: number;
|
|
920
|
+
/** Slots adults/children — quando presente, sobrepõe `travellerCount`. */
|
|
921
|
+
slots?: BookingAdventureCardSlots;
|
|
922
|
+
/**
|
|
923
|
+
* Lista de viajantes. Aceita strings (nome cru, modo PaymentReminder) ou
|
|
924
|
+
* objetos `{fullName, isChild}` (modo BookingConfirmation com badge child).
|
|
925
|
+
* Vazio = seção VIAJANTES não renderiza.
|
|
926
|
+
*/
|
|
927
|
+
travellers?: (string | BookingAdventureCardTraveller)[];
|
|
928
|
+
/** Itinerário (cada item já formatado). Vazio = seção DETALHES não renderiza. */
|
|
929
|
+
itinerary?: string[];
|
|
930
|
+
/**
|
|
931
|
+
* Descrição em HTML (alternativa a `itinerary`). Quando ambos presentes,
|
|
932
|
+
* `description` prevalece. Usada pelo BookingConfirmation para itinerário
|
|
933
|
+
* pré-formatado em HTML.
|
|
934
|
+
*/
|
|
935
|
+
description?: string;
|
|
936
|
+
/** Imagem de cover (opcional). Usada pelo BookingConfirmation. */
|
|
937
|
+
image?: string;
|
|
938
|
+
/** Alt da imagem de cover (default: `name`). */
|
|
939
|
+
imageAlt?: string;
|
|
940
|
+
/** Linha 📍 location (legado BookingConfirmation). */
|
|
941
|
+
location?: string;
|
|
942
|
+
/** Linha 🧭 destination/partner (legado BookingConfirmation). */
|
|
943
|
+
destination?: string;
|
|
944
|
+
/** Lista de itens inclusos (legado BookingConfirmation). */
|
|
945
|
+
included?: string[];
|
|
946
|
+
/** Lista de itens não inclusos (legado BookingConfirmation). */
|
|
947
|
+
notIncluded?: string[];
|
|
948
|
+
/** Line items de pricing por categoria. */
|
|
949
|
+
lineItems: BookingAdventureCardLineItem[];
|
|
950
|
+
/** Subtotal formatado, ex.: "R$ 1.500,00". Quando ausente, linha do subtotal some. */
|
|
951
|
+
subtotal?: string;
|
|
952
|
+
/** Labels para i18n / customização. */
|
|
953
|
+
labels?: BookingAdventureCardLabels;
|
|
954
|
+
/** className extra no container. */
|
|
955
|
+
className?: string;
|
|
956
|
+
}
|
|
957
|
+
declare function BookingAdventureCard({ tag, name, startDate, endDate, travellerCount, slots, travellers, itinerary, description, image, imageAlt, location, destination, included, notIncluded, lineItems, subtotal, labels, className, }: BookingAdventureCardProps): react_jsx_runtime.JSX.Element;
|
|
958
|
+
|
|
847
959
|
interface BookingConfirmationEmailLabels {
|
|
848
960
|
ctaButton?: string;
|
|
849
961
|
logoAlt?: string;
|
|
@@ -964,6 +1076,122 @@ interface PaymentReceiptEmailProps {
|
|
|
964
1076
|
}
|
|
965
1077
|
declare function PaymentReceiptEmail({ recipientName, bookingNumber, paymentMethodLabel, paymentDate, amount, chargedAmount, statusLabel, travellers, totalOrderAmount, totalPaidCumulative, remainingBalance, balanceDueDate, isPaidInFull, logoUrl, labels, className, }: PaymentReceiptEmailProps): react_jsx_runtime.JSX.Element;
|
|
966
1078
|
|
|
1079
|
+
/**
|
|
1080
|
+
* Variante do lembrete:
|
|
1081
|
+
* - `dMinus1` → 1 dia antes do vencimento (amigável).
|
|
1082
|
+
* - `dZero` → no dia do vencimento (amigável).
|
|
1083
|
+
* - `dPlus1` → 1 dia após o vencimento (factual).
|
|
1084
|
+
* - `dPlus2` → 2 dias após o vencimento (firme — último lembrete).
|
|
1085
|
+
*/
|
|
1086
|
+
type PaymentReminderVariant = "dMinus1" | "dZero" | "dPlus1" | "dPlus2";
|
|
1087
|
+
interface PaymentReminderEmailLineItem {
|
|
1088
|
+
/** Valor unitário formatado, ex.: "R$ 1.500,00". */
|
|
1089
|
+
unitPrice: string;
|
|
1090
|
+
/** Quantidade, ex.: 2. */
|
|
1091
|
+
quantity: number;
|
|
1092
|
+
/** Label localizado da categoria de viajante, ex.: "Adults". */
|
|
1093
|
+
categoryLabel: string;
|
|
1094
|
+
/** Subtotal formatado, ex.: "R$ 3.000,00". */
|
|
1095
|
+
subtotal: string;
|
|
1096
|
+
}
|
|
1097
|
+
interface PaymentReminderEmailAdventure {
|
|
1098
|
+
/** Nome da aventura, ex.: "Vale do Pati Trek". */
|
|
1099
|
+
name: string;
|
|
1100
|
+
/** Linhas de pricing por categoria de viajante. */
|
|
1101
|
+
lineItems: PaymentReminderEmailLineItem[];
|
|
1102
|
+
/** Tag opcional renderizada como pill verde acima do título (ex.: "TST-C1"). */
|
|
1103
|
+
tag?: string;
|
|
1104
|
+
/** Data de início formatada (ex.: "1 de junho de 2026"). */
|
|
1105
|
+
startDate?: string;
|
|
1106
|
+
/** Data de fim formatada. Quando ausente, range vira apenas startDate. */
|
|
1107
|
+
endDate?: string;
|
|
1108
|
+
/** Quantidade total de pessoas (ex.: 1). */
|
|
1109
|
+
travellerCount?: number;
|
|
1110
|
+
/** Lista de nomes completos de viajantes. Vazio = seção VIAJANTES não renderiza. */
|
|
1111
|
+
travellers?: string[];
|
|
1112
|
+
/** Itinerário (cada item já formatado, ex.: "Dia 1: ..."). Vazio = seção DETALHES não renderiza. */
|
|
1113
|
+
itinerary?: string[];
|
|
1114
|
+
/** Subtotal por aventura formatado (ex.: "R$ 1.500,00"). */
|
|
1115
|
+
subtotal?: string;
|
|
1116
|
+
}
|
|
1117
|
+
interface PaymentReminderEmailVariantLabels {
|
|
1118
|
+
/** Frase de intro — recebe bookingNumber e data de vencimento já formatada. */
|
|
1119
|
+
intro?: (bookingNumber: string, dueDate: string) => string;
|
|
1120
|
+
/** Linha de chamada para ação. */
|
|
1121
|
+
secureLine?: string;
|
|
1122
|
+
/** Closing antes do team signature. */
|
|
1123
|
+
closingThanks?: string;
|
|
1124
|
+
/** Aparece apenas em dPlus1/dPlus2. Quando vazia/undefined, linha some. */
|
|
1125
|
+
disregardIfPaid?: string;
|
|
1126
|
+
/** Aparece apenas em dPlus2. Quando vazia/undefined, parágrafo some. */
|
|
1127
|
+
closingAlternative?: (agentName: string) => string;
|
|
1128
|
+
}
|
|
1129
|
+
interface PaymentReminderEmailLabels {
|
|
1130
|
+
logoAlt?: string;
|
|
1131
|
+
/** Saudação compartilhada entre slugs. */
|
|
1132
|
+
greeting?: (name: string) => string;
|
|
1133
|
+
/** "Hope you're doing well." */
|
|
1134
|
+
intermediateHello?: string;
|
|
1135
|
+
/** "Booking summary" */
|
|
1136
|
+
bookingSummaryHeader?: string;
|
|
1137
|
+
/** "Amount already paid" */
|
|
1138
|
+
amountAlreadyPaidLabel?: string;
|
|
1139
|
+
/** "Remaining balance due" */
|
|
1140
|
+
remainingBalanceDueLabel?: string;
|
|
1141
|
+
/** "Total booking amount" */
|
|
1142
|
+
totalBookingAmountLabel?: string;
|
|
1143
|
+
/** CTA do botão "Complete Payment". */
|
|
1144
|
+
ctaLabel?: string;
|
|
1145
|
+
/** Assinatura: "The PlanetaEXO Team". */
|
|
1146
|
+
teamSignature?: string;
|
|
1147
|
+
/** Strings por slug — cada variante tem seu próprio intro/secureLine/closingThanks. */
|
|
1148
|
+
variants?: {
|
|
1149
|
+
dMinus1?: PaymentReminderEmailVariantLabels;
|
|
1150
|
+
dZero?: PaymentReminderEmailVariantLabels;
|
|
1151
|
+
dPlus1?: PaymentReminderEmailVariantLabels;
|
|
1152
|
+
dPlus2?: PaymentReminderEmailVariantLabels;
|
|
1153
|
+
};
|
|
1154
|
+
/** Closing "If you need any assistance... contact your agent <name>...". */
|
|
1155
|
+
closingAgent?: (agentName: string) => string;
|
|
1156
|
+
/** Closing alternativo quando booking não tem agente atribuído. */
|
|
1157
|
+
closingNoAgent?: string;
|
|
1158
|
+
/**
|
|
1159
|
+
* Labels do `BookingAdventureCard` aninhado. Repassadas para cada card de
|
|
1160
|
+
* aventura — controla headings VIAJANTES/DETALHES/PREÇOS, subtotal e o
|
|
1161
|
+
* formato "👥 N viajante(s)".
|
|
1162
|
+
*/
|
|
1163
|
+
adventureCard?: BookingAdventureCardLabels;
|
|
1164
|
+
}
|
|
1165
|
+
interface PaymentReminderEmailProps {
|
|
1166
|
+
/** Variante do lembrete — controla intro/secureLine/closingThanks + presença de blocos condicionais. */
|
|
1167
|
+
variant: PaymentReminderVariant;
|
|
1168
|
+
/** Nome do destinatário, ex.: "Maria". */
|
|
1169
|
+
recipientName: string;
|
|
1170
|
+
/** Número canônico da reserva (string para suportar futuros formatos), ex.: "12345". */
|
|
1171
|
+
bookingNumber: string;
|
|
1172
|
+
/** Data de vencimento formatada e localizada, ex.: "15 de junho de 2026". */
|
|
1173
|
+
balanceDueDate: string;
|
|
1174
|
+
/** Aventuras com line items estruturados. */
|
|
1175
|
+
adventures: PaymentReminderEmailAdventure[];
|
|
1176
|
+
/** Total já pago formatado, ex.: "R$ 3.000,00". */
|
|
1177
|
+
amountAlreadyPaid: string;
|
|
1178
|
+
/** Saldo restante formatado, ex.: "R$ 3.000,00". */
|
|
1179
|
+
remainingBalanceDue: string;
|
|
1180
|
+
/** Total da reserva formatado, ex.: "R$ 6.000,00". */
|
|
1181
|
+
totalBookingAmount: string;
|
|
1182
|
+
/** URL do CTA "Complete Payment". */
|
|
1183
|
+
viewBookingUrl: string;
|
|
1184
|
+
/** Nome do agente para personalizar closing. Quando ausente, closingNoAgent é usado. */
|
|
1185
|
+
agentName?: string;
|
|
1186
|
+
/** URL da logo. Default: data URI via EmailLogo. */
|
|
1187
|
+
logoUrl?: string;
|
|
1188
|
+
/** Labels para i18n / customização. */
|
|
1189
|
+
labels?: PaymentReminderEmailLabels;
|
|
1190
|
+
/** className extra no container. */
|
|
1191
|
+
className?: string;
|
|
1192
|
+
}
|
|
1193
|
+
declare function PaymentReminderEmail({ variant, recipientName, bookingNumber, balanceDueDate, adventures, amountAlreadyPaid, remainingBalanceDue, totalBookingAmount, viewBookingUrl, agentName, logoUrl, labels, className, }: PaymentReminderEmailProps): react_jsx_runtime.JSX.Element;
|
|
1194
|
+
|
|
967
1195
|
interface BookingOtpEmailProps {
|
|
968
1196
|
/** Saudação (ex.: "Hello!" / "Olá!"). */
|
|
969
1197
|
greeting: string;
|
|
@@ -2361,4 +2589,4 @@ declare function LeadCapturePopup({ config: _config, }: {
|
|
|
2361
2589
|
config: LeadCapturePopupConfig;
|
|
2362
2590
|
}): react_jsx_runtime.JSX.Element | null;
|
|
2363
2591
|
|
|
2364
|
-
export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, 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, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, 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 };
|
|
2592
|
+
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, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, 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 };
|