@loafmarkets/ui 0.1.172 → 0.1.173
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 +60 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +60 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8790,20 +8790,28 @@ function PropertyOverview({
|
|
|
8790
8790
|
] })
|
|
8791
8791
|
] }),
|
|
8792
8792
|
/* @__PURE__ */ jsxRuntime.jsx(ComparableSalesTitle, { children: "Comparable Sales" }),
|
|
8793
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
8794
|
-
/* @__PURE__ */ jsxRuntime.
|
|
8795
|
-
|
|
8796
|
-
|
|
8797
|
-
|
|
8793
|
+
/* @__PURE__ */ jsxRuntime.jsxs(CompSaleCard, { children: [
|
|
8794
|
+
/* @__PURE__ */ jsxRuntime.jsxs(CompSaleHeader, { children: [
|
|
8795
|
+
/* @__PURE__ */ jsxRuntime.jsx(CompSaleAddress, { children: "200A Raglan St, Mosman" }),
|
|
8796
|
+
/* @__PURE__ */ jsxRuntime.jsxs(CompSalePrice, { children: [
|
|
8797
|
+
"$16.07M ",
|
|
8798
|
+
/* @__PURE__ */ jsxRuntime.jsx(CompSaleDate, { children: "Mar 2022" })
|
|
8799
|
+
] })
|
|
8800
|
+
] }),
|
|
8801
|
+
/* @__PURE__ */ jsxRuntime.jsxs(CompSalePrior, { children: [
|
|
8802
|
+
/* @__PURE__ */ jsxRuntime.jsx("span", { children: "Previously sold $10.12M" }),
|
|
8803
|
+
/* @__PURE__ */ jsxRuntime.jsx(CompSalePriorDate, { children: "Sep 2016" }),
|
|
8804
|
+
/* @__PURE__ */ jsxRuntime.jsx(TimelineGain, { children: "+59%" }),
|
|
8805
|
+
/* @__PURE__ */ jsxRuntime.jsx(CompSalePriorDate, { children: "in 6 yrs" })
|
|
8798
8806
|
] })
|
|
8799
8807
|
] }),
|
|
8800
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
8801
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8802
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
8808
|
+
/* @__PURE__ */ jsxRuntime.jsx(CompSaleCard, { children: /* @__PURE__ */ jsxRuntime.jsxs(CompSaleHeader, { children: [
|
|
8809
|
+
/* @__PURE__ */ jsxRuntime.jsx(CompSaleAddress, { children: "7 Bradleys Head Rd, Mosman" }),
|
|
8810
|
+
/* @__PURE__ */ jsxRuntime.jsxs(CompSalePrice, { children: [
|
|
8803
8811
|
"$27.96M ",
|
|
8804
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8812
|
+
/* @__PURE__ */ jsxRuntime.jsx(CompSaleDate, { children: "Aug 2024" })
|
|
8805
8813
|
] })
|
|
8806
|
-
] })
|
|
8814
|
+
] }) })
|
|
8807
8815
|
] }),
|
|
8808
8816
|
/* @__PURE__ */ jsxRuntime.jsxs(StatsColumn, { children: [
|
|
8809
8817
|
/* @__PURE__ */ jsxRuntime.jsx(StatsColumnHeader, { children: "Asset Specification" }),
|
|
@@ -9391,6 +9399,48 @@ var ComparableSalesTitle = styled9__default.default.div`
|
|
|
9391
9399
|
padding-bottom: 0.5rem;
|
|
9392
9400
|
border-top: 1px solid rgba(255,255,255,0.04);
|
|
9393
9401
|
`;
|
|
9402
|
+
var CompSaleCard = styled9__default.default.div`
|
|
9403
|
+
padding: 0.6rem 0;
|
|
9404
|
+
border-bottom: 1px solid rgba(255,255,255,0.03);
|
|
9405
|
+
&:last-child { border-bottom: none; }
|
|
9406
|
+
`;
|
|
9407
|
+
var CompSaleHeader = styled9__default.default.div`
|
|
9408
|
+
display: flex;
|
|
9409
|
+
justify-content: space-between;
|
|
9410
|
+
align-items: center;
|
|
9411
|
+
gap: 0.5rem;
|
|
9412
|
+
`;
|
|
9413
|
+
var CompSaleAddress = styled9__default.default.span`
|
|
9414
|
+
font-size: 0.82rem;
|
|
9415
|
+
color: rgba(255,255,255,0.6);
|
|
9416
|
+
`;
|
|
9417
|
+
var CompSalePrice = styled9__default.default.span`
|
|
9418
|
+
font-size: 0.85rem;
|
|
9419
|
+
font-weight: 600;
|
|
9420
|
+
color: #fff;
|
|
9421
|
+
font-variant-numeric: tabular-nums;
|
|
9422
|
+
display: flex;
|
|
9423
|
+
align-items: center;
|
|
9424
|
+
gap: 0.4rem;
|
|
9425
|
+
flex-shrink: 0;
|
|
9426
|
+
`;
|
|
9427
|
+
var CompSaleDate = styled9__default.default.span`
|
|
9428
|
+
font-size: 0.7rem;
|
|
9429
|
+
color: rgba(255,255,255,0.3);
|
|
9430
|
+
font-weight: 400;
|
|
9431
|
+
`;
|
|
9432
|
+
var CompSalePrior = styled9__default.default.div`
|
|
9433
|
+
display: flex;
|
|
9434
|
+
align-items: center;
|
|
9435
|
+
gap: 0.4rem;
|
|
9436
|
+
margin-top: 0.3rem;
|
|
9437
|
+
font-size: 0.72rem;
|
|
9438
|
+
color: rgba(255,255,255,0.35);
|
|
9439
|
+
`;
|
|
9440
|
+
var CompSalePriorDate = styled9__default.default.span`
|
|
9441
|
+
font-size: 0.68rem;
|
|
9442
|
+
color: rgba(255,255,255,0.25);
|
|
9443
|
+
`;
|
|
9394
9444
|
var AssetFeatureRow = styled9__default.default.div`
|
|
9395
9445
|
display: flex;
|
|
9396
9446
|
flex-wrap: wrap;
|