@deframe-sdk/components 0.1.6 → 0.1.7
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 +386 -1
- package/dist/index.d.ts +386 -1
- package/dist/index.js +854 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +837 -2
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +115 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -856,4 +856,389 @@ interface StrategyDetailsViewProps {
|
|
|
856
856
|
}
|
|
857
857
|
declare const StrategyDetailsView: React__default.FC<StrategyDetailsViewProps>;
|
|
858
858
|
|
|
859
|
-
|
|
859
|
+
interface ProgressIndicatorProps {
|
|
860
|
+
/** Progress percentage (0-100) */
|
|
861
|
+
progress: number;
|
|
862
|
+
/** Optional className for custom styling */
|
|
863
|
+
className?: string;
|
|
864
|
+
}
|
|
865
|
+
declare const ProgressIndicator: React__default.FC<ProgressIndicatorProps>;
|
|
866
|
+
|
|
867
|
+
interface LoadingDotsProps {
|
|
868
|
+
className?: string;
|
|
869
|
+
}
|
|
870
|
+
/**
|
|
871
|
+
* Animated loading dots component with a bouncing effect
|
|
872
|
+
* Used to indicate loading states throughout the application
|
|
873
|
+
*/
|
|
874
|
+
declare const LoadingDots: React__default.FC<LoadingDotsProps>;
|
|
875
|
+
|
|
876
|
+
interface SearchInputProps {
|
|
877
|
+
/**
|
|
878
|
+
* Placeholder text (default: "Search")
|
|
879
|
+
*/
|
|
880
|
+
placeholder?: string;
|
|
881
|
+
/**
|
|
882
|
+
* Current value
|
|
883
|
+
*/
|
|
884
|
+
value?: string;
|
|
885
|
+
/**
|
|
886
|
+
* Whether the input is disabled
|
|
887
|
+
*/
|
|
888
|
+
disabled?: boolean;
|
|
889
|
+
/**
|
|
890
|
+
* Change handler — called immediately on every keystroke
|
|
891
|
+
*/
|
|
892
|
+
onChange?: (value: string) => void;
|
|
893
|
+
/**
|
|
894
|
+
* Search handler — called immediately on every keystroke (debounce in the container)
|
|
895
|
+
*/
|
|
896
|
+
onSearch?: (value: string) => void;
|
|
897
|
+
/**
|
|
898
|
+
* Additional CSS class names for container
|
|
899
|
+
*/
|
|
900
|
+
className?: string;
|
|
901
|
+
/**
|
|
902
|
+
* Additional CSS class names for input element (e.g., custom background)
|
|
903
|
+
*/
|
|
904
|
+
inputClassName?: string;
|
|
905
|
+
/**
|
|
906
|
+
* Whether the input should be auto focused
|
|
907
|
+
*/
|
|
908
|
+
autoFocus?: boolean;
|
|
909
|
+
/**
|
|
910
|
+
* test id for the container
|
|
911
|
+
*/
|
|
912
|
+
containerTestId?: string;
|
|
913
|
+
/**
|
|
914
|
+
* test id for the input element
|
|
915
|
+
*/
|
|
916
|
+
inputTestId?: string;
|
|
917
|
+
}
|
|
918
|
+
/**
|
|
919
|
+
* SearchInput - Search input component with search icon
|
|
920
|
+
*/
|
|
921
|
+
declare const SearchInput: React__default.FC<SearchInputProps>;
|
|
922
|
+
|
|
923
|
+
interface SearchEmptyStateProps {
|
|
924
|
+
title: string;
|
|
925
|
+
description: string;
|
|
926
|
+
}
|
|
927
|
+
declare const SearchEmptyState: React__default.FC<SearchEmptyStateProps>;
|
|
928
|
+
|
|
929
|
+
interface CollapsibleSectionProps {
|
|
930
|
+
/** Section title */
|
|
931
|
+
title: string;
|
|
932
|
+
/** Optional subtitle shown next to title */
|
|
933
|
+
subtitle?: string;
|
|
934
|
+
/** Content to show when expanded */
|
|
935
|
+
children: React__default.ReactNode;
|
|
936
|
+
/** Whether section is open by default (uncontrolled mode) */
|
|
937
|
+
defaultOpen?: boolean;
|
|
938
|
+
/** Controlled open state */
|
|
939
|
+
open?: boolean;
|
|
940
|
+
/** Callback when open state changes */
|
|
941
|
+
onOpenChange?: (open: boolean) => void;
|
|
942
|
+
/** Optional className */
|
|
943
|
+
className?: string;
|
|
944
|
+
/** Aria label text for "Collapse" */
|
|
945
|
+
collapseText: string;
|
|
946
|
+
/** Aria label text for "Expand" */
|
|
947
|
+
expandText: string;
|
|
948
|
+
}
|
|
949
|
+
declare const CollapsibleSection: React__default.FC<CollapsibleSectionProps>;
|
|
950
|
+
|
|
951
|
+
interface TransactionScreenIconProps {
|
|
952
|
+
type: 'processing' | 'success' | 'warning';
|
|
953
|
+
gradient?: string;
|
|
954
|
+
}
|
|
955
|
+
declare const TransactionScreenIcon: React__default.FC<TransactionScreenIconProps>;
|
|
956
|
+
|
|
957
|
+
interface TransactionScreenProps {
|
|
958
|
+
progress: number;
|
|
959
|
+
iconType: TransactionScreenIconProps['type'];
|
|
960
|
+
iconGradient?: string;
|
|
961
|
+
title: React__default.ReactNode;
|
|
962
|
+
description: React__default.ReactNode;
|
|
963
|
+
/** Renders a close (X) button in the top-left */
|
|
964
|
+
onClose?: () => void;
|
|
965
|
+
/** Renders a back-arrow header */
|
|
966
|
+
onBack?: () => void;
|
|
967
|
+
backTitle?: string;
|
|
968
|
+
/** Bottom action bar (buttons) */
|
|
969
|
+
actions?: React__default.ReactNode;
|
|
970
|
+
/** Card / details content between hero and actions */
|
|
971
|
+
children?: React__default.ReactNode;
|
|
972
|
+
/** data-testid placed on the header wrapper div when onClose is used */
|
|
973
|
+
testId?: string;
|
|
974
|
+
}
|
|
975
|
+
declare const TransactionScreen: React__default.FC<TransactionScreenProps>;
|
|
976
|
+
|
|
977
|
+
interface TransactionScreenInvestmentCardProps {
|
|
978
|
+
strategyName: React__default.ReactNode;
|
|
979
|
+
apyLabel: string;
|
|
980
|
+
apyValue: string;
|
|
981
|
+
iconSrc?: string;
|
|
982
|
+
iconAlt?: string;
|
|
983
|
+
amountUSD: React__default.ReactNode;
|
|
984
|
+
amountToken: React__default.ReactNode;
|
|
985
|
+
}
|
|
986
|
+
declare const TransactionScreenInvestmentCard: React__default.FC<TransactionScreenInvestmentCardProps>;
|
|
987
|
+
|
|
988
|
+
type TransactionStepStatus = 'completed' | 'processing' | 'failed';
|
|
989
|
+
interface TransactionStep {
|
|
990
|
+
/** Step label/title */
|
|
991
|
+
label: string;
|
|
992
|
+
/** Current status of the step */
|
|
993
|
+
status?: TransactionStepStatus;
|
|
994
|
+
/** Optional status text override (e.g., "Processando...") - can be string or React node */
|
|
995
|
+
statusText?: React.ReactNode;
|
|
996
|
+
/** Optional explorer URL for this step */
|
|
997
|
+
explorerUrl?: string;
|
|
998
|
+
/** Optional static value (for info-only steps like "Tempo estimado") */
|
|
999
|
+
value?: ReactNode;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
interface TransactionProcessingDetailsLabels {
|
|
1003
|
+
title: string;
|
|
1004
|
+
completedText: string;
|
|
1005
|
+
processingText: string;
|
|
1006
|
+
failedText: string;
|
|
1007
|
+
viewOnExplorerText: string;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
interface TransactionProcessingDetailsProps {
|
|
1011
|
+
/** Array of transaction steps to display */
|
|
1012
|
+
steps: TransactionStep[];
|
|
1013
|
+
/** Optional CSS class name */
|
|
1014
|
+
className?: string;
|
|
1015
|
+
/** Whether the details section is open by default */
|
|
1016
|
+
defaultOpen?: boolean;
|
|
1017
|
+
/** All translated strings for this component */
|
|
1018
|
+
labels: TransactionProcessingDetailsLabels;
|
|
1019
|
+
}
|
|
1020
|
+
/**
|
|
1021
|
+
* Displays transaction processing steps with visual breakdown using vertical connectors
|
|
1022
|
+
* Similar to SwapProcessingDetails but designed for deposit/withdraw flows
|
|
1023
|
+
*/
|
|
1024
|
+
declare function TransactionProcessingDetails({ steps, className, defaultOpen, labels, }: TransactionProcessingDetailsProps): react_jsx_runtime.JSX.Element | null;
|
|
1025
|
+
|
|
1026
|
+
interface StepStatusIconProps {
|
|
1027
|
+
status: TransactionStepStatus;
|
|
1028
|
+
}
|
|
1029
|
+
/**
|
|
1030
|
+
* Renders a step status icon based on the step status
|
|
1031
|
+
* Only three icon types: success (checkmark), timer (clock), and error (alert)
|
|
1032
|
+
*/
|
|
1033
|
+
declare function StepStatusIcon({ status }: StepStatusIconProps): react_jsx_runtime.JSX.Element;
|
|
1034
|
+
|
|
1035
|
+
interface StepStatusTextProps {
|
|
1036
|
+
step: TransactionStep;
|
|
1037
|
+
completedText: string;
|
|
1038
|
+
processingText: string;
|
|
1039
|
+
failedText: string;
|
|
1040
|
+
viewOnExplorerText: string;
|
|
1041
|
+
}
|
|
1042
|
+
/**
|
|
1043
|
+
* Renders the status text and optional explorer link for a step
|
|
1044
|
+
*/
|
|
1045
|
+
declare function StepStatusText({ step, completedText, processingText, failedText, viewOnExplorerText, }: StepStatusTextProps): react_jsx_runtime.JSX.Element;
|
|
1046
|
+
|
|
1047
|
+
interface StepDisplayProps {
|
|
1048
|
+
step: TransactionStep;
|
|
1049
|
+
completedText: string;
|
|
1050
|
+
processingText: string;
|
|
1051
|
+
failedText: string;
|
|
1052
|
+
viewOnExplorerText: string;
|
|
1053
|
+
}
|
|
1054
|
+
/**
|
|
1055
|
+
* Renders a single processing step with icon, label, and status
|
|
1056
|
+
*/
|
|
1057
|
+
declare function StepDisplay({ step, completedText, processingText, failedText, viewOnExplorerText }: StepDisplayProps): react_jsx_runtime.JSX.Element;
|
|
1058
|
+
|
|
1059
|
+
interface TokenWithChainBadgeProps {
|
|
1060
|
+
tokenLogoUrl?: string;
|
|
1061
|
+
tokenAlt?: string;
|
|
1062
|
+
chainId?: number;
|
|
1063
|
+
chainLogoUrl?: string;
|
|
1064
|
+
chainName?: string;
|
|
1065
|
+
}
|
|
1066
|
+
declare const TokenWithChainBadge: React__default.FC<TokenWithChainBadgeProps>;
|
|
1067
|
+
|
|
1068
|
+
interface SwapProcessingViewProps {
|
|
1069
|
+
fromTokenSymbol: string;
|
|
1070
|
+
fromTokenIcon: string;
|
|
1071
|
+
toTokenSymbol: string;
|
|
1072
|
+
toTokenIcon: string;
|
|
1073
|
+
formattedInputAmount: string;
|
|
1074
|
+
formattedOutputAmount: string;
|
|
1075
|
+
formattedInputAmountUSD: string;
|
|
1076
|
+
formattedOutputAmountUSD: string;
|
|
1077
|
+
progress: number;
|
|
1078
|
+
transactionSteps: TransactionStep[];
|
|
1079
|
+
onClose: () => void;
|
|
1080
|
+
onGoToHistory: () => void;
|
|
1081
|
+
titleText: string;
|
|
1082
|
+
descriptionPrefix: string;
|
|
1083
|
+
activityHistoryText: string;
|
|
1084
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
1085
|
+
}
|
|
1086
|
+
declare const SwapProcessingView: React__default.FC<SwapProcessingViewProps>;
|
|
1087
|
+
|
|
1088
|
+
interface SwapCrossChainProcessingViewProps {
|
|
1089
|
+
fromTokenSymbol: string;
|
|
1090
|
+
fromTokenIcon: string;
|
|
1091
|
+
toTokenSymbol: string;
|
|
1092
|
+
toTokenIcon: string;
|
|
1093
|
+
originChainId?: number;
|
|
1094
|
+
destinationChainId?: number;
|
|
1095
|
+
originChainLogoUrl: string;
|
|
1096
|
+
originChainName: string;
|
|
1097
|
+
destinationChainLogoUrl: string;
|
|
1098
|
+
destinationChainName: string;
|
|
1099
|
+
formattedInputAmount: string;
|
|
1100
|
+
formattedOutputAmount: string;
|
|
1101
|
+
formattedInputAmountUSD: string;
|
|
1102
|
+
formattedOutputAmountUSD: string;
|
|
1103
|
+
progress: number;
|
|
1104
|
+
title: string;
|
|
1105
|
+
description: string;
|
|
1106
|
+
transactionSteps: TransactionStep[];
|
|
1107
|
+
onClose: () => void;
|
|
1108
|
+
onGoToHistory: () => void;
|
|
1109
|
+
viewHistoryText: string;
|
|
1110
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
1111
|
+
}
|
|
1112
|
+
declare const SwapCrossChainProcessingView: React__default.FC<SwapCrossChainProcessingViewProps>;
|
|
1113
|
+
|
|
1114
|
+
interface SwapSignatureWarningViewProps {
|
|
1115
|
+
fromTokenSymbol: string;
|
|
1116
|
+
fromTokenIcon: string;
|
|
1117
|
+
toTokenSymbol: string;
|
|
1118
|
+
toTokenIcon: string;
|
|
1119
|
+
formattedInputAmount: string;
|
|
1120
|
+
formattedOutputAmount: string;
|
|
1121
|
+
formattedInputAmountUSD: string;
|
|
1122
|
+
formattedOutputAmountUSD: string;
|
|
1123
|
+
progress: number;
|
|
1124
|
+
errorTitle: string;
|
|
1125
|
+
errorDescription: string;
|
|
1126
|
+
transactionSteps: TransactionStep[];
|
|
1127
|
+
onCancel: () => void;
|
|
1128
|
+
onTryAgain: () => void;
|
|
1129
|
+
cancelButtonText: string;
|
|
1130
|
+
retryButtonText: string;
|
|
1131
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
1132
|
+
}
|
|
1133
|
+
declare const SwapSignatureWarningView: React__default.FC<SwapSignatureWarningViewProps>;
|
|
1134
|
+
|
|
1135
|
+
interface SwapSuccessLabels {
|
|
1136
|
+
title: string;
|
|
1137
|
+
descriptionPrefix: string;
|
|
1138
|
+
descriptionMiddle: string;
|
|
1139
|
+
descriptionSuffix: string;
|
|
1140
|
+
walletLinkText: string;
|
|
1141
|
+
startNewSwapButton: string;
|
|
1142
|
+
}
|
|
1143
|
+
|
|
1144
|
+
interface SwapSuccessViewProps {
|
|
1145
|
+
fromTokenSymbol: string;
|
|
1146
|
+
fromTokenIcon: string;
|
|
1147
|
+
toTokenSymbol: string;
|
|
1148
|
+
toTokenIcon: string;
|
|
1149
|
+
formattedInputAmount: string;
|
|
1150
|
+
formattedOutputAmount: string;
|
|
1151
|
+
formattedInputAmountUSD: string;
|
|
1152
|
+
formattedOutputAmountUSD: string;
|
|
1153
|
+
transactionSteps: TransactionStep[];
|
|
1154
|
+
onClose: () => void;
|
|
1155
|
+
onStartNewSwap: () => void;
|
|
1156
|
+
onGoToWallet: () => void;
|
|
1157
|
+
labels: SwapSuccessLabels;
|
|
1158
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
1159
|
+
}
|
|
1160
|
+
declare const SwapSuccessView: React__default.FC<SwapSuccessViewProps>;
|
|
1161
|
+
|
|
1162
|
+
interface SwapTransactionFailedViewProps {
|
|
1163
|
+
fromTokenSymbol: string;
|
|
1164
|
+
fromTokenIcon: string;
|
|
1165
|
+
toTokenSymbol: string;
|
|
1166
|
+
toTokenIcon: string;
|
|
1167
|
+
formattedInputAmount: string;
|
|
1168
|
+
formattedOutputAmount: string;
|
|
1169
|
+
formattedInputAmountUSD: string;
|
|
1170
|
+
formattedOutputAmountUSD: string;
|
|
1171
|
+
progress: number;
|
|
1172
|
+
errorTitle: string;
|
|
1173
|
+
errorDescription: string;
|
|
1174
|
+
transactionSteps: TransactionStep[];
|
|
1175
|
+
hasExplorerLink: boolean;
|
|
1176
|
+
onBack: () => void;
|
|
1177
|
+
onViewExplorer: () => void;
|
|
1178
|
+
onTryAgain: () => void;
|
|
1179
|
+
viewOnExplorerText: string;
|
|
1180
|
+
retryButtonText: string;
|
|
1181
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
1182
|
+
}
|
|
1183
|
+
declare const SwapTransactionFailedView: React__default.FC<SwapTransactionFailedViewProps>;
|
|
1184
|
+
|
|
1185
|
+
interface ChooseAnAssetSwapLabels {
|
|
1186
|
+
title: string;
|
|
1187
|
+
searchPlaceholder: string;
|
|
1188
|
+
searchingText: string;
|
|
1189
|
+
loadMoreButton: string;
|
|
1190
|
+
searchEmptyTitle: string;
|
|
1191
|
+
searchEmptyDescription: string;
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
/**
|
|
1195
|
+
* Token data representing a single token available for selection.
|
|
1196
|
+
*/
|
|
1197
|
+
interface TokenData {
|
|
1198
|
+
address: string;
|
|
1199
|
+
chainId: number;
|
|
1200
|
+
decimals: number;
|
|
1201
|
+
symbol: string;
|
|
1202
|
+
name: string;
|
|
1203
|
+
logoURI: string | null;
|
|
1204
|
+
priceInUSD?: number | null;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1207
|
+
/**
|
|
1208
|
+
* Balance information for a token in the user's wallet.
|
|
1209
|
+
*/
|
|
1210
|
+
interface BalanceDomain {
|
|
1211
|
+
address: string;
|
|
1212
|
+
chainId: number;
|
|
1213
|
+
name: string;
|
|
1214
|
+
symbol: string;
|
|
1215
|
+
decimals: number;
|
|
1216
|
+
logoUrl: string;
|
|
1217
|
+
priceUSD: string;
|
|
1218
|
+
amountBase: string;
|
|
1219
|
+
amountUI: string;
|
|
1220
|
+
amountHumanized?: string;
|
|
1221
|
+
amountInUSD: string;
|
|
1222
|
+
id: string;
|
|
1223
|
+
}
|
|
1224
|
+
|
|
1225
|
+
interface ChooseAnAssetSwapViewProps {
|
|
1226
|
+
actionSheetId: string;
|
|
1227
|
+
isOpen: boolean;
|
|
1228
|
+
currentActionSheetId: string | null;
|
|
1229
|
+
onClose: () => void;
|
|
1230
|
+
onSearch: (value: string) => void;
|
|
1231
|
+
autoFocus: boolean;
|
|
1232
|
+
displayedTokens: TokenData[];
|
|
1233
|
+
hasMore: boolean;
|
|
1234
|
+
onLoadMore: () => void;
|
|
1235
|
+
findBalance: (token: TokenData) => BalanceDomain | undefined;
|
|
1236
|
+
isFetching: boolean;
|
|
1237
|
+
onAssetClick: (token: TokenData) => void;
|
|
1238
|
+
labels: ChooseAnAssetSwapLabels;
|
|
1239
|
+
formatTokenAmount: (amountUI: string, priceUSD: number, decimals: number) => string;
|
|
1240
|
+
formatCurrencyValue: (value: number) => string;
|
|
1241
|
+
}
|
|
1242
|
+
declare const ChooseAnAssetSwapView: React__default.FC<ChooseAnAssetSwapViewProps>;
|
|
1243
|
+
|
|
1244
|
+
export { ActionButton, ActionSheet, type ActionSheetProps, AddressDisplay, type AddressDisplayProps, BackgroundContainer, type BackgroundContainerProps, type BalanceDomain, BannerNotification, type BannerNotificationProps, type ButtonProps, ChooseAStrategyActionsheetView, type ChooseAStrategyActionsheetViewProps, type ChooseAnAssetSwapLabels, ChooseAnAssetSwapView, type ChooseAnAssetSwapViewProps, CloseButton, type CloseButtonProps, CollapsibleInfoRow, type CollapsibleInfoRowProps, CollapsibleSection, type CollapsibleSectionProps, ConnectWalletList, type ConnectWalletListProps, Currency, type CurrencyProps, type CurrencyType, DeframeComponentsProvider, type DeframeTheme, type DeframeThemeColors, type DeframeThemeConfig, type DetailItem, DetailsHeader, type DetailsHeaderProps, Currency as Fiat, type FiatProps, FlexCol, type FlexColProps, FlexRow, type FlexRowProps, HighRiskBadge, type HighRiskBadgeProps, type HistoryAssetViewProps, HistoryDepositDetailsView, type HistoryDetailsLabels, type HistoryDetailsViewProps, HistoryWithdrawDetailsView, InfoLabel, type InfoLabelProps, InfoRow, InfoRowIconLabel, type InfoRowIconLabelProps, InfoRowIconValue, type InfoRowIconValueProps, type InfoRowProps, InfoRowWithIcon, type InfoRowWithIconProps, InfoValue, type InfoValueProps, Input, type InputFieldRegistration, type InputProps, 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, SummaryDetails, SummaryDetailsCryptoControlV2, type SummaryDetailsProps, SwapAmountInputView, type SwapAmountInputViewProps, SwapCrossChainProcessingView, type SwapCrossChainProcessingViewProps, SwapNetworkSelectorView, type SwapNetworkSelectorViewProps, SwapOutputAmountView, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapQuoteBlockchainCostsView, type SwapQuoteBlockchainCostsViewProps, SwapQuoteErrorsView, type SwapQuoteErrorsViewProps, SwapQuoteHeaderView, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSlippageToleranceButtonsView, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapTokenSelectorView, type SwapTokenSelectorViewProps, SwapTransactionFailedView, type SwapTransactionFailedViewProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TertiaryButton, Text, TextAccent, type TextAccentProps, TextBody, type TextBodyProps, TextHeading, type TextHeadingProps, type TextProps, type ThemeMode, type ThemePreset, Title, type TokenData, TokenWithChainBadge, type TokenWithChainBadgeProps, TransactionProcessingDetails, type TransactionProcessingDetailsLabels, type TransactionProcessingDetailsProps, TransactionScreen, TransactionScreenIcon, type TransactionScreenIconProps, TransactionScreenInvestmentCard, type TransactionScreenInvestmentCardProps, type TransactionScreenProps, type TransactionStep, type TransactionStepStatus, WalletItem, type WalletItemProps, ConnectWalletList as WalletList, WalletListContainer, type WalletListContainerProps, type ConnectWalletListProps as WalletListProps, type WalletOption, cryptocontrolThemeColors, darkThemeColors, defaultThemeColors, themeToCSS };
|