@loafmarkets/ui 0.1.206 → 0.1.208
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 +27 -8
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +27 -8
- 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
|
] })
|
|
@@ -9194,10 +9197,14 @@ var TokenDetailRow = styled9.div`
|
|
|
9194
9197
|
display: flex;
|
|
9195
9198
|
justify-content: space-between;
|
|
9196
9199
|
align-items: center;
|
|
9197
|
-
padding: 0.55rem 0;
|
|
9200
|
+
padding: 0.55rem 0.75rem;
|
|
9201
|
+
margin: 0 -0.75rem;
|
|
9198
9202
|
border-bottom: 1px solid rgba(255,255,255,0.04);
|
|
9199
|
-
|
|
9200
|
-
|
|
9203
|
+
border-radius: 6px;
|
|
9204
|
+
transition: background 0.15s;
|
|
9205
|
+
&:hover { background: rgba(255,255,255,0.03); }
|
|
9206
|
+
&:last-child { border-bottom: none; padding-bottom: 0.55rem; }
|
|
9207
|
+
&:first-of-type { padding-top: 0.55rem; }
|
|
9201
9208
|
`;
|
|
9202
9209
|
var TokenDetailLabel = styled9.span`
|
|
9203
9210
|
font-size: 0.82rem;
|
|
@@ -9297,9 +9304,13 @@ var StatRow = styled9.div`
|
|
|
9297
9304
|
display: flex;
|
|
9298
9305
|
justify-content: space-between;
|
|
9299
9306
|
align-items: center;
|
|
9300
|
-
padding: 0.65rem 0;
|
|
9307
|
+
padding: 0.65rem 0.75rem;
|
|
9308
|
+
margin: 0 -0.75rem;
|
|
9301
9309
|
border-bottom: 1px solid rgba(255,255,255,0.04);
|
|
9302
|
-
|
|
9310
|
+
border-radius: 6px;
|
|
9311
|
+
transition: background 0.15s;
|
|
9312
|
+
&:hover { background: rgba(255,255,255,0.03); }
|
|
9313
|
+
&:last-child { border-bottom: none; padding-bottom: 0.65rem; }
|
|
9303
9314
|
`;
|
|
9304
9315
|
var StatLabel = styled9.span`
|
|
9305
9316
|
font-size: 0.82rem;
|
|
@@ -9373,8 +9384,12 @@ var TimelineEntry = styled9.div`
|
|
|
9373
9384
|
grid-template-columns: 48px 12px 1fr;
|
|
9374
9385
|
align-items: center;
|
|
9375
9386
|
gap: 0.75rem;
|
|
9376
|
-
padding: 0.55rem 0;
|
|
9387
|
+
padding: 0.55rem 0.75rem;
|
|
9388
|
+
margin: 0 -0.75rem;
|
|
9377
9389
|
border-bottom: ${(p) => p.$last ? "none" : "1px solid rgba(255,255,255,0.03)"};
|
|
9390
|
+
border-radius: 6px;
|
|
9391
|
+
transition: background 0.15s;
|
|
9392
|
+
&:hover { background: rgba(255,255,255,0.03); }
|
|
9378
9393
|
`;
|
|
9379
9394
|
var TimelineYear = styled9.span`
|
|
9380
9395
|
font-size: 0.72rem;
|
|
@@ -9618,8 +9633,12 @@ var SecurityRow = styled9.div`
|
|
|
9618
9633
|
display: flex;
|
|
9619
9634
|
align-items: center;
|
|
9620
9635
|
justify-content: space-between;
|
|
9621
|
-
padding: 0.75rem 0;
|
|
9636
|
+
padding: 0.75rem 0.75rem;
|
|
9637
|
+
margin: 0 -0.75rem;
|
|
9622
9638
|
border-bottom: 1px solid rgba(255,255,255,0.06);
|
|
9639
|
+
border-radius: 6px;
|
|
9640
|
+
transition: background 0.15s;
|
|
9641
|
+
&:hover { background: rgba(255,255,255,0.03); }
|
|
9623
9642
|
`;
|
|
9624
9643
|
var SecurityLabel = styled9.span`
|
|
9625
9644
|
font-size: 0.82rem;
|