@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.cjs
CHANGED
|
@@ -6208,7 +6208,7 @@ var DEFAULT_LABELS8 = {
|
|
|
6208
6208
|
function hasText4(s) {
|
|
6209
6209
|
return typeof s === "string" && s.trim().length > 0;
|
|
6210
6210
|
}
|
|
6211
|
-
function
|
|
6211
|
+
function PartnerRegistrationCompleteEmail({
|
|
6212
6212
|
scenario,
|
|
6213
6213
|
topNotice,
|
|
6214
6214
|
partnerName,
|
|
@@ -6394,6 +6394,7 @@ var DEFAULT_LABELS9 = {
|
|
|
6394
6394
|
adventureLabel: "Adventure",
|
|
6395
6395
|
datesLabel: "Dates",
|
|
6396
6396
|
numberOfPeopleLabel: "Number of Travellers",
|
|
6397
|
+
optionalsLabel: "Optionals",
|
|
6397
6398
|
registrationPendingNotice: "The travellers' registration details will be sent to you as soon as all travellers have completed their forms.",
|
|
6398
6399
|
mustReplyToConfirm: "Please reply to this email to confirm the booking.",
|
|
6399
6400
|
closingAgent: (agentName, contact) => /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
@@ -6416,6 +6417,7 @@ function PartnerBookingCreatedEmail({
|
|
|
6416
6417
|
adventureName,
|
|
6417
6418
|
dateRange,
|
|
6418
6419
|
travellersCount,
|
|
6420
|
+
optionals,
|
|
6419
6421
|
booker,
|
|
6420
6422
|
agent,
|
|
6421
6423
|
logoUrl,
|
|
@@ -6429,7 +6431,8 @@ function PartnerBookingCreatedEmail({
|
|
|
6429
6431
|
{ label: l.bookingNumberLabel, value: `#${bookingNumber}`, valueColor: emailTokens.primary },
|
|
6430
6432
|
{ label: l.adventureLabel, value: adventureName },
|
|
6431
6433
|
{ label: l.datesLabel, value: dateRange },
|
|
6432
|
-
{ label: l.numberOfPeopleLabel, value: travellersCount }
|
|
6434
|
+
{ label: l.numberOfPeopleLabel, value: travellersCount },
|
|
6435
|
+
...optionals && optionals.length ? [{ label: l.optionalsLabel, value: optionals.join("\n") }] : []
|
|
6433
6436
|
];
|
|
6434
6437
|
const sectionDivider = /* @__PURE__ */ jsxRuntime.jsx(
|
|
6435
6438
|
"hr",
|
|
@@ -14329,7 +14332,7 @@ exports.OTPCodeInput = OTPCodeInput;
|
|
|
14329
14332
|
exports.Offer = Offer;
|
|
14330
14333
|
exports.OfferAdventureCard = OfferAdventureCard;
|
|
14331
14334
|
exports.PartnerBookingCreatedEmail = PartnerBookingCreatedEmail;
|
|
14332
|
-
exports.
|
|
14335
|
+
exports.PartnerRegistrationCompleteEmail = PartnerRegistrationCompleteEmail;
|
|
14333
14336
|
exports.PaymentAmountSelector = PaymentAmountSelector;
|
|
14334
14337
|
exports.PaymentDetailsBlock = PaymentDetailsBlock;
|
|
14335
14338
|
exports.PaymentMethodSelector = PaymentMethodSelector;
|