@deframe-sdk/components 0.1.14 → 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 +69 -63
- package/dist/index.d.ts +69 -63
- package/dist/index.js +402 -338
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +404 -333
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +81 -126
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -236,10 +236,6 @@ declare function Link({ children, href, className, target, disabled, prefetch: _
|
|
|
236
236
|
*/
|
|
237
237
|
declare function Title({ variant, className, ...props }: TextHeadingProps): react_jsx_runtime.JSX.Element;
|
|
238
238
|
|
|
239
|
-
interface TextProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
240
|
-
as?: keyof React$1.JSX.IntrinsicElements;
|
|
241
|
-
variantClass?: string;
|
|
242
|
-
}
|
|
243
239
|
/**
|
|
244
240
|
* Base Text component used internally by other text variants.
|
|
245
241
|
* Handles tag selection, base font, and class merging.
|
|
@@ -249,14 +245,22 @@ declare const Text: React$1.ForwardRefExoticComponent<TextProps & React$1.RefAtt
|
|
|
249
245
|
interface TextAccentProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
250
246
|
variant?: 'accent-large' | 'accent-medium' | 'accent-small';
|
|
251
247
|
as?: keyof React$1.JSX.IntrinsicElements;
|
|
248
|
+
disabled?: boolean;
|
|
252
249
|
}
|
|
253
250
|
interface TextBodyProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
254
|
-
variant?: '
|
|
251
|
+
variant?: 'text-large' | 'text-medium' | 'text-small';
|
|
255
252
|
as?: keyof React$1.JSX.IntrinsicElements;
|
|
253
|
+
disabled?: boolean;
|
|
256
254
|
}
|
|
257
255
|
interface TextHeadingProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
258
256
|
variant?: 'h-large' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5';
|
|
259
257
|
as?: keyof React$1.JSX.IntrinsicElements;
|
|
258
|
+
disabled?: boolean;
|
|
259
|
+
}
|
|
260
|
+
interface TextProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
261
|
+
as?: keyof React$1.JSX.IntrinsicElements;
|
|
262
|
+
variantClass?: string;
|
|
263
|
+
disabled?: boolean;
|
|
260
264
|
}
|
|
261
265
|
interface LinkProps extends React$1.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
262
266
|
href: string;
|
|
@@ -659,23 +663,6 @@ declare const HistoryDepositDetailsView: React__default.FC<HistoryDetailsViewPro
|
|
|
659
663
|
|
|
660
664
|
declare const HistoryWithdrawDetailsView: React__default.FC<HistoryDetailsViewProps>;
|
|
661
665
|
|
|
662
|
-
interface SwapNetworkSelectorViewProps {
|
|
663
|
-
chainLabel: string;
|
|
664
|
-
chainImage?: string;
|
|
665
|
-
onClick: () => void;
|
|
666
|
-
directionLabel?: string;
|
|
667
|
-
testId?: string;
|
|
668
|
-
className?: string;
|
|
669
|
-
}
|
|
670
|
-
declare const SwapNetworkSelectorView: React__default.FC<SwapNetworkSelectorViewProps>;
|
|
671
|
-
|
|
672
|
-
interface SwapQuoteHeaderViewProps {
|
|
673
|
-
label: React__default.ReactNode;
|
|
674
|
-
timerElement?: React__default.ReactNode;
|
|
675
|
-
className?: string;
|
|
676
|
-
}
|
|
677
|
-
declare const SwapQuoteHeaderView: React__default.FC<SwapQuoteHeaderViewProps>;
|
|
678
|
-
|
|
679
666
|
interface InputFieldRegistration {
|
|
680
667
|
name: string;
|
|
681
668
|
onBlur: React__default.FocusEventHandler<HTMLInputElement>;
|
|
@@ -692,6 +679,21 @@ interface SwapAmountInputViewProps {
|
|
|
692
679
|
}
|
|
693
680
|
declare const SwapAmountInputView: React__default.FC<SwapAmountInputViewProps>;
|
|
694
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
|
+
|
|
695
697
|
interface SwapOutputAmountViewProps {
|
|
696
698
|
displayOutput: string | number;
|
|
697
699
|
isLoading: boolean;
|
|
@@ -699,7 +701,6 @@ interface SwapOutputAmountViewProps {
|
|
|
699
701
|
searchingQuoteLabel?: string;
|
|
700
702
|
className?: string;
|
|
701
703
|
}
|
|
702
|
-
declare const SwapOutputAmountView: React__default.FC<SwapOutputAmountViewProps>;
|
|
703
704
|
|
|
704
705
|
interface SwapQuoteErrorsViewProps {
|
|
705
706
|
hasQuoteError: boolean;
|
|
@@ -707,7 +708,6 @@ interface SwapQuoteErrorsViewProps {
|
|
|
707
708
|
quoteErrorMessage?: string;
|
|
708
709
|
bytecodeErrorMessage?: string;
|
|
709
710
|
}
|
|
710
|
-
declare const SwapQuoteErrorsView: React__default.FC<SwapQuoteErrorsViewProps>;
|
|
711
711
|
|
|
712
712
|
interface SwapSlippageToleranceButtonsViewProps {
|
|
713
713
|
slippageBps: number;
|
|
@@ -715,7 +715,6 @@ interface SwapSlippageToleranceButtonsViewProps {
|
|
|
715
715
|
formatPercentage: (bps: number) => string;
|
|
716
716
|
className?: string;
|
|
717
717
|
}
|
|
718
|
-
declare const SwapSlippageToleranceButtonsView: React__default.FC<SwapSlippageToleranceButtonsViewProps>;
|
|
719
718
|
|
|
720
719
|
interface SwapTokenSelectorViewProps {
|
|
721
720
|
token: {
|
|
@@ -727,7 +726,6 @@ interface SwapTokenSelectorViewProps {
|
|
|
727
726
|
selectTokenLabel?: string;
|
|
728
727
|
className?: string;
|
|
729
728
|
}
|
|
730
|
-
declare const SwapTokenSelectorView: React__default.FC<SwapTokenSelectorViewProps>;
|
|
731
729
|
|
|
732
730
|
interface SwapQuoteBlockchainCostsViewProps {
|
|
733
731
|
totalCostFormatted: string;
|
|
@@ -740,7 +738,6 @@ interface SwapQuoteBlockchainCostsViewProps {
|
|
|
740
738
|
collapseLabel?: string;
|
|
741
739
|
expandLabel?: string;
|
|
742
740
|
}
|
|
743
|
-
declare const SwapQuoteBlockchainCostsView: React__default.FC<SwapQuoteBlockchainCostsViewProps>;
|
|
744
741
|
|
|
745
742
|
interface ChooseAStrategyActionsheetViewProps {
|
|
746
743
|
isOpen: boolean;
|
|
@@ -777,6 +774,8 @@ interface StrategyDetailsViewProps {
|
|
|
777
774
|
strategyInfoTitle?: string;
|
|
778
775
|
depositButtonLabel?: string;
|
|
779
776
|
backAriaLabel?: string;
|
|
777
|
+
error?: string;
|
|
778
|
+
notFoundMessage?: string;
|
|
780
779
|
}
|
|
781
780
|
declare const StrategyDetailsView: React__default.FC<StrategyDetailsViewProps>;
|
|
782
781
|
|
|
@@ -1195,18 +1194,6 @@ interface SwapFormLabels {
|
|
|
1195
1194
|
historyAriaLabel: string;
|
|
1196
1195
|
}
|
|
1197
1196
|
|
|
1198
|
-
interface SwapFormViewProps {
|
|
1199
|
-
labels: SwapFormLabels;
|
|
1200
|
-
onHistoryClick: () => void;
|
|
1201
|
-
fromCard: React__default.ReactNode;
|
|
1202
|
-
switchButton: React__default.ReactNode;
|
|
1203
|
-
toCard: React__default.ReactNode;
|
|
1204
|
-
advancedSettings: React__default.ReactNode;
|
|
1205
|
-
transactionDetails: React__default.ReactNode;
|
|
1206
|
-
confirmButton: React__default.ReactNode;
|
|
1207
|
-
}
|
|
1208
|
-
declare const SwapFormView: React__default.FC<SwapFormViewProps>;
|
|
1209
|
-
|
|
1210
1197
|
interface SwapCardLabels {
|
|
1211
1198
|
selectTokenLabel: string;
|
|
1212
1199
|
balanceLabel: string;
|
|
@@ -1236,7 +1223,8 @@ interface SwapFromCardViewProps {
|
|
|
1236
1223
|
maxFractionDigits?: number;
|
|
1237
1224
|
amountUsdFormatted: string;
|
|
1238
1225
|
isAmountUsdLoading: boolean;
|
|
1239
|
-
|
|
1226
|
+
/** react-hook-form field registration (name, onBlur, ref) */
|
|
1227
|
+
field?: InputFieldRegistration;
|
|
1240
1228
|
}
|
|
1241
1229
|
declare const SwapFromCardView: React__default.FC<SwapFromCardViewProps>;
|
|
1242
1230
|
|
|
@@ -1259,6 +1247,22 @@ interface SwapToCardViewProps {
|
|
|
1259
1247
|
}
|
|
1260
1248
|
declare const SwapToCardView: React__default.FC<SwapToCardViewProps>;
|
|
1261
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
|
+
|
|
1262
1266
|
interface SwapQuoteDetailsLabels {
|
|
1263
1267
|
headerLabel: string;
|
|
1264
1268
|
exchangeRateLabel: string;
|
|
@@ -1295,22 +1299,6 @@ interface SwapQuoteDetailsViewProps {
|
|
|
1295
1299
|
}
|
|
1296
1300
|
declare const SwapQuoteDetailsView: React__default.FC<SwapQuoteDetailsViewProps>;
|
|
1297
1301
|
|
|
1298
|
-
interface SwapAdvancedSettingsViewProps {
|
|
1299
|
-
title: string;
|
|
1300
|
-
isOpen: boolean;
|
|
1301
|
-
onOpenChange: (open: boolean) => void;
|
|
1302
|
-
slippageBps: number;
|
|
1303
|
-
onSlippageSelect: (bps: number) => void;
|
|
1304
|
-
formatPercentage: (bps: number) => string;
|
|
1305
|
-
percentageOptions: number[];
|
|
1306
|
-
onPercentageClick: (pct: number) => void;
|
|
1307
|
-
slippageFormatted: string;
|
|
1308
|
-
collapseText: string;
|
|
1309
|
-
expandText: string;
|
|
1310
|
-
maxLabel: string;
|
|
1311
|
-
}
|
|
1312
|
-
declare const SwapAdvancedSettingsView: React__default.FC<SwapAdvancedSettingsViewProps>;
|
|
1313
|
-
|
|
1314
1302
|
interface ConfirmSwapButtonLabels {
|
|
1315
1303
|
defaultLabel: string;
|
|
1316
1304
|
preparingSwapLabel: string;
|
|
@@ -1334,6 +1322,21 @@ interface ConfirmSwapButtonViewProps {
|
|
|
1334
1322
|
}
|
|
1335
1323
|
declare const ConfirmSwapButtonView: React__default.FC<ConfirmSwapButtonViewProps>;
|
|
1336
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
|
+
|
|
1337
1340
|
interface ChooseANetworkLabels {
|
|
1338
1341
|
title: string;
|
|
1339
1342
|
searchPlaceholder: string;
|
|
@@ -1581,7 +1584,7 @@ declare const EarnRecentTransactionsView: React__default.FC<EarnRecentTransactio
|
|
|
1581
1584
|
|
|
1582
1585
|
interface EarnDesktopViewProps {
|
|
1583
1586
|
isLoading: boolean;
|
|
1584
|
-
loadingSkeleton
|
|
1587
|
+
loadingSkeleton?: React__default.ReactNode;
|
|
1585
1588
|
summary: EarnInvestmentSummaryViewProps;
|
|
1586
1589
|
invested: EarnInvestedSectionViewProps;
|
|
1587
1590
|
explore: EarnExploreGridViewProps;
|
|
@@ -1602,7 +1605,13 @@ interface EarnInvestmentDetailsTransaction {
|
|
|
1602
1605
|
tokenAmount: string;
|
|
1603
1606
|
}
|
|
1604
1607
|
|
|
1605
|
-
interface
|
|
1608
|
+
interface EarnInvestmentDetailsLoadingProps {
|
|
1609
|
+
isLoading: true;
|
|
1610
|
+
loadingSkeleton?: React__default.ReactNode;
|
|
1611
|
+
}
|
|
1612
|
+
interface EarnInvestmentDetailsContentProps {
|
|
1613
|
+
isLoading?: false;
|
|
1614
|
+
loadingSkeleton?: never;
|
|
1606
1615
|
title: string;
|
|
1607
1616
|
onBack?: () => void;
|
|
1608
1617
|
tokenIcon?: string;
|
|
@@ -1627,10 +1636,7 @@ interface EarnInvestmentDetailsViewProps {
|
|
|
1627
1636
|
withdrawLabel: string;
|
|
1628
1637
|
onWithdraw: () => void;
|
|
1629
1638
|
}
|
|
1630
|
-
|
|
1631
|
-
* Investment details view for a single strategy position.
|
|
1632
|
-
* Pure view — receives all data pre-formatted from the container.
|
|
1633
|
-
*/
|
|
1639
|
+
type EarnInvestmentDetailsViewProps = EarnInvestmentDetailsLoadingProps | EarnInvestmentDetailsContentProps;
|
|
1634
1640
|
declare const EarnInvestmentDetailsView: React__default.FC<EarnInvestmentDetailsViewProps>;
|
|
1635
1641
|
|
|
1636
1642
|
interface GroupedStrategyListItem {
|
|
@@ -2061,4 +2067,4 @@ interface DeframeTheme {
|
|
|
2061
2067
|
colors?: DeframeThemeColors;
|
|
2062
2068
|
}
|
|
2063
2069
|
|
|
2064
|
-
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,
|
|
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
|
@@ -236,10 +236,6 @@ declare function Link({ children, href, className, target, disabled, prefetch: _
|
|
|
236
236
|
*/
|
|
237
237
|
declare function Title({ variant, className, ...props }: TextHeadingProps): react_jsx_runtime.JSX.Element;
|
|
238
238
|
|
|
239
|
-
interface TextProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
240
|
-
as?: keyof React$1.JSX.IntrinsicElements;
|
|
241
|
-
variantClass?: string;
|
|
242
|
-
}
|
|
243
239
|
/**
|
|
244
240
|
* Base Text component used internally by other text variants.
|
|
245
241
|
* Handles tag selection, base font, and class merging.
|
|
@@ -249,14 +245,22 @@ declare const Text: React$1.ForwardRefExoticComponent<TextProps & React$1.RefAtt
|
|
|
249
245
|
interface TextAccentProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
250
246
|
variant?: 'accent-large' | 'accent-medium' | 'accent-small';
|
|
251
247
|
as?: keyof React$1.JSX.IntrinsicElements;
|
|
248
|
+
disabled?: boolean;
|
|
252
249
|
}
|
|
253
250
|
interface TextBodyProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
254
|
-
variant?: '
|
|
251
|
+
variant?: 'text-large' | 'text-medium' | 'text-small';
|
|
255
252
|
as?: keyof React$1.JSX.IntrinsicElements;
|
|
253
|
+
disabled?: boolean;
|
|
256
254
|
}
|
|
257
255
|
interface TextHeadingProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
258
256
|
variant?: 'h-large' | 'h1' | 'h2' | 'h3' | 'h4' | 'h5';
|
|
259
257
|
as?: keyof React$1.JSX.IntrinsicElements;
|
|
258
|
+
disabled?: boolean;
|
|
259
|
+
}
|
|
260
|
+
interface TextProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
261
|
+
as?: keyof React$1.JSX.IntrinsicElements;
|
|
262
|
+
variantClass?: string;
|
|
263
|
+
disabled?: boolean;
|
|
260
264
|
}
|
|
261
265
|
interface LinkProps extends React$1.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
262
266
|
href: string;
|
|
@@ -659,23 +663,6 @@ declare const HistoryDepositDetailsView: React__default.FC<HistoryDetailsViewPro
|
|
|
659
663
|
|
|
660
664
|
declare const HistoryWithdrawDetailsView: React__default.FC<HistoryDetailsViewProps>;
|
|
661
665
|
|
|
662
|
-
interface SwapNetworkSelectorViewProps {
|
|
663
|
-
chainLabel: string;
|
|
664
|
-
chainImage?: string;
|
|
665
|
-
onClick: () => void;
|
|
666
|
-
directionLabel?: string;
|
|
667
|
-
testId?: string;
|
|
668
|
-
className?: string;
|
|
669
|
-
}
|
|
670
|
-
declare const SwapNetworkSelectorView: React__default.FC<SwapNetworkSelectorViewProps>;
|
|
671
|
-
|
|
672
|
-
interface SwapQuoteHeaderViewProps {
|
|
673
|
-
label: React__default.ReactNode;
|
|
674
|
-
timerElement?: React__default.ReactNode;
|
|
675
|
-
className?: string;
|
|
676
|
-
}
|
|
677
|
-
declare const SwapQuoteHeaderView: React__default.FC<SwapQuoteHeaderViewProps>;
|
|
678
|
-
|
|
679
666
|
interface InputFieldRegistration {
|
|
680
667
|
name: string;
|
|
681
668
|
onBlur: React__default.FocusEventHandler<HTMLInputElement>;
|
|
@@ -692,6 +679,21 @@ interface SwapAmountInputViewProps {
|
|
|
692
679
|
}
|
|
693
680
|
declare const SwapAmountInputView: React__default.FC<SwapAmountInputViewProps>;
|
|
694
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
|
+
|
|
695
697
|
interface SwapOutputAmountViewProps {
|
|
696
698
|
displayOutput: string | number;
|
|
697
699
|
isLoading: boolean;
|
|
@@ -699,7 +701,6 @@ interface SwapOutputAmountViewProps {
|
|
|
699
701
|
searchingQuoteLabel?: string;
|
|
700
702
|
className?: string;
|
|
701
703
|
}
|
|
702
|
-
declare const SwapOutputAmountView: React__default.FC<SwapOutputAmountViewProps>;
|
|
703
704
|
|
|
704
705
|
interface SwapQuoteErrorsViewProps {
|
|
705
706
|
hasQuoteError: boolean;
|
|
@@ -707,7 +708,6 @@ interface SwapQuoteErrorsViewProps {
|
|
|
707
708
|
quoteErrorMessage?: string;
|
|
708
709
|
bytecodeErrorMessage?: string;
|
|
709
710
|
}
|
|
710
|
-
declare const SwapQuoteErrorsView: React__default.FC<SwapQuoteErrorsViewProps>;
|
|
711
711
|
|
|
712
712
|
interface SwapSlippageToleranceButtonsViewProps {
|
|
713
713
|
slippageBps: number;
|
|
@@ -715,7 +715,6 @@ interface SwapSlippageToleranceButtonsViewProps {
|
|
|
715
715
|
formatPercentage: (bps: number) => string;
|
|
716
716
|
className?: string;
|
|
717
717
|
}
|
|
718
|
-
declare const SwapSlippageToleranceButtonsView: React__default.FC<SwapSlippageToleranceButtonsViewProps>;
|
|
719
718
|
|
|
720
719
|
interface SwapTokenSelectorViewProps {
|
|
721
720
|
token: {
|
|
@@ -727,7 +726,6 @@ interface SwapTokenSelectorViewProps {
|
|
|
727
726
|
selectTokenLabel?: string;
|
|
728
727
|
className?: string;
|
|
729
728
|
}
|
|
730
|
-
declare const SwapTokenSelectorView: React__default.FC<SwapTokenSelectorViewProps>;
|
|
731
729
|
|
|
732
730
|
interface SwapQuoteBlockchainCostsViewProps {
|
|
733
731
|
totalCostFormatted: string;
|
|
@@ -740,7 +738,6 @@ interface SwapQuoteBlockchainCostsViewProps {
|
|
|
740
738
|
collapseLabel?: string;
|
|
741
739
|
expandLabel?: string;
|
|
742
740
|
}
|
|
743
|
-
declare const SwapQuoteBlockchainCostsView: React__default.FC<SwapQuoteBlockchainCostsViewProps>;
|
|
744
741
|
|
|
745
742
|
interface ChooseAStrategyActionsheetViewProps {
|
|
746
743
|
isOpen: boolean;
|
|
@@ -777,6 +774,8 @@ interface StrategyDetailsViewProps {
|
|
|
777
774
|
strategyInfoTitle?: string;
|
|
778
775
|
depositButtonLabel?: string;
|
|
779
776
|
backAriaLabel?: string;
|
|
777
|
+
error?: string;
|
|
778
|
+
notFoundMessage?: string;
|
|
780
779
|
}
|
|
781
780
|
declare const StrategyDetailsView: React__default.FC<StrategyDetailsViewProps>;
|
|
782
781
|
|
|
@@ -1195,18 +1194,6 @@ interface SwapFormLabels {
|
|
|
1195
1194
|
historyAriaLabel: string;
|
|
1196
1195
|
}
|
|
1197
1196
|
|
|
1198
|
-
interface SwapFormViewProps {
|
|
1199
|
-
labels: SwapFormLabels;
|
|
1200
|
-
onHistoryClick: () => void;
|
|
1201
|
-
fromCard: React__default.ReactNode;
|
|
1202
|
-
switchButton: React__default.ReactNode;
|
|
1203
|
-
toCard: React__default.ReactNode;
|
|
1204
|
-
advancedSettings: React__default.ReactNode;
|
|
1205
|
-
transactionDetails: React__default.ReactNode;
|
|
1206
|
-
confirmButton: React__default.ReactNode;
|
|
1207
|
-
}
|
|
1208
|
-
declare const SwapFormView: React__default.FC<SwapFormViewProps>;
|
|
1209
|
-
|
|
1210
1197
|
interface SwapCardLabels {
|
|
1211
1198
|
selectTokenLabel: string;
|
|
1212
1199
|
balanceLabel: string;
|
|
@@ -1236,7 +1223,8 @@ interface SwapFromCardViewProps {
|
|
|
1236
1223
|
maxFractionDigits?: number;
|
|
1237
1224
|
amountUsdFormatted: string;
|
|
1238
1225
|
isAmountUsdLoading: boolean;
|
|
1239
|
-
|
|
1226
|
+
/** react-hook-form field registration (name, onBlur, ref) */
|
|
1227
|
+
field?: InputFieldRegistration;
|
|
1240
1228
|
}
|
|
1241
1229
|
declare const SwapFromCardView: React__default.FC<SwapFromCardViewProps>;
|
|
1242
1230
|
|
|
@@ -1259,6 +1247,22 @@ interface SwapToCardViewProps {
|
|
|
1259
1247
|
}
|
|
1260
1248
|
declare const SwapToCardView: React__default.FC<SwapToCardViewProps>;
|
|
1261
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
|
+
|
|
1262
1266
|
interface SwapQuoteDetailsLabels {
|
|
1263
1267
|
headerLabel: string;
|
|
1264
1268
|
exchangeRateLabel: string;
|
|
@@ -1295,22 +1299,6 @@ interface SwapQuoteDetailsViewProps {
|
|
|
1295
1299
|
}
|
|
1296
1300
|
declare const SwapQuoteDetailsView: React__default.FC<SwapQuoteDetailsViewProps>;
|
|
1297
1301
|
|
|
1298
|
-
interface SwapAdvancedSettingsViewProps {
|
|
1299
|
-
title: string;
|
|
1300
|
-
isOpen: boolean;
|
|
1301
|
-
onOpenChange: (open: boolean) => void;
|
|
1302
|
-
slippageBps: number;
|
|
1303
|
-
onSlippageSelect: (bps: number) => void;
|
|
1304
|
-
formatPercentage: (bps: number) => string;
|
|
1305
|
-
percentageOptions: number[];
|
|
1306
|
-
onPercentageClick: (pct: number) => void;
|
|
1307
|
-
slippageFormatted: string;
|
|
1308
|
-
collapseText: string;
|
|
1309
|
-
expandText: string;
|
|
1310
|
-
maxLabel: string;
|
|
1311
|
-
}
|
|
1312
|
-
declare const SwapAdvancedSettingsView: React__default.FC<SwapAdvancedSettingsViewProps>;
|
|
1313
|
-
|
|
1314
1302
|
interface ConfirmSwapButtonLabels {
|
|
1315
1303
|
defaultLabel: string;
|
|
1316
1304
|
preparingSwapLabel: string;
|
|
@@ -1334,6 +1322,21 @@ interface ConfirmSwapButtonViewProps {
|
|
|
1334
1322
|
}
|
|
1335
1323
|
declare const ConfirmSwapButtonView: React__default.FC<ConfirmSwapButtonViewProps>;
|
|
1336
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
|
+
|
|
1337
1340
|
interface ChooseANetworkLabels {
|
|
1338
1341
|
title: string;
|
|
1339
1342
|
searchPlaceholder: string;
|
|
@@ -1581,7 +1584,7 @@ declare const EarnRecentTransactionsView: React__default.FC<EarnRecentTransactio
|
|
|
1581
1584
|
|
|
1582
1585
|
interface EarnDesktopViewProps {
|
|
1583
1586
|
isLoading: boolean;
|
|
1584
|
-
loadingSkeleton
|
|
1587
|
+
loadingSkeleton?: React__default.ReactNode;
|
|
1585
1588
|
summary: EarnInvestmentSummaryViewProps;
|
|
1586
1589
|
invested: EarnInvestedSectionViewProps;
|
|
1587
1590
|
explore: EarnExploreGridViewProps;
|
|
@@ -1602,7 +1605,13 @@ interface EarnInvestmentDetailsTransaction {
|
|
|
1602
1605
|
tokenAmount: string;
|
|
1603
1606
|
}
|
|
1604
1607
|
|
|
1605
|
-
interface
|
|
1608
|
+
interface EarnInvestmentDetailsLoadingProps {
|
|
1609
|
+
isLoading: true;
|
|
1610
|
+
loadingSkeleton?: React__default.ReactNode;
|
|
1611
|
+
}
|
|
1612
|
+
interface EarnInvestmentDetailsContentProps {
|
|
1613
|
+
isLoading?: false;
|
|
1614
|
+
loadingSkeleton?: never;
|
|
1606
1615
|
title: string;
|
|
1607
1616
|
onBack?: () => void;
|
|
1608
1617
|
tokenIcon?: string;
|
|
@@ -1627,10 +1636,7 @@ interface EarnInvestmentDetailsViewProps {
|
|
|
1627
1636
|
withdrawLabel: string;
|
|
1628
1637
|
onWithdraw: () => void;
|
|
1629
1638
|
}
|
|
1630
|
-
|
|
1631
|
-
* Investment details view for a single strategy position.
|
|
1632
|
-
* Pure view — receives all data pre-formatted from the container.
|
|
1633
|
-
*/
|
|
1639
|
+
type EarnInvestmentDetailsViewProps = EarnInvestmentDetailsLoadingProps | EarnInvestmentDetailsContentProps;
|
|
1634
1640
|
declare const EarnInvestmentDetailsView: React__default.FC<EarnInvestmentDetailsViewProps>;
|
|
1635
1641
|
|
|
1636
1642
|
interface GroupedStrategyListItem {
|
|
@@ -2061,4 +2067,4 @@ interface DeframeTheme {
|
|
|
2061
2067
|
colors?: DeframeThemeColors;
|
|
2062
2068
|
}
|
|
2063
2069
|
|
|
2064
|
-
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,
|
|
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 };
|