@deframe-sdk/components 0.1.54 → 0.1.56
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 +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +65 -49
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +65 -50
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -90,7 +90,7 @@ function ActionButton(_a) {
|
|
|
90
90
|
);
|
|
91
91
|
}
|
|
92
92
|
var CloseButton = ({ onClick, testId, ariaLabel = "Close", className }) => {
|
|
93
|
-
const baseClasses = "w-12 h-12 rounded-[var(--deframe-widget-size-radius-
|
|
93
|
+
const baseClasses = "w-12 h-12 rounded-[var(--deframe-widget-size-radius-sm)] flex items-center justify-center text-[color:var(--deframe-widget-color-text-secondary)] hover:bg-[color:color-mix(in_srgb,var(--deframe-widget-color-bg-tertiary)_92%,transparent)] transition-[background] duration-150 cursor-pointer";
|
|
94
94
|
return /* @__PURE__ */ jsx(
|
|
95
95
|
"button",
|
|
96
96
|
{
|
|
@@ -5060,6 +5060,16 @@ var SwapCrossChainProcessingView = ({
|
|
|
5060
5060
|
}
|
|
5061
5061
|
);
|
|
5062
5062
|
};
|
|
5063
|
+
var SwapCrossChainProcessingViewSimple = ({
|
|
5064
|
+
title,
|
|
5065
|
+
description
|
|
5066
|
+
}) => /* @__PURE__ */ jsx(
|
|
5067
|
+
SwapProcessingViewSimple,
|
|
5068
|
+
{
|
|
5069
|
+
titleText: title,
|
|
5070
|
+
descriptionPrefix: description
|
|
5071
|
+
}
|
|
5072
|
+
);
|
|
5063
5073
|
var InvestmentCrossChainProcessingView = ({
|
|
5064
5074
|
title,
|
|
5065
5075
|
description,
|
|
@@ -6428,8 +6438,8 @@ var SwapFromCardViewSimple = ({
|
|
|
6428
6438
|
{
|
|
6429
6439
|
"data-test-id": "swap-from-card-simple",
|
|
6430
6440
|
className: wrapperClasses,
|
|
6431
|
-
onMouseEnter: handleMouseEnter,
|
|
6432
|
-
onMouseLeave: handleMouseLeave,
|
|
6441
|
+
onMouseEnter: selectedToken ? handleMouseEnter : void 0,
|
|
6442
|
+
onMouseLeave: selectedToken ? handleMouseLeave : void 0,
|
|
6433
6443
|
children: [
|
|
6434
6444
|
/* @__PURE__ */ jsxs(
|
|
6435
6445
|
"div",
|
|
@@ -11384,7 +11394,7 @@ var EarnTokenSelectorSimpleView = ({
|
|
|
11384
11394
|
"flex-shrink-0"
|
|
11385
11395
|
].join(" ");
|
|
11386
11396
|
const stateClasses = {
|
|
11387
|
-
interactive: "cursor-pointer hover:bg-[color:color-mix(in_srgb,var(--deframe-widget-color-bg-tertiary)
|
|
11397
|
+
interactive: "cursor-pointer hover:bg-[color:color-mix(in_srgb,var(--deframe-widget-color-bg-tertiary)_92%,transparent)]",
|
|
11388
11398
|
static: "cursor-default"
|
|
11389
11399
|
};
|
|
11390
11400
|
const selectorClasses = twMerge(
|
|
@@ -11823,15 +11833,20 @@ var EarnDepositFormViewSimple = ({
|
|
|
11823
11833
|
const hasError = !!insufficientBalanceMessage || !!bytecodeErrorMessage;
|
|
11824
11834
|
const isSubmitDisabled = !hasToken || submitDisabled || !amountValue || amountValue === "0" || amountValue === "";
|
|
11825
11835
|
const [cardHovered, setCardHovered] = React6__default.useState(false);
|
|
11826
|
-
const hideTimerRef = React6__default.useRef(
|
|
11827
|
-
|
|
11828
|
-
|
|
11836
|
+
const hideTimerRef = React6__default.useRef(null);
|
|
11837
|
+
const handleHoverStart = React6__default.useCallback(() => {
|
|
11838
|
+
if (hideTimerRef.current) {
|
|
11839
|
+
clearTimeout(hideTimerRef.current);
|
|
11840
|
+
hideTimerRef.current = null;
|
|
11841
|
+
}
|
|
11829
11842
|
setCardHovered(true);
|
|
11830
|
-
}
|
|
11831
|
-
|
|
11843
|
+
}, []);
|
|
11844
|
+
const handleHoverEnd = React6__default.useCallback(() => {
|
|
11832
11845
|
hideTimerRef.current = setTimeout(() => setCardHovered(false), 150);
|
|
11833
|
-
}
|
|
11834
|
-
React6__default.useEffect(() => () =>
|
|
11846
|
+
}, []);
|
|
11847
|
+
React6__default.useEffect(() => () => {
|
|
11848
|
+
if (hideTimerRef.current) clearTimeout(hideTimerRef.current);
|
|
11849
|
+
}, []);
|
|
11835
11850
|
const panelBaseClasses = [
|
|
11836
11851
|
"relative flex flex-col overflow-hidden w-[420px]",
|
|
11837
11852
|
"rounded-[var(--deframe-widget-size-radius-md)]",
|
|
@@ -12003,13 +12018,11 @@ var EarnDepositFormViewSimple = ({
|
|
|
12003
12018
|
{
|
|
12004
12019
|
"data-slot": "deposit-simple-chips-row",
|
|
12005
12020
|
"data-test-id": "earn-deposit-form-view-simple-chips-row",
|
|
12006
|
-
initial: { opacity: 0, height: 0
|
|
12007
|
-
animate: { opacity: 1, height: "auto"
|
|
12008
|
-
exit: { opacity: 0, height: 0
|
|
12021
|
+
initial: { opacity: 0, height: 0 },
|
|
12022
|
+
animate: { opacity: 1, height: "auto" },
|
|
12023
|
+
exit: { opacity: 0, height: 0 },
|
|
12009
12024
|
transition: { duration: 0.15, ease: "easeOut" },
|
|
12010
|
-
|
|
12011
|
-
onMouseEnter: handleHoverStart,
|
|
12012
|
-
onMouseLeave: handleHoverEnd,
|
|
12025
|
+
className: "overflow-hidden mt-[var(--deframe-widget-size-gap-sm)]",
|
|
12013
12026
|
children: /* @__PURE__ */ jsx(
|
|
12014
12027
|
EarnPercentageButtonsSimpleView,
|
|
12015
12028
|
{
|
|
@@ -12040,10 +12053,8 @@ var EarnDepositFormViewSimple = ({
|
|
|
12040
12053
|
"text-[15px] text-[color:var(--deframe-widget-color-text-secondary)]",
|
|
12041
12054
|
"border-[color:var(--deframe-widget-color-border-secondary)]",
|
|
12042
12055
|
"outline-none",
|
|
12043
|
-
"transition-[background
|
|
12044
|
-
"hover:
|
|
12045
|
-
"hover:bg-[color:color-mix(in_srgb,var(--deframe-widget-color-bg-tertiary)_60%,transparent)]",
|
|
12046
|
-
"hover:text-[color:var(--deframe-widget-color-text-primary)]"
|
|
12056
|
+
"transition-[background] duration-150",
|
|
12057
|
+
"hover:bg-[color:color-mix(in_srgb,var(--deframe-widget-color-bg-tertiary)_92%,transparent)]"
|
|
12047
12058
|
].join(" "),
|
|
12048
12059
|
onClick: onBack,
|
|
12049
12060
|
"aria-label": cancelLabel,
|
|
@@ -14290,10 +14301,8 @@ var OnchainDepositFormSimpleView = ({
|
|
|
14290
14301
|
"text-[15px] text-[color:var(--deframe-widget-color-text-secondary)]",
|
|
14291
14302
|
"border-[color:var(--deframe-widget-color-border-secondary)]",
|
|
14292
14303
|
"outline-none",
|
|
14293
|
-
"transition-[background
|
|
14294
|
-
"hover:
|
|
14295
|
-
"hover:bg-[color:color-mix(in_srgb,var(--deframe-widget-color-bg-tertiary)_60%,transparent)]",
|
|
14296
|
-
"hover:text-[color:var(--deframe-widget-color-text-primary)]"
|
|
14304
|
+
"transition-[background] duration-150",
|
|
14305
|
+
"hover:bg-[color:color-mix(in_srgb,var(--deframe-widget-color-bg-tertiary)_92%,transparent)]"
|
|
14297
14306
|
].join(" "),
|
|
14298
14307
|
onClick: onBack,
|
|
14299
14308
|
"aria-label": labels.backLabel,
|
|
@@ -14838,15 +14847,20 @@ var OnchainWithdrawFormSimpleView = ({
|
|
|
14838
14847
|
const hasAddressError = !!transferError;
|
|
14839
14848
|
const isSubmitDisabledInternal = !hasToken || isSubmitDisabled || isProcessing || !amount || amount === "0" || amount === "" || !destinationAddress.trim();
|
|
14840
14849
|
const [cardHovered, setCardHovered] = React6__default.useState(false);
|
|
14841
|
-
const hideTimerRef = React6__default.useRef(
|
|
14842
|
-
|
|
14843
|
-
|
|
14850
|
+
const hideTimerRef = React6__default.useRef(null);
|
|
14851
|
+
const handleHoverStart = React6__default.useCallback(() => {
|
|
14852
|
+
if (hideTimerRef.current) {
|
|
14853
|
+
clearTimeout(hideTimerRef.current);
|
|
14854
|
+
hideTimerRef.current = null;
|
|
14855
|
+
}
|
|
14844
14856
|
setCardHovered(true);
|
|
14845
|
-
}
|
|
14846
|
-
|
|
14857
|
+
}, []);
|
|
14858
|
+
const handleHoverEnd = React6__default.useCallback(() => {
|
|
14847
14859
|
hideTimerRef.current = setTimeout(() => setCardHovered(false), 150);
|
|
14848
|
-
}
|
|
14849
|
-
React6__default.useEffect(() => () =>
|
|
14860
|
+
}, []);
|
|
14861
|
+
React6__default.useEffect(() => () => {
|
|
14862
|
+
if (hideTimerRef.current) clearTimeout(hideTimerRef.current);
|
|
14863
|
+
}, []);
|
|
14850
14864
|
const panelBaseClasses = [
|
|
14851
14865
|
"relative flex flex-col overflow-hidden w-[420px]",
|
|
14852
14866
|
"rounded-[var(--deframe-widget-size-radius-md)]",
|
|
@@ -17140,15 +17154,20 @@ var OfframpInputFormSimpleView = ({
|
|
|
17140
17154
|
localStorage.setItem(STORAGE_KEY, type);
|
|
17141
17155
|
}
|
|
17142
17156
|
const [cardHovered, setCardHovered] = React6__default.useState(false);
|
|
17143
|
-
const hideTimerRef = React6__default.useRef(
|
|
17144
|
-
|
|
17145
|
-
|
|
17157
|
+
const hideTimerRef = React6__default.useRef(null);
|
|
17158
|
+
const handleHoverStart = React6__default.useCallback(() => {
|
|
17159
|
+
if (hideTimerRef.current) {
|
|
17160
|
+
clearTimeout(hideTimerRef.current);
|
|
17161
|
+
hideTimerRef.current = null;
|
|
17162
|
+
}
|
|
17146
17163
|
setCardHovered(true);
|
|
17147
|
-
}
|
|
17148
|
-
|
|
17164
|
+
}, []);
|
|
17165
|
+
const handleHoverEnd = React6__default.useCallback(() => {
|
|
17149
17166
|
hideTimerRef.current = setTimeout(() => setCardHovered(false), 150);
|
|
17150
|
-
}
|
|
17151
|
-
React6__default.useEffect(() => () =>
|
|
17167
|
+
}, []);
|
|
17168
|
+
React6__default.useEffect(() => () => {
|
|
17169
|
+
if (hideTimerRef.current) clearTimeout(hideTimerRef.current);
|
|
17170
|
+
}, []);
|
|
17152
17171
|
const hasAmountError = !!amountWarningMessage;
|
|
17153
17172
|
const hasPixKeyError = !!error || !!offrampError;
|
|
17154
17173
|
const isSubmitDisabledInternal = submitDisabled || !amount || amount === "0" || !pixKey.trim();
|
|
@@ -17200,10 +17219,8 @@ var OfframpInputFormSimpleView = ({
|
|
|
17200
17219
|
"text-[15px] text-[color:var(--deframe-widget-color-text-secondary)]",
|
|
17201
17220
|
"border-[color:var(--deframe-widget-color-border-secondary)]",
|
|
17202
17221
|
"outline-none",
|
|
17203
|
-
"transition-[background
|
|
17204
|
-
"hover:
|
|
17205
|
-
"hover:bg-[color:color-mix(in_srgb,var(--deframe-widget-color-bg-tertiary)_60%,transparent)]",
|
|
17206
|
-
"hover:text-[color:var(--deframe-widget-color-text-primary)]"
|
|
17222
|
+
"transition-[background] duration-150",
|
|
17223
|
+
"hover:bg-[color:color-mix(in_srgb,var(--deframe-widget-color-bg-tertiary)_92%,transparent)]"
|
|
17207
17224
|
].join(" ");
|
|
17208
17225
|
const submitButtonClasses = [
|
|
17209
17226
|
"flex-1 h-12 rounded-[var(--deframe-widget-size-radius-sm)]",
|
|
@@ -17348,13 +17365,11 @@ var OfframpInputFormSimpleView = ({
|
|
|
17348
17365
|
{
|
|
17349
17366
|
"data-slot": "offramp-input-form-simple-chips-row",
|
|
17350
17367
|
"data-test-id": "offramp-input-form-simple-view-chips-row",
|
|
17351
|
-
initial: { opacity: 0, height: 0
|
|
17352
|
-
animate: { opacity: 1, height: "auto"
|
|
17353
|
-
exit: { opacity: 0, height: 0
|
|
17368
|
+
initial: { opacity: 0, height: 0 },
|
|
17369
|
+
animate: { opacity: 1, height: "auto" },
|
|
17370
|
+
exit: { opacity: 0, height: 0 },
|
|
17354
17371
|
transition: { duration: 0.15, ease: "easeOut" },
|
|
17355
|
-
|
|
17356
|
-
onMouseEnter: handleHoverStart,
|
|
17357
|
-
onMouseLeave: handleHoverEnd,
|
|
17372
|
+
className: "overflow-hidden mt-[var(--deframe-widget-size-gap-sm)]",
|
|
17358
17373
|
children: /* @__PURE__ */ jsx(
|
|
17359
17374
|
EarnPercentageButtonsSimpleView,
|
|
17360
17375
|
{
|
|
@@ -18991,6 +19006,6 @@ var DashboardViewSimple = ({
|
|
|
18991
19006
|
);
|
|
18992
19007
|
};
|
|
18993
19008
|
|
|
18994
|
-
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, EARN_CATEGORY_DEFINITIONS, 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 };
|
|
19009
|
+
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, EARN_CATEGORY_DEFINITIONS, 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, SwapCrossChainProcessingViewSimple, 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 };
|
|
18995
19010
|
//# sourceMappingURL=index.mjs.map
|
|
18996
19011
|
//# sourceMappingURL=index.mjs.map
|