@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.mjs
CHANGED
|
@@ -13852,10 +13852,7 @@ function PortfolioActivityPanel({
|
|
|
13852
13852
|
onPositionClick?.(pos.tokenName, pos.isIpoAllocation);
|
|
13853
13853
|
}, children: [
|
|
13854
13854
|
/* @__PURE__ */ jsx(CCellLabel, { children: "Asset" }),
|
|
13855
|
-
/* @__PURE__ */
|
|
13856
|
-
pos.imageUrl && /* @__PURE__ */ jsx(CAssetLogo, { src: pos.imageUrl, alt: "" }),
|
|
13857
|
-
pos.tokenName
|
|
13858
|
-
] })
|
|
13855
|
+
/* @__PURE__ */ jsx(CAssetName, { children: pos.tokenName })
|
|
13859
13856
|
] }),
|
|
13860
13857
|
/* @__PURE__ */ jsxs(CUnitsCell, { children: [
|
|
13861
13858
|
/* @__PURE__ */ jsx(CCellLabel, { children: "Units" }),
|
|
@@ -14861,7 +14858,7 @@ var CAssetName = styled9.div`
|
|
|
14861
14858
|
align-items: center;
|
|
14862
14859
|
gap: 0.3rem;
|
|
14863
14860
|
`;
|
|
14864
|
-
|
|
14861
|
+
styled9.img`
|
|
14865
14862
|
width: 22px;
|
|
14866
14863
|
height: 22px;
|
|
14867
14864
|
border-radius: 4px;
|
|
@@ -15003,7 +15000,7 @@ function PropertyBuy({
|
|
|
15003
15000
|
const ipoStatus = saleData?.status ?? "PENDING";
|
|
15004
15001
|
const ipoStarted = ipoStatus === "LIVE" || isPrivateClient && ipoStatus === "PENDING";
|
|
15005
15002
|
const ipoEnded = ipoStatus === "CLOSED" || ipoStatus === "CANCELLED";
|
|
15006
|
-
const statusLabel = ipoStatus;
|
|
15003
|
+
const statusLabel = ipoStatus === "PENDING" ? "Coming Soon" : ipoStatus;
|
|
15007
15004
|
const statusColor = STATUS_COLOR2[ipoStatus] ?? "#D4AF37";
|
|
15008
15005
|
const displayStatusLabel = isPrivateClient && ipoStatus !== "LIVE" ? "Private Client Access" : statusLabel;
|
|
15009
15006
|
const displayStatusColor = isPrivateClient && ipoStatus !== "LIVE" ? "#D4AF37" : statusColor;
|