@loafmarkets/ui 0.1.206 → 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 +20 -5
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -5
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8932,7 +8932,10 @@ function PropertyOverview({
|
|
|
8932
8932
|
] }),
|
|
8933
8933
|
/* @__PURE__ */ jsxs(SecurityRow, { children: [
|
|
8934
8934
|
/* @__PURE__ */ jsx(SecurityLabel, { children: "Independent Valuation" }),
|
|
8935
|
-
/* @__PURE__ */
|
|
8935
|
+
/* @__PURE__ */ jsxs(SecurityValue, { children: [
|
|
8936
|
+
/* @__PURE__ */ 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 } }),
|
|
8937
|
+
/* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "View Report\xA0\u2197" })
|
|
8938
|
+
] })
|
|
8936
8939
|
] })
|
|
8937
8940
|
] })
|
|
8938
8941
|
] })
|
|
@@ -9297,9 +9300,13 @@ var StatRow = styled9.div`
|
|
|
9297
9300
|
display: flex;
|
|
9298
9301
|
justify-content: space-between;
|
|
9299
9302
|
align-items: center;
|
|
9300
|
-
padding: 0.65rem 0;
|
|
9303
|
+
padding: 0.65rem 0.75rem;
|
|
9304
|
+
margin: 0 -0.75rem;
|
|
9301
9305
|
border-bottom: 1px solid rgba(255,255,255,0.04);
|
|
9302
|
-
|
|
9306
|
+
border-radius: 6px;
|
|
9307
|
+
transition: background 0.15s;
|
|
9308
|
+
&:hover { background: rgba(255,255,255,0.03); }
|
|
9309
|
+
&:last-child { border-bottom: none; padding-bottom: 0.65rem; }
|
|
9303
9310
|
`;
|
|
9304
9311
|
var StatLabel = styled9.span`
|
|
9305
9312
|
font-size: 0.82rem;
|
|
@@ -9373,8 +9380,12 @@ var TimelineEntry = styled9.div`
|
|
|
9373
9380
|
grid-template-columns: 48px 12px 1fr;
|
|
9374
9381
|
align-items: center;
|
|
9375
9382
|
gap: 0.75rem;
|
|
9376
|
-
padding: 0.55rem 0;
|
|
9383
|
+
padding: 0.55rem 0.75rem;
|
|
9384
|
+
margin: 0 -0.75rem;
|
|
9377
9385
|
border-bottom: ${(p) => p.$last ? "none" : "1px solid rgba(255,255,255,0.03)"};
|
|
9386
|
+
border-radius: 6px;
|
|
9387
|
+
transition: background 0.15s;
|
|
9388
|
+
&:hover { background: rgba(255,255,255,0.03); }
|
|
9378
9389
|
`;
|
|
9379
9390
|
var TimelineYear = styled9.span`
|
|
9380
9391
|
font-size: 0.72rem;
|
|
@@ -9618,8 +9629,12 @@ var SecurityRow = styled9.div`
|
|
|
9618
9629
|
display: flex;
|
|
9619
9630
|
align-items: center;
|
|
9620
9631
|
justify-content: space-between;
|
|
9621
|
-
padding: 0.75rem 0;
|
|
9632
|
+
padding: 0.75rem 0.75rem;
|
|
9633
|
+
margin: 0 -0.75rem;
|
|
9622
9634
|
border-bottom: 1px solid rgba(255,255,255,0.06);
|
|
9635
|
+
border-radius: 6px;
|
|
9636
|
+
transition: background 0.15s;
|
|
9637
|
+
&:hover { background: rgba(255,255,255,0.03); }
|
|
9623
9638
|
`;
|
|
9624
9639
|
var SecurityLabel = styled9.span`
|
|
9625
9640
|
font-size: 0.82rem;
|