@homebound/beam 3.92.0 → 3.92.1
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.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24655,7 +24655,7 @@ function Card(props) {
|
|
|
24655
24655
|
icon: "verticalDots",
|
|
24656
24656
|
color: isList ? "--b-on-surface-muted" /* OnSurfaceMuted */ : "--b-on-primary" /* OnPrimary */
|
|
24657
24657
|
}, items: buttonMenuItems }) }),
|
|
24658
|
-
tag && /* @__PURE__ */ jsx194("div", { className: "absolute left1 top_4px", children: /* @__PURE__ */ jsx194(Tag, { type: tag
|
|
24658
|
+
tag && !isList && /* @__PURE__ */ jsx194("div", { className: "absolute left1 top_4px", children: /* @__PURE__ */ jsx194(Tag, { type: tag.type, text: tag.text, ...tid.tag }) }),
|
|
24659
24659
|
/* @__PURE__ */ jsxs97("div", { className: "df fdc aifs gap1", children: [
|
|
24660
24660
|
/* @__PURE__ */ jsxs97("div", { children: [
|
|
24661
24661
|
/* @__PURE__ */ jsx194("div", { ...trussProps108({
|
|
@@ -24680,7 +24680,8 @@ function Card(props) {
|
|
|
24680
24680
|
} : {}
|
|
24681
24681
|
}), ...tid.title, children: title })
|
|
24682
24682
|
] }),
|
|
24683
|
-
/* @__PURE__ */ jsx194("div", { ...tid.details, children: detailContent })
|
|
24683
|
+
/* @__PURE__ */ jsx194("div", { ...tid.details, children: detailContent }),
|
|
24684
|
+
tag && isList && /* @__PURE__ */ jsx194(Tag, { type: tag.type, text: tag.text, ...tid.tag })
|
|
24684
24685
|
] })
|
|
24685
24686
|
] });
|
|
24686
24687
|
}
|