kaleido-ui 0.1.89 → 0.1.91
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 +24 -2
- package/dist/web/index.d.cts +1 -1
- package/dist/web/index.d.ts +1 -1
- package/dist/web/index.js +24 -2
- package/package.json +1 -1
package/dist/web/index.cjs
CHANGED
|
@@ -7481,6 +7481,16 @@ var NETWORK_CONFIG = {
|
|
|
7481
7481
|
qrBorder: "border-network-arkade/30",
|
|
7482
7482
|
qrGlow: qrGlowStyle(colors.network.arkade),
|
|
7483
7483
|
icon: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("img", { src: "/icons/arkade/arkade-icon.svg", className: "h-3 w-3 rounded-sm", alt: "" })
|
|
7484
|
+
},
|
|
7485
|
+
liquid: {
|
|
7486
|
+
label: "Liquid",
|
|
7487
|
+
color: colors.network.liquid,
|
|
7488
|
+
bg: "bg-network-liquid/15",
|
|
7489
|
+
text: "text-network-liquid",
|
|
7490
|
+
border: "border-network-liquid/40",
|
|
7491
|
+
qrBorder: "border-network-liquid/30",
|
|
7492
|
+
qrGlow: qrGlowStyle(colors.network.liquid),
|
|
7493
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(LiquidNetworkIcon, { className: "h-3 w-3" })
|
|
7484
7494
|
}
|
|
7485
7495
|
};
|
|
7486
7496
|
var ACCOUNT_META = {
|
|
@@ -7489,7 +7499,9 @@ var ACCOUNT_META = {
|
|
|
7489
7499
|
accentBg: "bg-primary/10",
|
|
7490
7500
|
accentText: "text-primary",
|
|
7491
7501
|
accentBorder: "border-primary/30",
|
|
7492
|
-
|
|
7502
|
+
// Bundled RGB mark (protocolIcons) — a host-served /icons/rgb/... path
|
|
7503
|
+
// renders as a broken box in consumers that don't ship that asset.
|
|
7504
|
+
icon: /* @__PURE__ */ (0, import_jsx_runtime75.jsx)(RgbNetworkIcon, { className: "h-2.5 w-2.5" })
|
|
7493
7505
|
},
|
|
7494
7506
|
SPARK: {
|
|
7495
7507
|
shortLabel: "Spark",
|
|
@@ -7639,6 +7651,15 @@ var NETWORK_INFO = {
|
|
|
7639
7651
|
"Boarding address accepts on-chain Bitcoin and joins the next round",
|
|
7640
7652
|
"VTXOs require periodic refresh to stay valid"
|
|
7641
7653
|
]
|
|
7654
|
+
},
|
|
7655
|
+
liquid: {
|
|
7656
|
+
title: "Liquid",
|
|
7657
|
+
detail: "Bitcoin sidechain transaction (L-BTC or Liquid assets). One confidential address receives any Liquid asset.",
|
|
7658
|
+
bullets: [
|
|
7659
|
+
"Blocks every minute; ~2 confirmations to settle",
|
|
7660
|
+
"Amounts are confidential on-chain by default",
|
|
7661
|
+
"Sender needs a Liquid wallet (L-BTC or Liquid assets)"
|
|
7662
|
+
]
|
|
7642
7663
|
}
|
|
7643
7664
|
};
|
|
7644
7665
|
function NetworkInfoDisclosure({
|
|
@@ -8603,7 +8624,8 @@ function DepositAssetSelection({
|
|
|
8603
8624
|
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)(NetworkBadge, { network: "L1", size: "sm" }),
|
|
8604
8625
|
/* @__PURE__ */ (0, import_jsx_runtime81.jsx)(NetworkBadge, { network: "LN", size: "sm" }),
|
|
8605
8626
|
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" })
|
|
8627
|
+
isArkadeConnected && /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(NetworkBadge, { network: "Arkade", size: "sm" }),
|
|
8628
|
+
isLiquidConnected && /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(NetworkBadge, { network: "Liquid", size: "sm" })
|
|
8607
8629
|
] }),
|
|
8608
8630
|
/* @__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
8631
|
]
|
package/dist/web/index.d.cts
CHANGED
|
@@ -1423,7 +1423,7 @@ declare const KaleidoScopeHeroAnimation: FC<KaleidoScopeHeroAnimationProps>;
|
|
|
1423
1423
|
|
|
1424
1424
|
type DepositAccountId = 'RGB' | 'SPARK' | 'ARKADE' | 'LIQUID';
|
|
1425
1425
|
type DepositTransferMethod = 'bitcoin_l1' | 'lightning' | 'spark' | 'arkade' | 'boarding' | 'submarine_swap';
|
|
1426
|
-
type DepositNetworkKey = 'onchain' | 'lightning' | 'spark' | 'arkade';
|
|
1426
|
+
type DepositNetworkKey = 'onchain' | 'lightning' | 'spark' | 'arkade' | 'liquid';
|
|
1427
1427
|
interface DepositNetworkConfigEntry {
|
|
1428
1428
|
label: string;
|
|
1429
1429
|
color: string;
|
package/dist/web/index.d.ts
CHANGED
|
@@ -1423,7 +1423,7 @@ declare const KaleidoScopeHeroAnimation: FC<KaleidoScopeHeroAnimationProps>;
|
|
|
1423
1423
|
|
|
1424
1424
|
type DepositAccountId = 'RGB' | 'SPARK' | 'ARKADE' | 'LIQUID';
|
|
1425
1425
|
type DepositTransferMethod = 'bitcoin_l1' | 'lightning' | 'spark' | 'arkade' | 'boarding' | 'submarine_swap';
|
|
1426
|
-
type DepositNetworkKey = 'onchain' | 'lightning' | 'spark' | 'arkade';
|
|
1426
|
+
type DepositNetworkKey = 'onchain' | 'lightning' | 'spark' | 'arkade' | 'liquid';
|
|
1427
1427
|
interface DepositNetworkConfigEntry {
|
|
1428
1428
|
label: string;
|
|
1429
1429
|
color: string;
|
package/dist/web/index.js
CHANGED
|
@@ -7299,6 +7299,16 @@ var NETWORK_CONFIG = {
|
|
|
7299
7299
|
qrBorder: "border-network-arkade/30",
|
|
7300
7300
|
qrGlow: qrGlowStyle(colors.network.arkade),
|
|
7301
7301
|
icon: /* @__PURE__ */ jsx75("img", { src: "/icons/arkade/arkade-icon.svg", className: "h-3 w-3 rounded-sm", alt: "" })
|
|
7302
|
+
},
|
|
7303
|
+
liquid: {
|
|
7304
|
+
label: "Liquid",
|
|
7305
|
+
color: colors.network.liquid,
|
|
7306
|
+
bg: "bg-network-liquid/15",
|
|
7307
|
+
text: "text-network-liquid",
|
|
7308
|
+
border: "border-network-liquid/40",
|
|
7309
|
+
qrBorder: "border-network-liquid/30",
|
|
7310
|
+
qrGlow: qrGlowStyle(colors.network.liquid),
|
|
7311
|
+
icon: /* @__PURE__ */ jsx75(LiquidNetworkIcon, { className: "h-3 w-3" })
|
|
7302
7312
|
}
|
|
7303
7313
|
};
|
|
7304
7314
|
var ACCOUNT_META = {
|
|
@@ -7307,7 +7317,9 @@ var ACCOUNT_META = {
|
|
|
7307
7317
|
accentBg: "bg-primary/10",
|
|
7308
7318
|
accentText: "text-primary",
|
|
7309
7319
|
accentBorder: "border-primary/30",
|
|
7310
|
-
|
|
7320
|
+
// Bundled RGB mark (protocolIcons) — a host-served /icons/rgb/... path
|
|
7321
|
+
// renders as a broken box in consumers that don't ship that asset.
|
|
7322
|
+
icon: /* @__PURE__ */ jsx75(RgbNetworkIcon, { className: "h-2.5 w-2.5" })
|
|
7311
7323
|
},
|
|
7312
7324
|
SPARK: {
|
|
7313
7325
|
shortLabel: "Spark",
|
|
@@ -7457,6 +7469,15 @@ var NETWORK_INFO = {
|
|
|
7457
7469
|
"Boarding address accepts on-chain Bitcoin and joins the next round",
|
|
7458
7470
|
"VTXOs require periodic refresh to stay valid"
|
|
7459
7471
|
]
|
|
7472
|
+
},
|
|
7473
|
+
liquid: {
|
|
7474
|
+
title: "Liquid",
|
|
7475
|
+
detail: "Bitcoin sidechain transaction (L-BTC or Liquid assets). One confidential address receives any Liquid asset.",
|
|
7476
|
+
bullets: [
|
|
7477
|
+
"Blocks every minute; ~2 confirmations to settle",
|
|
7478
|
+
"Amounts are confidential on-chain by default",
|
|
7479
|
+
"Sender needs a Liquid wallet (L-BTC or Liquid assets)"
|
|
7480
|
+
]
|
|
7460
7481
|
}
|
|
7461
7482
|
};
|
|
7462
7483
|
function NetworkInfoDisclosure({
|
|
@@ -8421,7 +8442,8 @@ function DepositAssetSelection({
|
|
|
8421
8442
|
/* @__PURE__ */ jsx81(NetworkBadge, { network: "L1", size: "sm" }),
|
|
8422
8443
|
/* @__PURE__ */ jsx81(NetworkBadge, { network: "LN", size: "sm" }),
|
|
8423
8444
|
isSparkConnected && /* @__PURE__ */ jsx81(NetworkBadge, { network: "Spark", size: "sm" }),
|
|
8424
|
-
isArkadeConnected && /* @__PURE__ */ jsx81(NetworkBadge, { network: "Arkade", size: "sm" })
|
|
8445
|
+
isArkadeConnected && /* @__PURE__ */ jsx81(NetworkBadge, { network: "Arkade", size: "sm" }),
|
|
8446
|
+
isLiquidConnected && /* @__PURE__ */ jsx81(NetworkBadge, { network: "Liquid", size: "sm" })
|
|
8425
8447
|
] }),
|
|
8426
8448
|
/* @__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
8449
|
]
|
package/package.json
CHANGED