@loafmarkets/ui 0.1.158 → 0.1.159
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 +16 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8535,8 +8535,13 @@ function PropertyOverview({
|
|
|
8535
8535
|
const loadingSkeleton = /* @__PURE__ */ jsxRuntime.jsx(Skeleton, { width: 90, height: 18 });
|
|
8536
8536
|
const resolvedPropertyType = overviewData?.propertyType ?? propertyTypeLabel ?? null;
|
|
8537
8537
|
const galleryImages = images ?? [];
|
|
8538
|
+
const chainValue = /* @__PURE__ */ jsxRuntime.jsxs(ChainLogos, { children: [
|
|
8539
|
+
/* @__PURE__ */ jsxRuntime.jsx(ChainLogoImg, { src: "/Base-Symbol.png", alt: "Base" }),
|
|
8540
|
+
/* @__PURE__ */ jsxRuntime.jsx(ChainLogoImg, { src: "/Ethereum-Logo.png", alt: "Ethereum", style: { filter: "brightness(0) invert(1)" } }),
|
|
8541
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: chain })
|
|
8542
|
+
] });
|
|
8538
8543
|
const tokenDetailsItems = [
|
|
8539
|
-
{ label: "Chain", value:
|
|
8544
|
+
{ label: "Chain", value: chainValue },
|
|
8540
8545
|
{ label: "Contract Address", value: contractAddress ? truncateAddress(contractAddress) : "\u2014", mono: true, link: contractAddress ? `https://basescan.org/address/${contractAddress}` : void 0 },
|
|
8541
8546
|
{ label: "Token Ticker", value: ticker ?? "\u2014" },
|
|
8542
8547
|
{ label: "Total Tokens", value: isLoading && resolvedTokensIssued == null ? loadingSkeleton : resolvedTokensIssued?.toLocaleString() ?? "\u2014" },
|
|
@@ -9009,6 +9014,16 @@ var TokenDetailValue = styled9__default.default.span`
|
|
|
9009
9014
|
font-weight: 500;
|
|
9010
9015
|
font-family: ${(p) => p.$mono ? "'SF Mono', 'Fira Code', monospace" : "inherit"};
|
|
9011
9016
|
`;
|
|
9017
|
+
var ChainLogos = styled9__default.default.span`
|
|
9018
|
+
display: inline-flex;
|
|
9019
|
+
align-items: center;
|
|
9020
|
+
gap: 6px;
|
|
9021
|
+
`;
|
|
9022
|
+
var ChainLogoImg = styled9__default.default.img`
|
|
9023
|
+
height: 16px;
|
|
9024
|
+
width: auto;
|
|
9025
|
+
vertical-align: middle;
|
|
9026
|
+
`;
|
|
9012
9027
|
var StatsGrid = styled9__default.default.div`
|
|
9013
9028
|
display: grid;
|
|
9014
9029
|
grid-template-columns: 1fr 1fr;
|