kaleido-ui 0.1.90 → 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.
@@ -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 = {
@@ -7641,6 +7651,15 @@ var NETWORK_INFO = {
7641
7651
  "Boarding address accepts on-chain Bitcoin and joins the next round",
7642
7652
  "VTXOs require periodic refresh to stay valid"
7643
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
+ ]
7644
7663
  }
7645
7664
  };
7646
7665
  function NetworkInfoDisclosure({
@@ -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;
@@ -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 = {
@@ -7459,6 +7469,15 @@ var NETWORK_INFO = {
7459
7469
  "Boarding address accepts on-chain Bitcoin and joins the next round",
7460
7470
  "VTXOs require periodic refresh to stay valid"
7461
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
+ ]
7462
7481
  }
7463
7482
  };
7464
7483
  function NetworkInfoDisclosure({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kaleido-ui",
3
- "version": "0.1.90",
3
+ "version": "0.1.91",
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",