@deframe-sdk/components 0.1.45 → 0.1.47
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 +14 -2
- package/dist/index.d.ts +14 -2
- package/dist/index.js +142 -25
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +141 -26
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -8704,19 +8704,20 @@ function getChainName(asset) {
|
|
|
8704
8704
|
if (isAssetAmount(asset)) return (_b = (_a = asset.chain) == null ? void 0 : _a.name) != null ? _b : "";
|
|
8705
8705
|
return "";
|
|
8706
8706
|
}
|
|
8707
|
-
function historyResolveLabel(item) {
|
|
8708
|
-
var _a, _b;
|
|
8707
|
+
function historyResolveLabel(item, labels) {
|
|
8708
|
+
var _a, _b, _c;
|
|
8709
8709
|
const assetIn = (_a = item.amounts) == null ? void 0 : _a.assetIn;
|
|
8710
8710
|
const assetOut = (_b = item.amounts) == null ? void 0 : _b.assetOut;
|
|
8711
8711
|
const fromSymbol = getAssetSymbol(assetIn);
|
|
8712
8712
|
const toSymbol = getAssetSymbol(assetOut);
|
|
8713
8713
|
const fromChain = getChainName(assetIn);
|
|
8714
8714
|
const toChain = getChainName(assetOut);
|
|
8715
|
+
const swapLabel = (_c = labels == null ? void 0 : labels.swap) != null ? _c : "Swap";
|
|
8715
8716
|
const labelMap = {
|
|
8716
|
-
SAMECHAIN_SWAP: () =>
|
|
8717
|
+
SAMECHAIN_SWAP: () => `${swapLabel} ${fromSymbol} \u2192 ${toSymbol}`,
|
|
8717
8718
|
CROSSCHAIN_SWAP: () => {
|
|
8718
8719
|
const route = fromChain && toChain ? ` (${fromChain} \u2192 ${toChain})` : "";
|
|
8719
|
-
return
|
|
8720
|
+
return `${swapLabel} ${fromSymbol} \u2192 ${toSymbol}${route}`;
|
|
8720
8721
|
},
|
|
8721
8722
|
TRANSFER_IN: () => `Recebimento ${toSymbol}`,
|
|
8722
8723
|
TRANSFER_OUT: () => `Envio ${fromSymbol}`,
|
|
@@ -8743,7 +8744,7 @@ function historyResolveAmounts(item) {
|
|
|
8743
8744
|
if (!displayAsset) return { primary: "\u2014", secondary: "" };
|
|
8744
8745
|
if (isAssetAmount(displayAsset)) {
|
|
8745
8746
|
const primary = `${displayAsset.amountHumanized} ${displayAsset.symbol}`;
|
|
8746
|
-
const secondary = displayAsset.
|
|
8747
|
+
const secondary = displayAsset.amountInFiat ? `~${displayAsset.amountInFiat}` : "";
|
|
8747
8748
|
return { primary, secondary };
|
|
8748
8749
|
}
|
|
8749
8750
|
if (isFiatAmount(displayAsset)) {
|
|
@@ -8803,8 +8804,8 @@ function historyResolveSubtitle(item) {
|
|
|
8803
8804
|
}
|
|
8804
8805
|
return fromChain || toChain || "";
|
|
8805
8806
|
}
|
|
8806
|
-
function historyResolveSearchableText(item) {
|
|
8807
|
-
const label = historyResolveLabel(item);
|
|
8807
|
+
function historyResolveSearchableText(item, labels) {
|
|
8808
|
+
const label = historyResolveLabel(item, labels);
|
|
8808
8809
|
const { primary, secondary } = historyResolveAmounts(item);
|
|
8809
8810
|
const date = historyFormatDate(item.createdAt);
|
|
8810
8811
|
const status = item.status;
|
|
@@ -8864,8 +8865,8 @@ var AmountDisplay = ({ amount, usdAmount }) => {
|
|
|
8864
8865
|
usdAmount ? /* @__PURE__ */ jsx(Label, { variant: "secondary", className: "whitespace-nowrap", children: usdAmount }) : null
|
|
8865
8866
|
] });
|
|
8866
8867
|
};
|
|
8867
|
-
var HistoryListItem = ({ item, onClick, className, statusLabel, statusTitle }) => {
|
|
8868
|
-
const label = historyResolveLabel(item);
|
|
8868
|
+
var HistoryListItem = ({ item, onClick, className, statusLabel, statusTitle, labels }) => {
|
|
8869
|
+
const label = historyResolveLabel(item, labels);
|
|
8869
8870
|
const subtitle = historyResolveSubtitle(item);
|
|
8870
8871
|
const { primary, secondary } = historyResolveAmounts(item);
|
|
8871
8872
|
const iconUrl = historyResolveIconUrl(item);
|
|
@@ -9038,8 +9039,8 @@ function StatusBadge2({ status, className }) {
|
|
|
9038
9039
|
}
|
|
9039
9040
|
);
|
|
9040
9041
|
}
|
|
9041
|
-
var HistoryListItemSimple = ({ item }) => {
|
|
9042
|
-
const label = historyResolveLabel(item);
|
|
9042
|
+
var HistoryListItemSimple = ({ item, labels }) => {
|
|
9043
|
+
const label = historyResolveLabel(item, labels);
|
|
9043
9044
|
const { primary, secondary } = historyResolveAmounts(item);
|
|
9044
9045
|
const date = historyFormatDate(item.createdAt);
|
|
9045
9046
|
return /* @__PURE__ */ jsxs(
|
|
@@ -10474,7 +10475,8 @@ var HistoryListView = ({
|
|
|
10474
10475
|
onLoadMore,
|
|
10475
10476
|
loadMoreLabel,
|
|
10476
10477
|
onItemClick,
|
|
10477
|
-
itemClassName
|
|
10478
|
+
itemClassName,
|
|
10479
|
+
labels
|
|
10478
10480
|
}) => {
|
|
10479
10481
|
if (groups.length === 0) {
|
|
10480
10482
|
return null;
|
|
@@ -10487,7 +10489,8 @@ var HistoryListView = ({
|
|
|
10487
10489
|
{
|
|
10488
10490
|
item,
|
|
10489
10491
|
onClick: onItemClick ? () => onItemClick(item.id) : void 0,
|
|
10490
|
-
className: itemClassName
|
|
10492
|
+
className: itemClassName,
|
|
10493
|
+
labels
|
|
10491
10494
|
},
|
|
10492
10495
|
item.id
|
|
10493
10496
|
))
|
|
@@ -11445,7 +11448,7 @@ var EarnTokenSelectorSimpleView = ({
|
|
|
11445
11448
|
HiChevronDown,
|
|
11446
11449
|
{
|
|
11447
11450
|
"data-test-id": "earn-token-selector-simple-view-chevron",
|
|
11448
|
-
className: "flex-shrink-0 w-[14px] h-[14px] text-[color:var(--deframe-widget-color-text-secondary)]",
|
|
11451
|
+
className: "flex-shrink-0 ml-auto w-[14px] h-[14px] text-[color:var(--deframe-widget-color-text-secondary)]",
|
|
11449
11452
|
"aria-hidden": "true"
|
|
11450
11453
|
}
|
|
11451
11454
|
)
|
|
@@ -11462,7 +11465,7 @@ var EarnTokenSelectorSimpleView = ({
|
|
|
11462
11465
|
HiChevronDown,
|
|
11463
11466
|
{
|
|
11464
11467
|
"data-test-id": "earn-token-selector-simple-view-placeholder-chevron",
|
|
11465
|
-
className: "flex-shrink-0 w-[14px] h-[14px] text-[color:var(--deframe-widget-color-text-secondary)]",
|
|
11468
|
+
className: "flex-shrink-0 ml-auto w-[14px] h-[14px] text-[color:var(--deframe-widget-color-text-secondary)]",
|
|
11466
11469
|
"aria-hidden": "true"
|
|
11467
11470
|
}
|
|
11468
11471
|
)
|
|
@@ -11610,6 +11613,60 @@ var EarnPercentageButtonsSimpleView = ({
|
|
|
11610
11613
|
}
|
|
11611
11614
|
);
|
|
11612
11615
|
};
|
|
11616
|
+
var EarnNoBalanceNotificationSimpleView = ({
|
|
11617
|
+
prompt,
|
|
11618
|
+
actionLabel,
|
|
11619
|
+
onAction
|
|
11620
|
+
}) => /* @__PURE__ */ jsxs(
|
|
11621
|
+
"div",
|
|
11622
|
+
{
|
|
11623
|
+
"data-test-id": "earn-no-balance-notification-simple",
|
|
11624
|
+
className: [
|
|
11625
|
+
"bg-[color-mix(in_srgb,var(--deframe-widget-color-state-warning)_16%,transparent)]",
|
|
11626
|
+
"border border-[var(--deframe-widget-color-state-warning)]",
|
|
11627
|
+
"rounded-[var(--deframe-widget-size-radius-sm)]",
|
|
11628
|
+
"px-[var(--deframe-widget-size-padding-x-md)] py-[var(--deframe-widget-size-padding-y-md)]",
|
|
11629
|
+
"flex flex-col gap-[var(--deframe-widget-size-gap-md)]"
|
|
11630
|
+
].join(" "),
|
|
11631
|
+
children: [
|
|
11632
|
+
/* @__PURE__ */ jsxs("div", { className: "flex items-start gap-[var(--deframe-widget-size-gap-sm)]", children: [
|
|
11633
|
+
/* @__PURE__ */ jsx(
|
|
11634
|
+
"svg",
|
|
11635
|
+
{
|
|
11636
|
+
className: "w-5 h-5 text-[color:var(--deframe-widget-color-state-warning)] flex-shrink-0 mt-0.5",
|
|
11637
|
+
fill: "currentColor",
|
|
11638
|
+
viewBox: "0 0 20 20",
|
|
11639
|
+
"aria-hidden": "true",
|
|
11640
|
+
children: /* @__PURE__ */ jsx(
|
|
11641
|
+
"path",
|
|
11642
|
+
{
|
|
11643
|
+
fillRule: "evenodd",
|
|
11644
|
+
d: "M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z",
|
|
11645
|
+
clipRule: "evenodd"
|
|
11646
|
+
}
|
|
11647
|
+
)
|
|
11648
|
+
}
|
|
11649
|
+
),
|
|
11650
|
+
/* @__PURE__ */ jsx("div", { className: "flex-1", children: /* @__PURE__ */ jsx(TextBody, { variant: "text-small", children: prompt }) })
|
|
11651
|
+
] }),
|
|
11652
|
+
/* @__PURE__ */ jsx(
|
|
11653
|
+
PrimaryButton,
|
|
11654
|
+
{
|
|
11655
|
+
type: "button",
|
|
11656
|
+
onClick: onAction,
|
|
11657
|
+
className: [
|
|
11658
|
+
"w-full h-12 rounded-[var(--deframe-widget-size-radius-sm)]",
|
|
11659
|
+
"border-none",
|
|
11660
|
+
"text-[15px] text-[color:var(--deframe-widget-color-text-primary-dark)]",
|
|
11661
|
+
"outline-none",
|
|
11662
|
+
"transition-[background,color] duration-200"
|
|
11663
|
+
].join(" "),
|
|
11664
|
+
children: actionLabel
|
|
11665
|
+
}
|
|
11666
|
+
)
|
|
11667
|
+
]
|
|
11668
|
+
}
|
|
11669
|
+
);
|
|
11613
11670
|
var variantWrapperClasses = {
|
|
11614
11671
|
error: "bg-[color:color-mix(in_srgb,var(--deframe-widget-color-state-error)_16%,transparent)] border-[color:color-mix(in_srgb,var(--deframe-widget-color-state-error)_32%,transparent)]",
|
|
11615
11672
|
warning: "bg-[color:color-mix(in_srgb,var(--deframe-widget-color-state-warning)_16%,transparent)] border-[color:color-mix(in_srgb,var(--deframe-widget-color-state-warning)_32%,transparent)]",
|
|
@@ -11895,7 +11952,7 @@ var EarnDepositFormViewSimple = ({
|
|
|
11895
11952
|
}
|
|
11896
11953
|
) }),
|
|
11897
11954
|
showNoBalanceNotification ? /* @__PURE__ */ jsx("div", { className: "mt-[var(--deframe-widget-size-gap-sm)]", children: /* @__PURE__ */ jsx(
|
|
11898
|
-
|
|
11955
|
+
EarnNoBalanceNotificationSimpleView,
|
|
11899
11956
|
{
|
|
11900
11957
|
prompt: noBalancePrompt,
|
|
11901
11958
|
actionLabel: goToSwapLabel,
|
|
@@ -12751,7 +12808,7 @@ function EarnFeedbackOverlaySimpleView({
|
|
|
12751
12808
|
{
|
|
12752
12809
|
"data-test-id": "earn-feedback-overlay",
|
|
12753
12810
|
"data-slot": "earn-feedback-overlay",
|
|
12754
|
-
initial:
|
|
12811
|
+
initial: false,
|
|
12755
12812
|
animate: { opacity: 1 },
|
|
12756
12813
|
exit: { opacity: 0 },
|
|
12757
12814
|
transition: { duration: 0.2 },
|
|
@@ -14087,7 +14144,7 @@ var OnchainDepositFormSimpleView = ({
|
|
|
14087
14144
|
selectTokenLabel: "SELECIONE AQUI",
|
|
14088
14145
|
chainLabel: (_a = selectedChain == null ? void 0 : selectedChain.name) != null ? _a : "",
|
|
14089
14146
|
chainImage: selectedChain == null ? void 0 : selectedChain.iconUrl,
|
|
14090
|
-
className: "w-full
|
|
14147
|
+
className: "w-full"
|
|
14091
14148
|
}
|
|
14092
14149
|
),
|
|
14093
14150
|
!hasToken && /* @__PURE__ */ jsx(
|
|
@@ -15290,6 +15347,37 @@ function OnchainWithdrawSuccessView({
|
|
|
15290
15347
|
}
|
|
15291
15348
|
);
|
|
15292
15349
|
}
|
|
15350
|
+
var OnchainWithdrawSuccessSimpleView = ({
|
|
15351
|
+
onClose,
|
|
15352
|
+
tokenSymbol,
|
|
15353
|
+
tokenLogoURI,
|
|
15354
|
+
chainName,
|
|
15355
|
+
chainIconUrl,
|
|
15356
|
+
formattedAmount,
|
|
15357
|
+
labels
|
|
15358
|
+
}) => {
|
|
15359
|
+
React6.useEffect(() => {
|
|
15360
|
+
if (!onClose) return;
|
|
15361
|
+
const timer = setTimeout(onClose, 5e3);
|
|
15362
|
+
return () => clearTimeout(timer);
|
|
15363
|
+
}, [onClose]);
|
|
15364
|
+
return /* @__PURE__ */ jsx("div", { "data-test-id": "onchain-withdraw-success-simple-view", children: /* @__PURE__ */ jsx(
|
|
15365
|
+
EarnFeedbackOverlaySimpleView,
|
|
15366
|
+
{
|
|
15367
|
+
variant: "success",
|
|
15368
|
+
title: labels.title,
|
|
15369
|
+
subtitle: labels.subtitle,
|
|
15370
|
+
formData: {
|
|
15371
|
+
headerTitle: labels.title,
|
|
15372
|
+
tokenSymbol,
|
|
15373
|
+
tokenLogoURI,
|
|
15374
|
+
chainLabel: chainName,
|
|
15375
|
+
chainImage: chainIconUrl,
|
|
15376
|
+
amount: formattedAmount
|
|
15377
|
+
}
|
|
15378
|
+
}
|
|
15379
|
+
) });
|
|
15380
|
+
};
|
|
15293
15381
|
function WithdrawFailedIcon() {
|
|
15294
15382
|
return /* @__PURE__ */ jsx(
|
|
15295
15383
|
"div",
|
|
@@ -15438,6 +15526,30 @@ function OnchainWithdrawFailedView({
|
|
|
15438
15526
|
}
|
|
15439
15527
|
);
|
|
15440
15528
|
}
|
|
15529
|
+
var OnchainWithdrawFailedSimpleView = ({
|
|
15530
|
+
tokenSymbol,
|
|
15531
|
+
tokenLogoURI,
|
|
15532
|
+
chainName,
|
|
15533
|
+
chainIconUrl,
|
|
15534
|
+
formattedAmount,
|
|
15535
|
+
errorMessage,
|
|
15536
|
+
labels
|
|
15537
|
+
}) => /* @__PURE__ */ jsx("div", { "data-test-id": "onchain-withdraw-failed-simple-view", children: /* @__PURE__ */ jsx(
|
|
15538
|
+
EarnFeedbackOverlaySimpleView,
|
|
15539
|
+
{
|
|
15540
|
+
variant: "error",
|
|
15541
|
+
title: labels.title,
|
|
15542
|
+
subtitle: errorMessage != null ? errorMessage : labels.defaultErrorMessage,
|
|
15543
|
+
formData: {
|
|
15544
|
+
headerTitle: labels.title,
|
|
15545
|
+
tokenSymbol,
|
|
15546
|
+
tokenLogoURI,
|
|
15547
|
+
chainLabel: chainName,
|
|
15548
|
+
chainImage: chainIconUrl,
|
|
15549
|
+
amount: formattedAmount
|
|
15550
|
+
}
|
|
15551
|
+
}
|
|
15552
|
+
) });
|
|
15441
15553
|
var OnchainWithdrawProcessingSimpleView = ({
|
|
15442
15554
|
onClose: _onClose,
|
|
15443
15555
|
formData
|
|
@@ -18067,7 +18179,7 @@ var DashboardPortfolioViewSimple = ({
|
|
|
18067
18179
|
},
|
|
18068
18180
|
"value"
|
|
18069
18181
|
) }),
|
|
18070
|
-
/* @__PURE__ */ jsx("p", { "data-test-id": "stat-card-description", className: descriptionClasses, children: "Soma do saldo por token (em
|
|
18182
|
+
/* @__PURE__ */ jsx("p", { "data-test-id": "stat-card-description", className: descriptionClasses, children: "Soma do saldo por token (em BRL)." })
|
|
18071
18183
|
] }),
|
|
18072
18184
|
assetCount != null && /* @__PURE__ */ jsxs("article", { className: twMerge(cardClasses2, "self-stretch min-w-[160px]"), children: [
|
|
18073
18185
|
/* @__PURE__ */ jsx("p", { "data-test-id": "stat-card-label", className: labelClasses, children: "Ativos" }),
|
|
@@ -18484,7 +18596,8 @@ var DashboardRecentTransactionsView = ({
|
|
|
18484
18596
|
isEmpty,
|
|
18485
18597
|
transactions,
|
|
18486
18598
|
onViewAllClick,
|
|
18487
|
-
onItemClick
|
|
18599
|
+
onItemClick,
|
|
18600
|
+
labels
|
|
18488
18601
|
}) => {
|
|
18489
18602
|
return /* @__PURE__ */ jsx(DashboardCard, { className: "p-6 bg-[var(--deframe-widget-color-bg-subtle)]", children: /* @__PURE__ */ jsxs("div", { className: "flex flex-col", children: [
|
|
18490
18603
|
/* @__PURE__ */ jsxs("div", { className: "flex justify-between items-start", children: [
|
|
@@ -18503,7 +18616,8 @@ var DashboardRecentTransactionsView = ({
|
|
|
18503
18616
|
{
|
|
18504
18617
|
item,
|
|
18505
18618
|
onClick: onItemClick ? () => onItemClick(item.id) : void 0,
|
|
18506
|
-
className: "p-2 mt-4 bg-[var(--deframe-widget-color-bg-raised)] cursor-pointer"
|
|
18619
|
+
className: "p-2 mt-4 bg-[var(--deframe-widget-color-bg-raised)] cursor-pointer",
|
|
18620
|
+
labels
|
|
18507
18621
|
},
|
|
18508
18622
|
item.id
|
|
18509
18623
|
)) })
|
|
@@ -18513,14 +18627,15 @@ var DashboardRecentTransactionsViewSimple = ({
|
|
|
18513
18627
|
isLoading,
|
|
18514
18628
|
isEmpty,
|
|
18515
18629
|
transactions,
|
|
18516
|
-
onClose
|
|
18630
|
+
onClose,
|
|
18631
|
+
labels
|
|
18517
18632
|
}) => {
|
|
18518
18633
|
const [query, setQuery] = useState("");
|
|
18519
18634
|
const filtered = useMemo(() => {
|
|
18520
18635
|
const q = query.trim().toLowerCase();
|
|
18521
18636
|
if (!q) return transactions;
|
|
18522
|
-
return transactions.filter((item) => historyResolveSearchableText(item).includes(q));
|
|
18523
|
-
}, [transactions, query]);
|
|
18637
|
+
return transactions.filter((item) => historyResolveSearchableText(item, labels).includes(q));
|
|
18638
|
+
}, [transactions, query, labels]);
|
|
18524
18639
|
return /* @__PURE__ */ jsxs(
|
|
18525
18640
|
"div",
|
|
18526
18641
|
{
|
|
@@ -18660,7 +18775,7 @@ var DashboardRecentTransactionsViewSimple = ({
|
|
|
18660
18775
|
className: "py-[var(--deframe-widget-size-padding-y-xl)] text-center text-[13px] text-[color:var(--deframe-widget-color-text-tertiary)]",
|
|
18661
18776
|
children: "Nenhuma transa\xE7\xE3o encontrada"
|
|
18662
18777
|
}
|
|
18663
|
-
) : filtered.map((item) => /* @__PURE__ */ jsx(HistoryListItemSimple, { item }, item.id))
|
|
18778
|
+
) : filtered.map((item) => /* @__PURE__ */ jsx(HistoryListItemSimple, { item, labels }, item.id))
|
|
18664
18779
|
}
|
|
18665
18780
|
)
|
|
18666
18781
|
]
|
|
@@ -18796,6 +18911,6 @@ var DashboardViewSimple = ({
|
|
|
18796
18911
|
);
|
|
18797
18912
|
};
|
|
18798
18913
|
|
|
18799
|
-
export { ActionButton, ActionSheet, AddressDisplay, ApyRange, BackButton, BackgroundContainer, BannerNotification, Chip, ChipGroup, ChoiceCard, ChooseANetworkView, ChooseAStrategyActionsheetView, ChooseAnAssetSwapView, ChooseNetworkAndAssetViewSimple, CloseButton_default as CloseButton, CollapsibleInfoRow, CollapsibleSection, ConfirmSwapButtonView, ConfirmSwapButtonViewSimple, ConnectWalletList, Currency, DashboardBalancesBreakdown, DashboardCard, DashboardInvestmentOpportunitiesView, DashboardPortfolioView, DashboardPortfolioViewSimple, DashboardRecentTransactionsView, DashboardRecentTransactionsViewSimple, DashboardStrategiesListView, DashboardTokenListView, DashboardTokensView, DashboardTokensViewSimple, DashboardTransactionsPlaceholder, DashboardView, DashboardViewSimple, DeframeComponentsProvider, DepositSuccessIcon, DetailsHeader, EarnAmountInputView, EarnBalanceCard, EarnBytecodeErrorView, EarnDepositFailedSimpleView, EarnDepositFailedView, EarnDepositFormView, EarnDepositFormViewSimple, EarnDepositProcessingSimpleView, EarnDepositProcessingView, EarnDepositSuccessSimpleView, EarnDepositSuccessView, EarnDepositWarningSimpleView, EarnDepositWarningView, EarnDesktopView, EarnDesktopViewSimple, EarnExploreGridView, EarnFlowSkeletonSimple, EarnInvestedSectionView, EarnInvestmentDetailsView, EarnInvestmentSummaryView, EarnNoBalanceNotificationView, EarnOverviewView, EarnPercentageButtonsView, EarnPositionCardView, EarnRecentTransactionsView, EarnTokenSelectorView, EarnTxStatusCardView, EarnWithdrawFailedSimpleView, EarnWithdrawFailedView, EarnWithdrawFormView, EarnWithdrawFormViewSimple, EarnWithdrawProcessingSimpleView, EarnWithdrawProcessingView, EarnWithdrawSuccessSimpleView, EarnWithdrawSuccessView, EarnWithdrawTokenSelectorView, EarnWithdrawWarningSimpleView, EarnWithdrawWarningView, Currency as Fiat, FlexCol, FlexRow, GroupedStrategyListView, HighRiskBadge, HistoryDepositDetailsView, HistoryListItem, HistoryListItemSimple, HistoryListSkeleton, HistoryListView, HistorySwapDetailsView, HistoryTabEmpty, HistoryWithdrawDetailsView, InfoLabel, InfoRow, InfoRowIconLabel, InfoRowIconValue, InfoRowWithIcon, InfoValue, Input2 as Input, InputField, InputLabel, Input as InputRoot, InvestmentCrossChainProcessingView, KYCActionRow, KYCAddressPage, KYCBasicDataPage, KYCChecklistCard, KYCChecklistItem, KYCDataCard, KYCDocumentPage, KYCEditPage, KYCFieldMessage, KYCFormPage, KYCInfoRow, KYCIntroPage, KYCLoadingPage, KYCMessageBanner, KYCPageHeader, KYCPageSection, KYCPageShell, KYCReviewPage, KYCReviewPageSkeleton, KYCStatusItemCard, KYCStatusPage, KYCStatusPanel, KYCStepIndicator, KycLoadingView, KycRequiredView, Label, Link, ListItem, ListItemContent, ListItemLeftSide, ListItemRightSide, LoadingDots, LowRiskBadge, MediumRiskBadge, Navbar, OffchainMethodSelectionView, OfframpFailedSimpleView, OfframpInputFormSimpleView, OfframpInputFormView, OfframpProcessingSimpleView, OfframpProcessingView, OfframpSuccessSimpleView, OfframpSuccessView, OnchainDepositFormSimpleView, OnchainDepositFormView, OnchainDepositSuccessSimpleView, OnchainDepositSuccessView, OnchainWithdrawChainSelectorView, OnchainWithdrawFailedView, OnchainWithdrawFormSimpleView, OnchainWithdrawFormView, OnchainWithdrawProcessingSimpleView, OnchainWithdrawSignatureWarningSimpleView, OnchainWithdrawSignatureWarningView, OnchainWithdrawSuccessView, OnrampFormSimpleView, OnrampFormView, OnrampPixcodeView, OnrampSuccessSimpleView, OnrampSuccessView, PercentageButton, PrimaryButton, ProcessingBadge, ProgressIndicator, ScrollableContent, SearchEmptyState, SearchInput, SecondaryButton, SectionCard, Select, SelectContent, SelectItem, SelectTrigger, Skeleton, StepDisplay, StepStatusIcon, StepStatusText, StrategyDetailsView, StrategyGridCard, SummaryDetails, SummaryDetailsCryptoControlV2, SwapAdvancedSettingsView, SwapAmountInputView, SwapCrossChainProcessingView, SwapFormView, SwapFormViewSimple, SwapFromCardView, SwapFromCardViewSimple, SwapHistoryView, SwapHistoryViewSimple, SwapProcessingView, SwapProcessingViewSimple, SwapQuoteDetailsView, SwapSignatureWarningView, SwapSignatureWarningViewSimple, SwapSuccessView, SwapSuccessViewSimple, SwapToCardView, SwapToCardViewSimple, SwapTransactionFailedView, SwapTransactionFailedViewSimple, SwapWidgetFallbackView, Tabs, TabsContent, TabsList, TabsTrigger, TertiaryButton, Text_default as Text, TextAccent, TextBody, TextHeading, Title, TokenWithChainBadge, TransactionProcessingDetails, TransactionScreen, TransactionScreenIcon, TransactionScreenInvestmentCard, WalletBalances, WalletConnectPanel, WalletItem, ConnectWalletList as WalletList, WalletListContainer, WithdrawFailedIcon, WithdrawSuccessIcon, isDustValue, truncateAddress };
|
|
18914
|
+
export { ActionButton, ActionSheet, AddressDisplay, ApyRange, BackButton, BackgroundContainer, BannerNotification, Chip, ChipGroup, ChoiceCard, ChooseANetworkView, ChooseAStrategyActionsheetView, ChooseAnAssetSwapView, ChooseNetworkAndAssetViewSimple, CloseButton_default as CloseButton, CollapsibleInfoRow, CollapsibleSection, ConfirmSwapButtonView, ConfirmSwapButtonViewSimple, ConnectWalletList, Currency, DashboardBalancesBreakdown, DashboardCard, DashboardInvestmentOpportunitiesView, DashboardPortfolioView, DashboardPortfolioViewSimple, DashboardRecentTransactionsView, DashboardRecentTransactionsViewSimple, DashboardStrategiesListView, DashboardTokenListView, DashboardTokensView, DashboardTokensViewSimple, DashboardTransactionsPlaceholder, DashboardView, DashboardViewSimple, DeframeComponentsProvider, DepositSuccessIcon, DetailsHeader, EarnAmountInputView, EarnBalanceCard, EarnBytecodeErrorView, EarnDepositFailedSimpleView, EarnDepositFailedView, EarnDepositFormView, EarnDepositFormViewSimple, EarnDepositProcessingSimpleView, EarnDepositProcessingView, EarnDepositSuccessSimpleView, EarnDepositSuccessView, EarnDepositWarningSimpleView, EarnDepositWarningView, EarnDesktopView, EarnDesktopViewSimple, EarnExploreGridView, EarnFlowSkeletonSimple, EarnInvestedSectionView, EarnInvestmentDetailsView, EarnInvestmentSummaryView, EarnNoBalanceNotificationView, EarnOverviewView, EarnPercentageButtonsView, EarnPositionCardView, EarnRecentTransactionsView, EarnTokenSelectorView, EarnTxStatusCardView, EarnWithdrawFailedSimpleView, EarnWithdrawFailedView, EarnWithdrawFormView, EarnWithdrawFormViewSimple, EarnWithdrawProcessingSimpleView, EarnWithdrawProcessingView, EarnWithdrawSuccessSimpleView, EarnWithdrawSuccessView, EarnWithdrawTokenSelectorView, EarnWithdrawWarningSimpleView, EarnWithdrawWarningView, Currency as Fiat, FlexCol, FlexRow, GroupedStrategyListView, HighRiskBadge, HistoryDepositDetailsView, HistoryListItem, HistoryListItemSimple, HistoryListSkeleton, HistoryListView, HistorySwapDetailsView, HistoryTabEmpty, HistoryWithdrawDetailsView, InfoLabel, InfoRow, InfoRowIconLabel, InfoRowIconValue, InfoRowWithIcon, InfoValue, Input2 as Input, InputField, InputLabel, Input as InputRoot, InvestmentCrossChainProcessingView, KYCActionRow, KYCAddressPage, KYCBasicDataPage, KYCChecklistCard, KYCChecklistItem, KYCDataCard, KYCDocumentPage, KYCEditPage, KYCFieldMessage, KYCFormPage, KYCInfoRow, KYCIntroPage, KYCLoadingPage, KYCMessageBanner, KYCPageHeader, KYCPageSection, KYCPageShell, KYCReviewPage, KYCReviewPageSkeleton, KYCStatusItemCard, KYCStatusPage, KYCStatusPanel, KYCStepIndicator, KycLoadingView, KycRequiredView, Label, Link, ListItem, ListItemContent, ListItemLeftSide, ListItemRightSide, LoadingDots, LowRiskBadge, MediumRiskBadge, Navbar, OffchainMethodSelectionView, OfframpFailedSimpleView, OfframpInputFormSimpleView, OfframpInputFormView, OfframpProcessingSimpleView, OfframpProcessingView, OfframpSuccessSimpleView, OfframpSuccessView, OnchainDepositFormSimpleView, OnchainDepositFormView, OnchainDepositSuccessSimpleView, OnchainDepositSuccessView, OnchainWithdrawChainSelectorView, OnchainWithdrawFailedSimpleView, OnchainWithdrawFailedView, OnchainWithdrawFormSimpleView, OnchainWithdrawFormView, OnchainWithdrawProcessingSimpleView, OnchainWithdrawSignatureWarningSimpleView, OnchainWithdrawSignatureWarningView, OnchainWithdrawSuccessSimpleView, OnchainWithdrawSuccessView, OnrampFormSimpleView, OnrampFormView, OnrampPixcodeView, OnrampSuccessSimpleView, OnrampSuccessView, PercentageButton, PrimaryButton, ProcessingBadge, ProgressIndicator, ScrollableContent, SearchEmptyState, SearchInput, SecondaryButton, SectionCard, Select, SelectContent, SelectItem, SelectTrigger, Skeleton, StepDisplay, StepStatusIcon, StepStatusText, StrategyDetailsView, StrategyGridCard, SummaryDetails, SummaryDetailsCryptoControlV2, SwapAdvancedSettingsView, SwapAmountInputView, SwapCrossChainProcessingView, SwapFormView, SwapFormViewSimple, SwapFromCardView, SwapFromCardViewSimple, SwapHistoryView, SwapHistoryViewSimple, SwapProcessingView, SwapProcessingViewSimple, SwapQuoteDetailsView, SwapSignatureWarningView, SwapSignatureWarningViewSimple, SwapSuccessView, SwapSuccessViewSimple, SwapToCardView, SwapToCardViewSimple, SwapTransactionFailedView, SwapTransactionFailedViewSimple, SwapWidgetFallbackView, Tabs, TabsContent, TabsList, TabsTrigger, TertiaryButton, Text_default as Text, TextAccent, TextBody, TextHeading, Title, TokenWithChainBadge, TransactionProcessingDetails, TransactionScreen, TransactionScreenIcon, TransactionScreenInvestmentCard, WalletBalances, WalletConnectPanel, WalletItem, ConnectWalletList as WalletList, WalletListContainer, WithdrawFailedIcon, WithdrawSuccessIcon, isDustValue, truncateAddress };
|
|
18800
18915
|
//# sourceMappingURL=index.mjs.map
|
|
18801
18916
|
//# sourceMappingURL=index.mjs.map
|