@deframe-sdk/components 0.1.32 → 0.1.33
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 +292 -3
- package/dist/index.d.ts +292 -3
- package/dist/index.js +1414 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1389 -2
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +143 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React$1 from 'react';
|
|
2
|
-
import React__default, { ReactNode,
|
|
2
|
+
import React__default, { ComponentProps, ReactNode, ButtonHTMLAttributes, ComponentType } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
4
|
|
|
5
5
|
/** Primary UI component for user interaction */
|
|
@@ -43,7 +43,16 @@ interface ButtonProps {
|
|
|
43
43
|
onClick?: () => void;
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
declare function Input({ label, error, placeholder, type, repassword, href, disabled, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
46
|
+
declare function Input$1({ label, error, placeholder, type, repassword, href, disabled, className, ...props }: InputProps): react_jsx_runtime.JSX.Element;
|
|
47
|
+
|
|
48
|
+
interface InputProps$1 extends ComponentProps<'div'> {
|
|
49
|
+
}
|
|
50
|
+
declare function Input({ className, ...props }: InputProps$1): react_jsx_runtime.JSX.Element;
|
|
51
|
+
declare function InputLabel({ className, ...props }: ComponentProps<'label'>): react_jsx_runtime.JSX.Element;
|
|
52
|
+
interface InputFieldProps extends ComponentProps<'input'> {
|
|
53
|
+
hasError?: boolean;
|
|
54
|
+
}
|
|
55
|
+
declare function InputField({ hasError, disabled, className, ...props }: InputFieldProps): react_jsx_runtime.JSX.Element;
|
|
47
56
|
|
|
48
57
|
interface InputProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
|
|
49
58
|
label?: string;
|
|
@@ -630,6 +639,286 @@ interface ProcessingBadgeProps {
|
|
|
630
639
|
}
|
|
631
640
|
declare const ProcessingBadge: React__default.FC<ProcessingBadgeProps>;
|
|
632
641
|
|
|
642
|
+
interface ChoiceCardProps extends ButtonHTMLAttributes<HTMLButtonElement> {
|
|
643
|
+
label: React__default.ReactNode;
|
|
644
|
+
description?: React__default.ReactNode;
|
|
645
|
+
selected?: boolean;
|
|
646
|
+
className?: string;
|
|
647
|
+
}
|
|
648
|
+
declare function ChoiceCard({ label, description, selected, onClick, className, ...buttonProps }: ChoiceCardProps): react_jsx_runtime.JSX.Element;
|
|
649
|
+
|
|
650
|
+
type KYCPanelStatus = 'verified' | 'reviewing' | 'pending' | 'rejected' | 'expired';
|
|
651
|
+
interface KYCStatusPanelProps {
|
|
652
|
+
status: KYCPanelStatus;
|
|
653
|
+
title?: React__default.ReactNode;
|
|
654
|
+
description?: React__default.ReactNode;
|
|
655
|
+
action?: React__default.ReactNode;
|
|
656
|
+
className?: string;
|
|
657
|
+
}
|
|
658
|
+
declare function KYCStatusPanel({ status, title, description, action, className, }: KYCStatusPanelProps): react_jsx_runtime.JSX.Element;
|
|
659
|
+
|
|
660
|
+
type KYCStatusBadgeStatus = 'processing' | 'pending' | 'reviewing' | 'verified' | 'completed' | 'failed' | 'rejected' | 'cancelled';
|
|
661
|
+
interface KYCPageShellProps {
|
|
662
|
+
children: React__default.ReactNode;
|
|
663
|
+
className?: string;
|
|
664
|
+
screenId?: string;
|
|
665
|
+
containerMode?: 'fullscreen' | 'embedded';
|
|
666
|
+
}
|
|
667
|
+
interface KYCStepIndicatorProps {
|
|
668
|
+
total: number;
|
|
669
|
+
current: number;
|
|
670
|
+
className?: string;
|
|
671
|
+
}
|
|
672
|
+
interface KYCPageHeaderProps {
|
|
673
|
+
step?: number;
|
|
674
|
+
totalSteps?: number;
|
|
675
|
+
onBack?: () => void;
|
|
676
|
+
onClose?: () => void;
|
|
677
|
+
className?: string;
|
|
678
|
+
}
|
|
679
|
+
interface KYCPageSectionProps {
|
|
680
|
+
title: React__default.ReactNode;
|
|
681
|
+
description?: React__default.ReactNode;
|
|
682
|
+
className?: string;
|
|
683
|
+
}
|
|
684
|
+
type KYCBannerVariant = 'info' | 'success' | 'warning' | 'error';
|
|
685
|
+
interface KYCMessageBannerProps {
|
|
686
|
+
variant?: KYCBannerVariant;
|
|
687
|
+
children: React__default.ReactNode;
|
|
688
|
+
className?: string;
|
|
689
|
+
testId?: string;
|
|
690
|
+
}
|
|
691
|
+
type KYCFieldMessageTone = 'error' | 'hint';
|
|
692
|
+
interface KYCFieldMessageProps {
|
|
693
|
+
tone?: KYCFieldMessageTone;
|
|
694
|
+
children: React__default.ReactNode;
|
|
695
|
+
className?: string;
|
|
696
|
+
testId?: string;
|
|
697
|
+
}
|
|
698
|
+
interface KYCAction {
|
|
699
|
+
label: React__default.ReactNode;
|
|
700
|
+
variant?: 'primary' | 'secondary';
|
|
701
|
+
href?: string;
|
|
702
|
+
className?: string;
|
|
703
|
+
buttonProps?: {
|
|
704
|
+
onClick?: () => void;
|
|
705
|
+
disabled?: boolean;
|
|
706
|
+
type?: 'button' | 'submit' | 'reset';
|
|
707
|
+
'data-kyc-continue'?: string;
|
|
708
|
+
'data-kyc-action'?: string;
|
|
709
|
+
};
|
|
710
|
+
}
|
|
711
|
+
interface KYCActionRowProps {
|
|
712
|
+
actions: KYCAction[];
|
|
713
|
+
className?: string;
|
|
714
|
+
}
|
|
715
|
+
interface KYCChecklistItemData {
|
|
716
|
+
icon?: React__default.ReactNode;
|
|
717
|
+
label: React__default.ReactNode;
|
|
718
|
+
description?: React__default.ReactNode;
|
|
719
|
+
}
|
|
720
|
+
interface KYCIntroPageProps {
|
|
721
|
+
screenId?: string;
|
|
722
|
+
onClose?: () => void;
|
|
723
|
+
title?: React__default.ReactNode;
|
|
724
|
+
description?: React__default.ReactNode;
|
|
725
|
+
checklistItems?: KYCChecklistItemData[];
|
|
726
|
+
banners?: KYCMessageBannerProps[];
|
|
727
|
+
legalNotice?: React__default.ReactNode;
|
|
728
|
+
primaryAction?: KYCAction;
|
|
729
|
+
className?: string;
|
|
730
|
+
containerMode?: 'fullscreen' | 'embedded';
|
|
731
|
+
}
|
|
732
|
+
interface KYCFormPageProps {
|
|
733
|
+
screenId?: string;
|
|
734
|
+
onBack?: () => void;
|
|
735
|
+
onClose?: () => void;
|
|
736
|
+
step?: number;
|
|
737
|
+
totalSteps?: number;
|
|
738
|
+
title: React__default.ReactNode;
|
|
739
|
+
description?: React__default.ReactNode;
|
|
740
|
+
children: React__default.ReactNode;
|
|
741
|
+
banners?: KYCMessageBannerProps[];
|
|
742
|
+
footer?: React__default.ReactNode;
|
|
743
|
+
actions?: KYCAction[];
|
|
744
|
+
className?: string;
|
|
745
|
+
containerMode?: 'fullscreen' | 'embedded';
|
|
746
|
+
}
|
|
747
|
+
interface KYCLoadingPageProps {
|
|
748
|
+
screenId?: string;
|
|
749
|
+
onClose?: () => void;
|
|
750
|
+
title: React__default.ReactNode;
|
|
751
|
+
description?: React__default.ReactNode;
|
|
752
|
+
note?: React__default.ReactNode;
|
|
753
|
+
className?: string;
|
|
754
|
+
containerMode?: 'fullscreen' | 'embedded';
|
|
755
|
+
}
|
|
756
|
+
interface KYCReviewCard extends Omit<KYCDataCardProps, 'fields'> {
|
|
757
|
+
fields: KYCDataField[];
|
|
758
|
+
}
|
|
759
|
+
interface KYCReviewPageProps {
|
|
760
|
+
screenId?: string;
|
|
761
|
+
onClose?: () => void;
|
|
762
|
+
step?: number;
|
|
763
|
+
totalSteps?: number;
|
|
764
|
+
title: React__default.ReactNode;
|
|
765
|
+
description?: React__default.ReactNode;
|
|
766
|
+
cards: KYCReviewCard[];
|
|
767
|
+
banners?: KYCMessageBannerProps[];
|
|
768
|
+
actions?: KYCAction[];
|
|
769
|
+
className?: string;
|
|
770
|
+
containerMode?: 'fullscreen' | 'embedded';
|
|
771
|
+
}
|
|
772
|
+
interface KYCReviewPageSkeletonProps {
|
|
773
|
+
screenId?: string;
|
|
774
|
+
onClose?: () => void;
|
|
775
|
+
step?: number;
|
|
776
|
+
totalSteps?: number;
|
|
777
|
+
containerMode?: 'fullscreen' | 'embedded';
|
|
778
|
+
}
|
|
779
|
+
interface KYCStatusItem {
|
|
780
|
+
icon?: React__default.ReactNode;
|
|
781
|
+
title: React__default.ReactNode;
|
|
782
|
+
description: React__default.ReactNode;
|
|
783
|
+
tone?: 'default' | 'success' | 'warning' | 'error';
|
|
784
|
+
testId?: string;
|
|
785
|
+
}
|
|
786
|
+
interface KYCStatusItemCardProps extends KYCStatusItem {
|
|
787
|
+
className?: string;
|
|
788
|
+
}
|
|
789
|
+
interface KYCStatusPageProps {
|
|
790
|
+
screenId?: string;
|
|
791
|
+
onClose?: () => void;
|
|
792
|
+
status?: KYCPanelStatus;
|
|
793
|
+
panelStatus?: KYCPanelStatus;
|
|
794
|
+
panelTitle?: React__default.ReactNode;
|
|
795
|
+
panelDescription?: React__default.ReactNode;
|
|
796
|
+
panelAction?: React__default.ReactNode;
|
|
797
|
+
items?: KYCStatusItem[];
|
|
798
|
+
cards?: KYCReviewCard[];
|
|
799
|
+
banners?: KYCMessageBannerProps[];
|
|
800
|
+
actions?: KYCAction[];
|
|
801
|
+
footer?: React__default.ReactNode;
|
|
802
|
+
className?: string;
|
|
803
|
+
containerMode?: 'fullscreen' | 'embedded';
|
|
804
|
+
}
|
|
805
|
+
interface BaseFormScreenProps {
|
|
806
|
+
screenId?: string;
|
|
807
|
+
onBack?: () => void;
|
|
808
|
+
onClose?: () => void;
|
|
809
|
+
step?: number;
|
|
810
|
+
totalSteps?: number;
|
|
811
|
+
banners?: KYCMessageBannerProps[];
|
|
812
|
+
actions?: KYCAction[];
|
|
813
|
+
containerMode?: KYCPageShellProps['containerMode'];
|
|
814
|
+
}
|
|
815
|
+
interface KYCBasicDataPageProps extends BaseFormScreenProps {
|
|
816
|
+
title?: React__default.ReactNode;
|
|
817
|
+
description?: React__default.ReactNode;
|
|
818
|
+
cpfField: React__default.ReactNode;
|
|
819
|
+
phoneField: React__default.ReactNode;
|
|
820
|
+
}
|
|
821
|
+
interface KYCDocumentPageProps extends BaseFormScreenProps {
|
|
822
|
+
title?: React__default.ReactNode;
|
|
823
|
+
description?: React__default.ReactNode;
|
|
824
|
+
checklistItems?: KYCChecklistItemData[];
|
|
825
|
+
documentOptions?: Array<{
|
|
826
|
+
value: string;
|
|
827
|
+
label: React__default.ReactNode;
|
|
828
|
+
description?: React__default.ReactNode;
|
|
829
|
+
}>;
|
|
830
|
+
selectedValue?: string;
|
|
831
|
+
onSelectValue?: (value: string) => void;
|
|
832
|
+
notice?: React__default.ReactNode;
|
|
833
|
+
content?: React__default.ReactNode;
|
|
834
|
+
}
|
|
835
|
+
interface KYCEditPageProps extends BaseFormScreenProps {
|
|
836
|
+
title?: React__default.ReactNode;
|
|
837
|
+
fullNameField: React__default.ReactNode;
|
|
838
|
+
dateOfBirthField: React__default.ReactNode;
|
|
839
|
+
cpfField: React__default.ReactNode;
|
|
840
|
+
phoneField: React__default.ReactNode;
|
|
841
|
+
emailField: React__default.ReactNode;
|
|
842
|
+
}
|
|
843
|
+
interface KYCAddressPageProps extends BaseFormScreenProps {
|
|
844
|
+
title?: React__default.ReactNode;
|
|
845
|
+
description?: React__default.ReactNode;
|
|
846
|
+
cepField?: React__default.ReactNode;
|
|
847
|
+
streetField?: React__default.ReactNode;
|
|
848
|
+
cityField?: React__default.ReactNode;
|
|
849
|
+
stateField?: React__default.ReactNode;
|
|
850
|
+
complementField?: React__default.ReactNode;
|
|
851
|
+
countryField?: React__default.ReactNode;
|
|
852
|
+
numberField?: React__default.ReactNode;
|
|
853
|
+
isLoading?: boolean;
|
|
854
|
+
loadingContent?: React__default.ReactNode;
|
|
855
|
+
onNext?: () => void;
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
interface KYCDataField {
|
|
859
|
+
label: string;
|
|
860
|
+
value: React__default.ReactNode;
|
|
861
|
+
}
|
|
862
|
+
interface KYCDataCardProps {
|
|
863
|
+
title?: string;
|
|
864
|
+
status?: KYCStatusBadgeStatus;
|
|
865
|
+
statusLabel?: string;
|
|
866
|
+
fields: KYCDataField[];
|
|
867
|
+
action?: React__default.ReactNode;
|
|
868
|
+
className?: string;
|
|
869
|
+
style?: React__default.CSSProperties;
|
|
870
|
+
}
|
|
871
|
+
declare function KYCDataCard({ title, status, statusLabel, fields, action, className, style, }: KYCDataCardProps): react_jsx_runtime.JSX.Element;
|
|
872
|
+
|
|
873
|
+
interface KYCInfoRowProps {
|
|
874
|
+
label: string;
|
|
875
|
+
value: React__default.ReactNode;
|
|
876
|
+
divider?: boolean;
|
|
877
|
+
className?: string;
|
|
878
|
+
}
|
|
879
|
+
declare function KYCInfoRow({ label, value, divider, className }: KYCInfoRowProps): react_jsx_runtime.JSX.Element;
|
|
880
|
+
|
|
881
|
+
declare function KYCActionRow({ actions, className }: KYCActionRowProps): react_jsx_runtime.JSX.Element | null;
|
|
882
|
+
|
|
883
|
+
declare function KYCChecklistItem({ icon, label, description }: KYCChecklistItemData): react_jsx_runtime.JSX.Element;
|
|
884
|
+
declare function KYCChecklistCard({ items, className }: {
|
|
885
|
+
items: KYCChecklistItemData[];
|
|
886
|
+
className?: string;
|
|
887
|
+
}): react_jsx_runtime.JSX.Element;
|
|
888
|
+
|
|
889
|
+
declare function KYCFieldMessage({ tone, children, className, testId, }: KYCFieldMessageProps): react_jsx_runtime.JSX.Element;
|
|
890
|
+
|
|
891
|
+
declare function KYCMessageBanner({ variant, children, className, testId, }: KYCMessageBannerProps): react_jsx_runtime.JSX.Element;
|
|
892
|
+
|
|
893
|
+
declare function KYCPageHeader({ step, totalSteps, onBack, onClose, className, }: KYCPageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
894
|
+
|
|
895
|
+
declare function KYCPageSection({ title, description, className }: KYCPageSectionProps): react_jsx_runtime.JSX.Element;
|
|
896
|
+
|
|
897
|
+
declare function KYCPageShell({ children, className, screenId, containerMode }: KYCPageShellProps): react_jsx_runtime.JSX.Element;
|
|
898
|
+
|
|
899
|
+
declare function KYCStepIndicator({ total, current, className }: KYCStepIndicatorProps): react_jsx_runtime.JSX.Element;
|
|
900
|
+
|
|
901
|
+
declare function KYCAddressPage({ screenId, onBack, onClose, step, totalSteps, title, description, cepField, streetField, cityField, stateField, complementField, countryField, numberField, isLoading, loadingContent, banners, actions, containerMode, onNext, }: KYCAddressPageProps): react_jsx_runtime.JSX.Element;
|
|
902
|
+
|
|
903
|
+
declare function KYCBasicDataPage({ screenId, step, totalSteps, title, description, cpfField, phoneField, ...props }: KYCBasicDataPageProps): react_jsx_runtime.JSX.Element;
|
|
904
|
+
|
|
905
|
+
declare function KYCDocumentPage({ screenId, step, totalSteps, title, description, checklistItems, documentOptions, selectedValue, onSelectValue, notice, content, ...props }: KYCDocumentPageProps): react_jsx_runtime.JSX.Element;
|
|
906
|
+
|
|
907
|
+
declare function KYCEditPage({ screenId, title, fullNameField, dateOfBirthField, cpfField, phoneField, emailField, ...props }: KYCEditPageProps): react_jsx_runtime.JSX.Element;
|
|
908
|
+
|
|
909
|
+
declare function KYCFormPage({ screenId, onBack, onClose, step, totalSteps, title, description, children, banners, footer, actions, className, containerMode, }: KYCFormPageProps): react_jsx_runtime.JSX.Element;
|
|
910
|
+
|
|
911
|
+
declare function KYCIntroPage({ screenId, onClose, title, description, checklistItems, banners, legalNotice, primaryAction, className, containerMode, }: KYCIntroPageProps): react_jsx_runtime.JSX.Element;
|
|
912
|
+
|
|
913
|
+
declare function KYCLoadingPage({ screenId, onClose, title, description, note, className, containerMode, }: KYCLoadingPageProps): react_jsx_runtime.JSX.Element;
|
|
914
|
+
|
|
915
|
+
declare function KYCReviewPage({ screenId, onClose, step, totalSteps, title, description, cards, banners, actions, className, containerMode, }: KYCReviewPageProps): react_jsx_runtime.JSX.Element;
|
|
916
|
+
|
|
917
|
+
declare function KYCReviewPageSkeleton({ screenId, onClose, step, totalSteps, containerMode, }: KYCReviewPageSkeletonProps): react_jsx_runtime.JSX.Element;
|
|
918
|
+
|
|
919
|
+
declare function KYCStatusItemCard({ icon, title, description, tone, testId, className, }: KYCStatusItemCardProps): react_jsx_runtime.JSX.Element;
|
|
920
|
+
declare function KYCStatusPage({ screenId, onClose, status, panelStatus, panelTitle, panelDescription, panelAction, items, cards, banners, actions, footer, className, containerMode, }: KYCStatusPageProps): react_jsx_runtime.JSX.Element;
|
|
921
|
+
|
|
633
922
|
interface HistoryDetailsLabels {
|
|
634
923
|
currencyLabel: string;
|
|
635
924
|
totalAmountLabel: string;
|
|
@@ -2836,4 +3125,4 @@ interface DeframeTheme {
|
|
|
2836
3125
|
colors?: DeframeThemeColors;
|
|
2837
3126
|
}
|
|
2838
3127
|
|
|
2839
|
-
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, EarnDesktopViewSimple, type EarnDesktopViewSimpleProps, 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 };
|
|
3128
|
+
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, ChoiceCard, type ChoiceCardProps, 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, EarnDesktopViewSimple, type EarnDesktopViewSimpleProps, 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$1 as Input, InputField, type InputFieldProps, type InputFieldRegistration, InputLabel, type InputProps, Input as InputRoot, InvestmentCrossChainProcessingView, type InvestmentCrossChainProcessingViewProps, type KYCAction, KYCActionRow, type KYCActionRowProps, KYCAddressPage, type KYCAddressPageProps, type KYCBannerVariant, KYCBasicDataPage, type KYCBasicDataPageProps, KYCChecklistCard, KYCChecklistItem, type KYCChecklistItemData, KYCDataCard, type KYCDataCardProps, type KYCDataField, KYCDocumentPage, type KYCDocumentPageProps, KYCEditPage, type KYCEditPageProps, KYCFieldMessage, type KYCFieldMessageProps, type KYCFieldMessageTone, KYCFormPage, type KYCFormPageProps, KYCInfoRow, type KYCInfoRowProps, KYCIntroPage, type KYCIntroPageProps, KYCLoadingPage, type KYCLoadingPageProps, KYCMessageBanner, type KYCMessageBannerProps, KYCPageHeader, type KYCPageHeaderProps, KYCPageSection, type KYCPageSectionProps, KYCPageShell, type KYCPageShellProps, type KYCPanelStatus, type KYCReviewCard, KYCReviewPage, type KYCReviewPageProps, KYCReviewPageSkeleton, type KYCReviewPageSkeletonProps, type KYCStatusItem, KYCStatusItemCard, type KYCStatusItemCardProps, KYCStatusPage, type KYCStatusPageProps, KYCStatusPanel, type KYCStatusPanelProps, KYCStepIndicator, type KYCStepIndicatorProps, 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 };
|