@planetaexo/design-system 0.50.0 → 0.51.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +34 -9
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +28 -11
- package/dist/index.d.ts +28 -11
- package/dist/index.js +34 -9
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1488,15 +1488,15 @@ interface RegistrationReminderIndividualEmailProps {
|
|
|
1488
1488
|
}
|
|
1489
1489
|
declare function RegistrationReminderIndividualEmail({ slug, recipientFirstName, travellerFirstName, leadTravellerName, leadTravellerFirstName, bookingNumber, adventureName, startDateFormatted, partnerName, ctaUrl, route, agent, logoUrl, labels, className, }: RegistrationReminderIndividualEmailProps): react_jsx_runtime.JSX.Element;
|
|
1490
1490
|
|
|
1491
|
-
interface
|
|
1491
|
+
interface PartnerRegistrationCompleteAgentContactLinks {
|
|
1492
1492
|
whatsappUrl?: string;
|
|
1493
1493
|
email?: string;
|
|
1494
1494
|
}
|
|
1495
|
-
interface
|
|
1495
|
+
interface PartnerRegistrationCompleteEmailExpectationRow {
|
|
1496
1496
|
travellerName: string;
|
|
1497
1497
|
answer: string | null;
|
|
1498
1498
|
}
|
|
1499
|
-
interface
|
|
1499
|
+
interface PartnerRegistrationCompleteEmailProps {
|
|
1500
1500
|
scenario: "all_done" | "d_minus_7";
|
|
1501
1501
|
locale: "en" | "pt" | "fr" | "de";
|
|
1502
1502
|
/** Aviso de topo opcional (banner âmbar). Texto já localizado pelo backend. */
|
|
@@ -1510,7 +1510,7 @@ interface PartnerConfirmationEmailProps {
|
|
|
1510
1510
|
/** Seção Travellers Expectations. hasSection=false → nenhum campo marcado no form. */
|
|
1511
1511
|
expectations: {
|
|
1512
1512
|
hasSection: boolean;
|
|
1513
|
-
rows:
|
|
1513
|
+
rows: PartnerRegistrationCompleteEmailExpectationRow[];
|
|
1514
1514
|
};
|
|
1515
1515
|
pdfAttached: boolean;
|
|
1516
1516
|
agent: {
|
|
@@ -1519,10 +1519,10 @@ interface PartnerConfirmationEmailProps {
|
|
|
1519
1519
|
email?: string;
|
|
1520
1520
|
} | null;
|
|
1521
1521
|
logoUrl?: string;
|
|
1522
|
-
labels?:
|
|
1522
|
+
labels?: PartnerRegistrationCompleteEmailLabels;
|
|
1523
1523
|
className?: string;
|
|
1524
1524
|
}
|
|
1525
|
-
interface
|
|
1525
|
+
interface PartnerRegistrationCompleteEmailLabels {
|
|
1526
1526
|
logoAlt?: string;
|
|
1527
1527
|
greeting?: (partnerName: string) => string;
|
|
1528
1528
|
/** Cenário 1 (all_done). Recebe (adventureName, dateRange). */
|
|
@@ -1542,12 +1542,12 @@ interface PartnerConfirmationEmailLabels {
|
|
|
1542
1542
|
expectationsEmptyAnswer?: string;
|
|
1543
1543
|
pdfNote?: string;
|
|
1544
1544
|
/** Closing principal quando há agente. Recebe nome + URLs e retorna JSX. */
|
|
1545
|
-
closingAgent?: (agentName: string, contact:
|
|
1545
|
+
closingAgent?: (agentName: string, contact: PartnerRegistrationCompleteAgentContactLinks) => React.ReactNode;
|
|
1546
1546
|
/** Closing alternativo sem agente. */
|
|
1547
1547
|
closingNoAgent?: string;
|
|
1548
1548
|
teamSignature?: string;
|
|
1549
1549
|
}
|
|
1550
|
-
declare function
|
|
1550
|
+
declare function PartnerRegistrationCompleteEmail({ scenario, topNotice, partnerName, bookingNumber, adventureName, dateRange, travellersCount, expectations, pdfAttached, agent, logoUrl, labels, className, }: PartnerRegistrationCompleteEmailProps): react_jsx_runtime.JSX.Element;
|
|
1551
1551
|
|
|
1552
1552
|
interface PartnerBookingCreatedAgentContactLinks {
|
|
1553
1553
|
whatsappUrl?: string;
|
|
@@ -1564,6 +1564,8 @@ interface PartnerBookingCreatedEmailProps {
|
|
|
1564
1564
|
dateRange: string;
|
|
1565
1565
|
/** Viajantes DESTA aventura. */
|
|
1566
1566
|
travellersCount: number;
|
|
1567
|
+
/** Opcionais já formatados pelo backend (regra ×N aplicada). Vazio/undefined → row omitida. */
|
|
1568
|
+
optionals?: string[];
|
|
1567
1569
|
/** Booker: nome completo + país (exibidos no topo do Booking Summary). */
|
|
1568
1570
|
booker: {
|
|
1569
1571
|
name: string;
|
|
@@ -1592,6 +1594,8 @@ interface PartnerBookingCreatedEmailLabels {
|
|
|
1592
1594
|
adventureLabel?: string;
|
|
1593
1595
|
datesLabel?: string;
|
|
1594
1596
|
numberOfPeopleLabel?: string;
|
|
1597
|
+
/** Label da row "Optionals" no Booking Summary. */
|
|
1598
|
+
optionalsLabel?: string;
|
|
1595
1599
|
/** Aviso (linha 1) antes do closing — sempre visível. */
|
|
1596
1600
|
registrationPendingNotice?: string;
|
|
1597
1601
|
/** Aviso (linha 2, enfatizado) antes do closing — sempre visível. */
|
|
@@ -1602,7 +1606,7 @@ interface PartnerBookingCreatedEmailLabels {
|
|
|
1602
1606
|
closingNoAgent?: string;
|
|
1603
1607
|
teamSignature?: string;
|
|
1604
1608
|
}
|
|
1605
|
-
declare function PartnerBookingCreatedEmail({ topNotice, partnerName, bookingNumber, adventureName, dateRange, travellersCount, booker, agent, logoUrl, labels, className, }: PartnerBookingCreatedEmailProps): react_jsx_runtime.JSX.Element;
|
|
1609
|
+
declare function PartnerBookingCreatedEmail({ topNotice, partnerName, bookingNumber, adventureName, dateRange, travellersCount, optionals, booker, agent, logoUrl, labels, className, }: PartnerBookingCreatedEmailProps): react_jsx_runtime.JSX.Element;
|
|
1606
1610
|
|
|
1607
1611
|
interface PaymentReceiptEmailLabels {
|
|
1608
1612
|
logoAlt?: string;
|
|
@@ -2885,8 +2889,21 @@ interface TripPageProps {
|
|
|
2885
2889
|
weather?: React.ReactNode;
|
|
2886
2890
|
optionalExtras?: React.ReactNode;
|
|
2887
2891
|
accommodation?: React.ReactNode;
|
|
2892
|
+
/**
|
|
2893
|
+
* Photos rendered inside the Accommodation accordion below the WYSIWYG
|
|
2894
|
+
* body. Same shape as the main full-width `gallery` prop. When provided
|
|
2895
|
+
* with `accommodation` omitted, the accordion still opens to show just
|
|
2896
|
+
* the photos.
|
|
2897
|
+
*/
|
|
2898
|
+
accommodationGallery?: PhotoGalleryPhoto[];
|
|
2888
2899
|
whenItOperates?: React.ReactNode;
|
|
2889
2900
|
food?: React.ReactNode;
|
|
2901
|
+
/**
|
|
2902
|
+
* Photos rendered inside the Food accordion below the WYSIWYG body.
|
|
2903
|
+
* Same shape as the main full-width `gallery` prop. When provided with
|
|
2904
|
+
* `food` omitted, the accordion still opens to show just the photos.
|
|
2905
|
+
*/
|
|
2906
|
+
foodGallery?: PhotoGalleryPhoto[];
|
|
2890
2907
|
termsAndConditions?: React.ReactNode;
|
|
2891
2908
|
meetingPoints?: TripMeetingPoint[];
|
|
2892
2909
|
/**
|
|
@@ -2955,7 +2972,7 @@ interface TripPageProps {
|
|
|
2955
2972
|
features?: Record<string, boolean>;
|
|
2956
2973
|
className?: string;
|
|
2957
2974
|
}
|
|
2958
|
-
declare function TripPage({ title, tagline, destination, duration, images, videoUrl, breadcrumb, chips, highlights, howToGetThere, recommendedFor, overview, overviewHighlights, itinerary, itineraryDays, gallery, included, notIncluded, whatToBring, weather, optionalExtras, accommodation, whenItOperates, food, termsAndConditions, meetingPoints, meetingPoint, faqs, faqInitialCount, sectionIcons, labels, reviews, trustpilot, trustpilotMini, trustpilotHero, priceFrom, currency, season, departureTimes, benefits, currencyEstimates, priceInfo, onBook, bookLabel, siteHeader, uiVariant, features, className, }: TripPageProps): react_jsx_runtime.JSX.Element;
|
|
2975
|
+
declare function TripPage({ title, tagline, destination, duration, images, videoUrl, breadcrumb, chips, highlights, howToGetThere, recommendedFor, overview, overviewHighlights, itinerary, itineraryDays, gallery, included, notIncluded, whatToBring, weather, optionalExtras, accommodation, accommodationGallery, whenItOperates, food, foodGallery, termsAndConditions, meetingPoints, meetingPoint, faqs, faqInitialCount, sectionIcons, labels, reviews, trustpilot, trustpilotMini, trustpilotHero, priceFrom, currency, season, departureTimes, benefits, currencyEstimates, priceInfo, onBook, bookLabel, siteHeader, uiVariant, features, className, }: TripPageProps): react_jsx_runtime.JSX.Element;
|
|
2959
2976
|
|
|
2960
2977
|
type ActivityCardSize = "sm" | "md" | "lg";
|
|
2961
2978
|
interface ActivityCardProps {
|
|
@@ -3453,4 +3470,4 @@ declare function LeadCapturePopup({ config: _config, }: {
|
|
|
3453
3470
|
config: LeadCapturePopupConfig;
|
|
3454
3471
|
}): react_jsx_runtime.JSX.Element | null;
|
|
3455
3472
|
|
|
3456
|
-
export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, 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 ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, 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, 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 PartnerBookingCreatedAgentContactLinks, PartnerBookingCreatedEmail, type PartnerBookingCreatedEmailLabels, type PartnerBookingCreatedEmailProps, type
|
|
3473
|
+
export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, 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 ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, 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, 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 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, 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, 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, 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, wrapEmailHtml };
|
package/dist/index.d.ts
CHANGED
|
@@ -1488,15 +1488,15 @@ interface RegistrationReminderIndividualEmailProps {
|
|
|
1488
1488
|
}
|
|
1489
1489
|
declare function RegistrationReminderIndividualEmail({ slug, recipientFirstName, travellerFirstName, leadTravellerName, leadTravellerFirstName, bookingNumber, adventureName, startDateFormatted, partnerName, ctaUrl, route, agent, logoUrl, labels, className, }: RegistrationReminderIndividualEmailProps): react_jsx_runtime.JSX.Element;
|
|
1490
1490
|
|
|
1491
|
-
interface
|
|
1491
|
+
interface PartnerRegistrationCompleteAgentContactLinks {
|
|
1492
1492
|
whatsappUrl?: string;
|
|
1493
1493
|
email?: string;
|
|
1494
1494
|
}
|
|
1495
|
-
interface
|
|
1495
|
+
interface PartnerRegistrationCompleteEmailExpectationRow {
|
|
1496
1496
|
travellerName: string;
|
|
1497
1497
|
answer: string | null;
|
|
1498
1498
|
}
|
|
1499
|
-
interface
|
|
1499
|
+
interface PartnerRegistrationCompleteEmailProps {
|
|
1500
1500
|
scenario: "all_done" | "d_minus_7";
|
|
1501
1501
|
locale: "en" | "pt" | "fr" | "de";
|
|
1502
1502
|
/** Aviso de topo opcional (banner âmbar). Texto já localizado pelo backend. */
|
|
@@ -1510,7 +1510,7 @@ interface PartnerConfirmationEmailProps {
|
|
|
1510
1510
|
/** Seção Travellers Expectations. hasSection=false → nenhum campo marcado no form. */
|
|
1511
1511
|
expectations: {
|
|
1512
1512
|
hasSection: boolean;
|
|
1513
|
-
rows:
|
|
1513
|
+
rows: PartnerRegistrationCompleteEmailExpectationRow[];
|
|
1514
1514
|
};
|
|
1515
1515
|
pdfAttached: boolean;
|
|
1516
1516
|
agent: {
|
|
@@ -1519,10 +1519,10 @@ interface PartnerConfirmationEmailProps {
|
|
|
1519
1519
|
email?: string;
|
|
1520
1520
|
} | null;
|
|
1521
1521
|
logoUrl?: string;
|
|
1522
|
-
labels?:
|
|
1522
|
+
labels?: PartnerRegistrationCompleteEmailLabels;
|
|
1523
1523
|
className?: string;
|
|
1524
1524
|
}
|
|
1525
|
-
interface
|
|
1525
|
+
interface PartnerRegistrationCompleteEmailLabels {
|
|
1526
1526
|
logoAlt?: string;
|
|
1527
1527
|
greeting?: (partnerName: string) => string;
|
|
1528
1528
|
/** Cenário 1 (all_done). Recebe (adventureName, dateRange). */
|
|
@@ -1542,12 +1542,12 @@ interface PartnerConfirmationEmailLabels {
|
|
|
1542
1542
|
expectationsEmptyAnswer?: string;
|
|
1543
1543
|
pdfNote?: string;
|
|
1544
1544
|
/** Closing principal quando há agente. Recebe nome + URLs e retorna JSX. */
|
|
1545
|
-
closingAgent?: (agentName: string, contact:
|
|
1545
|
+
closingAgent?: (agentName: string, contact: PartnerRegistrationCompleteAgentContactLinks) => React.ReactNode;
|
|
1546
1546
|
/** Closing alternativo sem agente. */
|
|
1547
1547
|
closingNoAgent?: string;
|
|
1548
1548
|
teamSignature?: string;
|
|
1549
1549
|
}
|
|
1550
|
-
declare function
|
|
1550
|
+
declare function PartnerRegistrationCompleteEmail({ scenario, topNotice, partnerName, bookingNumber, adventureName, dateRange, travellersCount, expectations, pdfAttached, agent, logoUrl, labels, className, }: PartnerRegistrationCompleteEmailProps): react_jsx_runtime.JSX.Element;
|
|
1551
1551
|
|
|
1552
1552
|
interface PartnerBookingCreatedAgentContactLinks {
|
|
1553
1553
|
whatsappUrl?: string;
|
|
@@ -1564,6 +1564,8 @@ interface PartnerBookingCreatedEmailProps {
|
|
|
1564
1564
|
dateRange: string;
|
|
1565
1565
|
/** Viajantes DESTA aventura. */
|
|
1566
1566
|
travellersCount: number;
|
|
1567
|
+
/** Opcionais já formatados pelo backend (regra ×N aplicada). Vazio/undefined → row omitida. */
|
|
1568
|
+
optionals?: string[];
|
|
1567
1569
|
/** Booker: nome completo + país (exibidos no topo do Booking Summary). */
|
|
1568
1570
|
booker: {
|
|
1569
1571
|
name: string;
|
|
@@ -1592,6 +1594,8 @@ interface PartnerBookingCreatedEmailLabels {
|
|
|
1592
1594
|
adventureLabel?: string;
|
|
1593
1595
|
datesLabel?: string;
|
|
1594
1596
|
numberOfPeopleLabel?: string;
|
|
1597
|
+
/** Label da row "Optionals" no Booking Summary. */
|
|
1598
|
+
optionalsLabel?: string;
|
|
1595
1599
|
/** Aviso (linha 1) antes do closing — sempre visível. */
|
|
1596
1600
|
registrationPendingNotice?: string;
|
|
1597
1601
|
/** Aviso (linha 2, enfatizado) antes do closing — sempre visível. */
|
|
@@ -1602,7 +1606,7 @@ interface PartnerBookingCreatedEmailLabels {
|
|
|
1602
1606
|
closingNoAgent?: string;
|
|
1603
1607
|
teamSignature?: string;
|
|
1604
1608
|
}
|
|
1605
|
-
declare function PartnerBookingCreatedEmail({ topNotice, partnerName, bookingNumber, adventureName, dateRange, travellersCount, booker, agent, logoUrl, labels, className, }: PartnerBookingCreatedEmailProps): react_jsx_runtime.JSX.Element;
|
|
1609
|
+
declare function PartnerBookingCreatedEmail({ topNotice, partnerName, bookingNumber, adventureName, dateRange, travellersCount, optionals, booker, agent, logoUrl, labels, className, }: PartnerBookingCreatedEmailProps): react_jsx_runtime.JSX.Element;
|
|
1606
1610
|
|
|
1607
1611
|
interface PaymentReceiptEmailLabels {
|
|
1608
1612
|
logoAlt?: string;
|
|
@@ -2885,8 +2889,21 @@ interface TripPageProps {
|
|
|
2885
2889
|
weather?: React.ReactNode;
|
|
2886
2890
|
optionalExtras?: React.ReactNode;
|
|
2887
2891
|
accommodation?: React.ReactNode;
|
|
2892
|
+
/**
|
|
2893
|
+
* Photos rendered inside the Accommodation accordion below the WYSIWYG
|
|
2894
|
+
* body. Same shape as the main full-width `gallery` prop. When provided
|
|
2895
|
+
* with `accommodation` omitted, the accordion still opens to show just
|
|
2896
|
+
* the photos.
|
|
2897
|
+
*/
|
|
2898
|
+
accommodationGallery?: PhotoGalleryPhoto[];
|
|
2888
2899
|
whenItOperates?: React.ReactNode;
|
|
2889
2900
|
food?: React.ReactNode;
|
|
2901
|
+
/**
|
|
2902
|
+
* Photos rendered inside the Food accordion below the WYSIWYG body.
|
|
2903
|
+
* Same shape as the main full-width `gallery` prop. When provided with
|
|
2904
|
+
* `food` omitted, the accordion still opens to show just the photos.
|
|
2905
|
+
*/
|
|
2906
|
+
foodGallery?: PhotoGalleryPhoto[];
|
|
2890
2907
|
termsAndConditions?: React.ReactNode;
|
|
2891
2908
|
meetingPoints?: TripMeetingPoint[];
|
|
2892
2909
|
/**
|
|
@@ -2955,7 +2972,7 @@ interface TripPageProps {
|
|
|
2955
2972
|
features?: Record<string, boolean>;
|
|
2956
2973
|
className?: string;
|
|
2957
2974
|
}
|
|
2958
|
-
declare function TripPage({ title, tagline, destination, duration, images, videoUrl, breadcrumb, chips, highlights, howToGetThere, recommendedFor, overview, overviewHighlights, itinerary, itineraryDays, gallery, included, notIncluded, whatToBring, weather, optionalExtras, accommodation, whenItOperates, food, termsAndConditions, meetingPoints, meetingPoint, faqs, faqInitialCount, sectionIcons, labels, reviews, trustpilot, trustpilotMini, trustpilotHero, priceFrom, currency, season, departureTimes, benefits, currencyEstimates, priceInfo, onBook, bookLabel, siteHeader, uiVariant, features, className, }: TripPageProps): react_jsx_runtime.JSX.Element;
|
|
2975
|
+
declare function TripPage({ title, tagline, destination, duration, images, videoUrl, breadcrumb, chips, highlights, howToGetThere, recommendedFor, overview, overviewHighlights, itinerary, itineraryDays, gallery, included, notIncluded, whatToBring, weather, optionalExtras, accommodation, accommodationGallery, whenItOperates, food, foodGallery, termsAndConditions, meetingPoints, meetingPoint, faqs, faqInitialCount, sectionIcons, labels, reviews, trustpilot, trustpilotMini, trustpilotHero, priceFrom, currency, season, departureTimes, benefits, currencyEstimates, priceInfo, onBook, bookLabel, siteHeader, uiVariant, features, className, }: TripPageProps): react_jsx_runtime.JSX.Element;
|
|
2959
2976
|
|
|
2960
2977
|
type ActivityCardSize = "sm" | "md" | "lg";
|
|
2961
2978
|
interface ActivityCardProps {
|
|
@@ -3453,4 +3470,4 @@ declare function LeadCapturePopup({ config: _config, }: {
|
|
|
3453
3470
|
config: LeadCapturePopupConfig;
|
|
3454
3471
|
}): react_jsx_runtime.JSX.Element | null;
|
|
3455
3472
|
|
|
3456
|
-
export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, 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 ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, 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, 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 PartnerBookingCreatedAgentContactLinks, PartnerBookingCreatedEmail, type PartnerBookingCreatedEmailLabels, type PartnerBookingCreatedEmailProps, type
|
|
3473
|
+
export { ActivityCard, type ActivityCardProps, type ActivityCardSize, AgentContactCard, type AgentContactCardProps, Alert, type AlertProps, type AlertVariant, 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 ConfirmationAdventure, type ConfirmationDepositInfo, type ConfirmationLineItem, type ConfirmationTraveller, CounterField, type CounterFieldProps, type CountryOption, CountrySearchField, type CountrySearchFieldProps, type CurrencyEstimate, 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, 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 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, 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, 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, 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, wrapEmailHtml };
|
package/dist/index.js
CHANGED
|
@@ -6187,7 +6187,7 @@ var DEFAULT_LABELS8 = {
|
|
|
6187
6187
|
function hasText4(s) {
|
|
6188
6188
|
return typeof s === "string" && s.trim().length > 0;
|
|
6189
6189
|
}
|
|
6190
|
-
function
|
|
6190
|
+
function PartnerRegistrationCompleteEmail({
|
|
6191
6191
|
scenario,
|
|
6192
6192
|
topNotice,
|
|
6193
6193
|
partnerName,
|
|
@@ -6373,6 +6373,7 @@ var DEFAULT_LABELS9 = {
|
|
|
6373
6373
|
adventureLabel: "Adventure",
|
|
6374
6374
|
datesLabel: "Dates",
|
|
6375
6375
|
numberOfPeopleLabel: "Number of Travellers",
|
|
6376
|
+
optionalsLabel: "Optionals",
|
|
6376
6377
|
registrationPendingNotice: "The travellers' registration details will be sent to you as soon as all travellers have completed their forms.",
|
|
6377
6378
|
mustReplyToConfirm: "Please reply to this email to confirm the booking.",
|
|
6378
6379
|
closingAgent: (agentName, contact) => /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
@@ -6395,6 +6396,7 @@ function PartnerBookingCreatedEmail({
|
|
|
6395
6396
|
adventureName,
|
|
6396
6397
|
dateRange,
|
|
6397
6398
|
travellersCount,
|
|
6399
|
+
optionals,
|
|
6398
6400
|
booker,
|
|
6399
6401
|
agent,
|
|
6400
6402
|
logoUrl,
|
|
@@ -6408,7 +6410,8 @@ function PartnerBookingCreatedEmail({
|
|
|
6408
6410
|
{ label: l.bookingNumberLabel, value: `#${bookingNumber}`, valueColor: emailTokens.primary },
|
|
6409
6411
|
{ label: l.adventureLabel, value: adventureName },
|
|
6410
6412
|
{ label: l.datesLabel, value: dateRange },
|
|
6411
|
-
{ label: l.numberOfPeopleLabel, value: travellersCount }
|
|
6413
|
+
{ label: l.numberOfPeopleLabel, value: travellersCount },
|
|
6414
|
+
...optionals && optionals.length ? [{ label: l.optionalsLabel, value: optionals.join("\n") }] : []
|
|
6412
6415
|
];
|
|
6413
6416
|
const sectionDivider = /* @__PURE__ */ jsx(
|
|
6414
6417
|
"hr",
|
|
@@ -12857,8 +12860,10 @@ function TripPage({
|
|
|
12857
12860
|
weather,
|
|
12858
12861
|
optionalExtras,
|
|
12859
12862
|
accommodation,
|
|
12863
|
+
accommodationGallery,
|
|
12860
12864
|
whenItOperates,
|
|
12861
12865
|
food,
|
|
12866
|
+
foodGallery,
|
|
12862
12867
|
termsAndConditions,
|
|
12863
12868
|
meetingPoints,
|
|
12864
12869
|
meetingPoint,
|
|
@@ -12926,7 +12931,7 @@ function TripPage({
|
|
|
12926
12931
|
{ id: "included", label: (_c2 = labels == null ? void 0 : labels.whatIsIncluded) != null ? _c2 : "What is Included", show: !!(included == null ? void 0 : included.length) },
|
|
12927
12932
|
{ id: "what-to-bring", label: (_d2 = labels == null ? void 0 : labels.whatToBring) != null ? _d2 : "What to Bring", show: !!(whatToBring == null ? void 0 : whatToBring.length) },
|
|
12928
12933
|
{ id: "when-it-operates", label: (_e2 = labels == null ? void 0 : labels.whenItOperates) != null ? _e2 : "When this tour operates", show: !!whenItOperates },
|
|
12929
|
-
{ id: "accommodation", label: (_f2 = labels == null ? void 0 : labels.accommodation) != null ? _f2 : "Accommodation", show: !!accommodation },
|
|
12934
|
+
{ id: "accommodation", label: (_f2 = labels == null ? void 0 : labels.accommodation) != null ? _f2 : "Accommodation", show: !!(accommodation || (accommodationGallery == null ? void 0 : accommodationGallery.length)) },
|
|
12930
12935
|
{ id: "terms", label: (_g2 = labels == null ? void 0 : labels.terms) != null ? _g2 : "Terms", show: !!termsAndConditions },
|
|
12931
12936
|
{ id: "faq", label: (_h2 = labels == null ? void 0 : labels.faq) != null ? _h2 : "FAQ", show: !!(faqs == null ? void 0 : faqs.length) },
|
|
12932
12937
|
{ id: "reviews", label: (_i2 = labels == null ? void 0 : labels.reviews) != null ? _i2 : "Reviews", show: !!(trustpilot || (reviews == null ? void 0 : reviews.length)) }
|
|
@@ -13137,7 +13142,7 @@ function TripPage({
|
|
|
13137
13142
|
}
|
|
13138
13143
|
)
|
|
13139
13144
|
] }),
|
|
13140
|
-
(howToGetThere || (whatToBring == null ? void 0 : whatToBring.length) || weather || optionalExtras || accommodation || food || (meetingPoints == null ? void 0 : meetingPoints.length) || meetingPoint || termsAndConditions || whenItOperates) && /* @__PURE__ */ jsxs(
|
|
13145
|
+
(howToGetThere || (whatToBring == null ? void 0 : whatToBring.length) || weather || optionalExtras || accommodation || (accommodationGallery == null ? void 0 : accommodationGallery.length) || food || (foodGallery == null ? void 0 : foodGallery.length) || (meetingPoints == null ? void 0 : meetingPoints.length) || meetingPoint || termsAndConditions || whenItOperates) && /* @__PURE__ */ jsxs(
|
|
13141
13146
|
Accordion,
|
|
13142
13147
|
{
|
|
13143
13148
|
multiple: false,
|
|
@@ -13160,7 +13165,7 @@ function TripPage({
|
|
|
13160
13165
|
]
|
|
13161
13166
|
}
|
|
13162
13167
|
),
|
|
13163
|
-
accommodation && /* @__PURE__ */ jsxs(
|
|
13168
|
+
(accommodation || accommodationGallery && accommodationGallery.length > 0) && /* @__PURE__ */ jsxs(
|
|
13164
13169
|
AccordionItem,
|
|
13165
13170
|
{
|
|
13166
13171
|
value: "accommodation",
|
|
@@ -13171,11 +13176,21 @@ function TripPage({
|
|
|
13171
13176
|
(sectionIcons == null ? void 0 : sectionIcons.accommodation) ? /* @__PURE__ */ jsx("span", { className: "text-primary [&>svg]:h-5 [&>svg]:w-5", children: sectionIcons.accommodation }) : /* @__PURE__ */ jsx(BedDoubleIcon, { className: "h-5 w-5 text-primary" }),
|
|
13172
13177
|
(_g = labels == null ? void 0 : labels.accommodation) != null ? _g : "Accommodation"
|
|
13173
13178
|
] }) }),
|
|
13174
|
-
/* @__PURE__ */
|
|
13179
|
+
/* @__PURE__ */ jsxs(AccordionContent, { className: "pb-6", children: [
|
|
13180
|
+
accommodation && /* @__PURE__ */ jsx("div", { className: "text-base text-foreground leading-relaxed space-y-3 [&_strong]:font-semibold [&_a]:text-primary [&_a]:underline", children: accommodation }),
|
|
13181
|
+
accommodationGallery && accommodationGallery.length > 0 && /* @__PURE__ */ jsx("div", { className: cn(accommodation && "mt-6"), children: /* @__PURE__ */ jsx(
|
|
13182
|
+
PhotoGallery,
|
|
13183
|
+
{
|
|
13184
|
+
photos: accommodationGallery,
|
|
13185
|
+
variant: "gridCompact",
|
|
13186
|
+
initialVisible: 6
|
|
13187
|
+
}
|
|
13188
|
+
) })
|
|
13189
|
+
] })
|
|
13175
13190
|
]
|
|
13176
13191
|
}
|
|
13177
13192
|
),
|
|
13178
|
-
food && /* @__PURE__ */ jsxs(
|
|
13193
|
+
(food || foodGallery && foodGallery.length > 0) && /* @__PURE__ */ jsxs(
|
|
13179
13194
|
AccordionItem,
|
|
13180
13195
|
{
|
|
13181
13196
|
value: "food",
|
|
@@ -13186,7 +13201,17 @@ function TripPage({
|
|
|
13186
13201
|
(sectionIcons == null ? void 0 : sectionIcons.food) ? /* @__PURE__ */ jsx("span", { className: "text-primary [&>svg]:h-5 [&>svg]:w-5", children: sectionIcons.food }) : /* @__PURE__ */ jsx(UtensilsIcon, { className: "h-5 w-5 text-primary" }),
|
|
13187
13202
|
(_h = labels == null ? void 0 : labels.food) != null ? _h : "Food"
|
|
13188
13203
|
] }) }),
|
|
13189
|
-
/* @__PURE__ */
|
|
13204
|
+
/* @__PURE__ */ jsxs(AccordionContent, { className: "pb-6", children: [
|
|
13205
|
+
food && /* @__PURE__ */ jsx("div", { className: "text-base text-foreground leading-relaxed space-y-3 [&_strong]:font-semibold [&_a]:text-primary [&_a]:underline", children: food }),
|
|
13206
|
+
foodGallery && foodGallery.length > 0 && /* @__PURE__ */ jsx("div", { className: cn(food && "mt-6"), children: /* @__PURE__ */ jsx(
|
|
13207
|
+
PhotoGallery,
|
|
13208
|
+
{
|
|
13209
|
+
photos: foodGallery,
|
|
13210
|
+
variant: "gridCompact",
|
|
13211
|
+
initialVisible: 6
|
|
13212
|
+
}
|
|
13213
|
+
) })
|
|
13214
|
+
] })
|
|
13190
13215
|
]
|
|
13191
13216
|
}
|
|
13192
13217
|
),
|
|
@@ -14246,6 +14271,6 @@ function LeadCapturePopup({
|
|
|
14246
14271
|
);
|
|
14247
14272
|
}
|
|
14248
14273
|
|
|
14249
|
-
export { ActivityCard, AgentContactCard, Alert, BirthDateField, BookingAdventureCard, BookingCancellationEmail, BookingConfirmedCard, BookingCreatedEmail, BookingDetails, BookingForm, BookingOtpEmail, BookingPaymentConfirmationEmail, BookingShell, BookingSummary, Button, COUNTRIES, CounterField, CountrySearchField, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, FilterPanel, FloatingInput, FloatingSelect, Itinerary, ItineraryDay, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, MenuTrip, OTPCodeInput, Offer, OfferAdventureCard, PartnerBookingCreatedEmail,
|
|
14274
|
+
export { ActivityCard, AgentContactCard, Alert, BirthDateField, BookingAdventureCard, BookingCancellationEmail, BookingConfirmedCard, BookingCreatedEmail, BookingDetails, BookingForm, BookingOtpEmail, BookingPaymentConfirmationEmail, BookingShell, BookingSummary, Button, COUNTRIES, CounterField, CountrySearchField, DEFAULT_HEADER_LINKS, DEFAULT_LANGUAGES, DatePickerField, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, FilterPanel, FloatingInput, FloatingSelect, Itinerary, ItineraryDay, LOGO_PLANETAEXO_DATA_URI, LeadCapturePopup, MenuTrip, OTPCodeInput, Offer, OfferAdventureCard, PartnerBookingCreatedEmail, PartnerRegistrationCompleteEmail, PaymentAmountSelector, PaymentDetailsBlock, PaymentMethodSelector, PaymentModalShell, PaymentReceiptEmail, PaymentReminderEmail, PhoneCountrySelect, PhotoGallery, PricingTrip, RegistrationForm, RegistrationProgressBar, RegistrationReminderEmail, RegistrationReminderIndividualEmail, RegistrationSuccessCard, SiteHeader, TERMS_ACCEPT_KEY, TermsSection, ThemeToggle, Toast, TransferDetailsBlock, TravellerFormInviteEmail, TripCard, TripHeader, TripPage, TrustpilotEmbed, buttonVariants, cn, emailTokens, formatCpf, getStripeAppearance, itineraryDaySpecIcons, stripeAppearance, validateCpf, wrapEmailHtml };
|
|
14250
14275
|
//# sourceMappingURL=index.js.map
|
|
14251
14276
|
//# sourceMappingURL=index.js.map
|