@unifold/ui-react 0.1.68-beta.1 → 0.1.68
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 +23 -24
- package/dist/index.d.ts +23 -24
- package/dist/index.js +2511 -1695
- package/dist/index.mjs +2183 -1367
- package/dist/styles-base.css +1 -1
- package/dist/styles.css +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -211,8 +211,23 @@ interface DepositModalProps {
|
|
|
211
211
|
enableConnectExchange?: boolean;
|
|
212
212
|
/** Enable "Pay with Cash App" option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? true. */
|
|
213
213
|
enableCashApp?: boolean;
|
|
214
|
+
/**
|
|
215
|
+
* Enable the Stripe "Pay with Link" option. Overrides the dashboard default.
|
|
216
|
+
* Resolves as flag ?? dashboard `stripe_link.enabled` ?? false (Link is
|
|
217
|
+
* opt-in, unlike most methods). The platform `stripe_link.is_hidden` hard hide
|
|
218
|
+
* (US-only availability) always wins regardless of this flag.
|
|
219
|
+
*/
|
|
214
220
|
enableStripeLink?: boolean;
|
|
215
|
-
|
|
221
|
+
/**
|
|
222
|
+
* Email for the host platform's signed-in user. Consolidated pre-fill / pre-trust
|
|
223
|
+
* address shared across onramp flows:
|
|
224
|
+
*
|
|
225
|
+
* - **Stripe Link:** pre-fills the email screen and auto-submits.
|
|
226
|
+
* - **Apple Pay (headless Coinbase):** treated as pre-trusted — skips the
|
|
227
|
+
* email-OTP step and the localStorage email lookup. Phone OTP is always
|
|
228
|
+
* still required.
|
|
229
|
+
*/
|
|
230
|
+
userEmail?: string;
|
|
216
231
|
/**
|
|
217
232
|
* Enable "Pay with Apple Pay" (headless Coinbase) option. Overrides dashboard
|
|
218
233
|
* default. Resolves as flag ?? dashboard `apple_pay.enabled` ?? true. The
|
|
@@ -240,12 +255,6 @@ interface DepositModalProps {
|
|
|
240
255
|
hideDepositFlowInfo?: boolean;
|
|
241
256
|
/** Deposit with Card — onramp step: hide the temporary wallet address disclaimer. @default false */
|
|
242
257
|
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
258
|
onDepositSuccess?: (data: {
|
|
250
259
|
message: string;
|
|
251
260
|
transaction?: unknown;
|
|
@@ -275,7 +284,7 @@ interface DepositModalProps {
|
|
|
275
284
|
*/
|
|
276
285
|
displayMode?: 'stacked' | 'tabs';
|
|
277
286
|
}
|
|
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,
|
|
287
|
+
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
288
|
|
|
280
289
|
interface DepositHeaderProps {
|
|
281
290
|
title: string;
|
|
@@ -425,7 +434,7 @@ interface BuyWithCardProps {
|
|
|
425
434
|
declare function BuyWithCard({ userId, publishableKey, view: externalView, onViewChange, maxAmountUsd, accentColor, // Keep prop for backward compatibility but don't use default
|
|
426
435
|
destinationTokenSymbol, recipientAddress, destinationChainType, destinationChainId, destinationTokenAddress, onDepositSuccess, onDepositError, onEvent, themeClass, wallets: externalWallets, assetCdnUrl, hideDepositFlowInfo, hideDisplayDescription, }: BuyWithCardProps): react_jsx_runtime.JSX.Element;
|
|
427
436
|
|
|
428
|
-
type View = 'loading_config' | 'disabled' | 'email_input' | 'phone_input' | 'submitting_session' | 'email_otp' | 'phone_otp' | 'amount' | 'checking_deposit' | 'success' | 'guest_limit_reached';
|
|
437
|
+
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
438
|
interface BuyWithApplePayProps {
|
|
430
439
|
userId: string;
|
|
431
440
|
publishableKey: string;
|
|
@@ -433,26 +442,17 @@ interface BuyWithApplePayProps {
|
|
|
433
442
|
destinationChainType?: ChainType;
|
|
434
443
|
destinationChainId?: string;
|
|
435
444
|
destinationTokenAddress?: string;
|
|
436
|
-
destinationTokenSymbol?: string;
|
|
437
445
|
/** Host-platform-trusted email. Skips email screen + email OTP. */
|
|
438
|
-
|
|
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;
|
|
446
|
+
userEmail?: string;
|
|
446
447
|
/** Force the USD amount and skip the amount-entry step. */
|
|
447
448
|
amountUsd?: string;
|
|
448
449
|
minAmountUsd?: number;
|
|
449
450
|
maxAmountUsd?: number;
|
|
450
451
|
suggestedAmountsUsd?: number[];
|
|
451
452
|
/**
|
|
452
|
-
*
|
|
453
|
-
*
|
|
454
|
-
*
|
|
455
|
-
* `recipientAddress`.
|
|
453
|
+
* Unifold deposit wallets from the parent modal.
|
|
454
|
+
* Coinbase sends purchased crypto to the matching-chain wallet, then
|
|
455
|
+
* backend auto-swap routes to `recipientAddress`.
|
|
456
456
|
*/
|
|
457
457
|
wallets?: Wallet[];
|
|
458
458
|
onDepositSuccess?: (data: {
|
|
@@ -501,7 +501,6 @@ interface StoredApplePaySession {
|
|
|
501
501
|
declare function getStoredApplePaySession(userId: string): StoredApplePaySession | null;
|
|
502
502
|
declare function setStoredApplePaySession(userId: string, contact: StoredApplePaySession): void;
|
|
503
503
|
declare function clearStoredApplePaySession(userId: string): void;
|
|
504
|
-
declare function isPhoneVerificationFresh(contact: StoredApplePaySession | null): boolean;
|
|
505
504
|
declare function isOnrampTokenFresh(contact: StoredApplePaySession | null): boolean;
|
|
506
505
|
|
|
507
506
|
interface CurrencyModalProps {
|
|
@@ -1604,4 +1603,4 @@ declare function cn(...inputs: ClassValue[]): string;
|
|
|
1604
1603
|
*/
|
|
1605
1604
|
declare function truncateAddress(address: string, startChars?: number, endChars?: number): string;
|
|
1606
1605
|
|
|
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,
|
|
1606
|
+
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
|
@@ -211,8 +211,23 @@ interface DepositModalProps {
|
|
|
211
211
|
enableConnectExchange?: boolean;
|
|
212
212
|
/** Enable "Pay with Cash App" option. Overrides dashboard default. Resolves as flag ?? dashboard value ?? true. */
|
|
213
213
|
enableCashApp?: boolean;
|
|
214
|
+
/**
|
|
215
|
+
* Enable the Stripe "Pay with Link" option. Overrides the dashboard default.
|
|
216
|
+
* Resolves as flag ?? dashboard `stripe_link.enabled` ?? false (Link is
|
|
217
|
+
* opt-in, unlike most methods). The platform `stripe_link.is_hidden` hard hide
|
|
218
|
+
* (US-only availability) always wins regardless of this flag.
|
|
219
|
+
*/
|
|
214
220
|
enableStripeLink?: boolean;
|
|
215
|
-
|
|
221
|
+
/**
|
|
222
|
+
* Email for the host platform's signed-in user. Consolidated pre-fill / pre-trust
|
|
223
|
+
* address shared across onramp flows:
|
|
224
|
+
*
|
|
225
|
+
* - **Stripe Link:** pre-fills the email screen and auto-submits.
|
|
226
|
+
* - **Apple Pay (headless Coinbase):** treated as pre-trusted — skips the
|
|
227
|
+
* email-OTP step and the localStorage email lookup. Phone OTP is always
|
|
228
|
+
* still required.
|
|
229
|
+
*/
|
|
230
|
+
userEmail?: string;
|
|
216
231
|
/**
|
|
217
232
|
* Enable "Pay with Apple Pay" (headless Coinbase) option. Overrides dashboard
|
|
218
233
|
* default. Resolves as flag ?? dashboard `apple_pay.enabled` ?? true. The
|
|
@@ -240,12 +255,6 @@ interface DepositModalProps {
|
|
|
240
255
|
hideDepositFlowInfo?: boolean;
|
|
241
256
|
/** Deposit with Card — onramp step: hide the temporary wallet address disclaimer. @default false */
|
|
242
257
|
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
258
|
onDepositSuccess?: (data: {
|
|
250
259
|
message: string;
|
|
251
260
|
transaction?: unknown;
|
|
@@ -275,7 +284,7 @@ interface DepositModalProps {
|
|
|
275
284
|
*/
|
|
276
285
|
displayMode?: 'stacked' | 'tabs';
|
|
277
286
|
}
|
|
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,
|
|
287
|
+
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
288
|
|
|
280
289
|
interface DepositHeaderProps {
|
|
281
290
|
title: string;
|
|
@@ -425,7 +434,7 @@ interface BuyWithCardProps {
|
|
|
425
434
|
declare function BuyWithCard({ userId, publishableKey, view: externalView, onViewChange, maxAmountUsd, accentColor, // Keep prop for backward compatibility but don't use default
|
|
426
435
|
destinationTokenSymbol, recipientAddress, destinationChainType, destinationChainId, destinationTokenAddress, onDepositSuccess, onDepositError, onEvent, themeClass, wallets: externalWallets, assetCdnUrl, hideDepositFlowInfo, hideDisplayDescription, }: BuyWithCardProps): react_jsx_runtime.JSX.Element;
|
|
427
436
|
|
|
428
|
-
type View = 'loading_config' | 'disabled' | 'email_input' | 'phone_input' | 'submitting_session' | 'email_otp' | 'phone_otp' | 'amount' | 'checking_deposit' | 'success' | 'guest_limit_reached';
|
|
437
|
+
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
438
|
interface BuyWithApplePayProps {
|
|
430
439
|
userId: string;
|
|
431
440
|
publishableKey: string;
|
|
@@ -433,26 +442,17 @@ interface BuyWithApplePayProps {
|
|
|
433
442
|
destinationChainType?: ChainType;
|
|
434
443
|
destinationChainId?: string;
|
|
435
444
|
destinationTokenAddress?: string;
|
|
436
|
-
destinationTokenSymbol?: string;
|
|
437
445
|
/** Host-platform-trusted email. Skips email screen + email OTP. */
|
|
438
|
-
|
|
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;
|
|
446
|
+
userEmail?: string;
|
|
446
447
|
/** Force the USD amount and skip the amount-entry step. */
|
|
447
448
|
amountUsd?: string;
|
|
448
449
|
minAmountUsd?: number;
|
|
449
450
|
maxAmountUsd?: number;
|
|
450
451
|
suggestedAmountsUsd?: number[];
|
|
451
452
|
/**
|
|
452
|
-
*
|
|
453
|
-
*
|
|
454
|
-
*
|
|
455
|
-
* `recipientAddress`.
|
|
453
|
+
* Unifold deposit wallets from the parent modal.
|
|
454
|
+
* Coinbase sends purchased crypto to the matching-chain wallet, then
|
|
455
|
+
* backend auto-swap routes to `recipientAddress`.
|
|
456
456
|
*/
|
|
457
457
|
wallets?: Wallet[];
|
|
458
458
|
onDepositSuccess?: (data: {
|
|
@@ -501,7 +501,6 @@ interface StoredApplePaySession {
|
|
|
501
501
|
declare function getStoredApplePaySession(userId: string): StoredApplePaySession | null;
|
|
502
502
|
declare function setStoredApplePaySession(userId: string, contact: StoredApplePaySession): void;
|
|
503
503
|
declare function clearStoredApplePaySession(userId: string): void;
|
|
504
|
-
declare function isPhoneVerificationFresh(contact: StoredApplePaySession | null): boolean;
|
|
505
504
|
declare function isOnrampTokenFresh(contact: StoredApplePaySession | null): boolean;
|
|
506
505
|
|
|
507
506
|
interface CurrencyModalProps {
|
|
@@ -1604,4 +1603,4 @@ declare function cn(...inputs: ClassValue[]): string;
|
|
|
1604
1603
|
*/
|
|
1605
1604
|
declare function truncateAddress(address: string, startChars?: number, endChars?: number): string;
|
|
1606
1605
|
|
|
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,
|
|
1606
|
+
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 };
|