@tuwaio/nova-connect 0.3.2 → 0.4.0
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/chunk-EYP534IS.js +1 -0
- package/dist/chunk-JCUPHUQU.js +1 -0
- package/dist/chunk-OEA5AZZJ.cjs +2 -0
- package/dist/{chunk-PXKZLOYO.cjs → chunk-Q3WXFHOL.cjs} +1 -1
- package/dist/chunk-UCR5PRAG.js +2 -0
- package/dist/chunk-V6XDFRWV.cjs +1 -0
- package/dist/components/index.cjs +1 -1
- package/dist/components/index.d.cts +6 -305
- package/dist/components/index.d.ts +6 -305
- package/dist/components/index.js +1 -1
- package/dist/hooks/index.cjs +1 -1
- package/dist/hooks/index.d.cts +3 -2
- package/dist/hooks/index.d.ts +3 -2
- package/dist/hooks/index.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +1 -1
- package/dist/satellite/index.cjs +1 -1
- package/dist/satellite/index.js +1 -1
- package/dist/{useWalletNativeBalance-BNbq75Hw.d.ts → useWalletNativeBalance-DIadeXdW.d.ts} +335 -1
- package/dist/{useWalletNativeBalance-C3-mg2mY.d.cts → useWalletNativeBalance-DYd-fWtH.d.cts} +335 -1
- package/package.json +32 -32
- package/dist/chunk-2SFIZVDC.cjs +0 -1
- package/dist/chunk-6EWZWAEF.js +0 -2
- package/dist/chunk-7CLA2EHI.cjs +0 -2
- package/dist/chunk-S3RQJGCL.js +0 -1
- package/dist/chunk-ZD4FCYAW.js +0 -1
|
@@ -3,7 +3,8 @@ import * as React$1 from 'react';
|
|
|
3
3
|
import React__default, { ComponentPropsWithoutRef, ComponentType, ReactNode } from 'react';
|
|
4
4
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
5
5
|
import * as Select from '@radix-ui/react-select';
|
|
6
|
-
import { I as InitialChains, B as ButtonTxStatus, b as NovaConnectProviderProps, h as useNovaConnectLabels, q as NativeBalanceResult, a as ConnectedContentType, C as ConnectContentType } from '../useWalletNativeBalance-
|
|
6
|
+
import { I as InitialChains, B as ButtonTxStatus, b as NovaConnectProviderProps, h as useNovaConnectLabels, q as NativeBalanceResult, a as ConnectedContentType, s as ConnectedModalTxHistoryProps, t as ConnectedModalTxHistoryCustomization, C as ConnectContentType } from '../useWalletNativeBalance-DYd-fWtH.cjs';
|
|
7
|
+
export { x as ConnectedModalTxHistory, w as LocalTransactionsHistoryCustomization, v as LocalTxPagination } from '../useWalletNativeBalance-DYd-fWtH.cjs';
|
|
7
8
|
import { BaseConnector } from '@tuwaio/satellite-core';
|
|
8
9
|
import { Dialog, DialogContent, StarsBackground } from '@tuwaio/nova-core';
|
|
9
10
|
import { Transaction } from '@tuwaio/pulsar-core';
|
|
@@ -2928,6 +2929,7 @@ interface ConnectedModalMainContentProps extends Pick<NovaConnectProviderProps,
|
|
|
2928
2929
|
ensAvatar: string | null;
|
|
2929
2930
|
avatarIsLoading: boolean;
|
|
2930
2931
|
balanceLoading: boolean;
|
|
2932
|
+
txsLoading: boolean;
|
|
2931
2933
|
ensNameAbbreviated: string | undefined;
|
|
2932
2934
|
balance: NativeBalanceResult | null;
|
|
2933
2935
|
refetch: () => void;
|
|
@@ -3029,307 +3031,6 @@ interface ConnectedModalMainContentProps extends Pick<NovaConnectProviderProps,
|
|
|
3029
3031
|
*/
|
|
3030
3032
|
declare const ConnectedModalMainContent: React__default.ForwardRefExoticComponent<ConnectedModalMainContentProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
3031
3033
|
|
|
3032
|
-
/**
|
|
3033
|
-
* @file ConnectedModalTxHistory component with comprehensive customization options for transaction history display.
|
|
3034
|
-
*/
|
|
3035
|
-
|
|
3036
|
-
/**
|
|
3037
|
-
* Local customization options for TransactionsHistory component.
|
|
3038
|
-
* This is a copy of the type from @tuwaio/nova-transactions to avoid
|
|
3039
|
-
* breaking dynamic import logic.
|
|
3040
|
-
*/
|
|
3041
|
-
type LocalTransactionsHistoryCustomization = {
|
|
3042
|
-
/** Custom title for the transactions history section */
|
|
3043
|
-
title?: string;
|
|
3044
|
-
/** Custom class name generators */
|
|
3045
|
-
classNames?: {
|
|
3046
|
-
/** Classes for the outer container */
|
|
3047
|
-
container?: string;
|
|
3048
|
-
/** Classes for the title element */
|
|
3049
|
-
titleText?: string;
|
|
3050
|
-
/** Classes for the list wrapper container */
|
|
3051
|
-
listWrapper?: string;
|
|
3052
|
-
/** Classes for the placeholder container */
|
|
3053
|
-
placeholderContainer?: string;
|
|
3054
|
-
/** Classes for the placeholder title */
|
|
3055
|
-
placeholderTitle?: string;
|
|
3056
|
-
/** Classes for the placeholder message */
|
|
3057
|
-
placeholderMessage?: string;
|
|
3058
|
-
/** Classes for individual transaction item container */
|
|
3059
|
-
itemContainer?: string;
|
|
3060
|
-
/** Classes for the icon wrapper */
|
|
3061
|
-
itemIconWrapper?: string;
|
|
3062
|
-
/** Classes for the icon itself */
|
|
3063
|
-
itemIcon?: string;
|
|
3064
|
-
/** Classes for the content wrapper */
|
|
3065
|
-
itemContentWrapper?: string;
|
|
3066
|
-
/** Classes for the title text */
|
|
3067
|
-
itemTitle?: string;
|
|
3068
|
-
/** Classes for the timestamp text */
|
|
3069
|
-
itemTimestamp?: string;
|
|
3070
|
-
/** Classes for the description text */
|
|
3071
|
-
itemDescription?: string;
|
|
3072
|
-
/** Classes for the status badge container */
|
|
3073
|
-
itemStatusBadge?: string;
|
|
3074
|
-
/** Classes for the status badge icon */
|
|
3075
|
-
itemStatusBadgeIcon?: string;
|
|
3076
|
-
/** Classes for the status badge label */
|
|
3077
|
-
itemStatusBadgeLabel?: string;
|
|
3078
|
-
/** Classes for the transaction key container */
|
|
3079
|
-
itemTxKeyContainer?: string;
|
|
3080
|
-
/** Classes for the default hash link label */
|
|
3081
|
-
itemHashLabel?: string;
|
|
3082
|
-
/** Classes for the default hash link */
|
|
3083
|
-
itemHashLink?: string;
|
|
3084
|
-
/** Classes for the default hash copy button */
|
|
3085
|
-
itemHashCopyButton?: string;
|
|
3086
|
-
/** Classes for the original hash link label (replaced transactions) */
|
|
3087
|
-
itemOriginalHashLabel?: string;
|
|
3088
|
-
/** Classes for the original hash link (replaced transactions) */
|
|
3089
|
-
itemOriginalHashLink?: string;
|
|
3090
|
-
/** Classes for the original hash copy button (replaced transactions) */
|
|
3091
|
-
itemOriginalHashCopyButton?: string;
|
|
3092
|
-
};
|
|
3093
|
-
};
|
|
3094
|
-
type CustomLoadingContainerProps = {
|
|
3095
|
-
labels: Record<string, string>;
|
|
3096
|
-
className?: string;
|
|
3097
|
-
/** Granular classNames for sub-elements */
|
|
3098
|
-
classNames?: {
|
|
3099
|
-
spinner?: string;
|
|
3100
|
-
text?: string;
|
|
3101
|
-
};
|
|
3102
|
-
};
|
|
3103
|
-
type CustomErrorContainerProps = {
|
|
3104
|
-
className?: string;
|
|
3105
|
-
/** Granular classNames for sub-elements */
|
|
3106
|
-
classNames?: {
|
|
3107
|
-
iconContainer?: string;
|
|
3108
|
-
icon?: string;
|
|
3109
|
-
content?: string;
|
|
3110
|
-
title?: string;
|
|
3111
|
-
description?: string;
|
|
3112
|
-
};
|
|
3113
|
-
};
|
|
3114
|
-
type CustomNoWalletContainerProps = {
|
|
3115
|
-
className?: string;
|
|
3116
|
-
/** Granular classNames for sub-elements */
|
|
3117
|
-
classNames?: {
|
|
3118
|
-
text?: string;
|
|
3119
|
-
};
|
|
3120
|
-
};
|
|
3121
|
-
type CustomTransactionsHistoryWrapperProps = {
|
|
3122
|
-
children: ReactNode;
|
|
3123
|
-
activeConnectionAddress: string;
|
|
3124
|
-
transactionPool: NonNullable<NovaConnectProviderProps['transactionPool']>;
|
|
3125
|
-
pulsarAdapter: NonNullable<NovaConnectProviderProps['pulsarAdapter']>;
|
|
3126
|
-
labels: Record<string, string>;
|
|
3127
|
-
className?: string;
|
|
3128
|
-
};
|
|
3129
|
-
/**
|
|
3130
|
-
* Customization options for ConnectedModalTxHistory component
|
|
3131
|
-
*/
|
|
3132
|
-
type ConnectedModalTxHistoryCustomization = {
|
|
3133
|
-
/** Override root container props */
|
|
3134
|
-
containerProps?: Partial<Omit<ComponentPropsWithoutRef<'div'>, 'popover' | 'onDrag' | 'onDragEnd' | 'onDragExit' | 'onDragStart' | 'onDragStartCapture' | 'onAnimationStart' | 'onAnimationEnd' | 'onAnimationStartCapture' | 'onAnimationEndCapture' | 'onAnimationIteration' | 'onAnimationIterationCapture'>>;
|
|
3135
|
-
/** Custom components */
|
|
3136
|
-
components?: {
|
|
3137
|
-
/** Custom loading container component */
|
|
3138
|
-
LoadingContainer?: ComponentType<CustomLoadingContainerProps>;
|
|
3139
|
-
/** Custom error container component */
|
|
3140
|
-
ErrorContainer?: ComponentType<CustomErrorContainerProps>;
|
|
3141
|
-
/** Custom no wallet container component */
|
|
3142
|
-
NoWalletContainer?: ComponentType<CustomNoWalletContainerProps>;
|
|
3143
|
-
/** Custom transactions history wrapper component */
|
|
3144
|
-
TransactionsHistoryWrapper?: ComponentType<CustomTransactionsHistoryWrapperProps>;
|
|
3145
|
-
};
|
|
3146
|
-
/** Custom class name generators */
|
|
3147
|
-
classNames?: {
|
|
3148
|
-
/** Function to generate container classes */
|
|
3149
|
-
container?: (params: {
|
|
3150
|
-
hasActiveWallet: boolean;
|
|
3151
|
-
hasValidAdapter: boolean;
|
|
3152
|
-
}) => string;
|
|
3153
|
-
/** Function to generate loading container classes */
|
|
3154
|
-
loadingContainer?: () => string;
|
|
3155
|
-
/** Function to generate loading spinner classes */
|
|
3156
|
-
loadingSpinner?: () => string;
|
|
3157
|
-
/** Function to generate loading text classes */
|
|
3158
|
-
loadingText?: () => string;
|
|
3159
|
-
/** Function to generate error container classes */
|
|
3160
|
-
errorContainer?: () => string;
|
|
3161
|
-
/** Function to generate error icon container classes */
|
|
3162
|
-
errorIconContainer?: () => string;
|
|
3163
|
-
/** Function to generate error icon classes */
|
|
3164
|
-
errorIcon?: () => string;
|
|
3165
|
-
/** Function to generate error content classes */
|
|
3166
|
-
errorContent?: () => string;
|
|
3167
|
-
/** Function to generate error title classes */
|
|
3168
|
-
errorTitle?: () => string;
|
|
3169
|
-
/** Function to generate error description classes */
|
|
3170
|
-
errorDescription?: () => string;
|
|
3171
|
-
/** Function to generate no wallet container classes */
|
|
3172
|
-
noWalletContainer?: () => string;
|
|
3173
|
-
/** Function to generate no wallet text classes */
|
|
3174
|
-
noWalletText?: () => string;
|
|
3175
|
-
/** Function to generate pulsar required container classes */
|
|
3176
|
-
pulsarRequiredContainer?: () => string;
|
|
3177
|
-
/** Function to generate pulsar required icon container classes */
|
|
3178
|
-
pulsarRequiredIconContainer?: () => string;
|
|
3179
|
-
/** Function to generate pulsar required icon classes */
|
|
3180
|
-
pulsarRequiredIcon?: () => string;
|
|
3181
|
-
/** Function to generate pulsar required content classes */
|
|
3182
|
-
pulsarRequiredContent?: () => string;
|
|
3183
|
-
/** Function to generate pulsar required title classes */
|
|
3184
|
-
pulsarRequiredTitle?: () => string;
|
|
3185
|
-
/** Function to generate pulsar required description classes */
|
|
3186
|
-
pulsarRequiredDescription?: () => string;
|
|
3187
|
-
/** Function to generate transactions history wrapper classes */
|
|
3188
|
-
transactionsHistoryWrapper?: () => string;
|
|
3189
|
-
};
|
|
3190
|
-
/** Custom animation variants */
|
|
3191
|
-
variants?: {
|
|
3192
|
-
/** Container animation variants */
|
|
3193
|
-
container?: Variants;
|
|
3194
|
-
/** Error animation variants */
|
|
3195
|
-
error?: Variants;
|
|
3196
|
-
/** Loading animation variants */
|
|
3197
|
-
loading?: Variants;
|
|
3198
|
-
};
|
|
3199
|
-
/** Custom animation configuration */
|
|
3200
|
-
animation?: {
|
|
3201
|
-
/** Container animation configuration */
|
|
3202
|
-
container?: {
|
|
3203
|
-
/** Animation duration in seconds */
|
|
3204
|
-
duration?: number;
|
|
3205
|
-
/** Animation easing curve */
|
|
3206
|
-
ease?: Easing | Easing[];
|
|
3207
|
-
/** Animation delay in seconds */
|
|
3208
|
-
delay?: number;
|
|
3209
|
-
};
|
|
3210
|
-
/** Error animation configuration */
|
|
3211
|
-
error?: {
|
|
3212
|
-
/** Animation duration in seconds */
|
|
3213
|
-
duration?: number;
|
|
3214
|
-
/** Animation easing curve */
|
|
3215
|
-
ease?: Easing | Easing[];
|
|
3216
|
-
/** Animation delay in seconds */
|
|
3217
|
-
delay?: number;
|
|
3218
|
-
};
|
|
3219
|
-
/** Loading animation configuration */
|
|
3220
|
-
loading?: {
|
|
3221
|
-
/** Animation duration in seconds */
|
|
3222
|
-
duration?: number;
|
|
3223
|
-
/** Animation easing curve */
|
|
3224
|
-
ease?: Easing | Easing[];
|
|
3225
|
-
/** Animation delay in seconds */
|
|
3226
|
-
delay?: number;
|
|
3227
|
-
};
|
|
3228
|
-
};
|
|
3229
|
-
/** Custom event handlers */
|
|
3230
|
-
handlers?: {
|
|
3231
|
-
/** Custom handler for error retry actions */
|
|
3232
|
-
onErrorRetry?: (error: Error, event: React__default.MouseEvent<HTMLButtonElement>) => void;
|
|
3233
|
-
/** Custom handler for package loading failure */
|
|
3234
|
-
onPackageLoadingFailure?: (packageName: string, error: Error) => void;
|
|
3235
|
-
};
|
|
3236
|
-
/** Configuration options */
|
|
3237
|
-
config?: {
|
|
3238
|
-
/** Whether to disable animations */
|
|
3239
|
-
disableAnimation?: boolean;
|
|
3240
|
-
/** Whether to reduce motion for accessibility */
|
|
3241
|
-
reduceMotion?: boolean;
|
|
3242
|
-
/** Custom package name for error messages */
|
|
3243
|
-
packageName?: string;
|
|
3244
|
-
/** Custom aria labels for different states */
|
|
3245
|
-
ariaLabels?: {
|
|
3246
|
-
loading?: string;
|
|
3247
|
-
error?: string;
|
|
3248
|
-
noWallet?: string;
|
|
3249
|
-
pulsarRequired?: string;
|
|
3250
|
-
transactionsHistory?: string;
|
|
3251
|
-
};
|
|
3252
|
-
};
|
|
3253
|
-
/**
|
|
3254
|
-
* Customization for the TransactionsHistory component (from @tuwaio/nova-transactions).
|
|
3255
|
-
* Passed through to the dynamically loaded component.
|
|
3256
|
-
*/
|
|
3257
|
-
transactionsHistory?: LocalTransactionsHistoryCustomization;
|
|
3258
|
-
};
|
|
3259
|
-
/**
|
|
3260
|
-
* Props for the ConnectedModalTxHistory component
|
|
3261
|
-
*/
|
|
3262
|
-
interface ConnectedModalTxHistoryProps extends Pick<NovaConnectProviderProps, 'transactionPool' | 'pulsarAdapter'> {
|
|
3263
|
-
/** Additional CSS classes for the container */
|
|
3264
|
-
className?: string;
|
|
3265
|
-
/** Custom aria-label for the container */
|
|
3266
|
-
'aria-label'?: string;
|
|
3267
|
-
/** Customization options */
|
|
3268
|
-
customization?: ConnectedModalTxHistoryCustomization;
|
|
3269
|
-
}
|
|
3270
|
-
/**
|
|
3271
|
-
* Component for displaying transaction history with comprehensive customization options.
|
|
3272
|
-
*
|
|
3273
|
-
* This component provides comprehensive transaction history functionality:
|
|
3274
|
-
* - Conditional loading of the @tuwaio/nova-transactions package
|
|
3275
|
-
* - Graceful fallback when the package is not available
|
|
3276
|
-
* - Loading states with proper accessibility support
|
|
3277
|
-
* - Error handling for missing configuration
|
|
3278
|
-
* - Full WCAG compliance with ARIA labels
|
|
3279
|
-
* - Comprehensive customization for all UI elements and behaviors
|
|
3280
|
-
* - Animation support with reduced motion options
|
|
3281
|
-
* - Custom event handlers for enhanced interactivity
|
|
3282
|
-
* - Performance-optimized with memoized calculations
|
|
3283
|
-
*
|
|
3284
|
-
* The component automatically detects if the required dependencies are available
|
|
3285
|
-
* and provides appropriate fallbacks for different scenarios.
|
|
3286
|
-
*
|
|
3287
|
-
* @example Basic usage
|
|
3288
|
-
* ```tsx
|
|
3289
|
-
* <ConnectedModalTxHistory
|
|
3290
|
-
* transactionPool={txPool}
|
|
3291
|
-
* pulsarAdapter={adapter}
|
|
3292
|
-
* className="custom-styling"
|
|
3293
|
-
* />
|
|
3294
|
-
* ```
|
|
3295
|
-
*
|
|
3296
|
-
* @example With full customization
|
|
3297
|
-
* ```tsx
|
|
3298
|
-
* <ConnectedModalTxHistory
|
|
3299
|
-
* transactionPool={txPool}
|
|
3300
|
-
* pulsarAdapter={adapter}
|
|
3301
|
-
* customization={{
|
|
3302
|
-
* classNames: {
|
|
3303
|
-
* container: ({ hasActiveWallet }) =>
|
|
3304
|
-
* `custom-container ${hasActiveWallet ? 'has-wallet' : 'no-wallet'}`,
|
|
3305
|
-
* loadingContainer: () => "custom-loading bg-blue-100",
|
|
3306
|
-
* errorContainer: () => "custom-error bg-red-100",
|
|
3307
|
-
* },
|
|
3308
|
-
* components: {
|
|
3309
|
-
* LoadingContainer: ({ className }) =>
|
|
3310
|
-
* <div className={cn("custom-spinner", className)} />,
|
|
3311
|
-
* },
|
|
3312
|
-
* handlers: {
|
|
3313
|
-
* onPackageLoadingFailure: (packageName, error) =>
|
|
3314
|
-
* console.error(`Failed to load ${packageName}:`, error),
|
|
3315
|
-
* },
|
|
3316
|
-
* config: {
|
|
3317
|
-
* packageName: '@custom/transactions',
|
|
3318
|
-
* ariaLabels: {
|
|
3319
|
-
* loading: 'Loading transaction history...',
|
|
3320
|
-
* error: 'Error loading transactions',
|
|
3321
|
-
* },
|
|
3322
|
-
* },
|
|
3323
|
-
* animation: {
|
|
3324
|
-
* container: { duration: 0.3, ease: 'easeOut' },
|
|
3325
|
-
* error: { duration: 0.2, ease: 'easeIn' },
|
|
3326
|
-
* },
|
|
3327
|
-
* }}
|
|
3328
|
-
* />
|
|
3329
|
-
* ```
|
|
3330
|
-
*/
|
|
3331
|
-
declare const ConnectedModalTxHistory: React__default.ForwardRefExoticComponent<ConnectedModalTxHistoryProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
3332
|
-
|
|
3333
3034
|
/**
|
|
3334
3035
|
* @file ConnectionsContent component for managing multiple wallet connections.
|
|
3335
3036
|
*/
|
|
@@ -3806,7 +3507,7 @@ type HeaderProps = {
|
|
|
3806
3507
|
/**
|
|
3807
3508
|
* Props for custom MainContent component
|
|
3808
3509
|
*/
|
|
3809
|
-
type MainContentProps$1 = Pick<NovaConnectProviderProps, 'transactionPool' | 'pulsarAdapter'> & {
|
|
3510
|
+
type MainContentProps$1 = Pick<NovaConnectProviderProps, 'transactionPool' | 'pulsarAdapter' | 'pagination'> & {
|
|
3810
3511
|
/** Current content type */
|
|
3811
3512
|
contentType: ConnectedContentType;
|
|
3812
3513
|
/** Native balance result */
|
|
@@ -4007,7 +3708,7 @@ type ConnectedModalCustomization = {
|
|
|
4007
3708
|
/**
|
|
4008
3709
|
* Props for the ConnectedModal component
|
|
4009
3710
|
*/
|
|
4010
|
-
interface ConnectedModalProps extends Omit<ConnectButtonProps, 'className' | 'customization'>, Pick<NovaConnectProviderProps, 'transactionPool' | 'pulsarAdapter' | 'appChains' | 'solanaRPCUrls'> {
|
|
3711
|
+
interface ConnectedModalProps extends Omit<ConnectButtonProps, 'className' | 'customization'>, Pick<NovaConnectProviderProps, 'transactionPool' | 'pulsarAdapter' | 'appChains' | 'solanaRPCUrls' | 'pagination'> {
|
|
4011
3712
|
/** Additional CSS classes for the modal */
|
|
4012
3713
|
className?: string;
|
|
4013
3714
|
/** Customization options */
|
|
@@ -7558,4 +7259,4 @@ interface ToastErrorProps extends Omit<ComponentPropsWithoutRef<'div'>, 'role' |
|
|
|
7558
7259
|
*/
|
|
7559
7260
|
declare const ToastError: React$1.ForwardRefExoticComponent<ToastErrorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
7560
7261
|
|
|
7561
|
-
export { AboutWallets, type AboutWalletsCustomization, type AboutWalletsProps, type AnimationConfig, type BadgeAnimationConfig, type BadgeGradientConfig, type BalanceData, BalanceDisplay, type BalanceDisplayCustomization, type BalanceDisplayLabels, type BalanceDisplayProps$1 as BalanceDisplayProps, type BalanceValueProps, type BottomButtonConfig, ChainListRenderer, type ChainListRendererCustomization, type ChainListRendererProps, ChainSelector, type ChainSelectorCustomization, type ChainSelectorProps, type ChainTriggerButtonCustomization, ConnectButton, type ConnectButtonCustomization, type ConnectButtonData, type ConnectButtonProps, ConnectCard, type ConnectCardCustomization, type ConnectCardData, ConnectModal, type ConnectModalCustomization, type ConnectModalData, type ConnectModalProps, ConnectedContent, type ConnectedContentCustomization, type ConnectedContentProps, ConnectedModal, type ConnectedModalCustomization, ConnectedModalFooter, type ConnectedModalFooterCustomization, type ConnectedModalFooterProps, ConnectedModalMainContent, type ConnectedModalMainContentCustomization, type ConnectedModalMainContentProps, ConnectedModalNameAndBalance, type ConnectedModalNameAndBalanceCustomization, type ConnectedModalNameAndBalanceProps, type ConnectedModalProps,
|
|
7262
|
+
export { AboutWallets, type AboutWalletsCustomization, type AboutWalletsProps, type AnimationConfig, type BadgeAnimationConfig, type BadgeGradientConfig, type BalanceData, BalanceDisplay, type BalanceDisplayCustomization, type BalanceDisplayLabels, type BalanceDisplayProps$1 as BalanceDisplayProps, type BalanceValueProps, type BottomButtonConfig, ChainListRenderer, type ChainListRendererCustomization, type ChainListRendererProps, ChainSelector, type ChainSelectorCustomization, type ChainSelectorProps, type ChainTriggerButtonCustomization, ConnectButton, type ConnectButtonCustomization, type ConnectButtonData, type ConnectButtonProps, ConnectCard, type ConnectCardCustomization, type ConnectCardData, ConnectModal, type ConnectModalCustomization, type ConnectModalData, type ConnectModalProps, ConnectedContent, type ConnectedContentCustomization, type ConnectedContentProps, ConnectedModal, type ConnectedModalCustomization, ConnectedModalFooter, type ConnectedModalFooterCustomization, type ConnectedModalFooterProps, ConnectedModalMainContent, type ConnectedModalMainContentCustomization, type ConnectedModalMainContentProps, ConnectedModalNameAndBalance, type ConnectedModalNameAndBalanceCustomization, type ConnectedModalNameAndBalanceProps, type ConnectedModalProps, ConnectedModalTxHistoryCustomization, ConnectedModalTxHistoryProps, Connecting, type ConnectingCustomization, type ConnectingProps, type ConnectingStatusData, type ConnectionState, ConnectionsContent, type ConnectionsContentCustomization, type ConnectionsContentProps, type ConnectorItemData, ConnectorsBlock, type ConnectorsBlockCustomization, type ConnectorsBlockData, ConnectorsSelections, type ConnectorsSelectionsCustomization, type ConnectorsSelectionsData, type ConnectorsSelectionsProps, Disclaimer, type DisclaimerCustomization, type DisclaimerProps, type EmptyStateProps$2 as EmptyStateProps, GetWallet, type GetWalletCustomization, type GetWalletProps, type GroupedConnector, IconButton, type IconButtonCustomization, type IconButtonProps, ImpersonateForm, type ImpersonateFormCustomization, type ImpersonateFormProps, type ImpersonateSectionData, LegalDisclaimer, type LegalDisclaimerCustomization, type LegalDisclaimerData, type LegalDisclaimerProps, type LoadingStateProps, type NetworkIconsCustomization, NetworkSelections, type NetworkSelectionsCustomization, type NetworkSelectionsData, type NetworkTabData, NetworkTabs, type NetworkTabsCustomization, type NetworkTabsProps, RecentBadge, type RecentBadgeCustomization, type RecentBadgeProps, type RefreshButtonProps, ScrollableChainList, type ScrollableChainListCustomization, type ScrollableChainListProps, SelectContentAnimated, type SelectContentAnimatedProps, StatusIcon, type StatusIconCustomization, type StatusIconProps$1 as StatusIconProps, ToBottomButton, type ToBottomButtonCustomization, type ToBottomButtonProps, ToTopButton, type ToTopButtonCustomization, type ToTopButtonProps, ToastError, type ToastErrorCustomization, type ToastErrorProps, type ValidationConfig, WaitForConnectionContent, type WaitForConnectionContentCustomization, type WaitForConnectionContentProps, WalletAvatar, type WalletAvatarCustomization, type WalletAvatarProps, type WalletAvatarSize, WalletIcon, type WalletIconConfig, type WalletIconCustomization, type WalletIconProps$1 as WalletIconProps };
|