@planetaexo/design-system 0.65.0 → 0.67.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 +454 -143
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +111 -2
- package/dist/index.d.ts +111 -2
- package/dist/index.js +454 -144
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -89,6 +89,13 @@ interface BookingAdventureCardLabels {
|
|
|
89
89
|
childrenUnit?: string;
|
|
90
90
|
/** Heading da seção ACCOMMODATIONS. Default "ACCOMMODATIONS". */
|
|
91
91
|
accommodationsHeading?: string;
|
|
92
|
+
/**
|
|
93
|
+
* Heading por quarto no layout `feature` (ex.: "Accommodation: Suíte Master").
|
|
94
|
+
* Interpolado pelo DS via `accommodationRoomHeading(room.roomName)`.
|
|
95
|
+
* Default EN `(n) => \`Accommodation: ${n}\``. Usado só quando
|
|
96
|
+
* `roomLayout==="feature"`.
|
|
97
|
+
*/
|
|
98
|
+
accommodationRoomHeading?: (name: string) => string;
|
|
92
99
|
/** Labels localizados para o chip de bedArrangement. */
|
|
93
100
|
bedArrangementLabels?: {
|
|
94
101
|
DOUBLE?: string;
|
|
@@ -159,12 +166,21 @@ interface BookingAdventureCardProps {
|
|
|
159
166
|
* quartos selecionados (renderiza bloco "ACCOMMODATIONS"). Vazio = bloco oculto.
|
|
160
167
|
*/
|
|
161
168
|
rooms?: AccommodationRoomItem[];
|
|
169
|
+
/**
|
|
170
|
+
* Layout do bloco ACCOMMODATIONS:
|
|
171
|
+
* - `"compact"` (default) — card compacto atual (img 80×60 + chip + qty +
|
|
172
|
+
* roomType). Usado por PaymentReminderEmail e qualquer caller sem a prop.
|
|
173
|
+
* - `"feature"` — padrão manual da equipe: heading "Accommodation: {nome}"
|
|
174
|
+
* por quarto + imagem larga (full-width) + chip/qty/roomType/description
|
|
175
|
+
* mantidos abaixo. Ativado só pelo BookingPaymentConfirmationEmail.
|
|
176
|
+
*/
|
|
177
|
+
roomLayout?: "compact" | "feature";
|
|
162
178
|
/** Labels para i18n / customização. */
|
|
163
179
|
labels?: BookingAdventureCardLabels;
|
|
164
180
|
/** className extra no container. */
|
|
165
181
|
className?: string;
|
|
166
182
|
}
|
|
167
|
-
declare function BookingAdventureCard({ tag, name, startDate, endDate, travellerCount, slots, travellers, itinerary, description, image, imageAlt, location, destination, partner, included, notIncluded, lineItems, subtotal, rooms, labels, className, }: BookingAdventureCardProps): react_jsx_runtime.JSX.Element;
|
|
183
|
+
declare function BookingAdventureCard({ tag, name, startDate, endDate, travellerCount, slots, travellers, itinerary, description, image, imageAlt, location, destination, partner, included, notIncluded, lineItems, subtotal, rooms, roomLayout, labels, className, }: BookingAdventureCardProps): react_jsx_runtime.JSX.Element;
|
|
168
184
|
|
|
169
185
|
interface OfferSummaryLineItem {
|
|
170
186
|
label: string;
|
|
@@ -253,6 +269,12 @@ interface OfferAdventureItem {
|
|
|
253
269
|
rooms?: AccommodationRoomItem[];
|
|
254
270
|
/** Heading do bloco Accommodations. Default: "Accommodations". */
|
|
255
271
|
accommodationsLabel?: string;
|
|
272
|
+
/**
|
|
273
|
+
* Heading por quarto no padrão manual ("Accommodation: {name}").
|
|
274
|
+
* Interpolado pelo componente via `accommodationRoomHeading(room.roomName)`.
|
|
275
|
+
* Default EN `(n) => \`Accommodation: ${n}\``.
|
|
276
|
+
*/
|
|
277
|
+
accommodationRoomHeading?: (name: string) => string;
|
|
256
278
|
/** Labels localizados para o chip de bedArrangement. */
|
|
257
279
|
bedArrangementLabels?: {
|
|
258
280
|
DOUBLE?: string;
|
|
@@ -996,6 +1018,20 @@ interface BookingPaymentConfirmationEmailLabels {
|
|
|
996
1018
|
pricingLabel?: string;
|
|
997
1019
|
subtotalLabel?: string;
|
|
998
1020
|
totalLabel?: string;
|
|
1021
|
+
/** Heading da seção ACCOMMODATIONS no card. Default EN "ACCOMMODATIONS". */
|
|
1022
|
+
accommodationsLabel?: string;
|
|
1023
|
+
/**
|
|
1024
|
+
* Heading por quarto no layout feature ("Accommodation: {name}").
|
|
1025
|
+
* Default EN `(n) => \`Accommodation: ${n}\``.
|
|
1026
|
+
*/
|
|
1027
|
+
accommodationRoomHeading?: (name: string) => string;
|
|
1028
|
+
/** Labels localizados para o chip de bedArrangement. */
|
|
1029
|
+
bedArrangementLabels?: {
|
|
1030
|
+
DOUBLE?: string;
|
|
1031
|
+
TWIN?: string;
|
|
1032
|
+
SINGLE?: string;
|
|
1033
|
+
TRIPLE?: string;
|
|
1034
|
+
};
|
|
999
1035
|
paymentSummaryHeading?: string;
|
|
1000
1036
|
paymentDetailsHeading?: string;
|
|
1001
1037
|
depositLabel?: (percent: number) => string;
|
|
@@ -1303,6 +1339,79 @@ interface BookingCancellationEmailProps {
|
|
|
1303
1339
|
}
|
|
1304
1340
|
declare function BookingCancellationEmail({ recipientName, bookingRef, adventures, travellersCount, refundAmount, agentName, agentContactLinks, logoUrl, labels, className, }: BookingCancellationEmailProps): react_jsx_runtime.JSX.Element;
|
|
1305
1341
|
|
|
1342
|
+
interface CancellationRequestReceivedAgentContactLinks {
|
|
1343
|
+
/** URL completo do WhatsApp (ex.: "https://wa.me/5511987654321"). */
|
|
1344
|
+
whatsappUrl?: string;
|
|
1345
|
+
/** Email do agente (ex.: "gabriel@planetaexo.com"). */
|
|
1346
|
+
email?: string;
|
|
1347
|
+
}
|
|
1348
|
+
interface CancellationRequestReceivedAdventure {
|
|
1349
|
+
/** Nome da aventura, ex.: "Vale do Pati Trek". */
|
|
1350
|
+
name: string;
|
|
1351
|
+
/** Data de início JÁ FORMATADA pelo backend (ex.: "12 de maio de 2026"). */
|
|
1352
|
+
startDate: string;
|
|
1353
|
+
/** Data de fim JÁ FORMATADA pelo backend (ex.: "18 de maio de 2026"). */
|
|
1354
|
+
endDate: string;
|
|
1355
|
+
}
|
|
1356
|
+
interface CancellationRequestReceivedEmailLabels {
|
|
1357
|
+
logoAlt?: string;
|
|
1358
|
+
greeting?: (recipientName: string) => string;
|
|
1359
|
+
/** Título principal — ex.: "We've received your cancellation request". */
|
|
1360
|
+
title?: string;
|
|
1361
|
+
/**
|
|
1362
|
+
* Frase de intro abaixo do título — recebe o bookingRef já prefixado
|
|
1363
|
+
* (ex.: "#95465") e devolve o texto contextual.
|
|
1364
|
+
*/
|
|
1365
|
+
intro?: (bookingRef: string) => string;
|
|
1366
|
+
/** Heading do bloco BookingSummary (ex.: "Your request"). */
|
|
1367
|
+
summaryHeading?: string;
|
|
1368
|
+
bookingNumberLabel?: string;
|
|
1369
|
+
adventuresLabel?: string;
|
|
1370
|
+
datesLabel?: string;
|
|
1371
|
+
travellersLabel?: string;
|
|
1372
|
+
/** Heading do bloco informativo de próximos passos. */
|
|
1373
|
+
nextStepsHeading?: string;
|
|
1374
|
+
/** Nota do bloco de próximos passos (ex.: "No action is needed right now."). */
|
|
1375
|
+
nextStepsNote?: string;
|
|
1376
|
+
/**
|
|
1377
|
+
* Closing principal quando há agente atribuído. Recebe nome + URLs de
|
|
1378
|
+
* contato e devolve JSX com hyperlinks inline (WhatsApp/email). Quando
|
|
1379
|
+
* URLs ausentes, helpers caem para plain text.
|
|
1380
|
+
*/
|
|
1381
|
+
closingAgent?: (agentName: string, contact: CancellationRequestReceivedAgentContactLinks) => React.ReactNode;
|
|
1382
|
+
/** Closing alternativo quando booking não tem agente. Plain text. */
|
|
1383
|
+
closingNoAgent?: string;
|
|
1384
|
+
/** Assinatura final (ex.: "The PlanetaEXO Team"). */
|
|
1385
|
+
teamSignature?: string;
|
|
1386
|
+
}
|
|
1387
|
+
interface CancellationRequestReceivedEmailProps {
|
|
1388
|
+
/** Primeiro nome do destinatário (booking person). */
|
|
1389
|
+
recipientName: string;
|
|
1390
|
+
/**
|
|
1391
|
+
* Referência pública da reserva (ex.: "95465"). Renderizada prefixada
|
|
1392
|
+
* com "#" dentro do BookingSummary.
|
|
1393
|
+
*/
|
|
1394
|
+
bookingRef: string;
|
|
1395
|
+
/** Aventuras que o cliente pediu para cancelar (1+ itens). */
|
|
1396
|
+
adventures: CancellationRequestReceivedAdventure[];
|
|
1397
|
+
/** Quantidade de viajantes selecionados na solicitação. */
|
|
1398
|
+
travellersCount: number;
|
|
1399
|
+
/** Nome do agente. Quando ausente/vazio, usa `closingNoAgent`. */
|
|
1400
|
+
agentName?: string;
|
|
1401
|
+
/**
|
|
1402
|
+
* URLs/dados de contato do agente para renderizar WhatsApp e email
|
|
1403
|
+
* como hyperlinks no closing. Ausência de uma URL = plain text.
|
|
1404
|
+
*/
|
|
1405
|
+
agentContactLinks?: CancellationRequestReceivedAgentContactLinks;
|
|
1406
|
+
/** URL da logo. Default: data URI via EmailLogo. */
|
|
1407
|
+
logoUrl?: string;
|
|
1408
|
+
/** Labels para i18n / customização. */
|
|
1409
|
+
labels?: CancellationRequestReceivedEmailLabels;
|
|
1410
|
+
/** className adicional no container. */
|
|
1411
|
+
className?: string;
|
|
1412
|
+
}
|
|
1413
|
+
declare function CancellationRequestReceivedEmail({ recipientName, bookingRef, adventures, travellersCount, agentName, agentContactLinks, logoUrl, labels, className, }: CancellationRequestReceivedEmailProps): react_jsx_runtime.JSX.Element;
|
|
1414
|
+
|
|
1306
1415
|
interface BookingSummaryRow {
|
|
1307
1416
|
/** Label da linha (coluna esquerda, mutedForeground). */
|
|
1308
1417
|
label: string;
|
|
@@ -5064,4 +5173,4 @@ interface SegmentedControlProps {
|
|
|
5064
5173
|
}
|
|
5065
5174
|
declare function SegmentedControl({ items, value, defaultValue, onValueChange, variant, size, fullWidth, collapse, "aria-label": ariaLabel, className, }: SegmentedControlProps): react_jsx_runtime.JSX.Element;
|
|
5066
5175
|
|
|
5067
|
-
export { type AccommodationRoomItem, ActivityCard, type ActivityCardProps, type ActivityCardSize, AdventureExplorer, type AdventureExplorerProps, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, AskExo, type AskExoProps, type AskExoSuggestion, BirthDateField, type BirthDateFieldProps, type BlogAuthor, type BlogBlock, type BlogCalloutBlock, BlogCard, type BlogCardCta, type BlogCardProps, type BlogCardSize, type BlogCollageBlock, type BlogHeadingBlock, type BlogImageBlock, BlogJournal, type BlogJournalFeature, type BlogJournalPost, type BlogJournalProps, type BlogListBlock, type BlogParagraphBlock, BlogPost, type BlogPostProps, type BlogQuoteBlock, type BlogTableBlock, type BlogTableColumn, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, type BookingCancellationAdventure, type BookingCancellationAgentContactLinks, BookingCancellationEmail, type BookingCancellationEmailLabels, type BookingCancellationEmailProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, BookingCreatedEmail, type BookingCreatedEmailLabels, type BookingCreatedEmailProps, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingPaymentConfirmationEmail, type BookingPaymentConfirmationEmailLabels, type BookingPaymentConfirmationEmailProps, BookingShell, type BookingShellProps, type BookingStatus, BookingSummary, type BookingSummaryLineItem, type BookingSummaryProps, type BookingSummaryRoomItem, type BookingSummaryRow, type BookingTraveller, Button, type ButtonProps, COUNTRIES, CancellationForm, type CancellationFormAdventure, type CancellationFormLabels, type CancellationFormOption, type CancellationFormParticipant, type CancellationFormProps, type CancellationFormValues, type Category2BlogPost, type Category2Faq, type Category2SortOption, type Category2Trip, CategoryPage2, type CategoryPage2Props, Chip, type ChipProps, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, CtaBanner, type CtaBannerCta, type CtaBannerProps, type CurrencyEstimate, DEFAULT_FOOTER_BADGES, DEFAULT_FOOTER_DESTINATIONS, DEFAULT_FOOTER_LANGUAGES, DEFAULT_FOOTER_LEGAL, DEFAULT_FOOTER_PAGES, DEFAULT_FOOTER_SOCIALS, DEFAULT_FOOTER_THEMES, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, STATUS_MAP as DEPARTURE_STATUS_MAP, DatePickerField, type DatePickerFieldProps, type DepartureStatus, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, ExoOrb, type ExoOrbProps, type ExploreCard, type ExploreTab, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, GroupProgressBar, type GroupProgressBarProps, GroupStatusBanner, type GroupStatusBannerProps, HomeHeader, type HomeHeaderCta, type HomeHeaderPressLogo, type HomeHeaderProps, type HomeHeaderRating, type HomeSiteHeaderConfig, 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, NewHome, type NewHomeExpeditions, type NewHomePopular, type NewHomePopularChip, type NewHomeProps, type NewHomeReview, type NewHomeReviews, type NewHomeSectionHead, type NewHomeSectionLink, type NewHomeStat, type NewHomeStats, NotificationEmail, type NotificationEmailCta, type NotificationEmailDetailItem, type NotificationEmailProps, type NotificationEmailRoster, type NotificationEmailRosterPerson, type NotificationEmailSummary, type NotificationEmailSummaryRow, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, type Participant, ParticipantCounter, type ParticipantCounterProps, ParticipantList, type ParticipantListProps, type PartnerBookingCreatedAgentContactLinks, PartnerBookingCreatedEmail, type PartnerBookingCreatedEmailLabels, type PartnerBookingCreatedEmailProps, type PartnerRegistrationCompleteAgentContactLinks, PartnerRegistrationCompleteEmail, type PartnerRegistrationCompleteEmailExpectationRow, type PartnerRegistrationCompleteEmailLabels, type PartnerRegistrationCompleteEmailProps, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, type PaymentReceiptAdventure, type PaymentReceiptAdventureLineItem, 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, Picture, type PictureProps, PriceProgress, type PriceProgressProps, PricingMatrixCard, type PricingMatrixCardProps, type PricingTier, 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 RegistrationReminderIndividualAgentContactLinks, RegistrationReminderIndividualEmail, type RegistrationReminderIndividualEmailLabels, type RegistrationReminderIndividualEmailProps, type RegistrationReminderIndividualRoute, type RegistrationReminderIndividualSlug, type RegistrationReminderIndividualVariantLabels, type RegistrationReminderSlug, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, type SegmentItem, SegmentedControl, type SegmentedControlProps, ShareWidget, type ShareWidgetProps, SiteFooter, type SiteFooterAddress, type SiteFooterBadge, type SiteFooterChip, type SiteFooterLanguage, type SiteFooterLink, type SiteFooterProps, type SiteFooterSocial, type SiteFooterVariant, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, StatusBadge, type StatusBadgeProps, StickyBookingCard, type StickyBookingCardProps, 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 TripPageLabels, type TripPageProps, type TripReview, type TripSectionIcons, type TripSiteHeaderConfig, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, USP, type USPItem, type USPProps, buttonVariants, chipVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, webpVariantUrl, wrapEmailHtml };
|
|
5176
|
+
export { type AccommodationRoomItem, ActivityCard, type ActivityCardProps, type ActivityCardSize, AdventureExplorer, type AdventureExplorerProps, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, AskExo, type AskExoProps, type AskExoSuggestion, BirthDateField, type BirthDateFieldProps, type BlogAuthor, type BlogBlock, type BlogCalloutBlock, BlogCard, type BlogCardCta, type BlogCardProps, type BlogCardSize, type BlogCollageBlock, type BlogHeadingBlock, type BlogImageBlock, BlogJournal, type BlogJournalFeature, type BlogJournalPost, type BlogJournalProps, type BlogListBlock, type BlogParagraphBlock, BlogPost, type BlogPostProps, type BlogQuoteBlock, type BlogTableBlock, type BlogTableColumn, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, type BookingCancellationAdventure, type BookingCancellationAgentContactLinks, BookingCancellationEmail, type BookingCancellationEmailLabels, type BookingCancellationEmailProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, BookingCreatedEmail, type BookingCreatedEmailLabels, type BookingCreatedEmailProps, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingPaymentConfirmationEmail, type BookingPaymentConfirmationEmailLabels, type BookingPaymentConfirmationEmailProps, BookingShell, type BookingShellProps, type BookingStatus, BookingSummary, type BookingSummaryLineItem, type BookingSummaryProps, type BookingSummaryRoomItem, type BookingSummaryRow, type BookingTraveller, Button, type ButtonProps, COUNTRIES, CancellationForm, type CancellationFormAdventure, type CancellationFormLabels, type CancellationFormOption, type CancellationFormParticipant, type CancellationFormProps, type CancellationFormValues, type CancellationRequestReceivedAdventure, type CancellationRequestReceivedAgentContactLinks, CancellationRequestReceivedEmail, type CancellationRequestReceivedEmailLabels, type CancellationRequestReceivedEmailProps, type Category2BlogPost, type Category2Faq, type Category2SortOption, type Category2Trip, CategoryPage2, type CategoryPage2Props, Chip, type ChipProps, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, CtaBanner, type CtaBannerCta, type CtaBannerProps, type CurrencyEstimate, DEFAULT_FOOTER_BADGES, DEFAULT_FOOTER_DESTINATIONS, DEFAULT_FOOTER_LANGUAGES, DEFAULT_FOOTER_LEGAL, DEFAULT_FOOTER_PAGES, DEFAULT_FOOTER_SOCIALS, DEFAULT_FOOTER_THEMES, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, STATUS_MAP as DEPARTURE_STATUS_MAP, DatePickerField, type DatePickerFieldProps, type DepartureStatus, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, ExoOrb, type ExoOrbProps, type ExploreCard, type ExploreTab, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, GroupProgressBar, type GroupProgressBarProps, GroupStatusBanner, type GroupStatusBannerProps, HomeHeader, type HomeHeaderCta, type HomeHeaderPressLogo, type HomeHeaderProps, type HomeHeaderRating, type HomeSiteHeaderConfig, 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, NewHome, type NewHomeExpeditions, type NewHomePopular, type NewHomePopularChip, type NewHomeProps, type NewHomeReview, type NewHomeReviews, type NewHomeSectionHead, type NewHomeSectionLink, type NewHomeStat, type NewHomeStats, NotificationEmail, type NotificationEmailCta, type NotificationEmailDetailItem, type NotificationEmailProps, type NotificationEmailRoster, type NotificationEmailRosterPerson, type NotificationEmailSummary, type NotificationEmailSummaryRow, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, type Participant, ParticipantCounter, type ParticipantCounterProps, ParticipantList, type ParticipantListProps, type PartnerBookingCreatedAgentContactLinks, PartnerBookingCreatedEmail, type PartnerBookingCreatedEmailLabels, type PartnerBookingCreatedEmailProps, type PartnerRegistrationCompleteAgentContactLinks, PartnerRegistrationCompleteEmail, type PartnerRegistrationCompleteEmailExpectationRow, type PartnerRegistrationCompleteEmailLabels, type PartnerRegistrationCompleteEmailProps, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, type PaymentReceiptAdventure, type PaymentReceiptAdventureLineItem, 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, Picture, type PictureProps, PriceProgress, type PriceProgressProps, PricingMatrixCard, type PricingMatrixCardProps, type PricingTier, 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 RegistrationReminderIndividualAgentContactLinks, RegistrationReminderIndividualEmail, type RegistrationReminderIndividualEmailLabels, type RegistrationReminderIndividualEmailProps, type RegistrationReminderIndividualRoute, type RegistrationReminderIndividualSlug, type RegistrationReminderIndividualVariantLabels, type RegistrationReminderSlug, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, type SegmentItem, SegmentedControl, type SegmentedControlProps, ShareWidget, type ShareWidgetProps, SiteFooter, type SiteFooterAddress, type SiteFooterBadge, type SiteFooterChip, type SiteFooterLanguage, type SiteFooterLink, type SiteFooterProps, type SiteFooterSocial, type SiteFooterVariant, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, StatusBadge, type StatusBadgeProps, StickyBookingCard, type StickyBookingCardProps, 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 TripPageLabels, type TripPageProps, type TripReview, type TripSectionIcons, type TripSiteHeaderConfig, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, USP, type USPItem, type USPProps, buttonVariants, chipVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, webpVariantUrl, wrapEmailHtml };
|
package/dist/index.d.ts
CHANGED
|
@@ -89,6 +89,13 @@ interface BookingAdventureCardLabels {
|
|
|
89
89
|
childrenUnit?: string;
|
|
90
90
|
/** Heading da seção ACCOMMODATIONS. Default "ACCOMMODATIONS". */
|
|
91
91
|
accommodationsHeading?: string;
|
|
92
|
+
/**
|
|
93
|
+
* Heading por quarto no layout `feature` (ex.: "Accommodation: Suíte Master").
|
|
94
|
+
* Interpolado pelo DS via `accommodationRoomHeading(room.roomName)`.
|
|
95
|
+
* Default EN `(n) => \`Accommodation: ${n}\``. Usado só quando
|
|
96
|
+
* `roomLayout==="feature"`.
|
|
97
|
+
*/
|
|
98
|
+
accommodationRoomHeading?: (name: string) => string;
|
|
92
99
|
/** Labels localizados para o chip de bedArrangement. */
|
|
93
100
|
bedArrangementLabels?: {
|
|
94
101
|
DOUBLE?: string;
|
|
@@ -159,12 +166,21 @@ interface BookingAdventureCardProps {
|
|
|
159
166
|
* quartos selecionados (renderiza bloco "ACCOMMODATIONS"). Vazio = bloco oculto.
|
|
160
167
|
*/
|
|
161
168
|
rooms?: AccommodationRoomItem[];
|
|
169
|
+
/**
|
|
170
|
+
* Layout do bloco ACCOMMODATIONS:
|
|
171
|
+
* - `"compact"` (default) — card compacto atual (img 80×60 + chip + qty +
|
|
172
|
+
* roomType). Usado por PaymentReminderEmail e qualquer caller sem a prop.
|
|
173
|
+
* - `"feature"` — padrão manual da equipe: heading "Accommodation: {nome}"
|
|
174
|
+
* por quarto + imagem larga (full-width) + chip/qty/roomType/description
|
|
175
|
+
* mantidos abaixo. Ativado só pelo BookingPaymentConfirmationEmail.
|
|
176
|
+
*/
|
|
177
|
+
roomLayout?: "compact" | "feature";
|
|
162
178
|
/** Labels para i18n / customização. */
|
|
163
179
|
labels?: BookingAdventureCardLabels;
|
|
164
180
|
/** className extra no container. */
|
|
165
181
|
className?: string;
|
|
166
182
|
}
|
|
167
|
-
declare function BookingAdventureCard({ tag, name, startDate, endDate, travellerCount, slots, travellers, itinerary, description, image, imageAlt, location, destination, partner, included, notIncluded, lineItems, subtotal, rooms, labels, className, }: BookingAdventureCardProps): react_jsx_runtime.JSX.Element;
|
|
183
|
+
declare function BookingAdventureCard({ tag, name, startDate, endDate, travellerCount, slots, travellers, itinerary, description, image, imageAlt, location, destination, partner, included, notIncluded, lineItems, subtotal, rooms, roomLayout, labels, className, }: BookingAdventureCardProps): react_jsx_runtime.JSX.Element;
|
|
168
184
|
|
|
169
185
|
interface OfferSummaryLineItem {
|
|
170
186
|
label: string;
|
|
@@ -253,6 +269,12 @@ interface OfferAdventureItem {
|
|
|
253
269
|
rooms?: AccommodationRoomItem[];
|
|
254
270
|
/** Heading do bloco Accommodations. Default: "Accommodations". */
|
|
255
271
|
accommodationsLabel?: string;
|
|
272
|
+
/**
|
|
273
|
+
* Heading por quarto no padrão manual ("Accommodation: {name}").
|
|
274
|
+
* Interpolado pelo componente via `accommodationRoomHeading(room.roomName)`.
|
|
275
|
+
* Default EN `(n) => \`Accommodation: ${n}\``.
|
|
276
|
+
*/
|
|
277
|
+
accommodationRoomHeading?: (name: string) => string;
|
|
256
278
|
/** Labels localizados para o chip de bedArrangement. */
|
|
257
279
|
bedArrangementLabels?: {
|
|
258
280
|
DOUBLE?: string;
|
|
@@ -996,6 +1018,20 @@ interface BookingPaymentConfirmationEmailLabels {
|
|
|
996
1018
|
pricingLabel?: string;
|
|
997
1019
|
subtotalLabel?: string;
|
|
998
1020
|
totalLabel?: string;
|
|
1021
|
+
/** Heading da seção ACCOMMODATIONS no card. Default EN "ACCOMMODATIONS". */
|
|
1022
|
+
accommodationsLabel?: string;
|
|
1023
|
+
/**
|
|
1024
|
+
* Heading por quarto no layout feature ("Accommodation: {name}").
|
|
1025
|
+
* Default EN `(n) => \`Accommodation: ${n}\``.
|
|
1026
|
+
*/
|
|
1027
|
+
accommodationRoomHeading?: (name: string) => string;
|
|
1028
|
+
/** Labels localizados para o chip de bedArrangement. */
|
|
1029
|
+
bedArrangementLabels?: {
|
|
1030
|
+
DOUBLE?: string;
|
|
1031
|
+
TWIN?: string;
|
|
1032
|
+
SINGLE?: string;
|
|
1033
|
+
TRIPLE?: string;
|
|
1034
|
+
};
|
|
999
1035
|
paymentSummaryHeading?: string;
|
|
1000
1036
|
paymentDetailsHeading?: string;
|
|
1001
1037
|
depositLabel?: (percent: number) => string;
|
|
@@ -1303,6 +1339,79 @@ interface BookingCancellationEmailProps {
|
|
|
1303
1339
|
}
|
|
1304
1340
|
declare function BookingCancellationEmail({ recipientName, bookingRef, adventures, travellersCount, refundAmount, agentName, agentContactLinks, logoUrl, labels, className, }: BookingCancellationEmailProps): react_jsx_runtime.JSX.Element;
|
|
1305
1341
|
|
|
1342
|
+
interface CancellationRequestReceivedAgentContactLinks {
|
|
1343
|
+
/** URL completo do WhatsApp (ex.: "https://wa.me/5511987654321"). */
|
|
1344
|
+
whatsappUrl?: string;
|
|
1345
|
+
/** Email do agente (ex.: "gabriel@planetaexo.com"). */
|
|
1346
|
+
email?: string;
|
|
1347
|
+
}
|
|
1348
|
+
interface CancellationRequestReceivedAdventure {
|
|
1349
|
+
/** Nome da aventura, ex.: "Vale do Pati Trek". */
|
|
1350
|
+
name: string;
|
|
1351
|
+
/** Data de início JÁ FORMATADA pelo backend (ex.: "12 de maio de 2026"). */
|
|
1352
|
+
startDate: string;
|
|
1353
|
+
/** Data de fim JÁ FORMATADA pelo backend (ex.: "18 de maio de 2026"). */
|
|
1354
|
+
endDate: string;
|
|
1355
|
+
}
|
|
1356
|
+
interface CancellationRequestReceivedEmailLabels {
|
|
1357
|
+
logoAlt?: string;
|
|
1358
|
+
greeting?: (recipientName: string) => string;
|
|
1359
|
+
/** Título principal — ex.: "We've received your cancellation request". */
|
|
1360
|
+
title?: string;
|
|
1361
|
+
/**
|
|
1362
|
+
* Frase de intro abaixo do título — recebe o bookingRef já prefixado
|
|
1363
|
+
* (ex.: "#95465") e devolve o texto contextual.
|
|
1364
|
+
*/
|
|
1365
|
+
intro?: (bookingRef: string) => string;
|
|
1366
|
+
/** Heading do bloco BookingSummary (ex.: "Your request"). */
|
|
1367
|
+
summaryHeading?: string;
|
|
1368
|
+
bookingNumberLabel?: string;
|
|
1369
|
+
adventuresLabel?: string;
|
|
1370
|
+
datesLabel?: string;
|
|
1371
|
+
travellersLabel?: string;
|
|
1372
|
+
/** Heading do bloco informativo de próximos passos. */
|
|
1373
|
+
nextStepsHeading?: string;
|
|
1374
|
+
/** Nota do bloco de próximos passos (ex.: "No action is needed right now."). */
|
|
1375
|
+
nextStepsNote?: string;
|
|
1376
|
+
/**
|
|
1377
|
+
* Closing principal quando há agente atribuído. Recebe nome + URLs de
|
|
1378
|
+
* contato e devolve JSX com hyperlinks inline (WhatsApp/email). Quando
|
|
1379
|
+
* URLs ausentes, helpers caem para plain text.
|
|
1380
|
+
*/
|
|
1381
|
+
closingAgent?: (agentName: string, contact: CancellationRequestReceivedAgentContactLinks) => React.ReactNode;
|
|
1382
|
+
/** Closing alternativo quando booking não tem agente. Plain text. */
|
|
1383
|
+
closingNoAgent?: string;
|
|
1384
|
+
/** Assinatura final (ex.: "The PlanetaEXO Team"). */
|
|
1385
|
+
teamSignature?: string;
|
|
1386
|
+
}
|
|
1387
|
+
interface CancellationRequestReceivedEmailProps {
|
|
1388
|
+
/** Primeiro nome do destinatário (booking person). */
|
|
1389
|
+
recipientName: string;
|
|
1390
|
+
/**
|
|
1391
|
+
* Referência pública da reserva (ex.: "95465"). Renderizada prefixada
|
|
1392
|
+
* com "#" dentro do BookingSummary.
|
|
1393
|
+
*/
|
|
1394
|
+
bookingRef: string;
|
|
1395
|
+
/** Aventuras que o cliente pediu para cancelar (1+ itens). */
|
|
1396
|
+
adventures: CancellationRequestReceivedAdventure[];
|
|
1397
|
+
/** Quantidade de viajantes selecionados na solicitação. */
|
|
1398
|
+
travellersCount: number;
|
|
1399
|
+
/** Nome do agente. Quando ausente/vazio, usa `closingNoAgent`. */
|
|
1400
|
+
agentName?: string;
|
|
1401
|
+
/**
|
|
1402
|
+
* URLs/dados de contato do agente para renderizar WhatsApp e email
|
|
1403
|
+
* como hyperlinks no closing. Ausência de uma URL = plain text.
|
|
1404
|
+
*/
|
|
1405
|
+
agentContactLinks?: CancellationRequestReceivedAgentContactLinks;
|
|
1406
|
+
/** URL da logo. Default: data URI via EmailLogo. */
|
|
1407
|
+
logoUrl?: string;
|
|
1408
|
+
/** Labels para i18n / customização. */
|
|
1409
|
+
labels?: CancellationRequestReceivedEmailLabels;
|
|
1410
|
+
/** className adicional no container. */
|
|
1411
|
+
className?: string;
|
|
1412
|
+
}
|
|
1413
|
+
declare function CancellationRequestReceivedEmail({ recipientName, bookingRef, adventures, travellersCount, agentName, agentContactLinks, logoUrl, labels, className, }: CancellationRequestReceivedEmailProps): react_jsx_runtime.JSX.Element;
|
|
1414
|
+
|
|
1306
1415
|
interface BookingSummaryRow {
|
|
1307
1416
|
/** Label da linha (coluna esquerda, mutedForeground). */
|
|
1308
1417
|
label: string;
|
|
@@ -5064,4 +5173,4 @@ interface SegmentedControlProps {
|
|
|
5064
5173
|
}
|
|
5065
5174
|
declare function SegmentedControl({ items, value, defaultValue, onValueChange, variant, size, fullWidth, collapse, "aria-label": ariaLabel, className, }: SegmentedControlProps): react_jsx_runtime.JSX.Element;
|
|
5066
5175
|
|
|
5067
|
-
export { type AccommodationRoomItem, ActivityCard, type ActivityCardProps, type ActivityCardSize, AdventureExplorer, type AdventureExplorerProps, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, AskExo, type AskExoProps, type AskExoSuggestion, BirthDateField, type BirthDateFieldProps, type BlogAuthor, type BlogBlock, type BlogCalloutBlock, BlogCard, type BlogCardCta, type BlogCardProps, type BlogCardSize, type BlogCollageBlock, type BlogHeadingBlock, type BlogImageBlock, BlogJournal, type BlogJournalFeature, type BlogJournalPost, type BlogJournalProps, type BlogListBlock, type BlogParagraphBlock, BlogPost, type BlogPostProps, type BlogQuoteBlock, type BlogTableBlock, type BlogTableColumn, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, type BookingCancellationAdventure, type BookingCancellationAgentContactLinks, BookingCancellationEmail, type BookingCancellationEmailLabels, type BookingCancellationEmailProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, BookingCreatedEmail, type BookingCreatedEmailLabels, type BookingCreatedEmailProps, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingPaymentConfirmationEmail, type BookingPaymentConfirmationEmailLabels, type BookingPaymentConfirmationEmailProps, BookingShell, type BookingShellProps, type BookingStatus, BookingSummary, type BookingSummaryLineItem, type BookingSummaryProps, type BookingSummaryRoomItem, type BookingSummaryRow, type BookingTraveller, Button, type ButtonProps, COUNTRIES, CancellationForm, type CancellationFormAdventure, type CancellationFormLabels, type CancellationFormOption, type CancellationFormParticipant, type CancellationFormProps, type CancellationFormValues, type Category2BlogPost, type Category2Faq, type Category2SortOption, type Category2Trip, CategoryPage2, type CategoryPage2Props, Chip, type ChipProps, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, CtaBanner, type CtaBannerCta, type CtaBannerProps, type CurrencyEstimate, DEFAULT_FOOTER_BADGES, DEFAULT_FOOTER_DESTINATIONS, DEFAULT_FOOTER_LANGUAGES, DEFAULT_FOOTER_LEGAL, DEFAULT_FOOTER_PAGES, DEFAULT_FOOTER_SOCIALS, DEFAULT_FOOTER_THEMES, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, STATUS_MAP as DEPARTURE_STATUS_MAP, DatePickerField, type DatePickerFieldProps, type DepartureStatus, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, ExoOrb, type ExoOrbProps, type ExploreCard, type ExploreTab, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, GroupProgressBar, type GroupProgressBarProps, GroupStatusBanner, type GroupStatusBannerProps, HomeHeader, type HomeHeaderCta, type HomeHeaderPressLogo, type HomeHeaderProps, type HomeHeaderRating, type HomeSiteHeaderConfig, 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, NewHome, type NewHomeExpeditions, type NewHomePopular, type NewHomePopularChip, type NewHomeProps, type NewHomeReview, type NewHomeReviews, type NewHomeSectionHead, type NewHomeSectionLink, type NewHomeStat, type NewHomeStats, NotificationEmail, type NotificationEmailCta, type NotificationEmailDetailItem, type NotificationEmailProps, type NotificationEmailRoster, type NotificationEmailRosterPerson, type NotificationEmailSummary, type NotificationEmailSummaryRow, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, type Participant, ParticipantCounter, type ParticipantCounterProps, ParticipantList, type ParticipantListProps, type PartnerBookingCreatedAgentContactLinks, PartnerBookingCreatedEmail, type PartnerBookingCreatedEmailLabels, type PartnerBookingCreatedEmailProps, type PartnerRegistrationCompleteAgentContactLinks, PartnerRegistrationCompleteEmail, type PartnerRegistrationCompleteEmailExpectationRow, type PartnerRegistrationCompleteEmailLabels, type PartnerRegistrationCompleteEmailProps, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, type PaymentReceiptAdventure, type PaymentReceiptAdventureLineItem, 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, Picture, type PictureProps, PriceProgress, type PriceProgressProps, PricingMatrixCard, type PricingMatrixCardProps, type PricingTier, 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 RegistrationReminderIndividualAgentContactLinks, RegistrationReminderIndividualEmail, type RegistrationReminderIndividualEmailLabels, type RegistrationReminderIndividualEmailProps, type RegistrationReminderIndividualRoute, type RegistrationReminderIndividualSlug, type RegistrationReminderIndividualVariantLabels, type RegistrationReminderSlug, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, type SegmentItem, SegmentedControl, type SegmentedControlProps, ShareWidget, type ShareWidgetProps, SiteFooter, type SiteFooterAddress, type SiteFooterBadge, type SiteFooterChip, type SiteFooterLanguage, type SiteFooterLink, type SiteFooterProps, type SiteFooterSocial, type SiteFooterVariant, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, StatusBadge, type StatusBadgeProps, StickyBookingCard, type StickyBookingCardProps, 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 TripPageLabels, type TripPageProps, type TripReview, type TripSectionIcons, type TripSiteHeaderConfig, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, USP, type USPItem, type USPProps, buttonVariants, chipVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, webpVariantUrl, wrapEmailHtml };
|
|
5176
|
+
export { type AccommodationRoomItem, ActivityCard, type ActivityCardProps, type ActivityCardSize, AdventureExplorer, type AdventureExplorerProps, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, AskExo, type AskExoProps, type AskExoSuggestion, BirthDateField, type BirthDateFieldProps, type BlogAuthor, type BlogBlock, type BlogCalloutBlock, BlogCard, type BlogCardCta, type BlogCardProps, type BlogCardSize, type BlogCollageBlock, type BlogHeadingBlock, type BlogImageBlock, BlogJournal, type BlogJournalFeature, type BlogJournalPost, type BlogJournalProps, type BlogListBlock, type BlogParagraphBlock, BlogPost, type BlogPostProps, type BlogQuoteBlock, type BlogTableBlock, type BlogTableColumn, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, type BookingCancellationAdventure, type BookingCancellationAgentContactLinks, BookingCancellationEmail, type BookingCancellationEmailLabels, type BookingCancellationEmailProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, BookingCreatedEmail, type BookingCreatedEmailLabels, type BookingCreatedEmailProps, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingPaymentConfirmationEmail, type BookingPaymentConfirmationEmailLabels, type BookingPaymentConfirmationEmailProps, BookingShell, type BookingShellProps, type BookingStatus, BookingSummary, type BookingSummaryLineItem, type BookingSummaryProps, type BookingSummaryRoomItem, type BookingSummaryRow, type BookingTraveller, Button, type ButtonProps, COUNTRIES, CancellationForm, type CancellationFormAdventure, type CancellationFormLabels, type CancellationFormOption, type CancellationFormParticipant, type CancellationFormProps, type CancellationFormValues, type CancellationRequestReceivedAdventure, type CancellationRequestReceivedAgentContactLinks, CancellationRequestReceivedEmail, type CancellationRequestReceivedEmailLabels, type CancellationRequestReceivedEmailProps, type Category2BlogPost, type Category2Faq, type Category2SortOption, type Category2Trip, CategoryPage2, type CategoryPage2Props, Chip, type ChipProps, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, CtaBanner, type CtaBannerCta, type CtaBannerProps, type CurrencyEstimate, DEFAULT_FOOTER_BADGES, DEFAULT_FOOTER_DESTINATIONS, DEFAULT_FOOTER_LANGUAGES, DEFAULT_FOOTER_LEGAL, DEFAULT_FOOTER_PAGES, DEFAULT_FOOTER_SOCIALS, DEFAULT_FOOTER_THEMES, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, STATUS_MAP as DEPARTURE_STATUS_MAP, DatePickerField, type DatePickerFieldProps, type DepartureStatus, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, ExoOrb, type ExoOrbProps, type ExploreCard, type ExploreTab, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, GroupProgressBar, type GroupProgressBarProps, GroupStatusBanner, type GroupStatusBannerProps, HomeHeader, type HomeHeaderCta, type HomeHeaderPressLogo, type HomeHeaderProps, type HomeHeaderRating, type HomeSiteHeaderConfig, 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, NewHome, type NewHomeExpeditions, type NewHomePopular, type NewHomePopularChip, type NewHomeProps, type NewHomeReview, type NewHomeReviews, type NewHomeSectionHead, type NewHomeSectionLink, type NewHomeStat, type NewHomeStats, NotificationEmail, type NotificationEmailCta, type NotificationEmailDetailItem, type NotificationEmailProps, type NotificationEmailRoster, type NotificationEmailRosterPerson, type NotificationEmailSummary, type NotificationEmailSummaryRow, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, type Participant, ParticipantCounter, type ParticipantCounterProps, ParticipantList, type ParticipantListProps, type PartnerBookingCreatedAgentContactLinks, PartnerBookingCreatedEmail, type PartnerBookingCreatedEmailLabels, type PartnerBookingCreatedEmailProps, type PartnerRegistrationCompleteAgentContactLinks, PartnerRegistrationCompleteEmail, type PartnerRegistrationCompleteEmailExpectationRow, type PartnerRegistrationCompleteEmailLabels, type PartnerRegistrationCompleteEmailProps, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, type PaymentReceiptAdventure, type PaymentReceiptAdventureLineItem, 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, Picture, type PictureProps, PriceProgress, type PriceProgressProps, PricingMatrixCard, type PricingMatrixCardProps, type PricingTier, 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 RegistrationReminderIndividualAgentContactLinks, RegistrationReminderIndividualEmail, type RegistrationReminderIndividualEmailLabels, type RegistrationReminderIndividualEmailProps, type RegistrationReminderIndividualRoute, type RegistrationReminderIndividualSlug, type RegistrationReminderIndividualVariantLabels, type RegistrationReminderSlug, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, type SegmentItem, SegmentedControl, type SegmentedControlProps, ShareWidget, type ShareWidgetProps, SiteFooter, type SiteFooterAddress, type SiteFooterBadge, type SiteFooterChip, type SiteFooterLanguage, type SiteFooterLink, type SiteFooterProps, type SiteFooterSocial, type SiteFooterVariant, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, StatusBadge, type StatusBadgeProps, StickyBookingCard, type StickyBookingCardProps, 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 TripPageLabels, type TripPageProps, type TripReview, type TripSectionIcons, type TripSiteHeaderConfig, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, USP, type USPItem, type USPProps, buttonVariants, chipVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, webpVariantUrl, wrapEmailHtml };
|