@unifold/ui-react 0.1.68-beta.1 → 0.1.68-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -212,7 +212,16 @@ interface DepositModalProps {
212
212
  /** Enable "Pay with Cash App" option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? true. */
213
213
  enableCashApp?: boolean;
214
214
  enableStripeLink?: boolean;
215
- email?: string;
215
+ /**
216
+ * Email for the host platform's signed-in user. Consolidated pre-fill / pre-trust
217
+ * address shared across onramp flows:
218
+ *
219
+ * - **Stripe Link:** pre-fills the email screen and auto-submits.
220
+ * - **Apple Pay (headless Coinbase):** treated as pre-trusted — skips the
221
+ * email-OTP step and the localStorage email lookup. Phone OTP is always
222
+ * still required.
223
+ */
224
+ userEmail?: string;
216
225
  /**
217
226
  * Enable "Pay with Apple Pay" (headless Coinbase) option. Overrides dashboard
218
227
  * default. Resolves as flag ?? dashboard `apple_pay.enabled` ?? true. The
@@ -240,12 +249,6 @@ interface DepositModalProps {
240
249
  hideDepositFlowInfo?: boolean;
241
250
  /** Deposit with Card — onramp step: hide the temporary wallet address disclaimer. @default false */
242
251
  hideDisplayDescription?: boolean;
243
- /**
244
- * Pre-trusted email from the host platform's signed-in user. Used by the
245
- * Apple Pay (headless Coinbase) flow to skip the email-OTP step and the
246
- * localStorage email lookup. Phone OTP is always still required.
247
- */
248
- externalUserEmail?: string;
249
252
  onDepositSuccess?: (data: {
250
253
  message: string;
251
254
  transaction?: unknown;
@@ -275,7 +278,7 @@ interface DepositModalProps {
275
278
  */
276
279
  displayMode?: 'stacked' | 'tabs';
277
280
  }
278
- declare function DepositModal({ open, onOpenChange, userId, publishableKey, modalTitle, destinationTokenSymbol, recipientAddress, destinationChainType, destinationChainId, destinationTokenAddress, contractCalls, defaultSourceChainType, defaultSourceChainId, defaultSourceTokenAddress, defaultSourceSymbol, hideDepositTracker, showBalanceHeader, transferInputVariant, depositConfirmationMode, enableTransferCrypto, enableConnectWallet, browserWalletAmountQuickSelect, enablePayWithExchange, enableFiatOnramp, enableConnectExchange, enableCashApp, enableApplePay, applePayTitle, applePaySubTitle, enableBankTransfer, enableStripeLink, email: emailProp, hideDepositFlowInfo, hideDisplayDescription, externalUserEmail, onDepositSuccess, onDepositError, onEvent, theme, hideOverlay, initialScreen, displayMode, transferCryptoTitle, depositWithCardTitle, payWithExchangeTitle, depositTrackerTitle, depositTrackerSubTitle, }: DepositModalProps): react_jsx_runtime.JSX.Element;
281
+ declare function DepositModal({ open, onOpenChange, userId, publishableKey, modalTitle, destinationTokenSymbol, recipientAddress, destinationChainType, destinationChainId, destinationTokenAddress, contractCalls, defaultSourceChainType, defaultSourceChainId, defaultSourceTokenAddress, defaultSourceSymbol, hideDepositTracker, showBalanceHeader, transferInputVariant, depositConfirmationMode, enableTransferCrypto, enableConnectWallet, browserWalletAmountQuickSelect, enablePayWithExchange, enableFiatOnramp, enableConnectExchange, enableCashApp, enableApplePay, applePayTitle, applePaySubTitle, enableBankTransfer, enableStripeLink, userEmail, hideDepositFlowInfo, hideDisplayDescription, onDepositSuccess, onDepositError, onEvent, theme, hideOverlay, initialScreen, displayMode, transferCryptoTitle, depositWithCardTitle, payWithExchangeTitle, depositTrackerTitle, depositTrackerSubTitle, }: DepositModalProps): react_jsx_runtime.JSX.Element;
279
282
 
280
283
  interface DepositHeaderProps {
281
284
  title: string;
@@ -425,7 +428,7 @@ interface BuyWithCardProps {
425
428
  declare function BuyWithCard({ userId, publishableKey, view: externalView, onViewChange, maxAmountUsd, accentColor, // Keep prop for backward compatibility but don't use default
426
429
  destinationTokenSymbol, recipientAddress, destinationChainType, destinationChainId, destinationTokenAddress, onDepositSuccess, onDepositError, onEvent, themeClass, wallets: externalWallets, assetCdnUrl, hideDepositFlowInfo, hideDisplayDescription, }: BuyWithCardProps): react_jsx_runtime.JSX.Element;
427
430
 
428
- type View = 'loading_config' | 'disabled' | 'email_input' | 'phone_input' | 'submitting_session' | 'email_otp' | 'phone_otp' | 'amount' | 'checking_deposit' | 'success' | 'guest_limit_reached';
431
+ type View = 'loading_config' | 'disabled' | 'email_input' | 'phone_input' | 'submitting_session' | 'email_otp' | 'phone_otp' | 'amount' | 'checking_deposit' | 'success' | 'guest_limit_reached' | 'limit_upgrade_intro' | 'limit_upgrade_form' | 'limit_upgrade_submitting' | 'limit_upgrade_failed';
429
432
  interface BuyWithApplePayProps {
430
433
  userId: string;
431
434
  publishableKey: string;
@@ -433,26 +436,17 @@ interface BuyWithApplePayProps {
433
436
  destinationChainType?: ChainType;
434
437
  destinationChainId?: string;
435
438
  destinationTokenAddress?: string;
436
- destinationTokenSymbol?: string;
437
439
  /** Host-platform-trusted email. Skips email screen + email OTP. */
438
- externalUserEmail?: string;
439
- /**
440
- * SDK-level override for the dashboard `apple_pay.enabled` flag.
441
- * Resolution order: this prop → `projectConfig.apple_pay.enabled` →
442
- * default `true`. Set to `false` to render the disabled state, `true`
443
- * to force enable regardless of the dashboard toggle.
444
- */
445
- enableApplePay?: boolean;
440
+ userEmail?: string;
446
441
  /** Force the USD amount and skip the amount-entry step. */
447
442
  amountUsd?: string;
448
443
  minAmountUsd?: number;
449
444
  maxAmountUsd?: number;
450
445
  suggestedAmountsUsd?: number[];
451
446
  /**
452
- * Pre-fetched Unifold deposit wallets. When omitted, the component fetches
453
- * them via `/deposit_addresses`. Coinbase sends the purchased crypto to
454
- * the matching-chain wallet's address, then our backend forwards to
455
- * `recipientAddress`.
447
+ * Unifold deposit wallets from the parent modal.
448
+ * Coinbase sends purchased crypto to the matching-chain wallet, then
449
+ * backend auto-swap routes to `recipientAddress`.
456
450
  */
457
451
  wallets?: Wallet[];
458
452
  onDepositSuccess?: (data: {
@@ -501,7 +495,6 @@ interface StoredApplePaySession {
501
495
  declare function getStoredApplePaySession(userId: string): StoredApplePaySession | null;
502
496
  declare function setStoredApplePaySession(userId: string, contact: StoredApplePaySession): void;
503
497
  declare function clearStoredApplePaySession(userId: string): void;
504
- declare function isPhoneVerificationFresh(contact: StoredApplePaySession | null): boolean;
505
498
  declare function isOnrampTokenFresh(contact: StoredApplePaySession | null): boolean;
506
499
 
507
500
  interface CurrencyModalProps {
@@ -1604,4 +1597,4 @@ declare function cn(...inputs: ClassValue[]): string;
1604
1597
  */
1605
1598
  declare function truncateAddress(address: string, startChars?: number, endChars?: number): string;
1606
1599
 
1607
- export { type AllowedCountryResult, BankTransfer, BankTransferButton, type BankTransferProps, type BankTransferView, type BrowserWalletAmountQuickSelect, Button, type ButtonProps, type ButtonTokens, BuyWithApplePay, type BuyWithApplePayProps, BuyWithCard, type BuyWithCardProps, type CardTokens, CheckingForDepositIndicator, CheckoutModal, type CheckoutModalProps, CoinbaseConnect, type ComponentConfig, type ComponentOverrides, type ComponentTokens, ConfirmingView, ConnectExchangeButton, type ContainerTokens, CurrencyListItem, CurrencyListSection, CurrencyModal, type CustomThemeColors, type DepositConfirmationMode, DepositDetailContent, DepositExecutionItem, DepositHeader, DepositModal, type DepositModalInitialScreen, DepositSuccessToast, DepositTrackerButton, DepositWithCardButton, DepositsModal, type DetectedWallet, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, type EvmWalletProvider, type FontConfig, HYPERCORE_CHAIN_ID, type HeaderTokens, type InputTokens, type ListTokens, ManualDepositButton, PayWithStripeLink, type PayWithStripeLinkProps, QRCodeSkeleton, type ResolvedFonts, type SearchTokens, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SolanaWalletProvider, type StoredApplePaySession, StripeLinkButton, type StripeLinkStep, StyledQRCode, type ThemeColors, type ThemeConfig, type ThemeMode, ThemeProvider, type ThemeProviderProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransferCryptoButton, TransferCryptoDoubleInput, TransferCryptoSingleInput, type UseDepositQuoteParams, type UsePaymentIntentParams, type UseSupportedDepositTokensOptions, WithdrawConfirmingView, WithdrawDoubleInput, WithdrawExecutionItem, WithdrawForm, WithdrawModal, type WithdrawModalProps, WithdrawTokenSelector, type WithdrawTransactionInfo, buttonVariants, clearStoredApplePaySession, cn, colors, defaultColors, detectBrowserWallet, getColors, getStoredApplePaySession, isHypercoreChain, isOnrampTokenFresh, isPhoneVerificationFresh, mergeColors, resolveComponentTokens, sendEvmWithdraw, sendHypercoreWithdraw, sendSolanaWithdraw, setStoredApplePaySession, truncateAddress, useAddressBalance, useAllowedCountry, useDebounce, useDepositPolling, useDepositQuote, usePaymentIntent, useSourceTokenValidation, useSupportedDepositTokens, useSupportedDestinationTokens, useTheme, useVerifyRecipientAddress, useWithdrawPolling };
1600
+ export { type AllowedCountryResult, BankTransfer, BankTransferButton, type BankTransferProps, type BankTransferView, type BrowserWalletAmountQuickSelect, Button, type ButtonProps, type ButtonTokens, BuyWithApplePay, type BuyWithApplePayProps, BuyWithCard, type BuyWithCardProps, type CardTokens, CheckingForDepositIndicator, CheckoutModal, type CheckoutModalProps, CoinbaseConnect, type ComponentConfig, type ComponentOverrides, type ComponentTokens, ConfirmingView, ConnectExchangeButton, type ContainerTokens, CurrencyListItem, CurrencyListSection, CurrencyModal, type CustomThemeColors, type DepositConfirmationMode, DepositDetailContent, DepositExecutionItem, DepositHeader, DepositModal, type DepositModalInitialScreen, DepositSuccessToast, DepositTrackerButton, DepositWithCardButton, DepositsModal, type DetectedWallet, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, type EvmWalletProvider, type FontConfig, HYPERCORE_CHAIN_ID, type HeaderTokens, type InputTokens, type ListTokens, ManualDepositButton, PayWithStripeLink, type PayWithStripeLinkProps, QRCodeSkeleton, type ResolvedFonts, type SearchTokens, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SolanaWalletProvider, type StoredApplePaySession, StripeLinkButton, type StripeLinkStep, StyledQRCode, type ThemeColors, type ThemeConfig, type ThemeMode, ThemeProvider, type ThemeProviderProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransferCryptoButton, TransferCryptoDoubleInput, TransferCryptoSingleInput, type UseDepositQuoteParams, type UsePaymentIntentParams, type UseSupportedDepositTokensOptions, WithdrawConfirmingView, WithdrawDoubleInput, WithdrawExecutionItem, WithdrawForm, WithdrawModal, type WithdrawModalProps, WithdrawTokenSelector, type WithdrawTransactionInfo, buttonVariants, clearStoredApplePaySession, cn, colors, defaultColors, detectBrowserWallet, getColors, getStoredApplePaySession, isHypercoreChain, isOnrampTokenFresh, mergeColors, resolveComponentTokens, sendEvmWithdraw, sendHypercoreWithdraw, sendSolanaWithdraw, setStoredApplePaySession, truncateAddress, useAddressBalance, useAllowedCountry, useDebounce, useDepositPolling, useDepositQuote, usePaymentIntent, useSourceTokenValidation, useSupportedDepositTokens, useSupportedDestinationTokens, useTheme, useVerifyRecipientAddress, useWithdrawPolling };
package/dist/index.d.ts CHANGED
@@ -212,7 +212,16 @@ interface DepositModalProps {
212
212
  /** Enable "Pay with Cash App" option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? true. */
213
213
  enableCashApp?: boolean;
214
214
  enableStripeLink?: boolean;
215
- email?: string;
215
+ /**
216
+ * Email for the host platform's signed-in user. Consolidated pre-fill / pre-trust
217
+ * address shared across onramp flows:
218
+ *
219
+ * - **Stripe Link:** pre-fills the email screen and auto-submits.
220
+ * - **Apple Pay (headless Coinbase):** treated as pre-trusted — skips the
221
+ * email-OTP step and the localStorage email lookup. Phone OTP is always
222
+ * still required.
223
+ */
224
+ userEmail?: string;
216
225
  /**
217
226
  * Enable "Pay with Apple Pay" (headless Coinbase) option. Overrides dashboard
218
227
  * default. Resolves as flag ?? dashboard `apple_pay.enabled` ?? true. The
@@ -240,12 +249,6 @@ interface DepositModalProps {
240
249
  hideDepositFlowInfo?: boolean;
241
250
  /** Deposit with Card — onramp step: hide the temporary wallet address disclaimer. @default false */
242
251
  hideDisplayDescription?: boolean;
243
- /**
244
- * Pre-trusted email from the host platform's signed-in user. Used by the
245
- * Apple Pay (headless Coinbase) flow to skip the email-OTP step and the
246
- * localStorage email lookup. Phone OTP is always still required.
247
- */
248
- externalUserEmail?: string;
249
252
  onDepositSuccess?: (data: {
250
253
  message: string;
251
254
  transaction?: unknown;
@@ -275,7 +278,7 @@ interface DepositModalProps {
275
278
  */
276
279
  displayMode?: 'stacked' | 'tabs';
277
280
  }
278
- declare function DepositModal({ open, onOpenChange, userId, publishableKey, modalTitle, destinationTokenSymbol, recipientAddress, destinationChainType, destinationChainId, destinationTokenAddress, contractCalls, defaultSourceChainType, defaultSourceChainId, defaultSourceTokenAddress, defaultSourceSymbol, hideDepositTracker, showBalanceHeader, transferInputVariant, depositConfirmationMode, enableTransferCrypto, enableConnectWallet, browserWalletAmountQuickSelect, enablePayWithExchange, enableFiatOnramp, enableConnectExchange, enableCashApp, enableApplePay, applePayTitle, applePaySubTitle, enableBankTransfer, enableStripeLink, email: emailProp, hideDepositFlowInfo, hideDisplayDescription, externalUserEmail, onDepositSuccess, onDepositError, onEvent, theme, hideOverlay, initialScreen, displayMode, transferCryptoTitle, depositWithCardTitle, payWithExchangeTitle, depositTrackerTitle, depositTrackerSubTitle, }: DepositModalProps): react_jsx_runtime.JSX.Element;
281
+ declare function DepositModal({ open, onOpenChange, userId, publishableKey, modalTitle, destinationTokenSymbol, recipientAddress, destinationChainType, destinationChainId, destinationTokenAddress, contractCalls, defaultSourceChainType, defaultSourceChainId, defaultSourceTokenAddress, defaultSourceSymbol, hideDepositTracker, showBalanceHeader, transferInputVariant, depositConfirmationMode, enableTransferCrypto, enableConnectWallet, browserWalletAmountQuickSelect, enablePayWithExchange, enableFiatOnramp, enableConnectExchange, enableCashApp, enableApplePay, applePayTitle, applePaySubTitle, enableBankTransfer, enableStripeLink, userEmail, hideDepositFlowInfo, hideDisplayDescription, onDepositSuccess, onDepositError, onEvent, theme, hideOverlay, initialScreen, displayMode, transferCryptoTitle, depositWithCardTitle, payWithExchangeTitle, depositTrackerTitle, depositTrackerSubTitle, }: DepositModalProps): react_jsx_runtime.JSX.Element;
279
282
 
280
283
  interface DepositHeaderProps {
281
284
  title: string;
@@ -425,7 +428,7 @@ interface BuyWithCardProps {
425
428
  declare function BuyWithCard({ userId, publishableKey, view: externalView, onViewChange, maxAmountUsd, accentColor, // Keep prop for backward compatibility but don't use default
426
429
  destinationTokenSymbol, recipientAddress, destinationChainType, destinationChainId, destinationTokenAddress, onDepositSuccess, onDepositError, onEvent, themeClass, wallets: externalWallets, assetCdnUrl, hideDepositFlowInfo, hideDisplayDescription, }: BuyWithCardProps): react_jsx_runtime.JSX.Element;
427
430
 
428
- type View = 'loading_config' | 'disabled' | 'email_input' | 'phone_input' | 'submitting_session' | 'email_otp' | 'phone_otp' | 'amount' | 'checking_deposit' | 'success' | 'guest_limit_reached';
431
+ type View = 'loading_config' | 'disabled' | 'email_input' | 'phone_input' | 'submitting_session' | 'email_otp' | 'phone_otp' | 'amount' | 'checking_deposit' | 'success' | 'guest_limit_reached' | 'limit_upgrade_intro' | 'limit_upgrade_form' | 'limit_upgrade_submitting' | 'limit_upgrade_failed';
429
432
  interface BuyWithApplePayProps {
430
433
  userId: string;
431
434
  publishableKey: string;
@@ -433,26 +436,17 @@ interface BuyWithApplePayProps {
433
436
  destinationChainType?: ChainType;
434
437
  destinationChainId?: string;
435
438
  destinationTokenAddress?: string;
436
- destinationTokenSymbol?: string;
437
439
  /** Host-platform-trusted email. Skips email screen + email OTP. */
438
- externalUserEmail?: string;
439
- /**
440
- * SDK-level override for the dashboard `apple_pay.enabled` flag.
441
- * Resolution order: this prop → `projectConfig.apple_pay.enabled` →
442
- * default `true`. Set to `false` to render the disabled state, `true`
443
- * to force enable regardless of the dashboard toggle.
444
- */
445
- enableApplePay?: boolean;
440
+ userEmail?: string;
446
441
  /** Force the USD amount and skip the amount-entry step. */
447
442
  amountUsd?: string;
448
443
  minAmountUsd?: number;
449
444
  maxAmountUsd?: number;
450
445
  suggestedAmountsUsd?: number[];
451
446
  /**
452
- * Pre-fetched Unifold deposit wallets. When omitted, the component fetches
453
- * them via `/deposit_addresses`. Coinbase sends the purchased crypto to
454
- * the matching-chain wallet's address, then our backend forwards to
455
- * `recipientAddress`.
447
+ * Unifold deposit wallets from the parent modal.
448
+ * Coinbase sends purchased crypto to the matching-chain wallet, then
449
+ * backend auto-swap routes to `recipientAddress`.
456
450
  */
457
451
  wallets?: Wallet[];
458
452
  onDepositSuccess?: (data: {
@@ -501,7 +495,6 @@ interface StoredApplePaySession {
501
495
  declare function getStoredApplePaySession(userId: string): StoredApplePaySession | null;
502
496
  declare function setStoredApplePaySession(userId: string, contact: StoredApplePaySession): void;
503
497
  declare function clearStoredApplePaySession(userId: string): void;
504
- declare function isPhoneVerificationFresh(contact: StoredApplePaySession | null): boolean;
505
498
  declare function isOnrampTokenFresh(contact: StoredApplePaySession | null): boolean;
506
499
 
507
500
  interface CurrencyModalProps {
@@ -1604,4 +1597,4 @@ declare function cn(...inputs: ClassValue[]): string;
1604
1597
  */
1605
1598
  declare function truncateAddress(address: string, startChars?: number, endChars?: number): string;
1606
1599
 
1607
- export { type AllowedCountryResult, BankTransfer, BankTransferButton, type BankTransferProps, type BankTransferView, type BrowserWalletAmountQuickSelect, Button, type ButtonProps, type ButtonTokens, BuyWithApplePay, type BuyWithApplePayProps, BuyWithCard, type BuyWithCardProps, type CardTokens, CheckingForDepositIndicator, CheckoutModal, type CheckoutModalProps, CoinbaseConnect, type ComponentConfig, type ComponentOverrides, type ComponentTokens, ConfirmingView, ConnectExchangeButton, type ContainerTokens, CurrencyListItem, CurrencyListSection, CurrencyModal, type CustomThemeColors, type DepositConfirmationMode, DepositDetailContent, DepositExecutionItem, DepositHeader, DepositModal, type DepositModalInitialScreen, DepositSuccessToast, DepositTrackerButton, DepositWithCardButton, DepositsModal, type DetectedWallet, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, type EvmWalletProvider, type FontConfig, HYPERCORE_CHAIN_ID, type HeaderTokens, type InputTokens, type ListTokens, ManualDepositButton, PayWithStripeLink, type PayWithStripeLinkProps, QRCodeSkeleton, type ResolvedFonts, type SearchTokens, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SolanaWalletProvider, type StoredApplePaySession, StripeLinkButton, type StripeLinkStep, StyledQRCode, type ThemeColors, type ThemeConfig, type ThemeMode, ThemeProvider, type ThemeProviderProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransferCryptoButton, TransferCryptoDoubleInput, TransferCryptoSingleInput, type UseDepositQuoteParams, type UsePaymentIntentParams, type UseSupportedDepositTokensOptions, WithdrawConfirmingView, WithdrawDoubleInput, WithdrawExecutionItem, WithdrawForm, WithdrawModal, type WithdrawModalProps, WithdrawTokenSelector, type WithdrawTransactionInfo, buttonVariants, clearStoredApplePaySession, cn, colors, defaultColors, detectBrowserWallet, getColors, getStoredApplePaySession, isHypercoreChain, isOnrampTokenFresh, isPhoneVerificationFresh, mergeColors, resolveComponentTokens, sendEvmWithdraw, sendHypercoreWithdraw, sendSolanaWithdraw, setStoredApplePaySession, truncateAddress, useAddressBalance, useAllowedCountry, useDebounce, useDepositPolling, useDepositQuote, usePaymentIntent, useSourceTokenValidation, useSupportedDepositTokens, useSupportedDestinationTokens, useTheme, useVerifyRecipientAddress, useWithdrawPolling };
1600
+ export { type AllowedCountryResult, BankTransfer, BankTransferButton, type BankTransferProps, type BankTransferView, type BrowserWalletAmountQuickSelect, Button, type ButtonProps, type ButtonTokens, BuyWithApplePay, type BuyWithApplePayProps, BuyWithCard, type BuyWithCardProps, type CardTokens, CheckingForDepositIndicator, CheckoutModal, type CheckoutModalProps, CoinbaseConnect, type ComponentConfig, type ComponentOverrides, type ComponentTokens, ConfirmingView, ConnectExchangeButton, type ContainerTokens, CurrencyListItem, CurrencyListSection, CurrencyModal, type CustomThemeColors, type DepositConfirmationMode, DepositDetailContent, DepositExecutionItem, DepositHeader, DepositModal, type DepositModalInitialScreen, DepositSuccessToast, DepositTrackerButton, DepositWithCardButton, DepositsModal, type DetectedWallet, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, type EvmWalletProvider, type FontConfig, HYPERCORE_CHAIN_ID, type HeaderTokens, type InputTokens, type ListTokens, ManualDepositButton, PayWithStripeLink, type PayWithStripeLinkProps, QRCodeSkeleton, type ResolvedFonts, type SearchTokens, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, type SolanaWalletProvider, type StoredApplePaySession, StripeLinkButton, type StripeLinkStep, StyledQRCode, type ThemeColors, type ThemeConfig, type ThemeMode, ThemeProvider, type ThemeProviderProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransferCryptoButton, TransferCryptoDoubleInput, TransferCryptoSingleInput, type UseDepositQuoteParams, type UsePaymentIntentParams, type UseSupportedDepositTokensOptions, WithdrawConfirmingView, WithdrawDoubleInput, WithdrawExecutionItem, WithdrawForm, WithdrawModal, type WithdrawModalProps, WithdrawTokenSelector, type WithdrawTransactionInfo, buttonVariants, clearStoredApplePaySession, cn, colors, defaultColors, detectBrowserWallet, getColors, getStoredApplePaySession, isHypercoreChain, isOnrampTokenFresh, mergeColors, resolveComponentTokens, sendEvmWithdraw, sendHypercoreWithdraw, sendSolanaWithdraw, setStoredApplePaySession, truncateAddress, useAddressBalance, useAllowedCountry, useDebounce, useDepositPolling, useDepositQuote, usePaymentIntent, useSourceTokenValidation, useSupportedDepositTokens, useSupportedDestinationTokens, useTheme, useVerifyRecipientAddress, useWithdrawPolling };