kaleido-ui 0.1.101 → 0.1.102

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.
@@ -4581,11 +4581,13 @@ function ActivityList({
4581
4581
  onSubAmountInfo: item.onSubAmountInfo,
4582
4582
  timestamp: item.timestamp,
4583
4583
  onClick: () => onExpandedChange?.(isExpanded ? null : item.id),
4584
- className: isExpanded ? "rounded-b-none" : void 0
4584
+ className: "relative z-[1]"
4585
4585
  }
4586
4586
  ),
4587
- isExpanded && /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: "bg-gradient-to-b from-white/[0.025] to-primary/[0.035] shadow-inner animate-in slide-in-from-top-2 duration-300", children: [
4588
- /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("div", { "aria-hidden": true, className: "h-2.5 bg-gradient-to-b from-black/25 to-transparent" }),
4587
+ isExpanded && // -mt-4/pt-4 slides the details up behind the card's bottom
4588
+ // radius, so the corner notches show the details' own
4589
+ // background instead of the darker container.
4590
+ /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: "-mt-4 bg-gradient-to-b from-white/[0.025] to-primary/[0.035] pt-4 shadow-inner animate-in slide-in-from-top-2 duration-300", children: [
4589
4591
  (item.network || item.label) && /* @__PURE__ */ (0, import_jsx_runtime41.jsxs)("div", { className: "flex items-center gap-1.5 px-3 py-2.5", children: [
4590
4592
  item.network && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)(NetworkBadge, { network: item.network, showLabel: true }),
4591
4593
  item.label && /* @__PURE__ */ (0, import_jsx_runtime41.jsx)("span", { className: "text-xxs font-medium text-muted-foreground", children: item.label })
package/dist/web/index.js CHANGED
@@ -4399,11 +4399,13 @@ function ActivityList({
4399
4399
  onSubAmountInfo: item.onSubAmountInfo,
4400
4400
  timestamp: item.timestamp,
4401
4401
  onClick: () => onExpandedChange?.(isExpanded ? null : item.id),
4402
- className: isExpanded ? "rounded-b-none" : void 0
4402
+ className: "relative z-[1]"
4403
4403
  }
4404
4404
  ),
4405
- isExpanded && /* @__PURE__ */ jsxs28("div", { className: "bg-gradient-to-b from-white/[0.025] to-primary/[0.035] shadow-inner animate-in slide-in-from-top-2 duration-300", children: [
4406
- /* @__PURE__ */ jsx41("div", { "aria-hidden": true, className: "h-2.5 bg-gradient-to-b from-black/25 to-transparent" }),
4405
+ isExpanded && // -mt-4/pt-4 slides the details up behind the card's bottom
4406
+ // radius, so the corner notches show the details' own
4407
+ // background instead of the darker container.
4408
+ /* @__PURE__ */ jsxs28("div", { className: "-mt-4 bg-gradient-to-b from-white/[0.025] to-primary/[0.035] pt-4 shadow-inner animate-in slide-in-from-top-2 duration-300", children: [
4407
4409
  (item.network || item.label) && /* @__PURE__ */ jsxs28("div", { className: "flex items-center gap-1.5 px-3 py-2.5", children: [
4408
4410
  item.network && /* @__PURE__ */ jsx41(NetworkBadge, { network: item.network, showLabel: true }),
4409
4411
  item.label && /* @__PURE__ */ jsx41("span", { className: "text-xxs font-medium text-muted-foreground", children: item.label })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kaleido-ui",
3
- "version": "0.1.101",
3
+ "version": "0.1.102",
4
4
  "description": "KaleidoSwap shared UI library — design tokens, web components (Tailwind + Radix), and React Native components extending WDK UI Kit",
5
5
  "license": "MIT",
6
6
  "type": "module",