@planetaexo/design-system 0.62.1 → 0.64.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 +532 -212
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +122 -4
- package/dist/index.d.ts +122 -4
- package/dist/index.js +502 -183
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -140,6 +140,12 @@ interface BookingAdventureCardProps {
|
|
|
140
140
|
location?: string;
|
|
141
141
|
/** Linha 🧭 destination/partner (legado BookingConfirmation). */
|
|
142
142
|
destination?: string;
|
|
143
|
+
/**
|
|
144
|
+
* Linha 🤝 do parceiro/operador local responsável por esta aventura.
|
|
145
|
+
* Renderiza uma linha própria (separada do `destination` 🧭) e só quando
|
|
146
|
+
* presente. Spec passport-and-partner-email-fields.
|
|
147
|
+
*/
|
|
148
|
+
partner?: string;
|
|
143
149
|
/** Lista de itens inclusos (legado BookingConfirmation). */
|
|
144
150
|
included?: string[];
|
|
145
151
|
/** Lista de itens não inclusos (legado BookingConfirmation). */
|
|
@@ -158,7 +164,7 @@ interface BookingAdventureCardProps {
|
|
|
158
164
|
/** className extra no container. */
|
|
159
165
|
className?: string;
|
|
160
166
|
}
|
|
161
|
-
declare function BookingAdventureCard({ tag, name, startDate, endDate, travellerCount, slots, travellers, itinerary, description, image, imageAlt, location, destination, included, notIncluded, lineItems, subtotal, rooms, labels, className, }: BookingAdventureCardProps): react_jsx_runtime.JSX.Element;
|
|
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;
|
|
162
168
|
|
|
163
169
|
interface OfferSummaryLineItem {
|
|
164
170
|
label: string;
|
|
@@ -1036,6 +1042,13 @@ interface ConfirmationAdventure {
|
|
|
1036
1042
|
partner?: string;
|
|
1037
1043
|
/** Nome do destino (Adventure.adventureDestinations[].destination.name). Quando presente, prioriza este valor sobre `partner` na linha 🧭. */
|
|
1038
1044
|
destinationName?: string;
|
|
1045
|
+
/**
|
|
1046
|
+
* Nome do parceiro/operador local atribuído a ESTA aventura
|
|
1047
|
+
* (BookingAdventure.partner.name). Renderiza a linha 🤝 do card, separada da
|
|
1048
|
+
* linha 🧭 de destino. Quando ausente, a linha não aparece. Spec
|
|
1049
|
+
* passport-and-partner-email-fields.
|
|
1050
|
+
*/
|
|
1051
|
+
partnerName?: string;
|
|
1039
1052
|
/** Slot legado de endereço/localização (linha 📍). Quando ausente E `destinationName` presente, a linha 📍 some. Mantido em paralelo para compat backward. */
|
|
1040
1053
|
location?: string;
|
|
1041
1054
|
dateFrom: string;
|
|
@@ -1588,6 +1601,17 @@ interface PartnerRegistrationCompleteEmailProps {
|
|
|
1588
1601
|
adventureName: string;
|
|
1589
1602
|
/** Já formatado pelo backend (ex.: "12 May 2026 – 18 May 2026"). */
|
|
1590
1603
|
dateRange: string;
|
|
1604
|
+
/**
|
|
1605
|
+
* Nome da pessoa responsável pela reserva (booking person). Quando presente,
|
|
1606
|
+
* renderiza uma row "Booking person" no Trip details. Spec
|
|
1607
|
+
* passport-and-partner-email-fields.
|
|
1608
|
+
*/
|
|
1609
|
+
bookingPersonName?: string;
|
|
1610
|
+
/**
|
|
1611
|
+
* Passaporte / documento da pessoa responsável (booking person). Quando
|
|
1612
|
+
* presente, renderiza uma row "Passport" no Trip details; omitido quando ausente.
|
|
1613
|
+
*/
|
|
1614
|
+
bookingPersonPassport?: string;
|
|
1591
1615
|
travellersCount: number;
|
|
1592
1616
|
/** Seção Travellers Expectations. hasSection=false → nenhum campo marcado no form. */
|
|
1593
1617
|
expectations: {
|
|
@@ -1617,6 +1641,8 @@ interface PartnerRegistrationCompleteEmailLabels {
|
|
|
1617
1641
|
adventureLabel?: string;
|
|
1618
1642
|
datesLabel?: string;
|
|
1619
1643
|
partnerLabel?: string;
|
|
1644
|
+
bookingPersonLabel?: string;
|
|
1645
|
+
passportLabel?: string;
|
|
1620
1646
|
expectationsHeading?: string;
|
|
1621
1647
|
/** Quando hasSection=false OU rows vazio. */
|
|
1622
1648
|
expectationsEmptyNote?: string;
|
|
@@ -1629,7 +1655,7 @@ interface PartnerRegistrationCompleteEmailLabels {
|
|
|
1629
1655
|
closingNoAgent?: string;
|
|
1630
1656
|
teamSignature?: string;
|
|
1631
1657
|
}
|
|
1632
|
-
declare function PartnerRegistrationCompleteEmail({ scenario, topNotice, partnerName, bookingNumber, adventureName, dateRange, travellersCount, expectations, pdfAttached, agent, logoUrl, labels, className, }: PartnerRegistrationCompleteEmailProps): react_jsx_runtime.JSX.Element;
|
|
1658
|
+
declare function PartnerRegistrationCompleteEmail({ scenario, topNotice, partnerName, bookingNumber, adventureName, dateRange, bookingPersonName, bookingPersonPassport, travellersCount, expectations, pdfAttached, agent, logoUrl, labels, className, }: PartnerRegistrationCompleteEmailProps): react_jsx_runtime.JSX.Element;
|
|
1633
1659
|
|
|
1634
1660
|
interface PartnerBookingCreatedAgentContactLinks {
|
|
1635
1661
|
whatsappUrl?: string;
|
|
@@ -1723,6 +1749,7 @@ interface PaymentReceiptEmailLabels {
|
|
|
1723
1749
|
interestSurchargeLabel?: string;
|
|
1724
1750
|
statusLabel?: string;
|
|
1725
1751
|
travellersLabel?: string;
|
|
1752
|
+
passportLabel?: string;
|
|
1726
1753
|
summaryHeading?: string;
|
|
1727
1754
|
totalOrderLabel?: string;
|
|
1728
1755
|
totalPaidLabel?: string;
|
|
@@ -1766,6 +1793,12 @@ interface PaymentReceiptEmailProps {
|
|
|
1766
1793
|
statusLabel: string;
|
|
1767
1794
|
/** Lista de nomes dos viajantes da reserva. */
|
|
1768
1795
|
travellers: string[];
|
|
1796
|
+
/**
|
|
1797
|
+
* Passaporte / documento da pessoa responsável pela reserva (booking person).
|
|
1798
|
+
* Quando ausente/vazio, a row "Passport" não renderiza. Spec
|
|
1799
|
+
* passport-and-partner-email-fields.
|
|
1800
|
+
*/
|
|
1801
|
+
passport?: string;
|
|
1769
1802
|
/** Total da reserva formatado. */
|
|
1770
1803
|
totalOrderAmount: string;
|
|
1771
1804
|
/** Soma acumulada de pagamentos confirmados (após esta transação). */
|
|
@@ -1790,7 +1823,7 @@ interface PaymentReceiptEmailProps {
|
|
|
1790
1823
|
/** className adicional no container. */
|
|
1791
1824
|
className?: string;
|
|
1792
1825
|
}
|
|
1793
|
-
declare function PaymentReceiptEmail({ recipientName, bookingNumber, paymentMethodLabel, paymentDate, amount, chargedAmount, statusLabel, travellers, totalOrderAmount, totalPaidCumulative, remainingBalance, balanceDueDate, isPaidInFull, adventures, logoUrl, labels, className, }: PaymentReceiptEmailProps): react_jsx_runtime.JSX.Element;
|
|
1826
|
+
declare function PaymentReceiptEmail({ recipientName, bookingNumber, paymentMethodLabel, paymentDate, amount, chargedAmount, statusLabel, travellers, passport, totalOrderAmount, totalPaidCumulative, remainingBalance, balanceDueDate, isPaidInFull, adventures, logoUrl, labels, className, }: PaymentReceiptEmailProps): react_jsx_runtime.JSX.Element;
|
|
1794
1827
|
|
|
1795
1828
|
/**
|
|
1796
1829
|
* Variante do lembrete:
|
|
@@ -2401,6 +2434,91 @@ interface RegistrationSuccessCardProps {
|
|
|
2401
2434
|
}
|
|
2402
2435
|
declare function RegistrationSuccessCard({ variant, title, message, answersTitle, fields, answers, dateFormatter, formatAnswer, countries, className, actions, logo, logoAlt, showSuccessIcon, terms, termsLayout, termsLabels, adventure, booking, traveller, tripInfoLabels, density, submissionTimestamps, submissionTimestampsLabels, labels: scLabels, sectionsBreakInside, termsTypography, }: RegistrationSuccessCardProps): react_jsx_runtime.JSX.Element;
|
|
2403
2436
|
|
|
2437
|
+
interface CancellationFormParticipant {
|
|
2438
|
+
/** Traveller.id */
|
|
2439
|
+
id: number;
|
|
2440
|
+
name: string;
|
|
2441
|
+
}
|
|
2442
|
+
interface CancellationFormAdventure {
|
|
2443
|
+
/** BookingAdventure.id — a unidade de cancelamento. */
|
|
2444
|
+
id: number;
|
|
2445
|
+
name: string;
|
|
2446
|
+
/** Intervalo de datas já formatado pelo consumidor (locale). */
|
|
2447
|
+
dateRange?: string | null;
|
|
2448
|
+
/** Política de cancelamento já resolvida pela locale da reserva. */
|
|
2449
|
+
cancellationPolicy?: string | null;
|
|
2450
|
+
/** Participantes (roster) desta aventura. */
|
|
2451
|
+
participants: CancellationFormParticipant[];
|
|
2452
|
+
}
|
|
2453
|
+
interface CancellationFormOption {
|
|
2454
|
+
/** Código persistido (ex.: CHANGE_OF_PLANS / REFUND). */
|
|
2455
|
+
value: string;
|
|
2456
|
+
label: string;
|
|
2457
|
+
}
|
|
2458
|
+
interface CancellationFormValues {
|
|
2459
|
+
selectedBookingAdventureIds: number[];
|
|
2460
|
+
selectedTravellerIds: number[];
|
|
2461
|
+
reasonCode: string;
|
|
2462
|
+
reasonOther: string;
|
|
2463
|
+
refundPreference: string;
|
|
2464
|
+
refundOther: string;
|
|
2465
|
+
agreedToPolicy: boolean;
|
|
2466
|
+
contact: {
|
|
2467
|
+
name: string;
|
|
2468
|
+
email: string;
|
|
2469
|
+
phone: string;
|
|
2470
|
+
};
|
|
2471
|
+
}
|
|
2472
|
+
interface CancellationFormLabels {
|
|
2473
|
+
/** Identidade (prefill editável). */
|
|
2474
|
+
identityHeading: string;
|
|
2475
|
+
contactNameLabel: string;
|
|
2476
|
+
contactEmailLabel: string;
|
|
2477
|
+
contactPhoneLabel: string;
|
|
2478
|
+
/** Seleção de aventuras. */
|
|
2479
|
+
adventuresHeading: string;
|
|
2480
|
+
adventuresHint?: string;
|
|
2481
|
+
selectAllLabel: string;
|
|
2482
|
+
policyHeading: string;
|
|
2483
|
+
participantsHeading: string;
|
|
2484
|
+
/** Motivo. */
|
|
2485
|
+
reasonHeading: string;
|
|
2486
|
+
reasonOptions: CancellationFormOption[];
|
|
2487
|
+
reasonOtherLabel: string;
|
|
2488
|
+
/** Reembolso / crédito. */
|
|
2489
|
+
refundHeading: string;
|
|
2490
|
+
refundOptions: CancellationFormOption[];
|
|
2491
|
+
refundOtherLabel: string;
|
|
2492
|
+
/** Aceite + submit. */
|
|
2493
|
+
agreementLabel: string;
|
|
2494
|
+
submitLabel: string;
|
|
2495
|
+
submittingLabel: string;
|
|
2496
|
+
/** Mensagens de validação. */
|
|
2497
|
+
errorSelectAdventure: string;
|
|
2498
|
+
errorSelectParticipants: string;
|
|
2499
|
+
errorReasonRequired: string;
|
|
2500
|
+
errorReasonOtherRequired: string;
|
|
2501
|
+
errorRefundRequired: string;
|
|
2502
|
+
errorRefundOtherRequired: string;
|
|
2503
|
+
errorAgreementRequired: string;
|
|
2504
|
+
}
|
|
2505
|
+
interface CancellationFormProps {
|
|
2506
|
+
adventures: CancellationFormAdventure[];
|
|
2507
|
+
/** Prefill de identidade (editável). */
|
|
2508
|
+
identity?: {
|
|
2509
|
+
name?: string;
|
|
2510
|
+
email?: string;
|
|
2511
|
+
phone?: string;
|
|
2512
|
+
};
|
|
2513
|
+
labels: CancellationFormLabels;
|
|
2514
|
+
onSubmit: (values: CancellationFormValues) => void | Promise<void>;
|
|
2515
|
+
submitting?: boolean;
|
|
2516
|
+
/** Erro de topo vindo do consumidor (ex.: 409 do backend). */
|
|
2517
|
+
error?: string | null;
|
|
2518
|
+
className?: string;
|
|
2519
|
+
}
|
|
2520
|
+
declare function CancellationForm({ adventures, identity, labels, onSubmit, submitting, error, className, }: CancellationFormProps): react_jsx_runtime.JSX.Element;
|
|
2521
|
+
|
|
2404
2522
|
interface FloatingInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
2405
2523
|
label: string;
|
|
2406
2524
|
error?: string;
|
|
@@ -4221,4 +4339,4 @@ interface StickyBookingCardProps {
|
|
|
4221
4339
|
}
|
|
4222
4340
|
declare function StickyBookingCard({ currentPrice, deposit, spotsRemaining, mode, onPrimary, note, className, }: StickyBookingCardProps): react_jsx_runtime.JSX.Element;
|
|
4223
4341
|
|
|
4224
|
-
export { type AccommodationRoomItem, ActivityCard, type ActivityCardProps, type ActivityCardSize, 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, 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, type Category2BlogPost, type Category2Faq, type Category2SortOption, type Category2Trip, CategoryPage2, type CategoryPage2Props, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, 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 FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, GroupProgressBar, type GroupProgressBarProps, GroupStatusBanner, type GroupStatusBannerProps, 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, 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, ShareWidget, type ShareWidgetProps, 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, buttonVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, webpVariantUrl, wrapEmailHtml };
|
|
4342
|
+
export { type AccommodationRoomItem, ActivityCard, type ActivityCardProps, type ActivityCardSize, 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, 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, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, 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 FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, GroupProgressBar, type GroupProgressBarProps, GroupStatusBanner, type GroupStatusBannerProps, 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, 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, ShareWidget, type ShareWidgetProps, 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, buttonVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, webpVariantUrl, wrapEmailHtml };
|
package/dist/index.d.ts
CHANGED
|
@@ -140,6 +140,12 @@ interface BookingAdventureCardProps {
|
|
|
140
140
|
location?: string;
|
|
141
141
|
/** Linha 🧭 destination/partner (legado BookingConfirmation). */
|
|
142
142
|
destination?: string;
|
|
143
|
+
/**
|
|
144
|
+
* Linha 🤝 do parceiro/operador local responsável por esta aventura.
|
|
145
|
+
* Renderiza uma linha própria (separada do `destination` 🧭) e só quando
|
|
146
|
+
* presente. Spec passport-and-partner-email-fields.
|
|
147
|
+
*/
|
|
148
|
+
partner?: string;
|
|
143
149
|
/** Lista de itens inclusos (legado BookingConfirmation). */
|
|
144
150
|
included?: string[];
|
|
145
151
|
/** Lista de itens não inclusos (legado BookingConfirmation). */
|
|
@@ -158,7 +164,7 @@ interface BookingAdventureCardProps {
|
|
|
158
164
|
/** className extra no container. */
|
|
159
165
|
className?: string;
|
|
160
166
|
}
|
|
161
|
-
declare function BookingAdventureCard({ tag, name, startDate, endDate, travellerCount, slots, travellers, itinerary, description, image, imageAlt, location, destination, included, notIncluded, lineItems, subtotal, rooms, labels, className, }: BookingAdventureCardProps): react_jsx_runtime.JSX.Element;
|
|
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;
|
|
162
168
|
|
|
163
169
|
interface OfferSummaryLineItem {
|
|
164
170
|
label: string;
|
|
@@ -1036,6 +1042,13 @@ interface ConfirmationAdventure {
|
|
|
1036
1042
|
partner?: string;
|
|
1037
1043
|
/** Nome do destino (Adventure.adventureDestinations[].destination.name). Quando presente, prioriza este valor sobre `partner` na linha 🧭. */
|
|
1038
1044
|
destinationName?: string;
|
|
1045
|
+
/**
|
|
1046
|
+
* Nome do parceiro/operador local atribuído a ESTA aventura
|
|
1047
|
+
* (BookingAdventure.partner.name). Renderiza a linha 🤝 do card, separada da
|
|
1048
|
+
* linha 🧭 de destino. Quando ausente, a linha não aparece. Spec
|
|
1049
|
+
* passport-and-partner-email-fields.
|
|
1050
|
+
*/
|
|
1051
|
+
partnerName?: string;
|
|
1039
1052
|
/** Slot legado de endereço/localização (linha 📍). Quando ausente E `destinationName` presente, a linha 📍 some. Mantido em paralelo para compat backward. */
|
|
1040
1053
|
location?: string;
|
|
1041
1054
|
dateFrom: string;
|
|
@@ -1588,6 +1601,17 @@ interface PartnerRegistrationCompleteEmailProps {
|
|
|
1588
1601
|
adventureName: string;
|
|
1589
1602
|
/** Já formatado pelo backend (ex.: "12 May 2026 – 18 May 2026"). */
|
|
1590
1603
|
dateRange: string;
|
|
1604
|
+
/**
|
|
1605
|
+
* Nome da pessoa responsável pela reserva (booking person). Quando presente,
|
|
1606
|
+
* renderiza uma row "Booking person" no Trip details. Spec
|
|
1607
|
+
* passport-and-partner-email-fields.
|
|
1608
|
+
*/
|
|
1609
|
+
bookingPersonName?: string;
|
|
1610
|
+
/**
|
|
1611
|
+
* Passaporte / documento da pessoa responsável (booking person). Quando
|
|
1612
|
+
* presente, renderiza uma row "Passport" no Trip details; omitido quando ausente.
|
|
1613
|
+
*/
|
|
1614
|
+
bookingPersonPassport?: string;
|
|
1591
1615
|
travellersCount: number;
|
|
1592
1616
|
/** Seção Travellers Expectations. hasSection=false → nenhum campo marcado no form. */
|
|
1593
1617
|
expectations: {
|
|
@@ -1617,6 +1641,8 @@ interface PartnerRegistrationCompleteEmailLabels {
|
|
|
1617
1641
|
adventureLabel?: string;
|
|
1618
1642
|
datesLabel?: string;
|
|
1619
1643
|
partnerLabel?: string;
|
|
1644
|
+
bookingPersonLabel?: string;
|
|
1645
|
+
passportLabel?: string;
|
|
1620
1646
|
expectationsHeading?: string;
|
|
1621
1647
|
/** Quando hasSection=false OU rows vazio. */
|
|
1622
1648
|
expectationsEmptyNote?: string;
|
|
@@ -1629,7 +1655,7 @@ interface PartnerRegistrationCompleteEmailLabels {
|
|
|
1629
1655
|
closingNoAgent?: string;
|
|
1630
1656
|
teamSignature?: string;
|
|
1631
1657
|
}
|
|
1632
|
-
declare function PartnerRegistrationCompleteEmail({ scenario, topNotice, partnerName, bookingNumber, adventureName, dateRange, travellersCount, expectations, pdfAttached, agent, logoUrl, labels, className, }: PartnerRegistrationCompleteEmailProps): react_jsx_runtime.JSX.Element;
|
|
1658
|
+
declare function PartnerRegistrationCompleteEmail({ scenario, topNotice, partnerName, bookingNumber, adventureName, dateRange, bookingPersonName, bookingPersonPassport, travellersCount, expectations, pdfAttached, agent, logoUrl, labels, className, }: PartnerRegistrationCompleteEmailProps): react_jsx_runtime.JSX.Element;
|
|
1633
1659
|
|
|
1634
1660
|
interface PartnerBookingCreatedAgentContactLinks {
|
|
1635
1661
|
whatsappUrl?: string;
|
|
@@ -1723,6 +1749,7 @@ interface PaymentReceiptEmailLabels {
|
|
|
1723
1749
|
interestSurchargeLabel?: string;
|
|
1724
1750
|
statusLabel?: string;
|
|
1725
1751
|
travellersLabel?: string;
|
|
1752
|
+
passportLabel?: string;
|
|
1726
1753
|
summaryHeading?: string;
|
|
1727
1754
|
totalOrderLabel?: string;
|
|
1728
1755
|
totalPaidLabel?: string;
|
|
@@ -1766,6 +1793,12 @@ interface PaymentReceiptEmailProps {
|
|
|
1766
1793
|
statusLabel: string;
|
|
1767
1794
|
/** Lista de nomes dos viajantes da reserva. */
|
|
1768
1795
|
travellers: string[];
|
|
1796
|
+
/**
|
|
1797
|
+
* Passaporte / documento da pessoa responsável pela reserva (booking person).
|
|
1798
|
+
* Quando ausente/vazio, a row "Passport" não renderiza. Spec
|
|
1799
|
+
* passport-and-partner-email-fields.
|
|
1800
|
+
*/
|
|
1801
|
+
passport?: string;
|
|
1769
1802
|
/** Total da reserva formatado. */
|
|
1770
1803
|
totalOrderAmount: string;
|
|
1771
1804
|
/** Soma acumulada de pagamentos confirmados (após esta transação). */
|
|
@@ -1790,7 +1823,7 @@ interface PaymentReceiptEmailProps {
|
|
|
1790
1823
|
/** className adicional no container. */
|
|
1791
1824
|
className?: string;
|
|
1792
1825
|
}
|
|
1793
|
-
declare function PaymentReceiptEmail({ recipientName, bookingNumber, paymentMethodLabel, paymentDate, amount, chargedAmount, statusLabel, travellers, totalOrderAmount, totalPaidCumulative, remainingBalance, balanceDueDate, isPaidInFull, adventures, logoUrl, labels, className, }: PaymentReceiptEmailProps): react_jsx_runtime.JSX.Element;
|
|
1826
|
+
declare function PaymentReceiptEmail({ recipientName, bookingNumber, paymentMethodLabel, paymentDate, amount, chargedAmount, statusLabel, travellers, passport, totalOrderAmount, totalPaidCumulative, remainingBalance, balanceDueDate, isPaidInFull, adventures, logoUrl, labels, className, }: PaymentReceiptEmailProps): react_jsx_runtime.JSX.Element;
|
|
1794
1827
|
|
|
1795
1828
|
/**
|
|
1796
1829
|
* Variante do lembrete:
|
|
@@ -2401,6 +2434,91 @@ interface RegistrationSuccessCardProps {
|
|
|
2401
2434
|
}
|
|
2402
2435
|
declare function RegistrationSuccessCard({ variant, title, message, answersTitle, fields, answers, dateFormatter, formatAnswer, countries, className, actions, logo, logoAlt, showSuccessIcon, terms, termsLayout, termsLabels, adventure, booking, traveller, tripInfoLabels, density, submissionTimestamps, submissionTimestampsLabels, labels: scLabels, sectionsBreakInside, termsTypography, }: RegistrationSuccessCardProps): react_jsx_runtime.JSX.Element;
|
|
2403
2436
|
|
|
2437
|
+
interface CancellationFormParticipant {
|
|
2438
|
+
/** Traveller.id */
|
|
2439
|
+
id: number;
|
|
2440
|
+
name: string;
|
|
2441
|
+
}
|
|
2442
|
+
interface CancellationFormAdventure {
|
|
2443
|
+
/** BookingAdventure.id — a unidade de cancelamento. */
|
|
2444
|
+
id: number;
|
|
2445
|
+
name: string;
|
|
2446
|
+
/** Intervalo de datas já formatado pelo consumidor (locale). */
|
|
2447
|
+
dateRange?: string | null;
|
|
2448
|
+
/** Política de cancelamento já resolvida pela locale da reserva. */
|
|
2449
|
+
cancellationPolicy?: string | null;
|
|
2450
|
+
/** Participantes (roster) desta aventura. */
|
|
2451
|
+
participants: CancellationFormParticipant[];
|
|
2452
|
+
}
|
|
2453
|
+
interface CancellationFormOption {
|
|
2454
|
+
/** Código persistido (ex.: CHANGE_OF_PLANS / REFUND). */
|
|
2455
|
+
value: string;
|
|
2456
|
+
label: string;
|
|
2457
|
+
}
|
|
2458
|
+
interface CancellationFormValues {
|
|
2459
|
+
selectedBookingAdventureIds: number[];
|
|
2460
|
+
selectedTravellerIds: number[];
|
|
2461
|
+
reasonCode: string;
|
|
2462
|
+
reasonOther: string;
|
|
2463
|
+
refundPreference: string;
|
|
2464
|
+
refundOther: string;
|
|
2465
|
+
agreedToPolicy: boolean;
|
|
2466
|
+
contact: {
|
|
2467
|
+
name: string;
|
|
2468
|
+
email: string;
|
|
2469
|
+
phone: string;
|
|
2470
|
+
};
|
|
2471
|
+
}
|
|
2472
|
+
interface CancellationFormLabels {
|
|
2473
|
+
/** Identidade (prefill editável). */
|
|
2474
|
+
identityHeading: string;
|
|
2475
|
+
contactNameLabel: string;
|
|
2476
|
+
contactEmailLabel: string;
|
|
2477
|
+
contactPhoneLabel: string;
|
|
2478
|
+
/** Seleção de aventuras. */
|
|
2479
|
+
adventuresHeading: string;
|
|
2480
|
+
adventuresHint?: string;
|
|
2481
|
+
selectAllLabel: string;
|
|
2482
|
+
policyHeading: string;
|
|
2483
|
+
participantsHeading: string;
|
|
2484
|
+
/** Motivo. */
|
|
2485
|
+
reasonHeading: string;
|
|
2486
|
+
reasonOptions: CancellationFormOption[];
|
|
2487
|
+
reasonOtherLabel: string;
|
|
2488
|
+
/** Reembolso / crédito. */
|
|
2489
|
+
refundHeading: string;
|
|
2490
|
+
refundOptions: CancellationFormOption[];
|
|
2491
|
+
refundOtherLabel: string;
|
|
2492
|
+
/** Aceite + submit. */
|
|
2493
|
+
agreementLabel: string;
|
|
2494
|
+
submitLabel: string;
|
|
2495
|
+
submittingLabel: string;
|
|
2496
|
+
/** Mensagens de validação. */
|
|
2497
|
+
errorSelectAdventure: string;
|
|
2498
|
+
errorSelectParticipants: string;
|
|
2499
|
+
errorReasonRequired: string;
|
|
2500
|
+
errorReasonOtherRequired: string;
|
|
2501
|
+
errorRefundRequired: string;
|
|
2502
|
+
errorRefundOtherRequired: string;
|
|
2503
|
+
errorAgreementRequired: string;
|
|
2504
|
+
}
|
|
2505
|
+
interface CancellationFormProps {
|
|
2506
|
+
adventures: CancellationFormAdventure[];
|
|
2507
|
+
/** Prefill de identidade (editável). */
|
|
2508
|
+
identity?: {
|
|
2509
|
+
name?: string;
|
|
2510
|
+
email?: string;
|
|
2511
|
+
phone?: string;
|
|
2512
|
+
};
|
|
2513
|
+
labels: CancellationFormLabels;
|
|
2514
|
+
onSubmit: (values: CancellationFormValues) => void | Promise<void>;
|
|
2515
|
+
submitting?: boolean;
|
|
2516
|
+
/** Erro de topo vindo do consumidor (ex.: 409 do backend). */
|
|
2517
|
+
error?: string | null;
|
|
2518
|
+
className?: string;
|
|
2519
|
+
}
|
|
2520
|
+
declare function CancellationForm({ adventures, identity, labels, onSubmit, submitting, error, className, }: CancellationFormProps): react_jsx_runtime.JSX.Element;
|
|
2521
|
+
|
|
2404
2522
|
interface FloatingInputProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
|
2405
2523
|
label: string;
|
|
2406
2524
|
error?: string;
|
|
@@ -4221,4 +4339,4 @@ interface StickyBookingCardProps {
|
|
|
4221
4339
|
}
|
|
4222
4340
|
declare function StickyBookingCard({ currentPrice, deposit, spotsRemaining, mode, onPrimary, note, className, }: StickyBookingCardProps): react_jsx_runtime.JSX.Element;
|
|
4223
4341
|
|
|
4224
|
-
export { type AccommodationRoomItem, ActivityCard, type ActivityCardProps, type ActivityCardSize, 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, 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, type Category2BlogPost, type Category2Faq, type Category2SortOption, type Category2Trip, CategoryPage2, type CategoryPage2Props, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, 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 FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, GroupProgressBar, type GroupProgressBarProps, GroupStatusBanner, type GroupStatusBannerProps, 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, 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, ShareWidget, type ShareWidgetProps, 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, buttonVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, webpVariantUrl, wrapEmailHtml };
|
|
4342
|
+
export { type AccommodationRoomItem, ActivityCard, type ActivityCardProps, type ActivityCardSize, 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, 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, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, 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 FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, GroupProgressBar, type GroupProgressBarProps, GroupStatusBanner, type GroupStatusBannerProps, 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, 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, ShareWidget, type ShareWidgetProps, 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, buttonVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, webpVariantUrl, wrapEmailHtml };
|