kaleido-ui 0.1.89 → 0.1.90

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.
@@ -7489,7 +7489,9 @@ var ACCOUNT_META = {
7489
7489
  accentBg: "bg-primary/10",
7490
7490
  accentText: "text-primary",
7491
7491
  accentBorder: "border-primary/30",
7492
- icon: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("img", { src: "/icons/rgb/rgb-logo.svg", alt: "", className: "h-2.5 w-2.5 object-contain" })
7492
+ // Bundled RGB mark (protocolIcons) a host-served /icons/rgb/... path
7493
+ // renders as a broken box in consumers that don't ship that asset.
7494
+ icon: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(RgbNetworkIcon, { className: "h-2.5 w-2.5" })
7493
7495
  },
7494
7496
  SPARK: {
7495
7497
  shortLabel: "Spark",
@@ -8603,7 +8605,8 @@ function DepositAssetSelection({
8603
8605
  /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(NetworkBadge, { network: "L1", size: "sm" }),
8604
8606
  /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(NetworkBadge, { network: "LN", size: "sm" }),
8605
8607
  isSparkConnected && /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(NetworkBadge, { network: "Spark", size: "sm" }),
8606
- isArkadeConnected && /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(NetworkBadge, { network: "Arkade", size: "sm" })
8608
+ isArkadeConnected && /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(NetworkBadge, { network: "Arkade", size: "sm" }),
8609
+ isLiquidConnected && /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(NetworkBadge, { network: "Liquid", size: "sm" })
8607
8610
  ] }),
8608
8611
  /* @__PURE__ */ (0, import_jsx_runtime81.jsx)("span", { className: "material-symbols-outlined flex-shrink-0 text-icon-md text-white/20 transition-colors group-hover:text-white/50", children: "arrow_forward" })
8609
8612
  ]
package/dist/web/index.js CHANGED
@@ -7307,7 +7307,9 @@ var ACCOUNT_META = {
7307
7307
  accentBg: "bg-primary/10",
7308
7308
  accentText: "text-primary",
7309
7309
  accentBorder: "border-primary/30",
7310
- icon: /* @__PURE__ */ jsx75("img", { src: "/icons/rgb/rgb-logo.svg", alt: "", className: "h-2.5 w-2.5 object-contain" })
7310
+ // Bundled RGB mark (protocolIcons) a host-served /icons/rgb/... path
7311
+ // renders as a broken box in consumers that don't ship that asset.
7312
+ icon: /* @__PURE__ */ jsx75(RgbNetworkIcon, { className: "h-2.5 w-2.5" })
7311
7313
  },
7312
7314
  SPARK: {
7313
7315
  shortLabel: "Spark",
@@ -8421,7 +8423,8 @@ function DepositAssetSelection({
8421
8423
  /* @__PURE__ */ jsx81(NetworkBadge, { network: "L1", size: "sm" }),
8422
8424
  /* @__PURE__ */ jsx81(NetworkBadge, { network: "LN", size: "sm" }),
8423
8425
  isSparkConnected && /* @__PURE__ */ jsx81(NetworkBadge, { network: "Spark", size: "sm" }),
8424
- isArkadeConnected && /* @__PURE__ */ jsx81(NetworkBadge, { network: "Arkade", size: "sm" })
8426
+ isArkadeConnected && /* @__PURE__ */ jsx81(NetworkBadge, { network: "Arkade", size: "sm" }),
8427
+ isLiquidConnected && /* @__PURE__ */ jsx81(NetworkBadge, { network: "Liquid", size: "sm" })
8425
8428
  ] }),
8426
8429
  /* @__PURE__ */ jsx81("span", { className: "material-symbols-outlined flex-shrink-0 text-icon-md text-white/20 transition-colors group-hover:text-white/50", children: "arrow_forward" })
8427
8430
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kaleido-ui",
3
- "version": "0.1.89",
3
+ "version": "0.1.90",
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",