@loafmarkets/ui 0.1.241 → 0.1.242

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.mjs CHANGED
@@ -2188,23 +2188,20 @@ function DesktopOrderbookLayout({
2188
2188
  ))
2189
2189
  }
2190
2190
  ),
2191
- /* @__PURE__ */ jsxs(
2191
+ /* @__PURE__ */ jsx(
2192
2192
  "div",
2193
2193
  {
2194
2194
  ref: midRef,
2195
- className: "grid grid-cols-2 items-center gap-3 bg-[#0b1a24] px-3 py-2 flex-shrink-0",
2196
- children: [
2197
- /* @__PURE__ */ jsx("div", { className: cn("text-lg font-semibold tabular-nums", midClass), children: isLoading ? /* @__PURE__ */ jsx(Skeleton, { width: 110, height: 20 }) : /* @__PURE__ */ jsxs(Fragment, { children: [
2198
- "$",
2199
- formatNumber(midPrice, precision),
2200
- midChangePercent == null ? null : /* @__PURE__ */ jsxs("span", { className: cn("ml-2 text-sm font-semibold tabular-nums", midClass), children: [
2201
- midChangePercent >= 0 ? "+" : "",
2202
- midChangePercent.toFixed(2),
2203
- "%"
2204
- ] })
2205
- ] }) }),
2206
- /* @__PURE__ */ jsx("div", {})
2207
- ]
2195
+ className: "flex items-center gap-2 bg-[#0b1a24] px-3 py-2 flex-shrink-0",
2196
+ children: /* @__PURE__ */ jsx("div", { className: cn("text-lg font-semibold tabular-nums whitespace-nowrap", midClass), children: isLoading ? /* @__PURE__ */ jsx(Skeleton, { width: 110, height: 20 }) : /* @__PURE__ */ jsxs(Fragment, { children: [
2197
+ "$",
2198
+ formatNumber(midPrice, precision),
2199
+ midChangePercent == null ? null : /* @__PURE__ */ jsxs("span", { className: cn("ml-2 text-sm font-semibold tabular-nums", midClass), children: [
2200
+ midChangePercent >= 0 ? "+" : "",
2201
+ midChangePercent.toFixed(2),
2202
+ "%"
2203
+ ] })
2204
+ ] }) })
2208
2205
  }
2209
2206
  ),
2210
2207
  /* @__PURE__ */ jsx(