@0xsquid/ui 0.17.0 → 0.17.1-beta.1
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/README.md +1 -1
- package/dist/cjs/index.css +4 -0
- package/dist/cjs/index.js +6884 -35464
- package/dist/cjs/types/components/badges/IconLabel.d.ts +10 -0
- package/dist/cjs/types/components/badges/ImageIcon.d.ts +9 -0
- package/dist/cjs/types/components/badges/LoadingSkeleton.d.ts +8 -2
- package/dist/cjs/types/components/badges/TransactionState.d.ts +15 -0
- package/dist/cjs/types/components/badges/WalletLink.d.ts +6 -0
- package/dist/cjs/types/components/badges/index.d.ts +4 -0
- package/dist/cjs/types/components/buttons/FilterButton.d.ts +6 -0
- package/dist/cjs/types/components/buttons/index.d.ts +1 -0
- package/dist/cjs/types/components/icons/Approve.d.ts +1 -0
- package/dist/cjs/types/components/icons/Arrow.d.ts +12 -2
- package/dist/cjs/types/components/icons/ArrowRotate.d.ts +1 -0
- package/dist/cjs/types/components/icons/Bag.d.ts +1 -0
- package/dist/cjs/types/components/icons/BoostBadge.d.ts +1 -0
- package/dist/cjs/types/components/icons/Calendar.d.ts +1 -0
- package/dist/cjs/types/components/icons/Collection.d.ts +1 -0
- package/dist/cjs/types/components/icons/Copy.d.ts +5 -0
- package/dist/cjs/types/components/icons/Filter.d.ts +1 -0
- package/dist/cjs/types/components/icons/HomeIcon.d.ts +3 -0
- package/dist/cjs/types/components/icons/ImageSparkle.d.ts +1 -0
- package/dist/cjs/types/components/icons/Link.d.ts +2 -0
- package/dist/cjs/types/components/icons/Loader.d.ts +3 -3
- package/dist/cjs/types/components/icons/NotAllowed.d.ts +1 -0
- package/dist/cjs/types/components/icons/PieChart.d.ts +1 -0
- package/dist/cjs/types/components/icons/Separator.d.ts +3 -0
- package/dist/cjs/types/components/icons/SquareArrowCenter.d.ts +1 -0
- package/dist/cjs/types/components/icons/Tag.d.ts +4 -0
- package/dist/cjs/types/components/icons/ThumbsUp.d.ts +3 -0
- package/dist/cjs/types/components/icons/Tick.d.ts +3 -0
- package/dist/cjs/types/components/icons/Timeline.d.ts +11 -0
- package/dist/cjs/types/components/layout/Breadcrumb.d.ts +5 -0
- package/dist/cjs/types/components/layout/Collapse.d.ts +11 -0
- package/dist/cjs/types/components/layout/DescriptionBlocks.d.ts +8 -0
- package/dist/cjs/types/components/layout/ExploreLayout.d.ts +7 -0
- package/dist/cjs/types/components/layout/HashLink.d.ts +10 -0
- package/dist/cjs/types/components/layout/Join.d.ts +7 -0
- package/dist/cjs/types/components/layout/TokenPair.d.ts +6 -3
- package/dist/cjs/types/components/layout/TransactionFilters.d.ts +20 -0
- package/dist/cjs/types/components/layout/TransactionHeader/BridgeHeader.d.ts +11 -0
- package/dist/cjs/types/components/layout/TransactionHeader/BuyNFTHeader.d.ts +10 -0
- package/dist/cjs/types/components/layout/TransactionHeader/InteractionHeader.d.ts +11 -0
- package/dist/cjs/types/components/layout/TransactionHeader/ProfileHeader.d.ts +11 -0
- package/dist/cjs/types/components/layout/TransactionHeader/SwapHeader.d.ts +16 -0
- package/dist/cjs/types/components/layout/TransactionHeader/TransactionHeader.d.ts +23 -0
- package/dist/cjs/types/components/layout/TransactionHeader/TransactionHeaderLayout.d.ts +10 -0
- package/dist/cjs/types/components/layout/TransactionHeader/index.d.ts +1 -0
- package/dist/cjs/types/components/layout/TransactionProperties/BridgeProperties.d.ts +21 -0
- package/dist/cjs/types/components/layout/TransactionProperties/BuyNFTProperties.d.ts +33 -0
- package/dist/cjs/types/components/layout/TransactionProperties/InteractionProperties.d.ts +11 -0
- package/dist/cjs/types/components/layout/TransactionProperties/PropertiesLayout.d.ts +7 -0
- package/dist/cjs/types/components/layout/TransactionProperties/SwapProperties.d.ts +28 -0
- package/dist/cjs/types/components/layout/TransactionProperties/TransactionProperties.d.ts +21 -0
- package/dist/cjs/types/components/layout/TransactionProperties/index.d.ts +6 -0
- package/dist/cjs/types/components/layout/TransactionSearch.d.ts +8 -0
- package/dist/cjs/types/components/layout/Transfer.d.ts +9 -0
- package/dist/cjs/types/components/layout/index.d.ts +23 -0
- package/dist/cjs/types/components/lists/PropertyListItem.d.ts +10 -0
- package/dist/cjs/types/components/lists/SwapStepItem.d.ts +3 -3
- package/dist/cjs/types/components/lists/TransactionAction/ActionLayout.d.ts +40 -0
- package/dist/cjs/types/components/lists/TransactionAction/ApproveAction.d.ts +21 -0
- package/dist/cjs/types/components/lists/TransactionAction/BaseActionProps.d.ts +10 -0
- package/dist/cjs/types/components/lists/TransactionAction/BridgeAction.d.ts +20 -0
- package/dist/cjs/types/components/lists/TransactionAction/FeesAction.d.ts +28 -0
- package/dist/cjs/types/components/lists/TransactionAction/IncompleteAction.d.ts +8 -0
- package/dist/cjs/types/components/lists/TransactionAction/ReceiveNFTAction.d.ts +21 -0
- package/dist/cjs/types/components/lists/TransactionAction/ReceiveTokensAction.d.ts +22 -0
- package/dist/cjs/types/components/lists/TransactionAction/SendTokensAction.d.ts +22 -0
- package/dist/cjs/types/components/lists/TransactionAction/StakeAction.d.ts +16 -0
- package/dist/cjs/types/components/lists/TransactionAction/StartAction.d.ts +8 -0
- package/dist/cjs/types/components/lists/TransactionAction/SuccessAction.d.ts +9 -0
- package/dist/cjs/types/components/lists/TransactionAction/SwapAction.d.ts +20 -0
- package/dist/cjs/types/components/lists/TransactionAction/TransactionAction.d.ts +37 -0
- package/dist/cjs/types/components/lists/TransactionAction/WrapAction.d.ts +20 -0
- package/dist/cjs/types/components/lists/TransactionAction/index.d.ts +14 -0
- package/dist/cjs/types/components/lists/TransactionAction/linkActionTimelineProps.d.ts +2 -0
- package/dist/cjs/types/components/lists/TransactionItem.d.ts +25 -0
- package/dist/cjs/types/components/lists/index.d.ts +18 -1
- package/dist/cjs/types/components/typography/BodyText.d.ts +4 -3
- package/dist/cjs/types/components/typography/HeadingText.d.ts +2 -1
- package/dist/cjs/types/components/views/TransactionView/BaseTransactionViewProps.d.ts +10 -0
- package/dist/cjs/types/components/views/TransactionView/BridgeTransactionView.d.ts +22 -0
- package/dist/cjs/types/components/views/TransactionView/BuyNFTTransactionView.d.ts +34 -0
- package/dist/cjs/types/components/views/TransactionView/InteractionTransactionView.d.ts +14 -0
- package/dist/cjs/types/components/views/TransactionView/SwapTransactionView.d.ts +30 -0
- package/dist/cjs/types/components/views/TransactionView/TransactionView.d.ts +21 -0
- package/dist/cjs/types/components/views/TransactionView/TransactionViewLayout.d.ts +10 -0
- package/dist/cjs/types/components/views/TransactionView/index.d.ts +6 -0
- package/dist/cjs/types/components/views/index.d.ts +7 -1
- package/dist/cjs/types/core/utils.d.ts +7 -1
- package/dist/cjs/types/hooks/useRect.d.ts +3 -0
- package/dist/cjs/types/providers/SquidConfigProvider.d.ts +1 -0
- package/dist/cjs/types/stories/badges/IconLabel.stories.d.ts +7 -0
- package/dist/cjs/types/stories/badges/ImageIcon.stories.d.ts +7 -0
- package/dist/cjs/types/stories/badges/Loader.stories.d.ts +0 -1
- package/dist/cjs/types/stories/badges/LoadingSkeleton.stories.d.ts +3 -1
- package/dist/cjs/types/stories/badges/TransactionState.stories.d.ts +15 -0
- package/dist/cjs/types/stories/badges/WalletLink.stories.d.ts +6 -0
- package/dist/cjs/types/stories/buttons/FilterButton.stories.d.ts +7 -0
- package/dist/cjs/types/stories/data/actions.d.ts +223 -0
- package/dist/cjs/types/stories/data/network.d.ts +52 -0
- package/dist/cjs/types/stories/data/transaction.d.ts +49 -0
- package/dist/cjs/types/stories/layout/ExploreLayout.stories.d.ts +6 -0
- package/dist/cjs/types/stories/layout/HashLink.stories.d.ts +11 -0
- package/dist/cjs/types/stories/layout/TokenPair.stories.d.ts +4 -1
- package/dist/cjs/types/stories/layout/TransactionFilters.stories.d.ts +6 -0
- package/dist/cjs/types/stories/layout/TransactionHeader.stories.d.ts +10 -0
- package/dist/cjs/types/stories/layout/TransactionProperties.stories.d.ts +9 -0
- package/dist/cjs/types/stories/layout/TransactionSearch.stories.d.ts +7 -0
- package/dist/cjs/types/stories/{lists/SwapDetailListItem.stories.d.ts → layout/Transfer.stories.d.ts} +2 -3
- package/dist/cjs/types/stories/lists/ListItem.stories.d.ts +1 -0
- package/dist/cjs/types/stories/lists/PropertyListItem.stories.d.ts +9 -0
- package/dist/cjs/types/stories/lists/TransactionAction.stories.d.ts +23 -0
- package/dist/cjs/types/stories/lists/TransactionItem.stories.d.ts +10 -0
- package/dist/cjs/types/stories/views/TransactionView.stories.d.ts +9 -0
- package/dist/cjs/types/types/components.d.ts +12 -4
- package/dist/cjs/types/types/data.d.ts +155 -0
- package/dist/cjs/types/types/index.d.ts +1 -1
- package/dist/esm/fonts/Geist-Variable.woff2 +0 -0
- package/dist/esm/fonts/fonts/Geist-Variable.woff2 +0 -0
- package/dist/esm/index.css +4 -0
- package/dist/esm/index.js +6820 -35463
- package/dist/esm/types/components/badges/IconLabel.d.ts +10 -0
- package/dist/esm/types/components/badges/ImageIcon.d.ts +9 -0
- package/dist/esm/types/components/badges/LoadingSkeleton.d.ts +8 -2
- package/dist/esm/types/components/badges/TransactionState.d.ts +15 -0
- package/dist/esm/types/components/badges/WalletLink.d.ts +6 -0
- package/dist/esm/types/components/badges/index.d.ts +4 -0
- package/dist/esm/types/components/buttons/FilterButton.d.ts +6 -0
- package/dist/esm/types/components/buttons/index.d.ts +1 -0
- package/dist/esm/types/components/icons/Approve.d.ts +1 -0
- package/dist/esm/types/components/icons/Arrow.d.ts +12 -2
- package/dist/esm/types/components/icons/ArrowRotate.d.ts +1 -0
- package/dist/esm/types/components/icons/Bag.d.ts +1 -0
- package/dist/esm/types/components/icons/BoostBadge.d.ts +1 -0
- package/dist/esm/types/components/icons/Calendar.d.ts +1 -0
- package/dist/esm/types/components/icons/Collection.d.ts +1 -0
- package/dist/esm/types/components/icons/Copy.d.ts +5 -0
- package/dist/esm/types/components/icons/Filter.d.ts +1 -0
- package/dist/esm/types/components/icons/HomeIcon.d.ts +3 -0
- package/dist/esm/types/components/icons/ImageSparkle.d.ts +1 -0
- package/dist/esm/types/components/icons/Link.d.ts +2 -0
- package/dist/esm/types/components/icons/Loader.d.ts +3 -3
- package/dist/esm/types/components/icons/NotAllowed.d.ts +1 -0
- package/dist/esm/types/components/icons/PieChart.d.ts +1 -0
- package/dist/esm/types/components/icons/Separator.d.ts +3 -0
- package/dist/esm/types/components/icons/SquareArrowCenter.d.ts +1 -0
- package/dist/esm/types/components/icons/Tag.d.ts +4 -0
- package/dist/esm/types/components/icons/ThumbsUp.d.ts +3 -0
- package/dist/esm/types/components/icons/Tick.d.ts +3 -0
- package/dist/esm/types/components/icons/Timeline.d.ts +11 -0
- package/dist/esm/types/components/layout/Breadcrumb.d.ts +5 -0
- package/dist/esm/types/components/layout/Collapse.d.ts +11 -0
- package/dist/esm/types/components/layout/DescriptionBlocks.d.ts +8 -0
- package/dist/esm/types/components/layout/ExploreLayout.d.ts +7 -0
- package/dist/esm/types/components/layout/HashLink.d.ts +10 -0
- package/dist/esm/types/components/layout/Join.d.ts +7 -0
- package/dist/esm/types/components/layout/TokenPair.d.ts +6 -3
- package/dist/esm/types/components/layout/TransactionFilters.d.ts +20 -0
- package/dist/esm/types/components/layout/TransactionHeader/BridgeHeader.d.ts +11 -0
- package/dist/esm/types/components/layout/TransactionHeader/BuyNFTHeader.d.ts +10 -0
- package/dist/esm/types/components/layout/TransactionHeader/InteractionHeader.d.ts +11 -0
- package/dist/esm/types/components/layout/TransactionHeader/ProfileHeader.d.ts +11 -0
- package/dist/esm/types/components/layout/TransactionHeader/SwapHeader.d.ts +16 -0
- package/dist/esm/types/components/layout/TransactionHeader/TransactionHeader.d.ts +23 -0
- package/dist/esm/types/components/layout/TransactionHeader/TransactionHeaderLayout.d.ts +10 -0
- package/dist/esm/types/components/layout/TransactionHeader/index.d.ts +1 -0
- package/dist/esm/types/components/layout/TransactionProperties/BridgeProperties.d.ts +21 -0
- package/dist/esm/types/components/layout/TransactionProperties/BuyNFTProperties.d.ts +33 -0
- package/dist/esm/types/components/layout/TransactionProperties/InteractionProperties.d.ts +11 -0
- package/dist/esm/types/components/layout/TransactionProperties/PropertiesLayout.d.ts +7 -0
- package/dist/esm/types/components/layout/TransactionProperties/SwapProperties.d.ts +28 -0
- package/dist/esm/types/components/layout/TransactionProperties/TransactionProperties.d.ts +21 -0
- package/dist/esm/types/components/layout/TransactionProperties/index.d.ts +6 -0
- package/dist/esm/types/components/layout/TransactionSearch.d.ts +8 -0
- package/dist/esm/types/components/layout/Transfer.d.ts +9 -0
- package/dist/esm/types/components/layout/index.d.ts +23 -0
- package/dist/esm/types/components/lists/PropertyListItem.d.ts +10 -0
- package/dist/esm/types/components/lists/SwapStepItem.d.ts +3 -3
- package/dist/esm/types/components/lists/TransactionAction/ActionLayout.d.ts +40 -0
- package/dist/esm/types/components/lists/TransactionAction/ApproveAction.d.ts +21 -0
- package/dist/esm/types/components/lists/TransactionAction/BaseActionProps.d.ts +10 -0
- package/dist/esm/types/components/lists/TransactionAction/BridgeAction.d.ts +20 -0
- package/dist/esm/types/components/lists/TransactionAction/FeesAction.d.ts +28 -0
- package/dist/esm/types/components/lists/TransactionAction/IncompleteAction.d.ts +8 -0
- package/dist/esm/types/components/lists/TransactionAction/ReceiveNFTAction.d.ts +21 -0
- package/dist/esm/types/components/lists/TransactionAction/ReceiveTokensAction.d.ts +22 -0
- package/dist/esm/types/components/lists/TransactionAction/SendTokensAction.d.ts +22 -0
- package/dist/esm/types/components/lists/TransactionAction/StakeAction.d.ts +16 -0
- package/dist/esm/types/components/lists/TransactionAction/StartAction.d.ts +8 -0
- package/dist/esm/types/components/lists/TransactionAction/SuccessAction.d.ts +9 -0
- package/dist/esm/types/components/lists/TransactionAction/SwapAction.d.ts +20 -0
- package/dist/esm/types/components/lists/TransactionAction/TransactionAction.d.ts +37 -0
- package/dist/esm/types/components/lists/TransactionAction/WrapAction.d.ts +20 -0
- package/dist/esm/types/components/lists/TransactionAction/index.d.ts +14 -0
- package/dist/esm/types/components/lists/TransactionAction/linkActionTimelineProps.d.ts +2 -0
- package/dist/esm/types/components/lists/TransactionItem.d.ts +25 -0
- package/dist/esm/types/components/lists/index.d.ts +18 -1
- package/dist/esm/types/components/typography/BodyText.d.ts +4 -3
- package/dist/esm/types/components/typography/HeadingText.d.ts +2 -1
- package/dist/esm/types/components/views/TransactionView/BaseTransactionViewProps.d.ts +10 -0
- package/dist/esm/types/components/views/TransactionView/BridgeTransactionView.d.ts +22 -0
- package/dist/esm/types/components/views/TransactionView/BuyNFTTransactionView.d.ts +34 -0
- package/dist/esm/types/components/views/TransactionView/InteractionTransactionView.d.ts +14 -0
- package/dist/esm/types/components/views/TransactionView/SwapTransactionView.d.ts +30 -0
- package/dist/esm/types/components/views/TransactionView/TransactionView.d.ts +21 -0
- package/dist/esm/types/components/views/TransactionView/TransactionViewLayout.d.ts +10 -0
- package/dist/esm/types/components/views/TransactionView/index.d.ts +6 -0
- package/dist/esm/types/components/views/index.d.ts +7 -1
- package/dist/esm/types/core/utils.d.ts +7 -1
- package/dist/esm/types/hooks/useRect.d.ts +3 -0
- package/dist/esm/types/providers/SquidConfigProvider.d.ts +1 -0
- package/dist/esm/types/stories/badges/IconLabel.stories.d.ts +7 -0
- package/dist/esm/types/stories/badges/ImageIcon.stories.d.ts +7 -0
- package/dist/esm/types/stories/badges/Loader.stories.d.ts +0 -1
- package/dist/esm/types/stories/badges/LoadingSkeleton.stories.d.ts +3 -1
- package/dist/esm/types/stories/badges/TransactionState.stories.d.ts +15 -0
- package/dist/esm/types/stories/badges/WalletLink.stories.d.ts +6 -0
- package/dist/esm/types/stories/buttons/FilterButton.stories.d.ts +7 -0
- package/dist/esm/types/stories/data/actions.d.ts +223 -0
- package/dist/esm/types/stories/data/network.d.ts +52 -0
- package/dist/esm/types/stories/data/transaction.d.ts +49 -0
- package/dist/esm/types/stories/layout/ExploreLayout.stories.d.ts +6 -0
- package/dist/esm/types/stories/layout/HashLink.stories.d.ts +11 -0
- package/dist/esm/types/stories/layout/TokenPair.stories.d.ts +4 -1
- package/dist/esm/types/stories/layout/TransactionFilters.stories.d.ts +6 -0
- package/dist/esm/types/stories/layout/TransactionHeader.stories.d.ts +10 -0
- package/dist/esm/types/stories/layout/TransactionProperties.stories.d.ts +9 -0
- package/dist/esm/types/stories/layout/TransactionSearch.stories.d.ts +7 -0
- package/dist/esm/types/stories/{lists/SwapDetailListItem.stories.d.ts → layout/Transfer.stories.d.ts} +2 -3
- package/dist/esm/types/stories/lists/ListItem.stories.d.ts +1 -0
- package/dist/esm/types/stories/lists/PropertyListItem.stories.d.ts +9 -0
- package/dist/esm/types/stories/lists/TransactionAction.stories.d.ts +23 -0
- package/dist/esm/types/stories/lists/TransactionItem.stories.d.ts +10 -0
- package/dist/esm/types/stories/views/TransactionView.stories.d.ts +9 -0
- package/dist/esm/types/types/components.d.ts +12 -4
- package/dist/esm/types/types/data.d.ts +155 -0
- package/dist/esm/types/types/index.d.ts +1 -1
- package/dist/index.d.ts +808 -76
- package/package.json +7 -4
- package/dist/cjs/types/components/lists/SwapDetailListItem.d.ts +0 -9
- package/dist/esm/types/components/lists/SwapDetailListItem.d.ts +0 -9
- package/dist/index.css +0 -2975
- /package/dist/{fonts → cjs/fonts}/Geist-Variable.woff2 +0 -0
- /package/dist/{fonts → cjs/fonts}/fonts/Geist-Variable.woff2 +0 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { ImageIconVariant } from '../../types/components';
|
|
3
|
+
interface IconLabelProps {
|
|
4
|
+
isLoading?: boolean;
|
|
5
|
+
src?: string;
|
|
6
|
+
children?: ReactNode;
|
|
7
|
+
variant?: ImageIconVariant;
|
|
8
|
+
}
|
|
9
|
+
export declare function IconLabel({ src, children, variant }: IconLabelProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ImageIconSize, ImageIconVariant } from '../../types/components';
|
|
2
|
+
interface ImageIconProps {
|
|
3
|
+
src?: string;
|
|
4
|
+
variant?: ImageIconVariant;
|
|
5
|
+
size?: ImageIconSize;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare function ImageIcon({ src, variant, size, className: propsClassName, }: ImageIconProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -1,5 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export declare const LoadingProvider: import("react").Provider<boolean | null>;
|
|
3
|
+
interface LoadingSkeletonProps {
|
|
2
4
|
className?: string;
|
|
3
5
|
height?: string;
|
|
6
|
+
isLoading?: boolean;
|
|
7
|
+
children?: React.ReactNode;
|
|
4
8
|
width?: string;
|
|
5
|
-
}
|
|
9
|
+
}
|
|
10
|
+
export declare function LoadingSkeleton({ className, height, isLoading: isLoadingProp, children, width, }: LoadingSkeletonProps): string | number | boolean | import("react/jsx-runtime").JSX.Element | Iterable<import("react").ReactNode> | null | undefined;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { ActionStatus, TransactionStateVariant } from '../../types/components';
|
|
3
|
+
export declare const statusBgClassMap: Record<ActionStatus, string>;
|
|
4
|
+
export declare const statusTextClassMap: Record<ActionStatus, string>;
|
|
5
|
+
export declare const statusColorClassMap: {
|
|
6
|
+
bg: Record<ActionStatus, string>;
|
|
7
|
+
text: Record<ActionStatus, string>;
|
|
8
|
+
};
|
|
9
|
+
interface TransactionStateProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
10
|
+
status: ActionStatus;
|
|
11
|
+
variant?: TransactionStateVariant;
|
|
12
|
+
icon?: ReactNode;
|
|
13
|
+
}
|
|
14
|
+
export declare function TransactionState({ status, variant, icon, ...props }: TransactionStateProps): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Approve(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export declare function ArrowRightIcon(): import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare function ArrowRightDownIcon(): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare function ArrowRightUpIcon(): import("react/jsx-runtime").JSX.Element;
|
|
2
4
|
export declare function ChevronArrowIcon({ size, className, }: {
|
|
3
5
|
size?: string;
|
|
4
6
|
className?: string;
|
|
@@ -9,7 +11,9 @@ export declare function ChevronLargeDownIcon({ size, className, }: {
|
|
|
9
11
|
size?: string;
|
|
10
12
|
className?: string;
|
|
11
13
|
}): import("react/jsx-runtime").JSX.Element;
|
|
12
|
-
export declare function ChevronTopIcon(
|
|
14
|
+
export declare function ChevronTopIcon({ className }: {
|
|
15
|
+
className?: string;
|
|
16
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
13
17
|
export declare function ChevronLargeRightIcon({ size, className, }: {
|
|
14
18
|
size?: string;
|
|
15
19
|
className?: string;
|
|
@@ -20,14 +24,19 @@ export declare function ArrowLeftIcon({ className, size, }: {
|
|
|
20
24
|
size?: string;
|
|
21
25
|
}): import("react/jsx-runtime").JSX.Element;
|
|
22
26
|
export declare function ArrowRightUpCircleIcon(): import("react/jsx-runtime").JSX.Element;
|
|
27
|
+
export declare function ArrowRightDownCircleIcon(): import("react/jsx-runtime").JSX.Element;
|
|
23
28
|
export declare function ArrowOutOfBoxIcon(): import("react/jsx-runtime").JSX.Element;
|
|
24
29
|
export declare function ChevronGrabberVerticalIcon({ size, className, }: {
|
|
25
30
|
size?: string;
|
|
26
31
|
className?: string;
|
|
27
32
|
}): import("react/jsx-runtime").JSX.Element;
|
|
28
|
-
export declare function SquareArrowTopRight2Icon({ className, size, }: {
|
|
33
|
+
export declare function SquareArrowTopRight2Icon({ className, size, strokeWidth, }: {
|
|
29
34
|
className?: string;
|
|
30
35
|
size?: string;
|
|
36
|
+
strokeWidth?: string;
|
|
37
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
38
|
+
export declare function SquareArrowTopLeftIcon({ size }: {
|
|
39
|
+
size?: string;
|
|
31
40
|
}): import("react/jsx-runtime").JSX.Element;
|
|
32
41
|
export declare function ArrowBottomTopIcon({ className, size, }: {
|
|
33
42
|
className?: string;
|
|
@@ -45,3 +54,4 @@ export declare function ArrowsSwapIcon({ size, className, }: {
|
|
|
45
54
|
size?: string;
|
|
46
55
|
className?: string;
|
|
47
56
|
}): import("react/jsx-runtime").JSX.Element;
|
|
57
|
+
export declare function ArrowUpIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ArrowRotate(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function BagIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function BoostBadge(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function Calendar(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function CollectionIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function FilterIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function ImageSparkle(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
interface LoaderProps extends ComponentProps<'svg'> {
|
|
2
3
|
size?: string;
|
|
3
4
|
strokeWidth?: string;
|
|
4
|
-
invertColors?: boolean;
|
|
5
5
|
}
|
|
6
|
-
export declare function Loader({ size, strokeWidth,
|
|
6
|
+
export declare function Loader({ size, strokeWidth, className, ...props }: LoaderProps): import("react/jsx-runtime").JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function NotAllowedIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function PieChartIcon(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
export declare function PipeSeparator({ className, ...props }: ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare function DotSeparator(props: ComponentProps<'svg'>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function SquareArrowCenter(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
export declare function Timeline({ className, ...props }: ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare namespace Timeline {
|
|
4
|
+
var ArrowDown: (props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
var ArrowReverse: (props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
var ArrowRight: (props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
var ArrowUp: (props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
var CapBottom: (props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
var CapTop: (props: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
var Straight: ({ className, ...props }: import("react").SVGProps<SVGSVGElement>) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
interface CollapseProps extends ComponentProps<'div'> {
|
|
3
|
+
collapsed: boolean;
|
|
4
|
+
collapsedHeight?: number;
|
|
5
|
+
duration?: number;
|
|
6
|
+
}
|
|
7
|
+
export declare function Collapse({ collapsed, collapsedHeight, children, className, duration, ...props }: CollapseProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
interface SizeTransitionProps extends ComponentProps<'div'> {
|
|
9
|
+
}
|
|
10
|
+
export declare function SizeTransition({ children, className, ...props }: SizeTransitionProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
import { DescriptionBlock } from '../../types/components';
|
|
3
|
+
interface DescriptionBlocksProps extends ComponentProps<'div'> {
|
|
4
|
+
blocks: DescriptionBlock[] | string;
|
|
5
|
+
}
|
|
6
|
+
export declare function DescriptionBlocks({ className, blocks: blocksProp, ...props }: DescriptionBlocksProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export declare function Inline({ className, children, ...props }: ComponentProps<'div'>): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
interface HashLinkProps {
|
|
3
|
+
showTx?: boolean;
|
|
4
|
+
hash: string;
|
|
5
|
+
children?: ReactNode;
|
|
6
|
+
showCopyButton?: boolean;
|
|
7
|
+
url?: string;
|
|
8
|
+
}
|
|
9
|
+
export declare function HashLink({ showTx, hash, showCopyButton, url, children, }: HashLinkProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -1,12 +1,15 @@
|
|
|
1
|
+
import { TokenPairSize, TokenPairVariant } from '../../types/components';
|
|
1
2
|
interface TokenPairProps {
|
|
2
3
|
firstToken: {
|
|
3
|
-
|
|
4
|
+
logoURI: string;
|
|
4
5
|
bgColor: string;
|
|
5
6
|
};
|
|
6
7
|
secondToken: {
|
|
7
|
-
|
|
8
|
+
logoURI: string;
|
|
8
9
|
bgColor: string;
|
|
9
10
|
};
|
|
11
|
+
variant?: TokenPairVariant;
|
|
12
|
+
size?: TokenPairSize;
|
|
10
13
|
}
|
|
11
|
-
export declare function TokenPair({ firstToken, secondToken }: TokenPairProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
+
export declare function TokenPair({ firstToken, secondToken, variant, size, }: TokenPairProps): import("react/jsx-runtime").JSX.Element;
|
|
12
15
|
export {};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import 'react-day-picker/dist/style.css';
|
|
2
|
+
import { ChainTypeFilter, StatusFilter as TStatusFilter } from '../../types/components';
|
|
3
|
+
interface TransactionFiltersProps {
|
|
4
|
+
chainType: ChainTypeFilter;
|
|
5
|
+
setChainType: (chainType: ChainTypeFilter) => void;
|
|
6
|
+
chain: string | null;
|
|
7
|
+
setChain: (chain: string | null) => void;
|
|
8
|
+
fromDate: Date | null;
|
|
9
|
+
setFromDate: (fromDate: Date | null) => void;
|
|
10
|
+
toDate: Date | null;
|
|
11
|
+
setToDate: (toDate: Date | null) => void;
|
|
12
|
+
status: TStatusFilter[];
|
|
13
|
+
setStatus: (status: TStatusFilter[]) => void;
|
|
14
|
+
chains: {
|
|
15
|
+
name: string;
|
|
16
|
+
logoURI: string;
|
|
17
|
+
}[];
|
|
18
|
+
}
|
|
19
|
+
export declare function TransactionFilters({ chainType, setChainType, chain, setChain, fromDate, setFromDate, toDate, setToDate, status, setStatus, chains, }: TransactionFiltersProps): import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ActionStatus } from '../../../types/components';
|
|
2
|
+
interface BridgeHeaderProps {
|
|
3
|
+
tokenLogoURI: string;
|
|
4
|
+
chainLogoURI: string;
|
|
5
|
+
title?: string;
|
|
6
|
+
hash: string;
|
|
7
|
+
url?: string;
|
|
8
|
+
status: ActionStatus;
|
|
9
|
+
}
|
|
10
|
+
export declare function BridgeHeader({ tokenLogoURI, chainLogoURI, title, hash, url, status, }: BridgeHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ActionStatus } from '../../../types/components';
|
|
2
|
+
interface BuyNFTHeaderProps {
|
|
3
|
+
imageUrl: string;
|
|
4
|
+
title?: string;
|
|
5
|
+
hash: string;
|
|
6
|
+
url?: string;
|
|
7
|
+
status: ActionStatus;
|
|
8
|
+
}
|
|
9
|
+
export declare function BuyNFTHeader({ imageUrl, title, hash, url, status, }: BuyNFTHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { ActionStatus } from '../../../types/components';
|
|
3
|
+
interface InteractionHeaderProps {
|
|
4
|
+
title?: string;
|
|
5
|
+
image?: ReactNode;
|
|
6
|
+
hash: string;
|
|
7
|
+
url?: string;
|
|
8
|
+
status: ActionStatus;
|
|
9
|
+
}
|
|
10
|
+
export declare function InteractionHeader({ title, image, hash, url, status, }: InteractionHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface ProfileHeaderProps {
|
|
2
|
+
imageUrl: string;
|
|
3
|
+
title: string;
|
|
4
|
+
wallet: {
|
|
5
|
+
imageURI: string;
|
|
6
|
+
address: string;
|
|
7
|
+
};
|
|
8
|
+
amount: string;
|
|
9
|
+
}
|
|
10
|
+
export declare function ProfileHeader({ imageUrl, title, wallet, amount, }: ProfileHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { ActionStatus } from '../../../types/components';
|
|
2
|
+
export interface SwapHeaderProps {
|
|
3
|
+
fromToken: {
|
|
4
|
+
logoURI: string;
|
|
5
|
+
bgColor: string;
|
|
6
|
+
};
|
|
7
|
+
toToken: {
|
|
8
|
+
logoURI: string;
|
|
9
|
+
bgColor: string;
|
|
10
|
+
};
|
|
11
|
+
title?: string;
|
|
12
|
+
hash: string;
|
|
13
|
+
url?: string;
|
|
14
|
+
status: ActionStatus;
|
|
15
|
+
}
|
|
16
|
+
export declare function SwapHeader({ fromToken, toToken, title, hash, url, status, }: SwapHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
import { BridgeHeader } from './BridgeHeader';
|
|
3
|
+
import { BuyNFTHeader } from './BuyNFTHeader';
|
|
4
|
+
import { InteractionHeader } from './InteractionHeader';
|
|
5
|
+
import { ProfileHeader } from './ProfileHeader';
|
|
6
|
+
import { SwapHeader } from './SwapHeader';
|
|
7
|
+
declare const headerComponentsMap: {
|
|
8
|
+
readonly swap: typeof SwapHeader;
|
|
9
|
+
readonly buy_nft: typeof BuyNFTHeader;
|
|
10
|
+
readonly interaction: typeof InteractionHeader;
|
|
11
|
+
readonly bridge: typeof BridgeHeader;
|
|
12
|
+
readonly profile: typeof ProfileHeader;
|
|
13
|
+
};
|
|
14
|
+
type TransactionHeaderComponents = typeof headerComponentsMap;
|
|
15
|
+
export type TransactionHeaderType = keyof TransactionHeaderComponents;
|
|
16
|
+
export type TransactionHeaderProps = {
|
|
17
|
+
[Type in TransactionHeaderType]: {
|
|
18
|
+
type: Type;
|
|
19
|
+
props: ComponentProps<TransactionHeaderComponents[Type]>;
|
|
20
|
+
};
|
|
21
|
+
}[TransactionHeaderType];
|
|
22
|
+
export declare function TransactionHeader({ type, props }: TransactionHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
import { ActionStatus } from '../../../types/components';
|
|
3
|
+
interface TransactionHeaderLayoutProps {
|
|
4
|
+
status?: ActionStatus;
|
|
5
|
+
title: string;
|
|
6
|
+
image?: ReactNode;
|
|
7
|
+
children?: ReactNode;
|
|
8
|
+
}
|
|
9
|
+
export declare function TransactionHeaderLayout({ status, title, image, children, }: TransactionHeaderLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './TransactionHeader';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
interface BridgePropertiesProps {
|
|
2
|
+
amount: string;
|
|
3
|
+
token: {
|
|
4
|
+
logoURI: string;
|
|
5
|
+
bgColor: string;
|
|
6
|
+
symbol: string;
|
|
7
|
+
};
|
|
8
|
+
fromChain: {
|
|
9
|
+
logoURI: string;
|
|
10
|
+
name: string;
|
|
11
|
+
};
|
|
12
|
+
toChain: {
|
|
13
|
+
logoURI: string;
|
|
14
|
+
name: string;
|
|
15
|
+
};
|
|
16
|
+
wallet: string;
|
|
17
|
+
boosted?: boolean;
|
|
18
|
+
timeToComplete: string;
|
|
19
|
+
}
|
|
20
|
+
export declare function BridgeProperties({ amount, token, fromChain, toChain, wallet, boosted, timeToComplete, }: BridgePropertiesProps): import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
export default BridgeProperties;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
interface BuyNFTPropertiesProps {
|
|
2
|
+
title: string;
|
|
3
|
+
imageURI: string;
|
|
4
|
+
collection: {
|
|
5
|
+
imageURI: string;
|
|
6
|
+
name: string;
|
|
7
|
+
};
|
|
8
|
+
price: string;
|
|
9
|
+
token: {
|
|
10
|
+
logoURI: string;
|
|
11
|
+
symbol: string;
|
|
12
|
+
};
|
|
13
|
+
marketplace: {
|
|
14
|
+
logoURI: string;
|
|
15
|
+
name: string;
|
|
16
|
+
};
|
|
17
|
+
fromChain: {
|
|
18
|
+
logoURI: string;
|
|
19
|
+
name: string;
|
|
20
|
+
};
|
|
21
|
+
toChain: {
|
|
22
|
+
logoURI: string;
|
|
23
|
+
name: string;
|
|
24
|
+
};
|
|
25
|
+
fromAddress: string;
|
|
26
|
+
toAddress: string;
|
|
27
|
+
boosted?: boolean;
|
|
28
|
+
timeToComplete: string;
|
|
29
|
+
tokenId: string;
|
|
30
|
+
nftType: string;
|
|
31
|
+
}
|
|
32
|
+
export declare function BuyNFTProperties({ title, imageURI, collection, price, token, marketplace, fromChain, toChain, fromAddress, toAddress, boosted, timeToComplete, tokenId, nftType, }: BuyNFTPropertiesProps): import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
interface InteractionPropertiesProps {
|
|
2
|
+
chain: {
|
|
3
|
+
logoURI: string;
|
|
4
|
+
name: string;
|
|
5
|
+
};
|
|
6
|
+
wallet: string;
|
|
7
|
+
boosted?: boolean;
|
|
8
|
+
timeToComplete: string;
|
|
9
|
+
}
|
|
10
|
+
export declare function InteractionProperties({ chain, wallet, boosted, timeToComplete, }: InteractionPropertiesProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export interface SwapPropertiesProps {
|
|
2
|
+
fromAmount: string;
|
|
3
|
+
fromToken: {
|
|
4
|
+
logoURI: string;
|
|
5
|
+
bgColor: string;
|
|
6
|
+
symbol: string;
|
|
7
|
+
};
|
|
8
|
+
toAmount: string;
|
|
9
|
+
toToken: {
|
|
10
|
+
logoURI: string;
|
|
11
|
+
bgColor: string;
|
|
12
|
+
symbol: string;
|
|
13
|
+
};
|
|
14
|
+
fromChain: {
|
|
15
|
+
logoURI: string;
|
|
16
|
+
name: string;
|
|
17
|
+
};
|
|
18
|
+
toChain: {
|
|
19
|
+
logoURI: string;
|
|
20
|
+
name: string;
|
|
21
|
+
};
|
|
22
|
+
fromAddress: string;
|
|
23
|
+
toAddress: string;
|
|
24
|
+
exchangeRate: string;
|
|
25
|
+
boosted?: boolean;
|
|
26
|
+
timeToComplete: string;
|
|
27
|
+
}
|
|
28
|
+
export declare function SwapProperties({ fromAmount, fromToken, toAmount, toToken, fromChain, toChain, fromAddress, toAddress, exchangeRate, boosted, timeToComplete, }: SwapPropertiesProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { ComponentProps } from 'react';
|
|
2
|
+
import BridgeProperties from './BridgeProperties';
|
|
3
|
+
import { BuyNFTProperties } from './BuyNFTProperties';
|
|
4
|
+
import { InteractionProperties } from './InteractionProperties';
|
|
5
|
+
import { SwapProperties } from './SwapProperties';
|
|
6
|
+
declare const propertiesComponentsMap: {
|
|
7
|
+
readonly swap: typeof SwapProperties;
|
|
8
|
+
readonly buy_nft: typeof BuyNFTProperties;
|
|
9
|
+
readonly interaction: typeof InteractionProperties;
|
|
10
|
+
readonly bridge: typeof BridgeProperties;
|
|
11
|
+
};
|
|
12
|
+
type TransactionPropertiesComponents = typeof propertiesComponentsMap;
|
|
13
|
+
export type TransactionPropertiesType = keyof TransactionPropertiesComponents;
|
|
14
|
+
export type TransactionPropertiesProps = {
|
|
15
|
+
[Type in TransactionPropertiesType]: {
|
|
16
|
+
type: Type;
|
|
17
|
+
props: ComponentProps<TransactionPropertiesComponents[Type]>;
|
|
18
|
+
};
|
|
19
|
+
}[TransactionPropertiesType];
|
|
20
|
+
export declare function TransactionProperties({ type, props, }: TransactionPropertiesProps): import("react/jsx-runtime").JSX.Element;
|
|
21
|
+
export {};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
interface TransactionSearchProps {
|
|
3
|
+
query: string;
|
|
4
|
+
setQuery: (query: string) => void;
|
|
5
|
+
children?: ReactNode;
|
|
6
|
+
}
|
|
7
|
+
export declare function TransactionSearch({ query, setQuery, children, }: TransactionSearchProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
interface FromToProps {
|
|
3
|
+
isLoading?: boolean;
|
|
4
|
+
from?: ReactNode;
|
|
5
|
+
to?: ReactNode;
|
|
6
|
+
className?: string;
|
|
7
|
+
}
|
|
8
|
+
export declare function Transfer({ isLoading, from, to, className }: FromToProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -1,8 +1,15 @@
|
|
|
1
|
+
export * from './AnimationWrapper';
|
|
1
2
|
export * from './Boost';
|
|
3
|
+
export * from './Breadcrumb';
|
|
4
|
+
export * from './Collapse';
|
|
5
|
+
export * from './DescriptionBlocks';
|
|
2
6
|
export * from './DetailsToolbar';
|
|
3
7
|
export * from './DropdownMenu';
|
|
4
8
|
export * from './ErrorMessage';
|
|
9
|
+
export * from './ExploreLayout';
|
|
10
|
+
export * from './HashLink';
|
|
5
11
|
export * from './InfoBox';
|
|
12
|
+
export * from './Join';
|
|
6
13
|
export * from './Menu';
|
|
7
14
|
export * from './Modal';
|
|
8
15
|
export * from './ModalContent';
|
|
@@ -13,3 +20,19 @@ export * from './SwapConfiguration';
|
|
|
13
20
|
export * from './SwapProgressViewHeader';
|
|
14
21
|
export * from './SwapStepsCollapsed';
|
|
15
22
|
export * from './TokenPair';
|
|
23
|
+
export * from './TransactionFilters';
|
|
24
|
+
export * from './TransactionHeader/BridgeHeader';
|
|
25
|
+
export * from './TransactionHeader/BuyNFTHeader';
|
|
26
|
+
export * from './TransactionHeader/InteractionHeader';
|
|
27
|
+
export * from './TransactionHeader/ProfileHeader';
|
|
28
|
+
export * from './TransactionHeader/SwapHeader';
|
|
29
|
+
export * from './TransactionHeader/TransactionHeader';
|
|
30
|
+
export * from './TransactionHeader/TransactionHeaderLayout';
|
|
31
|
+
export * from './TransactionProperties/BridgeProperties';
|
|
32
|
+
export * from './TransactionProperties/BuyNFTProperties';
|
|
33
|
+
export * from './TransactionProperties/InteractionProperties';
|
|
34
|
+
export * from './TransactionProperties/PropertiesLayout';
|
|
35
|
+
export * from './TransactionProperties/SwapProperties';
|
|
36
|
+
export * from './TransactionProperties/TransactionProperties';
|
|
37
|
+
export * from './TransactionSearch';
|
|
38
|
+
export * from './Transfer';
|