@swype-org/react-sdk 0.2.357 → 0.2.359
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.cjs +612 -637
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +30 -9
- package/dist/index.d.ts +30 -9
- package/dist/index.js +613 -639
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1986,6 +1986,27 @@ interface PrimaryButtonProps {
|
|
|
1986
1986
|
}
|
|
1987
1987
|
declare function PrimaryButton({ children, onClick, href, target, rel, disabled, loading, loadingText, icon, progress, progressText, progressPaused, spinnerOnly, }: PrimaryButtonProps): react_jsx_runtime.JSX.Element;
|
|
1988
1988
|
|
|
1989
|
+
interface BlinkDepositButtonProps {
|
|
1990
|
+
/** Fired when the user taps the button. Hosts typically open the Blink deposit flow. */
|
|
1991
|
+
onClick: () => void;
|
|
1992
|
+
/** Disables interaction and dims the button. */
|
|
1993
|
+
disabled?: boolean;
|
|
1994
|
+
/** Non-interactive waiting state (e.g. while preparing a deposit session). Dims like disabled. */
|
|
1995
|
+
loading?: boolean;
|
|
1996
|
+
}
|
|
1997
|
+
/**
|
|
1998
|
+
* Blink-branded deposit CTA matching the Figma "Payment method" redesign
|
|
1999
|
+
* (frame 1623-32808): a black pill with a bold "Deposit stablecoins" line over
|
|
2000
|
+
* an italic "In a Blink" line, and overlapping USDC/USDT coin marks on the
|
|
2001
|
+
* right.
|
|
2002
|
+
*
|
|
2003
|
+
* Exported for merchants to drop onto their own pages instead of building a
|
|
2004
|
+
* custom button. Outside a BlinkProvider it intentionally styles itself with
|
|
2005
|
+
* the default lightThemeNew palette; inside the widget it follows the
|
|
2006
|
+
* configured theme tokens.
|
|
2007
|
+
*/
|
|
2008
|
+
declare function BlinkDepositButton({ onClick, disabled, loading }: BlinkDepositButtonProps): react_jsx_runtime.JSX.Element;
|
|
2009
|
+
|
|
1989
2010
|
interface OutlineButtonProps {
|
|
1990
2011
|
children: ReactNode;
|
|
1991
2012
|
onClick?: () => void;
|
|
@@ -2080,7 +2101,7 @@ interface DepositOptionsScreenProps {
|
|
|
2080
2101
|
/** Recessed "Send Crypto Manually" row. Navigates to the manual-transfer flow. */
|
|
2081
2102
|
onToAddress: () => void;
|
|
2082
2103
|
/**
|
|
2083
|
-
* Primary "Deposit
|
|
2104
|
+
* Primary "Deposit stablecoins" CTA. Routes to the login screen (wired to
|
|
2084
2105
|
* handlers.onLogin) rather than prompting for a passkey directly, mirroring how
|
|
2085
2106
|
* the connect-wallet entry point defers credential selection to LoginScreen.
|
|
2086
2107
|
*/
|
|
@@ -2090,11 +2111,10 @@ interface DepositOptionsScreenProps {
|
|
|
2090
2111
|
}
|
|
2091
2112
|
/**
|
|
2092
2113
|
* Pre-login entry screen shown when `enableFullWidget` is true. Mirrors the
|
|
2093
|
-
* Figma "Payment method" redesign (
|
|
2094
|
-
* mascot hero,
|
|
2095
|
-
*
|
|
2096
|
-
*
|
|
2097
|
-
* manual-transfer flow.
|
|
2114
|
+
* Figma "Payment method" redesign (frame 1623-32808): a Blink wordmark, a lime
|
|
2115
|
+
* mascot hero, the black "Deposit stablecoins / In a Blink" CTA
|
|
2116
|
+
* (BlinkDepositButton), an OR divider, and a recessed "Send Crypto Manually"
|
|
2117
|
+
* row that routes to the manual-transfer flow.
|
|
2098
2118
|
*/
|
|
2099
2119
|
declare function DepositOptionsScreen({ onToAddress, onSignInWithBlink, onClose, }: DepositOptionsScreenProps): react_jsx_runtime.JSX.Element;
|
|
2100
2120
|
|
|
@@ -2112,8 +2132,9 @@ interface WelcomeBackScreenProps {
|
|
|
2112
2132
|
/**
|
|
2113
2133
|
* Re-greeting screen for returning passkey users who reopen the full-widget
|
|
2114
2134
|
* flow with a persisted session but no linked wallet. Mirrors
|
|
2115
|
-
* `DepositOptionsScreen
|
|
2116
|
-
* and routes onward to the wallet picker rather
|
|
2135
|
+
* `DepositOptionsScreen`'s "Deposit stablecoins / In a Blink" CTA, wrapped in a
|
|
2136
|
+
* lime "Finish setup" frame, and routes onward to the wallet picker rather
|
|
2137
|
+
* than to login.
|
|
2117
2138
|
*/
|
|
2118
2139
|
declare function WelcomeBackScreen({ onToAddress, onComplete, onClose, }: WelcomeBackScreenProps): react_jsx_runtime.JSX.Element;
|
|
2119
2140
|
|
|
@@ -2783,4 +2804,4 @@ declare function clearDebugEntries(): void;
|
|
|
2783
2804
|
*/
|
|
2784
2805
|
declare function useBlinkDebugLog(): DebugEntry[];
|
|
2785
2806
|
|
|
2786
|
-
export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, ManualTransferPasskeyScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SolanaAccountSwitchDeps, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountChange, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, WelcomeBackScreen, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useSolanaAccountSwitchEffect, useTransferPolling, useTransferSigning };
|
|
2807
|
+
export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkDepositButton, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, ManualTransferPasskeyScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SolanaAccountSwitchDeps, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountChange, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, WelcomeBackScreen, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useSolanaAccountSwitchEffect, useTransferPolling, useTransferSigning };
|
package/dist/index.d.ts
CHANGED
|
@@ -1986,6 +1986,27 @@ interface PrimaryButtonProps {
|
|
|
1986
1986
|
}
|
|
1987
1987
|
declare function PrimaryButton({ children, onClick, href, target, rel, disabled, loading, loadingText, icon, progress, progressText, progressPaused, spinnerOnly, }: PrimaryButtonProps): react_jsx_runtime.JSX.Element;
|
|
1988
1988
|
|
|
1989
|
+
interface BlinkDepositButtonProps {
|
|
1990
|
+
/** Fired when the user taps the button. Hosts typically open the Blink deposit flow. */
|
|
1991
|
+
onClick: () => void;
|
|
1992
|
+
/** Disables interaction and dims the button. */
|
|
1993
|
+
disabled?: boolean;
|
|
1994
|
+
/** Non-interactive waiting state (e.g. while preparing a deposit session). Dims like disabled. */
|
|
1995
|
+
loading?: boolean;
|
|
1996
|
+
}
|
|
1997
|
+
/**
|
|
1998
|
+
* Blink-branded deposit CTA matching the Figma "Payment method" redesign
|
|
1999
|
+
* (frame 1623-32808): a black pill with a bold "Deposit stablecoins" line over
|
|
2000
|
+
* an italic "In a Blink" line, and overlapping USDC/USDT coin marks on the
|
|
2001
|
+
* right.
|
|
2002
|
+
*
|
|
2003
|
+
* Exported for merchants to drop onto their own pages instead of building a
|
|
2004
|
+
* custom button. Outside a BlinkProvider it intentionally styles itself with
|
|
2005
|
+
* the default lightThemeNew palette; inside the widget it follows the
|
|
2006
|
+
* configured theme tokens.
|
|
2007
|
+
*/
|
|
2008
|
+
declare function BlinkDepositButton({ onClick, disabled, loading }: BlinkDepositButtonProps): react_jsx_runtime.JSX.Element;
|
|
2009
|
+
|
|
1989
2010
|
interface OutlineButtonProps {
|
|
1990
2011
|
children: ReactNode;
|
|
1991
2012
|
onClick?: () => void;
|
|
@@ -2080,7 +2101,7 @@ interface DepositOptionsScreenProps {
|
|
|
2080
2101
|
/** Recessed "Send Crypto Manually" row. Navigates to the manual-transfer flow. */
|
|
2081
2102
|
onToAddress: () => void;
|
|
2082
2103
|
/**
|
|
2083
|
-
* Primary "Deposit
|
|
2104
|
+
* Primary "Deposit stablecoins" CTA. Routes to the login screen (wired to
|
|
2084
2105
|
* handlers.onLogin) rather than prompting for a passkey directly, mirroring how
|
|
2085
2106
|
* the connect-wallet entry point defers credential selection to LoginScreen.
|
|
2086
2107
|
*/
|
|
@@ -2090,11 +2111,10 @@ interface DepositOptionsScreenProps {
|
|
|
2090
2111
|
}
|
|
2091
2112
|
/**
|
|
2092
2113
|
* Pre-login entry screen shown when `enableFullWidget` is true. Mirrors the
|
|
2093
|
-
* Figma "Payment method" redesign (
|
|
2094
|
-
* mascot hero,
|
|
2095
|
-
*
|
|
2096
|
-
*
|
|
2097
|
-
* manual-transfer flow.
|
|
2114
|
+
* Figma "Payment method" redesign (frame 1623-32808): a Blink wordmark, a lime
|
|
2115
|
+
* mascot hero, the black "Deposit stablecoins / In a Blink" CTA
|
|
2116
|
+
* (BlinkDepositButton), an OR divider, and a recessed "Send Crypto Manually"
|
|
2117
|
+
* row that routes to the manual-transfer flow.
|
|
2098
2118
|
*/
|
|
2099
2119
|
declare function DepositOptionsScreen({ onToAddress, onSignInWithBlink, onClose, }: DepositOptionsScreenProps): react_jsx_runtime.JSX.Element;
|
|
2100
2120
|
|
|
@@ -2112,8 +2132,9 @@ interface WelcomeBackScreenProps {
|
|
|
2112
2132
|
/**
|
|
2113
2133
|
* Re-greeting screen for returning passkey users who reopen the full-widget
|
|
2114
2134
|
* flow with a persisted session but no linked wallet. Mirrors
|
|
2115
|
-
* `DepositOptionsScreen
|
|
2116
|
-
* and routes onward to the wallet picker rather
|
|
2135
|
+
* `DepositOptionsScreen`'s "Deposit stablecoins / In a Blink" CTA, wrapped in a
|
|
2136
|
+
* lime "Finish setup" frame, and routes onward to the wallet picker rather
|
|
2137
|
+
* than to login.
|
|
2117
2138
|
*/
|
|
2118
2139
|
declare function WelcomeBackScreen({ onToAddress, onComplete, onClose, }: WelcomeBackScreenProps): react_jsx_runtime.JSX.Element;
|
|
2119
2140
|
|
|
@@ -2783,4 +2804,4 @@ declare function clearDebugEntries(): void;
|
|
|
2783
2804
|
*/
|
|
2784
2805
|
declare function useBlinkDebugLog(): DebugEntry[];
|
|
2785
2806
|
|
|
2786
|
-
export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, ManualTransferPasskeyScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SolanaAccountSwitchDeps, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountChange, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, WelcomeBackScreen, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useSolanaAccountSwitchEffect, useTransferPolling, useTransferSigning };
|
|
2807
|
+
export { ACCOUNT_SWITCH_CONFLICT_MESSAGE, type Account, type ActionExecutionResult, type AdvancedSettings, AdvancedSourceScreen, type Amount, ApprovingInWalletScreen, type ApprovingInWalletScreenProps, type AuthorizationAction, type AuthorizationSession, AuthorizationSessionCancelledError, type AuthorizationSessionDetail, BLINK_ERROR_ILLUSTRATION, BLINK_LOGO, BLINK_MASCOT, BLINK_PASSKEY_ILLUSTRATION, BLINK_SUCCESS_ILLUSTRATION, BlinkDepositButton, BlinkErrorScreen, BlinkInitialLoadingScreen, BlinkLoadingScreen, BlinkPayment, type BlinkPaymentProps, BlinkProvider, type BlinkProviderProps, type Chain, ConfirmSignScreen, type DebugEntry, type DebugLevel, DepositCompleteScreen, DepositOptionsScreen, DepositScreen, DepositTransferStatusScreen, type Destination, type ErrorResponse, type ExecutionResult, type GuestTokenEntry, type GuestTokenPickerRawRow, GuestTokenPickerScreen, IconCircle, InfoBanner, LOGIN_KEY_ILLUSTRATION, type LinkTokenEntry, LinkTokensScreen, type ListResponse, LoginScreen, ManualTransferPasskeyScreen, type MerchantAuthorization, type MerchantPublicKey, type MobileFlowState, OpenWalletScreen, type OrchestratorResult, type OrchestratorRunOptions, OtpVerifyScreen, OutlineButton, PasskeyIframeBlockedError, PasskeyPopupWelcomeScreen, PasskeyScreen, type PaymentPhase, type PaymentState, PoweredByFooter, type PreciseMoney, PrimaryButton, type Provider, ScreenHeader, ScreenLayout, type ScreenName, SecondaryButton, SelectDepositSourceScreen, SelectSourceScreen, SettingsMenu, type SetupTokenOption, type SolanaAccountSwitchDeps, type SourceOption, type SourceSelection, type SourceType, Spinner, type StepHandlers, type StepItem, StepList, StepRenderer, type StepRendererDerivedProps, type StepRendererFlowProps, type StepRendererFormProps, type StepRendererProps, type StepRendererRemoteProps, SuccessScreen, type ThemeMode, type ThemeTokens, type TokenBalance, TokenPickerScreen, type Transfer, type TransferDestination, type TransferPhase, type UseAuthorizationExecutorResult, type UseAuthorizationOrchestratorResult, type UserConfig, VerifyPasskeyScreen, type Wallet, type WalletAccountChange, type WalletAccountSwitchResult, type WalletCapabilities, type WalletCapabilitiesDebugSnapshot, type WalletDeeplink, WalletPickerScreen, type WalletSource, type WalletToken, WelcomeBackScreen, appendDebug, api as blinkApi, clearDebugEntries, createInitialState, credentialIdBase64ToBytes, darkTheme, darkThemeNew, darkTransparentTheme, darkTransparentThemeNew, deviceHasPasskey, encodePermit2ApproveCalldata, findDevicePasskey, findDevicePasskeyViaPopup, getAtomicBatchSupportDebugInfo, getDebugEntries, getDeviceBiometricUnlockText, getTheme, getThemeBase, getWalletCapabilities, isAuthorizationSessionCancelled, isExpectedAuthorizationCancellation, isTerminalTransferStatus, isTransferAwaitingCompletion, isTransparentTheme, isUserDismissedAuthorizationError, isVisibleUsdAmountAtTwoDecimals, lightTheme, lightThemeNew, lightTransparentTheme, lightTransparentThemeNew, mapGuestPickerEntries, replaceOpenProviderForAccountSwitch, resolvePasskeyRpId, screenForPhase, subscribeDebug, supportsAtomicBatch, supportsPaymasterService, useAuthorizationExecutor, useAuthorizationOrchestrator, useBlinkConfig, useBlinkDebugLog, useBlinkDepositAmount, useSolanaAccountSwitchEffect, useTransferPolling, useTransferSigning };
|