@deframe-sdk/components 0.1.48 → 0.1.50
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 +211 -32
- package/dist/index.d.ts +211 -32
- package/dist/index.js +1257 -1190
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1257 -1190
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
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;
|
|
@@ -720,6 +722,8 @@ interface KYCChecklistItemData {
|
|
|
720
722
|
interface KYCIntroPageProps {
|
|
721
723
|
screenId?: string;
|
|
722
724
|
onClose?: () => void;
|
|
725
|
+
backLabel: string;
|
|
726
|
+
closeLabel: string;
|
|
723
727
|
title?: React__default.ReactNode;
|
|
724
728
|
description?: React__default.ReactNode;
|
|
725
729
|
checklistItems?: KYCChecklistItemData[];
|
|
@@ -733,6 +737,8 @@ interface KYCFormPageProps {
|
|
|
733
737
|
screenId?: string;
|
|
734
738
|
onBack?: () => void;
|
|
735
739
|
onClose?: () => void;
|
|
740
|
+
backLabel: string;
|
|
741
|
+
closeLabel: string;
|
|
736
742
|
step?: number;
|
|
737
743
|
totalSteps?: number;
|
|
738
744
|
title: React__default.ReactNode;
|
|
@@ -747,6 +753,9 @@ interface KYCFormPageProps {
|
|
|
747
753
|
interface KYCLoadingPageProps {
|
|
748
754
|
screenId?: string;
|
|
749
755
|
onClose?: () => void;
|
|
756
|
+
backLabel: string;
|
|
757
|
+
closeLabel: string;
|
|
758
|
+
loadingLabel: string;
|
|
750
759
|
title: React__default.ReactNode;
|
|
751
760
|
description?: React__default.ReactNode;
|
|
752
761
|
note?: React__default.ReactNode;
|
|
@@ -761,6 +770,8 @@ interface KYCReviewPageProps {
|
|
|
761
770
|
onClose?: () => void;
|
|
762
771
|
step?: number;
|
|
763
772
|
totalSteps?: number;
|
|
773
|
+
backLabel: string;
|
|
774
|
+
closeLabel: string;
|
|
764
775
|
title: React__default.ReactNode;
|
|
765
776
|
description?: React__default.ReactNode;
|
|
766
777
|
cards: KYCReviewCard[];
|
|
@@ -775,6 +786,8 @@ interface KYCReviewPageSkeletonProps {
|
|
|
775
786
|
step?: number;
|
|
776
787
|
totalSteps?: number;
|
|
777
788
|
containerMode?: 'fullscreen' | 'embedded';
|
|
789
|
+
backLabel: string;
|
|
790
|
+
closeLabel: string;
|
|
778
791
|
}
|
|
779
792
|
interface KYCStatusItem {
|
|
780
793
|
icon?: React__default.ReactNode;
|
|
@@ -789,6 +802,8 @@ interface KYCStatusItemCardProps extends KYCStatusItem {
|
|
|
789
802
|
interface KYCStatusPageProps {
|
|
790
803
|
screenId?: string;
|
|
791
804
|
onClose?: () => void;
|
|
805
|
+
backLabel: string;
|
|
806
|
+
closeLabel: string;
|
|
792
807
|
status?: KYCPanelStatus;
|
|
793
808
|
panelStatus?: KYCPanelStatus;
|
|
794
809
|
panelTitle?: React__default.ReactNode;
|
|
@@ -811,6 +826,8 @@ interface BaseFormScreenProps {
|
|
|
811
826
|
banners?: KYCMessageBannerProps[];
|
|
812
827
|
actions?: KYCAction[];
|
|
813
828
|
containerMode?: KYCPageShellProps['containerMode'];
|
|
829
|
+
backLabel: string;
|
|
830
|
+
closeLabel: string;
|
|
814
831
|
}
|
|
815
832
|
interface KYCBasicDataPageProps extends BaseFormScreenProps {
|
|
816
833
|
title?: React__default.ReactNode;
|
|
@@ -890,7 +907,7 @@ declare function KYCFieldMessage({ tone, children, className, testId, }: KYCFiel
|
|
|
890
907
|
|
|
891
908
|
declare function KYCMessageBanner({ variant, children, className, testId, }: KYCMessageBannerProps): react_jsx_runtime.JSX.Element;
|
|
892
909
|
|
|
893
|
-
declare function KYCPageHeader({ step, totalSteps, onBack, onClose, className, }: KYCPageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
910
|
+
declare function KYCPageHeader({ step, totalSteps, onBack, onClose, className, backLabel, closeLabel, }: KYCPageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
894
911
|
|
|
895
912
|
declare function KYCPageSection({ title, description, className }: KYCPageSectionProps): react_jsx_runtime.JSX.Element;
|
|
896
913
|
|
|
@@ -898,7 +915,7 @@ declare function KYCPageShell({ children, className, screenId, containerMode }:
|
|
|
898
915
|
|
|
899
916
|
declare function KYCStepIndicator({ total, current, className }: KYCStepIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
900
917
|
|
|
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;
|
|
918
|
+
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
919
|
|
|
903
920
|
declare function KYCBasicDataPage({ screenId, step, totalSteps, title, description, cpfField, phoneField, ...props }: KYCBasicDataPageProps): react_jsx_runtime.JSX.Element;
|
|
904
921
|
|
|
@@ -906,18 +923,18 @@ declare function KYCDocumentPage({ screenId, step, totalSteps, title, descriptio
|
|
|
906
923
|
|
|
907
924
|
declare function KYCEditPage({ screenId, title, fullNameField, dateOfBirthField, cpfField, phoneField, emailField, ...props }: KYCEditPageProps): react_jsx_runtime.JSX.Element;
|
|
908
925
|
|
|
909
|
-
declare function KYCFormPage({ screenId, onBack, onClose, step, totalSteps, title, description, children, banners, footer, actions, className, containerMode, }: KYCFormPageProps): react_jsx_runtime.JSX.Element;
|
|
926
|
+
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
927
|
|
|
911
|
-
declare function KYCIntroPage({ screenId, onClose, title, description, checklistItems, banners, legalNotice, primaryAction, className, containerMode, }: KYCIntroPageProps): react_jsx_runtime.JSX.Element;
|
|
928
|
+
declare function KYCIntroPage({ screenId, onClose, title, description, checklistItems, banners, legalNotice, primaryAction, className, containerMode, backLabel, closeLabel, }: KYCIntroPageProps): react_jsx_runtime.JSX.Element;
|
|
912
929
|
|
|
913
|
-
declare function KYCLoadingPage({ screenId, onClose, title, description, note, className, containerMode, }: KYCLoadingPageProps): react_jsx_runtime.JSX.Element;
|
|
930
|
+
declare function KYCLoadingPage({ screenId, onClose, title, description, note, className, containerMode, backLabel, closeLabel, loadingLabel, }: KYCLoadingPageProps): react_jsx_runtime.JSX.Element;
|
|
914
931
|
|
|
915
|
-
declare function KYCReviewPage({ screenId, onClose, step, totalSteps, title, description, cards, banners, actions, className, containerMode, }: KYCReviewPageProps): react_jsx_runtime.JSX.Element;
|
|
932
|
+
declare function KYCReviewPage({ screenId, onClose, step, totalSteps, title, description, cards, banners, actions, className, containerMode, backLabel, closeLabel, }: KYCReviewPageProps): react_jsx_runtime.JSX.Element;
|
|
916
933
|
|
|
917
|
-
declare function KYCReviewPageSkeleton({ screenId, onClose, step, totalSteps, containerMode, }: KYCReviewPageSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
934
|
+
declare function KYCReviewPageSkeleton({ screenId, onClose, step, totalSteps, containerMode, backLabel, closeLabel, }: KYCReviewPageSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
918
935
|
|
|
919
936
|
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;
|
|
937
|
+
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
938
|
|
|
922
939
|
interface HistoryDetailsLabels {
|
|
923
940
|
currencyLabel: string;
|
|
@@ -1779,6 +1796,22 @@ interface HistoryListItemData {
|
|
|
1779
1796
|
};
|
|
1780
1797
|
}
|
|
1781
1798
|
|
|
1799
|
+
interface HistoryStatusLabels {
|
|
1800
|
+
success: string;
|
|
1801
|
+
pending: string;
|
|
1802
|
+
failed: string;
|
|
1803
|
+
refunded: string;
|
|
1804
|
+
}
|
|
1805
|
+
interface HistoryListItemLabels {
|
|
1806
|
+
swap: string;
|
|
1807
|
+
receivedPrefix: string;
|
|
1808
|
+
sentPrefix: string;
|
|
1809
|
+
depositPrefix: string;
|
|
1810
|
+
withdrawPrefix: string;
|
|
1811
|
+
redeemPrefix: string;
|
|
1812
|
+
statusLabels: HistoryStatusLabels;
|
|
1813
|
+
}
|
|
1814
|
+
|
|
1782
1815
|
interface SwapHistoryLabels {
|
|
1783
1816
|
title?: string;
|
|
1784
1817
|
subtitle?: string;
|
|
@@ -1788,10 +1821,12 @@ interface SwapHistoryLabels {
|
|
|
1788
1821
|
emptyTitle: string;
|
|
1789
1822
|
emptyDescription: string;
|
|
1790
1823
|
loadMoreLabel: string;
|
|
1824
|
+
historyItem: HistoryListItemLabels;
|
|
1825
|
+
locale: string;
|
|
1791
1826
|
}
|
|
1792
1827
|
|
|
1793
1828
|
interface SwapHistoryViewProps {
|
|
1794
|
-
labels
|
|
1829
|
+
labels: SwapHistoryLabels;
|
|
1795
1830
|
isLoading: boolean;
|
|
1796
1831
|
items: HistoryListItemData[];
|
|
1797
1832
|
onItemClick?: (itemId: string) => void;
|
|
@@ -1818,23 +1853,20 @@ type SwapHistoryViewSimpleProps = Omit<SwapHistoryViewProps, 'onItemClick' | 'pa
|
|
|
1818
1853
|
};
|
|
1819
1854
|
declare const SwapHistoryViewSimple: React__default.FC<SwapHistoryViewSimpleProps>;
|
|
1820
1855
|
|
|
1821
|
-
interface HistoryListItemLabels {
|
|
1822
|
-
swap?: string;
|
|
1823
|
-
}
|
|
1824
|
-
|
|
1825
1856
|
interface HistoryListItemProps {
|
|
1826
1857
|
item: HistoryListItemData;
|
|
1827
1858
|
onClick?: () => void;
|
|
1828
1859
|
className?: string;
|
|
1829
1860
|
statusLabel?: string;
|
|
1830
1861
|
statusTitle?: string;
|
|
1831
|
-
labels
|
|
1862
|
+
labels: HistoryListItemLabels;
|
|
1832
1863
|
}
|
|
1833
1864
|
declare const HistoryListItem: React__default.FC<HistoryListItemProps>;
|
|
1834
1865
|
|
|
1835
1866
|
interface HistoryListItemSimpleProps {
|
|
1836
1867
|
item: HistoryListItemData;
|
|
1837
|
-
labels
|
|
1868
|
+
labels: HistoryListItemLabels;
|
|
1869
|
+
locale: string;
|
|
1838
1870
|
}
|
|
1839
1871
|
declare const HistoryListItemSimple: React$1.FC<HistoryListItemSimpleProps>;
|
|
1840
1872
|
|
|
@@ -2163,6 +2195,12 @@ interface EarnDesktopLabels {
|
|
|
2163
2195
|
riskLow?: string;
|
|
2164
2196
|
riskMedium?: string;
|
|
2165
2197
|
riskHigh?: string;
|
|
2198
|
+
cardWithdrawLabel?: string;
|
|
2199
|
+
cardInvestedLabel?: string;
|
|
2200
|
+
cardHistoryTitle?: string;
|
|
2201
|
+
cardHistoryDepositedLabel?: string;
|
|
2202
|
+
cardHistoryWithdrawnLabel?: string;
|
|
2203
|
+
cardHistoryInterestReceivedLabel?: string;
|
|
2166
2204
|
}
|
|
2167
2205
|
|
|
2168
2206
|
interface EarnDesktopViewProps {
|
|
@@ -2188,7 +2226,7 @@ interface EarnCategoryDefinition {
|
|
|
2188
2226
|
title: string;
|
|
2189
2227
|
assetFilter: string[];
|
|
2190
2228
|
}
|
|
2191
|
-
declare const EARN_CATEGORY_DEFINITIONS: EarnCategoryDefinition[];
|
|
2229
|
+
declare const EARN_CATEGORY_DEFINITIONS: Omit<EarnCategoryDefinition, 'alt' | 'title'>[];
|
|
2192
2230
|
interface EarnStrategyInfo {
|
|
2193
2231
|
id: string;
|
|
2194
2232
|
assetName: string;
|
|
@@ -2254,8 +2292,8 @@ interface EarnDesktopViewSimpleProps extends Partial<EarnDesktopViewProps> {
|
|
|
2254
2292
|
onHistoryDetail?: (historyItemId: string, isDeposit: boolean) => void;
|
|
2255
2293
|
/** Called when user clicks the history button */
|
|
2256
2294
|
onHistory?: () => void;
|
|
2257
|
-
/**
|
|
2258
|
-
categories
|
|
2295
|
+
/** Category definitions (titles, alt text, asset filters). Consumer must provide translated alt/title. */
|
|
2296
|
+
categories: EarnCategoryDefinition[];
|
|
2259
2297
|
}
|
|
2260
2298
|
declare const EarnDesktopViewSimple: React__default.FC<EarnDesktopViewSimpleProps>;
|
|
2261
2299
|
|
|
@@ -2271,7 +2309,7 @@ interface HistoryListViewProps {
|
|
|
2271
2309
|
onItemClick?: (id: string) => void;
|
|
2272
2310
|
itemClassName?: string;
|
|
2273
2311
|
itemVariant?: 'subtle' | 'raised';
|
|
2274
|
-
labels
|
|
2312
|
+
labels: HistoryListItemLabels;
|
|
2275
2313
|
}
|
|
2276
2314
|
/**
|
|
2277
2315
|
* History list view.
|
|
@@ -2328,6 +2366,7 @@ interface EarnOverviewViewProps {
|
|
|
2328
2366
|
loadMoreLabel: string;
|
|
2329
2367
|
emptyTitle: string;
|
|
2330
2368
|
emptyDescription: string;
|
|
2369
|
+
itemLabels: HistoryListItemLabels;
|
|
2331
2370
|
};
|
|
2332
2371
|
}
|
|
2333
2372
|
declare const EarnOverviewView: React__default.FC<EarnOverviewViewProps>;
|
|
@@ -3040,6 +3079,21 @@ interface OnchainWithdrawProcessingSimpleViewProps extends OnchainWithdrawProces
|
|
|
3040
3079
|
}
|
|
3041
3080
|
declare const OnchainWithdrawProcessingSimpleView: React$1.FC<OnchainWithdrawProcessingSimpleViewProps>;
|
|
3042
3081
|
|
|
3082
|
+
interface OnchainWithdrawSignatureWarningLabels {
|
|
3083
|
+
closeAriaLabel: string;
|
|
3084
|
+
title: string;
|
|
3085
|
+
subtitle: string;
|
|
3086
|
+
sendingLabel: string;
|
|
3087
|
+
destinationLabel: string;
|
|
3088
|
+
detailsToggleLabel: string;
|
|
3089
|
+
detailsAriaLabel: string;
|
|
3090
|
+
withdrawAmountLabel: string;
|
|
3091
|
+
blockchainCostLabel: string;
|
|
3092
|
+
receiveLabel: string;
|
|
3093
|
+
cancelLabel: string;
|
|
3094
|
+
retryLabel: string;
|
|
3095
|
+
}
|
|
3096
|
+
|
|
3043
3097
|
interface OnchainWithdrawSignatureWarningViewProps {
|
|
3044
3098
|
tokenSymbol: string;
|
|
3045
3099
|
tokenLogoURI?: string | null;
|
|
@@ -3051,13 +3105,14 @@ interface OnchainWithdrawSignatureWarningViewProps {
|
|
|
3051
3105
|
onCancel: () => void;
|
|
3052
3106
|
onTryAgain: () => void;
|
|
3053
3107
|
className?: string;
|
|
3108
|
+
labels: OnchainWithdrawSignatureWarningLabels;
|
|
3054
3109
|
}
|
|
3055
|
-
declare function OnchainWithdrawSignatureWarningView({ tokenSymbol, tokenLogoURI, formattedAmount, chainName, chainIconUrl, destinationAddress, blockchainCost, onCancel, onTryAgain, className, }: OnchainWithdrawSignatureWarningViewProps): react_jsx_runtime.JSX.Element;
|
|
3110
|
+
declare function OnchainWithdrawSignatureWarningView({ tokenSymbol, tokenLogoURI, formattedAmount, chainName, chainIconUrl, destinationAddress, blockchainCost, onCancel, onTryAgain, className, labels, }: OnchainWithdrawSignatureWarningViewProps): react_jsx_runtime.JSX.Element;
|
|
3056
3111
|
|
|
3057
3112
|
declare const OnchainWithdrawSignatureWarningSimpleView: React$1.FC<OnchainWithdrawSignatureWarningViewProps>;
|
|
3058
3113
|
|
|
3059
3114
|
interface KycLoadingViewProps {
|
|
3060
|
-
message
|
|
3115
|
+
message: string;
|
|
3061
3116
|
}
|
|
3062
3117
|
declare function KycLoadingView({ message }: KycLoadingViewProps): react_jsx_runtime.JSX.Element;
|
|
3063
3118
|
|
|
@@ -3149,6 +3204,16 @@ interface OnrampPixcodeViewProps {
|
|
|
3149
3204
|
}
|
|
3150
3205
|
declare function OnrampPixcodeView({ pixCode, summaryTitle, summaryItems, isLoadingQuote, remainingLabel, isExpired, copied, isRegenerating, onCopy, onRegenerate, qrCodeElement, className, }: OnrampPixcodeViewProps): react_jsx_runtime.JSX.Element;
|
|
3151
3206
|
|
|
3207
|
+
interface OnrampSuccessLabels {
|
|
3208
|
+
title: string;
|
|
3209
|
+
descriptionTemplate: string;
|
|
3210
|
+
depositLabel: string;
|
|
3211
|
+
newDepositAriaLabel: string;
|
|
3212
|
+
newDepositLabel: string;
|
|
3213
|
+
goToDashboardAriaLabel: string;
|
|
3214
|
+
goToDashboardLabel: string;
|
|
3215
|
+
}
|
|
3216
|
+
|
|
3152
3217
|
interface OnrampSuccessViewProps {
|
|
3153
3218
|
amount?: string;
|
|
3154
3219
|
summaryTitle?: string;
|
|
@@ -3161,11 +3226,31 @@ interface OnrampSuccessViewProps {
|
|
|
3161
3226
|
onNewDeposit?: () => void;
|
|
3162
3227
|
onGoToDashboard?: () => void;
|
|
3163
3228
|
className?: string;
|
|
3229
|
+
labels: OnrampSuccessLabels;
|
|
3164
3230
|
}
|
|
3165
|
-
declare function OnrampSuccessView({ amount, summaryTitle, summaryItems, onNewDeposit, onGoToDashboard, className, }: OnrampSuccessViewProps): react_jsx_runtime.JSX.Element;
|
|
3231
|
+
declare function OnrampSuccessView({ amount, summaryTitle, summaryItems, onNewDeposit, onGoToDashboard, className, labels, }: OnrampSuccessViewProps): react_jsx_runtime.JSX.Element;
|
|
3166
3232
|
|
|
3167
3233
|
declare const OnrampSuccessSimpleView: React$1.FC<OnrampSuccessViewProps>;
|
|
3168
3234
|
|
|
3235
|
+
interface OfframpInputFormLabels {
|
|
3236
|
+
backAriaLabel: string;
|
|
3237
|
+
backLabel: string;
|
|
3238
|
+
title: string;
|
|
3239
|
+
subtitle: string;
|
|
3240
|
+
balanceLabel: string;
|
|
3241
|
+
amountQuestion: string;
|
|
3242
|
+
amountAriaLabel: string;
|
|
3243
|
+
maxAriaLabel: string;
|
|
3244
|
+
maxLabel: string;
|
|
3245
|
+
activeWithdrawalWarning: string;
|
|
3246
|
+
pixKeyQuestion: string;
|
|
3247
|
+
pixKeyPlaceholder: string;
|
|
3248
|
+
pixKeyAriaLabel: string;
|
|
3249
|
+
pixKeyInfo: string;
|
|
3250
|
+
signatureInfo: string;
|
|
3251
|
+
submitAriaLabel: string;
|
|
3252
|
+
}
|
|
3253
|
+
|
|
3169
3254
|
interface OfframpInputFormViewProps {
|
|
3170
3255
|
brlaBalance: string;
|
|
3171
3256
|
amount: string;
|
|
@@ -3198,8 +3283,9 @@ interface OfframpInputFormViewProps {
|
|
|
3198
3283
|
/** URL for the flag icon displayed in the amount input. Defaults to '/brazil-flag-rounded.png'. */
|
|
3199
3284
|
flagIconUrl?: string;
|
|
3200
3285
|
className?: string;
|
|
3286
|
+
labels: OfframpInputFormLabels;
|
|
3201
3287
|
}
|
|
3202
|
-
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;
|
|
3288
|
+
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;
|
|
3203
3289
|
|
|
3204
3290
|
interface OfframpInputFormSimpleViewProps extends OfframpInputFormViewProps {
|
|
3205
3291
|
activeTab?: 'crypto' | 'pix';
|
|
@@ -3211,6 +3297,18 @@ interface OfframpInputFormSimpleViewProps extends OfframpInputFormViewProps {
|
|
|
3211
3297
|
}
|
|
3212
3298
|
declare const OfframpInputFormSimpleView: React__default.FC<OfframpInputFormSimpleViewProps>;
|
|
3213
3299
|
|
|
3300
|
+
interface OfframpProcessingLabels {
|
|
3301
|
+
closeAriaLabel: string;
|
|
3302
|
+
title: string;
|
|
3303
|
+
subtitle: string;
|
|
3304
|
+
amountLabel: string;
|
|
3305
|
+
prepareStepLabel: string;
|
|
3306
|
+
signatureStepLabel: string;
|
|
3307
|
+
pixTransferStepLabel: string;
|
|
3308
|
+
waitingButtonAriaLabel: string;
|
|
3309
|
+
waitingButtonLabel: string;
|
|
3310
|
+
}
|
|
3311
|
+
|
|
3214
3312
|
interface OfframpProcessingViewProps {
|
|
3215
3313
|
step?: 'creating_ticket' | 'transferring' | 'waiting_pix';
|
|
3216
3314
|
amount?: string;
|
|
@@ -3228,11 +3326,29 @@ interface OfframpProcessingViewProps {
|
|
|
3228
3326
|
/** URL for the token icon displayed in the summary row. Defaults to '/brladigital_32.webp'. */
|
|
3229
3327
|
tokenIconUrl?: string;
|
|
3230
3328
|
className?: string;
|
|
3329
|
+
labels: OfframpProcessingLabels;
|
|
3231
3330
|
}
|
|
3232
|
-
declare function OfframpProcessingView({ step, amount, summaryTitle, summaryItems, transferTxHash, onClose, closeIcon, tokenIconUrl, className, }: OfframpProcessingViewProps): react_jsx_runtime.JSX.Element;
|
|
3331
|
+
declare function OfframpProcessingView({ step, amount, summaryTitle, summaryItems, transferTxHash, onClose, closeIcon, tokenIconUrl, className, labels, }: OfframpProcessingViewProps): react_jsx_runtime.JSX.Element;
|
|
3233
3332
|
|
|
3234
3333
|
declare const OfframpProcessingSimpleView: React$1.FC<OfframpProcessingViewProps>;
|
|
3235
3334
|
|
|
3335
|
+
interface OfframpSuccessLabels {
|
|
3336
|
+
closeAriaLabel: string;
|
|
3337
|
+
title: string;
|
|
3338
|
+
subtitle: string;
|
|
3339
|
+
amountLabel: string;
|
|
3340
|
+
withdrawAmountLabel: string;
|
|
3341
|
+
feeLabel: string;
|
|
3342
|
+
methodLabel: string;
|
|
3343
|
+
methodValue: string;
|
|
3344
|
+
statusLabel: string;
|
|
3345
|
+
statusValue: string;
|
|
3346
|
+
transactionIdLabel: string;
|
|
3347
|
+
dateLabel: string;
|
|
3348
|
+
confirmAriaLabel: string;
|
|
3349
|
+
confirmLabel: string;
|
|
3350
|
+
}
|
|
3351
|
+
|
|
3236
3352
|
interface OfframpSuccessViewProps {
|
|
3237
3353
|
amount?: string;
|
|
3238
3354
|
feesFormatted?: string;
|
|
@@ -3248,8 +3364,9 @@ interface OfframpSuccessViewProps {
|
|
|
3248
3364
|
/** URL for the token icon displayed in the summary row. Defaults to '/brladigital_32.webp'. */
|
|
3249
3365
|
tokenIconUrl?: string;
|
|
3250
3366
|
className?: string;
|
|
3367
|
+
labels: OfframpSuccessLabels;
|
|
3251
3368
|
}
|
|
3252
|
-
declare function OfframpSuccessView({ amount, feesFormatted, transactionId, date, onClose, onConfirm, closeIcon, arrowUpIcon, tokenIconUrl, className, }: OfframpSuccessViewProps): react_jsx_runtime.JSX.Element;
|
|
3369
|
+
declare function OfframpSuccessView({ amount, feesFormatted, transactionId, date, onClose, onConfirm, closeIcon, arrowUpIcon, tokenIconUrl, className, labels, }: OfframpSuccessViewProps): react_jsx_runtime.JSX.Element;
|
|
3253
3370
|
|
|
3254
3371
|
declare const OfframpSuccessSimpleView: React$1.FC<OfframpSuccessViewProps>;
|
|
3255
3372
|
|
|
@@ -3287,7 +3404,11 @@ interface DashboardCardProps {
|
|
|
3287
3404
|
}
|
|
3288
3405
|
declare const DashboardCard: React__default.FC<DashboardCardProps>;
|
|
3289
3406
|
|
|
3290
|
-
|
|
3407
|
+
interface DashboardTransactionsPlaceholderProps {
|
|
3408
|
+
title: string;
|
|
3409
|
+
description: string;
|
|
3410
|
+
}
|
|
3411
|
+
declare const DashboardTransactionsPlaceholder: React__default.FC<DashboardTransactionsPlaceholderProps>;
|
|
3291
3412
|
|
|
3292
3413
|
interface DashboardBalancesBreakdownProps {
|
|
3293
3414
|
isLoadingBalances: boolean;
|
|
@@ -3297,12 +3418,23 @@ interface DashboardBalancesBreakdownProps {
|
|
|
3297
3418
|
}
|
|
3298
3419
|
declare const DashboardBalancesBreakdown: React__default.FC<DashboardBalancesBreakdownProps>;
|
|
3299
3420
|
|
|
3421
|
+
interface DashboardTokenListLabels {
|
|
3422
|
+
title: string;
|
|
3423
|
+
searchPlaceholder: string;
|
|
3424
|
+
emptySearchTitle: string;
|
|
3425
|
+
emptySearchDescription: string;
|
|
3426
|
+
emptyDepositTitle: string;
|
|
3427
|
+
emptyDepositDescription: string;
|
|
3428
|
+
depositCtaLabel: string;
|
|
3429
|
+
}
|
|
3430
|
+
|
|
3300
3431
|
interface DashboardTokenListViewProps {
|
|
3301
3432
|
tokens: DashboardTokenItem[];
|
|
3302
3433
|
isLoading: boolean;
|
|
3303
3434
|
className?: string;
|
|
3304
3435
|
showCard?: boolean;
|
|
3305
3436
|
onDepositClick?: () => void;
|
|
3437
|
+
labels: DashboardTokenListLabels;
|
|
3306
3438
|
}
|
|
3307
3439
|
declare const DashboardTokenListView: React__default.FC<DashboardTokenListViewProps>;
|
|
3308
3440
|
|
|
@@ -3315,6 +3447,18 @@ interface DashboardStrategiesListViewProps {
|
|
|
3315
3447
|
}
|
|
3316
3448
|
declare const DashboardStrategiesListView: React__default.FC<DashboardStrategiesListViewProps>;
|
|
3317
3449
|
|
|
3450
|
+
interface DashboardPortfolioLabels {
|
|
3451
|
+
title: string;
|
|
3452
|
+
depositLabel: string;
|
|
3453
|
+
withdrawLabel: string;
|
|
3454
|
+
swapLabel: string;
|
|
3455
|
+
}
|
|
3456
|
+
interface DashboardPortfolioSimpleLabels extends DashboardPortfolioLabels {
|
|
3457
|
+
totalLabel: string;
|
|
3458
|
+
totalDescription: string;
|
|
3459
|
+
assetsLabel: string;
|
|
3460
|
+
}
|
|
3461
|
+
|
|
3318
3462
|
interface DashboardPortfolioViewProps {
|
|
3319
3463
|
formattedTotalValue: string;
|
|
3320
3464
|
isLoading: boolean;
|
|
@@ -3323,14 +3467,23 @@ interface DashboardPortfolioViewProps {
|
|
|
3323
3467
|
onSwapClick: () => void;
|
|
3324
3468
|
formattedTokenPositions: string;
|
|
3325
3469
|
formattedEarnPositions: string;
|
|
3470
|
+
labels: DashboardPortfolioLabels;
|
|
3326
3471
|
}
|
|
3327
3472
|
declare const DashboardPortfolioView: React__default.FC<DashboardPortfolioViewProps>;
|
|
3328
3473
|
|
|
3329
|
-
interface DashboardPortfolioViewSimpleProps extends DashboardPortfolioViewProps {
|
|
3474
|
+
interface DashboardPortfolioViewSimpleProps extends Omit<DashboardPortfolioViewProps, 'labels'> {
|
|
3330
3475
|
assetCount?: number | string;
|
|
3476
|
+
labels: DashboardPortfolioSimpleLabels;
|
|
3331
3477
|
}
|
|
3332
3478
|
declare const DashboardPortfolioViewSimple: React__default.FC<DashboardPortfolioViewSimpleProps>;
|
|
3333
3479
|
|
|
3480
|
+
interface DashboardTokensLabels {
|
|
3481
|
+
tokensTabLabel: string;
|
|
3482
|
+
strategiesTabLabel: string;
|
|
3483
|
+
mobileTokensTitle: string;
|
|
3484
|
+
tokenList: DashboardTokenListLabels;
|
|
3485
|
+
}
|
|
3486
|
+
|
|
3334
3487
|
interface AssetFilterOption {
|
|
3335
3488
|
id: string;
|
|
3336
3489
|
label: string;
|
|
@@ -3350,11 +3503,18 @@ interface DashboardTokensViewProps {
|
|
|
3350
3503
|
onFilterSelect?: (id: string) => void;
|
|
3351
3504
|
/** Called when history button is clicked */
|
|
3352
3505
|
onHistoryClick?: () => void;
|
|
3506
|
+
labels: DashboardTokensLabels;
|
|
3353
3507
|
}
|
|
3354
3508
|
declare const DashboardTokensView: React__default.FC<DashboardTokensViewProps>;
|
|
3355
3509
|
|
|
3356
3510
|
declare const DashboardTokensViewSimple: React__default.FC<DashboardTokensViewProps>;
|
|
3357
3511
|
|
|
3512
|
+
interface DashboardRecentTransactionsLabels extends HistoryListItemLabels {
|
|
3513
|
+
title: string;
|
|
3514
|
+
viewAllLabel: string;
|
|
3515
|
+
emptyTitle: string;
|
|
3516
|
+
emptyDescription: string;
|
|
3517
|
+
}
|
|
3358
3518
|
interface DashboardRecentTransactionsViewProps {
|
|
3359
3519
|
isLoading: boolean;
|
|
3360
3520
|
isEmpty: boolean;
|
|
@@ -3362,12 +3522,12 @@ interface DashboardRecentTransactionsViewProps {
|
|
|
3362
3522
|
onViewAllClick?: () => void;
|
|
3363
3523
|
onItemClick?: (id: string) => void;
|
|
3364
3524
|
onClose?: () => void;
|
|
3365
|
-
labels
|
|
3525
|
+
labels: DashboardRecentTransactionsLabels;
|
|
3526
|
+
locale: string;
|
|
3366
3527
|
}
|
|
3367
3528
|
declare const DashboardRecentTransactionsView: React__default.FC<DashboardRecentTransactionsViewProps>;
|
|
3368
3529
|
|
|
3369
|
-
|
|
3370
|
-
declare const DashboardRecentTransactionsViewSimple: React__default.FC<DashboardRecentTransactionsViewSimpleProps>;
|
|
3530
|
+
declare const DashboardRecentTransactionsViewSimple: React__default.FC<DashboardRecentTransactionsViewProps>;
|
|
3371
3531
|
|
|
3372
3532
|
interface DashboardInvestmentOpportunitiesViewProps {
|
|
3373
3533
|
isLoadingBalances: boolean;
|
|
@@ -3377,6 +3537,19 @@ interface DashboardInvestmentOpportunitiesViewProps {
|
|
|
3377
3537
|
}
|
|
3378
3538
|
declare const DashboardInvestmentOpportunitiesView: React__default.FC<DashboardInvestmentOpportunitiesViewProps>;
|
|
3379
3539
|
|
|
3540
|
+
interface DashboardLabels {
|
|
3541
|
+
quickActionsTitle: string;
|
|
3542
|
+
depositLabel: string;
|
|
3543
|
+
withdrawLabel: string;
|
|
3544
|
+
swapLabel: string;
|
|
3545
|
+
}
|
|
3546
|
+
interface DashboardSimpleLabels {
|
|
3547
|
+
pageTitle: string;
|
|
3548
|
+
pageSubtitle: string;
|
|
3549
|
+
depositLabel: string;
|
|
3550
|
+
withdrawLabel: string;
|
|
3551
|
+
}
|
|
3552
|
+
|
|
3380
3553
|
interface DashboardViewProps {
|
|
3381
3554
|
portfolio: DashboardPortfolioViewProps;
|
|
3382
3555
|
tokens: DashboardTokensViewProps;
|
|
@@ -3391,10 +3564,16 @@ interface DashboardViewProps {
|
|
|
3391
3564
|
imageUrl: string;
|
|
3392
3565
|
altText: string;
|
|
3393
3566
|
};
|
|
3567
|
+
labels: DashboardLabels;
|
|
3394
3568
|
}
|
|
3395
3569
|
declare const DashboardView: React__default.FC<DashboardViewProps>;
|
|
3396
3570
|
|
|
3397
|
-
|
|
3571
|
+
interface DashboardViewSimpleProps extends Omit<DashboardViewProps, 'investmentOpportunities' | 'banner' | 'portfolio' | 'labels'> {
|
|
3572
|
+
portfolio: Omit<DashboardPortfolioViewProps, 'labels'> & {
|
|
3573
|
+
labels: DashboardPortfolioSimpleLabels;
|
|
3574
|
+
};
|
|
3575
|
+
labels: DashboardSimpleLabels;
|
|
3576
|
+
}
|
|
3398
3577
|
declare const DashboardViewSimple: React__default.FC<DashboardViewSimpleProps>;
|
|
3399
3578
|
|
|
3400
3579
|
/**
|
|
@@ -3430,4 +3609,4 @@ interface DeframeTheme {
|
|
|
3430
3609
|
colors?: DeframeThemeColors;
|
|
3431
3610
|
}
|
|
3432
3611
|
|
|
3433
|
-
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, type DashboardRecentTransactionsViewSimpleProps, 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 };
|
|
3612
|
+
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 };
|