kaleido-ui 0.1.18 → 0.1.20

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.
@@ -6,6 +6,19 @@
6
6
  /* ── Material Symbols ──────────────────────────────────────────────────── */
7
7
  .material-symbols-outlined {
8
8
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
9
+ /*
10
+ * Glyph spans default to baseline alignment with the parent's line-height,
11
+ * which makes Material Symbols render a few pixels above text in flex
12
+ * rows next to <img>-based icons. Force the glyph to render centered
13
+ * within its own box (line-height 1, vertical-align middle, inline-flex
14
+ * items-center) so it sits on the same visual axis as adjacent text and
15
+ * image icons everywhere they're used.
16
+ */
17
+ display: inline-flex;
18
+ align-items: center;
19
+ justify-content: center;
20
+ line-height: 1;
21
+ vertical-align: middle;
9
22
  }
10
23
  .material-symbols-outlined.filled {
11
24
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
@@ -3672,7 +3672,7 @@ var import_jsx_runtime39 = require("react/jsx-runtime");
3672
3672
  function getActivityNetworkFilterIcon(filter) {
3673
3673
  switch (filter) {
3674
3674
  case "onchain":
3675
- return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(AppIcon, { name: "onchain", className: "size-icon-sm" });
3675
+ return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(AppIcon, { name: "onchain", size: "xs", className: "size-icon-sm" });
3676
3676
  case "lightning":
3677
3677
  return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(LightningNetworkIcon, { className: "size-3.5", alt: "" });
3678
3678
  case "spark":
@@ -3680,7 +3680,7 @@ function getActivityNetworkFilterIcon(filter) {
3680
3680
  case "arkade":
3681
3681
  return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(ArkadeNetworkIcon, { className: "size-3.5 rounded", alt: "" });
3682
3682
  default:
3683
- return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(AppIcon, { name: "allNetworks", className: "size-icon-sm" });
3683
+ return /* @__PURE__ */ (0, import_jsx_runtime39.jsx)(AppIcon, { name: "allNetworks", size: "xs", className: "size-icon-sm" });
3684
3684
  }
3685
3685
  }
3686
3686
  function ActivityNetworkFilters({
@@ -3698,7 +3698,12 @@ function ActivityNetworkFilters({
3698
3698
  type: "button",
3699
3699
  onClick: () => onChange(filter.value),
3700
3700
  className: cn(
3701
- "inline-flex shrink-0 items-center gap-1.5 rounded-full px-2.5 py-1.5 text-xxs font-bold uppercase tracking-wider transition-all active:scale-95",
3701
+ // `leading-none` on the button normalizes the line-box for
3702
+ // both the icon span and the label span; without it the
3703
+ // icon (now `leading-none` from Icon primitive) and the text
3704
+ // (default leading) get center-aligned along different
3705
+ // visual axes and the glyph drifts above the text.
3706
+ "inline-flex shrink-0 items-center gap-1.5 rounded-full px-2.5 py-1.5 text-xxs font-bold uppercase tracking-wider leading-none transition-all active:scale-95",
3702
3707
  isActive ? "bg-primary/15 text-primary shadow-inner hover:bg-primary/20" : "bg-surface-card text-white/45 hover:bg-surface-elevated hover:text-white/80"
3703
3708
  ),
3704
3709
  children: [
package/dist/web/index.js CHANGED
@@ -3517,7 +3517,7 @@ import { jsx as jsx39, jsxs as jsxs27 } from "react/jsx-runtime";
3517
3517
  function getActivityNetworkFilterIcon(filter) {
3518
3518
  switch (filter) {
3519
3519
  case "onchain":
3520
- return /* @__PURE__ */ jsx39(AppIcon, { name: "onchain", className: "size-icon-sm" });
3520
+ return /* @__PURE__ */ jsx39(AppIcon, { name: "onchain", size: "xs", className: "size-icon-sm" });
3521
3521
  case "lightning":
3522
3522
  return /* @__PURE__ */ jsx39(LightningNetworkIcon, { className: "size-3.5", alt: "" });
3523
3523
  case "spark":
@@ -3525,7 +3525,7 @@ function getActivityNetworkFilterIcon(filter) {
3525
3525
  case "arkade":
3526
3526
  return /* @__PURE__ */ jsx39(ArkadeNetworkIcon, { className: "size-3.5 rounded", alt: "" });
3527
3527
  default:
3528
- return /* @__PURE__ */ jsx39(AppIcon, { name: "allNetworks", className: "size-icon-sm" });
3528
+ return /* @__PURE__ */ jsx39(AppIcon, { name: "allNetworks", size: "xs", className: "size-icon-sm" });
3529
3529
  }
3530
3530
  }
3531
3531
  function ActivityNetworkFilters({
@@ -3543,7 +3543,12 @@ function ActivityNetworkFilters({
3543
3543
  type: "button",
3544
3544
  onClick: () => onChange(filter.value),
3545
3545
  className: cn(
3546
- "inline-flex shrink-0 items-center gap-1.5 rounded-full px-2.5 py-1.5 text-xxs font-bold uppercase tracking-wider transition-all active:scale-95",
3546
+ // `leading-none` on the button normalizes the line-box for
3547
+ // both the icon span and the label span; without it the
3548
+ // icon (now `leading-none` from Icon primitive) and the text
3549
+ // (default leading) get center-aligned along different
3550
+ // visual axes and the glyph drifts above the text.
3551
+ "inline-flex shrink-0 items-center gap-1.5 rounded-full px-2.5 py-1.5 text-xxs font-bold uppercase tracking-wider leading-none transition-all active:scale-95",
3547
3552
  isActive ? "bg-primary/15 text-primary shadow-inner hover:bg-primary/20" : "bg-surface-card text-white/45 hover:bg-surface-elevated hover:text-white/80"
3548
3553
  ),
3549
3554
  children: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kaleido-ui",
3
- "version": "0.1.18",
3
+ "version": "0.1.20",
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",