@planetaexo/design-system 0.12.1 → 0.12.3

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.cts CHANGED
@@ -530,6 +530,8 @@ interface BookingConfirmationEmailLabels {
530
530
  hostLabel?: string;
531
531
  postCtaMessage?: string;
532
532
  closingMessage?: string;
533
+ /** Cabeçalho da seção opcional de próximos passos (ex.: "What you need to do:"). */
534
+ nextStepsHeading?: string;
533
535
  }
534
536
  interface BookingConfirmationEmailProps {
535
537
  /** Nome do destinatário (ex: "Maria") */
@@ -540,8 +542,8 @@ interface BookingConfirmationEmailProps {
540
542
  logoUrl?: string;
541
543
  /** Número da reserva */
542
544
  bookingNumber: string;
543
- /** Nome da atividade */
544
- activity: string;
545
+ /** Nome da atividade (opcional). Quando vazio/undefined, a linha "Activity" não é exibida. */
546
+ activity?: string;
545
547
  /** Nome da aventura */
546
548
  adventure: string;
547
549
  /** Data de início (formatada) */
@@ -554,8 +556,27 @@ interface BookingConfirmationEmailProps {
554
556
  labels?: Partial<BookingConfirmationEmailLabels>;
555
557
  /** className adicional no container */
556
558
  className?: string;
559
+ /**
560
+ * Lista opcional de passos numerados. Quando informada (length > 0), uma seção
561
+ * "Next steps" é renderizada antes do `postCtaMessage`, no estilo do BookingConfirmation
562
+ * (números em círculo com cor primaryLight + caixa com borda).
563
+ */
564
+ nextSteps?: string[];
565
+ /**
566
+ * Texto opcional exibido abaixo da lista `nextSteps`, em destaque (cor accentForeground).
567
+ * Apenas renderizado quando `nextSteps` está presente.
568
+ */
569
+ nextStepsImportant?: string;
570
+ /**
571
+ * Label que precede o link puro da reserva renderizado antes do `closingMessage`
572
+ * (ex.: "Direct link to your booking:"). Quando informada e `addTravellersUrl` existe,
573
+ * renderiza um parágrafo com `{label} <a href={url}>{url}</a>` para clientes que prefiram
574
+ * copiar/colar o URL ou em casos onde o botão CTA não renderiza.
575
+ * Quando omitida, nada é renderizado (mantém compat com fluxos que não querem o link puro).
576
+ */
577
+ directBookingLinkLabel?: string;
557
578
  }
558
- declare function BookingConfirmationEmail({ recipientName, addTravellersUrl, logoUrl, bookingNumber, activity, adventure, startingDate, numberOfPeople, host, labels, className, }: BookingConfirmationEmailProps): react_jsx_runtime.JSX.Element;
579
+ declare function BookingConfirmationEmail({ recipientName, addTravellersUrl, logoUrl, bookingNumber, activity, adventure, startingDate, numberOfPeople, host, labels, className, nextSteps, nextStepsImportant, directBookingLinkLabel, }: BookingConfirmationEmailProps): react_jsx_runtime.JSX.Element;
559
580
 
560
581
  interface BookingOtpEmailProps {
561
582
  /** Saudação (ex.: "Hello!" / "Olá!"). */
@@ -623,57 +644,6 @@ interface TravellerFormInviteEmailProps {
623
644
  }
624
645
  declare function TravellerFormInviteEmail({ greeting, bodyIntro, bodyInstruction, links, ignoreNote, teamSignature, logoUrl, buttonLabel, className, tripDetails, tripDetailsLabels, bodyFooter, }: TravellerFormInviteEmailProps): react_jsx_runtime.JSX.Element;
625
646
 
626
- type BookingWelcomeNewSystemFormsStatus = "COMPLETO" | "INCOMPLETO" | "ZERADO" | "SEM_FORM";
627
- interface BookingWelcomeNewSystemBookingItem {
628
- /** ID interno da reserva (ex.: 1234) — exibido como #1234. */
629
- bookingId: number;
630
- /** Referência pública estável (ex.: "EXO-R-MS-1234"). Opcional. */
631
- publicRef?: string | null;
632
- /** Nome da aventura principal ou rótulo agregado (ex.: "+ 2 aventuras"). */
633
- adventureName: string;
634
- /** Data de início formatada na locale do contato. */
635
- startDate: string;
636
- /** Status de progresso dos formulários (computed via computeBookingFormsSummary). */
637
- formsStatus: BookingWelcomeNewSystemFormsStatus;
638
- /** Quantidade de formulários já completos. */
639
- formsCompleted: number;
640
- /** Total de formulários requeridos para a reserva. */
641
- formsRequired: number;
642
- /** URL pública para a página da reserva (ex.: /pt/b?bookingId=1234). */
643
- bookingPublicUrl: string;
644
- }
645
- interface BookingWelcomeNewSystemEmailProps {
646
- /** "all" (todas reservas com forms ok) ou "formsPending" (alguma reserva tem pendência). */
647
- variant: "all" | "formsPending";
648
- /** Saudação completa (ex.: "Olá Maria,"). */
649
- greeting: string;
650
- /** Parágrafo de abertura — varia conforme variant. */
651
- introParagraph: string;
652
- /** Cabeçalho da seção de reservas (ex.: "Suas reservas:"). */
653
- bookingsHeading: string;
654
- /** Lista de reservas do contato (1 ou mais). */
655
- bookings: BookingWelcomeNewSystemBookingItem[];
656
- /** Label "Formulários completos" (status COMPLETO). */
657
- bookingFormsCompleteLabel: string;
658
- /** Label callback "N de M formulários pendentes" (status INCOMPLETO/ZERADO). */
659
- bookingFormsPendingLabel: (done: number, total: number) => string;
660
- /** Label "Sem formulário necessário" (status SEM_FORM). */
661
- bookingFormsNoneLabel?: string;
662
- /** Texto do botão CTA por reserva (ex.: "Ver reserva"). */
663
- ctaLabel: string;
664
- /** Label "Código da reserva:" — exibido antes do #ID. */
665
- bookingCodeLabel: string;
666
- /** Linha de assinatura (ex.: "Equipa PlanetaEXO"). */
667
- signatureLine: string;
668
- /** Texto do rodapé (ex.: convite a responder ao e-mail). */
669
- footerText?: string;
670
- /** URL da logo. Default: data URI embutido. */
671
- logoUrl?: string;
672
- /** className extra no container (uso no styleguide). */
673
- className?: string;
674
- }
675
- declare function BookingWelcomeNewSystemEmail({ greeting, introParagraph, bookingsHeading, bookings, bookingFormsCompleteLabel, bookingFormsPendingLabel, bookingFormsNoneLabel, ctaLabel, bookingCodeLabel, signatureLine, footerText, logoUrl, className, }: BookingWelcomeNewSystemEmailProps): react_jsx_runtime.JSX.Element;
676
-
677
647
  interface BookingFormValues {
678
648
  adults: number;
679
649
  children: number;
@@ -1735,4 +1705,4 @@ declare function LeadCapturePopup({ config: _config, }: {
1735
1705
  config: LeadCapturePopupConfig;
1736
1706
  }): react_jsx_runtime.JSX.Element | null;
1737
1707
 
1738
- export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, BookingConfirmation, BookingConfirmationEmail, type BookingConfirmationEmailLabels, type BookingConfirmationEmailProps, type BookingConfirmationLabels, type BookingConfirmationProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, type BookingDepositInfo, BookingDetails, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingShell, type BookingShellProps, type BookingStatus, type BookingSummaryLineItem, type BookingTraveller, type BookingWelcomeNewSystemBookingItem, BookingWelcomeNewSystemEmail, type BookingWelcomeNewSystemEmailProps, type BookingWelcomeNewSystemFormsStatus, Button, type ButtonProps, COUNTRIES, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, type DatePickerFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Itinerary, 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 OfferDepositInfo, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, PaymentAmountSelector, type PaymentAmountSelectorProps, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, type PricingOption, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, 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 TripItineraryStep, type TripMeetingPoint, TripPage, type TripPageProps, type TripPricingOption, type TripReview, buttonVariants, cn, emailTokens, getStripeAppearance, stripeAppearance, wrapEmailHtml };
1708
+ export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, BookingConfirmation, BookingConfirmationEmail, type BookingConfirmationEmailLabels, type BookingConfirmationEmailProps, type BookingConfirmationLabels, type BookingConfirmationProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, type BookingDepositInfo, BookingDetails, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingShell, type BookingShellProps, type BookingStatus, type BookingSummaryLineItem, type BookingTraveller, Button, type ButtonProps, COUNTRIES, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, type DatePickerFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Itinerary, 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 OfferDepositInfo, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, PaymentAmountSelector, type PaymentAmountSelectorProps, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, type PricingOption, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, 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 TripItineraryStep, type TripMeetingPoint, TripPage, type TripPageProps, type TripPricingOption, type TripReview, buttonVariants, cn, emailTokens, getStripeAppearance, stripeAppearance, wrapEmailHtml };
package/dist/index.d.ts CHANGED
@@ -530,6 +530,8 @@ interface BookingConfirmationEmailLabels {
530
530
  hostLabel?: string;
531
531
  postCtaMessage?: string;
532
532
  closingMessage?: string;
533
+ /** Cabeçalho da seção opcional de próximos passos (ex.: "What you need to do:"). */
534
+ nextStepsHeading?: string;
533
535
  }
534
536
  interface BookingConfirmationEmailProps {
535
537
  /** Nome do destinatário (ex: "Maria") */
@@ -540,8 +542,8 @@ interface BookingConfirmationEmailProps {
540
542
  logoUrl?: string;
541
543
  /** Número da reserva */
542
544
  bookingNumber: string;
543
- /** Nome da atividade */
544
- activity: string;
545
+ /** Nome da atividade (opcional). Quando vazio/undefined, a linha "Activity" não é exibida. */
546
+ activity?: string;
545
547
  /** Nome da aventura */
546
548
  adventure: string;
547
549
  /** Data de início (formatada) */
@@ -554,8 +556,27 @@ interface BookingConfirmationEmailProps {
554
556
  labels?: Partial<BookingConfirmationEmailLabels>;
555
557
  /** className adicional no container */
556
558
  className?: string;
559
+ /**
560
+ * Lista opcional de passos numerados. Quando informada (length > 0), uma seção
561
+ * "Next steps" é renderizada antes do `postCtaMessage`, no estilo do BookingConfirmation
562
+ * (números em círculo com cor primaryLight + caixa com borda).
563
+ */
564
+ nextSteps?: string[];
565
+ /**
566
+ * Texto opcional exibido abaixo da lista `nextSteps`, em destaque (cor accentForeground).
567
+ * Apenas renderizado quando `nextSteps` está presente.
568
+ */
569
+ nextStepsImportant?: string;
570
+ /**
571
+ * Label que precede o link puro da reserva renderizado antes do `closingMessage`
572
+ * (ex.: "Direct link to your booking:"). Quando informada e `addTravellersUrl` existe,
573
+ * renderiza um parágrafo com `{label} <a href={url}>{url}</a>` para clientes que prefiram
574
+ * copiar/colar o URL ou em casos onde o botão CTA não renderiza.
575
+ * Quando omitida, nada é renderizado (mantém compat com fluxos que não querem o link puro).
576
+ */
577
+ directBookingLinkLabel?: string;
557
578
  }
558
- declare function BookingConfirmationEmail({ recipientName, addTravellersUrl, logoUrl, bookingNumber, activity, adventure, startingDate, numberOfPeople, host, labels, className, }: BookingConfirmationEmailProps): react_jsx_runtime.JSX.Element;
579
+ declare function BookingConfirmationEmail({ recipientName, addTravellersUrl, logoUrl, bookingNumber, activity, adventure, startingDate, numberOfPeople, host, labels, className, nextSteps, nextStepsImportant, directBookingLinkLabel, }: BookingConfirmationEmailProps): react_jsx_runtime.JSX.Element;
559
580
 
560
581
  interface BookingOtpEmailProps {
561
582
  /** Saudação (ex.: "Hello!" / "Olá!"). */
@@ -623,57 +644,6 @@ interface TravellerFormInviteEmailProps {
623
644
  }
624
645
  declare function TravellerFormInviteEmail({ greeting, bodyIntro, bodyInstruction, links, ignoreNote, teamSignature, logoUrl, buttonLabel, className, tripDetails, tripDetailsLabels, bodyFooter, }: TravellerFormInviteEmailProps): react_jsx_runtime.JSX.Element;
625
646
 
626
- type BookingWelcomeNewSystemFormsStatus = "COMPLETO" | "INCOMPLETO" | "ZERADO" | "SEM_FORM";
627
- interface BookingWelcomeNewSystemBookingItem {
628
- /** ID interno da reserva (ex.: 1234) — exibido como #1234. */
629
- bookingId: number;
630
- /** Referência pública estável (ex.: "EXO-R-MS-1234"). Opcional. */
631
- publicRef?: string | null;
632
- /** Nome da aventura principal ou rótulo agregado (ex.: "+ 2 aventuras"). */
633
- adventureName: string;
634
- /** Data de início formatada na locale do contato. */
635
- startDate: string;
636
- /** Status de progresso dos formulários (computed via computeBookingFormsSummary). */
637
- formsStatus: BookingWelcomeNewSystemFormsStatus;
638
- /** Quantidade de formulários já completos. */
639
- formsCompleted: number;
640
- /** Total de formulários requeridos para a reserva. */
641
- formsRequired: number;
642
- /** URL pública para a página da reserva (ex.: /pt/b?bookingId=1234). */
643
- bookingPublicUrl: string;
644
- }
645
- interface BookingWelcomeNewSystemEmailProps {
646
- /** "all" (todas reservas com forms ok) ou "formsPending" (alguma reserva tem pendência). */
647
- variant: "all" | "formsPending";
648
- /** Saudação completa (ex.: "Olá Maria,"). */
649
- greeting: string;
650
- /** Parágrafo de abertura — varia conforme variant. */
651
- introParagraph: string;
652
- /** Cabeçalho da seção de reservas (ex.: "Suas reservas:"). */
653
- bookingsHeading: string;
654
- /** Lista de reservas do contato (1 ou mais). */
655
- bookings: BookingWelcomeNewSystemBookingItem[];
656
- /** Label "Formulários completos" (status COMPLETO). */
657
- bookingFormsCompleteLabel: string;
658
- /** Label callback "N de M formulários pendentes" (status INCOMPLETO/ZERADO). */
659
- bookingFormsPendingLabel: (done: number, total: number) => string;
660
- /** Label "Sem formulário necessário" (status SEM_FORM). */
661
- bookingFormsNoneLabel?: string;
662
- /** Texto do botão CTA por reserva (ex.: "Ver reserva"). */
663
- ctaLabel: string;
664
- /** Label "Código da reserva:" — exibido antes do #ID. */
665
- bookingCodeLabel: string;
666
- /** Linha de assinatura (ex.: "Equipa PlanetaEXO"). */
667
- signatureLine: string;
668
- /** Texto do rodapé (ex.: convite a responder ao e-mail). */
669
- footerText?: string;
670
- /** URL da logo. Default: data URI embutido. */
671
- logoUrl?: string;
672
- /** className extra no container (uso no styleguide). */
673
- className?: string;
674
- }
675
- declare function BookingWelcomeNewSystemEmail({ greeting, introParagraph, bookingsHeading, bookings, bookingFormsCompleteLabel, bookingFormsPendingLabel, bookingFormsNoneLabel, ctaLabel, bookingCodeLabel, signatureLine, footerText, logoUrl, className, }: BookingWelcomeNewSystemEmailProps): react_jsx_runtime.JSX.Element;
676
-
677
647
  interface BookingFormValues {
678
648
  adults: number;
679
649
  children: number;
@@ -1735,4 +1705,4 @@ declare function LeadCapturePopup({ config: _config, }: {
1735
1705
  config: LeadCapturePopupConfig;
1736
1706
  }): react_jsx_runtime.JSX.Element | null;
1737
1707
 
1738
- export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, BookingConfirmation, BookingConfirmationEmail, type BookingConfirmationEmailLabels, type BookingConfirmationEmailProps, type BookingConfirmationLabels, type BookingConfirmationProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, type BookingDepositInfo, BookingDetails, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingShell, type BookingShellProps, type BookingStatus, type BookingSummaryLineItem, type BookingTraveller, type BookingWelcomeNewSystemBookingItem, BookingWelcomeNewSystemEmail, type BookingWelcomeNewSystemEmailProps, type BookingWelcomeNewSystemFormsStatus, Button, type ButtonProps, COUNTRIES, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, type DatePickerFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Itinerary, 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 OfferDepositInfo, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, PaymentAmountSelector, type PaymentAmountSelectorProps, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, type PricingOption, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, 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 TripItineraryStep, type TripMeetingPoint, TripPage, type TripPageProps, type TripPricingOption, type TripReview, buttonVariants, cn, emailTokens, getStripeAppearance, stripeAppearance, wrapEmailHtml };
1708
+ export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, BirthDateField, type BirthDateFieldProps, type BookingAdventure, BookingConfirmation, BookingConfirmationEmail, type BookingConfirmationEmailLabels, type BookingConfirmationEmailProps, type BookingConfirmationLabels, type BookingConfirmationProps, BookingConfirmedCard, type BookingConfirmedCardProps, type BookingContact, type BookingDepositInfo, BookingDetails, type BookingDetailsProps, BookingForm, type BookingFormProps, type BookingFormValues, BookingOtpEmail, type BookingOtpEmailProps, BookingShell, type BookingShellProps, type BookingStatus, type BookingSummaryLineItem, type BookingTraveller, Button, type ButtonProps, COUNTRIES, type ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, type DatePickerFieldProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, type EmailTokens, type FilterGroup, type FilterItem, FilterPanel, type FilterPanelProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, Itinerary, 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 OfferDepositInfo, type OfferOptionalItem, type OfferProps, type OfferSummaryLineItem, PaymentAmountSelector, type PaymentAmountSelectorProps, type PaymentMethodOption, PaymentMethodSelector, type PaymentMethodSelectorProps, PaymentModalShell, type PaymentModalShellProps, PhoneCountrySelect, PhotoGallery, type PhotoGalleryPhoto, type PhotoGalleryProps, type PhotoGalleryVariant, type PricingOption, PricingTrip, type PricingTripProps, type PricingTripVariant, type RegistrationAdventure, type RegistrationBooking, type RegistrationEmergencyContactValue, type RegistrationField, type RegistrationFieldOption, type RegistrationFieldType, type RegistrationFieldValue, RegistrationForm, type RegistrationFormLabels, type RegistrationFormProps, type RegistrationFormValues, type RegistrationNameValue, type RegistrationPhoneValue, RegistrationSuccessCard, type RegistrationSuccessCardProps, type RegistrationTerms, type RegistrationTraveller, SiteHeader, type SiteHeaderLanguage, type SiteHeaderLink, type SiteHeaderProps, type SiteHeaderSubItem, type SiteHeaderVariant, type StripeAppearance, type SuggestedTraveller, TERMS_ACCEPT_KEY, TermsSection, type TermsSectionProps, ThemeToggle, Toast, type ToastProps, type ToastVariant, 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 TripItineraryStep, type TripMeetingPoint, TripPage, type TripPageProps, type TripPricingOption, type TripReview, buttonVariants, cn, emailTokens, getStripeAppearance, stripeAppearance, wrapEmailHtml };