@loafmarkets/ui 0.1.292 → 0.1.294
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 +3 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -13878,10 +13878,7 @@ function PortfolioActivityPanel({
|
|
|
13878
13878
|
onPositionClick?.(pos.tokenName, pos.isIpoAllocation);
|
|
13879
13879
|
}, children: [
|
|
13880
13880
|
/* @__PURE__ */ jsxRuntime.jsx(CCellLabel, { children: "Asset" }),
|
|
13881
|
-
/* @__PURE__ */ jsxRuntime.
|
|
13882
|
-
pos.imageUrl && /* @__PURE__ */ jsxRuntime.jsx(CAssetLogo, { src: pos.imageUrl, alt: "" }),
|
|
13883
|
-
pos.tokenName
|
|
13884
|
-
] })
|
|
13881
|
+
/* @__PURE__ */ jsxRuntime.jsx(CAssetName, { children: pos.tokenName })
|
|
13885
13882
|
] }),
|
|
13886
13883
|
/* @__PURE__ */ jsxRuntime.jsxs(CUnitsCell, { children: [
|
|
13887
13884
|
/* @__PURE__ */ jsxRuntime.jsx(CCellLabel, { children: "Units" }),
|
|
@@ -14887,7 +14884,7 @@ var CAssetName = styled9__default.default.div`
|
|
|
14887
14884
|
align-items: center;
|
|
14888
14885
|
gap: 0.3rem;
|
|
14889
14886
|
`;
|
|
14890
|
-
|
|
14887
|
+
styled9__default.default.img`
|
|
14891
14888
|
width: 22px;
|
|
14892
14889
|
height: 22px;
|
|
14893
14890
|
border-radius: 4px;
|
|
@@ -15029,7 +15026,7 @@ function PropertyBuy({
|
|
|
15029
15026
|
const ipoStatus = saleData?.status ?? "PENDING";
|
|
15030
15027
|
const ipoStarted = ipoStatus === "LIVE" || isPrivateClient && ipoStatus === "PENDING";
|
|
15031
15028
|
const ipoEnded = ipoStatus === "CLOSED" || ipoStatus === "CANCELLED";
|
|
15032
|
-
const statusLabel = ipoStatus;
|
|
15029
|
+
const statusLabel = ipoStatus === "PENDING" ? "Coming Soon" : ipoStatus;
|
|
15033
15030
|
const statusColor = STATUS_COLOR2[ipoStatus] ?? "#D4AF37";
|
|
15034
15031
|
const displayStatusLabel = isPrivateClient && ipoStatus !== "LIVE" ? "Private Client Access" : statusLabel;
|
|
15035
15032
|
const displayStatusColor = isPrivateClient && ipoStatus !== "LIVE" ? "#D4AF37" : statusColor;
|