@deframe-sdk/components 0.1.47 → 0.1.49
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 +98 -24
- package/dist/index.d.ts +98 -24
- package/dist/index.js +1114 -1036
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1114 -1037
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -627,7 +627,7 @@ declare const MediumRiskBadge: React__default.FC<MediumRiskBadgeProps>;
|
|
|
627
627
|
|
|
628
628
|
interface LowRiskBadgeProps {
|
|
629
629
|
className?: string;
|
|
630
|
-
label
|
|
630
|
+
label?: string;
|
|
631
631
|
}
|
|
632
632
|
declare const LowRiskBadge: React__default.FC<LowRiskBadgeProps>;
|
|
633
633
|
|
|
@@ -1310,7 +1310,7 @@ interface SwapProcessingViewProps {
|
|
|
1310
1310
|
}
|
|
1311
1311
|
declare const SwapProcessingView: React__default.FC<SwapProcessingViewProps>;
|
|
1312
1312
|
|
|
1313
|
-
declare const SwapProcessingViewSimple: React__default.FC
|
|
1313
|
+
declare const SwapProcessingViewSimple: React__default.FC<Partial<SwapProcessingViewProps>>;
|
|
1314
1314
|
|
|
1315
1315
|
interface SwapCrossChainProcessingViewProps {
|
|
1316
1316
|
fromTokenSymbol: string;
|
|
@@ -1410,7 +1410,7 @@ interface SwapSuccessViewProps {
|
|
|
1410
1410
|
}
|
|
1411
1411
|
declare const SwapSuccessView: React__default.FC<SwapSuccessViewProps>;
|
|
1412
1412
|
|
|
1413
|
-
declare const SwapSuccessViewSimple: React__default.FC
|
|
1413
|
+
declare const SwapSuccessViewSimple: React__default.FC<Partial<SwapSuccessViewProps>>;
|
|
1414
1414
|
|
|
1415
1415
|
interface SwapTransactionFailedViewProps {
|
|
1416
1416
|
fromTokenSymbol: string;
|
|
@@ -1779,24 +1779,43 @@ interface HistoryListItemData {
|
|
|
1779
1779
|
};
|
|
1780
1780
|
}
|
|
1781
1781
|
|
|
1782
|
+
interface HistoryStatusLabels {
|
|
1783
|
+
success: string;
|
|
1784
|
+
pending: string;
|
|
1785
|
+
failed: string;
|
|
1786
|
+
refunded: string;
|
|
1787
|
+
}
|
|
1788
|
+
interface HistoryListItemLabels {
|
|
1789
|
+
swap: string;
|
|
1790
|
+
receivedPrefix: string;
|
|
1791
|
+
sentPrefix: string;
|
|
1792
|
+
depositPrefix: string;
|
|
1793
|
+
withdrawPrefix: string;
|
|
1794
|
+
redeemPrefix: string;
|
|
1795
|
+
statusLabels: HistoryStatusLabels;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1782
1798
|
interface SwapHistoryLabels {
|
|
1799
|
+
title?: string;
|
|
1800
|
+
subtitle?: string;
|
|
1801
|
+
searchPlaceholder?: string;
|
|
1802
|
+
searchAriaLabel?: string;
|
|
1803
|
+
closeAriaLabel?: string;
|
|
1783
1804
|
emptyTitle: string;
|
|
1784
1805
|
emptyDescription: string;
|
|
1785
1806
|
loadMoreLabel: string;
|
|
1807
|
+
historyItem: HistoryListItemLabels;
|
|
1808
|
+
locale: string;
|
|
1786
1809
|
}
|
|
1787
1810
|
|
|
1788
1811
|
interface SwapHistoryViewProps {
|
|
1789
|
-
labels
|
|
1812
|
+
labels: SwapHistoryLabels;
|
|
1790
1813
|
isLoading: boolean;
|
|
1791
1814
|
items: HistoryListItemData[];
|
|
1792
1815
|
onItemClick?: (itemId: string) => void;
|
|
1793
1816
|
onClose?: () => void;
|
|
1794
1817
|
pageSize?: number;
|
|
1795
1818
|
className?: string;
|
|
1796
|
-
/** Header title (default: "Histórico de Swap") */
|
|
1797
|
-
title?: string;
|
|
1798
|
-
/** Header subtitle (default: "Todas as transações de swap") */
|
|
1799
|
-
subtitle?: string;
|
|
1800
1819
|
}
|
|
1801
1820
|
declare const SwapHistoryView: React__default.FC<SwapHistoryViewProps>;
|
|
1802
1821
|
|
|
@@ -1812,28 +1831,25 @@ interface SwapHistoryItem {
|
|
|
1812
1831
|
dateLabel: string;
|
|
1813
1832
|
}
|
|
1814
1833
|
|
|
1815
|
-
type SwapHistoryViewSimpleProps = Omit<SwapHistoryViewProps, '
|
|
1834
|
+
type SwapHistoryViewSimpleProps = Omit<SwapHistoryViewProps, 'onItemClick' | 'pageSize'> & {
|
|
1816
1835
|
onClose: () => void;
|
|
1817
1836
|
};
|
|
1818
1837
|
declare const SwapHistoryViewSimple: React__default.FC<SwapHistoryViewSimpleProps>;
|
|
1819
1838
|
|
|
1820
|
-
interface HistoryListItemLabels {
|
|
1821
|
-
swap?: string;
|
|
1822
|
-
}
|
|
1823
|
-
|
|
1824
1839
|
interface HistoryListItemProps {
|
|
1825
1840
|
item: HistoryListItemData;
|
|
1826
1841
|
onClick?: () => void;
|
|
1827
1842
|
className?: string;
|
|
1828
1843
|
statusLabel?: string;
|
|
1829
1844
|
statusTitle?: string;
|
|
1830
|
-
labels
|
|
1845
|
+
labels: HistoryListItemLabels;
|
|
1831
1846
|
}
|
|
1832
1847
|
declare const HistoryListItem: React__default.FC<HistoryListItemProps>;
|
|
1833
1848
|
|
|
1834
1849
|
interface HistoryListItemSimpleProps {
|
|
1835
1850
|
item: HistoryListItemData;
|
|
1836
|
-
labels
|
|
1851
|
+
labels: HistoryListItemLabels;
|
|
1852
|
+
locale: string;
|
|
1837
1853
|
}
|
|
1838
1854
|
declare const HistoryListItemSimple: React$1.FC<HistoryListItemSimpleProps>;
|
|
1839
1855
|
|
|
@@ -1999,7 +2015,7 @@ interface StrategyGridCardProps {
|
|
|
1999
2015
|
title: string;
|
|
2000
2016
|
subtitle: string;
|
|
2001
2017
|
apyFormatted: string;
|
|
2002
|
-
apyLabel
|
|
2018
|
+
apyLabel?: string;
|
|
2003
2019
|
onClick?: () => void;
|
|
2004
2020
|
className?: string;
|
|
2005
2021
|
}
|
|
@@ -2038,10 +2054,10 @@ interface GroupedStrategyItem extends GroupedStrategyListItem {
|
|
|
2038
2054
|
apyFormatted: string;
|
|
2039
2055
|
}
|
|
2040
2056
|
interface GroupedStrategyListViewProps {
|
|
2041
|
-
isLoading: boolean;
|
|
2042
2057
|
loadingLabel: string;
|
|
2043
|
-
|
|
2058
|
+
isLoading: boolean;
|
|
2044
2059
|
errorLabel: string;
|
|
2060
|
+
error: Error | null;
|
|
2045
2061
|
investedLabel: string;
|
|
2046
2062
|
investedItems: GroupedInvestedItem[];
|
|
2047
2063
|
bestPerformanceLabel: string;
|
|
@@ -2138,6 +2154,38 @@ interface EarnRecentTransactionsViewProps {
|
|
|
2138
2154
|
*/
|
|
2139
2155
|
declare const EarnRecentTransactionsView: React__default.FC<EarnRecentTransactionsViewProps>;
|
|
2140
2156
|
|
|
2157
|
+
interface EarnDesktopLabels {
|
|
2158
|
+
pageTitle?: string;
|
|
2159
|
+
pageSubtitle?: string;
|
|
2160
|
+
yourStrategiesLabel?: string;
|
|
2161
|
+
historyAriaLabel?: string;
|
|
2162
|
+
columnStrategy?: string;
|
|
2163
|
+
columnYield?: string;
|
|
2164
|
+
columnInvested?: string;
|
|
2165
|
+
totalInvestedLabel?: string;
|
|
2166
|
+
totalInvestedDescription?: string;
|
|
2167
|
+
accumulatedEarningsLabel?: string;
|
|
2168
|
+
accumulatedEarningsDescription?: string;
|
|
2169
|
+
stablecoinsBannerDescription?: string;
|
|
2170
|
+
realsBannerDescription?: string;
|
|
2171
|
+
emptyStateTitle?: string;
|
|
2172
|
+
emptyStateDescription?: string;
|
|
2173
|
+
groupedBackLabel?: string;
|
|
2174
|
+
groupedSubtitle?: string;
|
|
2175
|
+
groupedEmptyMessage?: string;
|
|
2176
|
+
groupedYieldLabel?: string;
|
|
2177
|
+
investLabel?: string;
|
|
2178
|
+
riskLow?: string;
|
|
2179
|
+
riskMedium?: string;
|
|
2180
|
+
riskHigh?: string;
|
|
2181
|
+
cardWithdrawLabel?: string;
|
|
2182
|
+
cardInvestedLabel?: string;
|
|
2183
|
+
cardHistoryTitle?: string;
|
|
2184
|
+
cardHistoryDepositedLabel?: string;
|
|
2185
|
+
cardHistoryWithdrawnLabel?: string;
|
|
2186
|
+
cardHistoryInterestReceivedLabel?: string;
|
|
2187
|
+
}
|
|
2188
|
+
|
|
2141
2189
|
interface EarnDesktopViewProps {
|
|
2142
2190
|
isLoading: boolean;
|
|
2143
2191
|
loadingSkeleton?: React__default.ReactNode;
|
|
@@ -2146,6 +2194,7 @@ interface EarnDesktopViewProps {
|
|
|
2146
2194
|
explore: EarnExploreGridViewProps;
|
|
2147
2195
|
transactions: EarnRecentTransactionsViewProps;
|
|
2148
2196
|
className?: string;
|
|
2197
|
+
labels?: EarnDesktopLabels;
|
|
2149
2198
|
}
|
|
2150
2199
|
/**
|
|
2151
2200
|
* Desktop layout for Earn page.
|
|
@@ -2153,6 +2202,14 @@ interface EarnDesktopViewProps {
|
|
|
2153
2202
|
*/
|
|
2154
2203
|
declare const EarnDesktopView: React__default.FC<EarnDesktopViewProps>;
|
|
2155
2204
|
|
|
2205
|
+
interface EarnCategoryDefinition {
|
|
2206
|
+
id: string;
|
|
2207
|
+
imageUrl: string;
|
|
2208
|
+
alt: string;
|
|
2209
|
+
title: string;
|
|
2210
|
+
assetFilter: string[];
|
|
2211
|
+
}
|
|
2212
|
+
declare const EARN_CATEGORY_DEFINITIONS: Omit<EarnCategoryDefinition, 'alt' | 'title'>[];
|
|
2156
2213
|
interface EarnStrategyInfo {
|
|
2157
2214
|
id: string;
|
|
2158
2215
|
assetName: string;
|
|
@@ -2218,6 +2275,8 @@ interface EarnDesktopViewSimpleProps extends Partial<EarnDesktopViewProps> {
|
|
|
2218
2275
|
onHistoryDetail?: (historyItemId: string, isDeposit: boolean) => void;
|
|
2219
2276
|
/** Called when user clicks the history button */
|
|
2220
2277
|
onHistory?: () => void;
|
|
2278
|
+
/** Category definitions (titles, alt text, asset filters). Consumer must provide translated alt/title. */
|
|
2279
|
+
categories: EarnCategoryDefinition[];
|
|
2221
2280
|
}
|
|
2222
2281
|
declare const EarnDesktopViewSimple: React__default.FC<EarnDesktopViewSimpleProps>;
|
|
2223
2282
|
|
|
@@ -2233,7 +2292,7 @@ interface HistoryListViewProps {
|
|
|
2233
2292
|
onItemClick?: (id: string) => void;
|
|
2234
2293
|
itemClassName?: string;
|
|
2235
2294
|
itemVariant?: 'subtle' | 'raised';
|
|
2236
|
-
labels
|
|
2295
|
+
labels: HistoryListItemLabels;
|
|
2237
2296
|
}
|
|
2238
2297
|
/**
|
|
2239
2298
|
* History list view.
|
|
@@ -2290,6 +2349,7 @@ interface EarnOverviewViewProps {
|
|
|
2290
2349
|
loadMoreLabel: string;
|
|
2291
2350
|
emptyTitle: string;
|
|
2292
2351
|
emptyDescription: string;
|
|
2352
|
+
itemLabels: HistoryListItemLabels;
|
|
2293
2353
|
};
|
|
2294
2354
|
}
|
|
2295
2355
|
declare const EarnOverviewView: React__default.FC<EarnOverviewViewProps>;
|
|
@@ -2476,6 +2536,8 @@ interface EarnDepositFormViewProps {
|
|
|
2476
2536
|
}>;
|
|
2477
2537
|
submitDisabled: boolean;
|
|
2478
2538
|
submitButtonText: string;
|
|
2539
|
+
cancelLabel?: string;
|
|
2540
|
+
historyAriaLabel?: string;
|
|
2479
2541
|
}
|
|
2480
2542
|
declare const EarnDepositFormView: React__default.FC<EarnDepositFormViewProps>;
|
|
2481
2543
|
|
|
@@ -2533,6 +2595,8 @@ interface EarnWithdrawFormViewProps {
|
|
|
2533
2595
|
}>;
|
|
2534
2596
|
submitDisabled: boolean;
|
|
2535
2597
|
submitButtonText: string;
|
|
2598
|
+
cancelLabel?: string;
|
|
2599
|
+
historyAriaLabel?: string;
|
|
2536
2600
|
}
|
|
2537
2601
|
declare const EarnWithdrawFormView: React__default.FC<EarnWithdrawFormViewProps>;
|
|
2538
2602
|
|
|
@@ -3245,7 +3309,11 @@ interface DashboardCardProps {
|
|
|
3245
3309
|
}
|
|
3246
3310
|
declare const DashboardCard: React__default.FC<DashboardCardProps>;
|
|
3247
3311
|
|
|
3248
|
-
|
|
3312
|
+
interface DashboardTransactionsPlaceholderProps {
|
|
3313
|
+
title: string;
|
|
3314
|
+
description: string;
|
|
3315
|
+
}
|
|
3316
|
+
declare const DashboardTransactionsPlaceholder: React__default.FC<DashboardTransactionsPlaceholderProps>;
|
|
3249
3317
|
|
|
3250
3318
|
interface DashboardBalancesBreakdownProps {
|
|
3251
3319
|
isLoadingBalances: boolean;
|
|
@@ -3313,6 +3381,12 @@ declare const DashboardTokensView: React__default.FC<DashboardTokensViewProps>;
|
|
|
3313
3381
|
|
|
3314
3382
|
declare const DashboardTokensViewSimple: React__default.FC<DashboardTokensViewProps>;
|
|
3315
3383
|
|
|
3384
|
+
interface DashboardRecentTransactionsLabels extends HistoryListItemLabels {
|
|
3385
|
+
title: string;
|
|
3386
|
+
viewAllLabel: string;
|
|
3387
|
+
emptyTitle: string;
|
|
3388
|
+
emptyDescription: string;
|
|
3389
|
+
}
|
|
3316
3390
|
interface DashboardRecentTransactionsViewProps {
|
|
3317
3391
|
isLoading: boolean;
|
|
3318
3392
|
isEmpty: boolean;
|
|
@@ -3320,12 +3394,12 @@ interface DashboardRecentTransactionsViewProps {
|
|
|
3320
3394
|
onViewAllClick?: () => void;
|
|
3321
3395
|
onItemClick?: (id: string) => void;
|
|
3322
3396
|
onClose?: () => void;
|
|
3323
|
-
labels
|
|
3397
|
+
labels: DashboardRecentTransactionsLabels;
|
|
3398
|
+
locale: string;
|
|
3324
3399
|
}
|
|
3325
3400
|
declare const DashboardRecentTransactionsView: React__default.FC<DashboardRecentTransactionsViewProps>;
|
|
3326
3401
|
|
|
3327
|
-
|
|
3328
|
-
declare const DashboardRecentTransactionsViewSimple: React__default.FC<DashboardRecentTransactionsViewSimpleProps>;
|
|
3402
|
+
declare const DashboardRecentTransactionsViewSimple: React__default.FC<DashboardRecentTransactionsViewProps>;
|
|
3329
3403
|
|
|
3330
3404
|
interface DashboardInvestmentOpportunitiesViewProps {
|
|
3331
3405
|
isLoadingBalances: boolean;
|
|
@@ -3388,4 +3462,4 @@ interface DeframeTheme {
|
|
|
3388
3462
|
colors?: DeframeThemeColors;
|
|
3389
3463
|
}
|
|
3390
3464
|
|
|
3391
|
-
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, EarnAmountInputView, type EarnAmountInputViewProps, EarnBalanceCard, type EarnBalanceCardProps, EarnBytecodeErrorView, type EarnBytecodeErrorViewProps, 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 };
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -627,7 +627,7 @@ declare const MediumRiskBadge: React__default.FC<MediumRiskBadgeProps>;
|
|
|
627
627
|
|
|
628
628
|
interface LowRiskBadgeProps {
|
|
629
629
|
className?: string;
|
|
630
|
-
label
|
|
630
|
+
label?: string;
|
|
631
631
|
}
|
|
632
632
|
declare const LowRiskBadge: React__default.FC<LowRiskBadgeProps>;
|
|
633
633
|
|
|
@@ -1310,7 +1310,7 @@ interface SwapProcessingViewProps {
|
|
|
1310
1310
|
}
|
|
1311
1311
|
declare const SwapProcessingView: React__default.FC<SwapProcessingViewProps>;
|
|
1312
1312
|
|
|
1313
|
-
declare const SwapProcessingViewSimple: React__default.FC
|
|
1313
|
+
declare const SwapProcessingViewSimple: React__default.FC<Partial<SwapProcessingViewProps>>;
|
|
1314
1314
|
|
|
1315
1315
|
interface SwapCrossChainProcessingViewProps {
|
|
1316
1316
|
fromTokenSymbol: string;
|
|
@@ -1410,7 +1410,7 @@ interface SwapSuccessViewProps {
|
|
|
1410
1410
|
}
|
|
1411
1411
|
declare const SwapSuccessView: React__default.FC<SwapSuccessViewProps>;
|
|
1412
1412
|
|
|
1413
|
-
declare const SwapSuccessViewSimple: React__default.FC
|
|
1413
|
+
declare const SwapSuccessViewSimple: React__default.FC<Partial<SwapSuccessViewProps>>;
|
|
1414
1414
|
|
|
1415
1415
|
interface SwapTransactionFailedViewProps {
|
|
1416
1416
|
fromTokenSymbol: string;
|
|
@@ -1779,24 +1779,43 @@ interface HistoryListItemData {
|
|
|
1779
1779
|
};
|
|
1780
1780
|
}
|
|
1781
1781
|
|
|
1782
|
+
interface HistoryStatusLabels {
|
|
1783
|
+
success: string;
|
|
1784
|
+
pending: string;
|
|
1785
|
+
failed: string;
|
|
1786
|
+
refunded: string;
|
|
1787
|
+
}
|
|
1788
|
+
interface HistoryListItemLabels {
|
|
1789
|
+
swap: string;
|
|
1790
|
+
receivedPrefix: string;
|
|
1791
|
+
sentPrefix: string;
|
|
1792
|
+
depositPrefix: string;
|
|
1793
|
+
withdrawPrefix: string;
|
|
1794
|
+
redeemPrefix: string;
|
|
1795
|
+
statusLabels: HistoryStatusLabels;
|
|
1796
|
+
}
|
|
1797
|
+
|
|
1782
1798
|
interface SwapHistoryLabels {
|
|
1799
|
+
title?: string;
|
|
1800
|
+
subtitle?: string;
|
|
1801
|
+
searchPlaceholder?: string;
|
|
1802
|
+
searchAriaLabel?: string;
|
|
1803
|
+
closeAriaLabel?: string;
|
|
1783
1804
|
emptyTitle: string;
|
|
1784
1805
|
emptyDescription: string;
|
|
1785
1806
|
loadMoreLabel: string;
|
|
1807
|
+
historyItem: HistoryListItemLabels;
|
|
1808
|
+
locale: string;
|
|
1786
1809
|
}
|
|
1787
1810
|
|
|
1788
1811
|
interface SwapHistoryViewProps {
|
|
1789
|
-
labels
|
|
1812
|
+
labels: SwapHistoryLabels;
|
|
1790
1813
|
isLoading: boolean;
|
|
1791
1814
|
items: HistoryListItemData[];
|
|
1792
1815
|
onItemClick?: (itemId: string) => void;
|
|
1793
1816
|
onClose?: () => void;
|
|
1794
1817
|
pageSize?: number;
|
|
1795
1818
|
className?: string;
|
|
1796
|
-
/** Header title (default: "Histórico de Swap") */
|
|
1797
|
-
title?: string;
|
|
1798
|
-
/** Header subtitle (default: "Todas as transações de swap") */
|
|
1799
|
-
subtitle?: string;
|
|
1800
1819
|
}
|
|
1801
1820
|
declare const SwapHistoryView: React__default.FC<SwapHistoryViewProps>;
|
|
1802
1821
|
|
|
@@ -1812,28 +1831,25 @@ interface SwapHistoryItem {
|
|
|
1812
1831
|
dateLabel: string;
|
|
1813
1832
|
}
|
|
1814
1833
|
|
|
1815
|
-
type SwapHistoryViewSimpleProps = Omit<SwapHistoryViewProps, '
|
|
1834
|
+
type SwapHistoryViewSimpleProps = Omit<SwapHistoryViewProps, 'onItemClick' | 'pageSize'> & {
|
|
1816
1835
|
onClose: () => void;
|
|
1817
1836
|
};
|
|
1818
1837
|
declare const SwapHistoryViewSimple: React__default.FC<SwapHistoryViewSimpleProps>;
|
|
1819
1838
|
|
|
1820
|
-
interface HistoryListItemLabels {
|
|
1821
|
-
swap?: string;
|
|
1822
|
-
}
|
|
1823
|
-
|
|
1824
1839
|
interface HistoryListItemProps {
|
|
1825
1840
|
item: HistoryListItemData;
|
|
1826
1841
|
onClick?: () => void;
|
|
1827
1842
|
className?: string;
|
|
1828
1843
|
statusLabel?: string;
|
|
1829
1844
|
statusTitle?: string;
|
|
1830
|
-
labels
|
|
1845
|
+
labels: HistoryListItemLabels;
|
|
1831
1846
|
}
|
|
1832
1847
|
declare const HistoryListItem: React__default.FC<HistoryListItemProps>;
|
|
1833
1848
|
|
|
1834
1849
|
interface HistoryListItemSimpleProps {
|
|
1835
1850
|
item: HistoryListItemData;
|
|
1836
|
-
labels
|
|
1851
|
+
labels: HistoryListItemLabels;
|
|
1852
|
+
locale: string;
|
|
1837
1853
|
}
|
|
1838
1854
|
declare const HistoryListItemSimple: React$1.FC<HistoryListItemSimpleProps>;
|
|
1839
1855
|
|
|
@@ -1999,7 +2015,7 @@ interface StrategyGridCardProps {
|
|
|
1999
2015
|
title: string;
|
|
2000
2016
|
subtitle: string;
|
|
2001
2017
|
apyFormatted: string;
|
|
2002
|
-
apyLabel
|
|
2018
|
+
apyLabel?: string;
|
|
2003
2019
|
onClick?: () => void;
|
|
2004
2020
|
className?: string;
|
|
2005
2021
|
}
|
|
@@ -2038,10 +2054,10 @@ interface GroupedStrategyItem extends GroupedStrategyListItem {
|
|
|
2038
2054
|
apyFormatted: string;
|
|
2039
2055
|
}
|
|
2040
2056
|
interface GroupedStrategyListViewProps {
|
|
2041
|
-
isLoading: boolean;
|
|
2042
2057
|
loadingLabel: string;
|
|
2043
|
-
|
|
2058
|
+
isLoading: boolean;
|
|
2044
2059
|
errorLabel: string;
|
|
2060
|
+
error: Error | null;
|
|
2045
2061
|
investedLabel: string;
|
|
2046
2062
|
investedItems: GroupedInvestedItem[];
|
|
2047
2063
|
bestPerformanceLabel: string;
|
|
@@ -2138,6 +2154,38 @@ interface EarnRecentTransactionsViewProps {
|
|
|
2138
2154
|
*/
|
|
2139
2155
|
declare const EarnRecentTransactionsView: React__default.FC<EarnRecentTransactionsViewProps>;
|
|
2140
2156
|
|
|
2157
|
+
interface EarnDesktopLabels {
|
|
2158
|
+
pageTitle?: string;
|
|
2159
|
+
pageSubtitle?: string;
|
|
2160
|
+
yourStrategiesLabel?: string;
|
|
2161
|
+
historyAriaLabel?: string;
|
|
2162
|
+
columnStrategy?: string;
|
|
2163
|
+
columnYield?: string;
|
|
2164
|
+
columnInvested?: string;
|
|
2165
|
+
totalInvestedLabel?: string;
|
|
2166
|
+
totalInvestedDescription?: string;
|
|
2167
|
+
accumulatedEarningsLabel?: string;
|
|
2168
|
+
accumulatedEarningsDescription?: string;
|
|
2169
|
+
stablecoinsBannerDescription?: string;
|
|
2170
|
+
realsBannerDescription?: string;
|
|
2171
|
+
emptyStateTitle?: string;
|
|
2172
|
+
emptyStateDescription?: string;
|
|
2173
|
+
groupedBackLabel?: string;
|
|
2174
|
+
groupedSubtitle?: string;
|
|
2175
|
+
groupedEmptyMessage?: string;
|
|
2176
|
+
groupedYieldLabel?: string;
|
|
2177
|
+
investLabel?: string;
|
|
2178
|
+
riskLow?: string;
|
|
2179
|
+
riskMedium?: string;
|
|
2180
|
+
riskHigh?: string;
|
|
2181
|
+
cardWithdrawLabel?: string;
|
|
2182
|
+
cardInvestedLabel?: string;
|
|
2183
|
+
cardHistoryTitle?: string;
|
|
2184
|
+
cardHistoryDepositedLabel?: string;
|
|
2185
|
+
cardHistoryWithdrawnLabel?: string;
|
|
2186
|
+
cardHistoryInterestReceivedLabel?: string;
|
|
2187
|
+
}
|
|
2188
|
+
|
|
2141
2189
|
interface EarnDesktopViewProps {
|
|
2142
2190
|
isLoading: boolean;
|
|
2143
2191
|
loadingSkeleton?: React__default.ReactNode;
|
|
@@ -2146,6 +2194,7 @@ interface EarnDesktopViewProps {
|
|
|
2146
2194
|
explore: EarnExploreGridViewProps;
|
|
2147
2195
|
transactions: EarnRecentTransactionsViewProps;
|
|
2148
2196
|
className?: string;
|
|
2197
|
+
labels?: EarnDesktopLabels;
|
|
2149
2198
|
}
|
|
2150
2199
|
/**
|
|
2151
2200
|
* Desktop layout for Earn page.
|
|
@@ -2153,6 +2202,14 @@ interface EarnDesktopViewProps {
|
|
|
2153
2202
|
*/
|
|
2154
2203
|
declare const EarnDesktopView: React__default.FC<EarnDesktopViewProps>;
|
|
2155
2204
|
|
|
2205
|
+
interface EarnCategoryDefinition {
|
|
2206
|
+
id: string;
|
|
2207
|
+
imageUrl: string;
|
|
2208
|
+
alt: string;
|
|
2209
|
+
title: string;
|
|
2210
|
+
assetFilter: string[];
|
|
2211
|
+
}
|
|
2212
|
+
declare const EARN_CATEGORY_DEFINITIONS: Omit<EarnCategoryDefinition, 'alt' | 'title'>[];
|
|
2156
2213
|
interface EarnStrategyInfo {
|
|
2157
2214
|
id: string;
|
|
2158
2215
|
assetName: string;
|
|
@@ -2218,6 +2275,8 @@ interface EarnDesktopViewSimpleProps extends Partial<EarnDesktopViewProps> {
|
|
|
2218
2275
|
onHistoryDetail?: (historyItemId: string, isDeposit: boolean) => void;
|
|
2219
2276
|
/** Called when user clicks the history button */
|
|
2220
2277
|
onHistory?: () => void;
|
|
2278
|
+
/** Category definitions (titles, alt text, asset filters). Consumer must provide translated alt/title. */
|
|
2279
|
+
categories: EarnCategoryDefinition[];
|
|
2221
2280
|
}
|
|
2222
2281
|
declare const EarnDesktopViewSimple: React__default.FC<EarnDesktopViewSimpleProps>;
|
|
2223
2282
|
|
|
@@ -2233,7 +2292,7 @@ interface HistoryListViewProps {
|
|
|
2233
2292
|
onItemClick?: (id: string) => void;
|
|
2234
2293
|
itemClassName?: string;
|
|
2235
2294
|
itemVariant?: 'subtle' | 'raised';
|
|
2236
|
-
labels
|
|
2295
|
+
labels: HistoryListItemLabels;
|
|
2237
2296
|
}
|
|
2238
2297
|
/**
|
|
2239
2298
|
* History list view.
|
|
@@ -2290,6 +2349,7 @@ interface EarnOverviewViewProps {
|
|
|
2290
2349
|
loadMoreLabel: string;
|
|
2291
2350
|
emptyTitle: string;
|
|
2292
2351
|
emptyDescription: string;
|
|
2352
|
+
itemLabels: HistoryListItemLabels;
|
|
2293
2353
|
};
|
|
2294
2354
|
}
|
|
2295
2355
|
declare const EarnOverviewView: React__default.FC<EarnOverviewViewProps>;
|
|
@@ -2476,6 +2536,8 @@ interface EarnDepositFormViewProps {
|
|
|
2476
2536
|
}>;
|
|
2477
2537
|
submitDisabled: boolean;
|
|
2478
2538
|
submitButtonText: string;
|
|
2539
|
+
cancelLabel?: string;
|
|
2540
|
+
historyAriaLabel?: string;
|
|
2479
2541
|
}
|
|
2480
2542
|
declare const EarnDepositFormView: React__default.FC<EarnDepositFormViewProps>;
|
|
2481
2543
|
|
|
@@ -2533,6 +2595,8 @@ interface EarnWithdrawFormViewProps {
|
|
|
2533
2595
|
}>;
|
|
2534
2596
|
submitDisabled: boolean;
|
|
2535
2597
|
submitButtonText: string;
|
|
2598
|
+
cancelLabel?: string;
|
|
2599
|
+
historyAriaLabel?: string;
|
|
2536
2600
|
}
|
|
2537
2601
|
declare const EarnWithdrawFormView: React__default.FC<EarnWithdrawFormViewProps>;
|
|
2538
2602
|
|
|
@@ -3245,7 +3309,11 @@ interface DashboardCardProps {
|
|
|
3245
3309
|
}
|
|
3246
3310
|
declare const DashboardCard: React__default.FC<DashboardCardProps>;
|
|
3247
3311
|
|
|
3248
|
-
|
|
3312
|
+
interface DashboardTransactionsPlaceholderProps {
|
|
3313
|
+
title: string;
|
|
3314
|
+
description: string;
|
|
3315
|
+
}
|
|
3316
|
+
declare const DashboardTransactionsPlaceholder: React__default.FC<DashboardTransactionsPlaceholderProps>;
|
|
3249
3317
|
|
|
3250
3318
|
interface DashboardBalancesBreakdownProps {
|
|
3251
3319
|
isLoadingBalances: boolean;
|
|
@@ -3313,6 +3381,12 @@ declare const DashboardTokensView: React__default.FC<DashboardTokensViewProps>;
|
|
|
3313
3381
|
|
|
3314
3382
|
declare const DashboardTokensViewSimple: React__default.FC<DashboardTokensViewProps>;
|
|
3315
3383
|
|
|
3384
|
+
interface DashboardRecentTransactionsLabels extends HistoryListItemLabels {
|
|
3385
|
+
title: string;
|
|
3386
|
+
viewAllLabel: string;
|
|
3387
|
+
emptyTitle: string;
|
|
3388
|
+
emptyDescription: string;
|
|
3389
|
+
}
|
|
3316
3390
|
interface DashboardRecentTransactionsViewProps {
|
|
3317
3391
|
isLoading: boolean;
|
|
3318
3392
|
isEmpty: boolean;
|
|
@@ -3320,12 +3394,12 @@ interface DashboardRecentTransactionsViewProps {
|
|
|
3320
3394
|
onViewAllClick?: () => void;
|
|
3321
3395
|
onItemClick?: (id: string) => void;
|
|
3322
3396
|
onClose?: () => void;
|
|
3323
|
-
labels
|
|
3397
|
+
labels: DashboardRecentTransactionsLabels;
|
|
3398
|
+
locale: string;
|
|
3324
3399
|
}
|
|
3325
3400
|
declare const DashboardRecentTransactionsView: React__default.FC<DashboardRecentTransactionsViewProps>;
|
|
3326
3401
|
|
|
3327
|
-
|
|
3328
|
-
declare const DashboardRecentTransactionsViewSimple: React__default.FC<DashboardRecentTransactionsViewSimpleProps>;
|
|
3402
|
+
declare const DashboardRecentTransactionsViewSimple: React__default.FC<DashboardRecentTransactionsViewProps>;
|
|
3329
3403
|
|
|
3330
3404
|
interface DashboardInvestmentOpportunitiesViewProps {
|
|
3331
3405
|
isLoadingBalances: boolean;
|
|
@@ -3388,4 +3462,4 @@ interface DeframeTheme {
|
|
|
3388
3462
|
colors?: DeframeThemeColors;
|
|
3389
3463
|
}
|
|
3390
3464
|
|
|
3391
|
-
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, EarnAmountInputView, type EarnAmountInputViewProps, EarnBalanceCard, type EarnBalanceCardProps, EarnBytecodeErrorView, type EarnBytecodeErrorViewProps, 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 };
|
|
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 };
|