@deframe-sdk/components 0.1.12 → 0.1.14
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 +748 -7
- package/dist/index.d.ts +748 -7
- package/dist/index.js +2308 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2268 -19
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +357 -0
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -5,6 +5,18 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
5
5
|
/** Primary UI component for user interaction */
|
|
6
6
|
declare function ActionButton({ children, disabled, className, type, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
7
7
|
|
|
8
|
+
interface CloseButtonProps {
|
|
9
|
+
/** Click handler for the close button */
|
|
10
|
+
onClick?: () => void;
|
|
11
|
+
/** Test ID for testing purposes */
|
|
12
|
+
testId?: string;
|
|
13
|
+
/** ARIA label for accessibility */
|
|
14
|
+
ariaLabel?: string;
|
|
15
|
+
/** Additional CSS class names */
|
|
16
|
+
className?: string;
|
|
17
|
+
}
|
|
18
|
+
declare const CloseButton: React__default.FC<CloseButtonProps>;
|
|
19
|
+
|
|
8
20
|
/** Primary UI component for user interaction */
|
|
9
21
|
declare function PercentageButton({ children, disabled, className, type, ...props }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
10
22
|
|
|
@@ -997,6 +1009,14 @@ interface SwapProcessingViewProps {
|
|
|
997
1009
|
}
|
|
998
1010
|
declare const SwapProcessingView: React__default.FC<SwapProcessingViewProps>;
|
|
999
1011
|
|
|
1012
|
+
/**
|
|
1013
|
+
* Visual variant of SwapProcessingView.
|
|
1014
|
+
* Design identical to the SwapPanel ProcessingOverlay:
|
|
1015
|
+
* glass-blur transparent background, rotating sync icon,
|
|
1016
|
+
* uppercase green title + muted subtitle. No chrome, no transaction details.
|
|
1017
|
+
*/
|
|
1018
|
+
declare const SwapProcessingViewSimple: React__default.FC<Partial<SwapProcessingViewProps>>;
|
|
1019
|
+
|
|
1000
1020
|
interface SwapCrossChainProcessingViewProps {
|
|
1001
1021
|
fromTokenSymbol: string;
|
|
1002
1022
|
fromTokenIcon: string;
|
|
@@ -1045,12 +1065,12 @@ interface SwapSignatureWarningViewProps {
|
|
|
1045
1065
|
declare const SwapSignatureWarningView: React__default.FC<SwapSignatureWarningViewProps>;
|
|
1046
1066
|
|
|
1047
1067
|
interface SwapSuccessLabels {
|
|
1048
|
-
title
|
|
1049
|
-
descriptionPrefix
|
|
1050
|
-
descriptionMiddle
|
|
1051
|
-
descriptionSuffix
|
|
1052
|
-
walletLinkText
|
|
1053
|
-
startNewSwapButton
|
|
1068
|
+
title?: string;
|
|
1069
|
+
descriptionPrefix?: string;
|
|
1070
|
+
descriptionMiddle?: string;
|
|
1071
|
+
descriptionSuffix?: string;
|
|
1072
|
+
walletLinkText?: string;
|
|
1073
|
+
startNewSwapButton?: string;
|
|
1054
1074
|
}
|
|
1055
1075
|
|
|
1056
1076
|
interface SwapSuccessViewProps {
|
|
@@ -1071,6 +1091,14 @@ interface SwapSuccessViewProps {
|
|
|
1071
1091
|
}
|
|
1072
1092
|
declare const SwapSuccessView: React__default.FC<SwapSuccessViewProps>;
|
|
1073
1093
|
|
|
1094
|
+
/**
|
|
1095
|
+
* Visual variant of SwapSuccessView.
|
|
1096
|
+
* Design identical to the SwapPanel SuccessOverlay:
|
|
1097
|
+
* glass-blur transparent background, centered icon + title + subtitle.
|
|
1098
|
+
* No chrome, no transaction details.
|
|
1099
|
+
*/
|
|
1100
|
+
declare const SwapSuccessViewSimple: React__default.FC<Partial<SwapSuccessViewProps>>;
|
|
1101
|
+
|
|
1074
1102
|
interface SwapTransactionFailedViewProps {
|
|
1075
1103
|
fromTokenSymbol: string;
|
|
1076
1104
|
fromTokenIcon: string;
|
|
@@ -1094,6 +1122,14 @@ interface SwapTransactionFailedViewProps {
|
|
|
1094
1122
|
}
|
|
1095
1123
|
declare const SwapTransactionFailedView: React__default.FC<SwapTransactionFailedViewProps>;
|
|
1096
1124
|
|
|
1125
|
+
/**
|
|
1126
|
+
* Visual variant of SwapTransactionFailedView.
|
|
1127
|
+
* Design identical to the SwapPanel ErrorOverlay:
|
|
1128
|
+
* glass-blur transparent background, spring-in red circle with animated X,
|
|
1129
|
+
* bold title + muted subtitle. No chrome, no transaction details.
|
|
1130
|
+
*/
|
|
1131
|
+
declare const SwapTransactionFailedViewSimple: React__default.FC<Partial<SwapTransactionFailedViewProps>>;
|
|
1132
|
+
|
|
1097
1133
|
interface ChooseAnAssetSwapLabels {
|
|
1098
1134
|
title: string;
|
|
1099
1135
|
searchPlaceholder: string;
|
|
@@ -1298,6 +1334,711 @@ interface ConfirmSwapButtonViewProps {
|
|
|
1298
1334
|
}
|
|
1299
1335
|
declare const ConfirmSwapButtonView: React__default.FC<ConfirmSwapButtonViewProps>;
|
|
1300
1336
|
|
|
1337
|
+
interface ChooseANetworkLabels {
|
|
1338
|
+
title: string;
|
|
1339
|
+
searchPlaceholder: string;
|
|
1340
|
+
loadMoreLabel: string;
|
|
1341
|
+
}
|
|
1342
|
+
|
|
1343
|
+
interface ChainItem {
|
|
1344
|
+
chainId: number;
|
|
1345
|
+
name: string;
|
|
1346
|
+
imageUrl: string;
|
|
1347
|
+
}
|
|
1348
|
+
|
|
1349
|
+
interface ChooseANetworkViewProps {
|
|
1350
|
+
labels: ChooseANetworkLabels;
|
|
1351
|
+
autoFocus?: boolean;
|
|
1352
|
+
chains: ChainItem[];
|
|
1353
|
+
pageSize?: number;
|
|
1354
|
+
onChainClick: (chainId: number) => void;
|
|
1355
|
+
}
|
|
1356
|
+
declare const ChooseANetworkView: React__default.FC<ChooseANetworkViewProps>;
|
|
1357
|
+
|
|
1358
|
+
interface SwapHistoryLabels {
|
|
1359
|
+
emptyTitle: string;
|
|
1360
|
+
emptyDescription: string;
|
|
1361
|
+
loadMoreLabel: string;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
interface SwapHistoryItem {
|
|
1365
|
+
id: string;
|
|
1366
|
+
title: string;
|
|
1367
|
+
subtitle: string;
|
|
1368
|
+
iconUrl: string;
|
|
1369
|
+
iconAlt: string;
|
|
1370
|
+
amountFormatted: string;
|
|
1371
|
+
amountUsd?: string;
|
|
1372
|
+
dateKey: string;
|
|
1373
|
+
dateLabel: string;
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
interface SwapHistoryViewProps {
|
|
1377
|
+
labels: SwapHistoryLabels;
|
|
1378
|
+
isLoading: boolean;
|
|
1379
|
+
items: SwapHistoryItem[];
|
|
1380
|
+
onItemClick: (itemId: string) => void;
|
|
1381
|
+
pageSize?: number;
|
|
1382
|
+
}
|
|
1383
|
+
declare const SwapHistoryView: React__default.FC<SwapHistoryViewProps>;
|
|
1384
|
+
|
|
1385
|
+
interface HistorySwapDetailsLabels {
|
|
1386
|
+
headerTitle: string;
|
|
1387
|
+
notFoundMessage: string;
|
|
1388
|
+
detailsUnavailableMessage: string;
|
|
1389
|
+
swapLabel: string;
|
|
1390
|
+
sentLabel: string;
|
|
1391
|
+
receivedLabel: string;
|
|
1392
|
+
statusLabel: string;
|
|
1393
|
+
txIdLabel: string;
|
|
1394
|
+
dateLabel: string;
|
|
1395
|
+
transactionLabel: string;
|
|
1396
|
+
viewOnExplorerLabel: string;
|
|
1397
|
+
}
|
|
1398
|
+
|
|
1399
|
+
interface BaseProps {
|
|
1400
|
+
labels: HistorySwapDetailsLabels;
|
|
1401
|
+
onBack: () => void;
|
|
1402
|
+
}
|
|
1403
|
+
interface NotFoundProps extends BaseProps {
|
|
1404
|
+
status: 'not-found';
|
|
1405
|
+
}
|
|
1406
|
+
interface UnavailableProps extends BaseProps {
|
|
1407
|
+
status: 'unavailable';
|
|
1408
|
+
}
|
|
1409
|
+
interface LoadedProps extends BaseProps {
|
|
1410
|
+
status: 'loaded';
|
|
1411
|
+
symbolIn: string;
|
|
1412
|
+
amountInFormatted: string;
|
|
1413
|
+
amountInUsd: string | null;
|
|
1414
|
+
tokenInLogoUrl: string;
|
|
1415
|
+
chainInName: string | null;
|
|
1416
|
+
symbolOut: string;
|
|
1417
|
+
amountOutFormatted: string;
|
|
1418
|
+
amountOutUsd: string | null;
|
|
1419
|
+
tokenOutLogoUrl: string;
|
|
1420
|
+
chainOutName: string | null;
|
|
1421
|
+
routeOrNetworkLabel: string;
|
|
1422
|
+
routeOrNetworkValue: string;
|
|
1423
|
+
statusLabel: string;
|
|
1424
|
+
txHash: string | null;
|
|
1425
|
+
dateFormatted: string;
|
|
1426
|
+
explorerUrl: string | null;
|
|
1427
|
+
}
|
|
1428
|
+
type HistorySwapDetailsViewProps = NotFoundProps | UnavailableProps | LoadedProps;
|
|
1429
|
+
declare const HistorySwapDetailsView: React__default.FC<HistorySwapDetailsViewProps>;
|
|
1430
|
+
|
|
1431
|
+
interface SwapWidgetFallbackViewProps {
|
|
1432
|
+
title: string;
|
|
1433
|
+
description: string;
|
|
1434
|
+
buttonLabel: string;
|
|
1435
|
+
onButtonClick: () => void;
|
|
1436
|
+
}
|
|
1437
|
+
declare const SwapWidgetFallbackView: React__default.FC<SwapWidgetFallbackViewProps>;
|
|
1438
|
+
|
|
1439
|
+
interface ApyRangeProps {
|
|
1440
|
+
children: React__default.ReactNode;
|
|
1441
|
+
}
|
|
1442
|
+
declare const ApyRange: React__default.FC<ApyRangeProps>;
|
|
1443
|
+
|
|
1444
|
+
type LabelVariant = 'primary' | 'secondary';
|
|
1445
|
+
interface LabelProps {
|
|
1446
|
+
children: React__default.ReactNode;
|
|
1447
|
+
variant?: LabelVariant;
|
|
1448
|
+
className?: string;
|
|
1449
|
+
}
|
|
1450
|
+
declare const Label: React__default.FC<LabelProps>;
|
|
1451
|
+
|
|
1452
|
+
declare const HistoryListSkeleton: React__default.FC;
|
|
1453
|
+
|
|
1454
|
+
type BackgroundVariant = 'subtle' | 'raised';
|
|
1455
|
+
interface WalletBalanceItem {
|
|
1456
|
+
label: string;
|
|
1457
|
+
value: string;
|
|
1458
|
+
}
|
|
1459
|
+
interface WalletBalancesProps {
|
|
1460
|
+
cards: WalletBalanceItem[];
|
|
1461
|
+
variant?: BackgroundVariant;
|
|
1462
|
+
className?: string;
|
|
1463
|
+
}
|
|
1464
|
+
declare const WalletBalances: React__default.FC<WalletBalancesProps>;
|
|
1465
|
+
|
|
1466
|
+
interface HistoryTabEmptyProps {
|
|
1467
|
+
title: string;
|
|
1468
|
+
description: string;
|
|
1469
|
+
}
|
|
1470
|
+
declare const HistoryTabEmpty: React__default.FC<HistoryTabEmptyProps>;
|
|
1471
|
+
|
|
1472
|
+
interface StrategyGridCardProps {
|
|
1473
|
+
logoUrl: string;
|
|
1474
|
+
title: string;
|
|
1475
|
+
subtitle: string;
|
|
1476
|
+
apyFormatted: string;
|
|
1477
|
+
apyLabel: string;
|
|
1478
|
+
onClick?: () => void;
|
|
1479
|
+
className?: string;
|
|
1480
|
+
}
|
|
1481
|
+
declare const StrategyGridCard: React__default.FC<StrategyGridCardProps>;
|
|
1482
|
+
|
|
1483
|
+
interface BackButtonProps {
|
|
1484
|
+
onClick?: () => void;
|
|
1485
|
+
ariaLabel?: string;
|
|
1486
|
+
className?: string;
|
|
1487
|
+
}
|
|
1488
|
+
declare const BackButton: React__default.FC<BackButtonProps>;
|
|
1489
|
+
|
|
1490
|
+
interface EarnBalanceCardProps {
|
|
1491
|
+
tokenIcon?: React__default.ReactNode;
|
|
1492
|
+
fiatBalance: string;
|
|
1493
|
+
profitAmount: string;
|
|
1494
|
+
tokenAmount: string;
|
|
1495
|
+
investedLabel: string;
|
|
1496
|
+
earningsLabel: string;
|
|
1497
|
+
isFetching?: boolean;
|
|
1498
|
+
}
|
|
1499
|
+
declare const EarnBalanceCard: React__default.FC<EarnBalanceCardProps>;
|
|
1500
|
+
|
|
1501
|
+
interface EarnInvestmentSummaryViewProps {
|
|
1502
|
+
overviewDescription: string;
|
|
1503
|
+
totalInvestedLabel: string;
|
|
1504
|
+
totalInvestedValue: string;
|
|
1505
|
+
totalReturnLabel: string;
|
|
1506
|
+
totalReturnValue: string;
|
|
1507
|
+
className?: string;
|
|
1508
|
+
}
|
|
1509
|
+
/**
|
|
1510
|
+
* Investment Summary view for desktop layout.
|
|
1511
|
+
* Pure view — displays total invested and total earned values.
|
|
1512
|
+
*/
|
|
1513
|
+
declare const EarnInvestmentSummaryView: React__default.FC<EarnInvestmentSummaryViewProps>;
|
|
1514
|
+
|
|
1515
|
+
interface EarnInvestedSectionItem {
|
|
1516
|
+
strategyId: string;
|
|
1517
|
+
logoUrl: string;
|
|
1518
|
+
assetName: string;
|
|
1519
|
+
subtitle: string;
|
|
1520
|
+
balanceFormatted: string;
|
|
1521
|
+
profitFormatted: string;
|
|
1522
|
+
}
|
|
1523
|
+
interface EarnInvestedSectionViewProps {
|
|
1524
|
+
sectionTitle: string;
|
|
1525
|
+
items: EarnInvestedSectionItem[];
|
|
1526
|
+
onItemClick?: (strategyId: string) => void;
|
|
1527
|
+
className?: string;
|
|
1528
|
+
}
|
|
1529
|
+
/**
|
|
1530
|
+
* Invested strategies section view for desktop layout.
|
|
1531
|
+
* Pure view — receives pre-formatted items and renders a vertical list.
|
|
1532
|
+
*/
|
|
1533
|
+
declare const EarnInvestedSectionView: React__default.FC<EarnInvestedSectionViewProps>;
|
|
1534
|
+
|
|
1535
|
+
interface EarnExploreGridItem {
|
|
1536
|
+
id: string;
|
|
1537
|
+
logoUrl: string;
|
|
1538
|
+
title: string;
|
|
1539
|
+
subtitle: string;
|
|
1540
|
+
apyFormatted: string;
|
|
1541
|
+
apyLabel: string;
|
|
1542
|
+
}
|
|
1543
|
+
interface EarnExploreGridViewProps {
|
|
1544
|
+
sectionTitle: string;
|
|
1545
|
+
loadingLabel: string;
|
|
1546
|
+
errorLabel: string;
|
|
1547
|
+
emptySearchTitle: string;
|
|
1548
|
+
emptySearchDescription: string;
|
|
1549
|
+
isLoading: boolean;
|
|
1550
|
+
error?: Error | null;
|
|
1551
|
+
strategies: EarnExploreGridItem[];
|
|
1552
|
+
searchBar: React__default.ReactNode;
|
|
1553
|
+
chipGroup: React__default.ReactNode;
|
|
1554
|
+
hasFilters: boolean;
|
|
1555
|
+
onStrategyClick?: (strategyId: string) => void;
|
|
1556
|
+
className?: string;
|
|
1557
|
+
}
|
|
1558
|
+
/**
|
|
1559
|
+
* Explore strategies grid view for desktop layout.
|
|
1560
|
+
* Pure view — receives filtered strategies and renders a grid with search/filter UI.
|
|
1561
|
+
*/
|
|
1562
|
+
declare const EarnExploreGridView: React__default.FC<EarnExploreGridViewProps>;
|
|
1563
|
+
|
|
1564
|
+
interface EarnRecentTransactionsViewProps {
|
|
1565
|
+
sectionTitle: string;
|
|
1566
|
+
viewAllLabel: string;
|
|
1567
|
+
isLoading: boolean;
|
|
1568
|
+
hasMore: boolean;
|
|
1569
|
+
hasItems: boolean;
|
|
1570
|
+
historyList: React__default.ReactNode;
|
|
1571
|
+
emptyTitle: string;
|
|
1572
|
+
emptyDescription: string;
|
|
1573
|
+
onViewAll?: () => void;
|
|
1574
|
+
className?: string;
|
|
1575
|
+
}
|
|
1576
|
+
/**
|
|
1577
|
+
* Recent transactions section view for desktop layout.
|
|
1578
|
+
* Pure view — renders a section with title, "view all" link, and history list slot.
|
|
1579
|
+
*/
|
|
1580
|
+
declare const EarnRecentTransactionsView: React__default.FC<EarnRecentTransactionsViewProps>;
|
|
1581
|
+
|
|
1582
|
+
interface EarnDesktopViewProps {
|
|
1583
|
+
isLoading: boolean;
|
|
1584
|
+
loadingSkeleton: React__default.ReactNode;
|
|
1585
|
+
summary: EarnInvestmentSummaryViewProps;
|
|
1586
|
+
invested: EarnInvestedSectionViewProps;
|
|
1587
|
+
explore: EarnExploreGridViewProps;
|
|
1588
|
+
transactions: EarnRecentTransactionsViewProps;
|
|
1589
|
+
className?: string;
|
|
1590
|
+
}
|
|
1591
|
+
/**
|
|
1592
|
+
* Desktop layout for Earn page.
|
|
1593
|
+
* Pure view — receives typed props per section and renders section views directly.
|
|
1594
|
+
*/
|
|
1595
|
+
declare const EarnDesktopView: React__default.FC<EarnDesktopViewProps>;
|
|
1596
|
+
|
|
1597
|
+
interface EarnInvestmentDetailsTransaction {
|
|
1598
|
+
id: string;
|
|
1599
|
+
action: string;
|
|
1600
|
+
date: string;
|
|
1601
|
+
usdAmount: string;
|
|
1602
|
+
tokenAmount: string;
|
|
1603
|
+
}
|
|
1604
|
+
|
|
1605
|
+
interface EarnInvestmentDetailsViewProps {
|
|
1606
|
+
title: string;
|
|
1607
|
+
onBack?: () => void;
|
|
1608
|
+
tokenIcon?: string;
|
|
1609
|
+
fiatBalance: string;
|
|
1610
|
+
profitAmount: string;
|
|
1611
|
+
tokenAmount: string;
|
|
1612
|
+
investedLabel: string;
|
|
1613
|
+
earningsLabel: string;
|
|
1614
|
+
summaryTitle: string;
|
|
1615
|
+
summaryItems: Array<{
|
|
1616
|
+
label: string;
|
|
1617
|
+
value: string;
|
|
1618
|
+
}>;
|
|
1619
|
+
pastActivitiesTitle: string;
|
|
1620
|
+
transactions: EarnInvestmentDetailsTransaction[];
|
|
1621
|
+
onTransactionClick: (transactionId: string) => void;
|
|
1622
|
+
showMoreButton: boolean;
|
|
1623
|
+
onLoadMore: () => void;
|
|
1624
|
+
loadMoreLabel: string;
|
|
1625
|
+
depositLabel: string;
|
|
1626
|
+
onDeposit: () => void;
|
|
1627
|
+
withdrawLabel: string;
|
|
1628
|
+
onWithdraw: () => void;
|
|
1629
|
+
}
|
|
1630
|
+
/**
|
|
1631
|
+
* Investment details view for a single strategy position.
|
|
1632
|
+
* Pure view — receives all data pre-formatted from the container.
|
|
1633
|
+
*/
|
|
1634
|
+
declare const EarnInvestmentDetailsView: React__default.FC<EarnInvestmentDetailsViewProps>;
|
|
1635
|
+
|
|
1636
|
+
interface GroupedStrategyListItem {
|
|
1637
|
+
id: string;
|
|
1638
|
+
logoUrl: string;
|
|
1639
|
+
title: string;
|
|
1640
|
+
subtitle: string;
|
|
1641
|
+
onClick: () => void;
|
|
1642
|
+
}
|
|
1643
|
+
interface GroupedInvestedItem extends GroupedStrategyListItem {
|
|
1644
|
+
balanceFormatted: string;
|
|
1645
|
+
profitFormatted: string;
|
|
1646
|
+
}
|
|
1647
|
+
interface GroupedStrategyItem extends GroupedStrategyListItem {
|
|
1648
|
+
apyFormatted: string;
|
|
1649
|
+
}
|
|
1650
|
+
interface GroupedStrategyListViewProps {
|
|
1651
|
+
isLoading: boolean;
|
|
1652
|
+
loadingLabel: string;
|
|
1653
|
+
error: Error | null;
|
|
1654
|
+
errorLabel: string;
|
|
1655
|
+
investedLabel: string;
|
|
1656
|
+
investedItems: GroupedInvestedItem[];
|
|
1657
|
+
bestPerformanceLabel: string;
|
|
1658
|
+
bestPerformanceItems: GroupedStrategyItem[];
|
|
1659
|
+
allStrategiesLabel: string;
|
|
1660
|
+
allStrategiesItems: GroupedStrategyItem[];
|
|
1661
|
+
}
|
|
1662
|
+
/**
|
|
1663
|
+
* Grouped strategy list view for mobile overview tab.
|
|
1664
|
+
* Pure view — receives pre-formatted items grouped by category.
|
|
1665
|
+
*/
|
|
1666
|
+
declare const GroupedStrategyListView: React__default.FC<GroupedStrategyListViewProps>;
|
|
1667
|
+
|
|
1668
|
+
interface HistoryListViewItem {
|
|
1669
|
+
id: string;
|
|
1670
|
+
iconUrl: string;
|
|
1671
|
+
iconAlt: string;
|
|
1672
|
+
isDeposit: boolean;
|
|
1673
|
+
isSwap: boolean;
|
|
1674
|
+
title: string;
|
|
1675
|
+
subtitle: string;
|
|
1676
|
+
amountFormatted: string;
|
|
1677
|
+
amountUsd?: string;
|
|
1678
|
+
onClick: () => void;
|
|
1679
|
+
}
|
|
1680
|
+
interface HistoryListViewGroup {
|
|
1681
|
+
dateLabel: string;
|
|
1682
|
+
items: HistoryListViewItem[];
|
|
1683
|
+
}
|
|
1684
|
+
interface HistoryListViewProps {
|
|
1685
|
+
groups: HistoryListViewGroup[];
|
|
1686
|
+
showLoadMore: boolean;
|
|
1687
|
+
onLoadMore: () => void;
|
|
1688
|
+
loadMoreLabel: string;
|
|
1689
|
+
itemClassName?: string;
|
|
1690
|
+
itemVariant?: 'subtle' | 'raised';
|
|
1691
|
+
}
|
|
1692
|
+
/**
|
|
1693
|
+
* History list view.
|
|
1694
|
+
* Pure view — receives pre-grouped, pre-formatted history items.
|
|
1695
|
+
*/
|
|
1696
|
+
declare const HistoryListView: React__default.FC<HistoryListViewProps>;
|
|
1697
|
+
|
|
1698
|
+
interface EarnTokenSelectorViewProps {
|
|
1699
|
+
selectedToken: {
|
|
1700
|
+
symbol: string;
|
|
1701
|
+
logoURI?: string | null;
|
|
1702
|
+
} | null;
|
|
1703
|
+
onTokenClick: () => void;
|
|
1704
|
+
isLoading: boolean;
|
|
1705
|
+
selectTokenLabel: string;
|
|
1706
|
+
chainLabel: string;
|
|
1707
|
+
chainImage?: string;
|
|
1708
|
+
chainDirectionLabel: string;
|
|
1709
|
+
chainDisabledTitle?: string;
|
|
1710
|
+
}
|
|
1711
|
+
declare const EarnTokenSelectorView: React__default.FC<EarnTokenSelectorViewProps>;
|
|
1712
|
+
|
|
1713
|
+
interface EarnAmountInputViewProps {
|
|
1714
|
+
value: string;
|
|
1715
|
+
onChange: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
|
1716
|
+
ariaLabel: string;
|
|
1717
|
+
dollarAmountFormatted: string;
|
|
1718
|
+
availableBalanceFormatted?: string;
|
|
1719
|
+
}
|
|
1720
|
+
declare const EarnAmountInputView: React__default.FC<EarnAmountInputViewProps>;
|
|
1721
|
+
|
|
1722
|
+
interface EarnPercentageButtonsViewProps {
|
|
1723
|
+
onPercentageClick: (basisPoints: number) => void;
|
|
1724
|
+
maxLabel: string;
|
|
1725
|
+
}
|
|
1726
|
+
declare const EarnPercentageButtonsView: React__default.FC<EarnPercentageButtonsViewProps>;
|
|
1727
|
+
|
|
1728
|
+
interface EarnWithdrawTokenSelectorViewProps {
|
|
1729
|
+
selectedToken: {
|
|
1730
|
+
symbol: string;
|
|
1731
|
+
logoURI?: string | null;
|
|
1732
|
+
} | null;
|
|
1733
|
+
onTokenClick: () => void;
|
|
1734
|
+
selectTokenLabel: string;
|
|
1735
|
+
chainLabel: string;
|
|
1736
|
+
chainImage?: string;
|
|
1737
|
+
chainDirectionLabel: string;
|
|
1738
|
+
chainDisabledTitle?: string;
|
|
1739
|
+
}
|
|
1740
|
+
declare const EarnWithdrawTokenSelectorView: React__default.FC<EarnWithdrawTokenSelectorViewProps>;
|
|
1741
|
+
|
|
1742
|
+
interface EarnNoBalanceNotificationViewProps {
|
|
1743
|
+
prompt: string;
|
|
1744
|
+
actionLabel: string;
|
|
1745
|
+
onAction: () => void;
|
|
1746
|
+
}
|
|
1747
|
+
declare const EarnNoBalanceNotificationView: React__default.FC<EarnNoBalanceNotificationViewProps>;
|
|
1748
|
+
|
|
1749
|
+
interface EarnTxStatusCardViewProps {
|
|
1750
|
+
statusLabel: string;
|
|
1751
|
+
isProcessing: boolean;
|
|
1752
|
+
successMessage?: string;
|
|
1753
|
+
errorMessage?: string;
|
|
1754
|
+
}
|
|
1755
|
+
declare const EarnTxStatusCardView: React__default.FC<EarnTxStatusCardViewProps>;
|
|
1756
|
+
|
|
1757
|
+
interface EarnBytecodeErrorViewProps {
|
|
1758
|
+
errorTitle: string;
|
|
1759
|
+
errorMessage: string;
|
|
1760
|
+
}
|
|
1761
|
+
declare const EarnBytecodeErrorView: React__default.FC<EarnBytecodeErrorViewProps>;
|
|
1762
|
+
|
|
1763
|
+
interface EarnPositionCardViewProps {
|
|
1764
|
+
balanceUSD: string;
|
|
1765
|
+
balanceToken: string;
|
|
1766
|
+
icon?: string;
|
|
1767
|
+
iconAlt?: string;
|
|
1768
|
+
}
|
|
1769
|
+
declare const EarnPositionCardView: React__default.FC<EarnPositionCardViewProps>;
|
|
1770
|
+
|
|
1771
|
+
interface EarnDepositFormViewProps {
|
|
1772
|
+
headerTitle: string;
|
|
1773
|
+
onBack?: () => void;
|
|
1774
|
+
progress: number;
|
|
1775
|
+
pageTitle: string;
|
|
1776
|
+
subtitle: string;
|
|
1777
|
+
onSubmit: React__default.FormEventHandler<HTMLFormElement>;
|
|
1778
|
+
selectedToken: {
|
|
1779
|
+
symbol: string;
|
|
1780
|
+
logoURI?: string | null;
|
|
1781
|
+
} | null;
|
|
1782
|
+
onTokenClick: () => void;
|
|
1783
|
+
isLoadingToken: boolean;
|
|
1784
|
+
selectTokenLabel: string;
|
|
1785
|
+
chainLabel: string;
|
|
1786
|
+
chainImage?: string;
|
|
1787
|
+
chainDirectionLabel: string;
|
|
1788
|
+
chainDisabledTitle?: string;
|
|
1789
|
+
amountValue: string;
|
|
1790
|
+
onAmountChange: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
|
1791
|
+
amountAriaLabel: string;
|
|
1792
|
+
dollarAmountFormatted: string;
|
|
1793
|
+
availableBalanceFormatted: string;
|
|
1794
|
+
showNoBalanceNotification: boolean;
|
|
1795
|
+
noBalancePrompt: string;
|
|
1796
|
+
goToSwapLabel: string;
|
|
1797
|
+
onGoToSwap: () => void;
|
|
1798
|
+
onPercentageClick: (basisPoints: number) => void;
|
|
1799
|
+
maxLabel: string;
|
|
1800
|
+
showTxStatus: boolean;
|
|
1801
|
+
txStatusLabel: string;
|
|
1802
|
+
isTxProcessing: boolean;
|
|
1803
|
+
isTxSuccess: boolean;
|
|
1804
|
+
isTxError: boolean;
|
|
1805
|
+
txSuccessMessage?: string;
|
|
1806
|
+
txErrorMessage?: string;
|
|
1807
|
+
bytecodeErrorMessage?: string;
|
|
1808
|
+
transactionErrorLabel: string;
|
|
1809
|
+
isQuoteValid: boolean;
|
|
1810
|
+
isFetchingQuote: boolean;
|
|
1811
|
+
quoteDetails: Array<{
|
|
1812
|
+
label: string;
|
|
1813
|
+
value: string;
|
|
1814
|
+
borderBottom?: boolean;
|
|
1815
|
+
}>;
|
|
1816
|
+
submitDisabled: boolean;
|
|
1817
|
+
submitButtonText: string;
|
|
1818
|
+
}
|
|
1819
|
+
declare const EarnDepositFormView: React__default.FC<EarnDepositFormViewProps>;
|
|
1820
|
+
|
|
1821
|
+
interface EarnWithdrawFormViewProps {
|
|
1822
|
+
headerTitle: string;
|
|
1823
|
+
onBack?: () => void;
|
|
1824
|
+
progress: number;
|
|
1825
|
+
pageTitle: string;
|
|
1826
|
+
subtitle: string;
|
|
1827
|
+
onSubmit: React__default.FormEventHandler<HTMLFormElement>;
|
|
1828
|
+
positionBalanceUSD: string;
|
|
1829
|
+
positionBalanceToken: string;
|
|
1830
|
+
strategyIcon?: string;
|
|
1831
|
+
strategyName?: string;
|
|
1832
|
+
selectedToken: {
|
|
1833
|
+
symbol: string;
|
|
1834
|
+
logoURI?: string | null;
|
|
1835
|
+
} | null;
|
|
1836
|
+
onTokenClick: () => void;
|
|
1837
|
+
selectTokenLabel: string;
|
|
1838
|
+
chainLabel: string;
|
|
1839
|
+
chainImage?: string;
|
|
1840
|
+
chainDirectionLabel: string;
|
|
1841
|
+
chainDisabledTitle?: string;
|
|
1842
|
+
amountValue: string;
|
|
1843
|
+
onAmountChange: (e: React__default.ChangeEvent<HTMLInputElement>) => void;
|
|
1844
|
+
amountAriaLabel: string;
|
|
1845
|
+
dollarAmountFormatted: string;
|
|
1846
|
+
onPercentageClick: (basisPoints: number) => void;
|
|
1847
|
+
maxLabel: string;
|
|
1848
|
+
showTxStatus: boolean;
|
|
1849
|
+
txStatusLabel: string;
|
|
1850
|
+
isTxProcessing: boolean;
|
|
1851
|
+
isTxSuccess: boolean;
|
|
1852
|
+
isTxError: boolean;
|
|
1853
|
+
txSuccessMessage?: string;
|
|
1854
|
+
txErrorMessage?: string;
|
|
1855
|
+
bytecodeErrorMessage?: string;
|
|
1856
|
+
transactionErrorLabel: string;
|
|
1857
|
+
isQuoteValid: boolean;
|
|
1858
|
+
isFetchingQuote: boolean;
|
|
1859
|
+
summaryTitle: string;
|
|
1860
|
+
summaryItems: Array<{
|
|
1861
|
+
label: string;
|
|
1862
|
+
value: string;
|
|
1863
|
+
}>;
|
|
1864
|
+
submitDisabled: boolean;
|
|
1865
|
+
submitButtonText: string;
|
|
1866
|
+
}
|
|
1867
|
+
declare const EarnWithdrawFormView: React__default.FC<EarnWithdrawFormViewProps>;
|
|
1868
|
+
|
|
1869
|
+
interface EarnDepositProcessingViewProps {
|
|
1870
|
+
progress: number;
|
|
1871
|
+
title: string;
|
|
1872
|
+
descriptionPrefix: string;
|
|
1873
|
+
activityHistoryText: string;
|
|
1874
|
+
onGoToHistory: () => void;
|
|
1875
|
+
onBack: () => void;
|
|
1876
|
+
strategyName: string;
|
|
1877
|
+
apyLabel: string;
|
|
1878
|
+
apyValue: string;
|
|
1879
|
+
iconSrc?: string;
|
|
1880
|
+
iconAlt: string;
|
|
1881
|
+
amountUSD: string;
|
|
1882
|
+
amountToken: string;
|
|
1883
|
+
transactionSteps: TransactionStep[];
|
|
1884
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
1885
|
+
}
|
|
1886
|
+
declare const EarnDepositProcessingView: React__default.FC<EarnDepositProcessingViewProps>;
|
|
1887
|
+
|
|
1888
|
+
interface EarnDepositSuccessViewProps {
|
|
1889
|
+
title: string;
|
|
1890
|
+
descriptionPrefix: string;
|
|
1891
|
+
formattedAmount: string;
|
|
1892
|
+
tokenSymbol: string;
|
|
1893
|
+
descriptionSuffix: string;
|
|
1894
|
+
descriptionLinkText: string;
|
|
1895
|
+
onClose: () => void;
|
|
1896
|
+
exploreMoreLabel: string;
|
|
1897
|
+
strategyName: string;
|
|
1898
|
+
apyLabel: string;
|
|
1899
|
+
apyValue: string;
|
|
1900
|
+
iconSrc?: string;
|
|
1901
|
+
iconAlt: string;
|
|
1902
|
+
amountUSD: string;
|
|
1903
|
+
amountToken: string;
|
|
1904
|
+
transactionSteps: TransactionStep[];
|
|
1905
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
1906
|
+
}
|
|
1907
|
+
declare const EarnDepositSuccessView: React__default.FC<EarnDepositSuccessViewProps>;
|
|
1908
|
+
|
|
1909
|
+
interface EarnDepositWarningViewProps {
|
|
1910
|
+
progress: number;
|
|
1911
|
+
title: string;
|
|
1912
|
+
description: string;
|
|
1913
|
+
backTitle: string;
|
|
1914
|
+
onBack: () => void;
|
|
1915
|
+
cancelLabel: string;
|
|
1916
|
+
onCancel: () => void;
|
|
1917
|
+
retryLabel: string;
|
|
1918
|
+
onRetry: () => void;
|
|
1919
|
+
strategyName: string;
|
|
1920
|
+
apyLabel: string;
|
|
1921
|
+
apyValue: string;
|
|
1922
|
+
iconSrc?: string;
|
|
1923
|
+
iconAlt: string;
|
|
1924
|
+
amountUSD: string;
|
|
1925
|
+
amountToken: string;
|
|
1926
|
+
transactionSteps: TransactionStep[];
|
|
1927
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
1928
|
+
}
|
|
1929
|
+
declare const EarnDepositWarningView: React__default.FC<EarnDepositWarningViewProps>;
|
|
1930
|
+
|
|
1931
|
+
interface EarnDepositFailedViewProps {
|
|
1932
|
+
progress: number;
|
|
1933
|
+
title: string;
|
|
1934
|
+
description: string;
|
|
1935
|
+
backTitle: string;
|
|
1936
|
+
onBack: () => void;
|
|
1937
|
+
viewExplorerLabel: string;
|
|
1938
|
+
onViewExplorer: () => void;
|
|
1939
|
+
viewExplorerDisabled: boolean;
|
|
1940
|
+
retryLabel: string;
|
|
1941
|
+
onRetry: () => void;
|
|
1942
|
+
strategyName: string;
|
|
1943
|
+
apyLabel: string;
|
|
1944
|
+
apyValue: string;
|
|
1945
|
+
iconSrc?: string;
|
|
1946
|
+
iconAlt: string;
|
|
1947
|
+
iconGradient: string;
|
|
1948
|
+
amountUSD: string;
|
|
1949
|
+
amountToken: string;
|
|
1950
|
+
transactionSteps: TransactionStep[];
|
|
1951
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
1952
|
+
}
|
|
1953
|
+
declare const EarnDepositFailedView: React__default.FC<EarnDepositFailedViewProps>;
|
|
1954
|
+
|
|
1955
|
+
interface EarnWithdrawProcessingViewProps {
|
|
1956
|
+
progress: number;
|
|
1957
|
+
title: string;
|
|
1958
|
+
descriptionPrefix: string;
|
|
1959
|
+
activityHistoryText: string;
|
|
1960
|
+
descriptionSuffix?: string;
|
|
1961
|
+
onGoToHistory: () => void;
|
|
1962
|
+
onBack: () => void;
|
|
1963
|
+
strategyName: string;
|
|
1964
|
+
apyLabel: string;
|
|
1965
|
+
apyValue: string;
|
|
1966
|
+
iconSrc?: string;
|
|
1967
|
+
iconAlt: string;
|
|
1968
|
+
amountUSD: string;
|
|
1969
|
+
amountToken: string;
|
|
1970
|
+
transactionSteps: TransactionStep[];
|
|
1971
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
1972
|
+
}
|
|
1973
|
+
declare const EarnWithdrawProcessingView: React__default.FC<EarnWithdrawProcessingViewProps>;
|
|
1974
|
+
|
|
1975
|
+
interface EarnWithdrawSuccessViewProps {
|
|
1976
|
+
title: string;
|
|
1977
|
+
descriptionPrefix: string;
|
|
1978
|
+
formattedAmount: string;
|
|
1979
|
+
tokenSymbol: string;
|
|
1980
|
+
descriptionSuffix: string;
|
|
1981
|
+
descriptionLinkText: string;
|
|
1982
|
+
onClose: () => void;
|
|
1983
|
+
exploreMoreLabel: string;
|
|
1984
|
+
strategyName: string;
|
|
1985
|
+
apyLabel: string;
|
|
1986
|
+
apyValue: string;
|
|
1987
|
+
iconSrc?: string;
|
|
1988
|
+
iconAlt: string;
|
|
1989
|
+
amountUSD: string;
|
|
1990
|
+
amountToken: string;
|
|
1991
|
+
transactionSteps: TransactionStep[];
|
|
1992
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
1993
|
+
}
|
|
1994
|
+
declare const EarnWithdrawSuccessView: React__default.FC<EarnWithdrawSuccessViewProps>;
|
|
1995
|
+
|
|
1996
|
+
interface EarnWithdrawWarningViewProps {
|
|
1997
|
+
progress: number;
|
|
1998
|
+
title: string;
|
|
1999
|
+
description: string;
|
|
2000
|
+
backTitle: string;
|
|
2001
|
+
onBack: () => void;
|
|
2002
|
+
cancelLabel: string;
|
|
2003
|
+
onCancel: () => void;
|
|
2004
|
+
retryLabel: string;
|
|
2005
|
+
onRetry: () => void;
|
|
2006
|
+
strategyName: string;
|
|
2007
|
+
apyLabel: string;
|
|
2008
|
+
apyValue: string;
|
|
2009
|
+
iconSrc?: string;
|
|
2010
|
+
iconAlt: string;
|
|
2011
|
+
amountUSD: string;
|
|
2012
|
+
amountToken: string;
|
|
2013
|
+
transactionSteps: TransactionStep[];
|
|
2014
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
2015
|
+
}
|
|
2016
|
+
declare const EarnWithdrawWarningView: React__default.FC<EarnWithdrawWarningViewProps>;
|
|
2017
|
+
|
|
2018
|
+
interface EarnWithdrawFailedViewProps {
|
|
2019
|
+
progress: number;
|
|
2020
|
+
title: string;
|
|
2021
|
+
description: string;
|
|
2022
|
+
backTitle: string;
|
|
2023
|
+
onBack: () => void;
|
|
2024
|
+
viewExplorerLabel: string;
|
|
2025
|
+
onViewExplorer: () => void;
|
|
2026
|
+
viewExplorerDisabled: boolean;
|
|
2027
|
+
retryLabel: string;
|
|
2028
|
+
onRetry: () => void;
|
|
2029
|
+
strategyName: string;
|
|
2030
|
+
apyLabel: string;
|
|
2031
|
+
apyValue: string;
|
|
2032
|
+
iconSrc?: string;
|
|
2033
|
+
iconAlt: string;
|
|
2034
|
+
iconGradient: string;
|
|
2035
|
+
amountUSD: string;
|
|
2036
|
+
amountToken: string;
|
|
2037
|
+
transactionSteps: TransactionStep[];
|
|
2038
|
+
processingDetailsLabels: TransactionProcessingDetailsLabels;
|
|
2039
|
+
}
|
|
2040
|
+
declare const EarnWithdrawFailedView: React__default.FC<EarnWithdrawFailedViewProps>;
|
|
2041
|
+
|
|
1301
2042
|
type SwapValidationCode = 'NO_WALLET' | 'NO_CHAIN' | 'NO_TOKEN' | 'INVALID_TOKEN' | 'NO_AMOUNT' | 'AMOUNT_BELOW_MINIMUM' | 'INSUFFICIENT_BALANCE' | 'INVALID_AMOUNT' | 'VALID_SWAP';
|
|
1302
2043
|
|
|
1303
2044
|
interface DeframeThemeColors {
|
|
@@ -1320,4 +2061,4 @@ interface DeframeTheme {
|
|
|
1320
2061
|
colors?: DeframeThemeColors;
|
|
1321
2062
|
}
|
|
1322
2063
|
|
|
1323
|
-
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, 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, 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, SwapAdvancedSettingsView, type SwapAdvancedSettingsViewProps, SwapAmountInputView, type SwapAmountInputViewProps, type SwapCardLabels, SwapCrossChainProcessingView, type SwapCrossChainProcessingViewProps, type SwapFormLabels, SwapFormView, type SwapFormViewProps, SwapFromCardView, type SwapFromCardViewProps, SwapNetworkSelectorView, type SwapNetworkSelectorViewProps, SwapOutputAmountView, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapQuoteBlockchainCostsView, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, SwapQuoteErrorsView, type SwapQuoteErrorsViewProps, SwapQuoteHeaderView, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSlippageToleranceButtonsView, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapToCardView, type SwapToCardViewProps, SwapTokenSelectorView, type SwapTokenSelectorViewProps, SwapTransactionFailedView, type SwapTransactionFailedViewProps, type SwapValidationCode, 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, WalletConnectPanel, type WalletConnectPanelProps, WalletItem, type WalletItemProps, ConnectWalletList as WalletList, WalletListContainer, type WalletListContainerProps, type WalletOption };
|
|
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, SwapNetworkSelectorView, type SwapNetworkSelectorViewProps, SwapOutputAmountView, type SwapOutputAmountViewProps, SwapProcessingView, type SwapProcessingViewProps, SwapProcessingViewSimple, SwapQuoteBlockchainCostsView, type SwapQuoteBlockchainCostsViewProps, type SwapQuoteDetailsLabels, SwapQuoteDetailsView, type SwapQuoteDetailsViewProps, SwapQuoteErrorsView, type SwapQuoteErrorsViewProps, SwapQuoteHeaderView, type SwapQuoteHeaderViewProps, SwapSignatureWarningView, type SwapSignatureWarningViewProps, SwapSlippageToleranceButtonsView, type SwapSlippageToleranceButtonsViewProps, type SwapSuccessLabels, SwapSuccessView, type SwapSuccessViewProps, SwapSuccessViewSimple, SwapToCardView, type SwapToCardViewProps, SwapTokenSelectorView, type SwapTokenSelectorViewProps, SwapTransactionFailedView, type SwapTransactionFailedViewProps, SwapTransactionFailedViewSimple, type SwapValidationCode, SwapWidgetFallbackView, type SwapWidgetFallbackViewProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, TertiaryButton, Text, TextAccent, type TextAccentProps, TextBody, type TextBodyProps, TextHeading, type TextHeadingProps, Title, type TokenData, TokenWithChainBadge, type TokenWithChainBadgeProps, TransactionProcessingDetails, type TransactionProcessingDetailsLabels, type TransactionProcessingDetailsProps, TransactionScreen, TransactionScreenIcon, type TransactionScreenIconProps, TransactionScreenInvestmentCard, type TransactionScreenInvestmentCardProps, type TransactionScreenProps, type TransactionStep, type TransactionStepStatus, type WalletBalanceItem, WalletBalances, type WalletBalancesProps, WalletConnectPanel, type WalletConnectPanelProps, WalletItem, type WalletItemProps, ConnectWalletList as WalletList, WalletListContainer, type WalletListContainerProps, type WalletOption };
|