@planetaexo/design-system 0.50.1 → 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 +6 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -10
- package/dist/index.d.ts +14 -10
- package/dist/index.js +6 -3
- 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;
|
|
@@ -3466,4 +3470,4 @@ declare function LeadCapturePopup({ config: _config, }: {
|
|
|
3466
3470
|
config: LeadCapturePopupConfig;
|
|
3467
3471
|
}): react_jsx_runtime.JSX.Element | null;
|
|
3468
3472
|
|
|
3469
|
-
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;
|
|
@@ -3466,4 +3470,4 @@ declare function LeadCapturePopup({ config: _config, }: {
|
|
|
3466
3470
|
config: LeadCapturePopupConfig;
|
|
3467
3471
|
}): react_jsx_runtime.JSX.Element | null;
|
|
3468
3472
|
|
|
3469
|
-
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",
|
|
@@ -14268,6 +14271,6 @@ function LeadCapturePopup({
|
|
|
14268
14271
|
);
|
|
14269
14272
|
}
|
|
14270
14273
|
|
|
14271
|
-
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 };
|
|
14272
14275
|
//# sourceMappingURL=index.js.map
|
|
14273
14276
|
//# sourceMappingURL=index.js.map
|