@planetaexo/design-system 0.12.2 → 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.cjs +7 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +7 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -4022,7 +4022,8 @@ function BookingConfirmationEmail({
|
|
|
4022
4022
|
labels,
|
|
4023
4023
|
className,
|
|
4024
4024
|
nextSteps,
|
|
4025
|
-
nextStepsImportant
|
|
4025
|
+
nextStepsImportant,
|
|
4026
|
+
directBookingLinkLabel
|
|
4026
4027
|
}) {
|
|
4027
4028
|
const l = __spreadValues(__spreadValues({}, DEFAULT_LABELS2), labels);
|
|
4028
4029
|
const ctaStyle = {
|
|
@@ -4101,6 +4102,11 @@ function BookingConfirmationEmail({
|
|
|
4101
4102
|
] }),
|
|
4102
4103
|
/* @__PURE__ */ jsxRuntime.jsx("hr", { style: { border: "none", borderTop: `1px solid ${emailTokens.border}`, marginBottom: "32px" } }),
|
|
4103
4104
|
/* @__PURE__ */ jsxRuntime.jsx("p", { style: { marginBottom: "16px" }, children: l.postCtaMessage }),
|
|
4105
|
+
addTravellersUrl && directBookingLinkLabel && directBookingLinkLabel.trim().length > 0 && /* @__PURE__ */ jsxRuntime.jsxs("p", { style: { marginBottom: "16px", fontSize: "14px", color: emailTokens.mutedForeground }, children: [
|
|
4106
|
+
directBookingLinkLabel,
|
|
4107
|
+
" ",
|
|
4108
|
+
/* @__PURE__ */ jsxRuntime.jsx("a", { href: addTravellersUrl, style: { color: emailTokens.primary, wordBreak: "break-all" }, children: addTravellersUrl })
|
|
4109
|
+
] }),
|
|
4104
4110
|
/* @__PURE__ */ jsxRuntime.jsx("p", { children: l.closingMessage })
|
|
4105
4111
|
]
|
|
4106
4112
|
}
|