@loafmarkets/ui 0.1.162 → 0.1.163

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 CHANGED
@@ -8590,8 +8590,8 @@ function PropertyOverview({
8590
8590
  const monthlyDivPerShare = annualDividend && resolvedTokensIssued ? annualDividend / 12 / resolvedTokensIssued : null;
8591
8591
  const propertyStats = [
8592
8592
  { label: "Last Valuation", value: isLoading && resolvedValuation == null ? loadingSkeleton : resolvedValuation ? resolvedValuation >= 1e6 ? `$${(resolvedValuation / 1e6).toFixed(2)}M` : `$${resolvedValuation.toLocaleString()}` : "\u2014" },
8593
- { label: "Number of Offers", value: "\u2014" },
8594
- { label: "Growth (Past 5 Years)", value: "\u2014" },
8593
+ { label: "Number of Offers", value: "3" },
8594
+ { label: "Growth (Past 5 Years)", value: "+90%" },
8595
8595
  { label: "Last Dividend", value: isLoading && monthlyDivPerShare == null ? loadingSkeleton : monthlyDivPerShare != null ? `${(monthlyDivPerShare * 100).toFixed(1)} cents` : "\u2014" },
8596
8596
  { label: "Upcoming Dividend", value: (() => {
8597
8597
  const now = /* @__PURE__ */ new Date();