@loafmarkets/ui 0.1.155 → 0.1.157
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 +13 -14
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +13 -14
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8622,7 +8622,7 @@ function PropertyOverview({
|
|
|
8622
8622
|
onClose: () => setShowDividendHistory(false)
|
|
8623
8623
|
}
|
|
8624
8624
|
),
|
|
8625
|
-
galleryImages.length > 0 && /* @__PURE__ */ jsx(
|
|
8625
|
+
galleryImages.length > 0 && /* @__PURE__ */ jsx(GalleryBreakout, { children: /* @__PURE__ */ jsx(
|
|
8626
8626
|
GalleryMapSection,
|
|
8627
8627
|
{
|
|
8628
8628
|
images: galleryImages.map((img) => ({ src: img.imageUrl, title: img.title, subtitle: img.subtitle })),
|
|
@@ -8632,7 +8632,7 @@ function PropertyOverview({
|
|
|
8632
8632
|
tokenName,
|
|
8633
8633
|
onPhotoClick: onPhotosClick
|
|
8634
8634
|
}
|
|
8635
|
-
),
|
|
8635
|
+
) }),
|
|
8636
8636
|
/* @__PURE__ */ jsxs(Section, { children: [
|
|
8637
8637
|
/* @__PURE__ */ jsx(SectionHeader, { children: "Asset Details" }),
|
|
8638
8638
|
/* @__PURE__ */ jsxs(AssetPanelsGrid, { children: [
|
|
@@ -8735,22 +8735,12 @@ function PropertyOverview({
|
|
|
8735
8735
|
] }),
|
|
8736
8736
|
/* @__PURE__ */ jsx(SecurityRowRight, { children: /* @__PURE__ */ jsx(SecurityRowLinks, { children: /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "SPV Constitution" }) }) })
|
|
8737
8737
|
] }),
|
|
8738
|
-
/* @__PURE__ */ jsxs(SecurityRow, { children: [
|
|
8738
|
+
/* @__PURE__ */ jsxs(SecurityRow, { $noBorder: true, children: [
|
|
8739
8739
|
/* @__PURE__ */ jsxs(SecurityRowLeft, { children: [
|
|
8740
8740
|
/* @__PURE__ */ jsx(SecurityRowLabel, { children: "Independent Valuation" }),
|
|
8741
|
-
/* @__PURE__ */ jsx(
|
|
8741
|
+
/* @__PURE__ */ jsx(SecurityRowLogo, { children: /* @__PURE__ */ jsx("img", { src: "/savills.png", alt: "Savills", style: { height: "18px", filter: "brightness(0) invert(1)", opacity: 0.8 } }) })
|
|
8742
8742
|
] }),
|
|
8743
8743
|
/* @__PURE__ */ jsx(SecurityRowRight, { children: /* @__PURE__ */ jsx(SecurityRowLinks, { children: /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "Valuation Report" }) }) })
|
|
8744
|
-
] }),
|
|
8745
|
-
/* @__PURE__ */ jsxs(SecurityRow, { $noBorder: true, children: [
|
|
8746
|
-
/* @__PURE__ */ jsxs(SecurityRowLeft, { children: [
|
|
8747
|
-
/* @__PURE__ */ jsx(SecurityRowLabel, { children: "Data Protection" }),
|
|
8748
|
-
/* @__PURE__ */ jsxs(SecurityRowValue, { children: [
|
|
8749
|
-
/* @__PURE__ */ jsx(SecurityStatusDot, {}),
|
|
8750
|
-
"Compliant \u2014 Australian Privacy Act"
|
|
8751
|
-
] })
|
|
8752
|
-
] }),
|
|
8753
|
-
/* @__PURE__ */ jsx(SecurityRowRight, { children: /* @__PURE__ */ jsx(SecurityRowLinks, { children: /* @__PURE__ */ jsx(SecurityDocLink, { href: "#documents", children: "DPA Agreement" }) }) })
|
|
8754
8744
|
] })
|
|
8755
8745
|
] })
|
|
8756
8746
|
] })
|
|
@@ -8873,6 +8863,15 @@ var Wrapper = styled9.div`
|
|
|
8873
8863
|
flex-direction: column;
|
|
8874
8864
|
gap: 1.5rem;
|
|
8875
8865
|
`;
|
|
8866
|
+
var GalleryBreakout = styled9.div`
|
|
8867
|
+
width: 100vw;
|
|
8868
|
+
position: relative;
|
|
8869
|
+
left: 50%;
|
|
8870
|
+
margin-left: -50vw;
|
|
8871
|
+
padding: 0 clamp(1rem, 2vw, 2rem);
|
|
8872
|
+
box-sizing: border-box;
|
|
8873
|
+
max-width: 100vw;
|
|
8874
|
+
`;
|
|
8876
8875
|
var Section = styled9.div`
|
|
8877
8876
|
background: #111;
|
|
8878
8877
|
border-radius: 12px;
|