@stridge/kit 0.1.0-alpha.55 → 0.1.0-alpha.56

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.
Files changed (158) hide show
  1. package/dist/KitProvider.js +1 -1
  2. package/dist/_internal/deposit/driver/index.d.ts +2 -2
  3. package/dist/deposit/compound/index.d.ts +11 -5
  4. package/dist/deposit/compound/index.js +1 -1
  5. package/dist/deposit/widgets/index.d.ts +3 -1
  6. package/dist/deposit/widgets/index.js +1 -1
  7. package/dist/drivers/stridge/createStridgeDepositDriver.js +1 -1
  8. package/dist/drivers/stridge-mock/createStridgeMockDriver.js +1 -1
  9. package/dist/drivers/stridge-mock/fixtures.js +1 -1
  10. package/dist/events/emit/useDepositEmissions.js +1 -1
  11. package/dist/flows/deposit/bindings/DepositBindings.d.ts +87 -0
  12. package/dist/flows/deposit/bindings/DepositBindings.js +1 -0
  13. package/dist/flows/deposit/bindings/index.d.ts +1 -0
  14. package/dist/flows/deposit/bindings/index.js +1 -0
  15. package/dist/flows/deposit/dialog/DepositDialog.js +1 -1
  16. package/dist/flows/deposit/driver/payloads.d.ts +35 -1
  17. package/dist/flows/deposit/driver/types.d.ts +10 -1
  18. package/dist/flows/deposit/orchestrator/controller.js +1 -1
  19. package/dist/flows/deposit/orchestrator/index.d.ts +5 -0
  20. package/dist/flows/deposit/orchestrator/reducer.d.ts +1 -0
  21. package/dist/flows/deposit/orchestrator/reducer.js +1 -1
  22. package/dist/flows/deposit/orchestrator/types.d.ts +107 -2
  23. package/dist/flows/deposit/orchestrator/useDeposit.js +1 -1
  24. package/dist/flows/deposit/shared/cash.d.ts +20 -0
  25. package/dist/flows/deposit/shared/cash.js +1 -0
  26. package/dist/flows/deposit/widgets/amount-entry/AmountEntry.d.ts +1 -1
  27. package/dist/flows/deposit/widgets/amount-entry/AmountEntry.js +1 -1
  28. package/dist/flows/deposit/widgets/cash-amount-entry/CashAmountEntry.d.ts +71 -0
  29. package/dist/flows/deposit/widgets/cash-amount-entry/CashAmountEntry.js +1 -0
  30. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.d.ts +69 -0
  31. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.js +1 -0
  32. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.slots.d.ts +16 -0
  33. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.slots.js +1 -0
  34. package/dist/flows/deposit/widgets/cash-amount-entry/compound/CashAmountEntry.styles.js +1 -0
  35. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/HeroLabel.d.ts +13 -0
  36. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/HeroLabel.js +1 -0
  37. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/MethodChip.d.ts +18 -0
  38. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/MethodChip.js +1 -0
  39. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/ReceiveChip.d.ts +14 -0
  40. package/dist/flows/deposit/widgets/cash-amount-entry/compound/components/ReceiveChip.js +1 -0
  41. package/dist/flows/deposit/widgets/cash-amount-entry/compound/context.js +1 -0
  42. package/dist/flows/deposit/widgets/cash-amount-entry/compound/index.d.ts +3 -0
  43. package/dist/flows/deposit/widgets/cash-amount-entry/compound/index.js +1 -0
  44. package/dist/flows/deposit/widgets/cash-amount-entry/compound/types.d.ts +42 -0
  45. package/dist/flows/deposit/widgets/cash-amount-entry/index.d.ts +1 -0
  46. package/dist/flows/deposit/widgets/cash-amount-entry/index.js +1 -0
  47. package/dist/flows/deposit/widgets/cash-confirm/CashConfirm.d.ts +63 -0
  48. package/dist/flows/deposit/widgets/cash-confirm/CashConfirm.js +1 -0
  49. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.d.ts +54 -0
  50. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.js +1 -0
  51. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.slots.d.ts +33 -0
  52. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.slots.js +1 -0
  53. package/dist/flows/deposit/widgets/cash-confirm/compound/CashConfirm.styles.js +1 -0
  54. package/dist/flows/deposit/widgets/cash-confirm/compound/cashConfirmDimensions.js +1 -0
  55. package/dist/flows/deposit/widgets/cash-confirm/compound/components/ApplePayBody.d.ts +15 -0
  56. package/dist/flows/deposit/widgets/cash-confirm/compound/components/ApplePayBody.js +1 -0
  57. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Body.d.ts +22 -0
  58. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Body.js +1 -0
  59. package/dist/flows/deposit/widgets/cash-confirm/compound/components/BodyLabel.js +1 -0
  60. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardBody.d.ts +16 -0
  61. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardBody.js +1 -0
  62. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.icons.js +1 -0
  63. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.js +1 -0
  64. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.keys.js +1 -0
  65. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.state.js +1 -0
  66. package/dist/flows/deposit/widgets/cash-confirm/compound/components/CardInputRow.styles.js +1 -0
  67. package/dist/flows/deposit/widgets/cash-confirm/compound/components/GooglePayBody.d.ts +16 -0
  68. package/dist/flows/deposit/widgets/cash-confirm/compound/components/GooglePayBody.js +1 -0
  69. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Header.d.ts +21 -0
  70. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Header.js +1 -0
  71. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Summary.d.ts +17 -0
  72. package/dist/flows/deposit/widgets/cash-confirm/compound/components/Summary.js +1 -0
  73. package/dist/flows/deposit/widgets/cash-confirm/compound/components/cardFormat.js +1 -0
  74. package/dist/flows/deposit/widgets/cash-confirm/compound/context.js +1 -0
  75. package/dist/flows/deposit/widgets/cash-confirm/compound/index.d.ts +3 -0
  76. package/dist/flows/deposit/widgets/cash-confirm/compound/index.js +1 -0
  77. package/dist/flows/deposit/widgets/cash-confirm/compound/types.d.ts +66 -0
  78. package/dist/flows/deposit/widgets/cash-confirm/index.d.ts +1 -0
  79. package/dist/flows/deposit/widgets/cash-confirm/index.js +1 -0
  80. package/dist/flows/deposit/widgets/cash-confirm/mocks.js +1 -0
  81. package/dist/flows/deposit/widgets/deposit/Deposit.d.ts +6 -0
  82. package/dist/flows/deposit/widgets/deposit/Deposit.js +1 -1
  83. package/dist/flows/deposit/widgets/deposit/compound/Deposit.d.ts +26 -1
  84. package/dist/flows/deposit/widgets/deposit/compound/Deposit.js +1 -1
  85. package/dist/flows/deposit/widgets/deposit/compound/Deposit.slots.d.ts +6 -0
  86. package/dist/flows/deposit/widgets/deposit/compound/Deposit.slots.js +1 -1
  87. package/dist/flows/deposit/widgets/deposit/compound/Deposit.styles.js +1 -1
  88. package/dist/flows/deposit/widgets/deposit/compound/components/Guards.js +1 -1
  89. package/dist/flows/deposit/widgets/deposit/compound/components/Method.d.ts +1 -0
  90. package/dist/flows/deposit/widgets/deposit/compound/components/Method.js +1 -1
  91. package/dist/flows/deposit/widgets/deposit/compound/components/MethodSection.d.ts +40 -0
  92. package/dist/flows/deposit/widgets/deposit/compound/components/MethodSection.js +1 -0
  93. package/dist/flows/deposit/widgets/deposit/compound/components/Methods.d.ts +16 -9
  94. package/dist/flows/deposit/widgets/deposit/compound/components/Methods.js +1 -1
  95. package/dist/flows/deposit/widgets/deposit/compound/components/Rail.d.ts +18 -0
  96. package/dist/flows/deposit/widgets/deposit/compound/components/Rail.js +1 -0
  97. package/dist/flows/deposit/widgets/deposit/compound/components/RailPicker.d.ts +43 -0
  98. package/dist/flows/deposit/widgets/deposit/compound/components/RailPicker.js +1 -0
  99. package/dist/flows/deposit/widgets/deposit/compound/index.d.ts +1 -1
  100. package/dist/flows/deposit/widgets/deposit/compound/types.d.ts +100 -1
  101. package/dist/flows/deposit/widgets/transfer-crypto/compound/components/QrCode.js +1 -1
  102. package/dist/flows/withdraw/orchestrator/reducer.js +1 -1
  103. package/dist/i18n/locales/ar.js +1 -1
  104. package/dist/i18n/locales/es.js +1 -1
  105. package/dist/i18n/locales/source-keys.d.ts +1 -1
  106. package/dist/icons/index.d.ts +10 -1
  107. package/dist/icons/index.js +1 -1
  108. package/dist/index.d.ts +7 -5
  109. package/dist/index.js +1 -1
  110. package/dist/package.js +1 -1
  111. package/dist/shared/icons/AmexIcon.d.ts +14 -0
  112. package/dist/shared/icons/AmexIcon.js +1 -0
  113. package/dist/shared/icons/ApplePayIcon.d.ts +15 -0
  114. package/dist/shared/icons/ApplePayIcon.js +1 -0
  115. package/dist/shared/icons/BitcoinIcon.d.ts +17 -0
  116. package/dist/shared/icons/BitcoinIcon.js +1 -0
  117. package/dist/shared/icons/CardIcon.d.ts +16 -0
  118. package/dist/shared/icons/CardIcon.js +1 -0
  119. package/dist/shared/icons/CashIcon.d.ts +16 -0
  120. package/dist/shared/icons/CashIcon.js +1 -0
  121. package/dist/shared/icons/DiscoverIcon.d.ts +14 -0
  122. package/dist/shared/icons/DiscoverIcon.js +1 -0
  123. package/dist/shared/icons/GooglePayIcon.d.ts +15 -0
  124. package/dist/shared/icons/GooglePayIcon.js +1 -0
  125. package/dist/shared/icons/MastercardIcon.d.ts +16 -0
  126. package/dist/shared/icons/MastercardIcon.js +1 -0
  127. package/dist/shared/icons/VisaIcon.d.ts +15 -0
  128. package/dist/shared/icons/VisaIcon.js +1 -0
  129. package/dist/shared/ui/Tabs/Tabs.d.ts +79 -0
  130. package/dist/shared/ui/Tabs/Tabs.js +1 -0
  131. package/dist/shared/ui/Tabs/Tabs.slots.d.ts +11 -0
  132. package/dist/shared/ui/Tabs/Tabs.slots.js +1 -0
  133. package/dist/shared/ui/Tabs/Tabs.styles.js +1 -0
  134. package/dist/shared/ui/Tabs/index.d.ts +2 -0
  135. package/dist/shared/ui/Tabs/index.js +1 -0
  136. package/dist/shared/utils/assertNever.js +1 -0
  137. package/dist/shared/widgets/amount-entry/compound/AmountEntry.d.ts +7 -2
  138. package/dist/shared/widgets/amount-entry/compound/AmountEntry.js +1 -1
  139. package/dist/shared/widgets/amount-entry/compound/AmountEntry.slots.d.ts +5 -0
  140. package/dist/shared/widgets/amount-entry/compound/AmountEntry.slots.js +1 -1
  141. package/dist/shared/widgets/amount-entry/compound/AmountEntry.styles.js +1 -1
  142. package/dist/shared/widgets/amount-entry/compound/components/Details.d.ts +34 -0
  143. package/dist/shared/widgets/amount-entry/compound/components/Details.js +1 -0
  144. package/dist/shared/widgets/amount-entry/compound/components/Footer.d.ts +2 -1
  145. package/dist/shared/widgets/amount-entry/compound/components/Footer.js +1 -1
  146. package/dist/shared/widgets/amount-entry/compound/index.d.ts +1 -1
  147. package/dist/shared/widgets/amount-entry/compound/types.d.ts +37 -1
  148. package/dist/shared/widgets/confirm-transfer/compound/components/Breakdown.js +1 -1
  149. package/dist/storage/context.d.ts +9 -1
  150. package/dist/storage/context.js +1 -1
  151. package/dist/storage/index.d.ts +1 -1
  152. package/dist/stridge/stubs.js +1 -1
  153. package/dist/styles/index.css +275 -2
  154. package/dist/types.d.ts +3 -3
  155. package/dist/ui/index.d.ts +3 -1
  156. package/dist/ui/index.js +1 -1
  157. package/dist/withdraw/compound/index.d.ts +2 -2
  158. package/package.json +3 -3
@@ -1 +1 @@
1
- const e=JSON.parse(`{"--OGth":["Depósito exitoso"],"-I_tc5":["Max ",["formattedCap"]],"-nuEh_":["Tiempo estimado"],"-tu7Q8":["Más sobre ",["0"]],"02NghK":["Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration."],"0eg2g7":["Estimando gas…"],"0lHlRj":["En tránsito"],"2Eoi_a":["Ver detalles"],"3dqPLT":["Transferir cripto"],"3eKjkO":["Depósito mínimo de ",["formattedMin"]],"3kg1gB":["Depósito completado"],"3yd3IL":["The deposit driver failed to load gateway configuration."],"5AApJw":["Conecta una billetera para continuar"],"5joj8M":["Desglose de la transacción"],"60ahSE":["Tx del retiro"],"69Gavs":["Technical details"],"6D8qH6":["Envía el token seleccionado en la red elegida a esta dirección. Los fondos aparecerán en tu cuenta cuando la red confirme la transferencia."],"6RDwJM":["Tokens"],"6yS5kL":["Retiro en curso"],"7Bj3x9":["Fallido"],"7evBec":["Tiempo de procesamiento: ",["resolvedProcessingTime"]],"88cUW-":["Recibes"],"9JHY2T":["Tu depósito se acreditó en tu cuenta."],"9XIJb8":["T…"],"9cCjMJ":["Depositar saldo máximo"],"< 1 min":["< 1 min"],"AHyker":["Max ",["0"]],"AO44G_":["Ver recibo"],"AOPSKq":["Depositar ",["0"]],"AWtGgd":["Obtener ayuda"],"AeXO77":["Cuenta"],"AeZIvT":["Recibirás"],"AikETk":["Mín ",["minDeposit"]],"B-4zEC":["No se pudo cargar la actividad. Inténtalo de nuevo."],"BhQhbU":["Usar la dirección sugerida del destinatario"],"BoQOH3":["Se requiere una billetera para depositar"],"CK1KXz":["Máx"],"Ck1xL4":["Envías"],"Cs44l6":["Depósito en curso"],"D79cZK":["Instantáneo"],"DPfwMq":["Listo"],"Dd7jP5":["¿Tienes problemas?"],"DoS2vD":["Ocultar detalles técnicos"],"ELhVSL":["Failed to submit deposit."],"Ej5HL9":["Signature declined. Please try again."],"Enslfm":["Destino"],"G-SK3q":["El kit encontró un error inesperado y no pudo terminar de renderizar. Vuelve a intentarlo, o cierra este diálogo y reinténtalo desde la aplicación."],"GX8GKD":["Activos"],"GZPxmc":["Enter Valid Recipient Address"],"GcuGHR":["Acreditado a ",["captionSuffix"]],"GwkmPx":["Cambiar el importe mostrado"],"IDt4jm":[["0","plural",{"one":["#"," second"],"other":["#"," seconds"]}]," left on quote"],"IRogzB":["Tu depósito se acreditó a ",["brand"],"."],"JYp-ic":["Deposit processing"],"KDw4GX":["Reintentar"],"KGoAE6":["Auto · ",["value"]],"KTNWsg":["El retiro falló"],"KuqCAK":["~ 2 min"],"LEbOpR":["Más detalles"],"Ly6geA":["Regenerando cotización…"],"MZ_nQf":["Dirección del destinatario"],"N2DUxS":["Insufficient Balance"],"OLF0i7":["Couldn't load deposit options"],"OSBXx5":["Ahora mismo"],"Offl0a":["Tu depósito se acreditará en tu cuenta."],"Oi8TiZ":["Ver progreso"],"OsyKSt":["Retirar"],"P9fBwv":["Stack"],"PiH3UR":["¡Copiado!"],"Q12Rrs":["Tx depósito"],"QU2cIs":["¿Tienes preguntas?"],"Rm325-":["Retiro de ",["amount"],", ",["date"]],"Rxjdjn":["El depósito no se completó"],"SOVBoe":["Copiar dirección de depósito"],"SZRUQ4":["Deslizamiento máximo"],"Sjplg3":["Ver en el explorador"],"SlfejT":["Error"],"TG4WOd":["Tu depósito se acreditará a ",["brand"],"."],"TT0aVH":["Orden enviada"],"Uevt3L":["Estimando cotización"],"UqHbdz":["Descartar aviso de depósito pendiente"],"V1fa9u":["Ver más"],"VAZUpd":["Orden fallida"],"VHOVEJ":["Conectar billetera"],"WkRH60":["Mín ",["0"]],"Wqz0SO":["Saldo bajo"],"XJOV1Y":["Actividad"],"Xzw7uC":["Tus depósitos y retiros aparecerán aquí."],"Z1WbO6":["Los fondos están seguros en la red de origen — contacta a soporte para recuperarlos."],"ZqugiS":["Saldo: ",["0"]," ",["1"]],"_QZdX-":["Tu retiro se completó con éxito."],"_girqu":["Retiro exitoso"],"_kXBrK":["Tiempo total"],"a2WllD":["Token a recibir"],"aXFOuf":["Aún no hay actividad"],"aiEUrg":["Mostrar detalles técnicos"],"bOZXx5":["Actualizar orden"],"bZnukT":["Costo de red"],"c3aao_":["Ver actividad"],"c6Bl9M":["Toggle technical details"],"cGYrpE":["Aplican términos"],"cHPbBJ":["El puente no pudo financiar la transacción de destino (presupuesto de gas agotado)."],"cxR5Qy":["Tx liquidación"],"e3xU5E":["Depósito recibido"],"fKSGnu":["Cantidad mínima requerida para que esta red cubra las tarifas y el enrutamiento."],"fWsBTs":["Algo salió mal. Vuelve a intentarlo."],"flMR3h":["Tus fondos fueron retirados con éxito."],"g2UNkE":["Con tecnología de"],"gfh8CC":["Redes"],"hBIHD-":["Depósito de ",["amount"],", ",["date"]],"hKMHs1":["Diferencia entre el resultado esperado de la ruta y el precio medio de mercado subyacente."],"he3ygx":["Copiar"],"hehnjM":["Monto"],"i-4Fbp":["Depósito fallido"],"i-EgW-":["El costo estimado para emitir esta transacción en la red de destino."],"iH8pgl":["Atrás"],"jKZO-R":["Retiro completado"],"junZX6":["Depósito recibido y procesando…"],"kH6wUX":["Impacto en precio"],"kR8ayx":["Al hacer clic en Confirmar depósito, aceptas nuestros <0>términos</0>."],"kUFhUv":["Withdrawal failed."],"kj3M8S":["Depositar"],"kjrq_8":["Más información"],"lOEm_1":["Orden completada"],"ldK3jJ":["Failed to submit withdrawal."],"lxjao1":["La ruta de liquidez seleccionada para liquidar este retiro."],"mF_ucv":["Conecta una billetera para que el gateway pueda provisionar una dirección de depósito y enrutar tu transferencia."],"mgLWEL":["La transacción del tramo de destino se revirtió en cadena."],"mvYQx_":["Detectado"],"njn4bC":["Confirma la transacción en tu billetera"],"nr03QI":["Ingresa la dirección del destinatario"],"nwtY4N":["Algo salió mal"],"oBNGNc":["The route's expected output drifted while your transaction was pending."],"oFmN8a":["Depositar ",["symbol"]],"oW1G8i":["Tus fondos se depositaron correctamente."],"ob8R_m":["Inténtalo nuevamente o contáctanos si el problema persiste."],"ogD_nm":["Depositar a ",["0"]],"olEUh2":["Exitoso"],"pCzTTC":["Tu dirección de depósito"],"q32Nt8":["Retiro completado"],"qQ5VJt":["We can't reach the gateway right now"],"qj0vvX":["Confirmar depósito"],"qtoOYG":["Sin límite"],"rT8e1f":["Ruta"],"rZdp61":["Tx finalización"],"sSiLKx":["Red a recibir"],"sb9Y58":["Billetera"],"sbwbC0":["Método de pago"],"srsA0x":["Withdrawal declined."],"uPo3PQ":["Ver menos"],"vrnnn9":["Procesando"],"w-2VR9":["Retiro en curso…"],"wdxz7K":["Origen"],"xDAtGP":["Message"],"xGVfLh":["Continuar"],"yH9V_J":["Ingresa el monto"],"yLEjmm":[["resolvedPriceImpact"],"% price impact"],"yQE2r9":["Cargando"],"y_0uwd":["Ayer"],"yrvWai":["Tx origen"],"yxnt3y":["Estado de ejecución"],"yy2rkt":["0x…"],"yz7wBu":["Cerrar"],"zYD5xm":["Acreditando"],"zbtijb":["Depositar ",["0"]," a ",["1"]],"znqB4T":["Saldo insuficiente"],"{hours} hr":[["hours"]," h"],"{minutes} min":[["minutes"]," min"],"{n}h":[["n"],"h"],"{n}m":[["n"],"m"],"{n}s":[["n"],"s"]}`);export{e as messages};
1
+ const e=JSON.parse(`{"--OGth":["Depósito exitoso"],"-I_tc5":["Máx ",["formattedCap"]],"-nuEh_":["Tiempo estimado"],"-tu7Q8":["Más sobre ",["0"]],"02NghK":["Cierra este diálogo y vuelve a intentarlo en un momento. Si el problema persiste, verifica la clave del gateway en tu integración."],"0eg2g7":["Estimando gas…"],"0lHlRj":["En tránsito"],"1zDzn9":["Pagar con Google Pay"],"2Eoi_a":["Ver detalles"],"3dqPLT":["Transferir cripto"],"3eKjkO":["Depósito mínimo de ",["formattedMin"]],"3kg1gB":["Depósito completado"],"3qkDVZ":["Ver desglose"],"3yd3IL":["El controlador de depósito no pudo cargar la configuración del gateway."],"5AApJw":["Conecta una billetera para continuar"],"5joj8M":["Desglose de la transacción"],"60ahSE":["Tx del retiro"],"64M0UA":["El código de seguridad está incompleto"],"69Gavs":["Detalles técnicos"],"6D8qH6":["Envía el token seleccionado en la red elegida a esta dirección. Los fondos aparecerán en tu cuenta cuando la red confirme la transferencia."],"6RDwJM":["Tokens"],"6ja7nr":["Toca para pagar"],"6ws9A3":["Apple Pay"],"6yS5kL":["Retiro en curso"],"72c5Qo":["Total"],"7Bj3x9":["Fallido"],"7evBec":["Tiempo de procesamiento: ",["resolvedProcessingTime"]],"88cUW-":["Recibes"],"9JHY2T":["Tu depósito se acreditó en tu cuenta."],"9XIJb8":["T…"],"9cCjMJ":["Depositar saldo máximo"],"< 1 min":["< 1 min"],"AHyker":["Máx ",["0"]],"AO44G_":["Ver recibo"],"AOPSKq":["Depositar ",["0"]],"AWtGgd":["Obtener ayuda"],"AeXO77":["Cuenta"],"AeZIvT":["Recibirás"],"AikETk":["Mín ",["minDeposit"]],"B-4zEC":["No se pudo cargar la actividad. Inténtalo de nuevo."],"BhQhbU":["Usar la dirección sugerida del destinatario"],"BoQOH3":["Se requiere una billetera para depositar"],"C7cyXd":["La comisión de procesamiento cubre el costo de procesar tu pago a través del método de pago seleccionado."],"CK1KXz":["Máx"],"CS69m9":["Usar cripto"],"Ck1xL4":["Envías"],"Cs44l6":["Depósito en curso"],"D79cZK":["Instantáneo"],"DO0IYK":["La fecha de vencimiento no es válida"],"DPfwMq":["Listo"],"Dd7jP5":["¿Tienes problemas?"],"DoS2vD":["Ocultar detalles técnicos"],"ELhVSL":["No se pudo enviar el depósito."],"Ej5HL9":["Firma rechazada. Vuelve a intentarlo."],"Enslfm":["Destino"],"FWbwx6":["Cash deposit unavailable for your account"],"FkAVbF":["Pagando con Google Pay"],"G-SK3q":["El kit encontró un error inesperado y no pudo terminar de renderizar. Vuelve a intentarlo, o cierra este diálogo y reinténtalo desde la aplicación."],"GX8GKD":["Activos"],"GXkBas":["Máx ",["formattedLimit"]],"GZPxmc":["Ingresa una dirección de destinatario válida"],"GcuGHR":["Acreditado a ",["captionSuffix"]],"GwkmPx":["Cambiar el importe mostrado"],"HalPBQ":["Recargar en"],"I2Iug_":["Paga ",["amountFormatted"]," de forma segura"],"IDt4jm":[["0","plural",{"one":["#"," segundo"],"other":["#"," segundos"]}]," restantes en la cotización"],"IRogzB":["Tu depósito se acreditó a ",["brand"],"."],"JYp-ic":["Deposit processing"],"KDw4GX":["Reintentar"],"KGoAE6":["Auto · ",["value"]],"KTNWsg":["El retiro falló"],"KuqCAK":["~ 2 min"],"LEbOpR":["Más detalles"],"LSs4cd":["Usar efectivo"],"Ly6geA":["Regenerando cotización…"],"MZ_nQf":["Dirección del destinatario"],"N2DUxS":["Saldo insuficiente"],"OLF0i7":["No se pudieron cargar las opciones de depósito"],"OSBXx5":["Ahora mismo"],"Offl0a":["Tu depósito se acreditará en tu cuenta."],"Oi8TiZ":["Ver progreso"],"OsyKSt":["Retirar"],"P9fBwv":["Stack"],"PiH3UR":["¡Copiado!"],"PknXwq":["Pagar ahora"],"Q12Rrs":["Tx depósito"],"QFwptY":["Comisión de procesamiento"],"QU2cIs":["¿Tienes preguntas?"],"Qdn2XH":["Comprar con Google Pay"],"Rm325-":["Retiro de ",["amount"],", ",["date"]],"Rxjdjn":["El depósito no se completó"],"SMl3YV":["El número de tarjeta está incompleto"],"SOVBoe":["Copiar dirección de depósito"],"SZRUQ4":["Deslizamiento máximo"],"Sjplg3":["Ver en el explorador"],"SlfejT":["Error"],"TG4WOd":["Tu depósito se acreditará a ",["brand"],"."],"TMA5Ot":["Pagando con Apple Pay"],"TT0aVH":["Orden enviada"],"Uevt3L":["Estimando cotización"],"UqHbdz":["Descartar aviso de depósito pendiente"],"V1fa9u":["Ver más"],"VAZUpd":["Orden fallida"],"VAxOSg":["Tú pagas"],"VHOVEJ":["Conectar billetera"],"WkRH60":["Mín ",["0"]],"Wqz0SO":["Saldo bajo"],"WsByvK":["Pagar con Apple Pay"],"XFvFyp":["Detalles de la tarjeta enviados"],"XJOV1Y":["Actividad"],"Xzw7uC":["Tus depósitos y retiros aparecerán aquí."],"YKfMl6":["Cargando entrada segura de tarjeta..."],"YruUmm":["La fecha de vencimiento está incompleta"],"Z1WbO6":["Los fondos están seguros en la red de origen — contacta a soporte para recuperarlos."],"ZqugiS":["Saldo: ",["0"]," ",["1"]],"_QZdX-":["Tu retiro se completó con éxito."],"_girqu":["Retiro exitoso"],"_kXBrK":["Tiempo total"],"a2WllD":["Token a recibir"],"aXFOuf":["Aún no hay actividad"],"aiEUrg":["Mostrar detalles técnicos"],"bAy57M":["Pagar con tarjeta"],"bGtkfz":["Fecha de vencimiento"],"bOZXx5":["Actualizar orden"],"bZnukT":["Costo de red"],"c3aao_":["Ver actividad"],"c6Bl9M":["Alternar detalles técnicos"],"cGYrpE":["Aplican términos"],"cHPbBJ":["El puente no pudo financiar la transacción de destino (presupuesto de gas agotado)."],"cxR5Qy":["Tx liquidación"],"e3xU5E":["Depósito recibido"],"eUbBqz":["1 ",["0"]," = ",["1"]],"f-nEg4":["La comisión de red se paga a los mineros y validadores de la blockchain para asegurar que la transacción se procese y confirme."],"fKSGnu":["Cantidad mínima requerida para que esta red cubra las tarifas y el enrutamiento."],"fWsBTs":["Algo salió mal. Vuelve a intentarlo."],"flMR3h":["Tus fondos fueron retirados con éxito."],"g2UNkE":["Con tecnología de"],"gfh8CC":["Redes"],"hBIHD-":["Depósito de ",["amount"],", ",["date"]],"hKMHs1":["Diferencia entre el resultado esperado de la ruta y el precio medio de mercado subyacente."],"he3ygx":["Copiar"],"hehnjM":["Monto"],"i-4Fbp":["Depósito fallido"],"i-EgW-":["El costo estimado para emitir esta transacción en la red de destino."],"iH8pgl":["Atrás"],"iROlQr":["Detalles de la tarjeta"],"jKZO-R":["Retiro completado"],"jtKSW-":["Límite ",["0"]],"junZX6":["Depósito recibido y procesando…"],"kH6wUX":["Impacto en precio"],"kR8ayx":["Al hacer clic en Confirmar depósito, aceptas nuestros <0>términos</0>."],"kUFhUv":["El retiro falló."],"kj3M8S":["Depositar"],"kjrq_8":["Más información"],"kryGs-":["Tarjeta"],"lDgVWA":["Recibir"],"lOEm_1":["Orden completada"],"ldK3jJ":["No se pudo enviar el retiro."],"lxjao1":["La ruta de liquidez seleccionada para liquidar este retiro."],"mF_ucv":["Conecta una billetera para que el gateway pueda provisionar una dirección de depósito y enrutar tu transferencia."],"meq3YR":["El número de tarjeta no es válido"],"mgLWEL":["La transacción del tramo de destino se revirtió en cadena."],"mvYQx_":["Detectado"],"njn4bC":["Confirma la transacción en tu billetera"],"nr03QI":["Ingresa la dirección del destinatario"],"nwtY4N":["Algo salió mal"],"o-XJ9D":["Cambiar"],"oBNGNc":["El resultado esperado de la ruta varió mientras tu transacción estaba pendiente."],"oFmN8a":["Depositar ",["symbol"]],"oW1G8i":["Tus fondos se depositaron correctamente."],"ob8R_m":["Inténtalo nuevamente o contáctanos si el problema persiste."],"ogD_nm":["Depositar a ",["0"]],"olEUh2":["Exitoso"],"pCzTTC":["Tu dirección de depósito"],"pfAinS":["Escanea para pagar"],"q32Nt8":["Retiro completado"],"qQ5VJt":["No podemos contactar el gateway en este momento"],"qj0vvX":["Confirmar depósito"],"qtoOYG":["Sin límite"],"rT8e1f":["Ruta"],"rZdp61":["Tx finalización"],"sSiLKx":["Red a recibir"],"sb9Y58":["Billetera"],"sbwbC0":["Método de pago"],"srsA0x":["Retiro rechazado."],"t-aixw":["Confirma en tu Google Wallet"],"t1k2Bt":["Ocultar desglose"],"tInLgk":["Pagando con tarjeta"],"uPo3PQ":["Ver menos"],"vepIdX":["Precio cripto"],"vrnnn9":["Procesando"],"w-2VR9":["Retiro en curso…"],"wB8KqP":["Escanea con la cámara de tu iPhone"],"wLmRnI":["Código de seguridad"],"wdxz7K":["Origen"],"wkskq5":["Usar máx"],"xDAtGP":["Mensaje"],"xGVfLh":["Continuar"],"xHIEQ5":["Número de tarjeta"],"xOUCt3":["Otras opciones"],"y1ypMV":["Más popular"],"y62Dys":["Comisión de red"],"yH9V_J":["Ingresa el monto"],"yLEjmm":[["resolvedPriceImpact"],"% price impact"],"yMg5R0":["La tarjeta ha caducado"],"yQE2r9":["Cargando"],"y_0uwd":["Ayer"],"ybKOj4":["Google Pay"],"yrvWai":["Tx origen"],"yxnt3y":["Estado de ejecución"],"yy2rkt":["0x…"],"yz7wBu":["Cerrar"],"zYD5xm":["Acreditando"],"zbtijb":["Depositar ",["0"]," a ",["1"]],"znqB4T":["Saldo insuficiente"],"{hours} hr":[["hours"]," h"],"{minutes} min":[["minutes"]," min"],"{n}h":[["n"],"h"],"{n}m":[["n"],"m"],"{n}s":[["n"],"s"]}`);export{e as messages};
@@ -7,6 +7,6 @@
7
7
  * as the typed contract for {@link defineMessages}: callers get autocomplete on every key the
8
8
  * kit translates, and unknown keys fail at compile time via excess-property checks.
9
9
  */
10
- type KitTranslatableKey = "0x…" | "< 1 min" | "A wallet is required to deposit" | "Account" | "Activity" | "Amount" | "Assets" | "Auto · {value}" | "Back" | "Balance: {0} {1}" | "By clicking Confirm Deposit, you agree to our <0>terms</0>." | "Chains" | "Close" | "Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration." | "Completion tx" | "Confirm Deposit" | "Confirm transaction in your wallet" | "Connect a wallet so the gateway can provision a deposit address and route your transfer." | "Connect a wallet to continue" | "Connect wallet" | "Continue" | "Copied!" | "Copy" | "Copy deposit address" | "Couldn't load activity. Please try again." | "Couldn't load deposit options" | "Credited to {captionSuffix}" | "Crediting" | "Deposit" | "Deposit completed" | "Deposit didn't complete" | "Deposit failed" | "Deposit in progress" | "Deposit max balance" | "Deposit of {amount}, {date}" | "Deposit processing" | "Deposit received" | "Deposit received and processing…" | "Deposit successful" | "Deposit to {0}" | "Deposit tx" | "Deposit {0}" | "Deposit {0} to {1}" | "Deposit {symbol}" | "Destination" | "Detected" | "Difference between the route's expected output and the underlying market mid-price." | "Dismiss pending deposit notice" | "Done" | "Enter Amount" | "Enter Recipient Address" | "Enter Valid Recipient Address" | "Error" | "Estimated time" | "Estimating gas…" | "Estimating quote" | "Experiencing problems?" | "Failed" | "Failed to submit deposit." | "Failed to submit withdrawal." | "Fill status" | "Funds are safe on the source chain — contact support to recover." | "Get help" | "Have questions?" | "Hide technical details" | "In transit" | "Instant" | "Insufficient Balance" | "Insufficient balance" | "Just now" | "Loading" | "Low Balance" | "Max" | "Max slippage" | "Max {0}" | "Max {formattedCap}" | "Message" | "Min {0}" | "Min {minDeposit}" | "More about {0}" | "More details" | "More information" | "Network cost" | "No activity yet" | "No limit" | "Order failed" | "Order filled" | "Order submitted" | "Payment Method" | "Please try again or contact us if the issue persists." | "Powered by" | "Price impact" | "Processing" | "Processing time: {resolvedProcessingTime}" | "Receive chain" | "Receive token" | "Recipient address" | "Regenerating quote…" | "Route" | "See less" | "See more" | "Send the selected token on the selected chain to this address. Funds appear in your account once the network confirms the transfer." | "Settlement tx" | "Show technical details" | "Signature declined. Please try again." | "Something went wrong" | "Something went wrong. Please try again." | "Source" | "Source tx" | "Stack" | "Successful" | "Swap displayed amount" | "Technical details" | "Terms apply" | "The bridge could not fund the destination transaction (gas budget exhausted)." | "The deposit driver failed to load gateway configuration." | "The destination-leg transaction reverted on-chain." | "The estimated cost to broadcast this transaction on the destination chain." | "The kit hit an unexpected error and could not finish rendering. Try again, or close this dialog and retry from the host." | "The minimum amount required for this chain to cover network fees and routing." | "The route's expected output drifted while your transaction was pending." | "The selected liquidity route used to settle this withdrawal." | "Toggle technical details" | "Tokens" | "Total time" | "Transaction breakdown" | "Transfer Crypto" | "Try again" | "T…" | "Update order" | "Use suggested recipient address" | "View activity" | "View details" | "View on Explorer" | "View progress" | "View receipt" | "Wallet" | "We can't reach the gateway right now" | "Withdraw" | "Withdrawal complete" | "Withdrawal completed" | "Withdrawal declined." | "Withdrawal failed" | "Withdrawal failed." | "Withdrawal in progress" | "Withdrawal in progress…" | "Withdrawal of {amount}, {date}" | "Withdrawal successful" | "Withdrawal tx" | "Yesterday" | "You receive" | "You send" | "You will receive" | "Your deposit address" | "Your deposit has been credited to your account." | "Your deposit has been credited to {brand}." | "Your deposit will be credited to your account." | "Your deposit will be credited to {brand}." | "Your deposits and withdrawals will appear here." | "Your funds were successfully deposited." | "Your funds were successfully withdrawn." | "Your withdrawal was completed successfully." | "{0, plural, one {# second} other {# seconds}} left on quote" | "{formattedMin} minimum deposit" | "{hours} hr" | "{minutes} min" | "{n}h" | "{n}m" | "{n}s" | "{resolvedPriceImpact}% price impact" | "~ 2 min";
10
+ type KitTranslatableKey = "0x…" | "1 {0} = {1}" | "< 1 min" | "A wallet is required to deposit" | "Account" | "Activity" | "Amount" | "Apple Pay" | "Assets" | "Auto · {value}" | "Back" | "Balance: {0} {1}" | "Buy with Google Pay" | "By clicking Confirm Deposit, you agree to our <0>terms</0>." | "Card" | "Card details" | "Card details submitted" | "Card expiration" | "Card has expired" | "Card number" | "Card number is incomplete" | "Card number is invalid" | "Cash deposit unavailable for your account" | "Chains" | "Change" | "Close" | "Close this dialog and try again in a moment. If the problem persists, double-check the gateway key on your integration." | "Completion tx" | "Confirm Deposit" | "Confirm in your Google Wallet" | "Confirm transaction in your wallet" | "Connect a wallet so the gateway can provision a deposit address and route your transfer." | "Connect a wallet to continue" | "Connect wallet" | "Continue" | "Copied!" | "Copy" | "Copy deposit address" | "Couldn't load activity. Please try again." | "Couldn't load deposit options" | "Credited to {captionSuffix}" | "Crediting" | "Crypto price" | "Deposit" | "Deposit completed" | "Deposit didn't complete" | "Deposit failed" | "Deposit in progress" | "Deposit max balance" | "Deposit of {amount}, {date}" | "Deposit processing" | "Deposit received" | "Deposit received and processing…" | "Deposit successful" | "Deposit to {0}" | "Deposit tx" | "Deposit {0}" | "Deposit {0} to {1}" | "Deposit {symbol}" | "Destination" | "Detected" | "Difference between the route's expected output and the underlying market mid-price." | "Dismiss pending deposit notice" | "Done" | "Enter Amount" | "Enter Recipient Address" | "Enter Valid Recipient Address" | "Error" | "Estimated time" | "Estimating gas…" | "Estimating quote" | "Experiencing problems?" | "Expiry date is incomplete" | "Expiry date is invalid" | "Failed" | "Failed to submit deposit." | "Failed to submit withdrawal." | "Fill status" | "Funds are safe on the source chain — contact support to recover." | "Get help" | "Google Pay" | "Have questions?" | "Hide breakdown" | "Hide technical details" | "In transit" | "Instant" | "Insufficient Balance" | "Insufficient balance" | "Just now" | "Loading" | "Loading secure card input..." | "Low Balance" | "Max" | "Max slippage" | "Max {0}" | "Max {formattedCap}" | "Max {formattedLimit}" | "Message" | "Min {0}" | "Min {minDeposit}" | "More about {0}" | "More details" | "More information" | "Most popular" | "Network cost" | "Network fee" | "No activity yet" | "No limit" | "Order failed" | "Order filled" | "Order submitted" | "Other options" | "Pay Now" | "Pay with Apple Pay" | "Pay with Card" | "Pay with Google Pay" | "Pay {amountFormatted} securely" | "Paying with Apple Pay" | "Paying with Card" | "Paying with Google Pay" | "Payment Method" | "Please try again or contact us if the issue persists." | "Powered by" | "Price impact" | "Processing" | "Processing fee" | "Processing time: {resolvedProcessingTime}" | "Receive" | "Receive chain" | "Receive token" | "Recipient address" | "Regenerating quote…" | "Route" | "Scan to pay" | "Scan with your iPhone camera" | "Security code" | "Security code is incomplete" | "See less" | "See more" | "Send the selected token on the selected chain to this address. Funds appear in your account once the network confirms the transfer." | "Settlement tx" | "Show technical details" | "Signature declined. Please try again." | "Something went wrong" | "Something went wrong. Please try again." | "Source" | "Source tx" | "Stack" | "Successful" | "Swap displayed amount" | "Tap to pay" | "Technical details" | "Terms apply" | "The bridge could not fund the destination transaction (gas budget exhausted)." | "The deposit driver failed to load gateway configuration." | "The destination-leg transaction reverted on-chain." | "The estimated cost to broadcast this transaction on the destination chain." | "The kit hit an unexpected error and could not finish rendering. Try again, or close this dialog and retry from the host." | "The minimum amount required for this chain to cover network fees and routing." | "The network fee is paid to miners and validators of the blockchain to make sure the transaction is processed and confirmed." | "The processing fee covers the cost of processing your payment through the selected payment method." | "The route's expected output drifted while your transaction was pending." | "The selected liquidity route used to settle this withdrawal." | "Toggle technical details" | "Tokens" | "Top up on" | "Total" | "Total time" | "Transaction breakdown" | "Transfer Crypto" | "Try again" | "T…" | "Update order" | "Use Cash" | "Use Crypto" | "Use max" | "Use suggested recipient address" | "View activity" | "View breakdown" | "View details" | "View on Explorer" | "View progress" | "View receipt" | "Wallet" | "We can't reach the gateway right now" | "Withdraw" | "Withdrawal complete" | "Withdrawal completed" | "Withdrawal declined." | "Withdrawal failed" | "Withdrawal failed." | "Withdrawal in progress" | "Withdrawal in progress…" | "Withdrawal of {amount}, {date}" | "Withdrawal successful" | "Withdrawal tx" | "Yesterday" | "You pay" | "You receive" | "You send" | "You will receive" | "Your deposit address" | "Your deposit has been credited to your account." | "Your deposit has been credited to {brand}." | "Your deposit will be credited to your account." | "Your deposit will be credited to {brand}." | "Your deposits and withdrawals will appear here." | "Your funds were successfully deposited." | "Your funds were successfully withdrawn." | "Your withdrawal was completed successfully." | "{0, plural, one {# second} other {# seconds}} left on quote" | "{0} limit" | "{formattedMin} minimum deposit" | "{hours} hr" | "{minutes} min" | "{n}h" | "{n}m" | "{n}s" | "{resolvedPriceImpact}% price impact" | "~ 2 min";
11
11
  //#endregion
12
12
  export { KitTranslatableKey };
@@ -1,8 +1,13 @@
1
1
  import { ActivityIcon } from "../shared/icons/ActivityIcon.js";
2
2
  import { AlertIcon } from "../shared/icons/AlertIcon.js";
3
+ import { AmexIcon } from "../shared/icons/AmexIcon.js";
4
+ import { ApplePayIcon } from "../shared/icons/ApplePayIcon.js";
3
5
  import { ArrowDownIcon } from "../shared/icons/ArrowDownIcon.js";
4
6
  import { ArrowRightIcon } from "../shared/icons/ArrowRightIcon.js";
5
7
  import { ArrowRightLeftIcon } from "../shared/icons/ArrowRightLeftIcon.js";
8
+ import { BitcoinIcon } from "../shared/icons/BitcoinIcon.js";
9
+ import { CardIcon } from "../shared/icons/CardIcon.js";
10
+ import { CashIcon } from "../shared/icons/CashIcon.js";
6
11
  import { CheckIcon } from "../shared/icons/CheckIcon.js";
7
12
  import { ChevronDownIcon } from "../shared/icons/ChevronDownIcon.js";
8
13
  import { ChevronLeftIcon } from "../shared/icons/ChevronLeftIcon.js";
@@ -12,18 +17,22 @@ import { CircleArrowUpIcon } from "../shared/icons/CircleArrowUpIcon.js";
12
17
  import { CircleHelpIcon } from "../shared/icons/CircleHelpIcon.js";
13
18
  import { ClockIcon } from "../shared/icons/ClockIcon.js";
14
19
  import { CopyIcon } from "../shared/icons/CopyIcon.js";
20
+ import { DiscoverIcon } from "../shared/icons/DiscoverIcon.js";
15
21
  import { ExternalLinkIcon } from "../shared/icons/ExternalLinkIcon.js";
16
22
  import { BinanceIcon } from "../shared/icons/exchanges/BinanceIcon.js";
17
23
  import { CoinbaseIcon } from "../shared/icons/exchanges/CoinbaseIcon.js";
18
24
  import { KrakenIcon } from "../shared/icons/exchanges/KrakenIcon.js";
19
25
  import { OkxIcon } from "../shared/icons/exchanges/OkxIcon.js";
20
26
  import { RobinhoodIcon } from "../shared/icons/exchanges/RobinhoodIcon.js";
27
+ import { GooglePayIcon } from "../shared/icons/GooglePayIcon.js";
21
28
  import { InfoIcon } from "../shared/icons/InfoIcon.js";
22
29
  import { LoaderIcon } from "../shared/icons/LoaderIcon.js";
23
30
  import { LogoIcon } from "../shared/icons/LogoIcon.js";
24
31
  import { MailIcon } from "../shared/icons/MailIcon.js";
32
+ import { MastercardIcon } from "../shared/icons/MastercardIcon.js";
25
33
  import { PackageIcon } from "../shared/icons/PackageIcon.js";
26
34
  import { QrCodeIcon } from "../shared/icons/QrCodeIcon.js";
35
+ import { VisaIcon } from "../shared/icons/VisaIcon.js";
27
36
  import { WalletIcon } from "../shared/icons/WalletIcon.js";
28
37
  import { XIcon } from "../shared/icons/XIcon.js";
29
- export { ActivityIcon, AlertIcon, ArrowDownIcon, ArrowRightIcon, ArrowRightLeftIcon, BinanceIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleArrowUpIcon, CircleHelpIcon, ClockIcon, CoinbaseIcon, CopyIcon, ExternalLinkIcon, InfoIcon, KrakenIcon, LoaderIcon, LogoIcon, MailIcon, OkxIcon, PackageIcon, QrCodeIcon, RobinhoodIcon, WalletIcon, XIcon };
38
+ export { ActivityIcon, AlertIcon, AmexIcon, ApplePayIcon, ArrowDownIcon, ArrowRightIcon, ArrowRightLeftIcon, BinanceIcon, BitcoinIcon, CardIcon, CashIcon, CheckIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleArrowUpIcon, CircleHelpIcon, ClockIcon, CoinbaseIcon, CopyIcon, DiscoverIcon, ExternalLinkIcon, GooglePayIcon, InfoIcon, KrakenIcon, LoaderIcon, LogoIcon, MailIcon, MastercardIcon, OkxIcon, PackageIcon, QrCodeIcon, RobinhoodIcon, VisaIcon, WalletIcon, XIcon };
@@ -1 +1 @@
1
- import{ActivityIcon as e}from"../shared/icons/ActivityIcon.js";import{AlertIcon as t}from"../shared/icons/AlertIcon.js";import{ArrowDownIcon as n}from"../shared/icons/ArrowDownIcon.js";import{ArrowRightIcon as r}from"../shared/icons/ArrowRightIcon.js";import{ArrowRightLeftIcon as i}from"../shared/icons/ArrowRightLeftIcon.js";import{CheckIcon as a}from"../shared/icons/CheckIcon.js";import{ChevronDownIcon as o}from"../shared/icons/ChevronDownIcon.js";import{ChevronLeftIcon as s}from"../shared/icons/ChevronLeftIcon.js";import{ChevronRightIcon as c}from"../shared/icons/ChevronRightIcon.js";import{ChevronUpIcon as l}from"../shared/icons/ChevronUpIcon.js";import{CircleArrowUpIcon as u}from"../shared/icons/CircleArrowUpIcon.js";import{CircleHelpIcon as d}from"../shared/icons/CircleHelpIcon.js";import{ClockIcon as f}from"../shared/icons/ClockIcon.js";import{CopyIcon as p}from"../shared/icons/CopyIcon.js";import{ExternalLinkIcon as m}from"../shared/icons/ExternalLinkIcon.js";import{BinanceIcon as h}from"../shared/icons/exchanges/BinanceIcon.js";import{CoinbaseIcon as g}from"../shared/icons/exchanges/CoinbaseIcon.js";import{KrakenIcon as _}from"../shared/icons/exchanges/KrakenIcon.js";import{OkxIcon as v}from"../shared/icons/exchanges/OkxIcon.js";import{RobinhoodIcon as y}from"../shared/icons/exchanges/RobinhoodIcon.js";import"../shared/icons/exchanges/index.js";import{InfoIcon as b}from"../shared/icons/InfoIcon.js";import{LoaderIcon as x}from"../shared/icons/LoaderIcon.js";import{LogoIcon as S}from"../shared/icons/LogoIcon.js";import{MailIcon as C}from"../shared/icons/MailIcon.js";import{PackageIcon as w}from"../shared/icons/PackageIcon.js";import{QrCodeIcon as T}from"../shared/icons/QrCodeIcon.js";import{WalletIcon as E}from"../shared/icons/WalletIcon.js";import{XIcon as D}from"../shared/icons/XIcon.js";export{e as ActivityIcon,t as AlertIcon,n as ArrowDownIcon,r as ArrowRightIcon,i as ArrowRightLeftIcon,h as BinanceIcon,a as CheckIcon,o as ChevronDownIcon,s as ChevronLeftIcon,c as ChevronRightIcon,l as ChevronUpIcon,u as CircleArrowUpIcon,d as CircleHelpIcon,f as ClockIcon,g as CoinbaseIcon,p as CopyIcon,m as ExternalLinkIcon,b as InfoIcon,_ as KrakenIcon,x as LoaderIcon,S as LogoIcon,C as MailIcon,v as OkxIcon,w as PackageIcon,T as QrCodeIcon,y as RobinhoodIcon,E as WalletIcon,D as XIcon};
1
+ import{ActivityIcon as e}from"../shared/icons/ActivityIcon.js";import{AlertIcon as t}from"../shared/icons/AlertIcon.js";import{AmexIcon as n}from"../shared/icons/AmexIcon.js";import{ApplePayIcon as r}from"../shared/icons/ApplePayIcon.js";import{ArrowDownIcon as i}from"../shared/icons/ArrowDownIcon.js";import{ArrowRightIcon as a}from"../shared/icons/ArrowRightIcon.js";import{ArrowRightLeftIcon as o}from"../shared/icons/ArrowRightLeftIcon.js";import{BitcoinIcon as s}from"../shared/icons/BitcoinIcon.js";import{CardIcon as c}from"../shared/icons/CardIcon.js";import{CashIcon as l}from"../shared/icons/CashIcon.js";import{CheckIcon as u}from"../shared/icons/CheckIcon.js";import{ChevronDownIcon as d}from"../shared/icons/ChevronDownIcon.js";import{ChevronLeftIcon as f}from"../shared/icons/ChevronLeftIcon.js";import{ChevronRightIcon as p}from"../shared/icons/ChevronRightIcon.js";import{ChevronUpIcon as m}from"../shared/icons/ChevronUpIcon.js";import{CircleArrowUpIcon as h}from"../shared/icons/CircleArrowUpIcon.js";import{CircleHelpIcon as g}from"../shared/icons/CircleHelpIcon.js";import{ClockIcon as _}from"../shared/icons/ClockIcon.js";import{CopyIcon as v}from"../shared/icons/CopyIcon.js";import{DiscoverIcon as y}from"../shared/icons/DiscoverIcon.js";import{ExternalLinkIcon as b}from"../shared/icons/ExternalLinkIcon.js";import{BinanceIcon as x}from"../shared/icons/exchanges/BinanceIcon.js";import{CoinbaseIcon as S}from"../shared/icons/exchanges/CoinbaseIcon.js";import{KrakenIcon as C}from"../shared/icons/exchanges/KrakenIcon.js";import{OkxIcon as w}from"../shared/icons/exchanges/OkxIcon.js";import{RobinhoodIcon as T}from"../shared/icons/exchanges/RobinhoodIcon.js";import"../shared/icons/exchanges/index.js";import{GooglePayIcon as E}from"../shared/icons/GooglePayIcon.js";import{InfoIcon as D}from"../shared/icons/InfoIcon.js";import{LoaderIcon as O}from"../shared/icons/LoaderIcon.js";import{LogoIcon as k}from"../shared/icons/LogoIcon.js";import{MailIcon as A}from"../shared/icons/MailIcon.js";import{MastercardIcon as j}from"../shared/icons/MastercardIcon.js";import{PackageIcon as M}from"../shared/icons/PackageIcon.js";import{QrCodeIcon as N}from"../shared/icons/QrCodeIcon.js";import{VisaIcon as P}from"../shared/icons/VisaIcon.js";import{WalletIcon as F}from"../shared/icons/WalletIcon.js";import{XIcon as I}from"../shared/icons/XIcon.js";export{e as ActivityIcon,t as AlertIcon,n as AmexIcon,r as ApplePayIcon,i as ArrowDownIcon,a as ArrowRightIcon,o as ArrowRightLeftIcon,x as BinanceIcon,s as BitcoinIcon,c as CardIcon,l as CashIcon,u as CheckIcon,d as ChevronDownIcon,f as ChevronLeftIcon,p as ChevronRightIcon,m as ChevronUpIcon,h as CircleArrowUpIcon,g as CircleHelpIcon,_ as ClockIcon,S as CoinbaseIcon,v as CopyIcon,y as DiscoverIcon,b as ExternalLinkIcon,E as GooglePayIcon,D as InfoIcon,C as KrakenIcon,O as LoaderIcon,k as LogoIcon,A as MailIcon,j as MastercardIcon,w as OkxIcon,M as PackageIcon,N as QrCodeIcon,T as RobinhoodIcon,P as VisaIcon,F as WalletIcon,I as XIcon};
package/dist/index.d.ts CHANGED
@@ -1,11 +1,12 @@
1
1
  import { TxRef } from "./shared/driver/types.js";
2
2
  import { ActivityAmount, ActivityDirection, ActivityPayload, ActivityRowPayload, ActivityStatus, ActivityStatusType } from "./shared/widgets/activity/payloads.js";
3
3
  import { ActivityDriver, ActivitySnapshot } from "./flows/activity/driver/types.js";
4
+ import { CashMethodCapability, CashMethodsPayload } from "./flows/deposit/driver/payloads.js";
4
5
  import { DepositSnapshot } from "./flows/deposit/driver/types.js";
5
6
  import { useDepositSnapshot } from "./flows/deposit/driver/context.js";
6
7
  import { ActivityOpenInput } from "./shared/orchestrator/activityOpenInput.js";
7
8
  import { FailureInfo } from "./shared/orchestrator/types.js";
8
- import { DepositActions, DepositController, DepositMethod, DepositMethodConfig, DepositMethodsConfig, DepositState, DepositStateName, OpenInput } from "./flows/deposit/orchestrator/types.js";
9
+ import { CashMethodId, DepositActions, DepositController, DepositMethod, DepositMethodConfig, DepositMethodsConfig, DepositRailConfig, DepositState, DepositStateName, OpenInput } from "./flows/deposit/orchestrator/types.js";
9
10
  import { ChainType, isValidAddressForChainType, isValidEvmAddress, isValidTronAddress, toChainType } from "./shared/chains/index.js";
10
11
  import { WithdrawSnapshot } from "./flows/withdraw/driver/types.js";
11
12
  import { useWithdrawSnapshot } from "./flows/withdraw/driver/context.js";
@@ -17,7 +18,7 @@ import { SupportConfig, SupportOpenContext } from "./shared/support/types.js";
17
18
  import { TermsConfig, TermsSelectContext } from "./shared/terms/types.js";
18
19
  import { createLocalStorageAdapter, createMemoryStorageAdapter, createSessionStorageAdapter, resolveStorageAdapter } from "./storage/adapters.js";
19
20
  import { createKitStorage } from "./storage/createKitStorage.js";
20
- import { DEFAULT_KIT_STORAGE_NAMESPACE, KitStorageProvider, useKitStorage, useKitStorageValue } from "./storage/context.js";
21
+ import { DEFAULT_KIT_STORAGE_NAMESPACE, KitStorageProvider, useKitStorage, useKitStorageValue, useOptionalKitStorage } from "./storage/context.js";
21
22
  import { useActivitySnapshot } from "./flows/activity/driver/context.js";
22
23
  import { StridgeEnvironment } from "./drivers/stridge/types.js";
23
24
  import { FlowIdKey } from "./events/bus/flowIdRegistry.js";
@@ -32,15 +33,16 @@ import { useStridgeFlowEvent } from "./events/hooks/useStridgeFlowEvent.js";
32
33
  import { useStridgeFlowEvents } from "./events/hooks/useStridgeFlowEvents.js";
33
34
  import { useActivityState } from "./flows/activity/orchestrator/controller.js";
34
35
  import { useActivity, useOptionalActivity, useOptionalPrefetchActivity, usePrefetchActivity } from "./flows/activity/orchestrator/useActivity.js";
36
+ import { useDepositState } from "./flows/deposit/orchestrator/controller.js";
37
+ import { useDeposit, useOptionalDeposit, usePrefetchDeposit } from "./flows/deposit/orchestrator/useDeposit.js";
35
38
  import { WithdrawBalanceInput, WithdrawBindings, WithdrawSuggestedRecipient, useWithdrawBindings } from "./flows/withdraw/bindings/WithdrawBindings.js";
36
39
  import { ChainLogoMeta } from "./shared/utils/logos/chains.js";
37
40
  import { ChainLogoInput, TokenLogoInput } from "./shared/utils/logos/types.js";
38
41
  import { LogosNamespace, logos } from "./shared/utils/logos/api.js";
39
42
  import { BannerAckBucket, bannerAckStorageKey, bucketFromSettlement, useBannerAck, useBannerAckForSettlement } from "./banners/useBannerAck.js";
40
- import { useDepositState } from "./flows/deposit/orchestrator/controller.js";
41
- import { useDeposit, useOptionalDeposit, usePrefetchDeposit } from "./flows/deposit/orchestrator/useDeposit.js";
43
+ import { CardBrand, CardData, DepositBindings, TokenizationResult, useDepositBindings } from "./flows/deposit/bindings/DepositBindings.js";
42
44
  import { useWithdrawState } from "./flows/withdraw/orchestrator/controller.js";
43
45
  import { useOptionalWithdraw, usePrefetchWithdraw, useWithdraw } from "./flows/withdraw/orchestrator/useWithdraw.js";
44
46
  import { ConnectWalletConfig } from "./shared/wallet/ConnectWalletContext.js";
45
47
  import { StridgeAppearance, StridgeAsset, StridgeDepositDestination, StridgeDepositFlowConfig, StridgeDepositMethodConfig, StridgeDepositMethodsConfig, StridgeFlowOwner, StridgePrefetchConfig, StridgeProvider, StridgeStorageConfig, StridgeWithdrawFlowConfig } from "./stridge/StridgeProvider.js";
46
- export { type ActivityActions, type ActivityAmount, type ActivityController, type ActivityDirection, type ActivityDriver, type ActivityOpenInput, type ActivityPayload, type ActivityRowPayload, type ActivitySnapshot, type ActivityState, type ActivityStateName, type ActivityStatus, type ActivityStatusType, type BannerAckBucket, type ChainLogoInput, type ChainLogoMeta, type ChainType, type ConnectWalletConfig, DEFAULT_KIT_STORAGE_NAMESPACE, type DepositActions, type DepositController, type DepositMethod, type DepositMethodConfig, type DepositMethodsConfig, type OpenInput as DepositOpenInput, type DepositSnapshot, type DepositState, type DepositStateName, type FailureInfo, type FlowEvent, type FlowIdKey, type IntercomMerchantContext, KitPortalScope, KitStorageProvider, type LogosNamespace, type Presentation, type PresentationConfig, type PresentationMode, type PublicStridgeEventBus, type StridgeAppearance, type StridgeAsset, type StridgeDepositDestination, type StridgeDepositFlowConfig, type StridgeDepositMethodConfig, type StridgeDepositMethodsConfig, type StridgeEnvironment, type StridgeEvent, type StridgeFlowOwner, type StridgePrefetchConfig, StridgeProvider, type StridgeStorageConfig, type StridgeWithdrawFlowConfig, type SupportConfig, type SupportOpenContext, type TermsConfig, type TermsSelectContext, type TokenLogoInput, type TxRef, type UiEvent, type WithdrawActions, type WithdrawBalanceInput, type WithdrawBindings, type WithdrawController, type WithdrawSnapshot, type WithdrawState, type WithdrawStateName, type WithdrawSubmitActions, type WithdrawSubmitCallback, type WithdrawSubmitInput, type WithdrawSuggestedRecipient, type WithdrawalFormSnapshot, bannerAckStorageKey, bucketFromSettlement, createKitStorage, createLocalStorageAdapter, createMemoryStorageAdapter, createSessionStorageAdapter, isValidAddressForChainType, isValidEvmAddress, isValidTronAddress, logos, resolveStorageAdapter, toChainType, useActivity, useActivitySnapshot, useActivityState, useBannerAck, useBannerAckForSettlement, useCurrentFlowId, useDeposit, useDepositSnapshot, useDepositState, useKitConfig, useKitStorage, useKitStorageValue, useOptionalActivity, useOptionalDeposit, useOptionalPrefetchActivity, useOptionalWithdraw, usePrefetchActivity, usePrefetchDeposit, usePrefetchWithdraw, useStridgeEvent, useStridgeEventBus, useStridgeEvents, useStridgeFlowEvent, useStridgeFlowEvents, useWithdraw, useWithdrawBindings, useWithdrawSnapshot, useWithdrawState };
48
+ export { type ActivityActions, type ActivityAmount, type ActivityController, type ActivityDirection, type ActivityDriver, type ActivityOpenInput, type ActivityPayload, type ActivityRowPayload, type ActivitySnapshot, type ActivityState, type ActivityStateName, type ActivityStatus, type ActivityStatusType, type BannerAckBucket, type CardBrand, type CardData, type CashMethodCapability, type CashMethodId, type CashMethodsPayload, type ChainLogoInput, type ChainLogoMeta, type ChainType, type ConnectWalletConfig, DEFAULT_KIT_STORAGE_NAMESPACE, type DepositActions, type DepositBindings, type DepositController, type DepositMethod, type DepositMethodConfig, type DepositMethodsConfig, type OpenInput as DepositOpenInput, type DepositRailConfig, type DepositSnapshot, type DepositState, type DepositStateName, type FailureInfo, type FlowEvent, type FlowIdKey, type IntercomMerchantContext, KitPortalScope, KitStorageProvider, type LogosNamespace, type Presentation, type PresentationConfig, type PresentationMode, type PublicStridgeEventBus, type StridgeAppearance, type StridgeAsset, type StridgeDepositDestination, type StridgeDepositFlowConfig, type StridgeDepositMethodConfig, type StridgeDepositMethodsConfig, type StridgeEnvironment, type StridgeEvent, type StridgeFlowOwner, type StridgePrefetchConfig, StridgeProvider, type StridgeStorageConfig, type StridgeWithdrawFlowConfig, type SupportConfig, type SupportOpenContext, type TermsConfig, type TermsSelectContext, type TokenLogoInput, type TokenizationResult, type TxRef, type UiEvent, type WithdrawActions, type WithdrawBalanceInput, type WithdrawBindings, type WithdrawController, type WithdrawSnapshot, type WithdrawState, type WithdrawStateName, type WithdrawSubmitActions, type WithdrawSubmitCallback, type WithdrawSubmitInput, type WithdrawSuggestedRecipient, type WithdrawalFormSnapshot, bannerAckStorageKey, bucketFromSettlement, createKitStorage, createLocalStorageAdapter, createMemoryStorageAdapter, createSessionStorageAdapter, isValidAddressForChainType, isValidEvmAddress, isValidTronAddress, logos, resolveStorageAdapter, toChainType, useActivity, useActivitySnapshot, useActivityState, useBannerAck, useBannerAckForSettlement, useCurrentFlowId, useDeposit, useDepositBindings, useDepositSnapshot, useDepositState, useKitConfig, useKitStorage, useKitStorageValue, useOptionalActivity, useOptionalDeposit, useOptionalKitStorage, useOptionalPrefetchActivity, useOptionalWithdraw, usePrefetchActivity, usePrefetchDeposit, usePrefetchWithdraw, useStridgeEvent, useStridgeEventBus, useStridgeEvents, useStridgeFlowEvent, useStridgeFlowEvents, useWithdraw, useWithdrawBindings, useWithdrawSnapshot, useWithdrawState };
package/dist/index.js CHANGED
@@ -1 +1 @@
1
- import{isValidAddressForChainType as e,isValidEvmAddress as t,isValidTronAddress as n,toChainType as r}from"./shared/chains/index.js";import{logos as i}from"./shared/utils/logos/api.js";import"./shared/utils/logos/index.js";import{createLocalStorageAdapter as a,createMemoryStorageAdapter as o,createSessionStorageAdapter as s,resolveStorageAdapter as c}from"./storage/adapters.js";import{createKitStorage as l}from"./storage/createKitStorage.js";import{DEFAULT_KIT_STORAGE_NAMESPACE as u,KitStorageProvider as d,useKitStorage as f,useKitStorageValue as p}from"./storage/context.js";import"./storage/index.js";import{bannerAckStorageKey as m,bucketFromSettlement as h,useBannerAck as g,useBannerAckForSettlement as _}from"./banners/useBannerAck.js";import"./banners/index.js";import{useCurrentFlowId as v}from"./events/hooks/useCurrentFlowId.js";import{useStridgeEvent as y}from"./events/hooks/useStridgeEvent.js";import{useStridgeEventBus as b}from"./events/hooks/useStridgeEventBus.js";import{useStridgeEvents as x}from"./events/hooks/useStridgeEvents.js";import{useStridgeFlowEvent as S}from"./events/hooks/useStridgeFlowEvent.js";import{useStridgeFlowEvents as C}from"./events/hooks/useStridgeFlowEvents.js";import"./events/index.js";import{useActivitySnapshot as w}from"./flows/activity/driver/context.js";import{useActivityState as T}from"./flows/activity/orchestrator/controller.js";import{useActivity as E,useOptionalActivity as D,useOptionalPrefetchActivity as O,usePrefetchActivity as k}from"./flows/activity/orchestrator/useActivity.js";import"./flows/activity/orchestrator/index.js";import{useDepositSnapshot as A}from"./flows/deposit/driver/context.js";import{useDepositState as j}from"./flows/deposit/orchestrator/controller.js";import{useDeposit as M,useOptionalDeposit as N,usePrefetchDeposit as P}from"./flows/deposit/orchestrator/useDeposit.js";import{useWithdrawBindings as F}from"./flows/withdraw/bindings/WithdrawBindings.js";import"./flows/withdraw/bindings/index.js";import{useWithdrawSnapshot as I}from"./flows/withdraw/driver/context.js";import{useWithdrawState as L}from"./flows/withdraw/orchestrator/controller.js";import{useOptionalWithdraw as R,usePrefetchWithdraw as z,useWithdraw as B}from"./flows/withdraw/orchestrator/useWithdraw.js";import"./flows/withdraw/orchestrator/index.js";import{useKitConfig as V}from"./scope/context.js";import{KitPortalScope as H}from"./scope/KitPortalScope.js";import{StridgeProvider as U}from"./stridge/StridgeProvider.js";export{u as DEFAULT_KIT_STORAGE_NAMESPACE,H as KitPortalScope,d as KitStorageProvider,U as StridgeProvider,m as bannerAckStorageKey,h as bucketFromSettlement,l as createKitStorage,a as createLocalStorageAdapter,o as createMemoryStorageAdapter,s as createSessionStorageAdapter,e as isValidAddressForChainType,t as isValidEvmAddress,n as isValidTronAddress,i as logos,c as resolveStorageAdapter,r as toChainType,E as useActivity,w as useActivitySnapshot,T as useActivityState,g as useBannerAck,_ as useBannerAckForSettlement,v as useCurrentFlowId,M as useDeposit,A as useDepositSnapshot,j as useDepositState,V as useKitConfig,f as useKitStorage,p as useKitStorageValue,D as useOptionalActivity,N as useOptionalDeposit,O as useOptionalPrefetchActivity,R as useOptionalWithdraw,k as usePrefetchActivity,P as usePrefetchDeposit,z as usePrefetchWithdraw,y as useStridgeEvent,b as useStridgeEventBus,x as useStridgeEvents,S as useStridgeFlowEvent,C as useStridgeFlowEvents,B as useWithdraw,F as useWithdrawBindings,I as useWithdrawSnapshot,L as useWithdrawState};
1
+ import{isValidAddressForChainType as e,isValidEvmAddress as t,isValidTronAddress as n,toChainType as r}from"./shared/chains/index.js";import{logos as i}from"./shared/utils/logos/api.js";import"./shared/utils/logos/index.js";import{createLocalStorageAdapter as a,createMemoryStorageAdapter as o,createSessionStorageAdapter as s,resolveStorageAdapter as c}from"./storage/adapters.js";import{createKitStorage as l}from"./storage/createKitStorage.js";import{DEFAULT_KIT_STORAGE_NAMESPACE as u,KitStorageProvider as d,useKitStorage as f,useKitStorageValue as p,useOptionalKitStorage as m}from"./storage/context.js";import"./storage/index.js";import{bannerAckStorageKey as h,bucketFromSettlement as g,useBannerAck as _,useBannerAckForSettlement as v}from"./banners/useBannerAck.js";import"./banners/index.js";import{useCurrentFlowId as y}from"./events/hooks/useCurrentFlowId.js";import{useStridgeEvent as b}from"./events/hooks/useStridgeEvent.js";import{useStridgeEventBus as x}from"./events/hooks/useStridgeEventBus.js";import{useStridgeEvents as S}from"./events/hooks/useStridgeEvents.js";import{useStridgeFlowEvent as C}from"./events/hooks/useStridgeFlowEvent.js";import{useStridgeFlowEvents as w}from"./events/hooks/useStridgeFlowEvents.js";import"./events/index.js";import{useActivitySnapshot as T}from"./flows/activity/driver/context.js";import{useActivityState as E}from"./flows/activity/orchestrator/controller.js";import{useActivity as D,useOptionalActivity as O,useOptionalPrefetchActivity as k,usePrefetchActivity as A}from"./flows/activity/orchestrator/useActivity.js";import"./flows/activity/orchestrator/index.js";import{useDepositBindings as j}from"./flows/deposit/bindings/DepositBindings.js";import"./flows/deposit/bindings/index.js";import{useDepositSnapshot as M}from"./flows/deposit/driver/context.js";import{useDepositState as N}from"./flows/deposit/orchestrator/controller.js";import{useDeposit as P,useOptionalDeposit as F,usePrefetchDeposit as I}from"./flows/deposit/orchestrator/useDeposit.js";import{useWithdrawBindings as L}from"./flows/withdraw/bindings/WithdrawBindings.js";import"./flows/withdraw/bindings/index.js";import{useWithdrawSnapshot as R}from"./flows/withdraw/driver/context.js";import{useWithdrawState as z}from"./flows/withdraw/orchestrator/controller.js";import{useOptionalWithdraw as B,usePrefetchWithdraw as V,useWithdraw as H}from"./flows/withdraw/orchestrator/useWithdraw.js";import"./flows/withdraw/orchestrator/index.js";import{useKitConfig as U}from"./scope/context.js";import{KitPortalScope as W}from"./scope/KitPortalScope.js";import{StridgeProvider as G}from"./stridge/StridgeProvider.js";export{u as DEFAULT_KIT_STORAGE_NAMESPACE,W as KitPortalScope,d as KitStorageProvider,G as StridgeProvider,h as bannerAckStorageKey,g as bucketFromSettlement,l as createKitStorage,a as createLocalStorageAdapter,o as createMemoryStorageAdapter,s as createSessionStorageAdapter,e as isValidAddressForChainType,t as isValidEvmAddress,n as isValidTronAddress,i as logos,c as resolveStorageAdapter,r as toChainType,D as useActivity,T as useActivitySnapshot,E as useActivityState,_ as useBannerAck,v as useBannerAckForSettlement,y as useCurrentFlowId,P as useDeposit,j as useDepositBindings,M as useDepositSnapshot,N as useDepositState,U as useKitConfig,f as useKitStorage,p as useKitStorageValue,O as useOptionalActivity,F as useOptionalDeposit,m as useOptionalKitStorage,k as useOptionalPrefetchActivity,B as useOptionalWithdraw,A as usePrefetchActivity,I as usePrefetchDeposit,V as usePrefetchWithdraw,b as useStridgeEvent,x as useStridgeEventBus,S as useStridgeEvents,C as useStridgeFlowEvent,w as useStridgeFlowEvents,H as useWithdraw,L as useWithdrawBindings,R as useWithdrawSnapshot,z as useWithdrawState};
package/dist/package.js CHANGED
@@ -1 +1 @@
1
- var e=`0.1.0-alpha.55`;export{e as version};
1
+ var e=`0.1.0-alpha.56`;export{e as version};
@@ -0,0 +1,14 @@
1
+ import { SVGProps } from "react";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
+
4
+ //#region src/shared/icons/AmexIcon.d.ts
5
+ /**
6
+ * American Express monochrome wordmark — silhouette letterforms in `currentColor`. Used as the
7
+ * detected-brand glyph in the cash deposit's `CardInputRow` when `detectBrand(pan)` returns
8
+ * `"amex"`. Full-colour Amex brand lockups (the blue rectangle with white wordmark) are
9
+ * reserved for integrators with brand approval; this kit ships the silhouette wordmark for
10
+ * trademark safety.
11
+ */
12
+ declare function AmexIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
13
+ //#endregion
14
+ export { AmexIcon };
@@ -0,0 +1 @@
1
+ import{jsx as e}from"react/jsx-runtime";function t(t){return e(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:32,height:20,viewBox:`0 0 32 20`,fill:`currentColor`,...t,children:e(`text`,{x:`16`,y:`14.5`,textAnchor:`middle`,fontFamily:`-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif`,fontSize:`10`,fontWeight:`900`,letterSpacing:`0.2`,children:`AMEX`})})}export{t as AmexIcon};
@@ -0,0 +1,15 @@
1
+ import { SVGProps } from "react";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
+
4
+ //#region src/shared/icons/ApplePayIcon.d.ts
5
+ /**
6
+ * Apple glyph — the bitten-apple silhouette, filled with `currentColor`.
7
+ * Used as the themed monochrome glyph for the cash rail's Apple Pay method
8
+ * in `Deposit.Method`. The full Apple Pay button lockup is reserved for
9
+ * integrators with Apple brand approval, who pass the official mark through
10
+ * the `DepositMethodInput.icon` override prop. The `Pay` suffix on the
11
+ * identifier disambiguates this from non-payment uses of the Apple brand.
12
+ */
13
+ declare function ApplePayIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
14
+ //#endregion
15
+ export { ApplePayIcon };
@@ -0,0 +1 @@
1
+ import{jsx as e}from"react/jsx-runtime";function t(t){return e(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 24 24`,fill:`currentColor`,...t,children:e(`path`,{d:`M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.84 1.18-.21 2.31-.92 3.57-.84 1.5.12 2.65.72 3.4 1.8-3.12 1.87-2.62 5.98.48 7.13-.57 1.5-1.31 2.99-2.54 4.04zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z`})})}export{t as ApplePayIcon};
@@ -0,0 +1,17 @@
1
+ import { SVGProps } from "react";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
+
4
+ //#region src/shared/icons/BitcoinIcon.d.ts
5
+ /**
6
+ * Bitcoin glyph — stylised ₿ mark drawn as a single open stroke. Used
7
+ * as the iconographic shorthand for the crypto payment rail in
8
+ * `Deposit.RailPicker`. The kit's only crypto-symbol icon; appropriate
9
+ * wherever a single glyph needs to represent "crypto" as a category
10
+ * (not a specific token — for that use a `TokenLogo`).
11
+ *
12
+ * SVG path mirrors the `bitcoin` icon from lucide (MIT) — inlined
13
+ * because `@stridge/kit` must not depend on `lucide-react`.
14
+ */
15
+ declare function BitcoinIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
16
+ //#endregion
17
+ export { BitcoinIcon };
@@ -0,0 +1 @@
1
+ import{jsx as e}from"react/jsx-runtime";function t(t){return e(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...t,children:e(`path`,{d:`M11.767 19.089c4.924.868 6.14-6.025 1.216-6.894m-1.216 6.894L5.86 18.047m5.908 1.042-.347 1.97m1.563-8.864c4.924.869 6.14-6.025 1.215-6.893m-1.215 6.893-3.94-.694m5.155-6.2L8.29 4.26m5.908 1.042.348-1.97M7.48 20.364l3.126-17.727`})})}export{t as BitcoinIcon};
@@ -0,0 +1,16 @@
1
+ import { SVGProps } from "react";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
+
4
+ //#region src/shared/icons/CardIcon.d.ts
5
+ /**
6
+ * Generic credit-card outline. Used as the themed monochrome glyph for the
7
+ * cash rail's Card method in `Deposit.Method`; brand-specific card art (Visa,
8
+ * Mastercard, etc.) ships through the `DepositMethodInput.icon` override prop
9
+ * when the integrator has approval for the official mark.
10
+ *
11
+ * SVG path mirrors the `credit-card` icon from lucide (MIT) — inlined because
12
+ * `@stridge/kit` must not depend on `lucide-react`.
13
+ */
14
+ declare function CardIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
15
+ //#endregion
16
+ export { CardIcon };
@@ -0,0 +1 @@
1
+ import{jsx as e,jsxs as t}from"react/jsx-runtime";function n(n){return t(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...n,children:[e(`rect`,{width:20,height:14,x:2,y:5,rx:2}),e(`line`,{x1:2,x2:22,y1:10,y2:10})]})}export{n as CardIcon};
@@ -0,0 +1,16 @@
1
+ import { SVGProps } from "react";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
+
4
+ //#region src/shared/icons/CashIcon.d.ts
5
+ /**
6
+ * Dollar-sign glyph — open $ stroke. Used as the iconographic shorthand
7
+ * for the cash (fiat) payment rail in `Deposit.RailPicker`. Reserved
8
+ * for surfaces that represent "cash" as a category; for a specific
9
+ * currency, prefer the appropriate locale-aware symbol instead.
10
+ *
11
+ * SVG path mirrors the `dollar-sign` icon from lucide (MIT) — inlined
12
+ * because `@stridge/kit` must not depend on `lucide-react`.
13
+ */
14
+ declare function CashIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
15
+ //#endregion
16
+ export { CashIcon };
@@ -0,0 +1 @@
1
+ import{jsx as e,jsxs as t}from"react/jsx-runtime";function n(n){return t(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 24 24`,fill:`none`,stroke:`currentColor`,strokeWidth:2,strokeLinecap:`round`,strokeLinejoin:`round`,...n,children:[e(`line`,{x1:12,x2:12,y1:2,y2:22}),e(`path`,{d:`M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6`})]})}export{n as CashIcon};
@@ -0,0 +1,14 @@
1
+ import { SVGProps } from "react";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
+
4
+ //#region src/shared/icons/DiscoverIcon.d.ts
5
+ /**
6
+ * Discover monochrome wordmark — silhouette letterforms in `currentColor`. Used as the
7
+ * detected-brand glyph in the cash deposit's `CardInputRow` when `detectBrand(pan)` returns
8
+ * `"discover"`. Full-colour Discover brand lockups (the orange circle wordmark) are reserved
9
+ * for integrators with brand approval; this kit ships the silhouette wordmark for trademark
10
+ * safety.
11
+ */
12
+ declare function DiscoverIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
13
+ //#endregion
14
+ export { DiscoverIcon };
@@ -0,0 +1 @@
1
+ import{jsx as e}from"react/jsx-runtime";function t(t){return e(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:32,height:20,viewBox:`0 0 32 20`,fill:`currentColor`,...t,children:e(`text`,{x:`16`,y:`14.5`,textAnchor:`middle`,fontFamily:`-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif`,fontSize:`7`,fontWeight:`900`,letterSpacing:`-0.1`,children:`DISCOVER`})})}export{t as DiscoverIcon};
@@ -0,0 +1,15 @@
1
+ import { SVGProps } from "react";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
+
4
+ //#region src/shared/icons/GooglePayIcon.d.ts
5
+ /**
6
+ * Google "G" glyph — monochrome silhouette filled with `currentColor`. Used
7
+ * as the themed glyph for the cash rail's Google Pay method in
8
+ * `Deposit.Method`. The full Google Pay button lockup is reserved for
9
+ * integrators with Google brand approval, who pass the official mark through
10
+ * the `DepositMethodInput.icon` override prop. The `Pay` suffix on the
11
+ * identifier disambiguates this from non-payment uses of the Google brand.
12
+ */
13
+ declare function GooglePayIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
14
+ //#endregion
15
+ export { GooglePayIcon };
@@ -0,0 +1 @@
1
+ import{jsx as e}from"react/jsx-runtime";function t(t){return e(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:24,height:24,viewBox:`0 0 24 24`,fill:`currentColor`,...t,children:e(`path`,{d:`M21.35 11.1H12.18v3.83h5.27c-.5 2.43-2.55 3.83-5.27 3.83-3.21 0-5.81-2.6-5.81-5.81s2.6-5.81 5.81-5.81c1.39 0 2.65.49 3.64 1.31l2.71-2.71C16.84 4.16 14.61 3 12.18 3 7.05 3 2.92 7.13 2.92 12.26s4.13 9.26 9.26 9.26c5.35 0 8.93-3.74 8.93-9 0-.61-.06-1.21-.16-1.79z`})})}export{t as GooglePayIcon};
@@ -0,0 +1,16 @@
1
+ import { SVGProps } from "react";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
+
4
+ //#region src/shared/icons/MastercardIcon.d.ts
5
+ /**
6
+ * Mastercard monochrome silhouette — two interlocking circles, the brand's icon-only mark.
7
+ * Themed via `currentColor`. Used as the detected-brand glyph in the cash deposit's
8
+ * `CardInputRow` when `detectBrand(pan)` returns `"mastercard"`. Full-colour Mastercard
9
+ * lockups (the red+orange Venn diagram) are reserved for integrators with brand approval; this
10
+ * kit ships the silhouette for trademark safety. The two circles paint at 70% opacity each so
11
+ * the overlap region renders at full opacity in `currentColor` — keeps the iconic Venn shape
12
+ * recognisable without baking in the brand colours.
13
+ */
14
+ declare function MastercardIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
15
+ //#endregion
16
+ export { MastercardIcon };
@@ -0,0 +1 @@
1
+ import{jsx as e,jsxs as t}from"react/jsx-runtime";function n(n){return t(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:32,height:20,viewBox:`0 0 32 20`,fill:`currentColor`,...n,children:[e(`circle`,{cx:`12`,cy:`10`,r:`6`,fillOpacity:`0.7`}),e(`circle`,{cx:`20`,cy:`10`,r:`6`,fillOpacity:`0.7`})]})}export{n as MastercardIcon};
@@ -0,0 +1,15 @@
1
+ import { SVGProps } from "react";
2
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
3
+
4
+ //#region src/shared/icons/VisaIcon.d.ts
5
+ /**
6
+ * Visa-brand monochrome wordmark — silhouette letterforms in `currentColor`. Used as the
7
+ * detected-brand glyph in the cash deposit's `CardInputRow` when `detectBrand(pan)` returns
8
+ * `"visa"`. The natural 32×20 aspect ratio matches card-art conventions; consumers constrain
9
+ * via inline width/height. Full-colour Visa brand lockups are reserved for integrators with
10
+ * brand approval, who pass the official mark through a slot override; this kit ships the
11
+ * silhouette for trademark safety.
12
+ */
13
+ declare function VisaIcon(props: SVGProps<SVGSVGElement>): _$react_jsx_runtime0.JSX.Element;
14
+ //#endregion
15
+ export { VisaIcon };
@@ -0,0 +1 @@
1
+ import{jsx as e}from"react/jsx-runtime";function t(t){return e(`svg`,{xmlns:`http://www.w3.org/2000/svg`,width:32,height:20,viewBox:`0 0 32 20`,fill:`currentColor`,...t,children:e(`text`,{x:`16`,y:`14.5`,textAnchor:`middle`,fontFamily:`-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif`,fontSize:`11`,fontWeight:`900`,fontStyle:`italic`,letterSpacing:`-0.2`,children:`VISA`})})}export{t as VisaIcon};
@@ -0,0 +1,79 @@
1
+ import * as _$react_jsx_runtime0 from "react/jsx-runtime";
2
+ import { Tabs } from "@base-ui/react/tabs";
3
+
4
+ //#region src/shared/ui/Tabs/Tabs.d.ts
5
+ /**
6
+ * Visual variant for the segmented-tabs primitive.
7
+ *
8
+ * - `default` — recessed track + floating pill indicator (segmented control).
9
+ * - `line` — transparent track + underline indicator (page tabs / nav).
10
+ * - `ghost` — no track + no indicator; hover wash on idle tabs.
11
+ *
12
+ * Set on `Tabs.List`; `Tabs.Tab` and `Tabs.Indicator` inherit via `TabsListContext`.
13
+ */
14
+ type TabsVariant = "default" | "line" | "ghost";
15
+ /**
16
+ * Segmented tabs primitive. Compose `Tabs.Root` with one `Tabs.List` (which hosts
17
+ * `Tabs.Tab` + `Tabs.Indicator`) and one `Tabs.Panel` per tab `value`.
18
+ *
19
+ * Wraps `@base-ui/react/tabs` for ARIA semantics (roving tabindex, arrow-key navigation,
20
+ * `aria-controls` / `aria-labelledby` panel wiring). Active tab coordinates are exposed
21
+ * via the 6 `--active-tab-*` CSS vars Base UI sets on `Tabs.Indicator`; the kit's styles
22
+ * consume `--active-tab-left` / `--active-tab-right` and flip between them under RTL.
23
+ *
24
+ * @example
25
+ * ```tsx
26
+ * <Tabs.Root defaultValue="crypto">
27
+ * <Tabs.List variant="default">
28
+ * <Tabs.Tab value="crypto">Crypto</Tabs.Tab>
29
+ * <Tabs.Tab value="cash">Cash</Tabs.Tab>
30
+ * <Tabs.Indicator />
31
+ * </Tabs.List>
32
+ * <Tabs.Panel value="crypto">…</Tabs.Panel>
33
+ * <Tabs.Panel value="cash">…</Tabs.Panel>
34
+ * </Tabs.Root>
35
+ * ```
36
+ */
37
+ declare function TabsRoot({
38
+ className,
39
+ style,
40
+ ...props
41
+ }: Tabs$1.RootProps): _$react_jsx_runtime0.JSX.Element;
42
+ declare function TabsList({
43
+ className,
44
+ style,
45
+ variant,
46
+ ...props
47
+ }: Tabs$1.ListProps): _$react_jsx_runtime0.JSX.Element;
48
+ declare function TabsTab({
49
+ className,
50
+ style,
51
+ ...props
52
+ }: Tabs$1.TabProps): _$react_jsx_runtime0.JSX.Element;
53
+ declare function TabsIndicator({
54
+ className,
55
+ style,
56
+ ...props
57
+ }: Tabs$1.IndicatorProps): _$react_jsx_runtime0.JSX.Element;
58
+ declare function TabsPanel({
59
+ className,
60
+ style,
61
+ ...props
62
+ }: Tabs$1.PanelProps): _$react_jsx_runtime0.JSX.Element;
63
+ declare namespace Tabs$1 {
64
+ type Variant = TabsVariant;
65
+ type RootProps = Tabs.Root.Props;
66
+ type ListProps = Tabs.List.Props & {
67
+ variant?: TabsVariant;
68
+ };
69
+ type TabProps = Tabs.Tab.Props;
70
+ type IndicatorProps = Tabs.Indicator.Props;
71
+ type PanelProps = Tabs.Panel.Props;
72
+ const Root: typeof TabsRoot;
73
+ const List: typeof TabsList;
74
+ const Tab: typeof TabsTab;
75
+ const Indicator: typeof TabsIndicator;
76
+ const Panel: typeof TabsPanel;
77
+ }
78
+ //#endregion
79
+ export { Tabs$1 as Tabs, TabsIndicator, TabsList, TabsPanel, TabsRoot, TabsTab, TabsVariant };
@@ -0,0 +1 @@
1
+ "use client";import{mergeClassName as e}from"../../utils/mergeClassName.js";import{TABS_SLOTS as t}from"./Tabs.slots.js";import{indicatorStyles as n,listStyles as r,panelStyles as i,rootStyles as a,tabStyles as o}from"./Tabs.styles.js";import{createContext as s,use as c,useMemo as l}from"react";import{jsx as u}from"react/jsx-runtime";import*as d from"@stylexjs/stylex";import{Tabs as f}from"@base-ui/react/tabs";const p=s({variant:`default`});function m({className:n,style:r,...i}){let o=d.props(a.base);return u(f.Root,{"data-stridge-slot":t.root,...i,className:e(o.className,n),style:{...o.style,...r}})}function h({className:n,style:i,variant:a=`default`,...o}){let s=d.props(r.base,r[a]);return u(p,{value:l(()=>({variant:a}),[a]),children:u(f.List,{"data-stridge-slot":t.list,"data-variant":a,...o,className:e(s.className,n),style:{...s.style,...i}})})}function g({className:n,style:r,...i}){let{variant:a}=c(p),s=d.props(o.base,o[a]);return u(f.Tab,{"data-stridge-slot":t.tab,"data-variant":a,...i,className:e(s.className,n),style:{...s.style,...r}})}function _({className:r,style:i,...a}){let{variant:o}=c(p),s=d.props(n.base,n[o]);return u(f.Indicator,{"data-stridge-slot":t.indicator,"data-variant":o,...a,className:e(s.className,r),style:{...s.style,...i}})}function v({className:n,style:r,...a}){let o=d.props(i.base);return u(f.Panel,{"data-stridge-slot":t.panel,...a,className:e(o.className,n),style:{...o.style,...r}})}let y;(function(e){e.Root=m,e.List=h,e.Tab=g,e.Indicator=_,e.Panel=v})(y||={});export{y as Tabs,_ as TabsIndicator,h as TabsList,v as TabsPanel,m as TabsRoot,g as TabsTab};
@@ -0,0 +1,11 @@
1
+ //#region src/shared/ui/Tabs/Tabs.slots.d.ts
2
+ declare const TABS_SLOTS: {
3
+ readonly root: "tabs";
4
+ readonly list: "tabs-list";
5
+ readonly tab: "tabs-tab";
6
+ readonly indicator: "tabs-indicator";
7
+ readonly panel: "tabs-panel";
8
+ };
9
+ type TabsSlot = (typeof TABS_SLOTS)[keyof typeof TABS_SLOTS];
10
+ //#endregion
11
+ export { TABS_SLOTS, TabsSlot };
@@ -0,0 +1 @@
1
+ const e={root:`tabs`,list:`tabs-list`,tab:`tabs-tab`,indicator:`tabs-indicator`,panel:`tabs-panel`};export{e as TABS_SLOTS};
@@ -0,0 +1 @@
1
+ const e={base:{"Tabs__rootStyles.base":`Tabs__rootStyles.base`,"display-k1xSpc":`x78zum5`,"flexDirection-kXwgrk":`xdt5ytf`,"gap-kOIVth":`xsfdumc`,"[data-orientation=vertical]_flexDirection-k3uqFh":`xlpxku1`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:4`}},t={base:{"Tabs__listStyles.base":`Tabs__listStyles.base`,"position-kVAEAm":`x1n2onr6`,"display-k1xSpc":`x78zum5`,"alignItems-kGNEyG":`x6s0dn4`,"justifyContent-kjj79g":`xl56j7k`,"color-kMwMTN":`xddgj62`,"gap-kOIVth":`x1r05nms`,"boxSizing-kB7OPa":`x9f619`,"[data-orientation=vertical]_height-k2AXh":`x1smgklz`,"[data-orientation=vertical]_flexDirection-k3uqFh":`x1nquej0`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:14`},default:{"Tabs__listStyles.default":`Tabs__listStyles.default`,"padding-kmVPX3":`x1ljrego`,"backgroundColor-kWkggS":`x13y6qn8`,"borderWidth-kMzoRj":`xmkeg23`,"borderStyle-ksu8eU":`x1y0btm7`,"borderColor-kVAM5u":`x1s46ruh`,"borderRadius-kaIpWk":`x1gt2vge`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:27`},line:{"Tabs__listStyles.line":`Tabs__listStyles.line`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:35`},ghost:{"Tabs__listStyles.ghost":`Tabs__listStyles.ghost`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:36`}},n={base:{"Tabs__tabStyles.base":`Tabs__tabStyles.base`,"position-kVAEAm":`x1n2onr6`,"zIndex-kY2c9j":`x1n327nk`,"display-k1xSpc":`x3nfvp2`,"flexGrow-kzQI83":`x1iyjqo2`,"flexShrink-kmuXW":`xs83m0k`,"flexBasis-kCS8Yb":`x1r8uery`,"cursor-kkrTdU":`x1ypdohk`,"userSelect-kfSwDN":`x87ps6o`,"alignItems-kGNEyG":`x6s0dn4`,"justifyContent-kjj79g":`xl56j7k`,"gap-kOIVth":`x1a6yh9e`,"whiteSpace-khDVqt":`xuxw1ft`,"borderWidth-kMzoRj":`xmkeg23`,"borderStyle-ksu8eU":`x1y0btm7`,"borderColor-kVAM5u":`x9r1u3d`,"paddingInline-kg3NbH":`x1fk34n2`,"paddingBlock-k8WAf4":`x1wjkr2j`,"fontFamily-kMv6JI":`xlaww2m`,"fontWeight-k63SB2":`xi0sa8g`,"fontSize-kGuDYH":`x14qa7mu`,"outline-kI3sdo":`x1a2a7pz`,"backgroundColor-kWkggS":`xjbqb8w`,"transitionProperty-k1ekBW":`xgzoi8n`,"transitionDuration-kIyJzY":`x1vhb3u9`,"transitionTimingFunction-kAMwcw":`x1xv5090`,"color-kMwMTN":`xddgj62 xbs6d1p`,":focus-visible_borderColor-kOJeXU":`x1mt3fz5`,":focus-visible_boxShadow-kEtg5x":`x159teg`,"[data-disabled]_cursor-k7V0jq":`x1j1ks5o`,"[data-disabled]_opacity-kncrQb":`x1szrgyu`,"[data-disabled]_color-kr7yC9":`xctydo3`,"[data-orientation=vertical]_width-kwVBnF":`x1nvwyg1`,"[data-orientation=vertical]_justifyContent-kW83ku":`x1sydc4h`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:39`},default:{"Tabs__tabStyles.default":`Tabs__tabStyles.default`,"borderRadius-kaIpWk":`xfauvix`,"[data-active]_color-kZgtTg":`xqclgz3`,"[data-active]_fontWeight-kXEcAL":`x1xpet1t`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:83`},line:{"Tabs__tabStyles.line":`Tabs__tabStyles.line`,"borderRadius-kaIpWk":`x2u8bby`,"[data-active]_color-kZgtTg":`xqclgz3`,"[data-active]_fontWeight-kXEcAL":`x1xpet1t`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:90`},ghost:{"Tabs__tabStyles.ghost":`Tabs__tabStyles.ghost`,"borderRadius-kaIpWk":`xfauvix`,"backgroundColor-kWkggS":`xjbqb8w xyv6lf4`,"[data-active]_backgroundColor-kUQuju":`xthri8c`,"[data-active]_color-kZgtTg":`xqclgz3`,"[data-active]_fontWeight-kXEcAL":`x1xpet1t`,"[data-disabled]_backgroundColor-kXNYay":`xynnxzo`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:97`}},r={base:{"Tabs__indicatorStyles.base":`Tabs__indicatorStyles.base`,"position-kVAEAm":`x10l6tqk`,"transitionProperty-k1ekBW":`x36inuq`,"transitionDuration-kIyJzY":`x1szhkt1`,"transitionTimingFunction-kAMwcw":`x1xv5090`,"boxSizing-kB7OPa":`x9f619`,"left-kbCHJM":`xvbikie`,"width-kzqmXN":`xoffw1`,":where([dir=rtl]) &_left-kI7wb3":`x1et6zyk`,":where([dir=rtl]) &_right-kL6kVs":`xdvm21q`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:127`},default:{"Tabs__indicatorStyles.default":`Tabs__indicatorStyles.default`,"top-k87sOh":`x10uur0e`,"height-kZKoxP":`x1gezbiy`,"borderRadius-kaIpWk":`xfauvix`,"backgroundColor-kWkggS":`x1ge2e6s`,"borderWidth-kMzoRj":`xmkeg23`,"borderStyle-ksu8eU":`x1y0btm7`,"borderColor-kVAM5u":`xab7lrg`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:140`},line:{"Tabs__indicatorStyles.line":`Tabs__indicatorStyles.line`,"backgroundColor-kWkggS":`x1fkz0ev`,"borderRadius-kaIpWk":`x1npxkrn`,"[data-orientation=horizontal]_bottom-k9htvw":`x1e9oa8n`,"[data-orientation=horizontal]_height-kH2gFy":`x1nzntce`,"[data-orientation=vertical]_top-kAKlKY":`xfdi2ae`,"[data-orientation=vertical]_height-k2AXh":`x6demw2`,"[data-orientation=vertical]_width-kwVBnF":`x13i9a9u`,"[data-orientation=vertical]_left-ksD6Ru":`x1fhtaip`,"[data-orientation=vertical]_:where([dir=rtl]) &_left-kNEBsG":`xqse6zn`,"[data-orientation=vertical]_:where([dir=rtl]) &_right-kObveJ":`x1ef44r0`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:149`},ghost:{"Tabs__indicatorStyles.ghost":`Tabs__indicatorStyles.ghost`,"display-k1xSpc":`x1s85apg`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:167`}},i={base:{"Tabs__panelStyles.base":`Tabs__panelStyles.base`,"flexGrow-kzQI83":`x1iyjqo2`,"flexShrink-kmuXW":`xs83m0k`,"flexBasis-kCS8Yb":`x1r8uery`,"fontSize-kGuDYH":`x14qa7mu`,"outline-kI3sdo":`x1a2a7pz`,$$css:`@stridge/kit:src/shared/ui/Tabs/Tabs.styles.ts:172`}};export{r as indicatorStyles,t as listStyles,i as panelStyles,e as rootStyles,n as tabStyles};
@@ -0,0 +1,2 @@
1
+ import { Tabs, TabsIndicator, TabsList, TabsPanel, TabsRoot, TabsTab, TabsVariant } from "./Tabs.js";
2
+ import { TABS_SLOTS, TabsSlot } from "./Tabs.slots.js";
@@ -0,0 +1 @@
1
+ import"./Tabs.slots.js";import"./Tabs.js";
@@ -0,0 +1 @@
1
+ function e(e){throw Error(`Unhandled discriminant: ${JSON.stringify(e)}`)}export{e as assertNever};
@@ -1,7 +1,8 @@
1
- import { AmountEntryBodyProps, AmountEntryDialogProps, AmountEntryFlowProps, AmountEntryFooterProps, AmountEntryHeaderProps, AmountEntryHeroProps, AmountEntryNoticeProps, AmountEntryPillsProps, AmountEntryProps } from "./types.js";
1
+ import { AmountEntryBodyProps, AmountEntryDetailsProps, AmountEntryDetailsRowProps, AmountEntryDialogProps, AmountEntryFlowProps, AmountEntryFooterProps, AmountEntryHeaderProps, AmountEntryHeroProps, AmountEntryNoticeProps, AmountEntryPillsProps, AmountEntryProps } from "./types.js";
2
+ import { AmountEntryHeader } from "./components/Header.js";
3
+ import { AmountEntryDetails, AmountEntryDetailsRow } from "./components/Details.js";
2
4
  import { AmountEntryFlow } from "./components/Flow.js";
3
5
  import { AmountEntryFooter } from "./components/Footer.js";
4
- import { AmountEntryHeader } from "./components/Header.js";
5
6
  import { AmountEntryHero } from "./components/Hero/Hero.js";
6
7
  import { AmountEntryNotice } from "./components/Notice.js";
7
8
  import { AmountEntryPills } from "./components/Pills.js";
@@ -48,6 +49,8 @@ declare namespace AmountEntry {
48
49
  type FlowProps = AmountEntryFlowProps;
49
50
  type FooterProps = AmountEntryFooterProps;
50
51
  type NoticeProps = AmountEntryNoticeProps;
52
+ type DetailsProps = AmountEntryDetailsProps;
53
+ type DetailsRowProps = AmountEntryDetailsRowProps;
51
54
  type DialogProps = AmountEntryDialogProps;
52
55
  const Header: typeof AmountEntryHeader;
53
56
  const Body: typeof AmountEntryBody;
@@ -56,6 +59,8 @@ declare namespace AmountEntry {
56
59
  const Flow: typeof AmountEntryFlow;
57
60
  const Footer: typeof AmountEntryFooter;
58
61
  const Notice: typeof AmountEntryNotice;
62
+ const Details: typeof AmountEntryDetails;
63
+ const DetailsRow: typeof AmountEntryDetailsRow;
59
64
  const Dialog: typeof AmountEntryDialog;
60
65
  }
61
66
  //#endregion