@deframe-sdk/components 0.1.17 → 0.1.19
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 +151 -37
- package/dist/index.d.ts +151 -37
- package/dist/index.js +3080 -354
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3075 -357
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +477 -10
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -622,6 +622,14 @@ interface LowRiskBadgeProps {
|
|
|
622
622
|
}
|
|
623
623
|
declare const LowRiskBadge: React__default.FC<LowRiskBadgeProps>;
|
|
624
624
|
|
|
625
|
+
interface ProcessingBadgeProps {
|
|
626
|
+
label?: string;
|
|
627
|
+
className?: string;
|
|
628
|
+
title?: string;
|
|
629
|
+
size?: 'default' | 'compact';
|
|
630
|
+
}
|
|
631
|
+
declare const ProcessingBadge: React__default.FC<ProcessingBadgeProps>;
|
|
632
|
+
|
|
625
633
|
interface HistoryDetailsLabels {
|
|
626
634
|
currencyLabel: string;
|
|
627
635
|
totalAmountLabel: string;
|
|
@@ -636,6 +644,30 @@ interface HistoryDetailsLabels {
|
|
|
636
644
|
transactionDetailsTitle: string;
|
|
637
645
|
}
|
|
638
646
|
|
|
647
|
+
type HistoryDetailsStatus = 'SUCCESS' | 'PENDING' | 'FAILED' | 'REFUNDED';
|
|
648
|
+
|
|
649
|
+
type TransactionStepStatus = 'completed' | 'processing' | 'failed';
|
|
650
|
+
interface TransactionStep {
|
|
651
|
+
/** Step label/title */
|
|
652
|
+
label: string;
|
|
653
|
+
/** Current status of the step */
|
|
654
|
+
status?: TransactionStepStatus;
|
|
655
|
+
/** Optional status text override (e.g., "Processando...") - can be string or React node */
|
|
656
|
+
statusText?: React.ReactNode;
|
|
657
|
+
/** Optional explorer URL for this step */
|
|
658
|
+
explorerUrl?: string;
|
|
659
|
+
/** Optional static value (for info-only steps like "Tempo estimado") */
|
|
660
|
+
value?: ReactNode;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
interface TransactionProcessingDetailsLabels {
|
|
664
|
+
title: string;
|
|
665
|
+
completedText: string;
|
|
666
|
+
processingText: string;
|
|
667
|
+
failedText: string;
|
|
668
|
+
viewOnExplorerText: string;
|
|
669
|
+
}
|
|
670
|
+
|
|
639
671
|
interface HistoryAssetViewProps {
|
|
640
672
|
iconUrl: string;
|
|
641
673
|
symbol: string;
|
|
@@ -656,6 +688,9 @@ interface HistoryDetailsViewProps {
|
|
|
656
688
|
txHash: string | null;
|
|
657
689
|
date: string;
|
|
658
690
|
explorerUrl: string | null;
|
|
691
|
+
status?: HistoryDetailsStatus;
|
|
692
|
+
processingSteps?: TransactionStep[];
|
|
693
|
+
processingDetailsLabels?: TransactionProcessingDetailsLabels;
|
|
659
694
|
onClose: () => void;
|
|
660
695
|
labels: HistoryDetailsLabels;
|
|
661
696
|
}
|
|
@@ -908,28 +943,6 @@ interface TransactionScreenInvestmentCardProps {
|
|
|
908
943
|
}
|
|
909
944
|
declare const TransactionScreenInvestmentCard: React__default.FC<TransactionScreenInvestmentCardProps>;
|
|
910
945
|
|
|
911
|
-
type TransactionStepStatus = 'completed' | 'processing' | 'failed';
|
|
912
|
-
interface TransactionStep {
|
|
913
|
-
/** Step label/title */
|
|
914
|
-
label: string;
|
|
915
|
-
/** Current status of the step */
|
|
916
|
-
status?: TransactionStepStatus;
|
|
917
|
-
/** Optional status text override (e.g., "Processando...") - can be string or React node */
|
|
918
|
-
statusText?: React.ReactNode;
|
|
919
|
-
/** Optional explorer URL for this step */
|
|
920
|
-
explorerUrl?: string;
|
|
921
|
-
/** Optional static value (for info-only steps like "Tempo estimado") */
|
|
922
|
-
value?: ReactNode;
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
interface TransactionProcessingDetailsLabels {
|
|
926
|
-
title: string;
|
|
927
|
-
completedText: string;
|
|
928
|
-
processingText: string;
|
|
929
|
-
failedText: string;
|
|
930
|
-
viewOnExplorerText: string;
|
|
931
|
-
}
|
|
932
|
-
|
|
933
946
|
interface TransactionProcessingDetailsProps {
|
|
934
947
|
/** Array of transaction steps to display */
|
|
935
948
|
steps: TransactionStep[];
|
|
@@ -1008,13 +1021,7 @@ interface SwapProcessingViewProps {
|
|
|
1008
1021
|
}
|
|
1009
1022
|
declare const SwapProcessingView: React__default.FC<SwapProcessingViewProps>;
|
|
1010
1023
|
|
|
1011
|
-
|
|
1012
|
-
* Visual variant of SwapProcessingView.
|
|
1013
|
-
* Design identical to the SwapPanel ProcessingOverlay:
|
|
1014
|
-
* glass-blur transparent background, rotating sync icon,
|
|
1015
|
-
* uppercase green title + muted subtitle. No chrome, no transaction details.
|
|
1016
|
-
*/
|
|
1017
|
-
declare const SwapProcessingViewSimple: React__default.FC<Partial<SwapProcessingViewProps>>;
|
|
1024
|
+
declare const SwapProcessingViewSimple: React__default.FC;
|
|
1018
1025
|
|
|
1019
1026
|
interface SwapCrossChainProcessingViewProps {
|
|
1020
1027
|
fromTokenSymbol: string;
|
|
@@ -1042,6 +1049,23 @@ interface SwapCrossChainProcessingViewProps {
|
|
|
1042
1049
|
}
|
|
1043
1050
|
declare const SwapCrossChainProcessingView: React__default.FC<SwapCrossChainProcessingViewProps>;
|
|
1044
1051
|
|
|
1052
|
+
interface InvestmentCrossChainProcessingViewProps {
|
|
1053
|
+
title: string;
|
|
1054
|
+
description: React__default.ReactNode;
|
|
1055
|
+
progress: number;
|
|
1056
|
+
strategyName: string;
|
|
1057
|
+
strategyIcon?: string;
|
|
1058
|
+
strategySymbol: string;
|
|
1059
|
+
apyLabel: string;
|
|
1060
|
+
apyValue: string;
|
|
1061
|
+
amountUSD: string;
|
|
1062
|
+
amountToken: string;
|
|
1063
|
+
onClose: () => void;
|
|
1064
|
+
transactionSteps: TransactionStep[];
|
|
1065
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
1066
|
+
}
|
|
1067
|
+
declare const InvestmentCrossChainProcessingView: React__default.FC<InvestmentCrossChainProcessingViewProps>;
|
|
1068
|
+
|
|
1045
1069
|
interface SwapSignatureWarningViewProps {
|
|
1046
1070
|
fromTokenSymbol: string;
|
|
1047
1071
|
fromTokenIcon: string;
|
|
@@ -1063,6 +1087,13 @@ interface SwapSignatureWarningViewProps {
|
|
|
1063
1087
|
}
|
|
1064
1088
|
declare const SwapSignatureWarningView: React__default.FC<SwapSignatureWarningViewProps>;
|
|
1065
1089
|
|
|
1090
|
+
/**
|
|
1091
|
+
* Visual "Simple" variant of SwapSignatureWarningView.
|
|
1092
|
+
* Renders the SwapFormSkeleton behind a glass-blur overlay with a
|
|
1093
|
+
* spring-in warning icon, title, description and cancel / retry buttons.
|
|
1094
|
+
*/
|
|
1095
|
+
declare const SwapSignatureWarningViewSimple: React__default.FC<Partial<SwapSignatureWarningViewProps>>;
|
|
1096
|
+
|
|
1066
1097
|
interface SwapSuccessLabels {
|
|
1067
1098
|
title?: string;
|
|
1068
1099
|
descriptionPrefix?: string;
|
|
@@ -1090,13 +1121,7 @@ interface SwapSuccessViewProps {
|
|
|
1090
1121
|
}
|
|
1091
1122
|
declare const SwapSuccessView: React__default.FC<SwapSuccessViewProps>;
|
|
1092
1123
|
|
|
1093
|
-
|
|
1094
|
-
* Visual variant of SwapSuccessView.
|
|
1095
|
-
* Design identical to the SwapPanel SuccessOverlay:
|
|
1096
|
-
* glass-blur transparent background, centered icon + title + subtitle.
|
|
1097
|
-
* No chrome, no transaction details.
|
|
1098
|
-
*/
|
|
1099
|
-
declare const SwapSuccessViewSimple: React__default.FC<Partial<SwapSuccessViewProps>>;
|
|
1124
|
+
declare const SwapSuccessViewSimple: React__default.FC;
|
|
1100
1125
|
|
|
1101
1126
|
interface SwapTransactionFailedViewProps {
|
|
1102
1127
|
fromTokenSymbol: string;
|
|
@@ -1211,6 +1236,8 @@ interface SwapFromCardViewProps {
|
|
|
1211
1236
|
logoURI?: string;
|
|
1212
1237
|
} | null;
|
|
1213
1238
|
onTokenClick: () => void;
|
|
1239
|
+
/** Opens the unified network + asset selector. Used by Simple variants. */
|
|
1240
|
+
onNetworkAndAssetClick?: () => void;
|
|
1214
1241
|
balanceFormatted: string;
|
|
1215
1242
|
balanceUsdFormatted: string;
|
|
1216
1243
|
onBalanceClick?: () => void;
|
|
@@ -1235,6 +1262,8 @@ interface SwapToCardViewProps {
|
|
|
1235
1262
|
logoURI?: string;
|
|
1236
1263
|
} | null;
|
|
1237
1264
|
onTokenClick: () => void;
|
|
1265
|
+
/** Opens the unified network + asset selector. Used by Simple variants. */
|
|
1266
|
+
onNetworkAndAssetClick?: () => void;
|
|
1238
1267
|
balanceFormatted: string;
|
|
1239
1268
|
balanceUsdFormatted: string;
|
|
1240
1269
|
chainLabel: string;
|
|
@@ -1337,6 +1366,30 @@ interface SwapFormViewProps {
|
|
|
1337
1366
|
}
|
|
1338
1367
|
declare const SwapFormView: React__default.FC<SwapFormViewProps>;
|
|
1339
1368
|
|
|
1369
|
+
declare const SwapFormViewSimple: React__default.FC<SwapFormViewProps>;
|
|
1370
|
+
|
|
1371
|
+
interface SwapFromCardViewSimpleProps extends SwapFromCardViewProps {
|
|
1372
|
+
/** Percentage chip values, e.g. [25, 50, 75, 100] */
|
|
1373
|
+
percentageOptions?: number[];
|
|
1374
|
+
/** Called when a chip is clicked */
|
|
1375
|
+
onPercentageClick?: (pct: number) => void;
|
|
1376
|
+
/** Currently active chip (null = none) */
|
|
1377
|
+
selectedPercentage?: number | null;
|
|
1378
|
+
/** Label for the last (100 %) chip. Default: 'Max.' */
|
|
1379
|
+
maxLabel?: string;
|
|
1380
|
+
/** Custom error message shown in the inline notification */
|
|
1381
|
+
errorMessage?: string;
|
|
1382
|
+
/** Custom label for the error action button */
|
|
1383
|
+
errorActionLabel?: string;
|
|
1384
|
+
/** Called when the error action button is clicked */
|
|
1385
|
+
onErrorAction?: () => void;
|
|
1386
|
+
}
|
|
1387
|
+
declare const SwapFromCardViewSimple: React__default.FC<SwapFromCardViewSimpleProps>;
|
|
1388
|
+
|
|
1389
|
+
declare const SwapToCardViewSimple: React__default.FC<SwapToCardViewProps>;
|
|
1390
|
+
|
|
1391
|
+
declare const ConfirmSwapButtonViewSimple: React__default.FC<ConfirmSwapButtonViewProps>;
|
|
1392
|
+
|
|
1340
1393
|
interface ChooseANetworkLabels {
|
|
1341
1394
|
title: string;
|
|
1342
1395
|
searchPlaceholder: string;
|
|
@@ -1358,6 +1411,49 @@ interface ChooseANetworkViewProps {
|
|
|
1358
1411
|
}
|
|
1359
1412
|
declare const ChooseANetworkView: React__default.FC<ChooseANetworkViewProps>;
|
|
1360
1413
|
|
|
1414
|
+
/**
|
|
1415
|
+
* Network available for selection in the unified network + asset selector.
|
|
1416
|
+
* Built by the SDK from CHAIN_NAMES + CHAIN_IMAGES + aggregated balances.
|
|
1417
|
+
*/
|
|
1418
|
+
interface NetworkOption {
|
|
1419
|
+
chainId: number;
|
|
1420
|
+
name: string;
|
|
1421
|
+
iconUrl?: string;
|
|
1422
|
+
/** Total fiat value on this network (e.g. "$12,345.67"). Used for sorting. */
|
|
1423
|
+
balanceUsd?: string;
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1426
|
+
interface ChooseNetworkAndAssetLabels {
|
|
1427
|
+
title: string;
|
|
1428
|
+
searchPlaceholder: string;
|
|
1429
|
+
searchingText: string;
|
|
1430
|
+
loadMoreButton: string;
|
|
1431
|
+
searchEmptyTitle: string;
|
|
1432
|
+
searchEmptyDescription: string;
|
|
1433
|
+
networksLabel: string;
|
|
1434
|
+
assetsLabel: string;
|
|
1435
|
+
closeAriaLabel: string;
|
|
1436
|
+
}
|
|
1437
|
+
interface ChooseNetworkAndAssetViewSimpleProps {
|
|
1438
|
+
isOpen: boolean;
|
|
1439
|
+
onClose: () => void;
|
|
1440
|
+
networks: NetworkOption[];
|
|
1441
|
+
selectedNetwork?: NetworkOption | null;
|
|
1442
|
+
onNetworkSelect: (network: NetworkOption) => void;
|
|
1443
|
+
displayedTokens: TokenData[];
|
|
1444
|
+
findBalance: (token: TokenData) => BalanceDomain | undefined;
|
|
1445
|
+
formatTokenAmount: (amountUI: string, priceUSD: number, decimals: number) => string;
|
|
1446
|
+
formatCurrencyValue: (value: number) => string;
|
|
1447
|
+
onAssetClick: (token: TokenData) => void;
|
|
1448
|
+
onSearch: (value: string) => void;
|
|
1449
|
+
autoFocus?: boolean;
|
|
1450
|
+
hasMore: boolean;
|
|
1451
|
+
onLoadMore: () => void;
|
|
1452
|
+
isFetching: boolean;
|
|
1453
|
+
labels: ChooseNetworkAndAssetLabels;
|
|
1454
|
+
}
|
|
1455
|
+
declare function ChooseNetworkAndAssetViewSimple({ isOpen, onClose, networks, selectedNetwork, onNetworkSelect, displayedTokens, findBalance, formatTokenAmount, formatCurrencyValue, onAssetClick, onSearch, autoFocus, hasMore, onLoadMore, isFetching, labels, }: ChooseNetworkAndAssetViewSimpleProps): react_jsx_runtime.JSX.Element;
|
|
1456
|
+
|
|
1361
1457
|
interface SwapHistoryLabels {
|
|
1362
1458
|
emptyTitle: string;
|
|
1363
1459
|
emptyDescription: string;
|
|
@@ -1458,6 +1554,7 @@ type BackgroundVariant = 'subtle' | 'raised';
|
|
|
1458
1554
|
interface WalletBalanceItem {
|
|
1459
1555
|
label: string;
|
|
1460
1556
|
value: string;
|
|
1557
|
+
badge?: React__default.ReactNode;
|
|
1461
1558
|
}
|
|
1462
1559
|
interface WalletBalancesProps {
|
|
1463
1560
|
cards: WalletBalanceItem[];
|
|
@@ -1507,6 +1604,8 @@ interface EarnInvestmentSummaryViewProps {
|
|
|
1507
1604
|
totalInvestedValue: string;
|
|
1508
1605
|
totalReturnLabel: string;
|
|
1509
1606
|
totalReturnValue: string;
|
|
1607
|
+
processingBadgeLabel?: string;
|
|
1608
|
+
processingBadgeTitle?: string;
|
|
1510
1609
|
className?: string;
|
|
1511
1610
|
}
|
|
1512
1611
|
/**
|
|
@@ -1681,6 +1780,9 @@ interface HistoryListViewItem {
|
|
|
1681
1780
|
subtitle: string;
|
|
1682
1781
|
amountFormatted: string;
|
|
1683
1782
|
amountUsd?: string;
|
|
1783
|
+
status?: 'SUCCESS' | 'PENDING' | 'FAILED' | 'REFUNDED';
|
|
1784
|
+
statusLabel?: string;
|
|
1785
|
+
statusTitle?: string;
|
|
1684
1786
|
onClick: () => void;
|
|
1685
1787
|
}
|
|
1686
1788
|
interface HistoryListViewGroup {
|
|
@@ -1707,12 +1809,15 @@ interface EarnTokenSelectorViewProps {
|
|
|
1707
1809
|
logoURI?: string | null;
|
|
1708
1810
|
} | null;
|
|
1709
1811
|
onTokenClick: () => void;
|
|
1812
|
+
onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
|
|
1710
1813
|
isLoading: boolean;
|
|
1711
1814
|
selectTokenLabel: string;
|
|
1712
1815
|
chainLabel: string;
|
|
1713
1816
|
chainImage?: string;
|
|
1714
1817
|
chainDirectionLabel: string;
|
|
1715
1818
|
chainDisabledTitle?: string;
|
|
1819
|
+
isNetworkDisabled?: boolean;
|
|
1820
|
+
currentNetworkSelected?: ChainItem | null;
|
|
1716
1821
|
}
|
|
1717
1822
|
declare const EarnTokenSelectorView: React__default.FC<EarnTokenSelectorViewProps>;
|
|
1718
1823
|
|
|
@@ -1737,11 +1842,14 @@ interface EarnWithdrawTokenSelectorViewProps {
|
|
|
1737
1842
|
logoURI?: string | null;
|
|
1738
1843
|
} | null;
|
|
1739
1844
|
onTokenClick: () => void;
|
|
1845
|
+
onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
|
|
1740
1846
|
selectTokenLabel: string;
|
|
1741
1847
|
chainLabel: string;
|
|
1742
1848
|
chainImage?: string;
|
|
1743
1849
|
chainDirectionLabel: string;
|
|
1744
1850
|
chainDisabledTitle?: string;
|
|
1851
|
+
isNetworkDisabled?: boolean;
|
|
1852
|
+
currentNetworkSelected?: ChainItem | null;
|
|
1745
1853
|
}
|
|
1746
1854
|
declare const EarnWithdrawTokenSelectorView: React__default.FC<EarnWithdrawTokenSelectorViewProps>;
|
|
1747
1855
|
|
|
@@ -1792,6 +1900,9 @@ interface EarnDepositFormViewProps {
|
|
|
1792
1900
|
chainImage?: string;
|
|
1793
1901
|
chainDirectionLabel: string;
|
|
1794
1902
|
chainDisabledTitle?: string;
|
|
1903
|
+
onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
|
|
1904
|
+
isNetworkDisabled?: boolean;
|
|
1905
|
+
currentNetworkSelected?: ChainItem | null;
|
|
1795
1906
|
amountValue: string;
|
|
1796
1907
|
onAmountChange: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
|
1797
1908
|
amountAriaLabel: string;
|
|
@@ -1845,6 +1956,9 @@ interface EarnWithdrawFormViewProps {
|
|
|
1845
1956
|
chainImage?: string;
|
|
1846
1957
|
chainDirectionLabel: string;
|
|
1847
1958
|
chainDisabledTitle?: string;
|
|
1959
|
+
onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
|
|
1960
|
+
isNetworkDisabled?: boolean;
|
|
1961
|
+
currentNetworkSelected?: ChainItem | null;
|
|
1848
1962
|
amountValue: string;
|
|
1849
1963
|
onAmountChange: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
|
1850
1964
|
amountAriaLabel: string;
|
|
@@ -2067,4 +2181,4 @@ interface DeframeTheme {
|
|
|
2067
2181
|
colors?: DeframeThemeColors;
|
|
2068
2182
|
}
|
|
2069
2183
|
|
|
2070
|
-
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 ChooseANetworkLabels, ChooseANetworkView, type ChooseANetworkViewProps, ChooseAStrategyActionsheetView, type ChooseAStrategyActionsheetViewProps, type ChooseAnAssetSwapLabels, ChooseAnAssetSwapView, type ChooseAnAssetSwapViewProps, CloseButton, type CloseButtonProps, CollapsibleInfoRow, type CollapsibleInfoRowProps, CollapsibleSection, type CollapsibleSectionProps, type ConfirmSwapButtonLabels, ConfirmSwapButtonView, type ConfirmSwapButtonViewProps, ConnectWalletList, type ConnectWalletListProps, Currency, type CurrencyProps, type CurrencyType, DeframeComponentsProvider, type DeframeTheme, type DeframeThemeColors, type DetailItem, DetailsHeader, type DetailsHeaderProps, EarnAmountInputView, type EarnAmountInputViewProps, EarnBalanceCard, type EarnBalanceCardProps, EarnBytecodeErrorView, type EarnBytecodeErrorViewProps, EarnDepositFailedView, type EarnDepositFailedViewProps, EarnDepositFormView, type EarnDepositFormViewProps, EarnDepositProcessingView, type EarnDepositProcessingViewProps, EarnDepositSuccessView, type EarnDepositSuccessViewProps, EarnDepositWarningView, type EarnDepositWarningViewProps, EarnDesktopView, type EarnDesktopViewProps, type EarnExploreGridItem, EarnExploreGridView, type EarnExploreGridViewProps, type EarnInvestedSectionItem, EarnInvestedSectionView, type EarnInvestedSectionViewProps, type EarnInvestmentDetailsTransaction, EarnInvestmentDetailsView, type EarnInvestmentDetailsViewProps, EarnInvestmentSummaryView, type EarnInvestmentSummaryViewProps, EarnNoBalanceNotificationView, type EarnNoBalanceNotificationViewProps, EarnPercentageButtonsView, type EarnPercentageButtonsViewProps, EarnPositionCardView, type EarnPositionCardViewProps, EarnRecentTransactionsView, type EarnRecentTransactionsViewProps, EarnTokenSelectorView, type EarnTokenSelectorViewProps, EarnTxStatusCardView, type EarnTxStatusCardViewProps, EarnWithdrawFailedView, type EarnWithdrawFailedViewProps, EarnWithdrawFormView, type EarnWithdrawFormViewProps, EarnWithdrawProcessingView, type EarnWithdrawProcessingViewProps, EarnWithdrawSuccessView, type EarnWithdrawSuccessViewProps, EarnWithdrawTokenSelectorView, type EarnWithdrawTokenSelectorViewProps, EarnWithdrawWarningView, type EarnWithdrawWarningViewProps, 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 HistoryDetailsViewProps, HistoryListSkeleton, HistoryListView, type HistoryListViewGroup, type HistoryListViewItem, 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, type InputFieldRegistration, type InputProps, Label, type LabelProps, type LabelVariant, Link, type LinkProps, ListItem, ListItemContent, ListItemLeftSide, type ListItemProps, ListItemRightSide, LoadingDots, type LoadingDotsProps, LowRiskBadge, type LowRiskBadgeProps, MediumRiskBadge, type MediumRiskBadgeProps, Navbar, type NavbarProps, PercentageButton, PrimaryButton, 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, SwapFromCardView, type SwapFromCardViewProps, type SwapHistoryItem, type SwapHistoryLabels, SwapHistoryView, type SwapHistoryViewProps, type SwapNetworkSelectorViewProps, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapProcessingViewSimple, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, type SwapQuoteErrorsViewProps, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapSuccessViewSimple, SwapToCardView, type SwapToCardViewProps, 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 };
|
|
2184
|
+
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 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, DeframeComponentsProvider, type DeframeTheme, type DeframeThemeColors, type DetailItem, DetailsHeader, type DetailsHeaderProps, EarnAmountInputView, type EarnAmountInputViewProps, EarnBalanceCard, type EarnBalanceCardProps, EarnBytecodeErrorView, type EarnBytecodeErrorViewProps, EarnDepositFailedView, type EarnDepositFailedViewProps, EarnDepositFormView, type EarnDepositFormViewProps, EarnDepositProcessingView, type EarnDepositProcessingViewProps, EarnDepositSuccessView, type EarnDepositSuccessViewProps, EarnDepositWarningView, type EarnDepositWarningViewProps, EarnDesktopView, type EarnDesktopViewProps, type EarnExploreGridItem, EarnExploreGridView, type EarnExploreGridViewProps, type EarnInvestedSectionItem, EarnInvestedSectionView, type EarnInvestedSectionViewProps, type EarnInvestmentDetailsTransaction, EarnInvestmentDetailsView, type EarnInvestmentDetailsViewProps, EarnInvestmentSummaryView, type EarnInvestmentSummaryViewProps, EarnNoBalanceNotificationView, type EarnNoBalanceNotificationViewProps, EarnPercentageButtonsView, type EarnPercentageButtonsViewProps, EarnPositionCardView, type EarnPositionCardViewProps, EarnRecentTransactionsView, type EarnRecentTransactionsViewProps, EarnTokenSelectorView, type EarnTokenSelectorViewProps, EarnTxStatusCardView, type EarnTxStatusCardViewProps, EarnWithdrawFailedView, type EarnWithdrawFailedViewProps, EarnWithdrawFormView, type EarnWithdrawFormViewProps, EarnWithdrawProcessingView, type EarnWithdrawProcessingViewProps, EarnWithdrawSuccessView, type EarnWithdrawSuccessViewProps, EarnWithdrawTokenSelectorView, type EarnWithdrawTokenSelectorViewProps, EarnWithdrawWarningView, type EarnWithdrawWarningViewProps, 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, HistoryListSkeleton, HistoryListView, type HistoryListViewGroup, type HistoryListViewItem, 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, type InputFieldRegistration, type InputProps, InvestmentCrossChainProcessingView, type InvestmentCrossChainProcessingViewProps, Label, type LabelProps, type LabelVariant, Link, type LinkProps, ListItem, ListItemContent, ListItemLeftSide, type ListItemProps, ListItemRightSide, LoadingDots, type LoadingDotsProps, LowRiskBadge, type LowRiskBadgeProps, MediumRiskBadge, type MediumRiskBadgeProps, Navbar, type NavbarProps, type NetworkOption, 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, 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 };
|