@0xsquid/ui 3.0.1 → 3.1.0
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/cjs/index.js +18495 -841
- package/dist/cjs/types/components/badges/Drip.d.ts +13 -0
- package/dist/cjs/types/components/badges/index.d.ts +1 -0
- package/dist/cjs/types/components/buttons/index.d.ts +0 -1
- package/dist/cjs/types/components/feedback/LoadingSkeleton.d.ts +2 -1
- package/dist/cjs/types/components/icons/Arrow.d.ts +3 -0
- package/dist/cjs/types/components/icons/Generic.d.ts +4 -0
- package/dist/cjs/types/components/icons/ThumbsUp.d.ts +2 -1
- package/dist/cjs/types/components/layout/AnimationWrapper.d.ts +7 -3
- package/dist/cjs/types/components/layout/Card.d.ts +8 -0
- package/dist/cjs/types/components/layout/Collapse.d.ts +3 -1
- package/dist/cjs/types/components/layout/TokenDetailsView.d.ts +1 -0
- package/dist/cjs/types/components/layout/TransactionHeader/TransactionHeaderLayout.d.ts +10 -6
- package/dist/cjs/types/components/layout/TransactionProperties/TransactionProperties.d.ts +4 -8
- package/dist/cjs/types/components/layout/index.d.ts +1 -11
- package/dist/cjs/types/components/lists/TokenGroup.d.ts +2 -2
- package/dist/cjs/types/components/lists/TransactionAction/FeesAction.d.ts +2 -2
- package/dist/cjs/types/components/lists/TransactionItem.d.ts +35 -20
- package/dist/cjs/types/components/lists/TransactionItemSkeleton.d.ts +1 -0
- package/dist/cjs/types/components/lists/index.d.ts +1 -0
- package/dist/cjs/types/components/views/TransactionNotFoundView.d.ts +1 -0
- package/dist/cjs/types/components/views/TransactionView/BaseTransactionViewProps.d.ts +23 -3
- package/dist/cjs/types/components/views/TransactionView/BridgeTransactionView.d.ts +10 -3
- package/dist/cjs/types/components/views/TransactionView/BuyNFTTransactionView.d.ts +9 -11
- package/dist/cjs/types/components/views/TransactionView/InteractionTransactionView.d.ts +10 -5
- package/dist/cjs/types/components/views/TransactionView/SwapTransactionView.d.ts +8 -3
- package/dist/cjs/types/components/views/TransactionView/TransactionView.d.ts +11 -6
- package/dist/cjs/types/components/views/index.d.ts +1 -0
- package/dist/cjs/types/core/utils.d.ts +1 -0
- package/dist/cjs/types/stories/badges/Drip.stories.d.ts +7 -0
- package/dist/cjs/types/stories/data/actions.d.ts +5 -0
- package/dist/cjs/types/stories/data/network.d.ts +2 -0
- package/dist/cjs/types/stories/layout/Card.stories.d.ts +6 -0
- package/dist/cjs/types/stories/layout/TokenDetailsView.stories.d.ts +1 -0
- package/dist/cjs/types/stories/lists/TokenGroup.stories.d.ts +2 -0
- package/dist/cjs/types/stories/lists/TransactionItem.stories.d.ts +182 -12
- package/dist/cjs/types/stories/lists/TransactionItemSkeleton.stories.d.ts +6 -0
- package/dist/cjs/types/stories/views/TransactionNotFoundView.stories.d.ts +6 -0
- package/dist/cjs/types/stories/views/TransactionView.stories.d.ts +634 -7
- package/dist/cjs/types/types/components.d.ts +1 -0
- package/dist/esm/index.js +18240 -581
- package/dist/esm/types/components/badges/Drip.d.ts +13 -0
- package/dist/esm/types/components/badges/index.d.ts +1 -0
- package/dist/esm/types/components/buttons/index.d.ts +0 -1
- package/dist/esm/types/components/feedback/LoadingSkeleton.d.ts +2 -1
- package/dist/esm/types/components/icons/Arrow.d.ts +3 -0
- package/dist/esm/types/components/icons/Generic.d.ts +4 -0
- package/dist/esm/types/components/icons/ThumbsUp.d.ts +2 -1
- package/dist/esm/types/components/layout/AnimationWrapper.d.ts +7 -3
- package/dist/esm/types/components/layout/Card.d.ts +8 -0
- package/dist/esm/types/components/layout/Collapse.d.ts +3 -1
- package/dist/esm/types/components/layout/TokenDetailsView.d.ts +1 -0
- package/dist/esm/types/components/layout/TransactionHeader/TransactionHeaderLayout.d.ts +10 -6
- package/dist/esm/types/components/layout/TransactionProperties/TransactionProperties.d.ts +4 -8
- package/dist/esm/types/components/layout/index.d.ts +1 -11
- package/dist/esm/types/components/lists/TokenGroup.d.ts +2 -2
- package/dist/esm/types/components/lists/TransactionAction/FeesAction.d.ts +2 -2
- package/dist/esm/types/components/lists/TransactionItem.d.ts +35 -20
- package/dist/esm/types/components/lists/TransactionItemSkeleton.d.ts +1 -0
- package/dist/esm/types/components/lists/index.d.ts +1 -0
- package/dist/esm/types/components/views/TransactionNotFoundView.d.ts +1 -0
- package/dist/esm/types/components/views/TransactionView/BaseTransactionViewProps.d.ts +23 -3
- package/dist/esm/types/components/views/TransactionView/BridgeTransactionView.d.ts +10 -3
- package/dist/esm/types/components/views/TransactionView/BuyNFTTransactionView.d.ts +9 -11
- package/dist/esm/types/components/views/TransactionView/InteractionTransactionView.d.ts +10 -5
- package/dist/esm/types/components/views/TransactionView/SwapTransactionView.d.ts +8 -3
- package/dist/esm/types/components/views/TransactionView/TransactionView.d.ts +11 -6
- package/dist/esm/types/components/views/index.d.ts +1 -0
- package/dist/esm/types/core/utils.d.ts +1 -0
- package/dist/esm/types/stories/badges/Drip.stories.d.ts +7 -0
- package/dist/esm/types/stories/data/actions.d.ts +5 -0
- package/dist/esm/types/stories/data/network.d.ts +2 -0
- package/dist/esm/types/stories/layout/Card.stories.d.ts +6 -0
- package/dist/esm/types/stories/layout/TokenDetailsView.stories.d.ts +1 -0
- package/dist/esm/types/stories/lists/TokenGroup.stories.d.ts +2 -0
- package/dist/esm/types/stories/lists/TransactionItem.stories.d.ts +182 -12
- package/dist/esm/types/stories/lists/TransactionItemSkeleton.stories.d.ts +6 -0
- package/dist/esm/types/stories/views/TransactionNotFoundView.stories.d.ts +6 -0
- package/dist/esm/types/stories/views/TransactionView.stories.d.ts +634 -7
- package/dist/esm/types/types/components.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +153 -241
- package/package.json +3 -3
- package/dist/cjs/types/components/layout/TransactionHeader/BridgeHeader.d.ts +0 -11
- package/dist/cjs/types/components/layout/TransactionHeader/BuyNFTHeader.d.ts +0 -10
- package/dist/cjs/types/components/layout/TransactionHeader/InteractionHeader.d.ts +0 -11
- package/dist/cjs/types/components/layout/TransactionHeader/ProfileHeader.d.ts +0 -11
- package/dist/cjs/types/components/layout/TransactionHeader/SwapHeader.d.ts +0 -16
- package/dist/cjs/types/components/layout/TransactionHeader/TransactionHeader.d.ts +0 -23
- package/dist/cjs/types/components/layout/TransactionHeader/index.d.ts +0 -1
- package/dist/cjs/types/components/layout/TransactionProperties/BridgeProperties.d.ts +0 -21
- package/dist/cjs/types/components/layout/TransactionProperties/BuyNFTProperties.d.ts +0 -33
- package/dist/cjs/types/components/layout/TransactionProperties/InteractionProperties.d.ts +0 -11
- package/dist/cjs/types/components/layout/TransactionProperties/SwapProperties.d.ts +0 -28
- package/dist/cjs/types/components/layout/TransactionProperties/index.d.ts +0 -6
- package/dist/cjs/types/stories/layout/TransactionHeader.stories.d.ts +0 -10
- package/dist/cjs/types/stories/layout/TransactionProperties.stories.d.ts +0 -9
- package/dist/esm/types/components/layout/TransactionHeader/BridgeHeader.d.ts +0 -11
- package/dist/esm/types/components/layout/TransactionHeader/BuyNFTHeader.d.ts +0 -10
- package/dist/esm/types/components/layout/TransactionHeader/InteractionHeader.d.ts +0 -11
- package/dist/esm/types/components/layout/TransactionHeader/ProfileHeader.d.ts +0 -11
- package/dist/esm/types/components/layout/TransactionHeader/SwapHeader.d.ts +0 -16
- package/dist/esm/types/components/layout/TransactionHeader/TransactionHeader.d.ts +0 -23
- package/dist/esm/types/components/layout/TransactionHeader/index.d.ts +0 -1
- package/dist/esm/types/components/layout/TransactionProperties/BridgeProperties.d.ts +0 -21
- package/dist/esm/types/components/layout/TransactionProperties/BuyNFTProperties.d.ts +0 -33
- package/dist/esm/types/components/layout/TransactionProperties/InteractionProperties.d.ts +0 -11
- package/dist/esm/types/components/layout/TransactionProperties/SwapProperties.d.ts +0 -28
- package/dist/esm/types/components/layout/TransactionProperties/index.d.ts +0 -6
- package/dist/esm/types/stories/layout/TransactionHeader.stories.d.ts +0 -10
- package/dist/esm/types/stories/layout/TransactionProperties.stories.d.ts +0 -9
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
import react__default, { ReactNode, ComponentProps, ChangeEvent } from 'react';
|
|
5
|
-
import {
|
|
5
|
+
import { LottieComponentProps } from 'lottie-react';
|
|
6
6
|
import * as motion_react from 'motion/react';
|
|
7
7
|
import { motion } from 'motion/react';
|
|
8
8
|
import { Config } from 'tailwindcss';
|
|
@@ -40,6 +40,7 @@ declare enum SwapState {
|
|
|
40
40
|
type ThemeType = "light" | "dark";
|
|
41
41
|
type ActionStatus = "pending" | "waiting" | "ongoing" | "executed" | "success" | "error" | "warning";
|
|
42
42
|
type TransactionStateVariant = "full" | "compact" | "small";
|
|
43
|
+
type TransactionType = "swap" | "buy_nft" | "interaction" | "bridge";
|
|
43
44
|
type TokenPairVariant = "horizontal" | "vertical";
|
|
44
45
|
type TokenPairSize = "small" | "medium";
|
|
45
46
|
type ImageSize = "small" | "medium" | "large" | "xlarge" | "xxlarge";
|
|
@@ -77,6 +78,19 @@ interface BadgeImageProps {
|
|
|
77
78
|
}
|
|
78
79
|
declare function BadgeImage({ image, badge, extraMarginForBadge, className, }: BadgeImageProps): false | react_jsx_runtime.JSX.Element;
|
|
79
80
|
|
|
81
|
+
interface DripProps {
|
|
82
|
+
direction?: "horizontal" | "vertical";
|
|
83
|
+
to: {
|
|
84
|
+
logoURI: string;
|
|
85
|
+
bgColor: string;
|
|
86
|
+
};
|
|
87
|
+
from: {
|
|
88
|
+
logoURI: string;
|
|
89
|
+
bgColor: string;
|
|
90
|
+
};
|
|
91
|
+
}
|
|
92
|
+
declare const Drip: ({ direction, from, to }: DripProps) => react_jsx_runtime.JSX.Element;
|
|
93
|
+
|
|
80
94
|
interface IconLabelProps {
|
|
81
95
|
src?: string;
|
|
82
96
|
children?: ReactNode;
|
|
@@ -104,8 +118,9 @@ declare function LoadingSkeleton({ className, height, isLoading: isLoadingProp,
|
|
|
104
118
|
interface LoadingTextProps$1 extends ComponentProps<"span"> {
|
|
105
119
|
width?: string | [string, string];
|
|
106
120
|
isLoading?: boolean;
|
|
121
|
+
showGradient?: boolean;
|
|
107
122
|
}
|
|
108
|
-
declare function TextSkeleton({ className, width, children, isLoading, ...props }: LoadingTextProps$1): string | number | boolean | Iterable<react.ReactNode> | react_jsx_runtime.JSX.Element | null | undefined;
|
|
123
|
+
declare function TextSkeleton({ className, width, children, isLoading, showGradient, ...props }: LoadingTextProps$1): string | number | boolean | Iterable<react.ReactNode> | react_jsx_runtime.JSX.Element | null | undefined;
|
|
109
124
|
interface LoadingBlockProps extends ComponentProps<"div"> {
|
|
110
125
|
isLoading?: boolean;
|
|
111
126
|
}
|
|
@@ -180,7 +195,7 @@ declare enum UserInputType {
|
|
|
180
195
|
USD = 1
|
|
181
196
|
}
|
|
182
197
|
interface UseNumericInputOptions {
|
|
183
|
-
token: Pick<Token$
|
|
198
|
+
token: Pick<Token$4, "decimals" | "price">;
|
|
184
199
|
onAmountChange: (tokenAmount: string) => void;
|
|
185
200
|
forcedAmount?: string;
|
|
186
201
|
formatIfVerySmall: {
|
|
@@ -224,13 +239,13 @@ interface TooltipProps {
|
|
|
224
239
|
}
|
|
225
240
|
declare function Tooltip(props: TooltipProps): react_jsx_runtime.JSX.Element;
|
|
226
241
|
|
|
227
|
-
interface Token$
|
|
242
|
+
interface Token$4 {
|
|
228
243
|
price: number;
|
|
229
244
|
symbol: string;
|
|
230
245
|
decimals: number;
|
|
231
246
|
}
|
|
232
247
|
interface NumericInputProps {
|
|
233
|
-
token: Token$
|
|
248
|
+
token: Token$4;
|
|
234
249
|
onAmountChange: (tokenAmount: string) => void;
|
|
235
250
|
forcedAmount?: string;
|
|
236
251
|
formatIfVerySmall?: {
|
|
@@ -429,6 +444,9 @@ declare function ArrowLeftIcon({ className, size, }: {
|
|
|
429
444
|
size?: string;
|
|
430
445
|
}): react_jsx_runtime.JSX.Element;
|
|
431
446
|
declare function ArrowRightUpCircleIcon(): react_jsx_runtime.JSX.Element;
|
|
447
|
+
declare function ArrowRightUpCircleFilledIcon({ className, }: {
|
|
448
|
+
className?: string;
|
|
449
|
+
}): react_jsx_runtime.JSX.Element;
|
|
432
450
|
declare function ArrowRightDownCircleIcon(): react_jsx_runtime.JSX.Element;
|
|
433
451
|
declare function ArrowOutOfBoxIcon(): react_jsx_runtime.JSX.Element;
|
|
434
452
|
declare function ChevronGrabberVerticalIcon({ size, className, }: {
|
|
@@ -636,6 +654,10 @@ declare function GhostIcon({ size, className, }: {
|
|
|
636
654
|
size?: string;
|
|
637
655
|
className?: string;
|
|
638
656
|
}): react_jsx_runtime.JSX.Element;
|
|
657
|
+
declare function GhostCircleIcon({ size, className, }: {
|
|
658
|
+
size?: string;
|
|
659
|
+
className?: string;
|
|
660
|
+
}): react_jsx_runtime.JSX.Element;
|
|
639
661
|
declare function SettingsSliderIcon({ size, className, }: {
|
|
640
662
|
size?: string;
|
|
641
663
|
className?: string;
|
|
@@ -930,7 +952,8 @@ declare function TagIcon({ size }: {
|
|
|
930
952
|
}): react_jsx_runtime.JSX.Element;
|
|
931
953
|
declare function TagIconFilled(): react_jsx_runtime.JSX.Element;
|
|
932
954
|
|
|
933
|
-
declare function ThumbsUp({ fill }: {
|
|
955
|
+
declare function ThumbsUp({ size, fill, }: {
|
|
956
|
+
size?: string;
|
|
934
957
|
fill?: boolean;
|
|
935
958
|
}): react_jsx_runtime.JSX.Element;
|
|
936
959
|
|
|
@@ -984,9 +1007,13 @@ declare function CrossedOutSunSolidIcon({ size, className, }: {
|
|
|
984
1007
|
className?: string;
|
|
985
1008
|
}): react_jsx_runtime.JSX.Element;
|
|
986
1009
|
|
|
987
|
-
interface Props extends
|
|
1010
|
+
interface Props extends Omit<LottieComponentProps, "src"> {
|
|
1011
|
+
style?: React.CSSProperties;
|
|
1012
|
+
autoplay?: boolean;
|
|
1013
|
+
loop?: boolean;
|
|
1014
|
+
src: unknown;
|
|
988
1015
|
}
|
|
989
|
-
declare const AnimationWrapper: (playerProps: Props) => react_jsx_runtime.JSX.Element;
|
|
1016
|
+
declare const AnimationWrapper: ({ src, ...playerProps }: Props) => react_jsx_runtime.JSX.Element;
|
|
990
1017
|
declare function AnimationCard({ children }: {
|
|
991
1018
|
children?: React.ReactNode;
|
|
992
1019
|
}): react_jsx_runtime.JSX.Element;
|
|
@@ -1013,6 +1040,13 @@ declare function Breadcrumb({ children, className, }: {
|
|
|
1013
1040
|
className?: string;
|
|
1014
1041
|
}): react_jsx_runtime.JSX.Element;
|
|
1015
1042
|
|
|
1043
|
+
interface CardProps {
|
|
1044
|
+
children: React.ReactNode;
|
|
1045
|
+
variant: "transparent";
|
|
1046
|
+
className?: string;
|
|
1047
|
+
}
|
|
1048
|
+
declare const Card: ({ variant, className, children, }: CardProps) => react_jsx_runtime.JSX.Element;
|
|
1049
|
+
|
|
1016
1050
|
interface CollapseProps extends ComponentProps<"div"> {
|
|
1017
1051
|
collapsed: boolean;
|
|
1018
1052
|
collapsedHeight?: number;
|
|
@@ -1022,7 +1056,9 @@ interface CollapseProps extends ComponentProps<"div"> {
|
|
|
1022
1056
|
declare function Collapse({ collapsed, collapsedHeight, children, className, duration, contentsClassName, ...props }: CollapseProps): react_jsx_runtime.JSX.Element;
|
|
1023
1057
|
interface SizeTransitionProps extends ComponentProps<"div"> {
|
|
1024
1058
|
}
|
|
1025
|
-
declare function SizeTransition({ children, className, ...props }: SizeTransitionProps
|
|
1059
|
+
declare function SizeTransition({ children, className, disableInitialAnimation, ...props }: SizeTransitionProps & {
|
|
1060
|
+
disableInitialAnimation?: boolean;
|
|
1061
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1026
1062
|
|
|
1027
1063
|
interface CollapsibleMenuProps {
|
|
1028
1064
|
menuRef: React.MutableRefObject<HTMLDivElement | null>;
|
|
@@ -1324,11 +1360,12 @@ interface ToastProps {
|
|
|
1324
1360
|
}
|
|
1325
1361
|
declare function Toast({ headerContent, actionsContent, description, chipLabel, title, }: ToastProps): react_jsx_runtime.JSX.Element;
|
|
1326
1362
|
|
|
1327
|
-
interface Token$
|
|
1363
|
+
interface Token$3 {
|
|
1328
1364
|
address: string;
|
|
1329
1365
|
name: string;
|
|
1330
1366
|
symbol: string;
|
|
1331
1367
|
image: string;
|
|
1368
|
+
fallbackImage?: string;
|
|
1332
1369
|
chainId: string;
|
|
1333
1370
|
}
|
|
1334
1371
|
interface Chain {
|
|
@@ -1339,7 +1376,7 @@ type Timeframe = "1H" | "1D" | "1W" | "1Y";
|
|
|
1339
1376
|
interface TokenDetailsViewProps {
|
|
1340
1377
|
isOpen: boolean;
|
|
1341
1378
|
onClose: () => void;
|
|
1342
|
-
token: Token$
|
|
1379
|
+
token: Token$3;
|
|
1343
1380
|
chain: Chain;
|
|
1344
1381
|
tokenPrice: string;
|
|
1345
1382
|
priceChange: string | number;
|
|
@@ -1401,151 +1438,18 @@ interface TransactionFiltersProps {
|
|
|
1401
1438
|
}
|
|
1402
1439
|
declare function TransactionFilters({ chainType, setChainType, chain, setChain, fromDate, setFromDate, toDate, setToDate, status, setStatus, chains, }: TransactionFiltersProps): react_jsx_runtime.JSX.Element;
|
|
1403
1440
|
|
|
1404
|
-
interface
|
|
1405
|
-
tokenLogoURI: string;
|
|
1406
|
-
chainLogoURI: string;
|
|
1407
|
-
title?: string;
|
|
1408
|
-
hash: string;
|
|
1409
|
-
url?: string;
|
|
1410
|
-
status: ActionStatus;
|
|
1411
|
-
}
|
|
1412
|
-
declare function BridgeHeader({ tokenLogoURI, chainLogoURI, title, hash, url, status, }: BridgeHeaderProps): react_jsx_runtime.JSX.Element;
|
|
1413
|
-
|
|
1414
|
-
interface BuyNFTHeaderProps {
|
|
1415
|
-
imageUrl: string;
|
|
1416
|
-
title?: string;
|
|
1417
|
-
hash: string;
|
|
1418
|
-
url?: string;
|
|
1419
|
-
status: ActionStatus;
|
|
1420
|
-
}
|
|
1421
|
-
declare function BuyNFTHeader({ imageUrl, title, hash, url, status, }: BuyNFTHeaderProps): react_jsx_runtime.JSX.Element;
|
|
1422
|
-
|
|
1423
|
-
interface InteractionHeaderProps {
|
|
1424
|
-
title?: string;
|
|
1425
|
-
image?: ReactNode;
|
|
1426
|
-
hash: string;
|
|
1427
|
-
url?: string;
|
|
1428
|
-
status: ActionStatus;
|
|
1429
|
-
}
|
|
1430
|
-
declare function InteractionHeader({ title, image, hash, url, status, }: InteractionHeaderProps): react_jsx_runtime.JSX.Element;
|
|
1431
|
-
|
|
1432
|
-
interface ProfileHeaderProps {
|
|
1433
|
-
imageUrl: string;
|
|
1434
|
-
title: string;
|
|
1435
|
-
wallet: {
|
|
1436
|
-
imageURI: string;
|
|
1437
|
-
address: string;
|
|
1438
|
-
};
|
|
1439
|
-
amount: string;
|
|
1440
|
-
}
|
|
1441
|
-
declare function ProfileHeader({ imageUrl, title, wallet, amount, }: ProfileHeaderProps): react_jsx_runtime.JSX.Element;
|
|
1442
|
-
|
|
1443
|
-
interface SwapHeaderProps {
|
|
1444
|
-
fromToken: {
|
|
1445
|
-
logoURI: string;
|
|
1446
|
-
bgColor: string;
|
|
1447
|
-
};
|
|
1448
|
-
toToken: {
|
|
1449
|
-
logoURI: string;
|
|
1450
|
-
bgColor: string;
|
|
1451
|
-
};
|
|
1452
|
-
title?: string;
|
|
1453
|
-
hash: string;
|
|
1454
|
-
url?: string;
|
|
1455
|
-
status: ActionStatus;
|
|
1456
|
-
}
|
|
1457
|
-
declare function SwapHeader({ fromToken, toToken, title, hash, url, status, }: SwapHeaderProps): react_jsx_runtime.JSX.Element;
|
|
1458
|
-
|
|
1459
|
-
declare const headerComponentsMap: {
|
|
1460
|
-
readonly swap: typeof SwapHeader;
|
|
1461
|
-
readonly buy_nft: typeof BuyNFTHeader;
|
|
1462
|
-
readonly interaction: typeof InteractionHeader;
|
|
1463
|
-
readonly bridge: typeof BridgeHeader;
|
|
1464
|
-
readonly profile: typeof ProfileHeader;
|
|
1465
|
-
};
|
|
1466
|
-
type TransactionHeaderComponents = typeof headerComponentsMap;
|
|
1467
|
-
type TransactionHeaderType = keyof TransactionHeaderComponents;
|
|
1468
|
-
type TransactionHeaderProps = {
|
|
1469
|
-
[Type in TransactionHeaderType]: {
|
|
1470
|
-
type: Type;
|
|
1471
|
-
props: ComponentProps<TransactionHeaderComponents[Type]>;
|
|
1472
|
-
};
|
|
1473
|
-
}[TransactionHeaderType];
|
|
1474
|
-
declare function TransactionHeader({ type, props }: TransactionHeaderProps): react_jsx_runtime.JSX.Element;
|
|
1475
|
-
|
|
1476
|
-
interface TransactionHeaderLayoutProps {
|
|
1477
|
-
isLoading?: boolean;
|
|
1441
|
+
interface BaseTransactionHeaderLayoutProps {
|
|
1478
1442
|
status?: ActionStatus;
|
|
1479
1443
|
title?: string;
|
|
1480
|
-
|
|
1444
|
+
media?: ReactNode;
|
|
1481
1445
|
children?: ReactNode;
|
|
1482
1446
|
}
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
bgColor: string;
|
|
1490
|
-
symbol: string;
|
|
1491
|
-
};
|
|
1492
|
-
fromChain: {
|
|
1493
|
-
logoURI: string;
|
|
1494
|
-
name: string;
|
|
1495
|
-
};
|
|
1496
|
-
toChain: {
|
|
1497
|
-
logoURI: string;
|
|
1498
|
-
name: string;
|
|
1499
|
-
};
|
|
1500
|
-
wallet: string;
|
|
1501
|
-
boosted?: boolean;
|
|
1502
|
-
timeToComplete: string;
|
|
1503
|
-
}
|
|
1504
|
-
declare function BridgeProperties({ amount, token, fromChain, toChain, wallet, boosted, timeToComplete, }: BridgePropertiesProps): react_jsx_runtime.JSX.Element;
|
|
1505
|
-
|
|
1506
|
-
interface BuyNFTPropertiesProps {
|
|
1507
|
-
title: string;
|
|
1508
|
-
imageURI: string;
|
|
1509
|
-
collection: {
|
|
1510
|
-
imageURI: string;
|
|
1511
|
-
name: string;
|
|
1512
|
-
};
|
|
1513
|
-
price: string;
|
|
1514
|
-
token: {
|
|
1515
|
-
logoURI: string;
|
|
1516
|
-
symbol: string;
|
|
1517
|
-
};
|
|
1518
|
-
marketplace: {
|
|
1519
|
-
logoURI: string;
|
|
1520
|
-
name: string;
|
|
1521
|
-
};
|
|
1522
|
-
fromChain: {
|
|
1523
|
-
logoURI: string;
|
|
1524
|
-
name: string;
|
|
1525
|
-
};
|
|
1526
|
-
toChain: {
|
|
1527
|
-
logoURI: string;
|
|
1528
|
-
name: string;
|
|
1529
|
-
};
|
|
1530
|
-
fromAddress: string;
|
|
1531
|
-
toAddress: string;
|
|
1532
|
-
boosted?: boolean;
|
|
1533
|
-
timeToComplete: string;
|
|
1534
|
-
tokenId: string;
|
|
1535
|
-
nftType: string;
|
|
1536
|
-
}
|
|
1537
|
-
declare function BuyNFTProperties({ title, imageURI, collection, price, token, marketplace, fromChain, toChain, fromAddress, toAddress, boosted, timeToComplete, tokenId, nftType, }: BuyNFTPropertiesProps): react_jsx_runtime.JSX.Element;
|
|
1538
|
-
|
|
1539
|
-
interface InteractionPropertiesProps {
|
|
1540
|
-
chain: {
|
|
1541
|
-
logoURI: string;
|
|
1542
|
-
name: string;
|
|
1543
|
-
};
|
|
1544
|
-
wallet: string;
|
|
1545
|
-
boosted?: boolean;
|
|
1546
|
-
timeToComplete: string;
|
|
1547
|
-
}
|
|
1548
|
-
declare function InteractionProperties({ chain, wallet, boosted, timeToComplete, }: InteractionPropertiesProps): react_jsx_runtime.JSX.Element;
|
|
1447
|
+
type TransactionHeaderLayoutProps = (BaseTransactionHeaderLayoutProps & {
|
|
1448
|
+
isLoading: true;
|
|
1449
|
+
}) | (Required<BaseTransactionHeaderLayoutProps> & {
|
|
1450
|
+
isLoading?: false;
|
|
1451
|
+
});
|
|
1452
|
+
declare function TransactionHeaderLayout({ isLoading, status, title, media, children, }: TransactionHeaderLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1549
1453
|
|
|
1550
1454
|
interface PropertiesLayoutProps {
|
|
1551
1455
|
children?: ReactNode;
|
|
@@ -1553,51 +1457,6 @@ interface PropertiesLayoutProps {
|
|
|
1553
1457
|
}
|
|
1554
1458
|
declare function PropertiesLayout({ children, className, }: PropertiesLayoutProps): react_jsx_runtime.JSX.Element;
|
|
1555
1459
|
|
|
1556
|
-
interface SwapPropertiesProps {
|
|
1557
|
-
fromAmount: string;
|
|
1558
|
-
fromToken: {
|
|
1559
|
-
logoURI: string;
|
|
1560
|
-
bgColor: string;
|
|
1561
|
-
symbol: string;
|
|
1562
|
-
};
|
|
1563
|
-
toAmount: string;
|
|
1564
|
-
toToken: {
|
|
1565
|
-
logoURI: string;
|
|
1566
|
-
bgColor: string;
|
|
1567
|
-
symbol: string;
|
|
1568
|
-
};
|
|
1569
|
-
fromChain: {
|
|
1570
|
-
logoURI: string;
|
|
1571
|
-
name: string;
|
|
1572
|
-
};
|
|
1573
|
-
toChain: {
|
|
1574
|
-
logoURI: string;
|
|
1575
|
-
name: string;
|
|
1576
|
-
};
|
|
1577
|
-
fromAddress: string;
|
|
1578
|
-
toAddress: string;
|
|
1579
|
-
exchangeRate: string;
|
|
1580
|
-
boosted?: boolean;
|
|
1581
|
-
timeToComplete: string;
|
|
1582
|
-
}
|
|
1583
|
-
declare function SwapProperties({ fromAmount, fromToken, toAmount, toToken, fromChain, toChain, fromAddress, toAddress, exchangeRate, boosted, timeToComplete, }: SwapPropertiesProps): react_jsx_runtime.JSX.Element;
|
|
1584
|
-
|
|
1585
|
-
declare const propertiesComponentsMap: {
|
|
1586
|
-
readonly swap: typeof SwapProperties;
|
|
1587
|
-
readonly buy_nft: typeof BuyNFTProperties;
|
|
1588
|
-
readonly interaction: typeof InteractionProperties;
|
|
1589
|
-
readonly bridge: typeof BridgeProperties;
|
|
1590
|
-
};
|
|
1591
|
-
type TransactionPropertiesComponents = typeof propertiesComponentsMap;
|
|
1592
|
-
type TransactionPropertiesType = keyof TransactionPropertiesComponents;
|
|
1593
|
-
type TransactionPropertiesProps = {
|
|
1594
|
-
[Type in TransactionPropertiesType]: {
|
|
1595
|
-
type: Type;
|
|
1596
|
-
props: ComponentProps<TransactionPropertiesComponents[Type]>;
|
|
1597
|
-
};
|
|
1598
|
-
}[TransactionPropertiesType];
|
|
1599
|
-
declare function TransactionProperties({ type, props, }: TransactionPropertiesProps): react_jsx_runtime.JSX.Element;
|
|
1600
|
-
|
|
1601
1460
|
interface TransactionSearchProps {
|
|
1602
1461
|
query: string;
|
|
1603
1462
|
setQuery: (query: string) => void;
|
|
@@ -1893,6 +1752,7 @@ type TokenGroupVariant = "compact" | "large" | "small";
|
|
|
1893
1752
|
interface TokenGroupProps<T> {
|
|
1894
1753
|
isSelected?: boolean;
|
|
1895
1754
|
imageUrl: string;
|
|
1755
|
+
fallbackImageUrl?: string;
|
|
1896
1756
|
symbol: string;
|
|
1897
1757
|
name: string;
|
|
1898
1758
|
chainImageUrl: string;
|
|
@@ -1902,14 +1762,13 @@ interface TokenGroupProps<T> {
|
|
|
1902
1762
|
tokenItems?: T[];
|
|
1903
1763
|
extraSpacing?: boolean;
|
|
1904
1764
|
onClick?: (event: React.MouseEvent<HTMLButtonElement | HTMLDivElement>) => void;
|
|
1905
|
-
maxPreviewItems?: number;
|
|
1906
1765
|
variant?: TokenGroupVariant;
|
|
1907
1766
|
className?: string;
|
|
1908
1767
|
onChildClick?: (tokenProps: T) => void;
|
|
1909
1768
|
isAdjacentToPreviousExpanded?: boolean;
|
|
1910
1769
|
isAdjacentToNextExpanded?: boolean;
|
|
1911
1770
|
}
|
|
1912
|
-
declare function TokenGroup<T extends TokenGroupProps<T>>({ isSelected, tokenItems, priceChange, balance, balanceUsd, extraSpacing, chainImageUrl, imageUrl, symbol, name, onClick, variant, className, onChildClick, isAdjacentToPreviousExpanded, isAdjacentToNextExpanded, }: TokenGroupProps<T>): react_jsx_runtime.JSX.Element;
|
|
1771
|
+
declare function TokenGroup<T extends TokenGroupProps<T>>({ isSelected, tokenItems, priceChange, balance, balanceUsd, extraSpacing, chainImageUrl, imageUrl, fallbackImageUrl, symbol, name, onClick, variant, className, onChildClick, isAdjacentToPreviousExpanded, isAdjacentToNextExpanded, }: TokenGroupProps<T>): react_jsx_runtime.JSX.Element;
|
|
1913
1772
|
|
|
1914
1773
|
interface TokenGroupsProps<T extends TokenGroupProps<T>> {
|
|
1915
1774
|
groups: T[];
|
|
@@ -2195,32 +2054,49 @@ declare function TransactionAction({ type, props }: TransactionActionProps): rea
|
|
|
2195
2054
|
|
|
2196
2055
|
declare function linkActionTimelineProps(actions: TransactionActionProps[], collapsed: boolean): TransactionActionProps[];
|
|
2197
2056
|
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2057
|
+
interface Token$2 {
|
|
2058
|
+
symbol: string;
|
|
2059
|
+
bgColor: string;
|
|
2060
|
+
logoURI: string;
|
|
2202
2061
|
}
|
|
2203
|
-
interface
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
type
|
|
2209
|
-
hash
|
|
2210
|
-
|
|
2062
|
+
interface NFT$1 {
|
|
2063
|
+
imageUrl: string;
|
|
2064
|
+
}
|
|
2065
|
+
interface BaseTransactionItemProps {
|
|
2066
|
+
status: ActionStatus;
|
|
2067
|
+
type: TransactionType;
|
|
2068
|
+
hash: string;
|
|
2069
|
+
toToken: Token$2;
|
|
2070
|
+
fromToken: Token$2;
|
|
2071
|
+
fromChain: {
|
|
2211
2072
|
logoURI: string;
|
|
2212
2073
|
name: string;
|
|
2213
2074
|
};
|
|
2214
|
-
toChain
|
|
2075
|
+
toChain: {
|
|
2215
2076
|
logoURI: string;
|
|
2216
2077
|
name: string;
|
|
2217
2078
|
};
|
|
2218
|
-
fromAmount
|
|
2219
|
-
toAmount
|
|
2220
|
-
timestamp
|
|
2221
|
-
|
|
2079
|
+
fromAmount: string;
|
|
2080
|
+
toAmount: string;
|
|
2081
|
+
timestamp: number;
|
|
2082
|
+
}
|
|
2083
|
+
interface SwapTransactionProps extends BaseTransactionItemProps {
|
|
2084
|
+
type: "swap";
|
|
2085
|
+
}
|
|
2086
|
+
interface BuyNFTTransactionProps extends Omit<BaseTransactionItemProps, "toToken"> {
|
|
2087
|
+
type: "buy_nft";
|
|
2088
|
+
toToken: {
|
|
2089
|
+
symbol: string;
|
|
2090
|
+
};
|
|
2091
|
+
nft: NFT$1;
|
|
2092
|
+
}
|
|
2093
|
+
interface BridgeTransactionProps extends BaseTransactionItemProps {
|
|
2094
|
+
type: "bridge";
|
|
2222
2095
|
}
|
|
2223
|
-
|
|
2096
|
+
type TransactionItemProps = SwapTransactionProps | BuyNFTTransactionProps | BridgeTransactionProps;
|
|
2097
|
+
declare const TransactionItem: (props: TransactionItemProps) => react_jsx_runtime.JSX.Element;
|
|
2098
|
+
|
|
2099
|
+
declare const TransactionItemSkeleton: () => react_jsx_runtime.JSX.Element;
|
|
2224
2100
|
|
|
2225
2101
|
type TabSize = "small" | "large";
|
|
2226
2102
|
interface TabsProps {
|
|
@@ -2335,22 +2211,31 @@ declare function SwapProgressView({ steps, isOpen, handleClose, handleComplete,
|
|
|
2335
2211
|
isSendTransaction?: boolean;
|
|
2336
2212
|
}): react_jsx_runtime.JSX.Element;
|
|
2337
2213
|
|
|
2214
|
+
interface NFT {
|
|
2215
|
+
imageUrl: string;
|
|
2216
|
+
name: string;
|
|
2217
|
+
imageURI: string;
|
|
2218
|
+
collection: {
|
|
2219
|
+
name: string;
|
|
2220
|
+
imageURI: string;
|
|
2221
|
+
};
|
|
2222
|
+
tokenID: string;
|
|
2223
|
+
nftType: string;
|
|
2224
|
+
}
|
|
2225
|
+
interface Collection {
|
|
2226
|
+
image: string;
|
|
2227
|
+
name: string;
|
|
2228
|
+
}
|
|
2338
2229
|
interface BaseTransactionViewProps {
|
|
2339
2230
|
title?: string;
|
|
2340
2231
|
hash: string;
|
|
2341
2232
|
status: ActionStatus;
|
|
2342
2233
|
url?: string;
|
|
2343
|
-
actions
|
|
2234
|
+
actions?: TransactionActionProps[];
|
|
2344
2235
|
fees: FeesActionProps;
|
|
2345
2236
|
}
|
|
2346
2237
|
|
|
2347
|
-
interface
|
|
2348
|
-
title: string;
|
|
2349
|
-
imageURI: string;
|
|
2350
|
-
collection: {
|
|
2351
|
-
imageURI: string;
|
|
2352
|
-
name: string;
|
|
2353
|
-
};
|
|
2238
|
+
interface BaseBuyNFTTransactionViewProps extends BaseTransactionViewProps {
|
|
2354
2239
|
price: string;
|
|
2355
2240
|
token: {
|
|
2356
2241
|
logoURI: string;
|
|
@@ -2371,14 +2256,18 @@ interface BuyNFTTTransactionViewProps extends BaseTransactionViewProps {
|
|
|
2371
2256
|
fromAddress: string;
|
|
2372
2257
|
toAddress: string;
|
|
2373
2258
|
boosted?: boolean;
|
|
2374
|
-
|
|
2375
|
-
nftType: string;
|
|
2259
|
+
nft: NFT;
|
|
2376
2260
|
timeToComplete: string;
|
|
2377
2261
|
}
|
|
2378
|
-
|
|
2262
|
+
type BuyNFTTransactionViewProps = (BaseBuyNFTTransactionViewProps & {
|
|
2263
|
+
isLoading?: false;
|
|
2264
|
+
}) | (Partial<BaseBuyNFTTransactionViewProps> & {
|
|
2265
|
+
isLoading: true;
|
|
2266
|
+
});
|
|
2267
|
+
declare function BuyNFTTransactionView({ title, hash, status, url, price, token, marketplace, fromChain, toChain, fromAddress, toAddress, boosted, timeToComplete, nft, actions, fees, isLoading, }: BuyNFTTransactionViewProps): react_jsx_runtime.JSX.Element;
|
|
2379
2268
|
|
|
2380
|
-
interface
|
|
2381
|
-
image
|
|
2269
|
+
interface BaseInteractionTransactionViewProps extends BaseTransactionViewProps {
|
|
2270
|
+
image: ReactNode;
|
|
2382
2271
|
chain: {
|
|
2383
2272
|
logoURI: string;
|
|
2384
2273
|
name: string;
|
|
@@ -2387,9 +2276,14 @@ interface InteractionTTransactionViewProps extends BaseTransactionViewProps {
|
|
|
2387
2276
|
boosted?: boolean;
|
|
2388
2277
|
timeToComplete: string;
|
|
2389
2278
|
}
|
|
2390
|
-
|
|
2279
|
+
type InteractionTransactionViewProps = (BaseInteractionTransactionViewProps & {
|
|
2280
|
+
isLoading?: false;
|
|
2281
|
+
}) | (Partial<BaseInteractionTransactionViewProps> & BaseTransactionViewProps & {
|
|
2282
|
+
isLoading: true;
|
|
2283
|
+
});
|
|
2284
|
+
declare function InteractionTransactionView({ title, hash, status, url, chain, address, boosted, timeToComplete, actions, fees, isLoading, }: InteractionTransactionViewProps): react_jsx_runtime.JSX.Element;
|
|
2391
2285
|
|
|
2392
|
-
interface
|
|
2286
|
+
interface BaseSwapTransactionViewProps extends BaseTransactionViewProps {
|
|
2393
2287
|
fromAmount: string;
|
|
2394
2288
|
fromToken: {
|
|
2395
2289
|
logoURI: string;
|
|
@@ -2416,9 +2310,14 @@ interface SwapTransactionViewProps extends BaseTransactionViewProps {
|
|
|
2416
2310
|
boosted?: boolean;
|
|
2417
2311
|
timeToComplete: string;
|
|
2418
2312
|
}
|
|
2419
|
-
|
|
2313
|
+
type SwapTransactionViewProps = (BaseSwapTransactionViewProps & {
|
|
2314
|
+
isLoading?: false;
|
|
2315
|
+
}) | (Partial<Omit<BaseSwapTransactionViewProps, keyof BaseTransactionViewProps>> & BaseTransactionViewProps & {
|
|
2316
|
+
isLoading: true;
|
|
2317
|
+
});
|
|
2318
|
+
declare function SwapTransactionView({ title, hash, status, url, fromAmount, fromToken, toAmount, toToken, fromChain, toChain, fromAddress, toAddress, exchangeRate, boosted, timeToComplete, actions, fees, isLoading, }: SwapTransactionViewProps): react_jsx_runtime.JSX.Element;
|
|
2420
2319
|
|
|
2421
|
-
interface
|
|
2320
|
+
interface BaseBridgeTransactionViewProps extends BaseTransactionViewProps {
|
|
2422
2321
|
amount: string;
|
|
2423
2322
|
token: {
|
|
2424
2323
|
logoURI: string;
|
|
@@ -2428,16 +2327,23 @@ interface BridgeTransactionViewProps extends BaseTransactionViewProps {
|
|
|
2428
2327
|
fromChain: {
|
|
2429
2328
|
logoURI: string;
|
|
2430
2329
|
name: string;
|
|
2330
|
+
bgColor: string;
|
|
2431
2331
|
};
|
|
2432
2332
|
toChain: {
|
|
2433
2333
|
logoURI: string;
|
|
2434
2334
|
name: string;
|
|
2335
|
+
bgColor: string;
|
|
2435
2336
|
};
|
|
2436
2337
|
address: string;
|
|
2437
2338
|
boosted?: boolean;
|
|
2438
2339
|
timeToComplete: string;
|
|
2439
2340
|
}
|
|
2440
|
-
|
|
2341
|
+
type BridgeTransactionViewProps = (BaseBridgeTransactionViewProps & {
|
|
2342
|
+
isLoading?: false;
|
|
2343
|
+
}) | (Partial<BaseBridgeTransactionViewProps> & BaseTransactionViewProps & {
|
|
2344
|
+
isLoading: true;
|
|
2345
|
+
});
|
|
2346
|
+
declare function BridgeTransactionView({ title, hash, status, url, amount, token, fromChain, toChain, address, actions, fees, boosted, timeToComplete, isLoading, }: BridgeTransactionViewProps): react_jsx_runtime.JSX.Element;
|
|
2441
2347
|
|
|
2442
2348
|
declare const componentMap: {
|
|
2443
2349
|
readonly swap: typeof SwapTransactionView;
|
|
@@ -2446,14 +2352,18 @@ declare const componentMap: {
|
|
|
2446
2352
|
readonly bridge: typeof BridgeTransactionView;
|
|
2447
2353
|
};
|
|
2448
2354
|
type TransactionViewComponents = typeof componentMap;
|
|
2449
|
-
type TransactionViewType = keyof TransactionViewComponents;
|
|
2450
2355
|
type TransactionViewProps = {
|
|
2451
|
-
[Type in
|
|
2356
|
+
[Type in TransactionType]: {
|
|
2452
2357
|
type: Type;
|
|
2453
|
-
|
|
2358
|
+
isLoading?: false;
|
|
2359
|
+
data: ComponentProps<TransactionViewComponents[Type]>;
|
|
2360
|
+
} | {
|
|
2361
|
+
type: Type;
|
|
2362
|
+
isLoading: true;
|
|
2363
|
+
data?: Partial<ComponentProps<TransactionViewComponents[Type]>>;
|
|
2454
2364
|
};
|
|
2455
|
-
}[
|
|
2456
|
-
declare function TransactionView({ type,
|
|
2365
|
+
}[TransactionType];
|
|
2366
|
+
declare function TransactionView({ type, isLoading, data, }: TransactionViewProps): react_jsx_runtime.JSX.Element | null;
|
|
2457
2367
|
|
|
2458
2368
|
interface TransactionViewLayoutProps extends ComponentProps<"div"> {
|
|
2459
2369
|
isLoading?: boolean;
|
|
@@ -2464,6 +2374,8 @@ interface TransactionViewLayoutProps extends ComponentProps<"div"> {
|
|
|
2464
2374
|
}
|
|
2465
2375
|
declare function TransactionViewLayout({ isLoading, header, properties, actions, fees, ...props }: TransactionViewLayoutProps): react_jsx_runtime.JSX.Element;
|
|
2466
2376
|
|
|
2377
|
+
declare const TransactionNotFoundView: () => react_jsx_runtime.JSX.Element;
|
|
2378
|
+
|
|
2467
2379
|
interface ThemeProviderProps extends React.ComponentProps<"div"> {
|
|
2468
2380
|
theme?: Theme;
|
|
2469
2381
|
children?: React.ReactNode;
|
|
@@ -16623,4 +16535,4 @@ declare const transactionRejectedAnimation: {
|
|
|
16623
16535
|
markers: never[];
|
|
16624
16536
|
};
|
|
16625
16537
|
|
|
16626
|
-
export { ANIMATION_DURATIONS, AccountListItem, AccountsButton, type ActionButton, ActionLayout, ActionLineOutRow, ActionProperties, ActionRow, type ActionStatus, ActionStatusRow, ActionWrapper, AddressButton, AddressHeader, type AllOrNone, AnimateNumber, AnimationCard, AnimationWrapper, Announcement, type AnnouncementProps, AppContainer, ApplePayIcon, Approve, ApproveAction, ArrowBottomTopIcon, ArrowButton, ArrowCornerDownRightIcon, ArrowDownIcon, ArrowExpandIcon, ArrowLeftIcon, ArrowOutOfBoxIcon, ArrowRightDownCircleIcon, ArrowRightDownIcon, ArrowRightIcon, ArrowRightUpCircleIcon, ArrowRightUpIcon, ArrowRotate, ArrowSplit, ArrowTriangle, ArrowUpIcon, ArrowWallDownIcon, ArrowsSwapIcon, AssetsButton, type AssetsButtonVariant, AtomIcon, BackpackIcon, BadgeImage, BankIcon, type BaseActionProps, type BaseTransactionViewProps, BellAlarmIcon, BlockSkeleton, BodyText, BoostBadge, BorderedContainer, Breadcrumb, BridgeAction,
|
|
16538
|
+
export { ANIMATION_DURATIONS, AccountListItem, AccountsButton, type ActionButton, ActionLayout, ActionLineOutRow, ActionProperties, ActionRow, type ActionStatus, ActionStatusRow, ActionWrapper, AddressButton, AddressHeader, type AllOrNone, AnimateNumber, AnimationCard, AnimationWrapper, Announcement, type AnnouncementProps, AppContainer, ApplePayIcon, Approve, ApproveAction, ArrowBottomTopIcon, ArrowButton, ArrowCornerDownRightIcon, ArrowDownIcon, ArrowExpandIcon, ArrowLeftIcon, ArrowOutOfBoxIcon, ArrowRightDownCircleIcon, ArrowRightDownIcon, ArrowRightIcon, ArrowRightUpCircleFilledIcon, ArrowRightUpCircleIcon, ArrowRightUpIcon, ArrowRotate, ArrowSplit, ArrowTriangle, ArrowUpIcon, ArrowWallDownIcon, ArrowsSwapIcon, AssetsButton, type AssetsButtonVariant, AtomIcon, BackpackIcon, BadgeImage, BankIcon, type BaseActionProps, type BaseTransactionViewProps, BellAlarmIcon, BlockSkeleton, BodyText, BoostBadge, BorderedContainer, Breadcrumb, BridgeAction, BrokenHeartIcon, BubblesIcon, Button, type ButtonProps, type ButtonSize, type ButtonVariant, BuyNFTTransactionView, CSS_VARS, Calendar, CaptionText, Card, CatSquareIcon, CelebrateIcon, ChainLink, Checkmark1Icon, Checkmark2Icon, ChevronArrowIcon, ChevronDownSmallIcon, ChevronGrabberVerticalIcon, ChevronLargeDownIcon, ChevronLargeRightIcon, ChevronRightSmallIcon, ChevronTopIcon, ChevronTopSmallIcon, Chip, type ChipProps, CircleCheckIcon, CircleMinusIcon, CirclePlusIcon, CircleX, CircleXFilledIcon, ClockOutlineIcon, ClockSolidIcon, CodeBracketsIcon, CodeSolidSquareIcon, CoinsAddIcon, CoinsIcon, CoinsOutlinedIcon, Collapse, CollapsibleMenu, type Collection, CollectionIcon, ColorPaletteIcon, CommandIcon, CompassRoundOutlinedIcon, CompassRoundSolidIcon, ConsoleIcon, Copy2Icon, CopyOutlinedIcon, CreditCardIcon, CrossAnimatedIcon, CrossedOutSunSolidIcon, DashboardFast, type DeepPartial, DepositAddressView, type DescriptionBlock, DescriptionBlocks, DetailsToolbar, DiscordIcon, DockIconAnalytics, DockIconCheckout, DockIconHelp, DockIconProfile, DockIconScan, DockIconSwap, DockSwapIcon, DollarOutlinedIcon, DollarSolidIcon, DotGrid1x3HorizontalIcon, Drip, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuTitle, type DropdownPosition, type DropdownStyles, EmojiMeh, EmojiSadIcon, EmptyHeartIcon, ErrorMessage, EthereumIcon, ExplosionIcon, EyeOpenIcon, FarcasterIcon, FavouriteFilterIcon, FeeButton, FeesAction, type FeesActionProps, FeesLines, FeesTotal, FileDownloadIcon, FilledHeartIcon, FilterAscendingIcon, FilterButton, FilterIcon, FilterTimelineIcon, GasIcon, GhostCircleIcon, GhostIcon, GithubIcon, GooglePayIcon, HashLink, HeadingText, HeartSmallIcon, HelpIcon, HighestPriceRangeIcon, HistoryItem, type HistoryItemStatus, HomeIcon, IconButton, type IconButtonProps, IconLabel, Image, ImageGroup, ImageIcon, type ImageProps, ImageSparkle, ImageStack, ImageState, IncompleteAction, InfinityIcon, InfoBox, Inline, Input, InteractionTransactionView, Join, LaptopIcon, LargeNumericInput, LimitIcon, LinkIcon, ListItem, ListItemActionsButton, Loader, LoadingProvider, LoadingSkeleton, LoadingText, MEDIA_QUERIES, MarketCapIcon, MaxIcon, Menu, MenuItem, MenuSwapIcon, MirrorIcon, Modal, ModalContent, ModalContentDivider, ModalTitle, MoneyBagIcon, MoonIcon, type NFT, NavigationBar, NewsIcon, NewspaperIcon, NotAllowedIcon, NumericInput, type NumericInputProps, PathSquareIcon, PauseIcon, PercentIcon, PhoneIcon, PieChartIcon, PipeSeparator, PluginIcon, PlusIcon, PoopIcon, PowerIcon, PriceChange, ProductCard, PropertiesLayout, PropertyListItem, type PropertyListItemProps, type Props$1 as Props, type PublicTheme, PunkIcon, QrCode, QrCodeIcon, QrCodeModal, RangeInput, ReceiptBillIcon, ReceiveNFTAction, ReceiveTokensAction, RefreshIcon, ReorderIcon, RouteStep, STEP_ITEM_HEIGHT, SearchIcon, SectionTitle, SendTokensAction, type Settings, SettingsButton, type SettingsButtonProps, type SettingsControl, SettingsGearIcon, SettingsItem, type SettingsItemProps, SettingsSlider, SettingsSliderIcon, type SettingsSliderProps, ShoppingBagIcon, SizeTransition, SmileFilledIcon, SmileIcon, SnapIcon, SortIcon, SparkleIcon, SparklesIcon, SquareArrowCenter, SquareArrowTopLeftIcon, SquareArrowTopRight2Icon, SquidLogo, StakeAction, StarLinesIcon, StartAction, StocksIcon, SuccessAction, SunIcon, SunOutlinedIcon, SunriseIcon, SunriseSmallIcon, SwapAction, SwapConfiguration, SwapErrorIcon, SwapIcon, SwapInputsIcon, SwapProgressView, SwapState, type SwapStep, SwapStepItem, SwapStepSeparator, SwapStepsCollapsed, type SwapStepsCollapsedFooterButton, SwapSuccessIcon, SwapTransactionView, type SwapTransactionViewProps, SwapWarningIcon, Switch, type SwitchProps, Tab, Tabs, TagIcon, TagIconFilled, TelegramIcon, TextSkeleton, type Theme, ThemePreference, ThemeProvider, type ThemeType, ThumbsUp, Tick, TimeFliesIcon, type Timeframe, Timeline, Timestamp, Toast, TokenDetailsView, TokenGroup, type TokenGroupProps, type TokenGroupVariant, TokenGroups, TokenPair, Tooltip, type TooltipProps, type TooltipThreshold, type TooltipWidth, TradingViewStepsIcon, TransactionAction, type TransactionActionProps, type TransactionActionType, TransactionFilters, TransactionHeaderLayout, TransactionItem, type TransactionItemProps, TransactionItemSkeleton, TransactionNotFoundView, TransactionSearch, TransactionState, TransactionView, TransactionViewLayout, type TransactionViewProps, Transfer, TranslateIcon, TriangleExclamation, TxProgressViewHeader, UnsupportedPairNotice, UsdAmount, UserInputType, WalletFilledIcon, WalletIcon, WalletLink, WrapAction, XSocialIcon, adjustColorForContrast, baseTailwindConfig, blendColors, buttonRoundedClassMap, cn, darkTheme, getColorBrightness, getContrastColor, getHexColorFromOpacityPercentage, hexToRgb, isValidHexColor, lightTheme, linkActionTimelineProps, parseColor, parseSquidTheme, pxToRem, remToPx, rgbToHex, spacing, statusTextClassMap, themeKeysToCssVariables, transactionErrorPauseAnimation, transactionFailureAnimation, transactionHalfSuccessAnimation, transactionPendingAnimation, transactionProcessingAnimation, transactionRejectedAnimation, transactionSuccessAnimation, useCollapsibleMenu, useDropdownMenu, useMediaQuery, useNumericInput, useOnResize, useRect, useTimer, useUserTheme, useVersion };
|