@loafmarkets/ui 0.1.179 → 0.1.181

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.mjs CHANGED
@@ -8535,7 +8535,8 @@ function PropertyOverview({
8535
8535
  const tokenMarketCap = tokenPriceValue && resolvedTokensIssued ? tokenPriceValue * resolvedTokensIssued : null;
8536
8536
  const currentDividendYield = tokenMarketCap && monthlyCoupon > 0 ? (monthlyCoupon * 12 / tokenMarketCap * 100).toFixed(2) : null;
8537
8537
  const loadingSkeleton = /* @__PURE__ */ jsx(Skeleton, { width: 90, height: 18 });
8538
- const resolvedPropertyType = overviewData?.propertyType ?? propertyTypeLabel ?? null;
8538
+ const rawPropertyType = overviewData?.propertyType ?? propertyTypeLabel ?? null;
8539
+ const resolvedPropertyType = rawPropertyType === "House" ? "Residential" : rawPropertyType;
8539
8540
  const galleryImages = images ?? [];
8540
8541
  const chainValue = /* @__PURE__ */ jsxs(ChainLogos, { children: [
8541
8542
  /* @__PURE__ */ jsx(ChainLogoImg, { src: "/Base-Symbol.png", alt: "Base" }),
@@ -8802,27 +8803,32 @@ function PropertyOverview({
8802
8803
  /* @__PURE__ */ jsxs(PeerEstateRow, { $active: true, children: [
8803
8804
  /* @__PURE__ */ jsx(PeerEstateName, { children: "Musgrave" }),
8804
8805
  /* @__PURE__ */ jsx(PeerEstateYear, { children: "c.1880" }),
8806
+ /* @__PURE__ */ jsx(PeerEstateSale, { children: "2026" }),
8805
8807
  /* @__PURE__ */ jsx(PeerEstateStatus, { $status: "listed", children: "Tokenized on Loaf" })
8806
8808
  ] }),
8807
8809
  /* @__PURE__ */ jsxs(PeerEstateRow, { children: [
8808
8810
  /* @__PURE__ */ jsx(PeerEstateName, { children: "Kirkoswald House" }),
8809
- /* @__PURE__ */ jsx(PeerEstateYear, { children: "c.1857" }),
8811
+ /* @__PURE__ */ jsx(PeerEstateYear, { children: "c.1873" }),
8812
+ /* @__PURE__ */ jsx(PeerEstateSale, { children: "Listed 2025" }),
8810
8813
  /* @__PURE__ */ jsx(PeerEstateStatus, { $status: "off", children: "Off Market" })
8811
8814
  ] }),
8812
8815
  /* @__PURE__ */ jsxs(PeerEstateRow, { children: [
8813
8816
  /* @__PURE__ */ jsx(PeerEstateName, { children: "Balmoral House" }),
8814
8817
  /* @__PURE__ */ jsx(PeerEstateYear, { children: "c.1906" }),
8818
+ /* @__PURE__ */ jsx(PeerEstateSale, { children: "Sold 2017" }),
8815
8819
  /* @__PURE__ */ jsx(PeerEstateStatus, { $status: "off", children: "Off Market \u2014 est. $40M+" })
8816
8820
  ] }),
8817
8821
  /* @__PURE__ */ jsxs(PeerEstateRow, { children: [
8818
8822
  /* @__PURE__ */ jsx(PeerEstateName, { children: "Glenmire" }),
8819
8823
  /* @__PURE__ */ jsx(PeerEstateYear, { children: "c.1880s" }),
8824
+ /* @__PURE__ */ jsx(PeerEstateSale, { children: "Sold 2015" }),
8820
8825
  /* @__PURE__ */ jsx(PeerEstateStatus, { $status: "off", children: "Off Market" })
8821
8826
  ] }),
8822
8827
  /* @__PURE__ */ jsxs(PeerEstateRow, { $last: true, children: [
8823
8828
  /* @__PURE__ */ jsx(PeerEstateName, { children: "Boronia House" }),
8824
8829
  /* @__PURE__ */ jsx(PeerEstateYear, { children: "c.1885" }),
8825
- /* @__PURE__ */ jsx(PeerEstateStatus, { $status: "off", children: "Off Market" })
8830
+ /* @__PURE__ */ jsx(PeerEstateSale, { children: "Not sold since 1952" }),
8831
+ /* @__PURE__ */ jsx(PeerEstateStatus, { $status: "off", children: "Council-owned" })
8826
8832
  ] })
8827
8833
  ] })
8828
8834
  ] }),
@@ -8844,15 +8850,19 @@ function PropertyOverview({
8844
8850
  ] }),
8845
8851
  /* @__PURE__ */ jsxs(StatRow, { children: [
8846
8852
  /* @__PURE__ */ jsx(StatLabel, { children: "Built" }),
8847
- /* @__PURE__ */ jsx(StatValue, { children: "c.1880 \u2014 Heritage Listed" })
8853
+ /* @__PURE__ */ jsx(StatValue, { children: "c.1880 \u2014 Historic Site" })
8854
+ ] }),
8855
+ /* @__PURE__ */ jsxs(StatRow, { children: [
8856
+ /* @__PURE__ */ jsx(StatLabel, { children: "Heritage Status" }),
8857
+ /* @__PURE__ */ jsx(StatValue, { children: "Not Heritage Protected" })
8848
8858
  ] }),
8849
8859
  /* @__PURE__ */ jsxs(StatRow, { children: [
8850
8860
  /* @__PURE__ */ jsx(StatLabel, { children: "Zoning" }),
8851
- /* @__PURE__ */ jsx(StatValue, { children: "R3 \u2014 Development Potential" })
8861
+ /* @__PURE__ */ jsx(StatValue, { children: "R3 \u2014 Medium Density" })
8852
8862
  ] }),
8853
8863
  /* @__PURE__ */ jsxs(StatRow, { children: [
8854
- /* @__PURE__ */ jsx(StatLabel, { children: "Heritage Premium" }),
8855
- /* @__PURE__ */ jsx(StatValue, { style: { color: "#4ade80" }, children: "+12% vs non-heritage" })
8864
+ /* @__PURE__ */ jsx(StatLabel, { children: "Development Optionality" }),
8865
+ /* @__PURE__ */ jsx(StatValue, { style: { color: "#4ade80" }, children: "Low-rise / Apartments Permitted" })
8856
8866
  ] }),
8857
8867
  /* @__PURE__ */ jsxs(StatRow, { children: [
8858
8868
  /* @__PURE__ */ jsx(StatLabel, { children: "Suburb Median (6 Bed)" }),
@@ -9477,9 +9487,9 @@ var PeerEstatesTable = styled9.div`
9477
9487
  `;
9478
9488
  var PeerEstateRow = styled9.div`
9479
9489
  display: grid;
9480
- grid-template-columns: 1fr 60px auto;
9490
+ grid-template-columns: 1fr 52px auto auto;
9481
9491
  align-items: center;
9482
- gap: 0.5rem;
9492
+ gap: 0.4rem;
9483
9493
  padding: 0.45rem 0;
9484
9494
  border-bottom: ${(p) => p.$last ? "none" : "1px solid rgba(255,255,255,0.03)"};
9485
9495
  ${(p) => p.$active ? `
@@ -9501,6 +9511,12 @@ var PeerEstateYear = styled9.span`
9501
9511
  text-align: center;
9502
9512
  font-variant-numeric: tabular-nums;
9503
9513
  `;
9514
+ var PeerEstateSale = styled9.span`
9515
+ font-size: 0.65rem;
9516
+ color: rgba(255,255,255,0.2);
9517
+ text-align: right;
9518
+ white-space: nowrap;
9519
+ `;
9504
9520
  var PeerEstateStatus = styled9.span`
9505
9521
  font-size: 0.68rem;
9506
9522
  font-weight: 500;