@loafmarkets/ui 0.1.140 → 0.1.141
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.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +3 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8297,7 +8297,8 @@ function PropertyOverview({
|
|
|
8297
8297
|
isLoading = false,
|
|
8298
8298
|
ticker,
|
|
8299
8299
|
contractAddress,
|
|
8300
|
-
chain = "Base (Ethereum L2)"
|
|
8300
|
+
chain = "Base (Ethereum L2)",
|
|
8301
|
+
percentageTokenized
|
|
8301
8302
|
}) {
|
|
8302
8303
|
const [isDescExpanded, setDescExpanded] = useState(false);
|
|
8303
8304
|
const description = descriptionProp ?? overviewData?.description ?? DEFAULT_DESCRIPTION;
|
|
@@ -8343,6 +8344,7 @@ function PropertyOverview({
|
|
|
8343
8344
|
{ label: "Contract Address", value: contractAddress ? truncateAddress(contractAddress) : "\u2014", mono: true },
|
|
8344
8345
|
{ label: "Token Ticker", value: ticker ?? "\u2014" },
|
|
8345
8346
|
{ label: "Total Tokens", value: isLoading && resolvedTokensIssued == null ? loadingSkeleton : resolvedTokensIssued?.toLocaleString() ?? "\u2014" },
|
|
8347
|
+
{ label: "Percentage Tokenized", value: percentageTokenized != null ? `${percentageTokenized}%` : "\u2014" },
|
|
8346
8348
|
{ label: "Property Type", value: resolvedPropertyType ?? "\u2014" },
|
|
8347
8349
|
{ label: "Location", value: location || "\u2014" }
|
|
8348
8350
|
];
|