@loafmarkets/ui 0.1.225 → 0.1.227
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 +35 -36
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +35 -36
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8064,33 +8064,33 @@ function GalleryMapSection({
|
|
|
8064
8064
|
tabIndex: -1
|
|
8065
8065
|
}
|
|
8066
8066
|
)
|
|
8067
|
+
] })
|
|
8068
|
+
] }),
|
|
8069
|
+
!hideMap && /* @__PURE__ */ jsxs(SuburbProfilePanel, { children: [
|
|
8070
|
+
/* @__PURE__ */ jsxs(SuburbProfileTitle, { children: [
|
|
8071
|
+
"Suburb Profile (",
|
|
8072
|
+
propertyLocation.split(",")[0]?.trim() || propertyLocation,
|
|
8073
|
+
")"
|
|
8067
8074
|
] }),
|
|
8068
|
-
/* @__PURE__ */ jsxs(
|
|
8069
|
-
/* @__PURE__ */ jsxs(
|
|
8070
|
-
|
|
8071
|
-
|
|
8072
|
-
")"
|
|
8075
|
+
/* @__PURE__ */ jsxs(SuburbStatsGrid, { children: [
|
|
8076
|
+
/* @__PURE__ */ jsxs(SuburbStat, { children: [
|
|
8077
|
+
/* @__PURE__ */ jsx(SuburbStatLabel, { children: "Median House Price" }),
|
|
8078
|
+
/* @__PURE__ */ jsx(SuburbStatValue, { children: "$5.5M" })
|
|
8073
8079
|
] }),
|
|
8074
|
-
/* @__PURE__ */ jsxs(
|
|
8075
|
-
/* @__PURE__ */
|
|
8076
|
-
|
|
8077
|
-
/* @__PURE__ */ jsx(SuburbStatValue, { children: "$5.5M" })
|
|
8078
|
-
] }),
|
|
8079
|
-
/* @__PURE__ */ jsxs(SuburbStat, { children: [
|
|
8080
|
-
/* @__PURE__ */ jsx(SuburbStatLabel, { children: "5yr Growth" }),
|
|
8081
|
-
/* @__PURE__ */ jsx(SuburbStatValue, { children: "+42%" })
|
|
8082
|
-
] }),
|
|
8083
|
-
/* @__PURE__ */ jsxs(SuburbStat, { children: [
|
|
8084
|
-
/* @__PURE__ */ jsx(SuburbStatLabel, { children: "Suburb Rank" }),
|
|
8085
|
-
/* @__PURE__ */ jsx(SuburbStatValue, { children: "Top 1%" })
|
|
8086
|
-
] }),
|
|
8087
|
-
/* @__PURE__ */ jsxs(SuburbStat, { children: [
|
|
8088
|
-
/* @__PURE__ */ jsx(SuburbStatLabel, { children: "Avg. Days on Market" }),
|
|
8089
|
-
/* @__PURE__ */ jsx(SuburbStatValue, { children: "28" })
|
|
8090
|
-
] })
|
|
8080
|
+
/* @__PURE__ */ jsxs(SuburbStat, { children: [
|
|
8081
|
+
/* @__PURE__ */ jsx(SuburbStatLabel, { children: "5yr Growth" }),
|
|
8082
|
+
/* @__PURE__ */ jsx(SuburbStatValue, { children: "+42%" })
|
|
8091
8083
|
] }),
|
|
8092
|
-
/* @__PURE__ */
|
|
8093
|
-
|
|
8084
|
+
/* @__PURE__ */ jsxs(SuburbStat, { children: [
|
|
8085
|
+
/* @__PURE__ */ jsx(SuburbStatLabel, { children: "Suburb Rank" }),
|
|
8086
|
+
/* @__PURE__ */ jsx(SuburbStatValue, { children: "Top 1%" })
|
|
8087
|
+
] }),
|
|
8088
|
+
/* @__PURE__ */ jsxs(SuburbStat, { children: [
|
|
8089
|
+
/* @__PURE__ */ jsx(SuburbStatLabel, { children: "Avg. Days on Market" }),
|
|
8090
|
+
/* @__PURE__ */ jsx(SuburbStatValue, { children: "28" })
|
|
8091
|
+
] })
|
|
8092
|
+
] }),
|
|
8093
|
+
/* @__PURE__ */ jsx(SuburbDesc, { children: "One of Sydney's most prestigious harbourside suburbs, consistently ranked among Australia's highest-value residential markets. Strong capital growth driven by limited supply, heritage conservation overlays, and international buyer demand." })
|
|
8094
8094
|
] }),
|
|
8095
8095
|
showFullMap && !hideMap && /* @__PURE__ */ jsx(FullMapPopup, { onClose: () => setShowFullMap(false), mapUrl: resolvedMapUrl })
|
|
8096
8096
|
] });
|
|
@@ -8152,7 +8152,6 @@ var Row = styled9.div`
|
|
|
8152
8152
|
display: grid;
|
|
8153
8153
|
grid-template-columns: 1fr;
|
|
8154
8154
|
gap: 1.5rem;
|
|
8155
|
-
margin-top: 1.5rem;
|
|
8156
8155
|
max-width: 100%;
|
|
8157
8156
|
overflow: hidden;
|
|
8158
8157
|
box-sizing: border-box;
|
|
@@ -8270,10 +8269,8 @@ var MapFrame = styled9.div`
|
|
|
8270
8269
|
var IframeShield = styled9.div`
|
|
8271
8270
|
position: absolute; inset: 0; z-index: 1; cursor: pointer;
|
|
8272
8271
|
`;
|
|
8273
|
-
var
|
|
8274
|
-
|
|
8275
|
-
padding-top: 0.85rem;
|
|
8276
|
-
border-top: 1px solid rgba(255,255,255,0.06);
|
|
8272
|
+
var SuburbProfilePanel = styled9(PanelBase)`
|
|
8273
|
+
padding: 1.5rem;
|
|
8277
8274
|
`;
|
|
8278
8275
|
var SuburbProfileTitle = styled9.div`
|
|
8279
8276
|
font-size: 0.65rem;
|
|
@@ -9244,21 +9241,23 @@ var Wrapper = styled9.div`
|
|
|
9244
9241
|
var GallerySpecRow = styled9.div`
|
|
9245
9242
|
display: grid;
|
|
9246
9243
|
grid-template-columns: 1fr 380px;
|
|
9247
|
-
gap:
|
|
9248
|
-
margin-bottom: 1.25rem;
|
|
9244
|
+
gap: 0.75rem;
|
|
9249
9245
|
align-items: start;
|
|
9250
9246
|
@media (max-width: 900px) { grid-template-columns: 1fr; }
|
|
9251
9247
|
`;
|
|
9252
9248
|
var GallerySpecLeft = styled9.div`
|
|
9253
9249
|
min-width: 0;
|
|
9254
9250
|
overflow: hidden;
|
|
9251
|
+
display: flex;
|
|
9252
|
+
flex-direction: column;
|
|
9253
|
+
gap: 0.75rem;
|
|
9255
9254
|
`;
|
|
9256
9255
|
var MapCompRow = styled9.div`
|
|
9257
9256
|
display: grid;
|
|
9258
|
-
grid-template-columns: 1fr
|
|
9259
|
-
gap:
|
|
9260
|
-
margin-
|
|
9261
|
-
align-items:
|
|
9257
|
+
grid-template-columns: 1fr 380px;
|
|
9258
|
+
gap: 0.75rem;
|
|
9259
|
+
margin-top: 0.75rem;
|
|
9260
|
+
align-items: stretch;
|
|
9262
9261
|
@media (max-width: 900px) { grid-template-columns: 1fr; }
|
|
9263
9262
|
`;
|
|
9264
9263
|
var MapCompLeft = styled9.div`
|
|
@@ -9269,6 +9268,7 @@ var AssetBentoNarratives = styled9.div`
|
|
|
9269
9268
|
display: grid;
|
|
9270
9269
|
grid-template-columns: repeat(3, 1fr);
|
|
9271
9270
|
gap: 0.75rem;
|
|
9271
|
+
margin-top: 0.75rem;
|
|
9272
9272
|
@media (max-width: 768px) { grid-template-columns: 1fr; }
|
|
9273
9273
|
`;
|
|
9274
9274
|
styled9.div`
|
|
@@ -9928,7 +9928,6 @@ var FeaturesPanel = styled9.div`
|
|
|
9928
9928
|
display: flex;
|
|
9929
9929
|
flex-wrap: wrap;
|
|
9930
9930
|
gap: 0.75rem 1.5rem;
|
|
9931
|
-
margin-top: 1.25rem;
|
|
9932
9931
|
background: #111111;
|
|
9933
9932
|
border: 1px solid rgba(255,255,255,0.1);
|
|
9934
9933
|
border-radius: 12px;
|