kaleido-ui 0.1.36 → 0.1.37

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.
@@ -1317,6 +1317,17 @@ interface DepositGenerationController {
1317
1317
  recipientId: string;
1318
1318
  loading: boolean;
1319
1319
  depositDetected: boolean;
1320
+ /**
1321
+ * Which network the deposit actually arrived on. Optional and may be
1322
+ * `null` until detection fires; consumers fall back to the currently
1323
+ * selected `network` prop.
1324
+ *
1325
+ * Distinct from `network` because users can have multiple addresses
1326
+ * displayed at once (e.g. BTC unified receive shows on-chain + Lightning),
1327
+ * and we want the success screen to reflect the path the funds actually
1328
+ * took, not the toggle they last touched.
1329
+ */
1330
+ detectedNetwork?: DepositNetworkKey | null;
1320
1331
  invoiceStatus: string | null;
1321
1332
  isInvoicePending: boolean;
1322
1333
  isInvoicePaid: boolean;
@@ -1317,6 +1317,17 @@ interface DepositGenerationController {
1317
1317
  recipientId: string;
1318
1318
  loading: boolean;
1319
1319
  depositDetected: boolean;
1320
+ /**
1321
+ * Which network the deposit actually arrived on. Optional and may be
1322
+ * `null` until detection fires; consumers fall back to the currently
1323
+ * selected `network` prop.
1324
+ *
1325
+ * Distinct from `network` because users can have multiple addresses
1326
+ * displayed at once (e.g. BTC unified receive shows on-chain + Lightning),
1327
+ * and we want the success screen to reflect the path the funds actually
1328
+ * took, not the toggle they last touched.
1329
+ */
1330
+ detectedNetwork?: DepositNetworkKey | null;
1320
1331
  invoiceStatus: string | null;
1321
1332
  isInvoicePending: boolean;
1322
1333
  isInvoicePaid: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kaleido-ui",
3
- "version": "0.1.36",
3
+ "version": "0.1.37",
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",