@loafmarkets/ui 0.1.162 → 0.1.164
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 +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8564,9 +8564,9 @@ function PropertyOverview({
|
|
|
8564
8564
|
const monthlyDivPerShare = annualDividend && resolvedTokensIssued ? annualDividend / 12 / resolvedTokensIssued : null;
|
|
8565
8565
|
const propertyStats = [
|
|
8566
8566
|
{ label: "Last Valuation", value: isLoading && resolvedValuation == null ? loadingSkeleton : resolvedValuation ? resolvedValuation >= 1e6 ? `$${(resolvedValuation / 1e6).toFixed(2)}M` : `$${resolvedValuation.toLocaleString()}` : "\u2014" },
|
|
8567
|
-
{ label: "Number of Offers", value: "
|
|
8568
|
-
{ label: "Growth (Past 5 Years)", value: "
|
|
8569
|
-
{ label: "Last Dividend", value: isLoading && monthlyDivPerShare == null ? loadingSkeleton : monthlyDivPerShare != null ? `${(monthlyDivPerShare * 100).toFixed(1)}
|
|
8567
|
+
{ label: "Number of Offers", value: "3" },
|
|
8568
|
+
{ label: "Growth (Past 5 Years)", value: "+90%" },
|
|
8569
|
+
{ label: "Last Dividend", value: isLoading && monthlyDivPerShare == null ? loadingSkeleton : monthlyDivPerShare != null ? `${(monthlyDivPerShare * 100).toFixed(1)}c per Share` : "\u2014" },
|
|
8570
8570
|
{ label: "Upcoming Dividend", value: (() => {
|
|
8571
8571
|
const now = /* @__PURE__ */ new Date();
|
|
8572
8572
|
const lastDay = new Date(now.getFullYear(), now.getMonth() + 1, 0);
|