@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.js
CHANGED
|
@@ -8648,7 +8648,7 @@ function PropertyOverview({
|
|
|
8648
8648
|
onClose: () => setShowDividendHistory(false)
|
|
8649
8649
|
}
|
|
8650
8650
|
),
|
|
8651
|
-
galleryImages.length > 0 && /* @__PURE__ */ jsxRuntime.jsx(
|
|
8651
|
+
galleryImages.length > 0 && /* @__PURE__ */ jsxRuntime.jsx(GalleryBreakout, { children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
8652
8652
|
GalleryMapSection,
|
|
8653
8653
|
{
|
|
8654
8654
|
images: galleryImages.map((img) => ({ src: img.imageUrl, title: img.title, subtitle: img.subtitle })),
|
|
@@ -8658,7 +8658,7 @@ function PropertyOverview({
|
|
|
8658
8658
|
tokenName,
|
|
8659
8659
|
onPhotoClick: onPhotosClick
|
|
8660
8660
|
}
|
|
8661
|
-
),
|
|
8661
|
+
) }),
|
|
8662
8662
|
/* @__PURE__ */ jsxRuntime.jsxs(Section, { children: [
|
|
8663
8663
|
/* @__PURE__ */ jsxRuntime.jsx(SectionHeader, { children: "Asset Details" }),
|
|
8664
8664
|
/* @__PURE__ */ jsxRuntime.jsxs(AssetPanelsGrid, { children: [
|
|
@@ -8761,22 +8761,12 @@ function PropertyOverview({
|
|
|
8761
8761
|
] }),
|
|
8762
8762
|
/* @__PURE__ */ jsxRuntime.jsx(SecurityRowRight, { children: /* @__PURE__ */ jsxRuntime.jsx(SecurityRowLinks, { children: /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "SPV Constitution" }) }) })
|
|
8763
8763
|
] }),
|
|
8764
|
-
/* @__PURE__ */ jsxRuntime.jsxs(SecurityRow, { children: [
|
|
8764
|
+
/* @__PURE__ */ jsxRuntime.jsxs(SecurityRow, { $noBorder: true, children: [
|
|
8765
8765
|
/* @__PURE__ */ jsxRuntime.jsxs(SecurityRowLeft, { children: [
|
|
8766
8766
|
/* @__PURE__ */ jsxRuntime.jsx(SecurityRowLabel, { children: "Independent Valuation" }),
|
|
8767
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8767
|
+
/* @__PURE__ */ jsxRuntime.jsx(SecurityRowLogo, { children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "/savills.png", alt: "Savills", style: { height: "18px", filter: "brightness(0) invert(1)", opacity: 0.8 } }) })
|
|
8768
8768
|
] }),
|
|
8769
8769
|
/* @__PURE__ */ jsxRuntime.jsx(SecurityRowRight, { children: /* @__PURE__ */ jsxRuntime.jsx(SecurityRowLinks, { children: /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "Valuation Report" }) }) })
|
|
8770
|
-
] }),
|
|
8771
|
-
/* @__PURE__ */ jsxRuntime.jsxs(SecurityRow, { $noBorder: true, children: [
|
|
8772
|
-
/* @__PURE__ */ jsxRuntime.jsxs(SecurityRowLeft, { children: [
|
|
8773
|
-
/* @__PURE__ */ jsxRuntime.jsx(SecurityRowLabel, { children: "Data Protection" }),
|
|
8774
|
-
/* @__PURE__ */ jsxRuntime.jsxs(SecurityRowValue, { children: [
|
|
8775
|
-
/* @__PURE__ */ jsxRuntime.jsx(SecurityStatusDot, {}),
|
|
8776
|
-
"Compliant \u2014 Australian Privacy Act"
|
|
8777
|
-
] })
|
|
8778
|
-
] }),
|
|
8779
|
-
/* @__PURE__ */ jsxRuntime.jsx(SecurityRowRight, { children: /* @__PURE__ */ jsxRuntime.jsx(SecurityRowLinks, { children: /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "DPA Agreement" }) }) })
|
|
8780
8770
|
] })
|
|
8781
8771
|
] })
|
|
8782
8772
|
] })
|
|
@@ -8899,6 +8889,15 @@ var Wrapper = styled9__default.default.div`
|
|
|
8899
8889
|
flex-direction: column;
|
|
8900
8890
|
gap: 1.5rem;
|
|
8901
8891
|
`;
|
|
8892
|
+
var GalleryBreakout = styled9__default.default.div`
|
|
8893
|
+
width: 100vw;
|
|
8894
|
+
position: relative;
|
|
8895
|
+
left: 50%;
|
|
8896
|
+
margin-left: -50vw;
|
|
8897
|
+
padding: 0 clamp(1rem, 2vw, 2rem);
|
|
8898
|
+
box-sizing: border-box;
|
|
8899
|
+
max-width: 100vw;
|
|
8900
|
+
`;
|
|
8902
8901
|
var Section = styled9__default.default.div`
|
|
8903
8902
|
background: #111;
|
|
8904
8903
|
border-radius: 12px;
|