@planetaexo/design-system 0.69.0 → 0.71.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -54,7 +54,7 @@ interface AccommodationRoomItem {
54
54
  /** Nome do tipo (RoomType.name — ex.: "Suíte"). */
55
55
  roomTypeName: string;
56
56
  /** Arranjo de camas raw — DS resolve label via `bedArrangementLabels`. */
57
- bedArrangement: "DOUBLE" | "TWIN" | "SINGLE" | "TRIPLE";
57
+ bedArrangement: "DOUBLE" | "TWIN" | "SINGLE" | "TRIPLE" | "QUADRUPLE" | "QUINTUPLE";
58
58
  /** URL da foto do quarto (use `-email.jpg` no e-mail; original no público). */
59
59
  imageUrl: string | null;
60
60
  /** Quantidade selecionada. */
@@ -102,6 +102,8 @@ interface BookingAdventureCardLabels {
102
102
  TWIN?: string;
103
103
  SINGLE?: string;
104
104
  TRIPLE?: string;
105
+ QUADRUPLE?: string;
106
+ QUINTUPLE?: string;
105
107
  };
106
108
  }
107
109
  interface BookingAdventureCardSlots {
@@ -281,6 +283,8 @@ interface OfferAdventureItem {
281
283
  TWIN?: string;
282
284
  SINGLE?: string;
283
285
  TRIPLE?: string;
286
+ QUADRUPLE?: string;
287
+ QUINTUPLE?: string;
284
288
  };
285
289
  }
286
290
  interface OfferLabels {
@@ -658,12 +662,14 @@ interface BookingDetailsLabels {
658
662
  travellersSection?: string;
659
663
  /** "Accommodations" — header do bloco de quartos da aventura. Default "ACCOMMODATIONS". */
660
664
  accommodationsHeading?: string;
661
- /** Labels localizados para o chip de bedArrangement (DOUBLE/TWIN/SINGLE/TRIPLE). */
665
+ /** Labels localizados para o chip de bedArrangement (DOUBLE/TWIN/SINGLE/TRIPLE/QUADRUPLE/QUINTUPLE). */
662
666
  bedArrangementLabels?: {
663
667
  DOUBLE?: string;
664
668
  TWIN?: string;
665
669
  SINGLE?: string;
666
670
  TRIPLE?: string;
671
+ QUADRUPLE?: string;
672
+ QUINTUPLE?: string;
667
673
  };
668
674
  /** Botão "Add contact as traveller" / "Add contact". */
669
675
  addContactAsTraveller?: string;
@@ -1031,6 +1037,8 @@ interface BookingPaymentConfirmationEmailLabels {
1031
1037
  TWIN?: string;
1032
1038
  SINGLE?: string;
1033
1039
  TRIPLE?: string;
1040
+ QUADRUPLE?: string;
1041
+ QUINTUPLE?: string;
1034
1042
  };
1035
1043
  paymentSummaryHeading?: string;
1036
1044
  paymentDetailsHeading?: string;
@@ -1478,7 +1486,7 @@ interface BookingSummaryRow {
1478
1486
  */
1479
1487
  interface BookingSummaryRoomItem {
1480
1488
  roomName: string;
1481
- bedArrangement: "DOUBLE" | "TWIN" | "SINGLE" | "TRIPLE";
1489
+ bedArrangement: "DOUBLE" | "TWIN" | "SINGLE" | "TRIPLE" | "QUADRUPLE" | "QUINTUPLE";
1482
1490
  qty: number;
1483
1491
  }
1484
1492
  interface BookingSummaryProps {
@@ -1504,6 +1512,8 @@ interface BookingSummaryProps {
1504
1512
  TWIN?: string;
1505
1513
  SINGLE?: string;
1506
1514
  TRIPLE?: string;
1515
+ QUADRUPLE?: string;
1516
+ QUINTUPLE?: string;
1507
1517
  };
1508
1518
  /**
1509
1519
  * Conteúdo opcional renderizado como última row do card, ocupando as duas
@@ -1874,6 +1884,8 @@ interface PartnerBookingCreatedEmailLabels {
1874
1884
  TWIN?: string;
1875
1885
  SINGLE?: string;
1876
1886
  TRIPLE?: string;
1887
+ QUADRUPLE?: string;
1888
+ QUINTUPLE?: string;
1877
1889
  };
1878
1890
  /** Aviso (linha 1) antes do closing — sempre visível. */
1879
1891
  registrationPendingNotice?: string;
@@ -3152,11 +3164,40 @@ interface PhotoGalleryProps {
3152
3164
  initialVisible?: number;
3153
3165
  /** Called when a photo is clicked (in addition to opening the lightbox) */
3154
3166
  onPhotoClick?: (src: string, index: number) => void;
3167
+ /**
3168
+ * Which lightbox opens when a photo is tapped.
3169
+ * - `"classic"` — paged single-photo view with prev/next arrows + dots (default).
3170
+ * - `"feed"` — Airbnb "photo tour" style: all photos in one vertical
3171
+ * scrollable column, opened scrolled to the tapped photo.
3172
+ * @default "classic"
3173
+ */
3174
+ lightbox?: "classic" | "feed";
3175
+ /**
3176
+ * Section label for the unified photo tour. When set AND this gallery is
3177
+ * rendered inside a {@link PhotoTourProvider} (enabled), tapping a photo
3178
+ * opens the shared cross-gallery feed (scrolled to that photo) instead of
3179
+ * this gallery's own lightbox, with the photos grouped under this label.
3180
+ * No-op outside a provider, so it's safe to set unconditionally.
3181
+ */
3182
+ tourSection?: string;
3155
3183
  /** i18n overrides for the "See more (N)" / "Show less" toggle. */
3156
3184
  labels?: PhotoGalleryLabels;
3157
3185
  className?: string;
3158
3186
  }
3159
- declare function PhotoGallery({ photos, variant, initialVisible, onPhotoClick, labels, className, }: PhotoGalleryProps): react_jsx_runtime.JSX.Element | null;
3187
+ interface PhotoTourProviderProps {
3188
+ /** When false, registered galleries fall back to their own lightbox. @default true */
3189
+ enabled?: boolean;
3190
+ /** i18n a11y labels for the shared feed (close button). */
3191
+ labels?: PhotoGalleryLabels;
3192
+ children: React.ReactNode;
3193
+ }
3194
+ /**
3195
+ * Wrap a page (e.g. a trip page) so that every descendant
3196
+ * `<PhotoGallery tourSection="…">` joins one shared, continuously
3197
+ * scrollable "photo tour" feed instead of opening its own lightbox.
3198
+ */
3199
+ declare function PhotoTourProvider({ enabled, labels, children, }: PhotoTourProviderProps): react_jsx_runtime.JSX.Element;
3200
+ declare function PhotoGallery({ photos, variant, initialVisible, onPhotoClick, labels, lightbox: lightboxMode, tourSection, className, }: PhotoGalleryProps): react_jsx_runtime.JSX.Element | null;
3160
3201
 
3161
3202
  type PricingTripVariant = "card" | "bar" | "compact";
3162
3203
  /**
@@ -3252,6 +3293,11 @@ interface SiteHeaderProps {
3252
3293
  /** Backwards-compatible single-logo override — applied to both variants when set. */
3253
3294
  logoSrc?: string;
3254
3295
  logoAlt?: string;
3296
+ /**
3297
+ * Where the logo links. Defaults to `"#"`. Consumers pass their home URL
3298
+ * (locale-aware in multilingual sites, e.g. `/`, `/pt`, `/de`).
3299
+ */
3300
+ logoHref?: string;
3255
3301
  languages?: SiteHeaderLanguage[];
3256
3302
  currentLanguage?: string;
3257
3303
  onLanguageChange?: (code: string) => void;
@@ -3278,7 +3324,7 @@ interface SiteHeaderLabels {
3278
3324
  }
3279
3325
  declare const DEFAULT_HEADER_LINKS: SiteHeaderLink[];
3280
3326
  declare const DEFAULT_LANGUAGES: SiteHeaderLanguage[];
3281
- declare function SiteHeader({ variant, links, logoSrcLight, logoSrcDark, logoSrc, logoAlt, languages, currentLanguage, onLanguageChange, onSearch, onAccount, position, labels, className, }: SiteHeaderProps): react_jsx_runtime.JSX.Element;
3327
+ declare function SiteHeader({ variant, links, logoSrcLight, logoSrcDark, logoSrc, logoAlt, logoHref, languages, currentLanguage, onLanguageChange, onSearch, onAccount, position, labels, className, }: SiteHeaderProps): react_jsx_runtime.JSX.Element;
3282
3328
 
3283
3329
  declare function ThemeToggle({ className }: {
3284
3330
  className?: string;
@@ -3313,6 +3359,10 @@ interface TripCardLabels {
3313
3359
  addToFavorites?: string;
3314
3360
  /** Favorite button aria-label when favorited. @default "Remove from favorites" */
3315
3361
  removeFromFavorites?: string;
3362
+ /** Word after a single review ("4.9 · 1 review"). @default "review" */
3363
+ review?: string;
3364
+ /** Word after the review count ("4.9 · 34 reviews"). @default "reviews" */
3365
+ reviews?: string;
3316
3366
  }
3317
3367
  interface TripCardProps {
3318
3368
  /** URL da imagem de capa */
@@ -3355,6 +3405,15 @@ interface TripCardProps {
3355
3405
  locationHref?: string;
3356
3406
  /** Nível de dificuldade — renderizado com um dot colorido. */
3357
3407
  difficulty?: TripCardDifficulty;
3408
+ /**
3409
+ * Average star rating for this trip (e.g. 4.9). When > 0, the editorial card
3410
+ * renders a star + value (+ `reviewCount`) in the white body. Sourced from the
3411
+ * trip's own reviews so the listing's visible rating matches the per-trip
3412
+ * AggregateRating structured data (Google requires marked-up ratings be visible).
3413
+ */
3414
+ rating?: number;
3415
+ /** Number of reviews behind `rating` — shown as "· 34 reviews". */
3416
+ reviewCount?: number;
3358
3417
  /**
3359
3418
  * Tour-type tag rendered as a chip at the top-left of the image
3360
3419
  * (ex.: "Family Adventure", "Private Trip", "Luxury").
@@ -3608,6 +3667,93 @@ interface TripHeaderProps {
3608
3667
  }
3609
3668
  declare function TripHeader({ images, videoUrl, title, breadcrumb, destination, duration, groupSize, labels, tagline, chips, belowMeta, siteHeader, uiVariant, className, }: TripHeaderProps): react_jsx_runtime.JSX.Element;
3610
3669
 
3670
+ interface SiteFooterChip {
3671
+ label: string;
3672
+ href: string;
3673
+ }
3674
+ interface SiteFooterLink {
3675
+ label: string;
3676
+ href: string;
3677
+ }
3678
+ interface SiteFooterLanguage {
3679
+ /** Locale code shown as the trigger label — e.g. "EN", "NL". */
3680
+ code: string;
3681
+ /** Human-friendly name shown next to the code in the dropdown. */
3682
+ label: string;
3683
+ }
3684
+ interface SiteFooterBadge {
3685
+ /** Image src. Optional when `node` is provided. */
3686
+ src?: string;
3687
+ alt: string;
3688
+ href?: string;
3689
+ /** Image height in px. Defaults to 56. Ignored when `node` is provided. */
3690
+ height?: number;
3691
+ /** Override with a custom React node (e.g. inline SVG). */
3692
+ node?: React.ReactNode;
3693
+ }
3694
+ interface SiteFooterSocial {
3695
+ network: "facebook" | "instagram" | "linkedin" | "youtube" | "twitter";
3696
+ href: string;
3697
+ label?: string;
3698
+ }
3699
+ interface SiteFooterAddress {
3700
+ title: string;
3701
+ lines: string[];
3702
+ }
3703
+ type SiteFooterVariant = "light" | "dark";
3704
+ interface SiteFooterProps {
3705
+ variant?: SiteFooterVariant;
3706
+ /** Brand name shown when no logo is rendered, used in copyright fallback. */
3707
+ brandTitle?: string;
3708
+ /** Logo used on the dark variant. Defaults to the white PlanetaEXO mark. */
3709
+ logoSrcLight?: string;
3710
+ /** Logo used on the light variant. Defaults to the green PlanetaEXO mark. */
3711
+ logoSrcDark?: string;
3712
+ /** Single-logo override — applies to both variants when set. */
3713
+ logoSrc?: string;
3714
+ logoAlt?: string;
3715
+ /** Optional href wrapping the logo. */
3716
+ logoHref?: string;
3717
+ /** Longer disclaimer / legal copy under the logo. */
3718
+ brandDescription?: React.ReactNode;
3719
+ /** Member / association badges rendered under the description. */
3720
+ badges?: SiteFooterBadge[];
3721
+ languages?: SiteFooterLanguage[];
3722
+ currentLanguage?: string;
3723
+ onLanguageChange?: (code: string) => void;
3724
+ address?: SiteFooterAddress;
3725
+ phone?: string;
3726
+ email?: string;
3727
+ socials?: SiteFooterSocial[];
3728
+ themesTitle?: string;
3729
+ themes?: SiteFooterChip[];
3730
+ destinationsTitle?: string;
3731
+ destinations?: SiteFooterChip[];
3732
+ destinationsMore?: {
3733
+ label: string;
3734
+ href: string;
3735
+ };
3736
+ pagesTitle?: string;
3737
+ pages?: SiteFooterLink[];
3738
+ /** Highlighted CTA under the Pages column — e.g. partnerships email. */
3739
+ cta?: {
3740
+ title: string;
3741
+ label: string;
3742
+ href: string;
3743
+ };
3744
+ copyright?: string;
3745
+ legalLinks?: SiteFooterLink[];
3746
+ className?: string;
3747
+ }
3748
+ declare const DEFAULT_FOOTER_THEMES: SiteFooterChip[];
3749
+ declare const DEFAULT_FOOTER_DESTINATIONS: SiteFooterChip[];
3750
+ declare const DEFAULT_FOOTER_PAGES: SiteFooterLink[];
3751
+ declare const DEFAULT_FOOTER_LEGAL: SiteFooterLink[];
3752
+ declare const DEFAULT_FOOTER_LANGUAGES: SiteFooterLanguage[];
3753
+ declare const DEFAULT_FOOTER_SOCIALS: SiteFooterSocial[];
3754
+ declare const DEFAULT_FOOTER_BADGES: SiteFooterBadge[];
3755
+ declare function SiteFooter({ variant, brandTitle, logoSrcLight, logoSrcDark, logoSrc, logoAlt, logoHref, brandDescription, badges, languages, currentLanguage, onLanguageChange, address, phone, email, socials, themesTitle, themes, destinationsTitle, destinations, destinationsMore, pagesTitle, pages, cta, copyright, legalLinks, className, }: SiteFooterProps): react_jsx_runtime.JSX.Element;
3756
+
3611
3757
  interface TripHighlight {
3612
3758
  label: string;
3613
3759
  icon?: React.ReactNode;
@@ -3718,6 +3864,8 @@ interface TripPageLabels {
3718
3864
  faq?: string;
3719
3865
  /** Section nav + section heading: "What our guests think" */
3720
3866
  reviews?: string;
3867
+ /** Section heading: "Gallery" — also the photo-tour section label for the main gallery. */
3868
+ gallery?: string;
3721
3869
  /** Expand control on the FAQ list + photo galleries: "See more" (count appended). */
3722
3870
  seeMore?: string;
3723
3871
  /** Collapse control on the FAQ list + photo galleries: "Show less". */
@@ -3785,6 +3933,14 @@ interface TripPageProps {
3785
3933
  */
3786
3934
  itineraryDays?: TripItineraryDay[];
3787
3935
  gallery?: (string | PhotoGalleryPhoto)[];
3936
+ /**
3937
+ * Lightbox mode for the main photo gallery when a photo is tapped.
3938
+ * - `"classic"` — paged single-photo view with prev/next arrows (default).
3939
+ * - `"feed"` — Airbnb "photo tour": one vertical scrollable column of every
3940
+ * photo, opened scrolled to the tapped one.
3941
+ * @default "classic"
3942
+ */
3943
+ galleryLightbox?: "classic" | "feed";
3788
3944
  included?: string[];
3789
3945
  notIncluded?: string[];
3790
3946
  whatToBring?: string[];
@@ -3897,13 +4053,20 @@ interface TripPageProps {
3897
4053
  * override variant / logo from a consuming page.
3898
4054
  */
3899
4055
  siteHeader?: boolean | SiteHeaderLink[] | TripSiteHeaderConfig;
4056
+ /**
4057
+ * Override the footer membership badges. Passed straight to the internal
4058
+ * `<SiteFooter badges>`; when omitted the DS defaults render. Lets a
4059
+ * consuming page swap in optimized/lazy badge nodes instead of the heavy
4060
+ * default PNGs (the defaults are large source images loaded eagerly).
4061
+ */
4062
+ footerBadges?: SiteFooterBadge[];
3900
4063
  /** Preset de layout (ilha WP / styleguide). @default v1 */
3901
4064
  uiVariant?: "v1" | "v2";
3902
4065
  /** Feature flags para ramos de UI sem duplicar componentes. */
3903
4066
  features?: Record<string, boolean>;
3904
4067
  className?: string;
3905
4068
  }
3906
- declare function TripPage({ title, tagline, destination, duration, groupSize, images, videoUrl, breadcrumb, chips, highlights, howToGetThere, recommendedFor, overview, overviewHighlights, itinerary, itineraryDays, gallery, included, notIncluded, whatToBring, weather, optionalExtras, accommodation, accommodationGallery, accommodationGalleryVariant, whenItOperates, food, foodGallery, foodGalleryVariant, termsAndConditions, meetingPoints, meetingPoint, faqs, faqInitialCount, sectionIcons, labels, reviews, trustpilot, trustpilotMini, trustpilotHero, priceFrom, currency, season, departureTimes, benefits, currencyEstimates, priceInfo, onBook, onBookingSubmit, bookingLoading, bookingDefaults, bookingLabels, bookLabel, fromLabel, perPersonLabel, siteHeader, uiVariant, features, className, }: TripPageProps): react_jsx_runtime.JSX.Element;
4069
+ declare function TripPage({ title, tagline, destination, duration, groupSize, images, videoUrl, breadcrumb, chips, highlights, howToGetThere, recommendedFor, overview, overviewHighlights, itinerary, itineraryDays, gallery, galleryLightbox, included, notIncluded, whatToBring, weather, optionalExtras, accommodation, accommodationGallery, accommodationGalleryVariant, whenItOperates, food, foodGallery, foodGalleryVariant, termsAndConditions, meetingPoints, meetingPoint, faqs, faqInitialCount, sectionIcons, labels, reviews, trustpilot, trustpilotMini, trustpilotHero, priceFrom, currency, season, departureTimes, benefits, currencyEstimates, priceInfo, onBook, onBookingSubmit, bookingLoading, bookingDefaults, bookingLabels, bookLabel, fromLabel, perPersonLabel, siteHeader, footerBadges, uiVariant, features, className, }: TripPageProps): react_jsx_runtime.JSX.Element;
3907
4070
 
3908
4071
  interface Category2Trip extends TripCardProps {
3909
4072
  /** Marca a trip como featured — sobe para o topo do grid principal. */
@@ -3963,6 +4126,12 @@ interface CategoryPage2Props {
3963
4126
  * {@link TripSiteHeaderConfig} to wire languages + onLanguageChange.
3964
4127
  */
3965
4128
  siteHeader?: boolean | SiteHeaderLink[] | TripSiteHeaderConfig;
4129
+ /**
4130
+ * Override the footer membership badges (passed to the internal
4131
+ * `<SiteFooter badges>`). Defaults to the DS badges when omitted; lets a
4132
+ * page swap in optimized/lazy badge nodes instead of the heavy default PNGs.
4133
+ */
4134
+ footerBadges?: SiteFooterBadge[];
3966
4135
  /**
3967
4136
  * Optional node pinned to the top-right of the hero content (below the
3968
4137
  * overlay header, aligned with the breadcrumb/title). Used e.g. for a
@@ -4025,7 +4194,7 @@ interface CategoryPage2Props {
4025
4194
  filterLabels?: FilterPanelLabels;
4026
4195
  className?: string;
4027
4196
  }
4028
- declare function CategoryPage2({ title, intro, heroImage, videoUrl, trustpilotMini, breadcrumb, siteHeader, heroRightSlot, popularTours, popularToursTitle, popularToursEyebrow, trips, tripsTitle, tripsEyebrow, filterGroups, sortOptions, defaultSort, tripsInitialCount, tripListingSlot, trustpilot, reviewsTitle, reviewsSubtitle, blogPosts, aboutTitle, aboutContent, blogIntro, travelGuideHref, travelGuideLabel, blogPostsTitle, blogPostsViewAllHref, faqs, faqsTitle, faqInitialCount, gallery, galleryTitle, loadMoreLabel, showLessLabel, seeMoreLabel, viewAllPostsLabel, cardLabels, filterLabels, className, }: CategoryPage2Props): react_jsx_runtime.JSX.Element;
4197
+ declare function CategoryPage2({ title, intro, heroImage, videoUrl, trustpilotMini, breadcrumb, siteHeader, heroRightSlot, popularTours, popularToursTitle, popularToursEyebrow, trips, tripsTitle, tripsEyebrow, filterGroups, sortOptions, defaultSort, tripsInitialCount, tripListingSlot, trustpilot, reviewsTitle, reviewsSubtitle, blogPosts, aboutTitle, aboutContent, blogIntro, travelGuideHref, travelGuideLabel, blogPostsTitle, blogPostsViewAllHref, faqs, faqsTitle, faqInitialCount, gallery, galleryTitle, loadMoreLabel, showLessLabel, seeMoreLabel, viewAllPostsLabel, cardLabels, filterLabels, footerBadges, className, }: CategoryPage2Props): react_jsx_runtime.JSX.Element;
4029
4198
 
4030
4199
  type ActivityCardSize = "sm" | "md" | "lg";
4031
4200
  interface ActivityCardProps {
@@ -4928,93 +5097,6 @@ interface USPProps {
4928
5097
  }
4929
5098
  declare function USP({ items, heading, subheading, columns, variant, theme, className, }: USPProps): react_jsx_runtime.JSX.Element;
4930
5099
 
4931
- interface SiteFooterChip {
4932
- label: string;
4933
- href: string;
4934
- }
4935
- interface SiteFooterLink {
4936
- label: string;
4937
- href: string;
4938
- }
4939
- interface SiteFooterLanguage {
4940
- /** Locale code shown as the trigger label — e.g. "EN", "NL". */
4941
- code: string;
4942
- /** Human-friendly name shown next to the code in the dropdown. */
4943
- label: string;
4944
- }
4945
- interface SiteFooterBadge {
4946
- /** Image src. Optional when `node` is provided. */
4947
- src?: string;
4948
- alt: string;
4949
- href?: string;
4950
- /** Image height in px. Defaults to 56. Ignored when `node` is provided. */
4951
- height?: number;
4952
- /** Override with a custom React node (e.g. inline SVG). */
4953
- node?: React.ReactNode;
4954
- }
4955
- interface SiteFooterSocial {
4956
- network: "facebook" | "instagram" | "linkedin" | "youtube" | "twitter";
4957
- href: string;
4958
- label?: string;
4959
- }
4960
- interface SiteFooterAddress {
4961
- title: string;
4962
- lines: string[];
4963
- }
4964
- type SiteFooterVariant = "light" | "dark";
4965
- interface SiteFooterProps {
4966
- variant?: SiteFooterVariant;
4967
- /** Brand name shown when no logo is rendered, used in copyright fallback. */
4968
- brandTitle?: string;
4969
- /** Logo used on the dark variant. Defaults to the white PlanetaEXO mark. */
4970
- logoSrcLight?: string;
4971
- /** Logo used on the light variant. Defaults to the green PlanetaEXO mark. */
4972
- logoSrcDark?: string;
4973
- /** Single-logo override — applies to both variants when set. */
4974
- logoSrc?: string;
4975
- logoAlt?: string;
4976
- /** Optional href wrapping the logo. */
4977
- logoHref?: string;
4978
- /** Longer disclaimer / legal copy under the logo. */
4979
- brandDescription?: React.ReactNode;
4980
- /** Member / association badges rendered under the description. */
4981
- badges?: SiteFooterBadge[];
4982
- languages?: SiteFooterLanguage[];
4983
- currentLanguage?: string;
4984
- onLanguageChange?: (code: string) => void;
4985
- address?: SiteFooterAddress;
4986
- phone?: string;
4987
- email?: string;
4988
- socials?: SiteFooterSocial[];
4989
- themesTitle?: string;
4990
- themes?: SiteFooterChip[];
4991
- destinationsTitle?: string;
4992
- destinations?: SiteFooterChip[];
4993
- destinationsMore?: {
4994
- label: string;
4995
- href: string;
4996
- };
4997
- pagesTitle?: string;
4998
- pages?: SiteFooterLink[];
4999
- /** Highlighted CTA under the Pages column — e.g. partnerships email. */
5000
- cta?: {
5001
- title: string;
5002
- label: string;
5003
- href: string;
5004
- };
5005
- copyright?: string;
5006
- legalLinks?: SiteFooterLink[];
5007
- className?: string;
5008
- }
5009
- declare const DEFAULT_FOOTER_THEMES: SiteFooterChip[];
5010
- declare const DEFAULT_FOOTER_DESTINATIONS: SiteFooterChip[];
5011
- declare const DEFAULT_FOOTER_PAGES: SiteFooterLink[];
5012
- declare const DEFAULT_FOOTER_LEGAL: SiteFooterLink[];
5013
- declare const DEFAULT_FOOTER_LANGUAGES: SiteFooterLanguage[];
5014
- declare const DEFAULT_FOOTER_SOCIALS: SiteFooterSocial[];
5015
- declare const DEFAULT_FOOTER_BADGES: SiteFooterBadge[];
5016
- declare function SiteFooter({ variant, brandTitle, logoSrcLight, logoSrcDark, logoSrc, logoAlt, logoHref, brandDescription, badges, languages, currentLanguage, onLanguageChange, address, phone, email, socials, themesTitle, themes, destinationsTitle, destinations, destinationsMore, pagesTitle, pages, cta, copyright, legalLinks, className, }: SiteFooterProps): react_jsx_runtime.JSX.Element;
5017
-
5018
5100
  interface CtaBannerCta {
5019
5101
  label: string;
5020
5102
  href?: string;
@@ -5221,4 +5303,4 @@ interface SegmentedControlProps {
5221
5303
  }
5222
5304
  declare function SegmentedControl({ items, value, defaultValue, onValueChange, variant, size, fullWidth, collapse, "aria-label": ariaLabel, className, }: SegmentedControlProps): react_jsx_runtime.JSX.Element;
5223
5305
 
5224
- export { type AccommodationRoomItem, ActivityCard, type ActivityCardProps, type ActivityCardSize, AdventureExplorer, type AdventureExplorerProps, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, AskExo, type AskExoProps, type AskExoSuggestion, BirthDateField, type BirthDateFieldProps, type BlogAuthor, type BlogBlock, type BlogCalloutBlock, BlogCard, type BlogCardCta, type BlogCardProps, type BlogCardSize, type BlogCollageBlock, type BlogHeadingBlock, type BlogImageBlock, BlogJournal, type BlogJournalFeature, type BlogJournalPost, type BlogJournalProps, type BlogListBlock, type BlogParagraphBlock, BlogPost, type BlogPostProps, type BlogQuoteBlock, type BlogTableBlock, type BlogTableColumn, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, type BookingCancellationAdventure, type BookingCancellationAgentContactLinks, BookingCancellationEmail, type BookingCancellationEmailLabels, type BookingCancellationEmailProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, BookingCreatedEmail, type BookingCreatedEmailLabels, type BookingCreatedEmailProps, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingPartialCancellationEmail, type BookingPartialCancellationEmailLabels, type BookingPartialCancellationEmailProps, BookingPaymentConfirmationEmail, type BookingPaymentConfirmationEmailLabels, type BookingPaymentConfirmationEmailProps, BookingShell, type BookingShellProps, type BookingStatus, BookingSummary, type BookingSummaryLineItem, type BookingSummaryProps, type BookingSummaryRoomItem, type BookingSummaryRow, type BookingTraveller, Button, type ButtonProps, COUNTRIES, CancellationForm, type CancellationFormAdventure, type CancellationFormLabels, type CancellationFormOption, type CancellationFormParticipant, type CancellationFormProps, type CancellationFormValues, type CancellationRequestReceivedAdventure, type CancellationRequestReceivedAgentContactLinks, CancellationRequestReceivedEmail, type CancellationRequestReceivedEmailLabels, type CancellationRequestReceivedEmailProps, type Category2BlogPost, type Category2Faq, type Category2SortOption, type Category2Trip, CategoryPage2, type CategoryPage2Props, Chip, type ChipProps, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, CtaBanner, type CtaBannerCta, type CtaBannerProps, type CurrencyEstimate, DEFAULT_FOOTER_BADGES, DEFAULT_FOOTER_DESTINATIONS, DEFAULT_FOOTER_LANGUAGES, DEFAULT_FOOTER_LEGAL, DEFAULT_FOOTER_PAGES, DEFAULT_FOOTER_SOCIALS, DEFAULT_FOOTER_THEMES, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, STATUS_MAP as DEPARTURE_STATUS_MAP, DatePickerField, type DatePickerFieldProps, type DepartureStatus, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, ExoOrb, type ExoOrbProps, type ExploreCard, type ExploreTab, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, GroupProgressBar, type GroupProgressBarProps, GroupStatusBanner, type GroupStatusBannerProps, HomeHeader, type HomeHeaderCta, type HomeHeaderPressLogo, type HomeHeaderProps, type HomeHeaderRating, type HomeSiteHeaderConfig, Itinerary, ItineraryDay, type ItineraryDayPhoto, type ItineraryDayPhotoLayout, type ItineraryDayProps, type ItineraryDaySpec, type ItineraryProps, type ItineraryRoute, type ItineraryStop, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, type LeadCapturePopupConfig, MenuTrip, type MenuTripProps, type MenuTripSection, type MenuTripVariant, NewHome, type NewHomeExpeditions, type NewHomePopular, type NewHomePopularChip, type NewHomeProps, type NewHomeReview, type NewHomeReviews, type NewHomeSectionHead, type NewHomeSectionLink, type NewHomeStat, type NewHomeStats, NotificationEmail, type NotificationEmailCta, type NotificationEmailDetailItem, type NotificationEmailProps, type NotificationEmailRoster, type NotificationEmailRosterPerson, type NotificationEmailSummary, type NotificationEmailSummaryRow, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, type PartialCancellationAgentContactLinks, type PartialCancellationRemovedItem, type Participant, ParticipantCounter, type ParticipantCounterProps, ParticipantList, type ParticipantListProps, type PartnerBookingCreatedAgentContactLinks, PartnerBookingCreatedEmail, type PartnerBookingCreatedEmailLabels, type PartnerBookingCreatedEmailProps, type PartnerRegistrationCompleteAgentContactLinks, PartnerRegistrationCompleteEmail, type PartnerRegistrationCompleteEmailExpectationRow, type PartnerRegistrationCompleteEmailLabels, type PartnerRegistrationCompleteEmailProps, PaymentAmountSelector, type PaymentAmountSelectorProps, PaymentDetailsBlock, type PaymentDetailsBlockFooterBanner, type PaymentDetailsBlockLabels, type PaymentDetailsBlockProps, type PaymentDetailsBlockRow, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, type PaymentReceiptAdventure, type PaymentReceiptAdventureLineItem, PaymentReceiptEmail, type PaymentReceiptEmailLabels, type PaymentReceiptEmailProps, type PaymentReminderAgentContactLinks, PaymentReminderEmail, type PaymentReminderEmailAdventure, type PaymentReminderEmailLabels, type PaymentReminderEmailLineItem, type PaymentReminderEmailProps, type PaymentReminderEmailVariantLabels, type PaymentReminderVariant, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, Picture, type PictureProps, PriceProgress, type PriceProgressProps, PricingMatrixCard, type PricingMatrixCardProps, type PricingTier, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationProgressBar, type RegistrationProgressBarProps, type RegistrationProgressTone, type RegistrationReminderAdventureBlock, type RegistrationReminderAgentContactLinks, RegistrationReminderEmail, type RegistrationReminderEmailLabels, type RegistrationReminderEmailProps, type RegistrationReminderEmailVariantLabels, type RegistrationReminderIndividualAgentContactLinks, RegistrationReminderIndividualEmail, type RegistrationReminderIndividualEmailLabels, type RegistrationReminderIndividualEmailProps, type RegistrationReminderIndividualRoute, type RegistrationReminderIndividualSlug, type RegistrationReminderIndividualVariantLabels, type RegistrationReminderSlug, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, type SegmentItem, SegmentedControl, type SegmentedControlProps, ShareWidget, type ShareWidgetProps, SiteFooter, type SiteFooterAddress, type SiteFooterBadge, type SiteFooterChip, type SiteFooterLanguage, type SiteFooterLink, type SiteFooterProps, type SiteFooterSocial, type SiteFooterVariant, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, StatusBadge, type StatusBadgeProps, StickyBookingCard, type StickyBookingCardProps, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, TransferDetailsBlock, type TransferDetailsBlockProps, type TravellerFormConfig, type TravellerFormData, TravellerFormInviteEmail, type TravellerFormInviteEmailLabels, type TravellerFormInviteEmailProps, type TravellerFormInviteLink, type TravellerFormLabels, TripCard, type TripCardCta, type TripCardProps, type TripCardSize, type TripCardStatus, type TripDuration, type TripFaq, TripHeader, type TripHeaderProps, type TripHighlight, type TripInfoGroup, type TripItineraryDay, type TripItineraryStep, type TripMeetingPoint, type TripOverviewHighlight, TripPage, type TripPageLabels, type TripPageProps, type TripReview, type TripSectionIcons, type TripSiteHeaderConfig, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, USP, type USPItem, type USPProps, buttonVariants, chipVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, webpVariantUrl, wrapEmailHtml };
5306
+ export { type AccommodationRoomItem, ActivityCard, type ActivityCardProps, type ActivityCardSize, AdventureExplorer, type AdventureExplorerProps, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, AskExo, type AskExoProps, type AskExoSuggestion, BirthDateField, type BirthDateFieldProps, type BlogAuthor, type BlogBlock, type BlogCalloutBlock, BlogCard, type BlogCardCta, type BlogCardProps, type BlogCardSize, type BlogCollageBlock, type BlogHeadingBlock, type BlogImageBlock, BlogJournal, type BlogJournalFeature, type BlogJournalPost, type BlogJournalProps, type BlogListBlock, type BlogParagraphBlock, BlogPost, type BlogPostProps, type BlogQuoteBlock, type BlogTableBlock, type BlogTableColumn, type BookingAdventure, BookingAdventureCard, type BookingAdventureCardLabels, type BookingAdventureCardLineItem, type BookingAdventureCardProps, type BookingAdventureCardSlots, type BookingAdventureCardTraveller, type BookingCancellationAdventure, type BookingCancellationAgentContactLinks, BookingCancellationEmail, type BookingCancellationEmailLabels, type BookingCancellationEmailProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, BookingCreatedEmail, type BookingCreatedEmailLabels, type BookingCreatedEmailProps, type BookingDepositInfo, BookingDetails, type BookingDetailsLabels, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingPartialCancellationEmail, type BookingPartialCancellationEmailLabels, type BookingPartialCancellationEmailProps, BookingPaymentConfirmationEmail, type BookingPaymentConfirmationEmailLabels, type BookingPaymentConfirmationEmailProps, BookingShell, type BookingShellProps, type BookingStatus, BookingSummary, type BookingSummaryLineItem, type BookingSummaryProps, type BookingSummaryRoomItem, type BookingSummaryRow, type BookingTraveller, Button, type ButtonProps, COUNTRIES, CancellationForm, type CancellationFormAdventure, type CancellationFormLabels, type CancellationFormOption, type CancellationFormParticipant, type CancellationFormProps, type CancellationFormValues, type CancellationRequestReceivedAdventure, type CancellationRequestReceivedAgentContactLinks, CancellationRequestReceivedEmail, type CancellationRequestReceivedEmailLabels, type CancellationRequestReceivedEmailProps, type Category2BlogPost, type Category2Faq, type Category2SortOption, type Category2Trip, CategoryPage2, type CategoryPage2Props, Chip, type ChipProps, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, CtaBanner, type CtaBannerCta, type CtaBannerProps, type CurrencyEstimate, DEFAULT_FOOTER_BADGES, DEFAULT_FOOTER_DESTINATIONS, DEFAULT_FOOTER_LANGUAGES, DEFAULT_FOOTER_LEGAL, DEFAULT_FOOTER_PAGES, DEFAULT_FOOTER_SOCIALS, DEFAULT_FOOTER_THEMES, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, STATUS_MAP as DEPARTURE_STATUS_MAP, DatePickerField, type DatePickerFieldProps, type DepartureStatus, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, ExoOrb, type ExoOrbProps, type ExploreCard, type ExploreTab, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, GroupProgressBar, type GroupProgressBarProps, GroupStatusBanner, type GroupStatusBannerProps, HomeHeader, type HomeHeaderCta, type HomeHeaderPressLogo, type HomeHeaderProps, type HomeHeaderRating, type HomeSiteHeaderConfig, Itinerary, ItineraryDay, type ItineraryDayPhoto, type ItineraryDayPhotoLayout, type ItineraryDayProps, type ItineraryDaySpec, type ItineraryProps, type ItineraryRoute, type ItineraryStop, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, type LeadCapturePopupConfig, MenuTrip, type MenuTripProps, type MenuTripSection, type MenuTripVariant, NewHome, type NewHomeExpeditions, type NewHomePopular, type NewHomePopularChip, type NewHomeProps, type NewHomeReview, type NewHomeReviews, type NewHomeSectionHead, type NewHomeSectionLink, type NewHomeStat, type NewHomeStats, NotificationEmail, type NotificationEmailCta, type NotificationEmailDetailItem, type NotificationEmailProps, type NotificationEmailRoster, type NotificationEmailRosterPerson, type NotificationEmailSummary, type NotificationEmailSummaryRow, OTPCodeInput, type OTPCodeInputProps, Offer, OfferAdventureCard, type OfferAdventureItem, type OfferAgentInfo, type OfferConfirmedState, type OfferDepositInfo, type OfferLabels, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, type PartialCancellationAgentContactLinks, type PartialCancellationRemovedItem, 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, PhotoTourProvider, type PhotoTourProviderProps, Picture, type PictureProps, PriceProgress, type PriceProgressProps, PricingMatrixCard, type PricingMatrixCardProps, type PricingTier, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationProgressBar, type RegistrationProgressBarProps, type RegistrationProgressTone, type RegistrationReminderAdventureBlock, type RegistrationReminderAgentContactLinks, RegistrationReminderEmail, type RegistrationReminderEmailLabels, type RegistrationReminderEmailProps, type RegistrationReminderEmailVariantLabels, type RegistrationReminderIndividualAgentContactLinks, RegistrationReminderIndividualEmail, type RegistrationReminderIndividualEmailLabels, type RegistrationReminderIndividualEmailProps, type RegistrationReminderIndividualRoute, type RegistrationReminderIndividualSlug, type RegistrationReminderIndividualVariantLabels, type RegistrationReminderSlug, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, type SegmentItem, SegmentedControl, type SegmentedControlProps, ShareWidget, type ShareWidgetProps, SiteFooter, type SiteFooterAddress, type SiteFooterBadge, type SiteFooterChip, type SiteFooterLanguage, type SiteFooterLink, type SiteFooterProps, type SiteFooterSocial, type SiteFooterVariant, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, StatusBadge, type StatusBadgeProps, StickyBookingCard, type StickyBookingCardProps, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, TransferDetailsBlock, type TransferDetailsBlockProps, type TravellerFormConfig, type TravellerFormData, TravellerFormInviteEmail, type TravellerFormInviteEmailLabels, type TravellerFormInviteEmailProps, type TravellerFormInviteLink, type TravellerFormLabels, TripCard, type TripCardCta, type TripCardProps, type TripCardSize, type TripCardStatus, type TripDuration, type TripFaq, TripHeader, type TripHeaderProps, type TripHighlight, type TripInfoGroup, type TripItineraryDay, type TripItineraryStep, type TripMeetingPoint, type TripOverviewHighlight, TripPage, type TripPageLabels, type TripPageProps, type TripReview, type TripSectionIcons, type TripSiteHeaderConfig, type TripTrustpilotWidget, TrustpilotEmbed, type TrustpilotWidgetConfig, USP, type USPItem, type USPProps, buttonVariants, chipVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, webpVariantUrl, wrapEmailHtml };