@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.js +71 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +71 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8081,13 +8081,38 @@ function GalleryMapSection({
|
|
|
8081
8081
|
src: resolvedMapUrl,
|
|
8082
8082
|
width: "100%",
|
|
8083
8083
|
height: "100%",
|
|
8084
|
-
style: { border: 0, minHeight:
|
|
8084
|
+
style: { border: 0, minHeight: 380, pointerEvents: "auto" },
|
|
8085
8085
|
allow: "autoplay; fullscreen; web-share; xr-spatial-tracking;",
|
|
8086
8086
|
title: "Property Location",
|
|
8087
8087
|
referrerPolicy: "unsafe-url",
|
|
8088
8088
|
tabIndex: -1
|
|
8089
8089
|
}
|
|
8090
8090
|
)
|
|
8091
|
+
] }),
|
|
8092
|
+
/* @__PURE__ */ jsxRuntime.jsxs(SuburbProfile, { children: [
|
|
8093
|
+
/* @__PURE__ */ jsxRuntime.jsxs(SuburbProfileTitle, { children: [
|
|
8094
|
+
"Suburb Profile \u2014 ",
|
|
8095
|
+
propertyLocation.split(",")[0]?.trim() || propertyLocation
|
|
8096
|
+
] }),
|
|
8097
|
+
/* @__PURE__ */ jsxRuntime.jsxs(SuburbStatsGrid, { children: [
|
|
8098
|
+
/* @__PURE__ */ jsxRuntime.jsxs(SuburbStat, { children: [
|
|
8099
|
+
/* @__PURE__ */ jsxRuntime.jsx(SuburbStatLabel, { children: "Median House Price" }),
|
|
8100
|
+
/* @__PURE__ */ jsxRuntime.jsx(SuburbStatValue, { children: "$6.2M" })
|
|
8101
|
+
] }),
|
|
8102
|
+
/* @__PURE__ */ jsxRuntime.jsxs(SuburbStat, { children: [
|
|
8103
|
+
/* @__PURE__ */ jsxRuntime.jsx(SuburbStatLabel, { children: "5yr Growth" }),
|
|
8104
|
+
/* @__PURE__ */ jsxRuntime.jsx(SuburbStatValue, { children: "+42%" })
|
|
8105
|
+
] }),
|
|
8106
|
+
/* @__PURE__ */ jsxRuntime.jsxs(SuburbStat, { children: [
|
|
8107
|
+
/* @__PURE__ */ jsxRuntime.jsx(SuburbStatLabel, { children: "Rental Yield" }),
|
|
8108
|
+
/* @__PURE__ */ jsxRuntime.jsx(SuburbStatValue, { children: "2.1%" })
|
|
8109
|
+
] }),
|
|
8110
|
+
/* @__PURE__ */ jsxRuntime.jsxs(SuburbStat, { children: [
|
|
8111
|
+
/* @__PURE__ */ jsxRuntime.jsx(SuburbStatLabel, { children: "Population" }),
|
|
8112
|
+
/* @__PURE__ */ jsxRuntime.jsx(SuburbStatValue, { children: "30,200" })
|
|
8113
|
+
] })
|
|
8114
|
+
] }),
|
|
8115
|
+
/* @__PURE__ */ jsxRuntime.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." })
|
|
8091
8116
|
] })
|
|
8092
8117
|
] }),
|
|
8093
8118
|
showFullMap && /* @__PURE__ */ jsxRuntime.jsx(FullMapPopup, { onClose: () => setShowFullMap(false) })
|
|
@@ -8240,11 +8265,55 @@ var MapPanel = styled9__default.default(PanelBase)`
|
|
|
8240
8265
|
min-width: 0; overflow: hidden;
|
|
8241
8266
|
`;
|
|
8242
8267
|
var MapFrame = styled9__default.default.div`
|
|
8243
|
-
flex: 1; border-radius: 6px; overflow: hidden; min-height:
|
|
8268
|
+
flex: 1; border-radius: 6px; overflow: hidden; min-height: 380px; position: relative;
|
|
8244
8269
|
`;
|
|
8245
8270
|
var IframeShield = styled9__default.default.div`
|
|
8246
8271
|
position: absolute; inset: 0; z-index: 1; cursor: pointer;
|
|
8247
8272
|
`;
|
|
8273
|
+
var SuburbProfile = styled9__default.default.div`
|
|
8274
|
+
margin-top: 1rem;
|
|
8275
|
+
padding-top: 0.85rem;
|
|
8276
|
+
border-top: 1px solid rgba(255,255,255,0.06);
|
|
8277
|
+
`;
|
|
8278
|
+
var SuburbProfileTitle = styled9__default.default.div`
|
|
8279
|
+
font-size: 0.65rem;
|
|
8280
|
+
color: #D4AF37;
|
|
8281
|
+
text-transform: uppercase;
|
|
8282
|
+
letter-spacing: 0.1em;
|
|
8283
|
+
font-weight: 600;
|
|
8284
|
+
margin-bottom: 0.75rem;
|
|
8285
|
+
`;
|
|
8286
|
+
var SuburbStatsGrid = styled9__default.default.div`
|
|
8287
|
+
display: grid;
|
|
8288
|
+
grid-template-columns: 1fr 1fr;
|
|
8289
|
+
gap: 0.5rem;
|
|
8290
|
+
margin-bottom: 0.75rem;
|
|
8291
|
+
`;
|
|
8292
|
+
var SuburbStat = styled9__default.default.div`
|
|
8293
|
+
background: rgba(255,255,255,0.03);
|
|
8294
|
+
border-radius: 6px;
|
|
8295
|
+
padding: 0.5rem 0.65rem;
|
|
8296
|
+
border: 1px solid rgba(255,255,255,0.04);
|
|
8297
|
+
`;
|
|
8298
|
+
var SuburbStatLabel = styled9__default.default.div`
|
|
8299
|
+
font-size: 0.6rem;
|
|
8300
|
+
color: rgba(255,255,255,0.4);
|
|
8301
|
+
text-transform: uppercase;
|
|
8302
|
+
letter-spacing: 0.06em;
|
|
8303
|
+
margin-bottom: 0.2rem;
|
|
8304
|
+
`;
|
|
8305
|
+
var SuburbStatValue = styled9__default.default.div`
|
|
8306
|
+
font-size: 0.9rem;
|
|
8307
|
+
font-weight: 600;
|
|
8308
|
+
color: #fff;
|
|
8309
|
+
font-variant-numeric: tabular-nums;
|
|
8310
|
+
`;
|
|
8311
|
+
var SuburbDesc = styled9__default.default.p`
|
|
8312
|
+
margin: 0;
|
|
8313
|
+
font-size: 0.75rem;
|
|
8314
|
+
color: rgba(255,255,255,0.45);
|
|
8315
|
+
line-height: 1.5;
|
|
8316
|
+
`;
|
|
8248
8317
|
var MapHeaderRight = styled9__default.default.div`
|
|
8249
8318
|
display: flex;
|
|
8250
8319
|
align-items: center;
|