@loafmarkets/ui 0.1.152 → 0.1.153

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
@@ -8055,13 +8055,38 @@ function GalleryMapSection({
8055
8055
  src: resolvedMapUrl,
8056
8056
  width: "100%",
8057
8057
  height: "100%",
8058
- style: { border: 0, minHeight: 500, pointerEvents: "auto" },
8058
+ style: { border: 0, minHeight: 380, pointerEvents: "auto" },
8059
8059
  allow: "autoplay; fullscreen; web-share; xr-spatial-tracking;",
8060
8060
  title: "Property Location",
8061
8061
  referrerPolicy: "unsafe-url",
8062
8062
  tabIndex: -1
8063
8063
  }
8064
8064
  )
8065
+ ] }),
8066
+ /* @__PURE__ */ jsxs(SuburbProfile, { children: [
8067
+ /* @__PURE__ */ jsxs(SuburbProfileTitle, { children: [
8068
+ "Suburb Profile \u2014 ",
8069
+ propertyLocation.split(",")[0]?.trim() || propertyLocation
8070
+ ] }),
8071
+ /* @__PURE__ */ jsxs(SuburbStatsGrid, { children: [
8072
+ /* @__PURE__ */ jsxs(SuburbStat, { children: [
8073
+ /* @__PURE__ */ jsx(SuburbStatLabel, { children: "Median House Price" }),
8074
+ /* @__PURE__ */ jsx(SuburbStatValue, { children: "$6.2M" })
8075
+ ] }),
8076
+ /* @__PURE__ */ jsxs(SuburbStat, { children: [
8077
+ /* @__PURE__ */ jsx(SuburbStatLabel, { children: "5yr Growth" }),
8078
+ /* @__PURE__ */ jsx(SuburbStatValue, { children: "+42%" })
8079
+ ] }),
8080
+ /* @__PURE__ */ jsxs(SuburbStat, { children: [
8081
+ /* @__PURE__ */ jsx(SuburbStatLabel, { children: "Rental Yield" }),
8082
+ /* @__PURE__ */ jsx(SuburbStatValue, { children: "2.1%" })
8083
+ ] }),
8084
+ /* @__PURE__ */ jsxs(SuburbStat, { children: [
8085
+ /* @__PURE__ */ jsx(SuburbStatLabel, { children: "Population" }),
8086
+ /* @__PURE__ */ jsx(SuburbStatValue, { children: "30,200" })
8087
+ ] })
8088
+ ] }),
8089
+ /* @__PURE__ */ jsx(SuburbDesc, { children: "Premium harbourside suburb on Sydney's Lower North Shore. Known for heritage homes, village atmosphere, and proximity to Taronga Zoo and Balmoral Beach." })
8065
8090
  ] })
8066
8091
  ] }),
8067
8092
  showFullMap && /* @__PURE__ */ jsx(FullMapPopup, { onClose: () => setShowFullMap(false) })
@@ -8214,11 +8239,55 @@ var MapPanel = styled9(PanelBase)`
8214
8239
  min-width: 0; overflow: hidden;
8215
8240
  `;
8216
8241
  var MapFrame = styled9.div`
8217
- flex: 1; border-radius: 6px; overflow: hidden; min-height: 500px; position: relative;
8242
+ flex: 1; border-radius: 6px; overflow: hidden; min-height: 380px; position: relative;
8218
8243
  `;
8219
8244
  var IframeShield = styled9.div`
8220
8245
  position: absolute; inset: 0; z-index: 1; cursor: pointer;
8221
8246
  `;
8247
+ var SuburbProfile = styled9.div`
8248
+ margin-top: 1rem;
8249
+ padding-top: 0.85rem;
8250
+ border-top: 1px solid rgba(255,255,255,0.06);
8251
+ `;
8252
+ var SuburbProfileTitle = styled9.div`
8253
+ font-size: 0.65rem;
8254
+ color: #D4AF37;
8255
+ text-transform: uppercase;
8256
+ letter-spacing: 0.1em;
8257
+ font-weight: 600;
8258
+ margin-bottom: 0.75rem;
8259
+ `;
8260
+ var SuburbStatsGrid = styled9.div`
8261
+ display: grid;
8262
+ grid-template-columns: 1fr 1fr;
8263
+ gap: 0.5rem;
8264
+ margin-bottom: 0.75rem;
8265
+ `;
8266
+ var SuburbStat = styled9.div`
8267
+ background: rgba(255,255,255,0.03);
8268
+ border-radius: 6px;
8269
+ padding: 0.5rem 0.65rem;
8270
+ border: 1px solid rgba(255,255,255,0.04);
8271
+ `;
8272
+ var SuburbStatLabel = styled9.div`
8273
+ font-size: 0.6rem;
8274
+ color: rgba(255,255,255,0.4);
8275
+ text-transform: uppercase;
8276
+ letter-spacing: 0.06em;
8277
+ margin-bottom: 0.2rem;
8278
+ `;
8279
+ var SuburbStatValue = styled9.div`
8280
+ font-size: 0.9rem;
8281
+ font-weight: 600;
8282
+ color: #fff;
8283
+ font-variant-numeric: tabular-nums;
8284
+ `;
8285
+ var SuburbDesc = styled9.p`
8286
+ margin: 0;
8287
+ font-size: 0.75rem;
8288
+ color: rgba(255,255,255,0.45);
8289
+ line-height: 1.5;
8290
+ `;
8222
8291
  var MapHeaderRight = styled9.div`
8223
8292
  display: flex;
8224
8293
  align-items: center;