@loafmarkets/ui 0.1.145 → 0.1.146
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 +6 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +6 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8367,11 +8367,13 @@ function PropertyOverview({
|
|
|
8367
8367
|
{ label: "Open Orders", value: isLoading && openOrdersValue == null ? loadingSkeleton : openOrdersValue != null && openOrdersValue > 0 ? `$${Math.round(openOrdersValue).toLocaleString()}` : "\u2014" },
|
|
8368
8368
|
{ label: "Holders", value: isLoading && holderCount == null ? loadingSkeleton : holderCount != null ? holderCount.toLocaleString() : "\u2014" }
|
|
8369
8369
|
];
|
|
8370
|
+
const cashFlowPerShare = annualRent > 0 && resolvedTokensIssued ? annualRent / resolvedTokensIssued : null;
|
|
8370
8371
|
const propertyStats = [
|
|
8371
|
-
{ label: "
|
|
8372
|
-
{ label: "
|
|
8373
|
-
{ label: "
|
|
8374
|
-
{ label: "
|
|
8372
|
+
{ label: "Last Valuation", value: isLoading && resolvedValuation == null ? loadingSkeleton : resolvedValuation ? resolvedValuation >= 1e6 ? `$${(resolvedValuation / 1e6).toFixed(2)}M` : `$${resolvedValuation.toLocaleString()}` : "\u2014" },
|
|
8373
|
+
{ label: "Number of Offers", value: "\u2014" },
|
|
8374
|
+
{ label: "Growth (Past 5 Years)", value: "\u2014" },
|
|
8375
|
+
{ label: "Security Interest in Asset", value: "Yes, secured to Land Registry" },
|
|
8376
|
+
{ label: "Cash Flow Per Share", value: isLoading && cashFlowPerShare == null ? loadingSkeleton : cashFlowPerShare != null ? `$${cashFlowPerShare.toFixed(4)}/yr` : "\u2014" }
|
|
8375
8377
|
];
|
|
8376
8378
|
return /* @__PURE__ */ jsxs(Wrapper, { children: [
|
|
8377
8379
|
/* @__PURE__ */ jsxs(Section, { children: [
|