@ahrowe/ui 0.1.15 → 0.1.16
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +3 -1
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -446,7 +446,9 @@ function He({ className: e = "", title: t = "", subTitle: n = "", thumbnail: r =
|
|
|
446
446
|
className: Be.cardHeaderActions,
|
|
447
447
|
children: Array.isArray(i) ? i.map((e, t) => /* @__PURE__ */ V(Re, {
|
|
448
448
|
title: e.title,
|
|
449
|
-
onClick: e.onClick
|
|
449
|
+
onClick: e.onClick ? (t) => {
|
|
450
|
+
t.stopPropagation(), e.onClick?.(t);
|
|
451
|
+
} : void 0,
|
|
450
452
|
icon: e.icon
|
|
451
453
|
}, t)) : i
|
|
452
454
|
})]
|