@deframe-sdk/components 0.1.28 → 0.1.30
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 +285 -2
- package/dist/index.d.ts +285 -2
- package/dist/index.js +2105 -55
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2088 -57
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +139 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1204,7 +1204,8 @@ interface ChooseAnAssetSwapViewProps {
|
|
|
1204
1204
|
displayedTokens: TokenData[];
|
|
1205
1205
|
hasMore: boolean;
|
|
1206
1206
|
onLoadMore: () => void;
|
|
1207
|
-
|
|
1207
|
+
/** Fallback balance lookup for consumers that don't embed balance in TokenData. */
|
|
1208
|
+
findBalance?: (token: TokenData) => BalanceDomain | undefined;
|
|
1208
1209
|
isFetching: boolean;
|
|
1209
1210
|
onAssetClick: (token: TokenData) => void;
|
|
1210
1211
|
labels: ChooseAnAssetSwapLabels;
|
|
@@ -1408,6 +1409,11 @@ interface ChooseANetworkViewProps {
|
|
|
1408
1409
|
chains: ChainItem[];
|
|
1409
1410
|
pageSize?: number;
|
|
1410
1411
|
onChainClick: (chainId: number) => void;
|
|
1412
|
+
/** When provided, the component embeds its own ActionSheet with close button. */
|
|
1413
|
+
actionSheetId?: string;
|
|
1414
|
+
isOpen?: boolean;
|
|
1415
|
+
currentActionSheetId?: string | null;
|
|
1416
|
+
onClose?: () => void;
|
|
1411
1417
|
}
|
|
1412
1418
|
declare const ChooseANetworkView: React__default.FC<ChooseANetworkViewProps>;
|
|
1413
1419
|
|
|
@@ -1932,6 +1938,8 @@ interface EarnTokenSelectorViewProps {
|
|
|
1932
1938
|
logoURI?: string | null;
|
|
1933
1939
|
} | null;
|
|
1934
1940
|
onTokenClick: () => void;
|
|
1941
|
+
/** When provided, the token button fires this instead of onTokenClick and the separate network chip is hidden (unified mode). */
|
|
1942
|
+
onNetworkAndAssetClick?: () => void;
|
|
1935
1943
|
onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
|
|
1936
1944
|
isLoading: boolean;
|
|
1937
1945
|
selectTokenLabel: string;
|
|
@@ -1965,6 +1973,8 @@ interface EarnWithdrawTokenSelectorViewProps {
|
|
|
1965
1973
|
logoURI?: string | null;
|
|
1966
1974
|
} | null;
|
|
1967
1975
|
onTokenClick: () => void;
|
|
1976
|
+
/** When provided, the token button fires this instead of onTokenClick and the separate network chip is hidden (unified mode). */
|
|
1977
|
+
onNetworkAndAssetClick?: () => void;
|
|
1968
1978
|
onNetworkClick?: (currentNetworkSelected?: ChainItem | null) => void;
|
|
1969
1979
|
selectTokenLabel: string;
|
|
1970
1980
|
chainLabel: string;
|
|
@@ -2019,6 +2029,8 @@ interface EarnDepositFormViewProps {
|
|
|
2019
2029
|
logoURI?: string | null;
|
|
2020
2030
|
} | null;
|
|
2021
2031
|
onTokenClick: () => void;
|
|
2032
|
+
/** When provided, the form uses unified mode: a single click opens network + asset selector together. */
|
|
2033
|
+
onNetworkAndAssetClick?: () => void;
|
|
2022
2034
|
isLoadingToken: boolean;
|
|
2023
2035
|
selectTokenLabel: string;
|
|
2024
2036
|
chainLabel: string;
|
|
@@ -2078,6 +2090,8 @@ interface EarnWithdrawFormViewProps {
|
|
|
2078
2090
|
logoURI?: string | null;
|
|
2079
2091
|
} | null;
|
|
2080
2092
|
onTokenClick: () => void;
|
|
2093
|
+
/** When provided, the form uses unified mode: a single click opens network + asset selector together. */
|
|
2094
|
+
onNetworkAndAssetClick?: () => void;
|
|
2081
2095
|
selectTokenLabel: string;
|
|
2082
2096
|
chainLabel: string;
|
|
2083
2097
|
chainImage?: string;
|
|
@@ -2304,6 +2318,268 @@ declare const EarnWithdrawFailedView: React__default.FC<EarnWithdrawFailedViewPr
|
|
|
2304
2318
|
|
|
2305
2319
|
declare const EarnWithdrawFailedSimpleView: React__default.FC<EarnWithdrawFailedViewProps>;
|
|
2306
2320
|
|
|
2321
|
+
interface OnchainDepositFormViewProps {
|
|
2322
|
+
selectedToken: {
|
|
2323
|
+
symbol: string;
|
|
2324
|
+
name: string;
|
|
2325
|
+
logoURI: string | null;
|
|
2326
|
+
} | null;
|
|
2327
|
+
onTokenClick: () => void;
|
|
2328
|
+
chainCount: number;
|
|
2329
|
+
selectedChain: {
|
|
2330
|
+
name: string;
|
|
2331
|
+
iconUrl: string;
|
|
2332
|
+
} | null;
|
|
2333
|
+
onNetworkClick: () => void;
|
|
2334
|
+
isGenerating: boolean;
|
|
2335
|
+
showContent: boolean;
|
|
2336
|
+
depositAddress: string | null;
|
|
2337
|
+
showInfoBanner: boolean;
|
|
2338
|
+
selectedTokenName: string | null;
|
|
2339
|
+
selectedChainName: string | null;
|
|
2340
|
+
isSubmitDisabled: boolean;
|
|
2341
|
+
onSubmit: () => void;
|
|
2342
|
+
submitLabel: string;
|
|
2343
|
+
onBack: () => void;
|
|
2344
|
+
labels: {
|
|
2345
|
+
title: string;
|
|
2346
|
+
subtitle: string;
|
|
2347
|
+
backLabel: string;
|
|
2348
|
+
tokenPlaceholder: string;
|
|
2349
|
+
chainDirectionLabel: string;
|
|
2350
|
+
chainPlaceholder: string;
|
|
2351
|
+
infoBanner: string;
|
|
2352
|
+
depositInstructionPrefix: string;
|
|
2353
|
+
depositInstructionSuffix: string;
|
|
2354
|
+
warnBannerTokenChain: string;
|
|
2355
|
+
};
|
|
2356
|
+
onClose?: () => void;
|
|
2357
|
+
onAddressCopy?: (address: string) => void;
|
|
2358
|
+
className?: string;
|
|
2359
|
+
}
|
|
2360
|
+
declare function OnchainDepositFormView({ selectedToken, onTokenClick, chainCount, selectedChain, onNetworkClick, isGenerating, showContent, depositAddress, showInfoBanner, selectedTokenName, selectedChainName, isSubmitDisabled, onSubmit, submitLabel, onBack, labels, className, }: OnchainDepositFormViewProps): react_jsx_runtime.JSX.Element;
|
|
2361
|
+
|
|
2362
|
+
interface OnchainDepositFormSimpleViewProps extends OnchainDepositFormViewProps {
|
|
2363
|
+
activeTab?: 'crypto' | 'pix';
|
|
2364
|
+
cryptoHref?: string;
|
|
2365
|
+
pixHref?: string;
|
|
2366
|
+
}
|
|
2367
|
+
declare const OnchainDepositFormSimpleView: React__default.FC<OnchainDepositFormSimpleViewProps>;
|
|
2368
|
+
|
|
2369
|
+
interface OnchainDepositSuccessViewProps {
|
|
2370
|
+
tokenSymbol: string;
|
|
2371
|
+
tokenLogoURI: string | null;
|
|
2372
|
+
chainName: string;
|
|
2373
|
+
chainIconUrl: string;
|
|
2374
|
+
formattedAmount: string;
|
|
2375
|
+
depositAddress: string;
|
|
2376
|
+
txHash?: string;
|
|
2377
|
+
blockExplorerUrl: string;
|
|
2378
|
+
onViewHistory: () => void;
|
|
2379
|
+
onClose?: () => void;
|
|
2380
|
+
labels: {
|
|
2381
|
+
title: string;
|
|
2382
|
+
subtitle: string;
|
|
2383
|
+
assetLabel: string;
|
|
2384
|
+
networkLabel: string;
|
|
2385
|
+
amountLabel: string;
|
|
2386
|
+
addressLabel: string;
|
|
2387
|
+
txIdLabel: string;
|
|
2388
|
+
viewExplorerLabel: string;
|
|
2389
|
+
detailsTitle: string;
|
|
2390
|
+
estimatedTimeLabel: string;
|
|
2391
|
+
estimatedTimeValue: string;
|
|
2392
|
+
copiedLabel: string;
|
|
2393
|
+
viewHistoryLabel: string;
|
|
2394
|
+
closeAriaLabel: string;
|
|
2395
|
+
steps: {
|
|
2396
|
+
label: string;
|
|
2397
|
+
statusText?: string;
|
|
2398
|
+
}[];
|
|
2399
|
+
};
|
|
2400
|
+
className?: string;
|
|
2401
|
+
icon?: React__default.ReactNode;
|
|
2402
|
+
}
|
|
2403
|
+
declare function OnchainDepositSuccessView({ tokenSymbol, chainName, formattedAmount, depositAddress, txHash, blockExplorerUrl, onViewHistory, onClose, labels, className, icon, }: OnchainDepositSuccessViewProps): react_jsx_runtime.JSX.Element;
|
|
2404
|
+
|
|
2405
|
+
declare function DepositSuccessIcon(): react_jsx_runtime.JSX.Element;
|
|
2406
|
+
|
|
2407
|
+
declare const OnchainDepositSuccessSimpleView: React$1.FC<OnchainDepositSuccessViewProps>;
|
|
2408
|
+
|
|
2409
|
+
interface OnchainWithdrawFormViewProps {
|
|
2410
|
+
selectedToken: {
|
|
2411
|
+
symbol: string;
|
|
2412
|
+
logoURI: string | null;
|
|
2413
|
+
} | null;
|
|
2414
|
+
onTokenClick: () => void;
|
|
2415
|
+
isProcessing: boolean;
|
|
2416
|
+
chainCount: number;
|
|
2417
|
+
selectedChain: {
|
|
2418
|
+
name: string;
|
|
2419
|
+
iconUrl: string;
|
|
2420
|
+
} | null;
|
|
2421
|
+
onNetworkClick: () => void;
|
|
2422
|
+
formattedBalance: string;
|
|
2423
|
+
amount: string;
|
|
2424
|
+
onAmountChange: (value: string) => void;
|
|
2425
|
+
isAmountInputDisabled: boolean;
|
|
2426
|
+
onMaxClick: () => void;
|
|
2427
|
+
showMaxButton: boolean;
|
|
2428
|
+
formattedAmountUsd: string;
|
|
2429
|
+
destinationNetwork: {
|
|
2430
|
+
name: string;
|
|
2431
|
+
iconUrl: string;
|
|
2432
|
+
} | null;
|
|
2433
|
+
destinationAddress: string;
|
|
2434
|
+
onDestinationAddressChange: (value: string) => void;
|
|
2435
|
+
txDetails: {
|
|
2436
|
+
formattedAmount: string;
|
|
2437
|
+
formattedFee: string;
|
|
2438
|
+
formattedReceive: string;
|
|
2439
|
+
} | null;
|
|
2440
|
+
isBelowMinAmount: boolean;
|
|
2441
|
+
walletError: string | null;
|
|
2442
|
+
transferError: string | null;
|
|
2443
|
+
showWarning: boolean;
|
|
2444
|
+
warningLabel: string;
|
|
2445
|
+
isSubmitDisabled: boolean;
|
|
2446
|
+
onSubmit: () => void;
|
|
2447
|
+
submitLabel: string;
|
|
2448
|
+
onBack: () => void;
|
|
2449
|
+
labels: {
|
|
2450
|
+
title: string;
|
|
2451
|
+
subtitle: string;
|
|
2452
|
+
backLabel: string;
|
|
2453
|
+
balancePrefix: string;
|
|
2454
|
+
tokenPlaceholder: string;
|
|
2455
|
+
chainPlaceholder: string;
|
|
2456
|
+
chainDirectionLabel: string;
|
|
2457
|
+
destinationNetworkLabel: string;
|
|
2458
|
+
destinationNetworkSameHint: string;
|
|
2459
|
+
destinationNetworkEmpty: string;
|
|
2460
|
+
destinationAddressLabel: string;
|
|
2461
|
+
destinationAddressPlaceholder: string;
|
|
2462
|
+
infoBanner: string;
|
|
2463
|
+
minAmountWarning: string;
|
|
2464
|
+
txDetailsTitle: string;
|
|
2465
|
+
txDetailsAmountLabel: string;
|
|
2466
|
+
txDetailsFeeLabel: string;
|
|
2467
|
+
txDetailsReceiveLabel: string;
|
|
2468
|
+
};
|
|
2469
|
+
className?: string;
|
|
2470
|
+
onPercentageClick?: (basisPoints: number) => void;
|
|
2471
|
+
maxLabel?: string;
|
|
2472
|
+
onClose?: () => void;
|
|
2473
|
+
}
|
|
2474
|
+
declare function OnchainWithdrawFormView({ selectedToken, onTokenClick, isProcessing, chainCount, selectedChain, onNetworkClick, formattedBalance, amount, onAmountChange, isAmountInputDisabled, onMaxClick, showMaxButton, formattedAmountUsd, destinationNetwork, destinationAddress, onDestinationAddressChange, txDetails, isBelowMinAmount, walletError, transferError, showWarning, warningLabel, isSubmitDisabled, onSubmit, submitLabel, onBack, labels, className, }: OnchainWithdrawFormViewProps): react_jsx_runtime.JSX.Element;
|
|
2475
|
+
|
|
2476
|
+
declare const OnchainWithdrawFormSimpleView: React__default.FC<OnchainWithdrawFormViewProps>;
|
|
2477
|
+
|
|
2478
|
+
interface ChainOption {
|
|
2479
|
+
chainId: number;
|
|
2480
|
+
name: string;
|
|
2481
|
+
iconUrl: string;
|
|
2482
|
+
formattedBalance: string;
|
|
2483
|
+
isSelected: boolean;
|
|
2484
|
+
}
|
|
2485
|
+
interface OnchainWithdrawChainSelectorViewProps {
|
|
2486
|
+
actionSheetId: string;
|
|
2487
|
+
isOpen: boolean;
|
|
2488
|
+
currentActionSheetId: string | null;
|
|
2489
|
+
onClose: () => void;
|
|
2490
|
+
chains: ChainOption[];
|
|
2491
|
+
onChainClick: (chainId: number) => void;
|
|
2492
|
+
title: string;
|
|
2493
|
+
closeAriaLabel?: string;
|
|
2494
|
+
}
|
|
2495
|
+
declare function OnchainWithdrawChainSelectorView({ actionSheetId, isOpen, currentActionSheetId, onClose, chains, onChainClick, title, closeAriaLabel, }: OnchainWithdrawChainSelectorViewProps): react_jsx_runtime.JSX.Element;
|
|
2496
|
+
|
|
2497
|
+
interface OnchainWithdrawSuccessViewProps {
|
|
2498
|
+
tokenSymbol: string;
|
|
2499
|
+
tokenLogoURI: string | null;
|
|
2500
|
+
formattedAmount: string;
|
|
2501
|
+
formattedAmountUSD: string;
|
|
2502
|
+
chainName: string;
|
|
2503
|
+
chainIconUrl: string;
|
|
2504
|
+
destinationAddress: string;
|
|
2505
|
+
blockchainCost: string;
|
|
2506
|
+
txHash: string;
|
|
2507
|
+
blockExplorerUrl: string;
|
|
2508
|
+
onViewHistory: () => void;
|
|
2509
|
+
onClose?: () => void;
|
|
2510
|
+
labels: {
|
|
2511
|
+
title: string;
|
|
2512
|
+
subtitle: string;
|
|
2513
|
+
sendingLabel: string;
|
|
2514
|
+
destinationLabel: string;
|
|
2515
|
+
detailsTitle: string;
|
|
2516
|
+
withdrawAmountLabel: string;
|
|
2517
|
+
blockchainCostLabel: string;
|
|
2518
|
+
youReceiveLabel: string;
|
|
2519
|
+
viewExplorerLabel: string;
|
|
2520
|
+
transactionLabel: string;
|
|
2521
|
+
viewHistoryLabel: string;
|
|
2522
|
+
closeAriaLabel: string;
|
|
2523
|
+
};
|
|
2524
|
+
className?: string;
|
|
2525
|
+
icon?: React__default.ReactNode;
|
|
2526
|
+
}
|
|
2527
|
+
declare function OnchainWithdrawSuccessView({ tokenSymbol, tokenLogoURI, formattedAmount, chainName, chainIconUrl, destinationAddress, blockchainCost, txHash, blockExplorerUrl, onViewHistory, onClose, labels, className, icon, }: OnchainWithdrawSuccessViewProps): react_jsx_runtime.JSX.Element;
|
|
2528
|
+
|
|
2529
|
+
declare function WithdrawSuccessIcon(): react_jsx_runtime.JSX.Element;
|
|
2530
|
+
|
|
2531
|
+
interface OnchainWithdrawFailedViewProps {
|
|
2532
|
+
tokenSymbol: string;
|
|
2533
|
+
tokenLogoURI: string | null;
|
|
2534
|
+
formattedAmount: string;
|
|
2535
|
+
chainName: string;
|
|
2536
|
+
chainIconUrl: string;
|
|
2537
|
+
destinationAddress: string;
|
|
2538
|
+
blockchainCost: string;
|
|
2539
|
+
errorMessage?: string;
|
|
2540
|
+
onCancel: () => void;
|
|
2541
|
+
onTryAgain: () => void;
|
|
2542
|
+
labels: {
|
|
2543
|
+
title: string;
|
|
2544
|
+
defaultErrorMessage: string;
|
|
2545
|
+
sendingLabel: string;
|
|
2546
|
+
destinationLabel: string;
|
|
2547
|
+
detailsTitle: string;
|
|
2548
|
+
withdrawAmountLabel: string;
|
|
2549
|
+
blockchainCostLabel: string;
|
|
2550
|
+
youReceiveLabel: string;
|
|
2551
|
+
cancelLabel: string;
|
|
2552
|
+
tryAgainLabel: string;
|
|
2553
|
+
closeAriaLabel: string;
|
|
2554
|
+
};
|
|
2555
|
+
className?: string;
|
|
2556
|
+
icon?: React__default.ReactNode;
|
|
2557
|
+
}
|
|
2558
|
+
declare function OnchainWithdrawFailedView({ tokenSymbol, tokenLogoURI, formattedAmount, chainName, chainIconUrl, destinationAddress, blockchainCost, errorMessage, onCancel, onTryAgain, labels, className, icon, }: OnchainWithdrawFailedViewProps): react_jsx_runtime.JSX.Element;
|
|
2559
|
+
|
|
2560
|
+
declare function WithdrawFailedIcon(): react_jsx_runtime.JSX.Element;
|
|
2561
|
+
|
|
2562
|
+
interface OnchainWithdrawProcessingViewProps {
|
|
2563
|
+
onClose?: () => void;
|
|
2564
|
+
}
|
|
2565
|
+
declare const OnchainWithdrawProcessingSimpleView: React$1.FC<OnchainWithdrawProcessingViewProps>;
|
|
2566
|
+
|
|
2567
|
+
interface OnchainWithdrawSignatureWarningViewProps {
|
|
2568
|
+
tokenSymbol: string;
|
|
2569
|
+
tokenLogoURI?: string | null;
|
|
2570
|
+
formattedAmount: string;
|
|
2571
|
+
chainName: string;
|
|
2572
|
+
chainIconUrl?: string;
|
|
2573
|
+
destinationAddress: string;
|
|
2574
|
+
blockchainCost: string;
|
|
2575
|
+
onCancel: () => void;
|
|
2576
|
+
onTryAgain: () => void;
|
|
2577
|
+
className?: string;
|
|
2578
|
+
}
|
|
2579
|
+
declare function OnchainWithdrawSignatureWarningView({ tokenSymbol, tokenLogoURI, formattedAmount, chainName, chainIconUrl, destinationAddress, blockchainCost, onCancel, onTryAgain, className, }: OnchainWithdrawSignatureWarningViewProps): react_jsx_runtime.JSX.Element;
|
|
2580
|
+
|
|
2581
|
+
declare const OnchainWithdrawSignatureWarningSimpleView: React$1.FC<OnchainWithdrawSignatureWarningViewProps>;
|
|
2582
|
+
|
|
2307
2583
|
interface DashboardCardProps {
|
|
2308
2584
|
children: React__default.ReactNode;
|
|
2309
2585
|
className?: string;
|
|
@@ -2465,6 +2741,13 @@ type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN
|
|
|
2465
2741
|
*/
|
|
2466
2742
|
declare function isDustValue(amountInUSD: number): boolean;
|
|
2467
2743
|
|
|
2744
|
+
/**
|
|
2745
|
+
* Shortens a long identifier (e.g. wallet address, tx hash) for display.
|
|
2746
|
+
* @param startChars — characters to keep at the start (default 6)
|
|
2747
|
+
* @param endChars — characters to keep at the end (default 4)
|
|
2748
|
+
*/
|
|
2749
|
+
declare function truncateAddress(address: string, startChars?: number, endChars?: number): string;
|
|
2750
|
+
|
|
2468
2751
|
interface DeframeThemeColors {
|
|
2469
2752
|
brandPrimary?: string;
|
|
2470
2753
|
brandSecondary?: string;
|
|
@@ -2485,4 +2768,4 @@ interface DeframeTheme {
|
|
|
2485
2768
|
colors?: DeframeThemeColors;
|
|
2486
2769
|
}
|
|
2487
2770
|
|
|
2488
|
-
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, Chip, ChipGroup, type ChipGroupProps, type ChipOption, type ChipProps, type ChooseANetworkLabels, ChooseANetworkView, type ChooseANetworkViewProps, ChooseAStrategyActionsheetView, type ChooseAStrategyActionsheetViewProps, type ChooseAnAssetSwapLabels, ChooseAnAssetSwapView, type ChooseAnAssetSwapViewProps, type ChooseNetworkAndAssetLabels, ChooseNetworkAndAssetViewSimple, type ChooseNetworkAndAssetViewSimpleProps, CloseButton, type CloseButtonProps, CollapsibleInfoRow, type CollapsibleInfoRowProps, CollapsibleSection, type CollapsibleSectionProps, type ConfirmSwapButtonLabels, ConfirmSwapButtonView, type ConfirmSwapButtonViewProps, ConfirmSwapButtonViewSimple, ConnectWalletList, type ConnectWalletListProps, Currency, type CurrencyProps, type CurrencyType, DashboardBalancesBreakdown, type DashboardBalancesBreakdownProps, DashboardCard, type DashboardCardProps, DashboardInvestmentOpportunitiesView, type DashboardInvestmentOpportunitiesViewProps, DashboardPortfolioView, type DashboardPortfolioViewProps, DashboardPortfolioViewSimple, DashboardRecentTransactionsView, type DashboardRecentTransactionsViewProps, DashboardRecentTransactionsViewSimple, DashboardStrategiesListView, type DashboardStrategiesListViewProps, type DashboardStrategyItem, type DashboardTokenItem, DashboardTokenListView, type DashboardTokenListViewProps, DashboardTokensView, type DashboardTokensViewProps, DashboardTokensViewSimple, type DashboardTransactionItemViewData, DashboardTransactionsPlaceholder, DashboardView, type DashboardViewProps, DashboardViewSimple, type DashboardViewSimpleProps, DeframeComponentsProvider, type DeframeTheme, type DeframeThemeColors, type DetailItem, DetailsHeader, type DetailsHeaderProps, EarnAmountInputView, type EarnAmountInputViewProps, EarnBalanceCard, type EarnBalanceCardProps, EarnBytecodeErrorView, type EarnBytecodeErrorViewProps, EarnDepositFailedSimpleView, EarnDepositFailedView, type EarnDepositFailedViewProps, EarnDepositFormView, type EarnDepositFormViewProps, EarnDepositFormViewSimple, EarnDepositProcessingSimpleView, EarnDepositProcessingView, type EarnDepositProcessingViewProps, EarnDepositSuccessSimpleView, EarnDepositSuccessView, type EarnDepositSuccessViewProps, EarnDepositWarningSimpleView, EarnDepositWarningView, type EarnDepositWarningViewProps, EarnDesktopView, type EarnDesktopViewProps, type EarnExploreGridItem, EarnExploreGridView, type EarnExploreGridViewProps, EarnFlowSkeletonSimple, type EarnInvestedSectionItem, EarnInvestedSectionView, type EarnInvestedSectionViewProps, type EarnInvestmentDetailsTransaction, EarnInvestmentDetailsView, type EarnInvestmentDetailsViewProps, EarnInvestmentSummaryView, type EarnInvestmentSummaryViewProps, EarnNoBalanceNotificationView, type EarnNoBalanceNotificationViewProps, EarnOverviewView, type EarnOverviewViewProps, EarnPercentageButtonsView, type EarnPercentageButtonsViewProps, EarnPositionCardView, type EarnPositionCardViewProps, EarnRecentTransactionsView, type EarnRecentTransactionsViewProps, EarnTokenSelectorView, type EarnTokenSelectorViewProps, EarnTxStatusCardView, type EarnTxStatusCardViewProps, EarnWithdrawFailedSimpleView, EarnWithdrawFailedView, type EarnWithdrawFailedViewProps, EarnWithdrawFormView, type EarnWithdrawFormViewProps, EarnWithdrawFormViewSimple, EarnWithdrawProcessingSimpleView, EarnWithdrawProcessingView, type EarnWithdrawProcessingViewProps, EarnWithdrawSuccessSimpleView, EarnWithdrawSuccessView, type EarnWithdrawSuccessViewProps, EarnWithdrawTokenSelectorView, type EarnWithdrawTokenSelectorViewProps, EarnWithdrawWarningSimpleView, EarnWithdrawWarningView, type EarnWithdrawWarningViewProps, type ExploreStrategyViewItem, Currency as Fiat, type FiatProps, FlexCol, type FlexColProps, FlexRow, type FlexRowProps, type GroupedInvestedItem, type GroupedStrategyItem, type GroupedStrategyListItem, GroupedStrategyListView, type GroupedStrategyListViewProps, HighRiskBadge, type HighRiskBadgeProps, type HistoryAssetViewProps, HistoryDepositDetailsView, type HistoryDetailsLabels, type HistoryDetailsStatus, type HistoryDetailsViewProps, HistoryListSkeleton, HistoryListView, type HistoryListViewGroup, type HistoryListViewItem, type HistoryListViewProps, type HistorySwapDetailsLabels, HistorySwapDetailsView, type HistorySwapDetailsViewProps, HistoryTabEmpty, type HistoryTabEmptyProps, HistoryWithdrawDetailsView, InfoLabel, type InfoLabelProps, InfoRow, InfoRowIconLabel, type InfoRowIconLabelProps, InfoRowIconValue, type InfoRowIconValueProps, type InfoRowProps, InfoRowWithIcon, type InfoRowWithIconProps, InfoValue, type InfoValueProps, Input, type InputFieldRegistration, type InputProps, InvestmentCrossChainProcessingView, type InvestmentCrossChainProcessingViewProps, Label, type LabelProps, type LabelVariant, Link, type LinkProps, ListItem, ListItemContent, ListItemLeftSide, type ListItemProps, ListItemRightSide, LoadingDots, type LoadingDotsProps, LowRiskBadge, type LowRiskBadgeProps, MediumRiskBadge, type MediumRiskBadgeProps, Navbar, type NavbarProps, type NetworkOption, PercentageButton, PrimaryButton, ProcessingBadge, type ProcessingBadgeProps, ProgressIndicator, type ProgressIndicatorProps, ScrollableContent, type ScrollableContentProps, SearchEmptyState, type SearchEmptyStateProps, SearchInput, type SearchInputProps, SecondaryButton, SectionCard, type SectionCardProps, Select, SelectContent, type SelectContentProps, SelectItem, type SelectItemProps, type SelectProps, SelectTrigger, type SelectTriggerProps, Skeleton, type SkeletonProps, StepDisplay, type StepDisplayProps, StepStatusIcon, type StepStatusIconProps, StepStatusText, type StepStatusTextProps, StrategyDetailsView, type StrategyDetailsViewProps, StrategyGridCard, type StrategyGridCardProps, SummaryDetails, SummaryDetailsCryptoControlV2, type SummaryDetailsProps, SwapAdvancedSettingsView, type SwapAdvancedSettingsViewProps, SwapAmountInputView, type SwapAmountInputViewProps, type SwapCardLabels, SwapCrossChainProcessingView, type SwapCrossChainProcessingViewProps, type SwapFormLabels, SwapFormView, type SwapFormViewProps, SwapFormViewSimple, SwapFromCardView, type SwapFromCardViewProps, SwapFromCardViewSimple, type SwapFromCardViewSimpleProps, type SwapHistoryItem, type SwapHistoryLabels, SwapHistoryView, type SwapHistoryViewProps, type SwapNetworkSelectorViewProps, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapProcessingViewSimple, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, type SwapQuoteErrorsViewProps, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSignatureWarningViewSimple, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapSuccessViewSimple, SwapToCardView, type SwapToCardViewProps, SwapToCardViewSimple, type SwapTokenSelectorViewProps, SwapTransactionFailedView, type SwapTransactionFailedViewProps, SwapTransactionFailedViewSimple, type SwapValidationCode, SwapWidgetFallbackView, type SwapWidgetFallbackViewProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TertiaryButton, Text, TextAccent, type TextAccentProps, TextBody, type TextBodyProps, TextHeading, type TextHeadingProps, Title, type TokenData, TokenWithChainBadge, type TokenWithChainBadgeProps, TransactionProcessingDetails, type TransactionProcessingDetailsLabels, type TransactionProcessingDetailsProps, TransactionScreen, TransactionScreenIcon, type TransactionScreenIconProps, TransactionScreenInvestmentCard, type TransactionScreenInvestmentCardProps, type TransactionScreenProps, type TransactionStep, type TransactionStepStatus, type WalletBalanceItem, WalletBalances, type WalletBalancesProps, WalletConnectPanel, type WalletConnectPanelProps, WalletItem, type WalletItemProps, ConnectWalletList as WalletList, WalletListContainer, type WalletListContainerProps, type WalletOption, isDustValue };
|
|
2771
|
+
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 ChainOption, Chip, ChipGroup, type ChipGroupProps, type ChipOption, type ChipProps, type ChooseANetworkLabels, ChooseANetworkView, type ChooseANetworkViewProps, ChooseAStrategyActionsheetView, type ChooseAStrategyActionsheetViewProps, type ChooseAnAssetSwapLabels, ChooseAnAssetSwapView, type ChooseAnAssetSwapViewProps, type ChooseNetworkAndAssetLabels, ChooseNetworkAndAssetViewSimple, type ChooseNetworkAndAssetViewSimpleProps, CloseButton, type CloseButtonProps, CollapsibleInfoRow, type CollapsibleInfoRowProps, CollapsibleSection, type CollapsibleSectionProps, type ConfirmSwapButtonLabels, ConfirmSwapButtonView, type ConfirmSwapButtonViewProps, ConfirmSwapButtonViewSimple, ConnectWalletList, type ConnectWalletListProps, Currency, type CurrencyProps, type CurrencyType, DashboardBalancesBreakdown, type DashboardBalancesBreakdownProps, DashboardCard, type DashboardCardProps, DashboardInvestmentOpportunitiesView, type DashboardInvestmentOpportunitiesViewProps, DashboardPortfolioView, type DashboardPortfolioViewProps, DashboardPortfolioViewSimple, DashboardRecentTransactionsView, type DashboardRecentTransactionsViewProps, DashboardRecentTransactionsViewSimple, DashboardStrategiesListView, type DashboardStrategiesListViewProps, type DashboardStrategyItem, type DashboardTokenItem, DashboardTokenListView, type DashboardTokenListViewProps, DashboardTokensView, type DashboardTokensViewProps, DashboardTokensViewSimple, type DashboardTransactionItemViewData, DashboardTransactionsPlaceholder, DashboardView, type DashboardViewProps, DashboardViewSimple, type DashboardViewSimpleProps, DeframeComponentsProvider, type DeframeTheme, type DeframeThemeColors, DepositSuccessIcon, type DetailItem, DetailsHeader, type DetailsHeaderProps, EarnAmountInputView, type EarnAmountInputViewProps, EarnBalanceCard, type EarnBalanceCardProps, EarnBytecodeErrorView, type EarnBytecodeErrorViewProps, EarnDepositFailedSimpleView, EarnDepositFailedView, type EarnDepositFailedViewProps, EarnDepositFormView, type EarnDepositFormViewProps, EarnDepositFormViewSimple, EarnDepositProcessingSimpleView, EarnDepositProcessingView, type EarnDepositProcessingViewProps, EarnDepositSuccessSimpleView, EarnDepositSuccessView, type EarnDepositSuccessViewProps, EarnDepositWarningSimpleView, EarnDepositWarningView, type EarnDepositWarningViewProps, EarnDesktopView, type EarnDesktopViewProps, type EarnExploreGridItem, EarnExploreGridView, type EarnExploreGridViewProps, EarnFlowSkeletonSimple, type EarnInvestedSectionItem, EarnInvestedSectionView, type EarnInvestedSectionViewProps, type EarnInvestmentDetailsTransaction, EarnInvestmentDetailsView, type EarnInvestmentDetailsViewProps, EarnInvestmentSummaryView, type EarnInvestmentSummaryViewProps, EarnNoBalanceNotificationView, type EarnNoBalanceNotificationViewProps, EarnOverviewView, type EarnOverviewViewProps, EarnPercentageButtonsView, type EarnPercentageButtonsViewProps, EarnPositionCardView, type EarnPositionCardViewProps, EarnRecentTransactionsView, type EarnRecentTransactionsViewProps, EarnTokenSelectorView, type EarnTokenSelectorViewProps, EarnTxStatusCardView, type EarnTxStatusCardViewProps, EarnWithdrawFailedSimpleView, EarnWithdrawFailedView, type EarnWithdrawFailedViewProps, EarnWithdrawFormView, type EarnWithdrawFormViewProps, EarnWithdrawFormViewSimple, EarnWithdrawProcessingSimpleView, EarnWithdrawProcessingView, type EarnWithdrawProcessingViewProps, EarnWithdrawSuccessSimpleView, EarnWithdrawSuccessView, type EarnWithdrawSuccessViewProps, EarnWithdrawTokenSelectorView, type EarnWithdrawTokenSelectorViewProps, EarnWithdrawWarningSimpleView, EarnWithdrawWarningView, type EarnWithdrawWarningViewProps, type ExploreStrategyViewItem, Currency as Fiat, type FiatProps, FlexCol, type FlexColProps, FlexRow, type FlexRowProps, type GroupedInvestedItem, type GroupedStrategyItem, type GroupedStrategyListItem, GroupedStrategyListView, type GroupedStrategyListViewProps, HighRiskBadge, type HighRiskBadgeProps, type HistoryAssetViewProps, HistoryDepositDetailsView, type HistoryDetailsLabels, type HistoryDetailsStatus, type HistoryDetailsViewProps, HistoryListSkeleton, HistoryListView, type HistoryListViewGroup, type HistoryListViewItem, type HistoryListViewProps, type HistorySwapDetailsLabels, HistorySwapDetailsView, type HistorySwapDetailsViewProps, HistoryTabEmpty, type HistoryTabEmptyProps, HistoryWithdrawDetailsView, InfoLabel, type InfoLabelProps, InfoRow, InfoRowIconLabel, type InfoRowIconLabelProps, InfoRowIconValue, type InfoRowIconValueProps, type InfoRowProps, InfoRowWithIcon, type InfoRowWithIconProps, InfoValue, type InfoValueProps, Input, type InputFieldRegistration, type InputProps, InvestmentCrossChainProcessingView, type InvestmentCrossChainProcessingViewProps, Label, type LabelProps, type LabelVariant, Link, type LinkProps, ListItem, ListItemContent, ListItemLeftSide, type ListItemProps, ListItemRightSide, LoadingDots, type LoadingDotsProps, LowRiskBadge, type LowRiskBadgeProps, MediumRiskBadge, type MediumRiskBadgeProps, Navbar, type NavbarProps, type NetworkOption, OnchainDepositFormSimpleView, OnchainDepositFormView, type OnchainDepositFormViewProps, OnchainDepositSuccessSimpleView, OnchainDepositSuccessView, type OnchainDepositSuccessViewProps, OnchainWithdrawChainSelectorView, type OnchainWithdrawChainSelectorViewProps, OnchainWithdrawFailedView, type OnchainWithdrawFailedViewProps, OnchainWithdrawFormSimpleView, OnchainWithdrawFormView, type OnchainWithdrawFormViewProps, OnchainWithdrawProcessingSimpleView, type OnchainWithdrawProcessingViewProps, OnchainWithdrawSignatureWarningSimpleView, OnchainWithdrawSignatureWarningView, type OnchainWithdrawSignatureWarningViewProps, OnchainWithdrawSuccessView, type OnchainWithdrawSuccessViewProps, PercentageButton, PrimaryButton, ProcessingBadge, type ProcessingBadgeProps, ProgressIndicator, type ProgressIndicatorProps, ScrollableContent, type ScrollableContentProps, SearchEmptyState, type SearchEmptyStateProps, SearchInput, type SearchInputProps, SecondaryButton, SectionCard, type SectionCardProps, Select, SelectContent, type SelectContentProps, SelectItem, type SelectItemProps, type SelectProps, SelectTrigger, type SelectTriggerProps, Skeleton, type SkeletonProps, StepDisplay, type StepDisplayProps, StepStatusIcon, type StepStatusIconProps, StepStatusText, type StepStatusTextProps, StrategyDetailsView, type StrategyDetailsViewProps, StrategyGridCard, type StrategyGridCardProps, SummaryDetails, SummaryDetailsCryptoControlV2, type SummaryDetailsProps, SwapAdvancedSettingsView, type SwapAdvancedSettingsViewProps, SwapAmountInputView, type SwapAmountInputViewProps, type SwapCardLabels, SwapCrossChainProcessingView, type SwapCrossChainProcessingViewProps, type SwapFormLabels, SwapFormView, type SwapFormViewProps, SwapFormViewSimple, SwapFromCardView, type SwapFromCardViewProps, SwapFromCardViewSimple, type SwapFromCardViewSimpleProps, type SwapHistoryItem, type SwapHistoryLabels, SwapHistoryView, type SwapHistoryViewProps, type SwapNetworkSelectorViewProps, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapProcessingViewSimple, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, type SwapQuoteErrorsViewProps, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSignatureWarningViewSimple, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapSuccessViewSimple, SwapToCardView, type SwapToCardViewProps, SwapToCardViewSimple, type SwapTokenSelectorViewProps, SwapTransactionFailedView, type SwapTransactionFailedViewProps, SwapTransactionFailedViewSimple, type SwapValidationCode, SwapWidgetFallbackView, type SwapWidgetFallbackViewProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TertiaryButton, Text, TextAccent, type TextAccentProps, TextBody, type TextBodyProps, TextHeading, type TextHeadingProps, Title, type TokenData, TokenWithChainBadge, type TokenWithChainBadgeProps, TransactionProcessingDetails, type TransactionProcessingDetailsLabels, type TransactionProcessingDetailsProps, TransactionScreen, TransactionScreenIcon, type TransactionScreenIconProps, TransactionScreenInvestmentCard, type TransactionScreenInvestmentCardProps, type TransactionScreenProps, type TransactionStep, type TransactionStepStatus, type WalletBalanceItem, WalletBalances, type WalletBalancesProps, WalletConnectPanel, type WalletConnectPanelProps, WalletItem, type WalletItemProps, ConnectWalletList as WalletList, WalletListContainer, type WalletListContainerProps, type WalletOption, WithdrawFailedIcon, WithdrawSuccessIcon, isDustValue, truncateAddress };
|