@planetaexo/design-system 0.57.2 → 0.58.1
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 +723 -348
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +161 -3
- package/dist/index.d.ts +161 -3
- package/dist/index.js +692 -319
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -2473,7 +2473,7 @@ interface PictureProps extends React.ImgHTMLAttributes<HTMLImageElement> {
|
|
|
2473
2473
|
* one effect tick later. Hydration mismatch is impossible because both
|
|
2474
2474
|
* sides start from `visible = eager`.
|
|
2475
2475
|
*/
|
|
2476
|
-
declare function Picture({ src, extraSources, eager, rootMargin, decoding, loading, ...imgProps }: PictureProps): react_jsx_runtime.JSX.Element;
|
|
2476
|
+
declare function Picture({ src, extraSources, eager, rootMargin, decoding, loading, onLoad, onError, ...imgProps }: PictureProps): react_jsx_runtime.JSX.Element;
|
|
2477
2477
|
|
|
2478
2478
|
/**
|
|
2479
2479
|
* WebP-fallback helpers for components that render content-image URLs.
|
|
@@ -2583,7 +2583,7 @@ interface MenuTripProps {
|
|
|
2583
2583
|
}
|
|
2584
2584
|
declare function MenuTrip({ sections, activeSection, onSelect, variant, bold, className, }: MenuTripProps): react_jsx_runtime.JSX.Element;
|
|
2585
2585
|
|
|
2586
|
-
type PhotoGalleryVariant = "grid" | "gridCompact" | "masonry" | "filmstrip" | "featured" | "carousel" | "fullBleed";
|
|
2586
|
+
type PhotoGalleryVariant = "grid" | "gridCompact" | "masonry" | "filmstrip" | "featured" | "collage" | "collageTight" | "carousel" | "fullBleed";
|
|
2587
2587
|
interface PhotoGalleryPhoto {
|
|
2588
2588
|
src: string;
|
|
2589
2589
|
alt?: string;
|
|
@@ -2778,6 +2778,164 @@ interface TripCardProps {
|
|
|
2778
2778
|
}
|
|
2779
2779
|
declare function TripCard(props: TripCardProps): react_jsx_runtime.JSX.Element;
|
|
2780
2780
|
|
|
2781
|
+
type BlogCardSize = "sm" | "md" | "lg";
|
|
2782
|
+
interface BlogCardCta {
|
|
2783
|
+
/** Texto do link (ex: "Read more" ou "Continue reading"). @default "Read more" */
|
|
2784
|
+
label?: string;
|
|
2785
|
+
onClick?: () => void;
|
|
2786
|
+
href?: string;
|
|
2787
|
+
}
|
|
2788
|
+
interface BlogCardProps {
|
|
2789
|
+
/** URL da imagem de capa */
|
|
2790
|
+
image: string;
|
|
2791
|
+
imageAlt?: string;
|
|
2792
|
+
/** Categoria/tag exibida como badge no topo esquerdo (espelha o status do TripCard). */
|
|
2793
|
+
category?: string;
|
|
2794
|
+
/** Tempo de leitura (ex: "8 min read") */
|
|
2795
|
+
readingTime?: string;
|
|
2796
|
+
/** Data de publicação (ex: "May 24, 2026") */
|
|
2797
|
+
date?: string;
|
|
2798
|
+
/** Título do post */
|
|
2799
|
+
title: string;
|
|
2800
|
+
/** Resumo / excerpt do post */
|
|
2801
|
+
excerpt?: string;
|
|
2802
|
+
/** Quando fornecido, o card inteiro vira um link <a>. */
|
|
2803
|
+
href?: string;
|
|
2804
|
+
/**
|
|
2805
|
+
* When true, the link opens in a new tab (`target="_blank"` +
|
|
2806
|
+
* `rel="noopener noreferrer"`). Use for off-site / external article URLs.
|
|
2807
|
+
*/
|
|
2808
|
+
external?: boolean;
|
|
2809
|
+
/** Configuração do CTA inferior. Mantém o estilo "Discover this trip →" do TripCard. */
|
|
2810
|
+
cta?: BlogCardCta;
|
|
2811
|
+
size?: BlogCardSize;
|
|
2812
|
+
className?: string;
|
|
2813
|
+
}
|
|
2814
|
+
declare function BlogCard({ image, imageAlt, category, readingTime, date, title, excerpt, href, external, cta, size, className, }: BlogCardProps): react_jsx_runtime.JSX.Element;
|
|
2815
|
+
|
|
2816
|
+
interface BlogAuthor {
|
|
2817
|
+
name: string;
|
|
2818
|
+
/** Avatar image URL (Gravatar, etc.) */
|
|
2819
|
+
avatar?: string;
|
|
2820
|
+
/** Optional role/byline shown under the name, e.g. "Wildlife guide". */
|
|
2821
|
+
role?: string;
|
|
2822
|
+
}
|
|
2823
|
+
/** Paragraph of body copy. `lead` renders larger — use for the intro. */
|
|
2824
|
+
interface BlogParagraphBlock {
|
|
2825
|
+
type: "paragraph";
|
|
2826
|
+
text: React.ReactNode;
|
|
2827
|
+
lead?: boolean;
|
|
2828
|
+
}
|
|
2829
|
+
/** Section heading. Level 2 is the default section title; 3 is a subheading. */
|
|
2830
|
+
interface BlogHeadingBlock {
|
|
2831
|
+
type: "heading";
|
|
2832
|
+
text: React.ReactNode;
|
|
2833
|
+
level?: 2 | 3;
|
|
2834
|
+
/** Anchor id (slug) — lets the heading be linked to / used in a TOC. */
|
|
2835
|
+
id?: string;
|
|
2836
|
+
}
|
|
2837
|
+
/** Single in-article image with optional caption + credit. */
|
|
2838
|
+
interface BlogImageBlock {
|
|
2839
|
+
type: "image";
|
|
2840
|
+
src: string;
|
|
2841
|
+
alt?: string;
|
|
2842
|
+
caption?: React.ReactNode;
|
|
2843
|
+
credit?: string;
|
|
2844
|
+
/** Break out of the prose column to the wider content width. */
|
|
2845
|
+
wide?: boolean;
|
|
2846
|
+
}
|
|
2847
|
+
/**
|
|
2848
|
+
* A collage / gallery of images, rendered with `PhotoGallery` (lightbox
|
|
2849
|
+
* included). Defaults to the `collage` layout — one full-width hero photo
|
|
2850
|
+
* on top with the rest in a 2-up row below (magazine mosaic). Use
|
|
2851
|
+
* `variant: "collageTight"` for the same layout with no gaps between
|
|
2852
|
+
* photos, or `"featured" | "grid" | "masonry" | …` for other looks.
|
|
2853
|
+
*/
|
|
2854
|
+
interface BlogCollageBlock {
|
|
2855
|
+
type: "collage";
|
|
2856
|
+
photos: (string | PhotoGalleryPhoto)[];
|
|
2857
|
+
variant?: PhotoGalleryVariant;
|
|
2858
|
+
caption?: React.ReactNode;
|
|
2859
|
+
/** Break out of the prose column to the wider content width. */
|
|
2860
|
+
wide?: boolean;
|
|
2861
|
+
}
|
|
2862
|
+
interface BlogTableColumn {
|
|
2863
|
+
key: string;
|
|
2864
|
+
label: React.ReactNode;
|
|
2865
|
+
align?: "left" | "center" | "right";
|
|
2866
|
+
}
|
|
2867
|
+
/**
|
|
2868
|
+
* A comparison / data table. Cells are `ReactNode` so values can be plain
|
|
2869
|
+
* text, formatted prices, or links (e.g. hyperlinked tour names).
|
|
2870
|
+
*/
|
|
2871
|
+
interface BlogTableBlock {
|
|
2872
|
+
type: "table";
|
|
2873
|
+
columns: BlogTableColumn[];
|
|
2874
|
+
rows: Array<Record<string, React.ReactNode>>;
|
|
2875
|
+
caption?: React.ReactNode;
|
|
2876
|
+
}
|
|
2877
|
+
/**
|
|
2878
|
+
* Callout box — the brand's "👉 Read more" cross-reference, or any inline
|
|
2879
|
+
* highlight. Renders a left-accented panel; becomes a link when `href` set.
|
|
2880
|
+
*/
|
|
2881
|
+
interface BlogCalloutBlock {
|
|
2882
|
+
type: "callout";
|
|
2883
|
+
/** Emoji/lead glyph shown before the text. @default "👉" */
|
|
2884
|
+
icon?: React.ReactNode;
|
|
2885
|
+
title?: React.ReactNode;
|
|
2886
|
+
text: React.ReactNode;
|
|
2887
|
+
href?: string;
|
|
2888
|
+
external?: boolean;
|
|
2889
|
+
/** Link label. @default "Read more" */
|
|
2890
|
+
cta?: string;
|
|
2891
|
+
}
|
|
2892
|
+
/** Pull-quote. */
|
|
2893
|
+
interface BlogQuoteBlock {
|
|
2894
|
+
type: "quote";
|
|
2895
|
+
text: React.ReactNode;
|
|
2896
|
+
cite?: string;
|
|
2897
|
+
}
|
|
2898
|
+
/** Bulleted or numbered list. */
|
|
2899
|
+
interface BlogListBlock {
|
|
2900
|
+
type: "list";
|
|
2901
|
+
ordered?: boolean;
|
|
2902
|
+
items: React.ReactNode[];
|
|
2903
|
+
}
|
|
2904
|
+
type BlogBlock = BlogParagraphBlock | BlogHeadingBlock | BlogImageBlock | BlogCollageBlock | BlogTableBlock | BlogCalloutBlock | BlogQuoteBlock | BlogListBlock;
|
|
2905
|
+
interface BlogPostProps {
|
|
2906
|
+
/** Hero / cover image — full-bleed behind the title (trip-header style). */
|
|
2907
|
+
image: string;
|
|
2908
|
+
imageAlt?: string;
|
|
2909
|
+
/** Article title. */
|
|
2910
|
+
title: string;
|
|
2911
|
+
/** Category/tag shown as a glass chip above the title. */
|
|
2912
|
+
category?: string;
|
|
2913
|
+
/** Breadcrumb trail above the title. */
|
|
2914
|
+
breadcrumb?: Array<{
|
|
2915
|
+
label: string;
|
|
2916
|
+
href?: string;
|
|
2917
|
+
}>;
|
|
2918
|
+
/** Author byline shown in the meta row. */
|
|
2919
|
+
author?: BlogAuthor;
|
|
2920
|
+
/** Publish date, already formatted (e.g. "June 2, 2026"). */
|
|
2921
|
+
date?: string;
|
|
2922
|
+
/** Reading time (e.g. "8 min read"). */
|
|
2923
|
+
readingTime?: string;
|
|
2924
|
+
/** Article body — ordered list of content blocks. */
|
|
2925
|
+
blocks: BlogBlock[];
|
|
2926
|
+
/**
|
|
2927
|
+
* Optional escape hatch rendered after `blocks`, inside the prose column.
|
|
2928
|
+
* Use for one-off markup the block model doesn't cover.
|
|
2929
|
+
*/
|
|
2930
|
+
children?: React.ReactNode;
|
|
2931
|
+
/** Optional "Read more" / related posts grid at the foot of the article. */
|
|
2932
|
+
related?: BlogCardProps[];
|
|
2933
|
+
/** Heading above the related grid. @default "Keep reading" */
|
|
2934
|
+
relatedTitle?: string;
|
|
2935
|
+
className?: string;
|
|
2936
|
+
}
|
|
2937
|
+
declare function BlogPost({ image, imageAlt, title, category, breadcrumb, author, date, readingTime, blocks, children, related, relatedTitle, className, }: BlogPostProps): react_jsx_runtime.JSX.Element;
|
|
2938
|
+
|
|
2781
2939
|
/**
|
|
2782
2940
|
* Rich configuration for the overlay `<SiteHeader>` rendered inside the
|
|
2783
2941
|
* hero. Accepts everything `<SiteHeader>` accepts EXCEPT `position` and
|
|
@@ -3877,4 +4035,4 @@ interface StickyBookingCardProps {
|
|
|
3877
4035
|
}
|
|
3878
4036
|
declare function StickyBookingCard({ currentPrice, deposit, spotsRemaining, mode, onPrimary, note, className, }: StickyBookingCardProps): react_jsx_runtime.JSX.Element;
|
|
3879
4037
|
|
|
3880
|
-
export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, AskExo, type AskExoProps, type AskExoSuggestion, BirthDateField, type BirthDateFieldProps, 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 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, 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 };
|
|
4038
|
+
export { 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 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, 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
|
@@ -2473,7 +2473,7 @@ interface PictureProps extends React.ImgHTMLAttributes<HTMLImageElement> {
|
|
|
2473
2473
|
* one effect tick later. Hydration mismatch is impossible because both
|
|
2474
2474
|
* sides start from `visible = eager`.
|
|
2475
2475
|
*/
|
|
2476
|
-
declare function Picture({ src, extraSources, eager, rootMargin, decoding, loading, ...imgProps }: PictureProps): react_jsx_runtime.JSX.Element;
|
|
2476
|
+
declare function Picture({ src, extraSources, eager, rootMargin, decoding, loading, onLoad, onError, ...imgProps }: PictureProps): react_jsx_runtime.JSX.Element;
|
|
2477
2477
|
|
|
2478
2478
|
/**
|
|
2479
2479
|
* WebP-fallback helpers for components that render content-image URLs.
|
|
@@ -2583,7 +2583,7 @@ interface MenuTripProps {
|
|
|
2583
2583
|
}
|
|
2584
2584
|
declare function MenuTrip({ sections, activeSection, onSelect, variant, bold, className, }: MenuTripProps): react_jsx_runtime.JSX.Element;
|
|
2585
2585
|
|
|
2586
|
-
type PhotoGalleryVariant = "grid" | "gridCompact" | "masonry" | "filmstrip" | "featured" | "carousel" | "fullBleed";
|
|
2586
|
+
type PhotoGalleryVariant = "grid" | "gridCompact" | "masonry" | "filmstrip" | "featured" | "collage" | "collageTight" | "carousel" | "fullBleed";
|
|
2587
2587
|
interface PhotoGalleryPhoto {
|
|
2588
2588
|
src: string;
|
|
2589
2589
|
alt?: string;
|
|
@@ -2778,6 +2778,164 @@ interface TripCardProps {
|
|
|
2778
2778
|
}
|
|
2779
2779
|
declare function TripCard(props: TripCardProps): react_jsx_runtime.JSX.Element;
|
|
2780
2780
|
|
|
2781
|
+
type BlogCardSize = "sm" | "md" | "lg";
|
|
2782
|
+
interface BlogCardCta {
|
|
2783
|
+
/** Texto do link (ex: "Read more" ou "Continue reading"). @default "Read more" */
|
|
2784
|
+
label?: string;
|
|
2785
|
+
onClick?: () => void;
|
|
2786
|
+
href?: string;
|
|
2787
|
+
}
|
|
2788
|
+
interface BlogCardProps {
|
|
2789
|
+
/** URL da imagem de capa */
|
|
2790
|
+
image: string;
|
|
2791
|
+
imageAlt?: string;
|
|
2792
|
+
/** Categoria/tag exibida como badge no topo esquerdo (espelha o status do TripCard). */
|
|
2793
|
+
category?: string;
|
|
2794
|
+
/** Tempo de leitura (ex: "8 min read") */
|
|
2795
|
+
readingTime?: string;
|
|
2796
|
+
/** Data de publicação (ex: "May 24, 2026") */
|
|
2797
|
+
date?: string;
|
|
2798
|
+
/** Título do post */
|
|
2799
|
+
title: string;
|
|
2800
|
+
/** Resumo / excerpt do post */
|
|
2801
|
+
excerpt?: string;
|
|
2802
|
+
/** Quando fornecido, o card inteiro vira um link <a>. */
|
|
2803
|
+
href?: string;
|
|
2804
|
+
/**
|
|
2805
|
+
* When true, the link opens in a new tab (`target="_blank"` +
|
|
2806
|
+
* `rel="noopener noreferrer"`). Use for off-site / external article URLs.
|
|
2807
|
+
*/
|
|
2808
|
+
external?: boolean;
|
|
2809
|
+
/** Configuração do CTA inferior. Mantém o estilo "Discover this trip →" do TripCard. */
|
|
2810
|
+
cta?: BlogCardCta;
|
|
2811
|
+
size?: BlogCardSize;
|
|
2812
|
+
className?: string;
|
|
2813
|
+
}
|
|
2814
|
+
declare function BlogCard({ image, imageAlt, category, readingTime, date, title, excerpt, href, external, cta, size, className, }: BlogCardProps): react_jsx_runtime.JSX.Element;
|
|
2815
|
+
|
|
2816
|
+
interface BlogAuthor {
|
|
2817
|
+
name: string;
|
|
2818
|
+
/** Avatar image URL (Gravatar, etc.) */
|
|
2819
|
+
avatar?: string;
|
|
2820
|
+
/** Optional role/byline shown under the name, e.g. "Wildlife guide". */
|
|
2821
|
+
role?: string;
|
|
2822
|
+
}
|
|
2823
|
+
/** Paragraph of body copy. `lead` renders larger — use for the intro. */
|
|
2824
|
+
interface BlogParagraphBlock {
|
|
2825
|
+
type: "paragraph";
|
|
2826
|
+
text: React.ReactNode;
|
|
2827
|
+
lead?: boolean;
|
|
2828
|
+
}
|
|
2829
|
+
/** Section heading. Level 2 is the default section title; 3 is a subheading. */
|
|
2830
|
+
interface BlogHeadingBlock {
|
|
2831
|
+
type: "heading";
|
|
2832
|
+
text: React.ReactNode;
|
|
2833
|
+
level?: 2 | 3;
|
|
2834
|
+
/** Anchor id (slug) — lets the heading be linked to / used in a TOC. */
|
|
2835
|
+
id?: string;
|
|
2836
|
+
}
|
|
2837
|
+
/** Single in-article image with optional caption + credit. */
|
|
2838
|
+
interface BlogImageBlock {
|
|
2839
|
+
type: "image";
|
|
2840
|
+
src: string;
|
|
2841
|
+
alt?: string;
|
|
2842
|
+
caption?: React.ReactNode;
|
|
2843
|
+
credit?: string;
|
|
2844
|
+
/** Break out of the prose column to the wider content width. */
|
|
2845
|
+
wide?: boolean;
|
|
2846
|
+
}
|
|
2847
|
+
/**
|
|
2848
|
+
* A collage / gallery of images, rendered with `PhotoGallery` (lightbox
|
|
2849
|
+
* included). Defaults to the `collage` layout — one full-width hero photo
|
|
2850
|
+
* on top with the rest in a 2-up row below (magazine mosaic). Use
|
|
2851
|
+
* `variant: "collageTight"` for the same layout with no gaps between
|
|
2852
|
+
* photos, or `"featured" | "grid" | "masonry" | …` for other looks.
|
|
2853
|
+
*/
|
|
2854
|
+
interface BlogCollageBlock {
|
|
2855
|
+
type: "collage";
|
|
2856
|
+
photos: (string | PhotoGalleryPhoto)[];
|
|
2857
|
+
variant?: PhotoGalleryVariant;
|
|
2858
|
+
caption?: React.ReactNode;
|
|
2859
|
+
/** Break out of the prose column to the wider content width. */
|
|
2860
|
+
wide?: boolean;
|
|
2861
|
+
}
|
|
2862
|
+
interface BlogTableColumn {
|
|
2863
|
+
key: string;
|
|
2864
|
+
label: React.ReactNode;
|
|
2865
|
+
align?: "left" | "center" | "right";
|
|
2866
|
+
}
|
|
2867
|
+
/**
|
|
2868
|
+
* A comparison / data table. Cells are `ReactNode` so values can be plain
|
|
2869
|
+
* text, formatted prices, or links (e.g. hyperlinked tour names).
|
|
2870
|
+
*/
|
|
2871
|
+
interface BlogTableBlock {
|
|
2872
|
+
type: "table";
|
|
2873
|
+
columns: BlogTableColumn[];
|
|
2874
|
+
rows: Array<Record<string, React.ReactNode>>;
|
|
2875
|
+
caption?: React.ReactNode;
|
|
2876
|
+
}
|
|
2877
|
+
/**
|
|
2878
|
+
* Callout box — the brand's "👉 Read more" cross-reference, or any inline
|
|
2879
|
+
* highlight. Renders a left-accented panel; becomes a link when `href` set.
|
|
2880
|
+
*/
|
|
2881
|
+
interface BlogCalloutBlock {
|
|
2882
|
+
type: "callout";
|
|
2883
|
+
/** Emoji/lead glyph shown before the text. @default "👉" */
|
|
2884
|
+
icon?: React.ReactNode;
|
|
2885
|
+
title?: React.ReactNode;
|
|
2886
|
+
text: React.ReactNode;
|
|
2887
|
+
href?: string;
|
|
2888
|
+
external?: boolean;
|
|
2889
|
+
/** Link label. @default "Read more" */
|
|
2890
|
+
cta?: string;
|
|
2891
|
+
}
|
|
2892
|
+
/** Pull-quote. */
|
|
2893
|
+
interface BlogQuoteBlock {
|
|
2894
|
+
type: "quote";
|
|
2895
|
+
text: React.ReactNode;
|
|
2896
|
+
cite?: string;
|
|
2897
|
+
}
|
|
2898
|
+
/** Bulleted or numbered list. */
|
|
2899
|
+
interface BlogListBlock {
|
|
2900
|
+
type: "list";
|
|
2901
|
+
ordered?: boolean;
|
|
2902
|
+
items: React.ReactNode[];
|
|
2903
|
+
}
|
|
2904
|
+
type BlogBlock = BlogParagraphBlock | BlogHeadingBlock | BlogImageBlock | BlogCollageBlock | BlogTableBlock | BlogCalloutBlock | BlogQuoteBlock | BlogListBlock;
|
|
2905
|
+
interface BlogPostProps {
|
|
2906
|
+
/** Hero / cover image — full-bleed behind the title (trip-header style). */
|
|
2907
|
+
image: string;
|
|
2908
|
+
imageAlt?: string;
|
|
2909
|
+
/** Article title. */
|
|
2910
|
+
title: string;
|
|
2911
|
+
/** Category/tag shown as a glass chip above the title. */
|
|
2912
|
+
category?: string;
|
|
2913
|
+
/** Breadcrumb trail above the title. */
|
|
2914
|
+
breadcrumb?: Array<{
|
|
2915
|
+
label: string;
|
|
2916
|
+
href?: string;
|
|
2917
|
+
}>;
|
|
2918
|
+
/** Author byline shown in the meta row. */
|
|
2919
|
+
author?: BlogAuthor;
|
|
2920
|
+
/** Publish date, already formatted (e.g. "June 2, 2026"). */
|
|
2921
|
+
date?: string;
|
|
2922
|
+
/** Reading time (e.g. "8 min read"). */
|
|
2923
|
+
readingTime?: string;
|
|
2924
|
+
/** Article body — ordered list of content blocks. */
|
|
2925
|
+
blocks: BlogBlock[];
|
|
2926
|
+
/**
|
|
2927
|
+
* Optional escape hatch rendered after `blocks`, inside the prose column.
|
|
2928
|
+
* Use for one-off markup the block model doesn't cover.
|
|
2929
|
+
*/
|
|
2930
|
+
children?: React.ReactNode;
|
|
2931
|
+
/** Optional "Read more" / related posts grid at the foot of the article. */
|
|
2932
|
+
related?: BlogCardProps[];
|
|
2933
|
+
/** Heading above the related grid. @default "Keep reading" */
|
|
2934
|
+
relatedTitle?: string;
|
|
2935
|
+
className?: string;
|
|
2936
|
+
}
|
|
2937
|
+
declare function BlogPost({ image, imageAlt, title, category, breadcrumb, author, date, readingTime, blocks, children, related, relatedTitle, className, }: BlogPostProps): react_jsx_runtime.JSX.Element;
|
|
2938
|
+
|
|
2781
2939
|
/**
|
|
2782
2940
|
* Rich configuration for the overlay `<SiteHeader>` rendered inside the
|
|
2783
2941
|
* hero. Accepts everything `<SiteHeader>` accepts EXCEPT `position` and
|
|
@@ -3877,4 +4035,4 @@ interface StickyBookingCardProps {
|
|
|
3877
4035
|
}
|
|
3878
4036
|
declare function StickyBookingCard({ currentPrice, deposit, spotsRemaining, mode, onPrimary, note, className, }: StickyBookingCardProps): react_jsx_runtime.JSX.Element;
|
|
3879
4037
|
|
|
3880
|
-
export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, AskExo, type AskExoProps, type AskExoSuggestion, BirthDateField, type BirthDateFieldProps, 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 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, 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 };
|
|
4038
|
+
export { 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 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, 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 };
|