@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.js
CHANGED
|
@@ -8393,11 +8393,13 @@ function PropertyOverview({
|
|
|
8393
8393
|
{ label: "Open Orders", value: isLoading && openOrdersValue == null ? loadingSkeleton : openOrdersValue != null && openOrdersValue > 0 ? `$${Math.round(openOrdersValue).toLocaleString()}` : "\u2014" },
|
|
8394
8394
|
{ label: "Holders", value: isLoading && holderCount == null ? loadingSkeleton : holderCount != null ? holderCount.toLocaleString() : "\u2014" }
|
|
8395
8395
|
];
|
|
8396
|
+
const cashFlowPerShare = annualRent > 0 && resolvedTokensIssued ? annualRent / resolvedTokensIssued : null;
|
|
8396
8397
|
const propertyStats = [
|
|
8397
|
-
{ label: "
|
|
8398
|
-
{ label: "
|
|
8399
|
-
{ label: "
|
|
8400
|
-
{ label: "
|
|
8398
|
+
{ label: "Last Valuation", value: isLoading && resolvedValuation == null ? loadingSkeleton : resolvedValuation ? resolvedValuation >= 1e6 ? `$${(resolvedValuation / 1e6).toFixed(2)}M` : `$${resolvedValuation.toLocaleString()}` : "\u2014" },
|
|
8399
|
+
{ label: "Number of Offers", value: "\u2014" },
|
|
8400
|
+
{ label: "Growth (Past 5 Years)", value: "\u2014" },
|
|
8401
|
+
{ label: "Security Interest in Asset", value: "Yes, secured to Land Registry" },
|
|
8402
|
+
{ label: "Cash Flow Per Share", value: isLoading && cashFlowPerShare == null ? loadingSkeleton : cashFlowPerShare != null ? `$${cashFlowPerShare.toFixed(4)}/yr` : "\u2014" }
|
|
8401
8403
|
];
|
|
8402
8404
|
return /* @__PURE__ */ jsxRuntime.jsxs(Wrapper, { children: [
|
|
8403
8405
|
/* @__PURE__ */ jsxRuntime.jsxs(Section, { children: [
|