@loafmarkets/ui 0.1.224 → 0.1.225
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 +31 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +31 -18
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8717,18 +8717,25 @@ function PropertyOverview({
|
|
|
8717
8717
|
/* @__PURE__ */ jsxRuntime.jsx(SectionHeader, { children: "The Asset" }),
|
|
8718
8718
|
galleryImages.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs(jsxRuntime.Fragment, { children: [
|
|
8719
8719
|
/* @__PURE__ */ jsxRuntime.jsxs(GallerySpecRow, { children: [
|
|
8720
|
-
/* @__PURE__ */ jsxRuntime.
|
|
8721
|
-
|
|
8722
|
-
|
|
8723
|
-
|
|
8724
|
-
|
|
8725
|
-
|
|
8726
|
-
|
|
8727
|
-
|
|
8728
|
-
|
|
8729
|
-
|
|
8730
|
-
|
|
8731
|
-
|
|
8720
|
+
/* @__PURE__ */ jsxRuntime.jsxs(GallerySpecLeft, { children: [
|
|
8721
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8722
|
+
GalleryMapSection,
|
|
8723
|
+
{
|
|
8724
|
+
images: galleryImages.map((img) => ({ src: img.imageUrl, title: img.title, subtitle: img.subtitle })),
|
|
8725
|
+
categories: galleryCategories2,
|
|
8726
|
+
propertyLocation: location,
|
|
8727
|
+
videoUrl,
|
|
8728
|
+
tokenName,
|
|
8729
|
+
onPhotoClick: onPhotosClick,
|
|
8730
|
+
hideMap: true
|
|
8731
|
+
}
|
|
8732
|
+
),
|
|
8733
|
+
/* @__PURE__ */ jsxRuntime.jsx(FeaturesPanel, { children: features.map((item, i) => /* @__PURE__ */ jsxRuntime.jsxs(AssetFeatureItem, { children: [
|
|
8734
|
+
item.icon && /* @__PURE__ */ jsxRuntime.jsx(AssetFeatureIcon, { children: item.icon }),
|
|
8735
|
+
item.value && /* @__PURE__ */ jsxRuntime.jsx(AssetFeatureValue, { children: item.value }),
|
|
8736
|
+
/* @__PURE__ */ jsxRuntime.jsx(AssetFeatureLabel, { children: item.label })
|
|
8737
|
+
] }, i)) })
|
|
8738
|
+
] }),
|
|
8732
8739
|
/* @__PURE__ */ jsxRuntime.jsxs(StatsColumn, { children: [
|
|
8733
8740
|
/* @__PURE__ */ jsxRuntime.jsx(StatsColumnHeader, { children: "Asset Specification" }),
|
|
8734
8741
|
/* @__PURE__ */ jsxRuntime.jsxs(StatRow, { children: [
|
|
@@ -8769,11 +8776,6 @@ function PropertyOverview({
|
|
|
8769
8776
|
/* @__PURE__ */ jsxRuntime.jsx(StatLabel, { children: "5yr Property Growth" }),
|
|
8770
8777
|
/* @__PURE__ */ jsxRuntime.jsx(StatValue, { style: { color: "#4ade80" }, children: "+90%" })
|
|
8771
8778
|
] }),
|
|
8772
|
-
/* @__PURE__ */ jsxRuntime.jsx(AssetFeatureRow, { children: features.map((item, i) => /* @__PURE__ */ jsxRuntime.jsxs(AssetFeatureItem, { children: [
|
|
8773
|
-
item.icon && /* @__PURE__ */ jsxRuntime.jsx(AssetFeatureIcon, { children: item.icon }),
|
|
8774
|
-
item.value && /* @__PURE__ */ jsxRuntime.jsx(AssetFeatureValue, { children: item.value }),
|
|
8775
|
-
/* @__PURE__ */ jsxRuntime.jsx(AssetFeatureLabel, { children: item.label })
|
|
8776
|
-
] }, i)) }),
|
|
8777
8779
|
/* @__PURE__ */ jsxRuntime.jsx(StatsColumnHeader, { style: { marginTop: "1.25rem" }, children: "Capital History" }),
|
|
8778
8780
|
/* @__PURE__ */ jsxRuntime.jsxs(TimelineWrap, { children: [
|
|
8779
8781
|
/* @__PURE__ */ jsxRuntime.jsxs(TimelineEntry, { children: [
|
|
@@ -9948,7 +9950,18 @@ styled9__default.default.span`
|
|
|
9948
9950
|
text-align: right;
|
|
9949
9951
|
color: ${(p) => p.$status === "listed" ? "#D4AF37" : "rgba(255,255,255,0.25)"};
|
|
9950
9952
|
`;
|
|
9951
|
-
var
|
|
9953
|
+
var FeaturesPanel = styled9__default.default.div`
|
|
9954
|
+
display: flex;
|
|
9955
|
+
flex-wrap: wrap;
|
|
9956
|
+
gap: 0.75rem 1.5rem;
|
|
9957
|
+
margin-top: 1.25rem;
|
|
9958
|
+
background: #111111;
|
|
9959
|
+
border: 1px solid rgba(255,255,255,0.1);
|
|
9960
|
+
border-radius: 12px;
|
|
9961
|
+
padding: 1rem 1.25rem;
|
|
9962
|
+
justify-content: center;
|
|
9963
|
+
`;
|
|
9964
|
+
styled9__default.default.div`
|
|
9952
9965
|
display: flex;
|
|
9953
9966
|
flex-wrap: wrap;
|
|
9954
9967
|
gap: 0.5rem 1.25rem;
|