@deframe-sdk/components 0.1.15 → 0.1.16

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
@@ -663,23 +663,6 @@ declare const HistoryDepositDetailsView: React__default.FC<HistoryDetailsViewPro
663
663
 
664
664
  declare const HistoryWithdrawDetailsView: React__default.FC<HistoryDetailsViewProps>;
665
665
 
666
- interface SwapNetworkSelectorViewProps {
667
- chainLabel: string;
668
- chainImage?: string;
669
- onClick: () => void;
670
- directionLabel?: string;
671
- testId?: string;
672
- className?: string;
673
- }
674
- declare const SwapNetworkSelectorView: React__default.FC<SwapNetworkSelectorViewProps>;
675
-
676
- interface SwapQuoteHeaderViewProps {
677
- label: React__default.ReactNode;
678
- timerElement?: React__default.ReactNode;
679
- className?: string;
680
- }
681
- declare const SwapQuoteHeaderView: React__default.FC<SwapQuoteHeaderViewProps>;
682
-
683
666
  interface InputFieldRegistration {
684
667
  name: string;
685
668
  onBlur: React__default.FocusEventHandler<HTMLInputElement>;
@@ -696,6 +679,21 @@ interface SwapAmountInputViewProps {
696
679
  }
697
680
  declare const SwapAmountInputView: React__default.FC<SwapAmountInputViewProps>;
698
681
 
682
+ interface SwapNetworkSelectorViewProps {
683
+ chainLabel: string;
684
+ chainImage?: string;
685
+ onClick: () => void;
686
+ directionLabel?: string;
687
+ testId?: string;
688
+ className?: string;
689
+ }
690
+
691
+ interface SwapQuoteHeaderViewProps {
692
+ label: React__default.ReactNode;
693
+ timerElement?: React__default.ReactNode;
694
+ className?: string;
695
+ }
696
+
699
697
  interface SwapOutputAmountViewProps {
700
698
  displayOutput: string | number;
701
699
  isLoading: boolean;
@@ -703,7 +701,6 @@ interface SwapOutputAmountViewProps {
703
701
  searchingQuoteLabel?: string;
704
702
  className?: string;
705
703
  }
706
- declare const SwapOutputAmountView: React__default.FC<SwapOutputAmountViewProps>;
707
704
 
708
705
  interface SwapQuoteErrorsViewProps {
709
706
  hasQuoteError: boolean;
@@ -711,7 +708,6 @@ interface SwapQuoteErrorsViewProps {
711
708
  quoteErrorMessage?: string;
712
709
  bytecodeErrorMessage?: string;
713
710
  }
714
- declare const SwapQuoteErrorsView: React__default.FC<SwapQuoteErrorsViewProps>;
715
711
 
716
712
  interface SwapSlippageToleranceButtonsViewProps {
717
713
  slippageBps: number;
@@ -719,7 +715,6 @@ interface SwapSlippageToleranceButtonsViewProps {
719
715
  formatPercentage: (bps: number) => string;
720
716
  className?: string;
721
717
  }
722
- declare const SwapSlippageToleranceButtonsView: React__default.FC<SwapSlippageToleranceButtonsViewProps>;
723
718
 
724
719
  interface SwapTokenSelectorViewProps {
725
720
  token: {
@@ -731,7 +726,6 @@ interface SwapTokenSelectorViewProps {
731
726
  selectTokenLabel?: string;
732
727
  className?: string;
733
728
  }
734
- declare const SwapTokenSelectorView: React__default.FC<SwapTokenSelectorViewProps>;
735
729
 
736
730
  interface SwapQuoteBlockchainCostsViewProps {
737
731
  totalCostFormatted: string;
@@ -744,7 +738,6 @@ interface SwapQuoteBlockchainCostsViewProps {
744
738
  collapseLabel?: string;
745
739
  expandLabel?: string;
746
740
  }
747
- declare const SwapQuoteBlockchainCostsView: React__default.FC<SwapQuoteBlockchainCostsViewProps>;
748
741
 
749
742
  interface ChooseAStrategyActionsheetViewProps {
750
743
  isOpen: boolean;
@@ -781,6 +774,8 @@ interface StrategyDetailsViewProps {
781
774
  strategyInfoTitle?: string;
782
775
  depositButtonLabel?: string;
783
776
  backAriaLabel?: string;
777
+ error?: string;
778
+ notFoundMessage?: string;
784
779
  }
785
780
  declare const StrategyDetailsView: React__default.FC<StrategyDetailsViewProps>;
786
781
 
@@ -1199,18 +1194,6 @@ interface SwapFormLabels {
1199
1194
  historyAriaLabel: string;
1200
1195
  }
1201
1196
 
1202
- interface SwapFormViewProps {
1203
- labels: SwapFormLabels;
1204
- onHistoryClick: () => void;
1205
- fromCard: React__default.ReactNode;
1206
- switchButton: React__default.ReactNode;
1207
- toCard: React__default.ReactNode;
1208
- advancedSettings: React__default.ReactNode;
1209
- transactionDetails: React__default.ReactNode;
1210
- confirmButton: React__default.ReactNode;
1211
- }
1212
- declare const SwapFormView: React__default.FC<SwapFormViewProps>;
1213
-
1214
1197
  interface SwapCardLabels {
1215
1198
  selectTokenLabel: string;
1216
1199
  balanceLabel: string;
@@ -1240,7 +1223,8 @@ interface SwapFromCardViewProps {
1240
1223
  maxFractionDigits?: number;
1241
1224
  amountUsdFormatted: string;
1242
1225
  isAmountUsdLoading: boolean;
1243
- amountSlot?: React__default.ReactNode;
1226
+ /** react-hook-form field registration (name, onBlur, ref) */
1227
+ field?: InputFieldRegistration;
1244
1228
  }
1245
1229
  declare const SwapFromCardView: React__default.FC<SwapFromCardViewProps>;
1246
1230
 
@@ -1263,6 +1247,22 @@ interface SwapToCardViewProps {
1263
1247
  }
1264
1248
  declare const SwapToCardView: React__default.FC<SwapToCardViewProps>;
1265
1249
 
1250
+ interface SwapAdvancedSettingsViewProps {
1251
+ title: string;
1252
+ isOpen: boolean;
1253
+ onOpenChange: (open: boolean) => void;
1254
+ slippageBps: number;
1255
+ onSlippageSelect: (bps: number) => void;
1256
+ formatPercentage: (bps: number) => string;
1257
+ percentageOptions: number[];
1258
+ onPercentageClick: (pct: number) => void;
1259
+ slippageFormatted: string;
1260
+ collapseText: string;
1261
+ expandText: string;
1262
+ maxLabel: string;
1263
+ }
1264
+ declare const SwapAdvancedSettingsView: React__default.FC<SwapAdvancedSettingsViewProps>;
1265
+
1266
1266
  interface SwapQuoteDetailsLabels {
1267
1267
  headerLabel: string;
1268
1268
  exchangeRateLabel: string;
@@ -1299,22 +1299,6 @@ interface SwapQuoteDetailsViewProps {
1299
1299
  }
1300
1300
  declare const SwapQuoteDetailsView: React__default.FC<SwapQuoteDetailsViewProps>;
1301
1301
 
1302
- interface SwapAdvancedSettingsViewProps {
1303
- title: string;
1304
- isOpen: boolean;
1305
- onOpenChange: (open: boolean) => void;
1306
- slippageBps: number;
1307
- onSlippageSelect: (bps: number) => void;
1308
- formatPercentage: (bps: number) => string;
1309
- percentageOptions: number[];
1310
- onPercentageClick: (pct: number) => void;
1311
- slippageFormatted: string;
1312
- collapseText: string;
1313
- expandText: string;
1314
- maxLabel: string;
1315
- }
1316
- declare const SwapAdvancedSettingsView: React__default.FC<SwapAdvancedSettingsViewProps>;
1317
-
1318
1302
  interface ConfirmSwapButtonLabels {
1319
1303
  defaultLabel: string;
1320
1304
  preparingSwapLabel: string;
@@ -1338,6 +1322,21 @@ interface ConfirmSwapButtonViewProps {
1338
1322
  }
1339
1323
  declare const ConfirmSwapButtonView: React__default.FC<ConfirmSwapButtonViewProps>;
1340
1324
 
1325
+ interface SwapFormViewProps {
1326
+ onSubmit: React__default.FormEventHandler<HTMLFormElement>;
1327
+ formRef?: React__default.Ref<HTMLFormElement>;
1328
+ labels: SwapFormLabels;
1329
+ onHistoryClick: () => void;
1330
+ onSwitchTokens: () => void;
1331
+ switchTokensAriaLabel: string;
1332
+ fromCard: SwapFromCardViewProps;
1333
+ toCard: SwapToCardViewProps;
1334
+ advancedSettings: SwapAdvancedSettingsViewProps;
1335
+ transactionDetails: SwapQuoteDetailsViewProps;
1336
+ confirmButton: ConfirmSwapButtonViewProps;
1337
+ }
1338
+ declare const SwapFormView: React__default.FC<SwapFormViewProps>;
1339
+
1341
1340
  interface ChooseANetworkLabels {
1342
1341
  title: string;
1343
1342
  searchPlaceholder: string;
@@ -1585,7 +1584,7 @@ declare const EarnRecentTransactionsView: React__default.FC<EarnRecentTransactio
1585
1584
 
1586
1585
  interface EarnDesktopViewProps {
1587
1586
  isLoading: boolean;
1588
- loadingSkeleton: React__default.ReactNode;
1587
+ loadingSkeleton?: React__default.ReactNode;
1589
1588
  summary: EarnInvestmentSummaryViewProps;
1590
1589
  invested: EarnInvestedSectionViewProps;
1591
1590
  explore: EarnExploreGridViewProps;
@@ -1606,7 +1605,13 @@ interface EarnInvestmentDetailsTransaction {
1606
1605
  tokenAmount: string;
1607
1606
  }
1608
1607
 
1609
- interface EarnInvestmentDetailsViewProps {
1608
+ interface EarnInvestmentDetailsLoadingProps {
1609
+ isLoading: true;
1610
+ loadingSkeleton?: React__default.ReactNode;
1611
+ }
1612
+ interface EarnInvestmentDetailsContentProps {
1613
+ isLoading?: false;
1614
+ loadingSkeleton?: never;
1610
1615
  title: string;
1611
1616
  onBack?: () => void;
1612
1617
  tokenIcon?: string;
@@ -1631,10 +1636,7 @@ interface EarnInvestmentDetailsViewProps {
1631
1636
  withdrawLabel: string;
1632
1637
  onWithdraw: () => void;
1633
1638
  }
1634
- /**
1635
- * Investment details view for a single strategy position.
1636
- * Pure view — receives all data pre-formatted from the container.
1637
- */
1639
+ type EarnInvestmentDetailsViewProps = EarnInvestmentDetailsLoadingProps | EarnInvestmentDetailsContentProps;
1638
1640
  declare const EarnInvestmentDetailsView: React__default.FC<EarnInvestmentDetailsViewProps>;
1639
1641
 
1640
1642
  interface GroupedStrategyListItem {
@@ -2065,4 +2067,4 @@ interface DeframeTheme {
2065
2067
  colors?: DeframeThemeColors;
2066
2068
  }
2067
2069
 
2068
- 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, SwapNetworkSelectorView, type SwapNetworkSelectorViewProps, SwapOutputAmountView, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapProcessingViewSimple, SwapQuoteBlockchainCostsView, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, SwapQuoteErrorsView, type SwapQuoteErrorsViewProps, SwapQuoteHeaderView, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSlippageToleranceButtonsView, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapSuccessViewSimple, SwapToCardView, type SwapToCardViewProps, SwapTokenSelectorView, 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 };
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 };
package/dist/index.d.ts CHANGED
@@ -663,23 +663,6 @@ declare const HistoryDepositDetailsView: React__default.FC<HistoryDetailsViewPro
663
663
 
664
664
  declare const HistoryWithdrawDetailsView: React__default.FC<HistoryDetailsViewProps>;
665
665
 
666
- interface SwapNetworkSelectorViewProps {
667
- chainLabel: string;
668
- chainImage?: string;
669
- onClick: () => void;
670
- directionLabel?: string;
671
- testId?: string;
672
- className?: string;
673
- }
674
- declare const SwapNetworkSelectorView: React__default.FC<SwapNetworkSelectorViewProps>;
675
-
676
- interface SwapQuoteHeaderViewProps {
677
- label: React__default.ReactNode;
678
- timerElement?: React__default.ReactNode;
679
- className?: string;
680
- }
681
- declare const SwapQuoteHeaderView: React__default.FC<SwapQuoteHeaderViewProps>;
682
-
683
666
  interface InputFieldRegistration {
684
667
  name: string;
685
668
  onBlur: React__default.FocusEventHandler<HTMLInputElement>;
@@ -696,6 +679,21 @@ interface SwapAmountInputViewProps {
696
679
  }
697
680
  declare const SwapAmountInputView: React__default.FC<SwapAmountInputViewProps>;
698
681
 
682
+ interface SwapNetworkSelectorViewProps {
683
+ chainLabel: string;
684
+ chainImage?: string;
685
+ onClick: () => void;
686
+ directionLabel?: string;
687
+ testId?: string;
688
+ className?: string;
689
+ }
690
+
691
+ interface SwapQuoteHeaderViewProps {
692
+ label: React__default.ReactNode;
693
+ timerElement?: React__default.ReactNode;
694
+ className?: string;
695
+ }
696
+
699
697
  interface SwapOutputAmountViewProps {
700
698
  displayOutput: string | number;
701
699
  isLoading: boolean;
@@ -703,7 +701,6 @@ interface SwapOutputAmountViewProps {
703
701
  searchingQuoteLabel?: string;
704
702
  className?: string;
705
703
  }
706
- declare const SwapOutputAmountView: React__default.FC<SwapOutputAmountViewProps>;
707
704
 
708
705
  interface SwapQuoteErrorsViewProps {
709
706
  hasQuoteError: boolean;
@@ -711,7 +708,6 @@ interface SwapQuoteErrorsViewProps {
711
708
  quoteErrorMessage?: string;
712
709
  bytecodeErrorMessage?: string;
713
710
  }
714
- declare const SwapQuoteErrorsView: React__default.FC<SwapQuoteErrorsViewProps>;
715
711
 
716
712
  interface SwapSlippageToleranceButtonsViewProps {
717
713
  slippageBps: number;
@@ -719,7 +715,6 @@ interface SwapSlippageToleranceButtonsViewProps {
719
715
  formatPercentage: (bps: number) => string;
720
716
  className?: string;
721
717
  }
722
- declare const SwapSlippageToleranceButtonsView: React__default.FC<SwapSlippageToleranceButtonsViewProps>;
723
718
 
724
719
  interface SwapTokenSelectorViewProps {
725
720
  token: {
@@ -731,7 +726,6 @@ interface SwapTokenSelectorViewProps {
731
726
  selectTokenLabel?: string;
732
727
  className?: string;
733
728
  }
734
- declare const SwapTokenSelectorView: React__default.FC<SwapTokenSelectorViewProps>;
735
729
 
736
730
  interface SwapQuoteBlockchainCostsViewProps {
737
731
  totalCostFormatted: string;
@@ -744,7 +738,6 @@ interface SwapQuoteBlockchainCostsViewProps {
744
738
  collapseLabel?: string;
745
739
  expandLabel?: string;
746
740
  }
747
- declare const SwapQuoteBlockchainCostsView: React__default.FC<SwapQuoteBlockchainCostsViewProps>;
748
741
 
749
742
  interface ChooseAStrategyActionsheetViewProps {
750
743
  isOpen: boolean;
@@ -781,6 +774,8 @@ interface StrategyDetailsViewProps {
781
774
  strategyInfoTitle?: string;
782
775
  depositButtonLabel?: string;
783
776
  backAriaLabel?: string;
777
+ error?: string;
778
+ notFoundMessage?: string;
784
779
  }
785
780
  declare const StrategyDetailsView: React__default.FC<StrategyDetailsViewProps>;
786
781
 
@@ -1199,18 +1194,6 @@ interface SwapFormLabels {
1199
1194
  historyAriaLabel: string;
1200
1195
  }
1201
1196
 
1202
- interface SwapFormViewProps {
1203
- labels: SwapFormLabels;
1204
- onHistoryClick: () => void;
1205
- fromCard: React__default.ReactNode;
1206
- switchButton: React__default.ReactNode;
1207
- toCard: React__default.ReactNode;
1208
- advancedSettings: React__default.ReactNode;
1209
- transactionDetails: React__default.ReactNode;
1210
- confirmButton: React__default.ReactNode;
1211
- }
1212
- declare const SwapFormView: React__default.FC<SwapFormViewProps>;
1213
-
1214
1197
  interface SwapCardLabels {
1215
1198
  selectTokenLabel: string;
1216
1199
  balanceLabel: string;
@@ -1240,7 +1223,8 @@ interface SwapFromCardViewProps {
1240
1223
  maxFractionDigits?: number;
1241
1224
  amountUsdFormatted: string;
1242
1225
  isAmountUsdLoading: boolean;
1243
- amountSlot?: React__default.ReactNode;
1226
+ /** react-hook-form field registration (name, onBlur, ref) */
1227
+ field?: InputFieldRegistration;
1244
1228
  }
1245
1229
  declare const SwapFromCardView: React__default.FC<SwapFromCardViewProps>;
1246
1230
 
@@ -1263,6 +1247,22 @@ interface SwapToCardViewProps {
1263
1247
  }
1264
1248
  declare const SwapToCardView: React__default.FC<SwapToCardViewProps>;
1265
1249
 
1250
+ interface SwapAdvancedSettingsViewProps {
1251
+ title: string;
1252
+ isOpen: boolean;
1253
+ onOpenChange: (open: boolean) => void;
1254
+ slippageBps: number;
1255
+ onSlippageSelect: (bps: number) => void;
1256
+ formatPercentage: (bps: number) => string;
1257
+ percentageOptions: number[];
1258
+ onPercentageClick: (pct: number) => void;
1259
+ slippageFormatted: string;
1260
+ collapseText: string;
1261
+ expandText: string;
1262
+ maxLabel: string;
1263
+ }
1264
+ declare const SwapAdvancedSettingsView: React__default.FC<SwapAdvancedSettingsViewProps>;
1265
+
1266
1266
  interface SwapQuoteDetailsLabels {
1267
1267
  headerLabel: string;
1268
1268
  exchangeRateLabel: string;
@@ -1299,22 +1299,6 @@ interface SwapQuoteDetailsViewProps {
1299
1299
  }
1300
1300
  declare const SwapQuoteDetailsView: React__default.FC<SwapQuoteDetailsViewProps>;
1301
1301
 
1302
- interface SwapAdvancedSettingsViewProps {
1303
- title: string;
1304
- isOpen: boolean;
1305
- onOpenChange: (open: boolean) => void;
1306
- slippageBps: number;
1307
- onSlippageSelect: (bps: number) => void;
1308
- formatPercentage: (bps: number) => string;
1309
- percentageOptions: number[];
1310
- onPercentageClick: (pct: number) => void;
1311
- slippageFormatted: string;
1312
- collapseText: string;
1313
- expandText: string;
1314
- maxLabel: string;
1315
- }
1316
- declare const SwapAdvancedSettingsView: React__default.FC<SwapAdvancedSettingsViewProps>;
1317
-
1318
1302
  interface ConfirmSwapButtonLabels {
1319
1303
  defaultLabel: string;
1320
1304
  preparingSwapLabel: string;
@@ -1338,6 +1322,21 @@ interface ConfirmSwapButtonViewProps {
1338
1322
  }
1339
1323
  declare const ConfirmSwapButtonView: React__default.FC<ConfirmSwapButtonViewProps>;
1340
1324
 
1325
+ interface SwapFormViewProps {
1326
+ onSubmit: React__default.FormEventHandler<HTMLFormElement>;
1327
+ formRef?: React__default.Ref<HTMLFormElement>;
1328
+ labels: SwapFormLabels;
1329
+ onHistoryClick: () => void;
1330
+ onSwitchTokens: () => void;
1331
+ switchTokensAriaLabel: string;
1332
+ fromCard: SwapFromCardViewProps;
1333
+ toCard: SwapToCardViewProps;
1334
+ advancedSettings: SwapAdvancedSettingsViewProps;
1335
+ transactionDetails: SwapQuoteDetailsViewProps;
1336
+ confirmButton: ConfirmSwapButtonViewProps;
1337
+ }
1338
+ declare const SwapFormView: React__default.FC<SwapFormViewProps>;
1339
+
1341
1340
  interface ChooseANetworkLabels {
1342
1341
  title: string;
1343
1342
  searchPlaceholder: string;
@@ -1585,7 +1584,7 @@ declare const EarnRecentTransactionsView: React__default.FC<EarnRecentTransactio
1585
1584
 
1586
1585
  interface EarnDesktopViewProps {
1587
1586
  isLoading: boolean;
1588
- loadingSkeleton: React__default.ReactNode;
1587
+ loadingSkeleton?: React__default.ReactNode;
1589
1588
  summary: EarnInvestmentSummaryViewProps;
1590
1589
  invested: EarnInvestedSectionViewProps;
1591
1590
  explore: EarnExploreGridViewProps;
@@ -1606,7 +1605,13 @@ interface EarnInvestmentDetailsTransaction {
1606
1605
  tokenAmount: string;
1607
1606
  }
1608
1607
 
1609
- interface EarnInvestmentDetailsViewProps {
1608
+ interface EarnInvestmentDetailsLoadingProps {
1609
+ isLoading: true;
1610
+ loadingSkeleton?: React__default.ReactNode;
1611
+ }
1612
+ interface EarnInvestmentDetailsContentProps {
1613
+ isLoading?: false;
1614
+ loadingSkeleton?: never;
1610
1615
  title: string;
1611
1616
  onBack?: () => void;
1612
1617
  tokenIcon?: string;
@@ -1631,10 +1636,7 @@ interface EarnInvestmentDetailsViewProps {
1631
1636
  withdrawLabel: string;
1632
1637
  onWithdraw: () => void;
1633
1638
  }
1634
- /**
1635
- * Investment details view for a single strategy position.
1636
- * Pure view — receives all data pre-formatted from the container.
1637
- */
1639
+ type EarnInvestmentDetailsViewProps = EarnInvestmentDetailsLoadingProps | EarnInvestmentDetailsContentProps;
1638
1640
  declare const EarnInvestmentDetailsView: React__default.FC<EarnInvestmentDetailsViewProps>;
1639
1641
 
1640
1642
  interface GroupedStrategyListItem {
@@ -2065,4 +2067,4 @@ interface DeframeTheme {
2065
2067
  colors?: DeframeThemeColors;
2066
2068
  }
2067
2069
 
2068
- 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, SwapNetworkSelectorView, type SwapNetworkSelectorViewProps, SwapOutputAmountView, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapProcessingViewSimple, SwapQuoteBlockchainCostsView, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, SwapQuoteErrorsView, type SwapQuoteErrorsViewProps, SwapQuoteHeaderView, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSlippageToleranceButtonsView, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapSuccessViewSimple, SwapToCardView, type SwapToCardViewProps, SwapTokenSelectorView, 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 };
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 };