@loafmarkets/ui 0.1.205 → 0.1.207
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 +22 -7
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +22 -7
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8833,7 +8833,7 @@ function PropertyOverview({
|
|
|
8833
8833
|
/* @__PURE__ */ jsxRuntime.jsx(ComparableSalesTitle, { children: "Comparable Sales" }),
|
|
8834
8834
|
/* @__PURE__ */ jsxRuntime.jsxs(CompSaleCard, { children: [
|
|
8835
8835
|
/* @__PURE__ */ jsxRuntime.jsxs(CompSaleHeader, { children: [
|
|
8836
|
-
/* @__PURE__ */ jsxRuntime.jsx(CompSaleAddress, { children: "200A Raglan St, Mosman" }),
|
|
8836
|
+
/* @__PURE__ */ jsxRuntime.jsx(CompSaleAddress, { children: "200A Raglan St, Mosman (Boondabah)" }),
|
|
8837
8837
|
/* @__PURE__ */ jsxRuntime.jsxs(CompSalePrice, { children: [
|
|
8838
8838
|
"$16.07M ",
|
|
8839
8839
|
/* @__PURE__ */ jsxRuntime.jsx(CompSaleDate, { children: "Mar 2022" })
|
|
@@ -8845,7 +8845,7 @@ function PropertyOverview({
|
|
|
8845
8845
|
/* @__PURE__ */ jsxRuntime.jsx(TimelineGain, { children: "+119%" }),
|
|
8846
8846
|
/* @__PURE__ */ jsxRuntime.jsx(CompSalePriorDate, { children: "in 6 yrs" })
|
|
8847
8847
|
] }),
|
|
8848
|
-
/* @__PURE__ */ jsxRuntime.jsx(CompSalePrior, { children: /* @__PURE__ */ jsxRuntime.jsx("span", { children: "
|
|
8848
|
+
/* @__PURE__ */ jsxRuntime.jsx(CompSalePrior, { children: /* @__PURE__ */ jsxRuntime.jsx("span", { children: "c.1905, 2,066 sqm" }) })
|
|
8849
8849
|
] }),
|
|
8850
8850
|
/* @__PURE__ */ jsxRuntime.jsxs(CompSaleCard, { children: [
|
|
8851
8851
|
/* @__PURE__ */ jsxRuntime.jsxs(CompSaleHeader, { children: [
|
|
@@ -8958,7 +8958,10 @@ function PropertyOverview({
|
|
|
8958
8958
|
] }),
|
|
8959
8959
|
/* @__PURE__ */ jsxRuntime.jsxs(SecurityRow, { children: [
|
|
8960
8960
|
/* @__PURE__ */ jsxRuntime.jsx(SecurityLabel, { children: "Independent Valuation" }),
|
|
8961
|
-
/* @__PURE__ */ jsxRuntime.
|
|
8961
|
+
/* @__PURE__ */ jsxRuntime.jsxs(SecurityValue, { children: [
|
|
8962
|
+
/* @__PURE__ */ jsxRuntime.jsx("img", { src: "/savills.png", alt: "Savills", style: { height: 14, borderRadius: 2, filter: "grayscale(1) brightness(1.2) contrast(1.6)", opacity: 0.7, verticalAlign: "middle", marginRight: 6 } }),
|
|
8963
|
+
/* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "View Report\xA0\u2197" })
|
|
8964
|
+
] })
|
|
8962
8965
|
] })
|
|
8963
8966
|
] })
|
|
8964
8967
|
] })
|
|
@@ -9323,9 +9326,13 @@ var StatRow = styled9__default.default.div`
|
|
|
9323
9326
|
display: flex;
|
|
9324
9327
|
justify-content: space-between;
|
|
9325
9328
|
align-items: center;
|
|
9326
|
-
padding: 0.65rem 0;
|
|
9329
|
+
padding: 0.65rem 0.75rem;
|
|
9330
|
+
margin: 0 -0.75rem;
|
|
9327
9331
|
border-bottom: 1px solid rgba(255,255,255,0.04);
|
|
9328
|
-
|
|
9332
|
+
border-radius: 6px;
|
|
9333
|
+
transition: background 0.15s;
|
|
9334
|
+
&:hover { background: rgba(255,255,255,0.03); }
|
|
9335
|
+
&:last-child { border-bottom: none; padding-bottom: 0.65rem; }
|
|
9329
9336
|
`;
|
|
9330
9337
|
var StatLabel = styled9__default.default.span`
|
|
9331
9338
|
font-size: 0.82rem;
|
|
@@ -9399,8 +9406,12 @@ var TimelineEntry = styled9__default.default.div`
|
|
|
9399
9406
|
grid-template-columns: 48px 12px 1fr;
|
|
9400
9407
|
align-items: center;
|
|
9401
9408
|
gap: 0.75rem;
|
|
9402
|
-
padding: 0.55rem 0;
|
|
9409
|
+
padding: 0.55rem 0.75rem;
|
|
9410
|
+
margin: 0 -0.75rem;
|
|
9403
9411
|
border-bottom: ${(p) => p.$last ? "none" : "1px solid rgba(255,255,255,0.03)"};
|
|
9412
|
+
border-radius: 6px;
|
|
9413
|
+
transition: background 0.15s;
|
|
9414
|
+
&:hover { background: rgba(255,255,255,0.03); }
|
|
9404
9415
|
`;
|
|
9405
9416
|
var TimelineYear = styled9__default.default.span`
|
|
9406
9417
|
font-size: 0.72rem;
|
|
@@ -9644,8 +9655,12 @@ var SecurityRow = styled9__default.default.div`
|
|
|
9644
9655
|
display: flex;
|
|
9645
9656
|
align-items: center;
|
|
9646
9657
|
justify-content: space-between;
|
|
9647
|
-
padding: 0.75rem 0;
|
|
9658
|
+
padding: 0.75rem 0.75rem;
|
|
9659
|
+
margin: 0 -0.75rem;
|
|
9648
9660
|
border-bottom: 1px solid rgba(255,255,255,0.06);
|
|
9661
|
+
border-radius: 6px;
|
|
9662
|
+
transition: background 0.15s;
|
|
9663
|
+
&:hover { background: rgba(255,255,255,0.03); }
|
|
9649
9664
|
`;
|
|
9650
9665
|
var SecurityLabel = styled9__default.default.span`
|
|
9651
9666
|
font-size: 0.82rem;
|