@loafmarkets/ui 0.1.310 → 0.1.311

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
@@ -12016,16 +12016,16 @@ function OfferingProgressCard({
12016
12016
  countdown ? /* @__PURE__ */ jsxRuntime.jsxs(CountdownCenter, { children: [
12017
12017
  /* @__PURE__ */ jsxRuntime.jsx(CountdownLabel, { children: isPrivateClient ? "Public Offering In" : "Opens In" }),
12018
12018
  /* @__PURE__ */ jsxRuntime.jsxs(CountdownDigits, { children: [
12019
- /* @__PURE__ */ jsxRuntime.jsx(CountdownNumber, { children: String(countdown.days).padStart(2, "0") }),
12019
+ /* @__PURE__ */ jsxRuntime.jsx(CountdownNumber, { children: /* @__PURE__ */ jsxRuntime.jsx(SlideDigit, { value: String(countdown.days).padStart(2, "0") }) }),
12020
12020
  /* @__PURE__ */ jsxRuntime.jsx(CountdownUnitLabel, { children: "D" }),
12021
12021
  /* @__PURE__ */ jsxRuntime.jsx(CountdownSeparator, { children: ":" }),
12022
- /* @__PURE__ */ jsxRuntime.jsx(CountdownNumber, { children: String(countdown.hours).padStart(2, "0") }),
12022
+ /* @__PURE__ */ jsxRuntime.jsx(CountdownNumber, { children: /* @__PURE__ */ jsxRuntime.jsx(SlideDigit, { value: String(countdown.hours).padStart(2, "0") }) }),
12023
12023
  /* @__PURE__ */ jsxRuntime.jsx(CountdownUnitLabel, { children: "H" }),
12024
12024
  /* @__PURE__ */ jsxRuntime.jsx(CountdownSeparator, { children: ":" }),
12025
- /* @__PURE__ */ jsxRuntime.jsx(CountdownNumber, { children: String(countdown.minutes).padStart(2, "0") }),
12025
+ /* @__PURE__ */ jsxRuntime.jsx(CountdownNumber, { children: /* @__PURE__ */ jsxRuntime.jsx(SlideDigit, { value: String(countdown.minutes).padStart(2, "0") }) }),
12026
12026
  /* @__PURE__ */ jsxRuntime.jsx(CountdownUnitLabel, { children: "M" }),
12027
12027
  /* @__PURE__ */ jsxRuntime.jsx(CountdownSeparator, { children: ":" }),
12028
- /* @__PURE__ */ jsxRuntime.jsx(CountdownNumber, { children: String(countdown.seconds).padStart(2, "0") }),
12028
+ /* @__PURE__ */ jsxRuntime.jsx(CountdownNumber, { children: /* @__PURE__ */ jsxRuntime.jsx(SlideDigit, { value: String(countdown.seconds).padStart(2, "0") }) }),
12029
12029
  /* @__PURE__ */ jsxRuntime.jsx(CountdownUnitLabel, { children: "S" })
12030
12030
  ] })
12031
12031
  ] }) : /* @__PURE__ */ jsxRuntime.jsx(PreLiveStatus, { $statusColor: statusColor, children: "Sale Not Yet Open" }),