@planetaexo/design-system 0.12.3 → 0.12.5

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.js CHANGED
@@ -3221,13 +3221,15 @@ function OrderSummary({
3221
3221
  ] }),
3222
3222
  /* @__PURE__ */ jsx("span", { className: "text-sm font-semibold text-foreground font-sans", children: depositInfo.depositAmount })
3223
3223
  ] }),
3224
- /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between", children: [
3225
- /* @__PURE__ */ jsx("span", { className: "text-sm text-muted-foreground font-sans", children: "Remaining balance" }),
3226
- /* @__PURE__ */ jsx("span", { className: "text-sm font-semibold text-foreground font-sans", children: depositInfo.remainingAmount })
3227
- ] }),
3228
- /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between", children: [
3229
- /* @__PURE__ */ jsx("span", { className: "text-sm text-muted-foreground font-sans", children: balanceDueLabel != null ? balanceDueLabel : "Balance due" }),
3230
- /* @__PURE__ */ jsx("span", { className: "text-sm font-semibold text-foreground font-sans", children: depositInfo.balanceDueDate })
3224
+ !depositInfo.isPaidInFull && /* @__PURE__ */ jsxs(Fragment, { children: [
3225
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between", children: [
3226
+ /* @__PURE__ */ jsx("span", { className: "text-sm text-muted-foreground font-sans", children: "Remaining balance" }),
3227
+ /* @__PURE__ */ jsx("span", { className: "text-sm font-semibold text-foreground font-sans", children: depositInfo.remainingAmount })
3228
+ ] }),
3229
+ /* @__PURE__ */ jsxs("div", { className: "flex items-center justify-between", children: [
3230
+ /* @__PURE__ */ jsx("span", { className: "text-sm text-muted-foreground font-sans", children: balanceDueLabel != null ? balanceDueLabel : "Balance due" }),
3231
+ /* @__PURE__ */ jsx("span", { className: "text-sm font-semibold text-foreground font-sans", children: depositInfo.balanceDueDate })
3232
+ ] })
3231
3233
  ] })
3232
3234
  ] })
3233
3235
  ] });
@@ -4075,7 +4077,7 @@ function BookingConfirmationEmail({
4075
4077
  /* @__PURE__ */ jsx("td", { style: { verticalAlign: "top" }, children: /* @__PURE__ */ jsx("p", { style: { fontSize: "14px", color: emailTokens.bodyText, lineHeight: "1.6", margin: 0 }, children: step }) })
4076
4078
  ] }) }) }, i)) }),
4077
4079
  nextStepsImportant && nextStepsImportant.trim().length > 0 && /* @__PURE__ */ jsx("p", { style: { marginBottom: "32px", fontSize: "14px", color: emailTokens.foreground, lineHeight: "1.6" }, children: nextStepsImportant.split("\n").map((line, idx, arr) => /* @__PURE__ */ jsxs(React23.Fragment, { children: [
4078
- line,
4080
+ idx === 0 ? /* @__PURE__ */ jsx("strong", { children: line }) : line,
4079
4081
  idx < arr.length - 1 ? /* @__PURE__ */ jsx("br", {}) : null
4080
4082
  ] }, idx)) })
4081
4083
  ] }),