@loafmarkets/ui 0.1.208 → 0.1.209
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 +28 -44
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +28 -44
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8601,46 +8601,30 @@ function PropertyOverview({
|
|
|
8601
8601
|
/* @__PURE__ */ jsx(PrimaryBtn, { onClick: onTradeClick, children: tradeButtonLabel })
|
|
8602
8602
|
] })
|
|
8603
8603
|
] }),
|
|
8604
|
-
/* @__PURE__ */
|
|
8605
|
-
/* @__PURE__ */
|
|
8606
|
-
|
|
8607
|
-
|
|
8608
|
-
|
|
8609
|
-
/* @__PURE__ */
|
|
8610
|
-
|
|
8611
|
-
|
|
8612
|
-
|
|
8613
|
-
{
|
|
8614
|
-
|
|
8615
|
-
|
|
8616
|
-
|
|
8617
|
-
|
|
8618
|
-
|
|
8619
|
-
|
|
8620
|
-
|
|
8621
|
-
|
|
8622
|
-
|
|
8623
|
-
|
|
8624
|
-
|
|
8625
|
-
)
|
|
8626
|
-
] })
|
|
8627
|
-
] }, item.label))
|
|
8628
|
-
] }),
|
|
8629
|
-
/* @__PURE__ */ jsx(TrustBadgesCard, { children: /* @__PURE__ */ jsxs(TrustBadgesRow, { children: [
|
|
8630
|
-
/* @__PURE__ */ jsxs(TrustBadge, { children: [
|
|
8631
|
-
/* @__PURE__ */ jsx(TrustBadgeLogoWrap, { children: /* @__PURE__ */ jsx("img", { src: "/Baker_McKenzie.png", alt: "Baker McKenzie", style: { height: 38, filter: "grayscale(1) brightness(10)", opacity: 0.5 } }) }),
|
|
8632
|
-
/* @__PURE__ */ jsx(TrustBadgeLabel, { children: "Legal Structuring" })
|
|
8633
|
-
] }),
|
|
8634
|
-
/* @__PURE__ */ jsxs(TrustBadge, { children: [
|
|
8635
|
-
/* @__PURE__ */ jsx(TrustBadgeLogoWrap, { children: /* @__PURE__ */ jsx("img", { src: "/NSW_registry.png", alt: "NSW Land Registry", style: { height: 40, filter: "grayscale(1) brightness(10)", opacity: 0.5 } }) }),
|
|
8636
|
-
/* @__PURE__ */ jsx(TrustBadgeLabel, { children: "Land Title" })
|
|
8637
|
-
] }),
|
|
8638
|
-
/* @__PURE__ */ jsxs(TrustBadge, { children: [
|
|
8639
|
-
/* @__PURE__ */ jsx(TrustBadgeLogoWrap, { children: /* @__PURE__ */ jsx("img", { src: "/savills.png", alt: "Savills", style: { height: 38, borderRadius: 3, filter: "grayscale(1) brightness(1.2) contrast(1.6)", opacity: 0.7 } }) }),
|
|
8640
|
-
/* @__PURE__ */ jsx(TrustBadgeLabel, { children: "Valuation" })
|
|
8604
|
+
/* @__PURE__ */ jsx(AboutRight, { children: /* @__PURE__ */ jsxs(TokenDetailsCard, { children: [
|
|
8605
|
+
/* @__PURE__ */ jsx(TokenDetailsTitle, { children: "Token Details" }),
|
|
8606
|
+
tokenDetailsItems.map((item) => /* @__PURE__ */ jsxs(TokenDetailRow, { children: [
|
|
8607
|
+
/* @__PURE__ */ jsx(TokenDetailLabel, { children: item.label }),
|
|
8608
|
+
/* @__PURE__ */ jsxs(TokenDetailValue, { $mono: !!item.mono, children: [
|
|
8609
|
+
item.link ? /* @__PURE__ */ jsx("a", { href: item.link, target: "_blank", rel: "noopener noreferrer", style: { color: "#3380FF", textDecoration: "none" }, children: item.value }) : item.value,
|
|
8610
|
+
item.copyValue && /* @__PURE__ */ jsx(
|
|
8611
|
+
CopyBtn,
|
|
8612
|
+
{
|
|
8613
|
+
onClick: () => {
|
|
8614
|
+
navigator.clipboard.writeText(item.copyValue);
|
|
8615
|
+
setCopiedAddress(true);
|
|
8616
|
+
setTimeout(() => setCopiedAddress(false), 1500);
|
|
8617
|
+
},
|
|
8618
|
+
title: copiedAddress ? "Copied!" : "Copy address",
|
|
8619
|
+
children: copiedAddress ? /* @__PURE__ */ jsx("svg", { width: "12", height: "12", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: /* @__PURE__ */ jsx("path", { d: "M20 6L9 17l-5-5" }) }) : /* @__PURE__ */ jsxs("svg", { width: "12", height: "12", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "2", children: [
|
|
8620
|
+
/* @__PURE__ */ jsx("rect", { x: "9", y: "9", width: "13", height: "13", rx: "2" }),
|
|
8621
|
+
/* @__PURE__ */ jsx("path", { d: "M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1" })
|
|
8622
|
+
] })
|
|
8623
|
+
}
|
|
8624
|
+
)
|
|
8641
8625
|
] })
|
|
8642
|
-
] }
|
|
8643
|
-
] })
|
|
8626
|
+
] }, item.label))
|
|
8627
|
+
] }) })
|
|
8644
8628
|
] })
|
|
8645
8629
|
] }),
|
|
8646
8630
|
/* @__PURE__ */ jsxs(Section, { children: [
|
|
@@ -9217,7 +9201,7 @@ var TokenDetailValue = styled9.span`
|
|
|
9217
9201
|
font-weight: 500;
|
|
9218
9202
|
font-family: ${(p) => p.$mono ? "'SF Mono', 'Fira Code', monospace" : "inherit"};
|
|
9219
9203
|
`;
|
|
9220
|
-
|
|
9204
|
+
styled9.div`
|
|
9221
9205
|
background: rgba(255,255,255,0.025);
|
|
9222
9206
|
border: 1px solid rgba(255,255,255,0.06);
|
|
9223
9207
|
border-radius: 10px;
|
|
@@ -9231,12 +9215,12 @@ styled9.div`
|
|
|
9231
9215
|
font-weight: 500;
|
|
9232
9216
|
margin-bottom: 0.85rem;
|
|
9233
9217
|
`;
|
|
9234
|
-
|
|
9218
|
+
styled9.div`
|
|
9235
9219
|
display: flex;
|
|
9236
9220
|
gap: 0.5rem;
|
|
9237
9221
|
justify-content: space-between;
|
|
9238
9222
|
`;
|
|
9239
|
-
|
|
9223
|
+
styled9.div`
|
|
9240
9224
|
display: flex;
|
|
9241
9225
|
flex-direction: column;
|
|
9242
9226
|
align-items: center;
|
|
@@ -9244,13 +9228,13 @@ var TrustBadge = styled9.div`
|
|
|
9244
9228
|
flex: 1;
|
|
9245
9229
|
min-width: 0;
|
|
9246
9230
|
`;
|
|
9247
|
-
|
|
9231
|
+
styled9.div`
|
|
9248
9232
|
display: flex;
|
|
9249
9233
|
align-items: center;
|
|
9250
9234
|
justify-content: center;
|
|
9251
9235
|
height: 44px;
|
|
9252
9236
|
`;
|
|
9253
|
-
|
|
9237
|
+
styled9.span`
|
|
9254
9238
|
font-size: 0.62rem;
|
|
9255
9239
|
color: rgba(255,255,255,0.35);
|
|
9256
9240
|
font-weight: 400;
|