@deframe-sdk/components 0.1.49 → 0.1.51
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +167 -17
- package/dist/index.d.ts +167 -17
- package/dist/index.js +189 -149
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +189 -149
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +18 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -675,6 +675,8 @@ interface KYCPageHeaderProps {
|
|
|
675
675
|
onBack?: () => void;
|
|
676
676
|
onClose?: () => void;
|
|
677
677
|
className?: string;
|
|
678
|
+
backLabel?: string;
|
|
679
|
+
closeLabel?: string;
|
|
678
680
|
}
|
|
679
681
|
interface KYCPageSectionProps {
|
|
680
682
|
title: React__default.ReactNode;
|
|
@@ -682,6 +684,7 @@ interface KYCPageSectionProps {
|
|
|
682
684
|
className?: string;
|
|
683
685
|
}
|
|
684
686
|
type KYCBannerVariant = 'info' | 'success' | 'warning' | 'error';
|
|
687
|
+
type KYCVisualVariant = 'default' | 'compact';
|
|
685
688
|
interface KYCMessageBannerProps {
|
|
686
689
|
variant?: KYCBannerVariant;
|
|
687
690
|
children: React__default.ReactNode;
|
|
@@ -720,6 +723,8 @@ interface KYCChecklistItemData {
|
|
|
720
723
|
interface KYCIntroPageProps {
|
|
721
724
|
screenId?: string;
|
|
722
725
|
onClose?: () => void;
|
|
726
|
+
backLabel?: string;
|
|
727
|
+
closeLabel?: string;
|
|
723
728
|
title?: React__default.ReactNode;
|
|
724
729
|
description?: React__default.ReactNode;
|
|
725
730
|
checklistItems?: KYCChecklistItemData[];
|
|
@@ -728,11 +733,14 @@ interface KYCIntroPageProps {
|
|
|
728
733
|
primaryAction?: KYCAction;
|
|
729
734
|
className?: string;
|
|
730
735
|
containerMode?: 'fullscreen' | 'embedded';
|
|
736
|
+
visualVariant?: KYCVisualVariant;
|
|
731
737
|
}
|
|
732
738
|
interface KYCFormPageProps {
|
|
733
739
|
screenId?: string;
|
|
734
740
|
onBack?: () => void;
|
|
735
741
|
onClose?: () => void;
|
|
742
|
+
backLabel?: string;
|
|
743
|
+
closeLabel?: string;
|
|
736
744
|
step?: number;
|
|
737
745
|
totalSteps?: number;
|
|
738
746
|
title: React__default.ReactNode;
|
|
@@ -747,11 +755,15 @@ interface KYCFormPageProps {
|
|
|
747
755
|
interface KYCLoadingPageProps {
|
|
748
756
|
screenId?: string;
|
|
749
757
|
onClose?: () => void;
|
|
758
|
+
backLabel?: string;
|
|
759
|
+
closeLabel?: string;
|
|
760
|
+
loadingLabel?: string;
|
|
750
761
|
title: React__default.ReactNode;
|
|
751
762
|
description?: React__default.ReactNode;
|
|
752
763
|
note?: React__default.ReactNode;
|
|
753
764
|
className?: string;
|
|
754
765
|
containerMode?: 'fullscreen' | 'embedded';
|
|
766
|
+
visualVariant?: KYCVisualVariant;
|
|
755
767
|
}
|
|
756
768
|
interface KYCReviewCard extends Omit<KYCDataCardProps, 'fields'> {
|
|
757
769
|
fields: KYCDataField[];
|
|
@@ -761,6 +773,8 @@ interface KYCReviewPageProps {
|
|
|
761
773
|
onClose?: () => void;
|
|
762
774
|
step?: number;
|
|
763
775
|
totalSteps?: number;
|
|
776
|
+
backLabel?: string;
|
|
777
|
+
closeLabel?: string;
|
|
764
778
|
title: React__default.ReactNode;
|
|
765
779
|
description?: React__default.ReactNode;
|
|
766
780
|
cards: KYCReviewCard[];
|
|
@@ -775,6 +789,8 @@ interface KYCReviewPageSkeletonProps {
|
|
|
775
789
|
step?: number;
|
|
776
790
|
totalSteps?: number;
|
|
777
791
|
containerMode?: 'fullscreen' | 'embedded';
|
|
792
|
+
backLabel?: string;
|
|
793
|
+
closeLabel?: string;
|
|
778
794
|
}
|
|
779
795
|
interface KYCStatusItem {
|
|
780
796
|
icon?: React__default.ReactNode;
|
|
@@ -789,6 +805,8 @@ interface KYCStatusItemCardProps extends KYCStatusItem {
|
|
|
789
805
|
interface KYCStatusPageProps {
|
|
790
806
|
screenId?: string;
|
|
791
807
|
onClose?: () => void;
|
|
808
|
+
backLabel?: string;
|
|
809
|
+
closeLabel?: string;
|
|
792
810
|
status?: KYCPanelStatus;
|
|
793
811
|
panelStatus?: KYCPanelStatus;
|
|
794
812
|
panelTitle?: React__default.ReactNode;
|
|
@@ -811,6 +829,8 @@ interface BaseFormScreenProps {
|
|
|
811
829
|
banners?: KYCMessageBannerProps[];
|
|
812
830
|
actions?: KYCAction[];
|
|
813
831
|
containerMode?: KYCPageShellProps['containerMode'];
|
|
832
|
+
backLabel?: string;
|
|
833
|
+
closeLabel?: string;
|
|
814
834
|
}
|
|
815
835
|
interface KYCBasicDataPageProps extends BaseFormScreenProps {
|
|
816
836
|
title?: React__default.ReactNode;
|
|
@@ -890,7 +910,7 @@ declare function KYCFieldMessage({ tone, children, className, testId, }: KYCFiel
|
|
|
890
910
|
|
|
891
911
|
declare function KYCMessageBanner({ variant, children, className, testId, }: KYCMessageBannerProps): react_jsx_runtime.JSX.Element;
|
|
892
912
|
|
|
893
|
-
declare function KYCPageHeader({ step, totalSteps, onBack, onClose, className, }: KYCPageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
913
|
+
declare function KYCPageHeader({ step, totalSteps, onBack, onClose, className, backLabel, closeLabel, }: KYCPageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
894
914
|
|
|
895
915
|
declare function KYCPageSection({ title, description, className }: KYCPageSectionProps): react_jsx_runtime.JSX.Element;
|
|
896
916
|
|
|
@@ -898,7 +918,7 @@ declare function KYCPageShell({ children, className, screenId, containerMode }:
|
|
|
898
918
|
|
|
899
919
|
declare function KYCStepIndicator({ total, current, className }: KYCStepIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
900
920
|
|
|
901
|
-
declare function KYCAddressPage({ screenId, onBack, onClose, step, totalSteps, title, description, cepField, streetField, cityField, stateField, complementField, countryField, numberField, isLoading, loadingContent, banners, actions, containerMode, onNext, }: KYCAddressPageProps): react_jsx_runtime.JSX.Element;
|
|
921
|
+
declare function KYCAddressPage({ screenId, onBack, onClose, step, totalSteps, title, description, cepField, streetField, cityField, stateField, complementField, countryField, numberField, isLoading, loadingContent, banners, actions, containerMode, onNext, backLabel, closeLabel, }: KYCAddressPageProps): react_jsx_runtime.JSX.Element;
|
|
902
922
|
|
|
903
923
|
declare function KYCBasicDataPage({ screenId, step, totalSteps, title, description, cpfField, phoneField, ...props }: KYCBasicDataPageProps): react_jsx_runtime.JSX.Element;
|
|
904
924
|
|
|
@@ -906,18 +926,18 @@ declare function KYCDocumentPage({ screenId, step, totalSteps, title, descriptio
|
|
|
906
926
|
|
|
907
927
|
declare function KYCEditPage({ screenId, title, fullNameField, dateOfBirthField, cpfField, phoneField, emailField, ...props }: KYCEditPageProps): react_jsx_runtime.JSX.Element;
|
|
908
928
|
|
|
909
|
-
declare function KYCFormPage({ screenId, onBack, onClose, step, totalSteps, title, description, children, banners, footer, actions, className, containerMode, }: KYCFormPageProps): react_jsx_runtime.JSX.Element;
|
|
929
|
+
declare function KYCFormPage({ screenId, onBack, onClose, step, totalSteps, title, description, children, banners, footer, actions, className, containerMode, backLabel, closeLabel, }: KYCFormPageProps): react_jsx_runtime.JSX.Element;
|
|
910
930
|
|
|
911
|
-
declare function KYCIntroPage({ screenId, onClose, title, description, checklistItems, banners, legalNotice, primaryAction, className, containerMode, }: KYCIntroPageProps): react_jsx_runtime.JSX.Element;
|
|
931
|
+
declare function KYCIntroPage({ screenId, onClose, title, description, checklistItems, banners, legalNotice, primaryAction, className, containerMode, backLabel, closeLabel, visualVariant, }: KYCIntroPageProps): react_jsx_runtime.JSX.Element;
|
|
912
932
|
|
|
913
|
-
declare function KYCLoadingPage({ screenId, onClose, title, description, note, className, containerMode, }: KYCLoadingPageProps): react_jsx_runtime.JSX.Element;
|
|
933
|
+
declare function KYCLoadingPage({ screenId, onClose, title, description, note, className, containerMode, backLabel, closeLabel, loadingLabel, visualVariant, }: KYCLoadingPageProps): react_jsx_runtime.JSX.Element;
|
|
914
934
|
|
|
915
|
-
declare function KYCReviewPage({ screenId, onClose, step, totalSteps, title, description, cards, banners, actions, className, containerMode, }: KYCReviewPageProps): react_jsx_runtime.JSX.Element;
|
|
935
|
+
declare function KYCReviewPage({ screenId, onClose, step, totalSteps, title, description, cards, banners, actions, className, containerMode, backLabel, closeLabel, }: KYCReviewPageProps): react_jsx_runtime.JSX.Element;
|
|
916
936
|
|
|
917
|
-
declare function KYCReviewPageSkeleton({ screenId, onClose, step, totalSteps, containerMode, }: KYCReviewPageSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
937
|
+
declare function KYCReviewPageSkeleton({ screenId, onClose, step, totalSteps, containerMode, backLabel, closeLabel, }: KYCReviewPageSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
918
938
|
|
|
919
939
|
declare function KYCStatusItemCard({ icon, title, description, tone, testId, className, }: KYCStatusItemCardProps): react_jsx_runtime.JSX.Element;
|
|
920
|
-
declare function KYCStatusPage({ screenId, onClose, status, panelStatus, panelTitle, panelDescription, panelAction, items, cards, banners, actions, footer, className, containerMode, }: KYCStatusPageProps): react_jsx_runtime.JSX.Element;
|
|
940
|
+
declare function KYCStatusPage({ screenId, onClose, status, panelStatus, panelTitle, panelDescription, panelAction, items, cards, banners, actions, footer, className, containerMode, backLabel, closeLabel, }: KYCStatusPageProps): react_jsx_runtime.JSX.Element;
|
|
921
941
|
|
|
922
942
|
interface HistoryDetailsLabels {
|
|
923
943
|
currencyLabel: string;
|
|
@@ -3062,6 +3082,21 @@ interface OnchainWithdrawProcessingSimpleViewProps extends OnchainWithdrawProces
|
|
|
3062
3082
|
}
|
|
3063
3083
|
declare const OnchainWithdrawProcessingSimpleView: React$1.FC<OnchainWithdrawProcessingSimpleViewProps>;
|
|
3064
3084
|
|
|
3085
|
+
interface OnchainWithdrawSignatureWarningLabels {
|
|
3086
|
+
closeAriaLabel: string;
|
|
3087
|
+
title: string;
|
|
3088
|
+
subtitle: string;
|
|
3089
|
+
sendingLabel: string;
|
|
3090
|
+
destinationLabel: string;
|
|
3091
|
+
detailsToggleLabel: string;
|
|
3092
|
+
detailsAriaLabel: string;
|
|
3093
|
+
withdrawAmountLabel: string;
|
|
3094
|
+
blockchainCostLabel: string;
|
|
3095
|
+
receiveLabel: string;
|
|
3096
|
+
cancelLabel: string;
|
|
3097
|
+
retryLabel: string;
|
|
3098
|
+
}
|
|
3099
|
+
|
|
3065
3100
|
interface OnchainWithdrawSignatureWarningViewProps {
|
|
3066
3101
|
tokenSymbol: string;
|
|
3067
3102
|
tokenLogoURI?: string | null;
|
|
@@ -3073,13 +3108,14 @@ interface OnchainWithdrawSignatureWarningViewProps {
|
|
|
3073
3108
|
onCancel: () => void;
|
|
3074
3109
|
onTryAgain: () => void;
|
|
3075
3110
|
className?: string;
|
|
3111
|
+
labels: OnchainWithdrawSignatureWarningLabels;
|
|
3076
3112
|
}
|
|
3077
|
-
declare function OnchainWithdrawSignatureWarningView({ tokenSymbol, tokenLogoURI, formattedAmount, chainName, chainIconUrl, destinationAddress, blockchainCost, onCancel, onTryAgain, className, }: OnchainWithdrawSignatureWarningViewProps): react_jsx_runtime.JSX.Element;
|
|
3113
|
+
declare function OnchainWithdrawSignatureWarningView({ tokenSymbol, tokenLogoURI, formattedAmount, chainName, chainIconUrl, destinationAddress, blockchainCost, onCancel, onTryAgain, className, labels, }: OnchainWithdrawSignatureWarningViewProps): react_jsx_runtime.JSX.Element;
|
|
3078
3114
|
|
|
3079
3115
|
declare const OnchainWithdrawSignatureWarningSimpleView: React$1.FC<OnchainWithdrawSignatureWarningViewProps>;
|
|
3080
3116
|
|
|
3081
3117
|
interface KycLoadingViewProps {
|
|
3082
|
-
message
|
|
3118
|
+
message: string;
|
|
3083
3119
|
}
|
|
3084
3120
|
declare function KycLoadingView({ message }: KycLoadingViewProps): react_jsx_runtime.JSX.Element;
|
|
3085
3121
|
|
|
@@ -3171,6 +3207,16 @@ interface OnrampPixcodeViewProps {
|
|
|
3171
3207
|
}
|
|
3172
3208
|
declare function OnrampPixcodeView({ pixCode, summaryTitle, summaryItems, isLoadingQuote, remainingLabel, isExpired, copied, isRegenerating, onCopy, onRegenerate, qrCodeElement, className, }: OnrampPixcodeViewProps): react_jsx_runtime.JSX.Element;
|
|
3173
3209
|
|
|
3210
|
+
interface OnrampSuccessLabels {
|
|
3211
|
+
title: string;
|
|
3212
|
+
descriptionTemplate: string;
|
|
3213
|
+
depositLabel: string;
|
|
3214
|
+
newDepositAriaLabel: string;
|
|
3215
|
+
newDepositLabel: string;
|
|
3216
|
+
goToDashboardAriaLabel: string;
|
|
3217
|
+
goToDashboardLabel: string;
|
|
3218
|
+
}
|
|
3219
|
+
|
|
3174
3220
|
interface OnrampSuccessViewProps {
|
|
3175
3221
|
amount?: string;
|
|
3176
3222
|
summaryTitle?: string;
|
|
@@ -3183,11 +3229,31 @@ interface OnrampSuccessViewProps {
|
|
|
3183
3229
|
onNewDeposit?: () => void;
|
|
3184
3230
|
onGoToDashboard?: () => void;
|
|
3185
3231
|
className?: string;
|
|
3232
|
+
labels: OnrampSuccessLabels;
|
|
3186
3233
|
}
|
|
3187
|
-
declare function OnrampSuccessView({ amount, summaryTitle, summaryItems, onNewDeposit, onGoToDashboard, className, }: OnrampSuccessViewProps): react_jsx_runtime.JSX.Element;
|
|
3234
|
+
declare function OnrampSuccessView({ amount, summaryTitle, summaryItems, onNewDeposit, onGoToDashboard, className, labels, }: OnrampSuccessViewProps): react_jsx_runtime.JSX.Element;
|
|
3188
3235
|
|
|
3189
3236
|
declare const OnrampSuccessSimpleView: React$1.FC<OnrampSuccessViewProps>;
|
|
3190
3237
|
|
|
3238
|
+
interface OfframpInputFormLabels {
|
|
3239
|
+
backAriaLabel: string;
|
|
3240
|
+
backLabel: string;
|
|
3241
|
+
title: string;
|
|
3242
|
+
subtitle: string;
|
|
3243
|
+
balanceLabel: string;
|
|
3244
|
+
amountQuestion: string;
|
|
3245
|
+
amountAriaLabel: string;
|
|
3246
|
+
maxAriaLabel: string;
|
|
3247
|
+
maxLabel: string;
|
|
3248
|
+
activeWithdrawalWarning: string;
|
|
3249
|
+
pixKeyQuestion: string;
|
|
3250
|
+
pixKeyPlaceholder: string;
|
|
3251
|
+
pixKeyAriaLabel: string;
|
|
3252
|
+
pixKeyInfo: string;
|
|
3253
|
+
signatureInfo: string;
|
|
3254
|
+
submitAriaLabel: string;
|
|
3255
|
+
}
|
|
3256
|
+
|
|
3191
3257
|
interface OfframpInputFormViewProps {
|
|
3192
3258
|
brlaBalance: string;
|
|
3193
3259
|
amount: string;
|
|
@@ -3220,8 +3286,9 @@ interface OfframpInputFormViewProps {
|
|
|
3220
3286
|
/** URL for the flag icon displayed in the amount input. Defaults to '/brazil-flag-rounded.png'. */
|
|
3221
3287
|
flagIconUrl?: string;
|
|
3222
3288
|
className?: string;
|
|
3289
|
+
labels: OfframpInputFormLabels;
|
|
3223
3290
|
}
|
|
3224
|
-
declare function OfframpInputFormView({ brlaBalance, amount, onAmountChange, pixKey, onPixKeyChange, onMaxClick, showMaxButton, summaryTitle, summaryItems, isLoadingQuote, amountWarningMessage, hasActiveWithdrawal, completedBanner, error, offrampError, submitLabel, submitDisabled, onSubmit, onBack, backIcon, tokenIconUrl, flagIconUrl, className, }: OfframpInputFormViewProps): react_jsx_runtime.JSX.Element;
|
|
3291
|
+
declare function OfframpInputFormView({ brlaBalance, amount, onAmountChange, pixKey, onPixKeyChange, onMaxClick, showMaxButton, summaryTitle, summaryItems, isLoadingQuote, amountWarningMessage, hasActiveWithdrawal, completedBanner, error, offrampError, submitLabel, submitDisabled, onSubmit, onBack, backIcon, tokenIconUrl, flagIconUrl, className, labels, }: OfframpInputFormViewProps): react_jsx_runtime.JSX.Element;
|
|
3225
3292
|
|
|
3226
3293
|
interface OfframpInputFormSimpleViewProps extends OfframpInputFormViewProps {
|
|
3227
3294
|
activeTab?: 'crypto' | 'pix';
|
|
@@ -3233,6 +3300,18 @@ interface OfframpInputFormSimpleViewProps extends OfframpInputFormViewProps {
|
|
|
3233
3300
|
}
|
|
3234
3301
|
declare const OfframpInputFormSimpleView: React__default.FC<OfframpInputFormSimpleViewProps>;
|
|
3235
3302
|
|
|
3303
|
+
interface OfframpProcessingLabels {
|
|
3304
|
+
closeAriaLabel: string;
|
|
3305
|
+
title: string;
|
|
3306
|
+
subtitle: string;
|
|
3307
|
+
amountLabel: string;
|
|
3308
|
+
prepareStepLabel: string;
|
|
3309
|
+
signatureStepLabel: string;
|
|
3310
|
+
pixTransferStepLabel: string;
|
|
3311
|
+
waitingButtonAriaLabel: string;
|
|
3312
|
+
waitingButtonLabel: string;
|
|
3313
|
+
}
|
|
3314
|
+
|
|
3236
3315
|
interface OfframpProcessingViewProps {
|
|
3237
3316
|
step?: 'creating_ticket' | 'transferring' | 'waiting_pix';
|
|
3238
3317
|
amount?: string;
|
|
@@ -3250,11 +3329,29 @@ interface OfframpProcessingViewProps {
|
|
|
3250
3329
|
/** URL for the token icon displayed in the summary row. Defaults to '/brladigital_32.webp'. */
|
|
3251
3330
|
tokenIconUrl?: string;
|
|
3252
3331
|
className?: string;
|
|
3332
|
+
labels: OfframpProcessingLabels;
|
|
3253
3333
|
}
|
|
3254
|
-
declare function OfframpProcessingView({ step, amount, summaryTitle, summaryItems, transferTxHash, onClose, closeIcon, tokenIconUrl, className, }: OfframpProcessingViewProps): react_jsx_runtime.JSX.Element;
|
|
3334
|
+
declare function OfframpProcessingView({ step, amount, summaryTitle, summaryItems, transferTxHash, onClose, closeIcon, tokenIconUrl, className, labels, }: OfframpProcessingViewProps): react_jsx_runtime.JSX.Element;
|
|
3255
3335
|
|
|
3256
3336
|
declare const OfframpProcessingSimpleView: React$1.FC<OfframpProcessingViewProps>;
|
|
3257
3337
|
|
|
3338
|
+
interface OfframpSuccessLabels {
|
|
3339
|
+
closeAriaLabel: string;
|
|
3340
|
+
title: string;
|
|
3341
|
+
subtitle: string;
|
|
3342
|
+
amountLabel: string;
|
|
3343
|
+
withdrawAmountLabel: string;
|
|
3344
|
+
feeLabel: string;
|
|
3345
|
+
methodLabel: string;
|
|
3346
|
+
methodValue: string;
|
|
3347
|
+
statusLabel: string;
|
|
3348
|
+
statusValue: string;
|
|
3349
|
+
transactionIdLabel: string;
|
|
3350
|
+
dateLabel: string;
|
|
3351
|
+
confirmAriaLabel: string;
|
|
3352
|
+
confirmLabel: string;
|
|
3353
|
+
}
|
|
3354
|
+
|
|
3258
3355
|
interface OfframpSuccessViewProps {
|
|
3259
3356
|
amount?: string;
|
|
3260
3357
|
feesFormatted?: string;
|
|
@@ -3270,8 +3367,9 @@ interface OfframpSuccessViewProps {
|
|
|
3270
3367
|
/** URL for the token icon displayed in the summary row. Defaults to '/brladigital_32.webp'. */
|
|
3271
3368
|
tokenIconUrl?: string;
|
|
3272
3369
|
className?: string;
|
|
3370
|
+
labels: OfframpSuccessLabels;
|
|
3273
3371
|
}
|
|
3274
|
-
declare function OfframpSuccessView({ amount, feesFormatted, transactionId, date, onClose, onConfirm, closeIcon, arrowUpIcon, tokenIconUrl, className, }: OfframpSuccessViewProps): react_jsx_runtime.JSX.Element;
|
|
3372
|
+
declare function OfframpSuccessView({ amount, feesFormatted, transactionId, date, onClose, onConfirm, closeIcon, arrowUpIcon, tokenIconUrl, className, labels, }: OfframpSuccessViewProps): react_jsx_runtime.JSX.Element;
|
|
3275
3373
|
|
|
3276
3374
|
declare const OfframpSuccessSimpleView: React$1.FC<OfframpSuccessViewProps>;
|
|
3277
3375
|
|
|
@@ -3323,12 +3421,23 @@ interface DashboardBalancesBreakdownProps {
|
|
|
3323
3421
|
}
|
|
3324
3422
|
declare const DashboardBalancesBreakdown: React__default.FC<DashboardBalancesBreakdownProps>;
|
|
3325
3423
|
|
|
3424
|
+
interface DashboardTokenListLabels {
|
|
3425
|
+
title: string;
|
|
3426
|
+
searchPlaceholder: string;
|
|
3427
|
+
emptySearchTitle: string;
|
|
3428
|
+
emptySearchDescription: string;
|
|
3429
|
+
emptyDepositTitle: string;
|
|
3430
|
+
emptyDepositDescription: string;
|
|
3431
|
+
depositCtaLabel: string;
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3326
3434
|
interface DashboardTokenListViewProps {
|
|
3327
3435
|
tokens: DashboardTokenItem[];
|
|
3328
3436
|
isLoading: boolean;
|
|
3329
3437
|
className?: string;
|
|
3330
3438
|
showCard?: boolean;
|
|
3331
3439
|
onDepositClick?: () => void;
|
|
3440
|
+
labels: DashboardTokenListLabels;
|
|
3332
3441
|
}
|
|
3333
3442
|
declare const DashboardTokenListView: React__default.FC<DashboardTokenListViewProps>;
|
|
3334
3443
|
|
|
@@ -3341,6 +3450,18 @@ interface DashboardStrategiesListViewProps {
|
|
|
3341
3450
|
}
|
|
3342
3451
|
declare const DashboardStrategiesListView: React__default.FC<DashboardStrategiesListViewProps>;
|
|
3343
3452
|
|
|
3453
|
+
interface DashboardPortfolioLabels {
|
|
3454
|
+
title: string;
|
|
3455
|
+
depositLabel: string;
|
|
3456
|
+
withdrawLabel: string;
|
|
3457
|
+
swapLabel: string;
|
|
3458
|
+
}
|
|
3459
|
+
interface DashboardPortfolioSimpleLabels extends DashboardPortfolioLabels {
|
|
3460
|
+
totalLabel: string;
|
|
3461
|
+
totalDescription: string;
|
|
3462
|
+
assetsLabel: string;
|
|
3463
|
+
}
|
|
3464
|
+
|
|
3344
3465
|
interface DashboardPortfolioViewProps {
|
|
3345
3466
|
formattedTotalValue: string;
|
|
3346
3467
|
isLoading: boolean;
|
|
@@ -3349,14 +3470,23 @@ interface DashboardPortfolioViewProps {
|
|
|
3349
3470
|
onSwapClick: () => void;
|
|
3350
3471
|
formattedTokenPositions: string;
|
|
3351
3472
|
formattedEarnPositions: string;
|
|
3473
|
+
labels: DashboardPortfolioLabels;
|
|
3352
3474
|
}
|
|
3353
3475
|
declare const DashboardPortfolioView: React__default.FC<DashboardPortfolioViewProps>;
|
|
3354
3476
|
|
|
3355
|
-
interface DashboardPortfolioViewSimpleProps extends DashboardPortfolioViewProps {
|
|
3477
|
+
interface DashboardPortfolioViewSimpleProps extends Omit<DashboardPortfolioViewProps, 'labels'> {
|
|
3356
3478
|
assetCount?: number | string;
|
|
3479
|
+
labels: DashboardPortfolioSimpleLabels;
|
|
3357
3480
|
}
|
|
3358
3481
|
declare const DashboardPortfolioViewSimple: React__default.FC<DashboardPortfolioViewSimpleProps>;
|
|
3359
3482
|
|
|
3483
|
+
interface DashboardTokensLabels {
|
|
3484
|
+
tokensTabLabel: string;
|
|
3485
|
+
strategiesTabLabel: string;
|
|
3486
|
+
mobileTokensTitle: string;
|
|
3487
|
+
tokenList: DashboardTokenListLabels;
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3360
3490
|
interface AssetFilterOption {
|
|
3361
3491
|
id: string;
|
|
3362
3492
|
label: string;
|
|
@@ -3376,6 +3506,7 @@ interface DashboardTokensViewProps {
|
|
|
3376
3506
|
onFilterSelect?: (id: string) => void;
|
|
3377
3507
|
/** Called when history button is clicked */
|
|
3378
3508
|
onHistoryClick?: () => void;
|
|
3509
|
+
labels: DashboardTokensLabels;
|
|
3379
3510
|
}
|
|
3380
3511
|
declare const DashboardTokensView: React__default.FC<DashboardTokensViewProps>;
|
|
3381
3512
|
|
|
@@ -3409,6 +3540,19 @@ interface DashboardInvestmentOpportunitiesViewProps {
|
|
|
3409
3540
|
}
|
|
3410
3541
|
declare const DashboardInvestmentOpportunitiesView: React__default.FC<DashboardInvestmentOpportunitiesViewProps>;
|
|
3411
3542
|
|
|
3543
|
+
interface DashboardLabels {
|
|
3544
|
+
quickActionsTitle: string;
|
|
3545
|
+
depositLabel: string;
|
|
3546
|
+
withdrawLabel: string;
|
|
3547
|
+
swapLabel: string;
|
|
3548
|
+
}
|
|
3549
|
+
interface DashboardSimpleLabels {
|
|
3550
|
+
pageTitle: string;
|
|
3551
|
+
pageSubtitle: string;
|
|
3552
|
+
depositLabel: string;
|
|
3553
|
+
withdrawLabel: string;
|
|
3554
|
+
}
|
|
3555
|
+
|
|
3412
3556
|
interface DashboardViewProps {
|
|
3413
3557
|
portfolio: DashboardPortfolioViewProps;
|
|
3414
3558
|
tokens: DashboardTokensViewProps;
|
|
@@ -3423,10 +3567,16 @@ interface DashboardViewProps {
|
|
|
3423
3567
|
imageUrl: string;
|
|
3424
3568
|
altText: string;
|
|
3425
3569
|
};
|
|
3570
|
+
labels: DashboardLabels;
|
|
3426
3571
|
}
|
|
3427
3572
|
declare const DashboardView: React__default.FC<DashboardViewProps>;
|
|
3428
3573
|
|
|
3429
|
-
|
|
3574
|
+
interface DashboardViewSimpleProps extends Omit<DashboardViewProps, 'investmentOpportunities' | 'banner' | 'portfolio' | 'labels'> {
|
|
3575
|
+
portfolio: Omit<DashboardPortfolioViewProps, 'labels'> & {
|
|
3576
|
+
labels: DashboardPortfolioSimpleLabels;
|
|
3577
|
+
};
|
|
3578
|
+
labels: DashboardSimpleLabels;
|
|
3579
|
+
}
|
|
3430
3580
|
declare const DashboardViewSimple: React__default.FC<DashboardViewSimpleProps>;
|
|
3431
3581
|
|
|
3432
3582
|
/**
|
|
@@ -3462,4 +3612,4 @@ interface DeframeTheme {
|
|
|
3462
3612
|
colors?: DeframeThemeColors;
|
|
3463
3613
|
}
|
|
3464
3614
|
|
|
3465
|
-
export { ActionButton, ActionSheet, type ActionSheetProps, AddressDisplay, type AddressDisplayProps, ApyRange, type ApyRangeProps, BackButton, type BackButtonProps, BackgroundContainer, type BackgroundContainerProps, type BalanceDomain, BannerNotification, type BannerNotificationProps, type ButtonProps, type ChainItem, type ChainOption, Chip, ChipGroup, type ChipGroupProps, type ChipOption, type ChipProps, ChoiceCard, type ChoiceCardProps, type ChooseANetworkLabels, ChooseANetworkView, type ChooseANetworkViewProps, ChooseAStrategyActionsheetView, type ChooseAStrategyActionsheetViewProps, type ChooseAnAssetSwapLabels, ChooseAnAssetSwapView, type ChooseAnAssetSwapViewProps, type ChooseNetworkAndAssetLabels, ChooseNetworkAndAssetViewSimple, type ChooseNetworkAndAssetViewSimpleProps, CloseButton, type CloseButtonProps, CollapsibleInfoRow, type CollapsibleInfoRowProps, CollapsibleSection, type CollapsibleSectionProps, type ConfirmSwapButtonLabels, ConfirmSwapButtonView, type ConfirmSwapButtonViewProps, ConfirmSwapButtonViewSimple, ConnectWalletList, type ConnectWalletListProps, Currency, type CurrencyProps, type CurrencyType, DashboardBalancesBreakdown, type DashboardBalancesBreakdownProps, DashboardCard, type DashboardCardProps, DashboardInvestmentOpportunitiesView, type DashboardInvestmentOpportunitiesViewProps, DashboardPortfolioView, type DashboardPortfolioViewProps, DashboardPortfolioViewSimple, DashboardRecentTransactionsView, type DashboardRecentTransactionsViewProps, DashboardRecentTransactionsViewSimple, DashboardStrategiesListView, type DashboardStrategiesListViewProps, type DashboardStrategyItem, type DashboardTokenItem, DashboardTokenListView, type DashboardTokenListViewProps, DashboardTokensView, type DashboardTokensViewProps, DashboardTokensViewSimple, DashboardTransactionsPlaceholder, DashboardView, type DashboardViewProps, DashboardViewSimple, type DashboardViewSimpleProps, DeframeComponentsProvider, type DeframeTheme, type DeframeThemeColors, DepositSuccessIcon, type DetailItem, DetailsHeader, type DetailsHeaderProps, EARN_CATEGORY_DEFINITIONS, EarnAmountInputView, type EarnAmountInputViewProps, EarnBalanceCard, type EarnBalanceCardProps, EarnBytecodeErrorView, type EarnBytecodeErrorViewProps, type EarnCategoryDefinition, EarnDepositFailedSimpleView, EarnDepositFailedView, type EarnDepositFailedViewProps, EarnDepositFormView, type EarnDepositFormViewProps, EarnDepositFormViewSimple, EarnDepositProcessingSimpleView, EarnDepositProcessingView, type EarnDepositProcessingViewProps, EarnDepositSuccessSimpleView, EarnDepositSuccessView, type EarnDepositSuccessViewProps, EarnDepositWarningSimpleView, EarnDepositWarningView, type EarnDepositWarningViewProps, EarnDesktopView, type EarnDesktopViewProps, EarnDesktopViewSimple, type EarnDesktopViewSimpleProps, type EarnExploreGridItem, EarnExploreGridView, type EarnExploreGridViewProps, EarnFlowSkeletonSimple, type EarnInvestedSectionItem, EarnInvestedSectionView, type EarnInvestedSectionViewProps, type EarnInvestmentDetailsTransaction, EarnInvestmentDetailsView, type EarnInvestmentDetailsViewProps, EarnInvestmentSummaryView, type EarnInvestmentSummaryViewProps, EarnNoBalanceNotificationView, type EarnNoBalanceNotificationViewProps, EarnOverviewView, type EarnOverviewViewProps, EarnPercentageButtonsView, type EarnPercentageButtonsViewProps, EarnPositionCardView, type EarnPositionCardViewProps, EarnRecentTransactionsView, type EarnRecentTransactionsViewProps, EarnTokenSelectorView, type EarnTokenSelectorViewProps, EarnTxStatusCardView, type EarnTxStatusCardViewProps, EarnWithdrawFailedSimpleView, EarnWithdrawFailedView, type EarnWithdrawFailedViewProps, EarnWithdrawFormView, type EarnWithdrawFormViewProps, EarnWithdrawFormViewSimple, EarnWithdrawProcessingSimpleView, EarnWithdrawProcessingView, type EarnWithdrawProcessingViewProps, EarnWithdrawSuccessSimpleView, EarnWithdrawSuccessView, type EarnWithdrawSuccessViewProps, EarnWithdrawTokenSelectorView, type EarnWithdrawTokenSelectorViewProps, EarnWithdrawWarningSimpleView, EarnWithdrawWarningView, type EarnWithdrawWarningViewProps, type ExploreStrategyViewItem, Currency as Fiat, type FiatProps, FlexCol, type FlexColProps, FlexRow, type FlexRowProps, type GroupedInvestedItem, type GroupedStrategyItem, type GroupedStrategyListItem, GroupedStrategyListView, type GroupedStrategyListViewProps, HighRiskBadge, type HighRiskBadgeProps, type HistoryAssetViewProps, HistoryDepositDetailsView, type HistoryDetailsLabels, type HistoryDetailsStatus, type HistoryDetailsViewProps, HistoryListItem, type HistoryListItemAsset, type HistoryListItemData, type HistoryListItemFiat, type HistoryListItemLabels, type HistoryListItemProps, HistoryListItemSimple, type HistoryListItemSimpleProps, type HistoryListItemStatus, type HistoryListItemType, HistoryListSkeleton, HistoryListView, type HistoryListViewGroup, type HistoryListViewProps, type HistorySwapDetailsLabels, HistorySwapDetailsView, type HistorySwapDetailsViewProps, HistoryTabEmpty, type HistoryTabEmptyProps, HistoryWithdrawDetailsView, InfoLabel, type InfoLabelProps, InfoRow, InfoRowIconLabel, type InfoRowIconLabelProps, InfoRowIconValue, type InfoRowIconValueProps, type InfoRowProps, InfoRowWithIcon, type InfoRowWithIconProps, InfoValue, type InfoValueProps, Input$1 as Input, InputField, type InputFieldProps, type InputFieldRegistration, InputLabel, type InputProps, Input as InputRoot, InvestmentCrossChainProcessingView, type InvestmentCrossChainProcessingViewProps, type KYCAction, KYCActionRow, type KYCActionRowProps, KYCAddressPage, type KYCAddressPageProps, type KYCBannerVariant, KYCBasicDataPage, type KYCBasicDataPageProps, KYCChecklistCard, KYCChecklistItem, type KYCChecklistItemData, KYCDataCard, type KYCDataCardProps, type KYCDataField, KYCDocumentPage, type KYCDocumentPageProps, KYCEditPage, type KYCEditPageProps, KYCFieldMessage, type KYCFieldMessageProps, type KYCFieldMessageTone, KYCFormPage, type KYCFormPageProps, KYCInfoRow, type KYCInfoRowProps, KYCIntroPage, type KYCIntroPageProps, KYCLoadingPage, type KYCLoadingPageProps, KYCMessageBanner, type KYCMessageBannerProps, KYCPageHeader, type KYCPageHeaderProps, KYCPageSection, type KYCPageSectionProps, KYCPageShell, type KYCPageShellProps, type KYCPanelStatus, type KYCReviewCard, KYCReviewPage, type KYCReviewPageProps, KYCReviewPageSkeleton, type KYCReviewPageSkeletonProps, type KYCStatusItem, KYCStatusItemCard, type KYCStatusItemCardProps, KYCStatusPage, type KYCStatusPageProps, KYCStatusPanel, type KYCStatusPanelProps, KYCStepIndicator, type KYCStepIndicatorProps, KycLoadingView, type KycLoadingViewProps, KycRequiredView, type KycRequiredViewProps, Label, type LabelProps, type LabelVariant, Link, type LinkProps, ListItem, ListItemContent, ListItemLeftSide, type ListItemProps, ListItemRightSide, LoadingDots, type LoadingDotsProps, LowRiskBadge, type LowRiskBadgeProps, MediumRiskBadge, type MediumRiskBadgeProps, type MethodOption, Navbar, type NavbarProps, type NetworkOption, OffchainMethodSelectionView, type OffchainMethodSelectionViewProps, OfframpFailedSimpleView, OfframpInputFormSimpleView, type OfframpInputFormSimpleViewProps, OfframpInputFormView, type OfframpInputFormViewProps, OfframpProcessingSimpleView, OfframpProcessingView, type OfframpProcessingViewProps, OfframpSuccessSimpleView, OfframpSuccessView, type OfframpSuccessViewProps, OnchainDepositFormSimpleView, OnchainDepositFormView, type OnchainDepositFormViewProps, OnchainDepositSuccessSimpleView, OnchainDepositSuccessView, type OnchainDepositSuccessViewProps, OnchainWithdrawChainSelectorView, type OnchainWithdrawChainSelectorViewProps, OnchainWithdrawFailedSimpleView, OnchainWithdrawFailedView, type OnchainWithdrawFailedViewProps, OnchainWithdrawFormSimpleView, type OnchainWithdrawFormSimpleViewProps, OnchainWithdrawFormView, type OnchainWithdrawFormViewProps, OnchainWithdrawProcessingSimpleView, type OnchainWithdrawProcessingViewProps, OnchainWithdrawSignatureWarningSimpleView, OnchainWithdrawSignatureWarningView, type OnchainWithdrawSignatureWarningViewProps, OnchainWithdrawSuccessSimpleView, OnchainWithdrawSuccessView, type OnchainWithdrawSuccessViewProps, OnrampFormSimpleView, type OnrampFormSimpleViewProps, OnrampFormView, type OnrampFormViewProps, OnrampPixcodeView, type OnrampPixcodeViewProps, OnrampSuccessSimpleView, OnrampSuccessView, type OnrampSuccessViewProps, PercentageButton, PrimaryButton, ProcessingBadge, type ProcessingBadgeProps, ProgressIndicator, type ProgressIndicatorProps, ScrollableContent, type ScrollableContentProps, SearchEmptyState, type SearchEmptyStateProps, SearchInput, type SearchInputProps, SecondaryButton, SectionCard, type SectionCardProps, Select, SelectContent, type SelectContentProps, SelectItem, type SelectItemProps, type SelectProps, SelectTrigger, type SelectTriggerProps, Skeleton, type SkeletonProps, StepDisplay, type StepDisplayProps, StepStatusIcon, type StepStatusIconProps, StepStatusText, type StepStatusTextProps, StrategyDetailsView, type StrategyDetailsViewProps, StrategyGridCard, type StrategyGridCardProps, SummaryDetails, SummaryDetailsCryptoControlV2, type SummaryDetailsProps, SwapAdvancedSettingsView, type SwapAdvancedSettingsViewProps, SwapAmountInputView, type SwapAmountInputViewProps, type SwapCardLabels, SwapCrossChainProcessingView, type SwapCrossChainProcessingViewProps, type SwapFormLabels, SwapFormView, type SwapFormViewProps, SwapFormViewSimple, SwapFromCardView, type SwapFromCardViewProps, SwapFromCardViewSimple, type SwapFromCardViewSimpleProps, type SwapHistoryItem, type SwapHistoryLabels, SwapHistoryView, type SwapHistoryViewProps, SwapHistoryViewSimple, type SwapHistoryViewSimpleProps, type SwapNetworkSelectorViewProps, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapProcessingViewSimple, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, type SwapQuoteErrorsViewProps, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSignatureWarningViewSimple, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapSuccessViewSimple, SwapToCardView, type SwapToCardViewProps, SwapToCardViewSimple, type SwapTokenSelectorViewProps, SwapTransactionFailedView, type SwapTransactionFailedViewProps, SwapTransactionFailedViewSimple, type SwapValidationCode, SwapWidgetFallbackView, type SwapWidgetFallbackViewProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TertiaryButton, Text, TextAccent, type TextAccentProps, TextBody, type TextBodyProps, TextHeading, type TextHeadingProps, Title, type TokenData, TokenWithChainBadge, type TokenWithChainBadgeProps, TransactionProcessingDetails, type TransactionProcessingDetailsLabels, type TransactionProcessingDetailsProps, TransactionScreen, TransactionScreenIcon, type TransactionScreenIconProps, TransactionScreenInvestmentCard, type TransactionScreenInvestmentCardProps, type TransactionScreenProps, type TransactionStep, type TransactionStepStatus, type WalletBalanceItem, WalletBalances, type WalletBalancesProps, WalletConnectPanel, type WalletConnectPanelProps, WalletItem, type WalletItemProps, ConnectWalletList as WalletList, WalletListContainer, type WalletListContainerProps, type WalletOption, WithdrawFailedIcon, WithdrawSuccessIcon, isDustValue, truncateAddress };
|
|
3615
|
+
export { ActionButton, ActionSheet, type ActionSheetProps, AddressDisplay, type AddressDisplayProps, ApyRange, type ApyRangeProps, BackButton, type BackButtonProps, BackgroundContainer, type BackgroundContainerProps, type BalanceDomain, BannerNotification, type BannerNotificationProps, type ButtonProps, type ChainItem, type ChainOption, Chip, ChipGroup, type ChipGroupProps, type ChipOption, type ChipProps, ChoiceCard, type ChoiceCardProps, type ChooseANetworkLabels, ChooseANetworkView, type ChooseANetworkViewProps, ChooseAStrategyActionsheetView, type ChooseAStrategyActionsheetViewProps, type ChooseAnAssetSwapLabels, ChooseAnAssetSwapView, type ChooseAnAssetSwapViewProps, type ChooseNetworkAndAssetLabels, ChooseNetworkAndAssetViewSimple, type ChooseNetworkAndAssetViewSimpleProps, CloseButton, type CloseButtonProps, CollapsibleInfoRow, type CollapsibleInfoRowProps, CollapsibleSection, type CollapsibleSectionProps, type ConfirmSwapButtonLabels, ConfirmSwapButtonView, type ConfirmSwapButtonViewProps, ConfirmSwapButtonViewSimple, ConnectWalletList, type ConnectWalletListProps, Currency, type CurrencyProps, type CurrencyType, DashboardBalancesBreakdown, type DashboardBalancesBreakdownProps, DashboardCard, type DashboardCardProps, DashboardInvestmentOpportunitiesView, type DashboardInvestmentOpportunitiesViewProps, DashboardPortfolioView, type DashboardPortfolioViewProps, DashboardPortfolioViewSimple, DashboardRecentTransactionsView, type DashboardRecentTransactionsViewProps, DashboardRecentTransactionsViewSimple, DashboardStrategiesListView, type DashboardStrategiesListViewProps, type DashboardStrategyItem, type DashboardTokenItem, DashboardTokenListView, type DashboardTokenListViewProps, DashboardTokensView, type DashboardTokensViewProps, DashboardTokensViewSimple, DashboardTransactionsPlaceholder, DashboardView, type DashboardViewProps, DashboardViewSimple, type DashboardViewSimpleProps, DeframeComponentsProvider, type DeframeTheme, type DeframeThemeColors, DepositSuccessIcon, type DetailItem, DetailsHeader, type DetailsHeaderProps, EARN_CATEGORY_DEFINITIONS, EarnAmountInputView, type EarnAmountInputViewProps, EarnBalanceCard, type EarnBalanceCardProps, EarnBytecodeErrorView, type EarnBytecodeErrorViewProps, type EarnCategoryDefinition, EarnDepositFailedSimpleView, EarnDepositFailedView, type EarnDepositFailedViewProps, EarnDepositFormView, type EarnDepositFormViewProps, EarnDepositFormViewSimple, EarnDepositProcessingSimpleView, EarnDepositProcessingView, type EarnDepositProcessingViewProps, EarnDepositSuccessSimpleView, EarnDepositSuccessView, type EarnDepositSuccessViewProps, EarnDepositWarningSimpleView, EarnDepositWarningView, type EarnDepositWarningViewProps, EarnDesktopView, type EarnDesktopViewProps, EarnDesktopViewSimple, type EarnDesktopViewSimpleProps, type EarnExploreGridItem, EarnExploreGridView, type EarnExploreGridViewProps, EarnFlowSkeletonSimple, type EarnInvestedSectionItem, EarnInvestedSectionView, type EarnInvestedSectionViewProps, type EarnInvestmentDetailsTransaction, EarnInvestmentDetailsView, type EarnInvestmentDetailsViewProps, EarnInvestmentSummaryView, type EarnInvestmentSummaryViewProps, EarnNoBalanceNotificationView, type EarnNoBalanceNotificationViewProps, EarnOverviewView, type EarnOverviewViewProps, EarnPercentageButtonsView, type EarnPercentageButtonsViewProps, EarnPositionCardView, type EarnPositionCardViewProps, EarnRecentTransactionsView, type EarnRecentTransactionsViewProps, EarnTokenSelectorView, type EarnTokenSelectorViewProps, EarnTxStatusCardView, type EarnTxStatusCardViewProps, EarnWithdrawFailedSimpleView, EarnWithdrawFailedView, type EarnWithdrawFailedViewProps, EarnWithdrawFormView, type EarnWithdrawFormViewProps, EarnWithdrawFormViewSimple, EarnWithdrawProcessingSimpleView, EarnWithdrawProcessingView, type EarnWithdrawProcessingViewProps, EarnWithdrawSuccessSimpleView, EarnWithdrawSuccessView, type EarnWithdrawSuccessViewProps, EarnWithdrawTokenSelectorView, type EarnWithdrawTokenSelectorViewProps, EarnWithdrawWarningSimpleView, EarnWithdrawWarningView, type EarnWithdrawWarningViewProps, type ExploreStrategyViewItem, Currency as Fiat, type FiatProps, FlexCol, type FlexColProps, FlexRow, type FlexRowProps, type GroupedInvestedItem, type GroupedStrategyItem, type GroupedStrategyListItem, GroupedStrategyListView, type GroupedStrategyListViewProps, HighRiskBadge, type HighRiskBadgeProps, type HistoryAssetViewProps, HistoryDepositDetailsView, type HistoryDetailsLabels, type HistoryDetailsStatus, type HistoryDetailsViewProps, HistoryListItem, type HistoryListItemAsset, type HistoryListItemData, type HistoryListItemFiat, type HistoryListItemLabels, type HistoryListItemProps, HistoryListItemSimple, type HistoryListItemSimpleProps, type HistoryListItemStatus, type HistoryListItemType, HistoryListSkeleton, HistoryListView, type HistoryListViewGroup, type HistoryListViewProps, type HistorySwapDetailsLabels, HistorySwapDetailsView, type HistorySwapDetailsViewProps, HistoryTabEmpty, type HistoryTabEmptyProps, HistoryWithdrawDetailsView, InfoLabel, type InfoLabelProps, InfoRow, InfoRowIconLabel, type InfoRowIconLabelProps, InfoRowIconValue, type InfoRowIconValueProps, type InfoRowProps, InfoRowWithIcon, type InfoRowWithIconProps, InfoValue, type InfoValueProps, Input$1 as Input, InputField, type InputFieldProps, type InputFieldRegistration, InputLabel, type InputProps, Input as InputRoot, InvestmentCrossChainProcessingView, type InvestmentCrossChainProcessingViewProps, type KYCAction, KYCActionRow, type KYCActionRowProps, KYCAddressPage, type KYCAddressPageProps, type KYCBannerVariant, KYCBasicDataPage, type KYCBasicDataPageProps, KYCChecklistCard, KYCChecklistItem, type KYCChecklistItemData, KYCDataCard, type KYCDataCardProps, type KYCDataField, KYCDocumentPage, type KYCDocumentPageProps, KYCEditPage, type KYCEditPageProps, KYCFieldMessage, type KYCFieldMessageProps, type KYCFieldMessageTone, KYCFormPage, type KYCFormPageProps, KYCInfoRow, type KYCInfoRowProps, KYCIntroPage, type KYCIntroPageProps, KYCLoadingPage, type KYCLoadingPageProps, KYCMessageBanner, type KYCMessageBannerProps, KYCPageHeader, type KYCPageHeaderProps, KYCPageSection, type KYCPageSectionProps, KYCPageShell, type KYCPageShellProps, type KYCPanelStatus, type KYCReviewCard, KYCReviewPage, type KYCReviewPageProps, KYCReviewPageSkeleton, type KYCReviewPageSkeletonProps, type KYCStatusItem, KYCStatusItemCard, type KYCStatusItemCardProps, KYCStatusPage, type KYCStatusPageProps, KYCStatusPanel, type KYCStatusPanelProps, KYCStepIndicator, type KYCStepIndicatorProps, type KYCVisualVariant, KycLoadingView, type KycLoadingViewProps, KycRequiredView, type KycRequiredViewProps, Label, type LabelProps, type LabelVariant, Link, type LinkProps, ListItem, ListItemContent, ListItemLeftSide, type ListItemProps, ListItemRightSide, LoadingDots, type LoadingDotsProps, LowRiskBadge, type LowRiskBadgeProps, MediumRiskBadge, type MediumRiskBadgeProps, type MethodOption, Navbar, type NavbarProps, type NetworkOption, OffchainMethodSelectionView, type OffchainMethodSelectionViewProps, OfframpFailedSimpleView, OfframpInputFormSimpleView, type OfframpInputFormSimpleViewProps, OfframpInputFormView, type OfframpInputFormViewProps, OfframpProcessingSimpleView, OfframpProcessingView, type OfframpProcessingViewProps, OfframpSuccessSimpleView, OfframpSuccessView, type OfframpSuccessViewProps, OnchainDepositFormSimpleView, OnchainDepositFormView, type OnchainDepositFormViewProps, OnchainDepositSuccessSimpleView, OnchainDepositSuccessView, type OnchainDepositSuccessViewProps, OnchainWithdrawChainSelectorView, type OnchainWithdrawChainSelectorViewProps, OnchainWithdrawFailedSimpleView, OnchainWithdrawFailedView, type OnchainWithdrawFailedViewProps, OnchainWithdrawFormSimpleView, type OnchainWithdrawFormSimpleViewProps, OnchainWithdrawFormView, type OnchainWithdrawFormViewProps, OnchainWithdrawProcessingSimpleView, type OnchainWithdrawProcessingViewProps, OnchainWithdrawSignatureWarningSimpleView, OnchainWithdrawSignatureWarningView, type OnchainWithdrawSignatureWarningViewProps, OnchainWithdrawSuccessSimpleView, OnchainWithdrawSuccessView, type OnchainWithdrawSuccessViewProps, OnrampFormSimpleView, type OnrampFormSimpleViewProps, OnrampFormView, type OnrampFormViewProps, OnrampPixcodeView, type OnrampPixcodeViewProps, OnrampSuccessSimpleView, OnrampSuccessView, type OnrampSuccessViewProps, PercentageButton, PrimaryButton, ProcessingBadge, type ProcessingBadgeProps, ProgressIndicator, type ProgressIndicatorProps, ScrollableContent, type ScrollableContentProps, SearchEmptyState, type SearchEmptyStateProps, SearchInput, type SearchInputProps, SecondaryButton, SectionCard, type SectionCardProps, Select, SelectContent, type SelectContentProps, SelectItem, type SelectItemProps, type SelectProps, SelectTrigger, type SelectTriggerProps, Skeleton, type SkeletonProps, StepDisplay, type StepDisplayProps, StepStatusIcon, type StepStatusIconProps, StepStatusText, type StepStatusTextProps, StrategyDetailsView, type StrategyDetailsViewProps, StrategyGridCard, type StrategyGridCardProps, SummaryDetails, SummaryDetailsCryptoControlV2, type SummaryDetailsProps, SwapAdvancedSettingsView, type SwapAdvancedSettingsViewProps, SwapAmountInputView, type SwapAmountInputViewProps, type SwapCardLabels, SwapCrossChainProcessingView, type SwapCrossChainProcessingViewProps, type SwapFormLabels, SwapFormView, type SwapFormViewProps, SwapFormViewSimple, SwapFromCardView, type SwapFromCardViewProps, SwapFromCardViewSimple, type SwapFromCardViewSimpleProps, type SwapHistoryItem, type SwapHistoryLabels, SwapHistoryView, type SwapHistoryViewProps, SwapHistoryViewSimple, type SwapHistoryViewSimpleProps, type SwapNetworkSelectorViewProps, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapProcessingViewSimple, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, type SwapQuoteErrorsViewProps, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSignatureWarningViewSimple, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapSuccessViewSimple, SwapToCardView, type SwapToCardViewProps, SwapToCardViewSimple, type SwapTokenSelectorViewProps, SwapTransactionFailedView, type SwapTransactionFailedViewProps, SwapTransactionFailedViewSimple, type SwapValidationCode, SwapWidgetFallbackView, type SwapWidgetFallbackViewProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TertiaryButton, Text, TextAccent, type TextAccentProps, TextBody, type TextBodyProps, TextHeading, type TextHeadingProps, Title, type TokenData, TokenWithChainBadge, type TokenWithChainBadgeProps, TransactionProcessingDetails, type TransactionProcessingDetailsLabels, type TransactionProcessingDetailsProps, TransactionScreen, TransactionScreenIcon, type TransactionScreenIconProps, TransactionScreenInvestmentCard, type TransactionScreenInvestmentCardProps, type TransactionScreenProps, type TransactionStep, type TransactionStepStatus, type WalletBalanceItem, WalletBalances, type WalletBalancesProps, WalletConnectPanel, type WalletConnectPanelProps, WalletItem, type WalletItemProps, ConnectWalletList as WalletList, WalletListContainer, type WalletListContainerProps, type WalletOption, WithdrawFailedIcon, WithdrawSuccessIcon, isDustValue, truncateAddress };
|