@tuwaio/nova-connect 1.0.0-fix-test-alpha.62.a3a7178 → 1.0.0-fix-test-alpha.64.b02d4b2

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.cts CHANGED
@@ -717,15 +717,6 @@ interface ScrollableChainListCustomization {
717
717
  bottomButton?: ToBottomButtonCustomization;
718
718
  /** Hide buttons when content fits */
719
719
  hideWhenContentFits?: boolean;
720
- /** Custom button positioning */
721
- positioning?: {
722
- /** Top button position offset */
723
- topOffset?: string | number;
724
- /** Bottom button position offset */
725
- bottomOffset?: string | number;
726
- /** Button z-index */
727
- zIndex?: number;
728
- };
729
720
  };
730
721
  /** Chain list renderer customization */
731
722
  chainListRenderer?: ChainListRendererCustomization;
@@ -2513,7 +2504,6 @@ type SlideConfig = {
2513
2504
  type SlideDirection = -1 | 0 | 1;
2514
2505
  type SectionProps = {
2515
2506
  className?: string;
2516
- style?: React__default.CSSProperties;
2517
2507
  children: React__default.ReactNode;
2518
2508
  onKeyDown?: (event: React__default.KeyboardEvent) => void;
2519
2509
  tabIndex?: number;
@@ -2523,7 +2513,6 @@ type SectionProps = {
2523
2513
  } & React__default.RefAttributes<HTMLElement>;
2524
2514
  type SlideContainerProps = {
2525
2515
  className?: string;
2526
- style?: React__default.CSSProperties;
2527
2516
  children: React__default.ReactNode;
2528
2517
  'aria-live'?: 'polite' | 'assertive' | 'off';
2529
2518
  'aria-atomic'?: boolean;
@@ -2537,7 +2526,6 @@ type SlideProps = {
2537
2526
  onImageLoad: (slideIndex: number) => void;
2538
2527
  onImageError: (slideIndex: number) => void;
2539
2528
  className?: string;
2540
- style?: React__default.CSSProperties;
2541
2529
  labels: Record<string, string>;
2542
2530
  slideVariants?: Variants;
2543
2531
  slideTransition?: Transition;
@@ -2549,14 +2537,12 @@ type ImageSectionProps = {
2549
2537
  onImageError: () => void;
2550
2538
  slideIndex: number;
2551
2539
  className?: string;
2552
- style?: React__default.CSSProperties;
2553
2540
  labels: Record<string, string>;
2554
2541
  };
2555
2542
  type ContentSectionProps$2 = {
2556
2543
  slide: SlideConfig;
2557
2544
  slideIndex: number;
2558
2545
  className?: string;
2559
- style?: React__default.CSSProperties;
2560
2546
  labels: Record<string, string>;
2561
2547
  };
2562
2548
  type NavigationProps$1 = {
@@ -2564,7 +2550,6 @@ type NavigationProps$1 = {
2564
2550
  currentSlide: number;
2565
2551
  onSlideChange: (index: number) => void;
2566
2552
  className?: string;
2567
- style?: React__default.CSSProperties;
2568
2553
  labels: Record<string, string>;
2569
2554
  };
2570
2555
  type IndicatorProps$1 = {
@@ -2573,7 +2558,6 @@ type IndicatorProps$1 = {
2573
2558
  isActive: boolean;
2574
2559
  onClick: () => void;
2575
2560
  className?: string;
2576
- style?: React__default.CSSProperties;
2577
2561
  labels: Record<string, string>;
2578
2562
  };
2579
2563
  type StatusProps$1 = {
@@ -2582,7 +2566,6 @@ type StatusProps$1 = {
2582
2566
  currentSlideData: SlideConfig;
2583
2567
  isAutoPlaying: boolean;
2584
2568
  className?: string;
2585
- style?: React__default.CSSProperties;
2586
2569
  labels: Record<string, string>;
2587
2570
  };
2588
2571
  /**
@@ -2656,48 +2639,6 @@ type AboutWalletsCustomization = {
2656
2639
  /** Function to generate status classes */
2657
2640
  status?: () => string;
2658
2641
  };
2659
- /** Custom style generators */
2660
- styles?: {
2661
- /** Function to generate section styles */
2662
- section?: () => React__default.CSSProperties;
2663
- /** Function to generate slide container styles */
2664
- slideContainer?: () => React__default.CSSProperties;
2665
- /** Function to generate slide styles */
2666
- slide?: (params: {
2667
- slideIndex: number;
2668
- totalSlides: number;
2669
- }) => React__default.CSSProperties;
2670
- /** Function to generate image section styles */
2671
- imageSection?: (params: {
2672
- slideIndex: number;
2673
- }) => React__default.CSSProperties;
2674
- /** Function to generate image styles */
2675
- image?: (params: {
2676
- slideIndex: number;
2677
- imageLoaded: boolean;
2678
- }) => React__default.CSSProperties;
2679
- /** Function to generate content section styles */
2680
- contentSection?: (params: {
2681
- slideIndex: number;
2682
- }) => React__default.CSSProperties;
2683
- /** Function to generate title styles */
2684
- title?: (params: {
2685
- slideIndex: number;
2686
- }) => React__default.CSSProperties;
2687
- /** Function to generate description styles */
2688
- description?: (params: {
2689
- slideIndex: number;
2690
- }) => React__default.CSSProperties;
2691
- /** Function to generate navigation styles */
2692
- navigation?: () => React__default.CSSProperties;
2693
- /** Function to generate indicator styles */
2694
- indicator?: (params: {
2695
- index: number;
2696
- isActive: boolean;
2697
- }) => React__default.CSSProperties;
2698
- /** Function to generate status styles */
2699
- status?: () => React__default.CSSProperties;
2700
- };
2701
2642
  /** Custom animation variants */
2702
2643
  variants?: {
2703
2644
  /** Slide animation variants */
@@ -2817,7 +2758,6 @@ interface ConnectingStatusData {
2817
2758
  }
2818
2759
  type ContainerProps$9 = {
2819
2760
  className?: string;
2820
- style?: React__default.CSSProperties;
2821
2761
  children: React__default.ReactNode;
2822
2762
  role?: string;
2823
2763
  'aria-label'?: string;
@@ -2827,13 +2767,11 @@ type ContainerProps$9 = {
2827
2767
  } & React__default.RefAttributes<HTMLElement>;
2828
2768
  type StatusContainerProps = {
2829
2769
  className?: string;
2830
- style?: React__default.CSSProperties;
2831
2770
  children: React__default.ReactNode;
2832
2771
  statusData: ConnectingStatusData;
2833
2772
  } & React__default.RefAttributes<HTMLDivElement>;
2834
2773
  type SpinnerProps = {
2835
2774
  className?: string;
2836
- style?: React__default.CSSProperties;
2837
2775
  role?: string;
2838
2776
  'aria-label'?: string;
2839
2777
  'aria-describedby'?: string;
@@ -2841,26 +2779,22 @@ type SpinnerProps = {
2841
2779
  } & React__default.RefAttributes<HTMLDivElement>;
2842
2780
  type StatusIconProps$1 = {
2843
2781
  className?: string;
2844
- style?: React__default.CSSProperties;
2845
2782
  role?: string;
2846
2783
  'aria-label'?: string;
2847
2784
  statusData: ConnectingStatusData;
2848
2785
  } & React__default.RefAttributes<HTMLDivElement>;
2849
2786
  type WalletIconContainerProps = {
2850
2787
  className?: string;
2851
- style?: React__default.CSSProperties;
2852
2788
  children: React__default.ReactNode;
2853
2789
  statusData: ConnectingStatusData;
2854
2790
  } & React__default.RefAttributes<HTMLDivElement>;
2855
2791
  type MessageContainerProps = {
2856
2792
  className?: string;
2857
- style?: React__default.CSSProperties;
2858
2793
  children: React__default.ReactNode;
2859
2794
  statusData: ConnectingStatusData;
2860
2795
  } & React__default.RefAttributes<HTMLDivElement>;
2861
2796
  type StatusMessageProps = {
2862
2797
  className?: string;
2863
- style?: React__default.CSSProperties;
2864
2798
  children: React__default.ReactNode;
2865
2799
  id?: string;
2866
2800
  role?: string;
@@ -2869,7 +2803,6 @@ type StatusMessageProps = {
2869
2803
  } & React__default.RefAttributes<HTMLHeadingElement>;
2870
2804
  type ErrorMessageProps$2 = {
2871
2805
  className?: string;
2872
- style?: React__default.CSSProperties;
2873
2806
  children: React__default.ReactNode;
2874
2807
  role?: string;
2875
2808
  'aria-describedby'?: string;
@@ -2877,13 +2810,11 @@ type ErrorMessageProps$2 = {
2877
2810
  } & React__default.RefAttributes<HTMLParagraphElement>;
2878
2811
  type ErrorDetailsProps = {
2879
2812
  className?: string;
2880
- style?: React__default.CSSProperties;
2881
2813
  children: React__default.ReactNode;
2882
2814
  statusData: ConnectingStatusData;
2883
2815
  } & React__default.RefAttributes<HTMLDetailsElement>;
2884
2816
  type LoadingPlaceholderProps = {
2885
2817
  className?: string;
2886
- style?: React__default.CSSProperties;
2887
2818
  role?: string;
2888
2819
  'aria-label'?: string;
2889
2820
  statusData: ConnectingStatusData;
@@ -2958,49 +2889,6 @@ type ConnectingCustomization = {
2958
2889
  statusData: ConnectingStatusData;
2959
2890
  }) => string;
2960
2891
  };
2961
- /** Custom style generators */
2962
- styles?: {
2963
- /** Function to generate container styles */
2964
- container?: (params: {
2965
- statusData: ConnectingStatusData;
2966
- }) => React__default.CSSProperties;
2967
- /** Function to generate status container styles */
2968
- statusContainer?: (params: {
2969
- statusData: ConnectingStatusData;
2970
- }) => React__default.CSSProperties;
2971
- /** Function to generate spinner styles */
2972
- spinner?: (params: {
2973
- statusData: ConnectingStatusData;
2974
- }) => React__default.CSSProperties;
2975
- /** Function to generate status icon styles */
2976
- statusIcon?: (params: {
2977
- statusData: ConnectingStatusData;
2978
- }) => React__default.CSSProperties;
2979
- /** Function to generate wallet icon container styles */
2980
- walletIconContainer?: (params: {
2981
- statusData: ConnectingStatusData;
2982
- }) => React__default.CSSProperties;
2983
- /** Function to generate message container styles */
2984
- messageContainer?: (params: {
2985
- statusData: ConnectingStatusData;
2986
- }) => React__default.CSSProperties;
2987
- /** Function to generate status message styles */
2988
- statusMessage?: (params: {
2989
- statusData: ConnectingStatusData;
2990
- }) => React__default.CSSProperties;
2991
- /** Function to generate error message styles */
2992
- errorMessage?: (params: {
2993
- statusData: ConnectingStatusData;
2994
- }) => React__default.CSSProperties;
2995
- /** Function to generate error details styles */
2996
- errorDetails?: (params: {
2997
- statusData: ConnectingStatusData;
2998
- }) => React__default.CSSProperties;
2999
- /** Function to generate loading placeholder styles */
3000
- loadingPlaceholder?: (params: {
3001
- statusData: ConnectingStatusData;
3002
- }) => React__default.CSSProperties;
3003
- };
3004
2892
  /** Custom event handlers */
3005
2893
  handlers?: {
3006
2894
  /** Custom handler for state change */
@@ -3169,7 +3057,6 @@ interface ConnectCardData {
3169
3057
  }
3170
3058
  type NetworkIconsContainerProps = {
3171
3059
  className?: string;
3172
- style?: React__default.CSSProperties;
3173
3060
  children: React__default.ReactNode;
3174
3061
  role?: string;
3175
3062
  'aria-label'?: string;
@@ -3177,7 +3064,6 @@ type NetworkIconsContainerProps = {
3177
3064
  } & React__default.RefAttributes<HTMLDivElement>;
3178
3065
  type NetworkIconProps$1 = {
3179
3066
  className?: string;
3180
- style?: React__default.CSSProperties;
3181
3067
  children: React__default.ReactNode;
3182
3068
  role?: string;
3183
3069
  'aria-label'?: string;
@@ -3186,7 +3072,6 @@ type NetworkIconProps$1 = {
3186
3072
  } & React__default.RefAttributes<HTMLDivElement>;
3187
3073
  type NetworkOverflowProps = {
3188
3074
  className?: string;
3189
- style?: React__default.CSSProperties;
3190
3075
  children: React__default.ReactNode;
3191
3076
  role?: string;
3192
3077
  'aria-label'?: string;
@@ -3223,27 +3108,9 @@ type NetworkIconsCustomization = {
3223
3108
  cardData: ConnectCardData;
3224
3109
  }) => string;
3225
3110
  };
3226
- /** Custom style generators */
3227
- styles?: {
3228
- /** Function to generate container styles */
3229
- container?: (params: {
3230
- cardData: ConnectCardData;
3231
- }) => React__default.CSSProperties;
3232
- /** Function to generate network icon styles */
3233
- networkIcon?: (params: {
3234
- networkData: NetworkData$1;
3235
- cardData: ConnectCardData;
3236
- }) => React__default.CSSProperties;
3237
- /** Function to generate overflow indicator styles */
3238
- overflowIndicator?: (params: {
3239
- overflowCount: number;
3240
- cardData: ConnectCardData;
3241
- }) => React__default.CSSProperties;
3242
- };
3243
3111
  };
3244
3112
  type CardContainerProps = {
3245
3113
  className?: string;
3246
- style?: React__default.CSSProperties;
3247
3114
  children: React__default.ReactNode;
3248
3115
  type?: 'button';
3249
3116
  onClick?: () => void;
@@ -3253,13 +3120,11 @@ type CardContainerProps = {
3253
3120
  } & React__default.RefAttributes<HTMLButtonElement>;
3254
3121
  type CardContentProps = {
3255
3122
  className?: string;
3256
- style?: React__default.CSSProperties;
3257
3123
  children: React__default.ReactNode;
3258
3124
  cardData: ConnectCardData;
3259
3125
  } & React__default.RefAttributes<HTMLDivElement>;
3260
3126
  type IconContainerProps$1 = {
3261
3127
  className?: string;
3262
- style?: React__default.CSSProperties;
3263
3128
  children: React__default.ReactNode;
3264
3129
  role?: string;
3265
3130
  'aria-label'?: string;
@@ -3267,19 +3132,16 @@ type IconContainerProps$1 = {
3267
3132
  } & React__default.RefAttributes<HTMLDivElement>;
3268
3133
  type IconWrapperProps = {
3269
3134
  className?: string;
3270
- style?: React__default.CSSProperties;
3271
3135
  children: React__default.ReactNode;
3272
3136
  cardData: ConnectCardData;
3273
3137
  } & React__default.RefAttributes<HTMLDivElement>;
3274
3138
  type TextContainerProps = {
3275
3139
  className?: string;
3276
- style?: React__default.CSSProperties;
3277
3140
  children: React__default.ReactNode;
3278
3141
  cardData: ConnectCardData;
3279
3142
  } & React__default.RefAttributes<HTMLDivElement>;
3280
3143
  type TitleProps$5 = {
3281
3144
  className?: string;
3282
- style?: React__default.CSSProperties;
3283
3145
  children: React__default.ReactNode;
3284
3146
  role?: string;
3285
3147
  'aria-level'?: number;
@@ -3287,7 +3149,6 @@ type TitleProps$5 = {
3287
3149
  } & React__default.RefAttributes<HTMLSpanElement>;
3288
3150
  type SubtitleProps = {
3289
3151
  className?: string;
3290
- style?: React__default.CSSProperties;
3291
3152
  children: React__default.ReactNode;
3292
3153
  id?: string;
3293
3154
  role?: string;
@@ -3295,7 +3156,6 @@ type SubtitleProps = {
3295
3156
  } & React__default.RefAttributes<HTMLSpanElement>;
3296
3157
  type InfoLinkProps = {
3297
3158
  className?: string;
3298
- style?: React__default.CSSProperties;
3299
3159
  children: React__default.ReactNode;
3300
3160
  onClick?: (e: React__default.MouseEvent) => void;
3301
3161
  href?: string;
@@ -3306,14 +3166,12 @@ type InfoLinkProps = {
3306
3166
  } & React__default.RefAttributes<HTMLAnchorElement>;
3307
3167
  type RecentBadgeWrapperProps = {
3308
3168
  className?: string;
3309
- style?: React__default.CSSProperties;
3310
3169
  children: React__default.ReactNode;
3311
3170
  'aria-label'?: string;
3312
3171
  cardData: ConnectCardData;
3313
3172
  } & React__default.RefAttributes<HTMLDivElement>;
3314
3173
  type ChevronProps = {
3315
3174
  className?: string;
3316
- style?: React__default.CSSProperties;
3317
3175
  children: React__default.ReactNode;
3318
3176
  'aria-hidden'?: boolean;
3319
3177
  cardData: ConnectCardData;
@@ -3388,49 +3246,6 @@ type ConnectCardCustomization = {
3388
3246
  cardData: ConnectCardData;
3389
3247
  }) => string;
3390
3248
  };
3391
- /** Custom style generators */
3392
- styles?: {
3393
- /** Function to generate container styles */
3394
- container?: (params: {
3395
- cardData: ConnectCardData;
3396
- }) => React__default.CSSProperties;
3397
- /** Function to generate content styles */
3398
- content?: (params: {
3399
- cardData: ConnectCardData;
3400
- }) => React__default.CSSProperties;
3401
- /** Function to generate icon container styles */
3402
- iconContainer?: (params: {
3403
- cardData: ConnectCardData;
3404
- }) => React__default.CSSProperties;
3405
- /** Function to generate icon wrapper styles */
3406
- iconWrapper?: (params: {
3407
- cardData: ConnectCardData;
3408
- }) => React__default.CSSProperties;
3409
- /** Function to generate text container styles */
3410
- textContainer?: (params: {
3411
- cardData: ConnectCardData;
3412
- }) => React__default.CSSProperties;
3413
- /** Function to generate title styles */
3414
- title?: (params: {
3415
- cardData: ConnectCardData;
3416
- }) => React__default.CSSProperties;
3417
- /** Function to generate subtitle styles */
3418
- subtitle?: (params: {
3419
- cardData: ConnectCardData;
3420
- }) => React__default.CSSProperties;
3421
- /** Function to generate info link styles */
3422
- infoLink?: (params: {
3423
- cardData: ConnectCardData;
3424
- }) => React__default.CSSProperties;
3425
- /** Function to generate recent badge wrapper styles */
3426
- recentBadgeWrapper?: (params: {
3427
- cardData: ConnectCardData;
3428
- }) => React__default.CSSProperties;
3429
- /** Function to generate chevron styles */
3430
- chevron?: (params: {
3431
- cardData: ConnectCardData;
3432
- }) => React__default.CSSProperties;
3433
- };
3434
3249
  /** Custom event handlers */
3435
3250
  handlers?: {
3436
3251
  /** Custom click handler */
@@ -3579,7 +3394,6 @@ interface ConnectorItemData {
3579
3394
  }
3580
3395
  type ContainerProps$8 = {
3581
3396
  className?: string;
3582
- style?: React__default.CSSProperties;
3583
3397
  children: React__default.ReactNode;
3584
3398
  role?: string;
3585
3399
  'aria-labelledby'?: string;
@@ -3588,7 +3402,6 @@ type ContainerProps$8 = {
3588
3402
  } & React__default.RefAttributes<HTMLElement>;
3589
3403
  type TitleProps$4 = {
3590
3404
  className?: string;
3591
- style?: React__default.CSSProperties;
3592
3405
  children: React__default.ReactNode;
3593
3406
  id?: string;
3594
3407
  role?: string;
@@ -3598,7 +3411,6 @@ type TitleProps$4 = {
3598
3411
  } & React__default.RefAttributes<HTMLHeadingElement>;
3599
3412
  type ConnectorsListProps = {
3600
3413
  className?: string;
3601
- style?: React__default.CSSProperties;
3602
3414
  children: React__default.ReactNode;
3603
3415
  role?: string;
3604
3416
  'aria-label'?: string;
@@ -3606,7 +3418,6 @@ type ConnectorsListProps = {
3606
3418
  } & React__default.RefAttributes<HTMLDivElement>;
3607
3419
  type ConnectorItemProps = {
3608
3420
  className?: string;
3609
- style?: React__default.CSSProperties;
3610
3421
  children: React__default.ReactNode;
3611
3422
  role?: string;
3612
3423
  itemData: ConnectorItemData;
@@ -3614,7 +3425,6 @@ type ConnectorItemProps = {
3614
3425
  } & React__default.RefAttributes<HTMLDivElement>;
3615
3426
  type EmptyStateProps$1 = {
3616
3427
  className?: string;
3617
- style?: React__default.CSSProperties;
3618
3428
  children: React__default.ReactNode;
3619
3429
  role?: string;
3620
3430
  'aria-label'?: string;
@@ -3662,30 +3472,6 @@ type ConnectorsBlockCustomization = {
3662
3472
  blockData: ConnectorsBlockData;
3663
3473
  }) => string;
3664
3474
  };
3665
- /** Custom style generators */
3666
- styles?: {
3667
- /** Function to generate container styles */
3668
- container?: (params: {
3669
- blockData: ConnectorsBlockData;
3670
- }) => React__default.CSSProperties;
3671
- /** Function to generate title styles */
3672
- title?: (params: {
3673
- blockData: ConnectorsBlockData;
3674
- }) => React__default.CSSProperties;
3675
- /** Function to generate connectors list styles */
3676
- connectorsList?: (params: {
3677
- blockData: ConnectorsBlockData;
3678
- }) => React__default.CSSProperties;
3679
- /** Function to generate connector item styles */
3680
- connectorItem?: (params: {
3681
- itemData: ConnectorItemData;
3682
- blockData: ConnectorsBlockData;
3683
- }) => React__default.CSSProperties;
3684
- /** Function to generate empty state styles */
3685
- emptyState?: (params: {
3686
- blockData: ConnectorsBlockData;
3687
- }) => React__default.CSSProperties;
3688
- };
3689
3475
  /** Custom event handlers */
3690
3476
  handlers?: {
3691
3477
  /** Custom connector click handler */
@@ -3874,7 +3660,6 @@ interface ImpersonateSectionData {
3874
3660
  }
3875
3661
  type ContainerProps$7 = {
3876
3662
  className?: string;
3877
- style?: React__default.CSSProperties;
3878
3663
  children: React__default.ReactNode;
3879
3664
  role?: string;
3880
3665
  'aria-label'?: string;
@@ -3882,13 +3667,11 @@ type ContainerProps$7 = {
3882
3667
  } & React__default.RefAttributes<HTMLDivElement>;
3883
3668
  type ContentWrapperProps = {
3884
3669
  className?: string;
3885
- style?: React__default.CSSProperties;
3886
3670
  children: React__default.ReactNode;
3887
3671
  selectionsData: ConnectorsSelectionsData;
3888
3672
  } & React__default.RefAttributes<HTMLDivElement>;
3889
3673
  type ConnectorsAreaProps = {
3890
3674
  className?: string;
3891
- style?: React__default.CSSProperties;
3892
3675
  children: React__default.ReactNode;
3893
3676
  role?: string;
3894
3677
  'aria-label'?: string;
@@ -3896,7 +3679,6 @@ type ConnectorsAreaProps = {
3896
3679
  } & React__default.RefAttributes<HTMLDivElement>;
3897
3680
  type ImpersonateSectionProps = {
3898
3681
  className?: string;
3899
- style?: React__default.CSSProperties;
3900
3682
  children: React__default.ReactNode;
3901
3683
  role?: string;
3902
3684
  'aria-label'?: string;
@@ -3905,14 +3687,12 @@ type ImpersonateSectionProps = {
3905
3687
  } & React__default.RefAttributes<HTMLDivElement>;
3906
3688
  type ImpersonateTitleProps = {
3907
3689
  className?: string;
3908
- style?: React__default.CSSProperties;
3909
3690
  children: React__default.ReactNode;
3910
3691
  impersonateData: ImpersonateSectionData;
3911
3692
  selectionsData: ConnectorsSelectionsData;
3912
3693
  } & React__default.RefAttributes<HTMLParagraphElement>;
3913
3694
  type EmptyStateProps = {
3914
3695
  className?: string;
3915
- style?: React__default.CSSProperties;
3916
3696
  children: React__default.ReactNode;
3917
3697
  role?: string;
3918
3698
  'aria-live'?: 'polite' | 'assertive' | 'off';
@@ -3921,7 +3701,6 @@ type EmptyStateProps = {
3921
3701
  } & React__default.RefAttributes<HTMLDivElement>;
3922
3702
  type DisclaimerSectionProps = {
3923
3703
  className?: string;
3924
- style?: React__default.CSSProperties;
3925
3704
  children: React__default.ReactNode;
3926
3705
  selectionsData: ConnectorsSelectionsData;
3927
3706
  } & React__default.RefAttributes<HTMLDivElement>;
@@ -3979,39 +3758,6 @@ type ConnectorsSelectionsCustomization = {
3979
3758
  selectionsData: ConnectorsSelectionsData;
3980
3759
  }) => string;
3981
3760
  };
3982
- /** Custom style generators */
3983
- styles?: {
3984
- /** Function to generate container styles */
3985
- container?: (params: {
3986
- selectionsData: ConnectorsSelectionsData;
3987
- }) => React__default.CSSProperties;
3988
- /** Function to generate content wrapper styles */
3989
- contentWrapper?: (params: {
3990
- selectionsData: ConnectorsSelectionsData;
3991
- }) => React__default.CSSProperties;
3992
- /** Function to generate connectors area styles */
3993
- connectorsArea?: (params: {
3994
- selectionsData: ConnectorsSelectionsData;
3995
- }) => React__default.CSSProperties;
3996
- /** Function to generate impersonate section styles */
3997
- impersonateSection?: (params: {
3998
- impersonateData: ImpersonateSectionData;
3999
- selectionsData: ConnectorsSelectionsData;
4000
- }) => React__default.CSSProperties;
4001
- /** Function to generate impersonate title styles */
4002
- impersonateTitle?: (params: {
4003
- impersonateData: ImpersonateSectionData;
4004
- selectionsData: ConnectorsSelectionsData;
4005
- }) => React__default.CSSProperties;
4006
- /** Function to generate empty state styles */
4007
- emptyState?: (params: {
4008
- selectionsData: ConnectorsSelectionsData;
4009
- }) => React__default.CSSProperties;
4010
- /** Function to generate disclaimer section styles */
4011
- disclaimerSection?: (params: {
4012
- selectionsData: ConnectorsSelectionsData;
4013
- }) => React__default.CSSProperties;
4014
- };
4015
3761
  /** Custom event handlers */
4016
3762
  handlers?: {
4017
3763
  /** Custom impersonate click handler */
@@ -4233,7 +3979,6 @@ interface WalletIconConfig {
4233
3979
  }
4234
3980
  type ContainerProps$6 = {
4235
3981
  className?: string;
4236
- style?: React__default.CSSProperties;
4237
3982
  children: React__default.ReactNode;
4238
3983
  role?: string;
4239
3984
  'aria-label'?: string;
@@ -4241,25 +3986,21 @@ type ContainerProps$6 = {
4241
3986
  } & React__default.RefAttributes<HTMLElement>;
4242
3987
  type AnimationSectionProps = {
4243
3988
  className?: string;
4244
- style?: React__default.CSSProperties;
4245
3989
  children: React__default.ReactNode;
4246
3990
  role?: string;
4247
3991
  'aria-label'?: string;
4248
3992
  };
4249
3993
  type StarsBackgroundProps = {
4250
3994
  className?: string;
4251
- style?: React__default.CSSProperties;
4252
3995
  show: boolean;
4253
3996
  'aria-hidden'?: boolean;
4254
3997
  };
4255
3998
  type GradientOverlayProps = {
4256
3999
  className?: string;
4257
- style?: React__default.CSSProperties;
4258
4000
  'aria-hidden'?: boolean;
4259
4001
  };
4260
4002
  type AnimationWrapperProps = {
4261
4003
  className?: string;
4262
- style?: React__default.CSSProperties;
4263
4004
  children: React__default.ReactNode;
4264
4005
  role?: string;
4265
4006
  'aria-label'?: string;
@@ -4271,30 +4012,25 @@ type WalletIconProps = {
4271
4012
  config: WalletIconConfig;
4272
4013
  enableAnimations: boolean;
4273
4014
  className?: string;
4274
- style?: React__default.CSSProperties;
4275
4015
  };
4276
4016
  type ContentSectionProps$1 = {
4277
4017
  className?: string;
4278
- style?: React__default.CSSProperties;
4279
4018
  children: React__default.ReactNode;
4280
4019
  role?: string;
4281
4020
  };
4282
4021
  type TitleProps$3 = {
4283
4022
  className?: string;
4284
- style?: React__default.CSSProperties;
4285
4023
  children: React__default.ReactNode;
4286
4024
  role?: string;
4287
4025
  'aria-level'?: number;
4288
4026
  };
4289
4027
  type DescriptionProps$1 = {
4290
4028
  className?: string;
4291
- style?: React__default.CSSProperties;
4292
4029
  children: React__default.ReactNode;
4293
4030
  role?: string;
4294
4031
  };
4295
4032
  type ScreenReaderProps = {
4296
4033
  className?: string;
4297
- style?: React__default.CSSProperties;
4298
4034
  children: React__default.ReactNode;
4299
4035
  };
4300
4036
  /**
@@ -4358,40 +4094,6 @@ type GetWalletCustomization = {
4358
4094
  /** Function to generate screen reader classes */
4359
4095
  screenReader?: () => string;
4360
4096
  };
4361
- /** Custom style generators */
4362
- styles?: {
4363
- /** Function to generate container styles */
4364
- container?: (params: {
4365
- compact: boolean;
4366
- }) => React__default.CSSProperties;
4367
- /** Function to generate animation section styles */
4368
- animationSection?: (params: {
4369
- compact: boolean;
4370
- }) => React__default.CSSProperties;
4371
- /** Function to generate stars background styles */
4372
- starsBackground?: () => React__default.CSSProperties;
4373
- /** Function to generate gradient overlay styles */
4374
- gradientOverlay?: () => React__default.CSSProperties;
4375
- /** Function to generate animation wrapper styles */
4376
- animationWrapper?: () => React__default.CSSProperties;
4377
- /** Function to generate wallet icon styles */
4378
- walletIcon?: (params: {
4379
- config: WalletIconConfig;
4380
- enableAnimations: boolean;
4381
- }) => React__default.CSSProperties;
4382
- /** Function to generate content section styles */
4383
- contentSection?: (params: {
4384
- compact: boolean;
4385
- }) => React__default.CSSProperties;
4386
- /** Function to generate title styles */
4387
- title?: (params: {
4388
- compact: boolean;
4389
- }) => React__default.CSSProperties;
4390
- /** Function to generate description styles */
4391
- description?: () => React__default.CSSProperties;
4392
- /** Function to generate screen reader styles */
4393
- screenReader?: () => React__default.CSSProperties;
4394
- };
4395
4097
  /** Custom event handlers */
4396
4098
  handlers?: {
4397
4099
  /** Custom handler for component mount */
@@ -4514,18 +4216,15 @@ interface ValidationConfig {
4514
4216
  }
4515
4217
  type ContainerProps$5 = {
4516
4218
  className?: string;
4517
- style?: React__default.CSSProperties;
4518
4219
  children: React__default.ReactNode;
4519
4220
  } & React__default.RefAttributes<HTMLDivElement>;
4520
4221
  type LabelProps = {
4521
4222
  className?: string;
4522
- style?: React__default.CSSProperties;
4523
4223
  children: React__default.ReactNode;
4524
4224
  htmlFor?: string;
4525
4225
  } & React__default.RefAttributes<HTMLLabelElement>;
4526
4226
  type InputProps = {
4527
4227
  className?: string;
4528
- style?: React__default.CSSProperties;
4529
4228
  id?: string;
4530
4229
  type?: string;
4531
4230
  value: string;
@@ -4540,7 +4239,6 @@ type InputProps = {
4540
4239
  } & React__default.RefAttributes<HTMLInputElement>;
4541
4240
  type ErrorMessageProps$1 = {
4542
4241
  className?: string;
4543
- style?: React__default.CSSProperties;
4544
4242
  children: React__default.ReactNode;
4545
4243
  id?: string;
4546
4244
  role?: string;
@@ -4575,20 +4273,6 @@ type ImpersonateFormCustomization = {
4575
4273
  /** Function to generate error message classes */
4576
4274
  errorMessage?: () => string;
4577
4275
  };
4578
- /** Custom style generators */
4579
- styles?: {
4580
- /** Function to generate container styles */
4581
- container?: () => React__default.CSSProperties;
4582
- /** Function to generate label styles */
4583
- label?: () => React__default.CSSProperties;
4584
- /** Function to generate input styles */
4585
- input?: (params: {
4586
- hasError: boolean;
4587
- hasInteracted: boolean;
4588
- }) => React__default.CSSProperties;
4589
- /** Function to generate error message styles */
4590
- errorMessage?: () => React__default.CSSProperties;
4591
- };
4592
4276
  /** Custom event handlers */
4593
4277
  handlers?: {
4594
4278
  /** Custom handler for input change (called after default logic) */
@@ -4726,7 +4410,6 @@ declare const ImpersonateForm: React__default.ForwardRefExoticComponent<Imperson
4726
4410
  type ButtonAction = string | (() => void);
4727
4411
  type ContainerProps$4 = {
4728
4412
  className?: string;
4729
- style?: React__default.CSSProperties;
4730
4413
  children: React__default.ReactNode;
4731
4414
  role?: string;
4732
4415
  'aria-label'?: string;
@@ -4736,7 +4419,6 @@ type ContainerProps$4 = {
4736
4419
  } & React__default.RefAttributes<HTMLDivElement>;
4737
4420
  type ContentSectionProps = {
4738
4421
  className?: string;
4739
- style?: React__default.CSSProperties;
4740
4422
  children: React__default.ReactNode;
4741
4423
  role?: string;
4742
4424
  'aria-labelledby'?: string;
@@ -4744,7 +4426,6 @@ type ContentSectionProps = {
4744
4426
  type TitleProps$2 = {
4745
4427
  id: string;
4746
4428
  className?: string;
4747
- style?: React__default.CSSProperties;
4748
4429
  children: React__default.ReactNode;
4749
4430
  role?: string;
4750
4431
  'aria-level'?: number;
@@ -4752,20 +4433,17 @@ type TitleProps$2 = {
4752
4433
  type DescriptionProps = {
4753
4434
  id: string;
4754
4435
  className?: string;
4755
- style?: React__default.CSSProperties;
4756
4436
  children: React__default.ReactNode;
4757
4437
  role?: string;
4758
4438
  };
4759
4439
  type AdditionalContentProps = {
4760
4440
  className?: string;
4761
- style?: React__default.CSSProperties;
4762
4441
  children: React__default.ReactNode;
4763
4442
  role?: string;
4764
4443
  'aria-label'?: string;
4765
4444
  };
4766
4445
  type ActionsProps = {
4767
4446
  className?: string;
4768
- style?: React__default.CSSProperties;
4769
4447
  children: React__default.ReactNode;
4770
4448
  role?: string;
4771
4449
  'aria-label'?: string;
@@ -4776,11 +4454,9 @@ type ButtonProps$1 = {
4776
4454
  'aria-label'?: string;
4777
4455
  className?: string;
4778
4456
  'data-testid'?: string;
4779
- style?: React__default.CSSProperties;
4780
4457
  };
4781
4458
  type StatusProps = {
4782
4459
  className?: string;
4783
- style?: React__default.CSSProperties;
4784
4460
  children?: React__default.ReactNode;
4785
4461
  'aria-live'?: 'polite' | 'assertive' | 'off';
4786
4462
  'aria-atomic'?: boolean;
@@ -4839,34 +4515,6 @@ type DisclaimerCustomization = {
4839
4515
  /** Function to generate status classes */
4840
4516
  status?: () => string;
4841
4517
  };
4842
- /** Custom style generators */
4843
- styles?: {
4844
- /** Function to generate container styles */
4845
- container?: (params: {
4846
- compact: boolean;
4847
- }) => React__default.CSSProperties;
4848
- /** Function to generate content section styles */
4849
- contentSection?: (params: {
4850
- compact: boolean;
4851
- }) => React__default.CSSProperties;
4852
- /** Function to generate title styles */
4853
- title?: (params: {
4854
- compact: boolean;
4855
- }) => React__default.CSSProperties;
4856
- /** Function to generate description styles */
4857
- description?: () => React__default.CSSProperties;
4858
- /** Function to generate additional content styles */
4859
- additionalContent?: () => React__default.CSSProperties;
4860
- /** Function to generate actions styles */
4861
- actions?: () => React__default.CSSProperties;
4862
- /** Function to generate button styles */
4863
- button?: (params: {
4864
- isLink: boolean;
4865
- isPrimary: boolean;
4866
- }) => React__default.CSSProperties;
4867
- /** Function to generate status styles */
4868
- status?: () => React__default.CSSProperties;
4869
- };
4870
4518
  /** Custom event handlers */
4871
4519
  handlers?: {
4872
4520
  /** Custom handler for primary button action */
@@ -5009,7 +4657,6 @@ interface NetworkSelectionsData {
5009
4657
  }
5010
4658
  type ContainerProps$3 = {
5011
4659
  className?: string;
5012
- style?: React__default.CSSProperties;
5013
4660
  children: React__default.ReactNode;
5014
4661
  role?: string;
5015
4662
  'aria-labelledby'?: string;
@@ -5017,7 +4664,6 @@ type ContainerProps$3 = {
5017
4664
  } & React__default.RefAttributes<HTMLDivElement>;
5018
4665
  type TitleProps$1 = {
5019
4666
  className?: string;
5020
- style?: React__default.CSSProperties;
5021
4667
  children: React__default.ReactNode;
5022
4668
  id?: string;
5023
4669
  role?: string;
@@ -5026,7 +4672,6 @@ type TitleProps$1 = {
5026
4672
  } & React__default.RefAttributes<HTMLHeadingElement>;
5027
4673
  type NetworkListProps = {
5028
4674
  className?: string;
5029
- style?: React__default.CSSProperties;
5030
4675
  children: React__default.ReactNode;
5031
4676
  role?: string;
5032
4677
  'aria-label'?: string;
@@ -5034,7 +4679,6 @@ type NetworkListProps = {
5034
4679
  } & React__default.RefAttributes<HTMLDivElement>;
5035
4680
  type NetworkItemProps = {
5036
4681
  className?: string;
5037
- style?: React__default.CSSProperties;
5038
4682
  children: React__default.ReactNode;
5039
4683
  role?: string;
5040
4684
  networkData: NetworkData;
@@ -5042,7 +4686,6 @@ type NetworkItemProps = {
5042
4686
  } & React__default.RefAttributes<HTMLDivElement>;
5043
4687
  type NetworkIconProps = {
5044
4688
  className?: string;
5045
- style?: React__default.CSSProperties;
5046
4689
  children: React__default.ReactNode;
5047
4690
  role?: string;
5048
4691
  'aria-label'?: string;
@@ -5051,7 +4694,6 @@ type NetworkIconProps = {
5051
4694
  } & React__default.RefAttributes<HTMLDivElement>;
5052
4695
  type ErrorContainerProps = {
5053
4696
  className?: string;
5054
- style?: React__default.CSSProperties;
5055
4697
  children: React__default.ReactNode;
5056
4698
  role?: string;
5057
4699
  'aria-live'?: 'polite' | 'assertive';
@@ -5059,14 +4701,12 @@ type ErrorContainerProps = {
5059
4701
  } & React__default.RefAttributes<HTMLDivElement>;
5060
4702
  type ErrorIconProps = {
5061
4703
  className?: string;
5062
- style?: React__default.CSSProperties;
5063
4704
  children: React__default.ReactNode;
5064
4705
  'aria-hidden'?: boolean;
5065
4706
  selectionsData: NetworkSelectionsData;
5066
4707
  } & React__default.RefAttributes<HTMLDivElement>;
5067
4708
  type ErrorTitleProps = {
5068
4709
  className?: string;
5069
- style?: React__default.CSSProperties;
5070
4710
  children: React__default.ReactNode;
5071
4711
  role?: string;
5072
4712
  'aria-level'?: number;
@@ -5074,7 +4714,6 @@ type ErrorTitleProps = {
5074
4714
  } & React__default.RefAttributes<HTMLHeadingElement>;
5075
4715
  type ErrorMessageProps = {
5076
4716
  className?: string;
5077
- style?: React__default.CSSProperties;
5078
4717
  children: React__default.ReactNode;
5079
4718
  role?: string;
5080
4719
  selectionsData: NetworkSelectionsData;
@@ -5145,47 +4784,6 @@ type NetworkSelectionsCustomization = {
5145
4784
  selectionsData: NetworkSelectionsData;
5146
4785
  }) => string;
5147
4786
  };
5148
- /** Custom style generators */
5149
- styles?: {
5150
- /** Function to generate container styles */
5151
- container?: (params: {
5152
- selectionsData: NetworkSelectionsData;
5153
- }) => React__default.CSSProperties;
5154
- /** Function to generate title styles */
5155
- title?: (params: {
5156
- selectionsData: NetworkSelectionsData;
5157
- }) => React__default.CSSProperties;
5158
- /** Function to generate network list styles */
5159
- networkList?: (params: {
5160
- selectionsData: NetworkSelectionsData;
5161
- }) => React__default.CSSProperties;
5162
- /** Function to generate network item styles */
5163
- networkItem?: (params: {
5164
- networkData: NetworkData;
5165
- selectionsData: NetworkSelectionsData;
5166
- }) => React__default.CSSProperties;
5167
- /** Function to generate network icon styles */
5168
- networkIcon?: (params: {
5169
- networkData: NetworkData;
5170
- selectionsData: NetworkSelectionsData;
5171
- }) => React__default.CSSProperties;
5172
- /** Function to generate error container styles */
5173
- errorContainer?: (params: {
5174
- selectionsData: NetworkSelectionsData;
5175
- }) => React__default.CSSProperties;
5176
- /** Function to generate error icon styles */
5177
- errorIcon?: (params: {
5178
- selectionsData: NetworkSelectionsData;
5179
- }) => React__default.CSSProperties;
5180
- /** Function to generate error title styles */
5181
- errorTitle?: (params: {
5182
- selectionsData: NetworkSelectionsData;
5183
- }) => React__default.CSSProperties;
5184
- /** Function to generate error message styles */
5185
- errorMessage?: (params: {
5186
- selectionsData: NetworkSelectionsData;
5187
- }) => React__default.CSSProperties;
5188
- };
5189
4787
  /** Custom event handlers */
5190
4788
  handlers?: {
5191
4789
  /** Custom network click handler */
@@ -6040,25 +5638,21 @@ interface NetworkTabData {
6040
5638
  }
6041
5639
  type ContainerProps$2 = {
6042
5640
  className?: string;
6043
- style?: React__default.CSSProperties;
6044
5641
  children: React__default.ReactNode;
6045
5642
  role?: string;
6046
5643
  'aria-label'?: string;
6047
5644
  } & React__default.RefAttributes<HTMLDivElement>;
6048
5645
  type TabListProps = {
6049
5646
  className?: string;
6050
- style?: React__default.CSSProperties;
6051
5647
  children: React__default.ReactNode;
6052
5648
  } & React__default.RefAttributes<HTMLDivElement>;
6053
5649
  type TabProps = {
6054
5650
  className?: string;
6055
- style?: React__default.CSSProperties;
6056
5651
  children: React__default.ReactNode;
6057
5652
  'data-network': string;
6058
5653
  } & React__default.RefAttributes<HTMLDivElement>;
6059
5654
  type TabButtonProps = {
6060
5655
  className?: string;
6061
- style?: React__default.CSSProperties;
6062
5656
  children: React__default.ReactNode;
6063
5657
  type?: 'button';
6064
5658
  role?: string;
@@ -6073,7 +5667,6 @@ type TabButtonProps = {
6073
5667
  } & React__default.RefAttributes<HTMLButtonElement>;
6074
5668
  type IconContainerProps = {
6075
5669
  className?: string;
6076
- style?: React__default.CSSProperties;
6077
5670
  children: React__default.ReactNode;
6078
5671
  role?: string;
6079
5672
  'aria-label'?: string;
@@ -6081,7 +5674,6 @@ type IconContainerProps = {
6081
5674
  } & React__default.RefAttributes<HTMLDivElement>;
6082
5675
  type TabTextProps = {
6083
5676
  className?: string;
6084
- style?: React__default.CSSProperties;
6085
5677
  children: React__default.ReactNode;
6086
5678
  variants?: Variants;
6087
5679
  animate?: string;
@@ -6090,7 +5682,6 @@ type TabTextProps = {
6090
5682
  } & React__default.RefAttributes<HTMLSpanElement>;
6091
5683
  type IndicatorProps = {
6092
5684
  className?: string;
6093
- style?: React__default.CSSProperties;
6094
5685
  'aria-hidden'?: boolean;
6095
5686
  tabData: NetworkTabData;
6096
5687
  } & React__default.RefAttributes<HTMLDivElement>;
@@ -6145,36 +5736,6 @@ type NetworkTabsCustomization = {
6145
5736
  tabData: NetworkTabData;
6146
5737
  }) => string;
6147
5738
  };
6148
- /** Custom style generators */
6149
- styles?: {
6150
- /** Function to generate container styles */
6151
- container?: () => React__default.CSSProperties;
6152
- /** Function to generate tab list styles */
6153
- tabList?: () => React__default.CSSProperties;
6154
- /** Function to generate tab styles */
6155
- tab?: (params: {
6156
- isSelected: boolean;
6157
- index: number;
6158
- }) => React__default.CSSProperties;
6159
- /** Function to generate tab button styles */
6160
- tabButton?: (params: {
6161
- isSelected: boolean;
6162
- tabData: NetworkTabData;
6163
- }) => React__default.CSSProperties;
6164
- /** Function to generate icon container styles */
6165
- iconContainer?: (params: {
6166
- tabData: NetworkTabData;
6167
- }) => React__default.CSSProperties;
6168
- /** Function to generate tab text styles */
6169
- tabText?: (params: {
6170
- isSelected: boolean;
6171
- tabData: NetworkTabData;
6172
- }) => React__default.CSSProperties;
6173
- /** Function to generate indicator styles */
6174
- indicator?: (params: {
6175
- tabData: NetworkTabData;
6176
- }) => React__default.CSSProperties;
6177
- };
6178
5739
  /** Custom event handlers */
6179
5740
  handlers?: {
6180
5741
  /** Custom handler for tab selection (called after default logic) */
@@ -6369,39 +5930,33 @@ interface BottomButtonConfig {
6369
5930
  }
6370
5931
  type ModalContainerProps = {
6371
5932
  className?: string;
6372
- style?: React__default.CSSProperties;
6373
5933
  children: React__default.ReactNode;
6374
5934
  modalData: ConnectModalData;
6375
5935
  } & React__default.RefAttributes<HTMLDivElement>;
6376
5936
  type ModalHeaderProps = {
6377
5937
  className?: string;
6378
- style?: React__default.CSSProperties;
6379
5938
  children: React__default.ReactNode;
6380
5939
  modalData: ConnectModalData;
6381
5940
  } & React__default.RefAttributes<HTMLDivElement>;
6382
5941
  type InfoButtonProps = {
6383
5942
  className?: string;
6384
- style?: React__default.CSSProperties;
6385
5943
  onClick: () => void;
6386
5944
  'aria-label'?: string;
6387
5945
  modalData: ConnectModalData;
6388
5946
  } & React__default.RefAttributes<HTMLButtonElement>;
6389
5947
  type TitleProps = {
6390
5948
  className?: string;
6391
- style?: React__default.CSSProperties;
6392
5949
  children: React__default.ReactNode;
6393
5950
  modalData: ConnectModalData;
6394
5951
  } & React__default.RefAttributes<HTMLDivElement>;
6395
5952
  type CloseButtonProps = {
6396
5953
  className?: string;
6397
- style?: React__default.CSSProperties;
6398
5954
  onClick: () => void;
6399
5955
  'aria-label'?: string;
6400
5956
  modalData: ConnectModalData;
6401
5957
  } & React__default.RefAttributes<HTMLButtonElement>;
6402
5958
  type MainContentProps = {
6403
5959
  className?: string;
6404
- style?: React__default.CSSProperties;
6405
5960
  children: React__default.ReactNode;
6406
5961
  role?: string;
6407
5962
  id?: string;
@@ -6409,14 +5964,12 @@ type MainContentProps = {
6409
5964
  } & React__default.RefAttributes<HTMLDivElement>;
6410
5965
  type FooterProps = {
6411
5966
  className?: string;
6412
- style?: React__default.CSSProperties;
6413
5967
  children: React__default.ReactNode;
6414
5968
  role?: string;
6415
5969
  modalData: ConnectModalData;
6416
5970
  } & React__default.RefAttributes<HTMLDivElement>;
6417
5971
  type BackButtonProps = {
6418
5972
  className?: string;
6419
- style?: React__default.CSSProperties;
6420
5973
  onClick: () => void;
6421
5974
  'aria-label'?: string;
6422
5975
  children: React__default.ReactNode;
@@ -6424,7 +5977,6 @@ type BackButtonProps = {
6424
5977
  } & React__default.RefAttributes<HTMLButtonElement>;
6425
5978
  type ActionButtonProps = {
6426
5979
  className?: string;
6427
- style?: React__default.CSSProperties;
6428
5980
  onClick: () => void | Promise<void>;
6429
5981
  'aria-describedby'?: string;
6430
5982
  children: React__default.ReactNode;
@@ -6436,10 +5988,14 @@ type ActionButtonProps = {
6436
5988
  type ActionDescriptionProps = {
6437
5989
  id?: string;
6438
5990
  className?: string;
6439
- style?: React__default.CSSProperties;
6440
5991
  children: React__default.ReactNode;
6441
5992
  modalData: ConnectModalData;
6442
5993
  } & React__default.RefAttributes<HTMLSpanElement>;
5994
+ type ModalEmptyProps = {
5995
+ className?: string;
5996
+ children: React__default.ReactNode;
5997
+ modalData: ConnectModalData;
5998
+ } & React__default.RefAttributes<HTMLDivElement>;
6443
5999
  /**
6444
6000
  * Customization options for ConnectModal component
6445
6001
  */
@@ -6472,6 +6028,8 @@ type ConnectModalCustomization = {
6472
6028
  DialogContent?: ComponentType<ComponentPropsWithoutRef<typeof DialogContent>>;
6473
6029
  /** Custom motion wrapper */
6474
6030
  MotionDiv?: ComponentType<ComponentPropsWithoutRef<typeof motion.div>>;
6031
+ /** Custom empty state */
6032
+ EmptyState?: ComponentType<ModalEmptyProps>;
6475
6033
  };
6476
6034
  /** Custom class name generators */
6477
6035
  classNames?: {
@@ -6516,50 +6074,10 @@ type ConnectModalCustomization = {
6516
6074
  actionDescription?: (params: {
6517
6075
  modalData: ConnectModalData;
6518
6076
  }) => string;
6519
- };
6520
- /** Custom style generators */
6521
- styles?: {
6522
- /** Function to generate modal container styles */
6523
- modalContainer?: (params: {
6524
- modalData: ConnectModalData;
6525
- }) => React__default.CSSProperties;
6526
- /** Function to generate header styles */
6527
- header?: (params: {
6528
- modalData: ConnectModalData;
6529
- }) => React__default.CSSProperties;
6530
- /** Function to generate info button styles */
6531
- infoButton?: (params: {
6532
- modalData: ConnectModalData;
6533
- }) => React__default.CSSProperties;
6534
- /** Function to generate title styles */
6535
- title?: (params: {
6536
- modalData: ConnectModalData;
6537
- }) => React__default.CSSProperties;
6538
- /** Function to generate close button styles */
6539
- closeButton?: (params: {
6540
- modalData: ConnectModalData;
6541
- }) => React__default.CSSProperties;
6542
- /** Function to generate main content styles */
6543
- mainContent?: (params: {
6544
- modalData: ConnectModalData;
6545
- }) => React__default.CSSProperties;
6546
- /** Function to generate footer styles */
6547
- footer?: (params: {
6548
- modalData: ConnectModalData;
6549
- }) => React__default.CSSProperties;
6550
- /** Function to generate back button styles */
6551
- backButton?: (params: {
6552
- modalData: ConnectModalData;
6553
- }) => React__default.CSSProperties;
6554
- /** Function to generate action button styles */
6555
- actionButton?: (params: {
6556
- modalData: ConnectModalData;
6557
- buttonConfig: BottomButtonConfig;
6558
- }) => React__default.CSSProperties;
6559
- /** Function to generate action description styles */
6560
- actionDescription?: (params: {
6077
+ /** Function to generate action description classes */
6078
+ emptyConnectors?: (params: {
6561
6079
  modalData: ConnectModalData;
6562
- }) => React__default.CSSProperties;
6080
+ }) => string;
6563
6081
  };
6564
6082
  /** Custom event handlers */
6565
6083
  handlers?: {
@@ -7360,6 +6878,8 @@ interface SelectContentAnimatedProps extends ComponentPropsWithoutRef<typeof Sel
7360
6878
  'aria-label'?: string;
7361
6879
  /** Whether the select content should have reduced motion for accessibility */
7362
6880
  reduceMotion?: boolean;
6881
+ /** Maximum height for the content in pixels */
6882
+ maxHeight?: number;
7363
6883
  /** Custom animation duration in seconds */
7364
6884
  animationDuration?: number;
7365
6885
  /** Whether to show scroll buttons */
@@ -7429,7 +6949,7 @@ interface SelectContentAnimatedProps extends ComponentPropsWithoutRef<typeof Sel
7429
6949
  * </SelectContentAnimated>
7430
6950
  * ```
7431
6951
  */
7432
- declare const SelectContentAnimated: React$1.ForwardRefExoticComponent<SelectContentAnimatedProps & React$1.RefAttributes<HTMLDivElement>>;
6952
+ declare const SelectContentAnimated: React$1.ForwardRefExoticComponent<SelectContentAnimatedProps & React$1.RefAttributes<Omit<HTMLDivElement, "style">>>;
7433
6953
 
7434
6954
  /**
7435
6955
  * Context for the chain selection trigger button.
@@ -8200,25 +7720,21 @@ interface BadgeGradientConfig {
8200
7720
  }
8201
7721
  type ContainerProps = {
8202
7722
  className?: string;
8203
- style?: React__default.CSSProperties;
8204
7723
  children: React__default.ReactNode;
8205
7724
  role?: string;
8206
7725
  'aria-label'?: string;
8207
7726
  } & React__default.RefAttributes<HTMLSpanElement>;
8208
7727
  type AnimatedGradientProps = {
8209
7728
  className?: string;
8210
- style?: React__default.CSSProperties;
8211
7729
  animated: boolean;
8212
7730
  animationConfig: BadgeAnimationConfig;
8213
7731
  gradientConfig: BadgeGradientConfig;
8214
7732
  };
8215
7733
  type BackgroundOverlayProps = {
8216
7734
  className?: string;
8217
- style?: React__default.CSSProperties;
8218
7735
  };
8219
7736
  type ContentProps = {
8220
7737
  className?: string;
8221
- style?: React__default.CSSProperties;
8222
7738
  children: React__default.ReactNode;
8223
7739
  };
8224
7740
  /**
@@ -8250,22 +7766,6 @@ type RecentBadgeCustomization = {
8250
7766
  /** Function to generate content classes */
8251
7767
  content?: () => string;
8252
7768
  };
8253
- /** Custom style generators */
8254
- styles?: {
8255
- /** Function to generate container styles */
8256
- container?: (params: {
8257
- isTouch: boolean;
8258
- animated: boolean;
8259
- }) => React__default.CSSProperties;
8260
- /** Function to generate animated gradient styles */
8261
- animatedGradient?: (params: {
8262
- gradientConfig: BadgeGradientConfig;
8263
- }) => React__default.CSSProperties;
8264
- /** Function to generate background overlay styles */
8265
- backgroundOverlay?: () => React__default.CSSProperties;
8266
- /** Function to generate content styles */
8267
- content?: () => React__default.CSSProperties;
8268
- };
8269
7769
  /** Custom event handlers */
8270
7770
  handlers?: {
8271
7771
  /** Custom handler for animation start */