@loafmarkets/ui 0.1.141 → 0.1.142

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
@@ -8341,7 +8341,7 @@ function PropertyOverview({
8341
8341
  const galleryImages = images ?? [];
8342
8342
  const tokenDetailsItems = [
8343
8343
  { label: "Chain", value: chain },
8344
- { label: "Contract Address", value: contractAddress ? truncateAddress(contractAddress) : "\u2014", mono: true },
8344
+ { label: "Contract Address", value: contractAddress ? truncateAddress(contractAddress) : "\u2014", mono: true, link: contractAddress ? `https://basescan.org/address/${contractAddress}` : void 0 },
8345
8345
  { label: "Token Ticker", value: ticker ?? "\u2014" },
8346
8346
  { label: "Total Tokens", value: isLoading && resolvedTokensIssued == null ? loadingSkeleton : resolvedTokensIssued?.toLocaleString() ?? "\u2014" },
8347
8347
  { label: "Percentage Tokenized", value: percentageTokenized != null ? `${percentageTokenized}%` : "\u2014" },
@@ -8378,7 +8378,7 @@ function PropertyOverview({
8378
8378
  /* @__PURE__ */ jsx(TokenDetailsTitle, { children: "Token Details" }),
8379
8379
  tokenDetailsItems.map((item) => /* @__PURE__ */ jsxs(TokenDetailRow, { children: [
8380
8380
  /* @__PURE__ */ jsx(TokenDetailLabel, { children: item.label }),
8381
- /* @__PURE__ */ jsx(TokenDetailValue, { $mono: !!item.mono, children: item.value })
8381
+ /* @__PURE__ */ jsx(TokenDetailValue, { $mono: !!item.mono, children: item.link ? /* @__PURE__ */ jsx("a", { href: item.link, target: "_blank", rel: "noopener noreferrer", style: { color: "#3380FF", textDecoration: "none" }, children: item.value }) : item.value })
8382
8382
  ] }, item.label))
8383
8383
  ] })
8384
8384
  ] })