@loafmarkets/ui 0.1.215 → 0.1.217
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 +5 -6
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +5 -6
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8174,14 +8174,13 @@ function FullMapPopup({ onClose, mapUrl }) {
|
|
|
8174
8174
|
}
|
|
8175
8175
|
var Row = styled9__default.default.div`
|
|
8176
8176
|
display: grid;
|
|
8177
|
-
grid-template-columns:
|
|
8177
|
+
grid-template-columns: 1fr;
|
|
8178
8178
|
gap: 1.5rem;
|
|
8179
8179
|
margin-top: 1.5rem;
|
|
8180
8180
|
max-width: 100%;
|
|
8181
8181
|
overflow: hidden;
|
|
8182
8182
|
box-sizing: border-box;
|
|
8183
8183
|
width: 100%;
|
|
8184
|
-
@media (max-width: 1024px) { grid-template-columns: 1fr; }
|
|
8185
8184
|
`;
|
|
8186
8185
|
var PanelBase = styled9__default.default.div`
|
|
8187
8186
|
background: var(--color-card-darker, #111);
|
|
@@ -8285,7 +8284,7 @@ var CategoryRow = styled9__default.default.div`
|
|
|
8285
8284
|
button[data-active='true'] { background: rgba(212,175,55,0.2); border-color: #D4AF37; color: #D4AF37; }
|
|
8286
8285
|
`;
|
|
8287
8286
|
var MapPanel = styled9__default.default(PanelBase)`
|
|
8288
|
-
min-height:
|
|
8287
|
+
min-height: 350px; padding: 1.5rem;
|
|
8289
8288
|
min-width: 0; overflow: hidden;
|
|
8290
8289
|
`;
|
|
8291
8290
|
var MapFrame = styled9__default.default.div`
|
|
@@ -8714,7 +8713,7 @@ function PropertyOverview({
|
|
|
8714
8713
|
/* @__PURE__ */ jsxRuntime.jsxs(Section, { children: [
|
|
8715
8714
|
/* @__PURE__ */ jsxRuntime.jsx(SectionHeader, { children: "The Asset" }),
|
|
8716
8715
|
galleryImages.length > 0 && /* @__PURE__ */ jsxRuntime.jsxs(AssetBentoGrid, { children: [
|
|
8717
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8716
|
+
/* @__PURE__ */ jsxRuntime.jsx(
|
|
8718
8717
|
GalleryMapSection,
|
|
8719
8718
|
{
|
|
8720
8719
|
images: galleryImages.map((img) => ({ src: img.imageUrl, title: img.title, subtitle: img.subtitle })),
|
|
@@ -8724,7 +8723,7 @@ function PropertyOverview({
|
|
|
8724
8723
|
tokenName,
|
|
8725
8724
|
onPhotoClick: onPhotosClick
|
|
8726
8725
|
}
|
|
8727
|
-
)
|
|
8726
|
+
),
|
|
8728
8727
|
/* @__PURE__ */ jsxRuntime.jsxs(AssetBentoNarratives, { children: [
|
|
8729
8728
|
/* @__PURE__ */ jsxRuntime.jsxs(NarrativeCard, { children: [
|
|
8730
8729
|
/* @__PURE__ */ jsxRuntime.jsx(NarrativeIcon, { children: /* @__PURE__ */ jsxRuntime.jsx("svg", { width: "18", height: "18", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", children: /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M22 12h-4l-3 9L9 3l-3 9H2" }) }) }),
|
|
@@ -9168,7 +9167,7 @@ var AssetBentoGrid = styled9__default.default.div`
|
|
|
9168
9167
|
gap: 0.75rem;
|
|
9169
9168
|
margin-bottom: 1.25rem;
|
|
9170
9169
|
`;
|
|
9171
|
-
|
|
9170
|
+
styled9__default.default.div`
|
|
9172
9171
|
border-radius: 12px;
|
|
9173
9172
|
overflow: hidden;
|
|
9174
9173
|
border: 1px solid rgba(255,255,255,0.06);
|