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.
- package/dist/web/index.cjs +5 -2
- package/dist/web/index.js +5 -2
- package/package.json +1 -1
package/dist/web/index.cjs
CHANGED
|
@@ -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
|
-
|
|
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
|
-
|
|
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