@deframe-sdk/components 0.1.18 → 0.1.20

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 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[];
@@ -1036,6 +1049,23 @@ interface SwapCrossChainProcessingViewProps {
1036
1049
  }
1037
1050
  declare const SwapCrossChainProcessingView: React__default.FC<SwapCrossChainProcessingViewProps>;
1038
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
+
1039
1069
  interface SwapSignatureWarningViewProps {
1040
1070
  fromTokenSymbol: string;
1041
1071
  fromTokenIcon: string;
@@ -1220,6 +1250,8 @@ interface SwapFromCardViewProps {
1220
1250
  maxFractionDigits?: number;
1221
1251
  amountUsdFormatted: string;
1222
1252
  isAmountUsdLoading: boolean;
1253
+ /** Optional inline error message consumed by simple variants. */
1254
+ errorMessage?: string;
1223
1255
  /** react-hook-form field registration (name, onBlur, ref) */
1224
1256
  field?: InputFieldRegistration;
1225
1257
  }
@@ -1347,8 +1379,6 @@ interface SwapFromCardViewSimpleProps extends SwapFromCardViewProps {
1347
1379
  selectedPercentage?: number | null;
1348
1380
  /** Label for the last (100 %) chip. Default: 'Max.' */
1349
1381
  maxLabel?: string;
1350
- /** Custom error message shown in the inline notification */
1351
- errorMessage?: string;
1352
1382
  /** Custom label for the error action button */
1353
1383
  errorActionLabel?: string;
1354
1384
  /** Called when the error action button is clicked */
@@ -1524,6 +1554,7 @@ type BackgroundVariant = 'subtle' | 'raised';
1524
1554
  interface WalletBalanceItem {
1525
1555
  label: string;
1526
1556
  value: string;
1557
+ badge?: React__default.ReactNode;
1527
1558
  }
1528
1559
  interface WalletBalancesProps {
1529
1560
  cards: WalletBalanceItem[];
@@ -1573,6 +1604,8 @@ interface EarnInvestmentSummaryViewProps {
1573
1604
  totalInvestedValue: string;
1574
1605
  totalReturnLabel: string;
1575
1606
  totalReturnValue: string;
1607
+ processingBadgeLabel?: string;
1608
+ processingBadgeTitle?: string;
1576
1609
  className?: string;
1577
1610
  }
1578
1611
  /**
@@ -1747,6 +1780,9 @@ interface HistoryListViewItem {
1747
1780
  subtitle: string;
1748
1781
  amountFormatted: string;
1749
1782
  amountUsd?: string;
1783
+ status?: 'SUCCESS' | 'PENDING' | 'FAILED' | 'REFUNDED';
1784
+ statusLabel?: string;
1785
+ statusTitle?: string;
1750
1786
  onClick: () => void;
1751
1787
  }
1752
1788
  interface HistoryListViewGroup {
@@ -1773,12 +1809,15 @@ interface EarnTokenSelectorViewProps {
1773
1809
  logoURI?: string | null;
1774
1810
  } | null;
1775
1811
  onTokenClick: () => void;
1812
+ onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
1776
1813
  isLoading: boolean;
1777
1814
  selectTokenLabel: string;
1778
1815
  chainLabel: string;
1779
1816
  chainImage?: string;
1780
1817
  chainDirectionLabel: string;
1781
1818
  chainDisabledTitle?: string;
1819
+ isNetworkDisabled?: boolean;
1820
+ currentNetworkSelected?: ChainItem | null;
1782
1821
  }
1783
1822
  declare const EarnTokenSelectorView: React__default.FC<EarnTokenSelectorViewProps>;
1784
1823
 
@@ -1803,11 +1842,14 @@ interface EarnWithdrawTokenSelectorViewProps {
1803
1842
  logoURI?: string | null;
1804
1843
  } | null;
1805
1844
  onTokenClick: () => void;
1845
+ onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
1806
1846
  selectTokenLabel: string;
1807
1847
  chainLabel: string;
1808
1848
  chainImage?: string;
1809
1849
  chainDirectionLabel: string;
1810
1850
  chainDisabledTitle?: string;
1851
+ isNetworkDisabled?: boolean;
1852
+ currentNetworkSelected?: ChainItem | null;
1811
1853
  }
1812
1854
  declare const EarnWithdrawTokenSelectorView: React__default.FC<EarnWithdrawTokenSelectorViewProps>;
1813
1855
 
@@ -1858,6 +1900,9 @@ interface EarnDepositFormViewProps {
1858
1900
  chainImage?: string;
1859
1901
  chainDirectionLabel: string;
1860
1902
  chainDisabledTitle?: string;
1903
+ onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
1904
+ isNetworkDisabled?: boolean;
1905
+ currentNetworkSelected?: ChainItem | null;
1861
1906
  amountValue: string;
1862
1907
  onAmountChange: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
1863
1908
  amountAriaLabel: string;
@@ -1911,6 +1956,9 @@ interface EarnWithdrawFormViewProps {
1911
1956
  chainImage?: string;
1912
1957
  chainDirectionLabel: string;
1913
1958
  chainDisabledTitle?: string;
1959
+ onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
1960
+ isNetworkDisabled?: boolean;
1961
+ currentNetworkSelected?: ChainItem | null;
1914
1962
  amountValue: string;
1915
1963
  onAmountChange: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
1916
1964
  amountAriaLabel: string;
@@ -2133,4 +2181,4 @@ interface DeframeTheme {
2133
2181
  colors?: DeframeThemeColors;
2134
2182
  }
2135
2183
 
2136
- 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 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, type NetworkOption, 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, 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 };
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 };
package/dist/index.d.ts 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[];
@@ -1036,6 +1049,23 @@ interface SwapCrossChainProcessingViewProps {
1036
1049
  }
1037
1050
  declare const SwapCrossChainProcessingView: React__default.FC<SwapCrossChainProcessingViewProps>;
1038
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
+
1039
1069
  interface SwapSignatureWarningViewProps {
1040
1070
  fromTokenSymbol: string;
1041
1071
  fromTokenIcon: string;
@@ -1220,6 +1250,8 @@ interface SwapFromCardViewProps {
1220
1250
  maxFractionDigits?: number;
1221
1251
  amountUsdFormatted: string;
1222
1252
  isAmountUsdLoading: boolean;
1253
+ /** Optional inline error message consumed by simple variants. */
1254
+ errorMessage?: string;
1223
1255
  /** react-hook-form field registration (name, onBlur, ref) */
1224
1256
  field?: InputFieldRegistration;
1225
1257
  }
@@ -1347,8 +1379,6 @@ interface SwapFromCardViewSimpleProps extends SwapFromCardViewProps {
1347
1379
  selectedPercentage?: number | null;
1348
1380
  /** Label for the last (100 %) chip. Default: 'Max.' */
1349
1381
  maxLabel?: string;
1350
- /** Custom error message shown in the inline notification */
1351
- errorMessage?: string;
1352
1382
  /** Custom label for the error action button */
1353
1383
  errorActionLabel?: string;
1354
1384
  /** Called when the error action button is clicked */
@@ -1524,6 +1554,7 @@ type BackgroundVariant = 'subtle' | 'raised';
1524
1554
  interface WalletBalanceItem {
1525
1555
  label: string;
1526
1556
  value: string;
1557
+ badge?: React__default.ReactNode;
1527
1558
  }
1528
1559
  interface WalletBalancesProps {
1529
1560
  cards: WalletBalanceItem[];
@@ -1573,6 +1604,8 @@ interface EarnInvestmentSummaryViewProps {
1573
1604
  totalInvestedValue: string;
1574
1605
  totalReturnLabel: string;
1575
1606
  totalReturnValue: string;
1607
+ processingBadgeLabel?: string;
1608
+ processingBadgeTitle?: string;
1576
1609
  className?: string;
1577
1610
  }
1578
1611
  /**
@@ -1747,6 +1780,9 @@ interface HistoryListViewItem {
1747
1780
  subtitle: string;
1748
1781
  amountFormatted: string;
1749
1782
  amountUsd?: string;
1783
+ status?: 'SUCCESS' | 'PENDING' | 'FAILED' | 'REFUNDED';
1784
+ statusLabel?: string;
1785
+ statusTitle?: string;
1750
1786
  onClick: () => void;
1751
1787
  }
1752
1788
  interface HistoryListViewGroup {
@@ -1773,12 +1809,15 @@ interface EarnTokenSelectorViewProps {
1773
1809
  logoURI?: string | null;
1774
1810
  } | null;
1775
1811
  onTokenClick: () => void;
1812
+ onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
1776
1813
  isLoading: boolean;
1777
1814
  selectTokenLabel: string;
1778
1815
  chainLabel: string;
1779
1816
  chainImage?: string;
1780
1817
  chainDirectionLabel: string;
1781
1818
  chainDisabledTitle?: string;
1819
+ isNetworkDisabled?: boolean;
1820
+ currentNetworkSelected?: ChainItem | null;
1782
1821
  }
1783
1822
  declare const EarnTokenSelectorView: React__default.FC<EarnTokenSelectorViewProps>;
1784
1823
 
@@ -1803,11 +1842,14 @@ interface EarnWithdrawTokenSelectorViewProps {
1803
1842
  logoURI?: string | null;
1804
1843
  } | null;
1805
1844
  onTokenClick: () => void;
1845
+ onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
1806
1846
  selectTokenLabel: string;
1807
1847
  chainLabel: string;
1808
1848
  chainImage?: string;
1809
1849
  chainDirectionLabel: string;
1810
1850
  chainDisabledTitle?: string;
1851
+ isNetworkDisabled?: boolean;
1852
+ currentNetworkSelected?: ChainItem | null;
1811
1853
  }
1812
1854
  declare const EarnWithdrawTokenSelectorView: React__default.FC<EarnWithdrawTokenSelectorViewProps>;
1813
1855
 
@@ -1858,6 +1900,9 @@ interface EarnDepositFormViewProps {
1858
1900
  chainImage?: string;
1859
1901
  chainDirectionLabel: string;
1860
1902
  chainDisabledTitle?: string;
1903
+ onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
1904
+ isNetworkDisabled?: boolean;
1905
+ currentNetworkSelected?: ChainItem | null;
1861
1906
  amountValue: string;
1862
1907
  onAmountChange: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
1863
1908
  amountAriaLabel: string;
@@ -1911,6 +1956,9 @@ interface EarnWithdrawFormViewProps {
1911
1956
  chainImage?: string;
1912
1957
  chainDirectionLabel: string;
1913
1958
  chainDisabledTitle?: string;
1959
+ onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
1960
+ isNetworkDisabled?: boolean;
1961
+ currentNetworkSelected?: ChainItem | null;
1914
1962
  amountValue: string;
1915
1963
  onAmountChange: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
1916
1964
  amountAriaLabel: string;
@@ -2133,4 +2181,4 @@ interface DeframeTheme {
2133
2181
  colors?: DeframeThemeColors;
2134
2182
  }
2135
2183
 
2136
- 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 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, type NetworkOption, 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, 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 };
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 };