@0xsquid/ui 0.23.2-beta.0 → 0.23.2-beta.2
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 +227 -121
- package/dist/cjs/types/components/badges/TransactionState.d.ts +0 -5
- package/dist/cjs/types/components/icons/Bag.d.ts +4 -0
- package/dist/cjs/types/components/icons/CrossAnimatedIcon.d.ts +7 -0
- package/dist/cjs/types/components/icons/EmojiSad.d.ts +4 -0
- package/dist/cjs/types/components/icons/HomeIcon.d.ts +16 -0
- package/dist/cjs/types/components/icons/Social.d.ts +12 -0
- package/dist/cjs/types/components/icons/SquidLogo.d.ts +4 -1
- package/dist/cjs/types/components/icons/Weather.d.ts +12 -0
- package/dist/cjs/types/components/icons/index.d.ts +2 -0
- package/dist/cjs/types/components/layout/CollapsibleMenu.d.ts +20 -0
- package/dist/cjs/types/components/layout/index.d.ts +1 -0
- package/dist/cjs/types/components/lists/TransactionItem.d.ts +8 -5
- package/dist/cjs/types/core/constants.d.ts +4 -0
- package/dist/cjs/types/core/index.d.ts +1 -1
- package/dist/cjs/types/hooks/index.d.ts +4 -0
- package/dist/cjs/types/hooks/useCollapsibleMenu.d.ts +6 -0
- package/dist/cjs/types/stories/badges/TransactionState.stories.d.ts +5 -0
- package/dist/cjs/types/stories/lists/TransactionItem.stories.d.ts +5 -0
- package/dist/cjs/types/types/components.d.ts +1 -1
- package/dist/cjs/types/types/config.d.ts +5 -24
- package/dist/esm/index.js +208 -120
- package/dist/esm/types/components/badges/TransactionState.d.ts +0 -5
- package/dist/esm/types/components/icons/Bag.d.ts +4 -0
- package/dist/esm/types/components/icons/CrossAnimatedIcon.d.ts +7 -0
- package/dist/esm/types/components/icons/EmojiSad.d.ts +4 -0
- package/dist/esm/types/components/icons/HomeIcon.d.ts +16 -0
- package/dist/esm/types/components/icons/Social.d.ts +12 -0
- package/dist/esm/types/components/icons/SquidLogo.d.ts +4 -1
- package/dist/esm/types/components/icons/Weather.d.ts +12 -0
- package/dist/esm/types/components/icons/index.d.ts +2 -0
- package/dist/esm/types/components/layout/CollapsibleMenu.d.ts +20 -0
- package/dist/esm/types/components/layout/index.d.ts +1 -0
- package/dist/esm/types/components/lists/TransactionItem.d.ts +8 -5
- package/dist/esm/types/core/constants.d.ts +4 -0
- package/dist/esm/types/core/index.d.ts +1 -1
- package/dist/esm/types/hooks/index.d.ts +4 -0
- package/dist/esm/types/hooks/useCollapsibleMenu.d.ts +6 -0
- package/dist/esm/types/stories/badges/TransactionState.stories.d.ts +5 -0
- package/dist/esm/types/stories/lists/TransactionItem.stories.d.ts +5 -0
- package/dist/esm/types/types/components.d.ts +1 -1
- package/dist/esm/types/types/config.d.ts +5 -24
- package/dist/index.css +1 -1
- package/dist/index.d.ts +131 -13
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -53,7 +53,7 @@ declare enum SwapState {
|
|
|
53
53
|
}
|
|
54
54
|
type ThemeType = 'light' | 'dark';
|
|
55
55
|
type ActionStatus = 'pending' | 'waiting' | 'ongoing' | 'executed' | 'success' | 'error' | 'warning';
|
|
56
|
-
type TransactionStateVariant = 'full' | 'compact';
|
|
56
|
+
type TransactionStateVariant = 'full' | 'compact' | 'small';
|
|
57
57
|
type TokenPairVariant = 'horizontal' | 'vertical';
|
|
58
58
|
type TokenPairSize = 'small' | 'medium';
|
|
59
59
|
type ImageIconVariant = 'square' | 'round' | 'proportional';
|
|
@@ -98,12 +98,7 @@ interface LoadingBlockProps extends ComponentProps<'div'> {
|
|
|
98
98
|
}
|
|
99
99
|
declare function BlockSkeleton({ isLoading, className, children, ...props }: LoadingBlockProps): string | number | boolean | Iterable<react.ReactNode> | react_jsx_runtime.JSX.Element | null | undefined;
|
|
100
100
|
|
|
101
|
-
declare const statusBgClassMap: Record<ActionStatus, string>;
|
|
102
101
|
declare const statusTextClassMap: Record<ActionStatus, string>;
|
|
103
|
-
declare const statusColorClassMap: {
|
|
104
|
-
bg: Record<ActionStatus, string>;
|
|
105
|
-
text: Record<ActionStatus, string>;
|
|
106
|
-
};
|
|
107
102
|
interface TransactionStateProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
108
103
|
status: ActionStatus;
|
|
109
104
|
variant?: TransactionStateVariant;
|
|
@@ -372,6 +367,10 @@ declare function PunkIcon({ size }: {
|
|
|
372
367
|
}): react_jsx_runtime.JSX.Element;
|
|
373
368
|
|
|
374
369
|
declare function BagIcon(): react_jsx_runtime.JSX.Element;
|
|
370
|
+
declare function BackpackIcon({ size, className, }: {
|
|
371
|
+
size?: string;
|
|
372
|
+
className?: string;
|
|
373
|
+
}): react_jsx_runtime.JSX.Element;
|
|
375
374
|
|
|
376
375
|
declare function BankIcon(): react_jsx_runtime.JSX.Element;
|
|
377
376
|
|
|
@@ -464,6 +463,10 @@ declare function EmojiMeh({ className, size, }: {
|
|
|
464
463
|
className?: string;
|
|
465
464
|
size?: string;
|
|
466
465
|
}): react_jsx_runtime.JSX.Element;
|
|
466
|
+
declare function SmileIcon({ size, className, }: {
|
|
467
|
+
size?: string;
|
|
468
|
+
className?: string;
|
|
469
|
+
}): react_jsx_runtime.JSX.Element;
|
|
467
470
|
|
|
468
471
|
declare function EthereumIcon(): react_jsx_runtime.JSX.Element;
|
|
469
472
|
|
|
@@ -500,6 +503,22 @@ declare function SnapIcon({ size, className, }: {
|
|
|
500
503
|
declare function HomeIcon({ className }: {
|
|
501
504
|
className?: string;
|
|
502
505
|
}): react_jsx_runtime.JSX.Element;
|
|
506
|
+
declare function MenuSwapIcon({ size, className, }: {
|
|
507
|
+
size?: string;
|
|
508
|
+
className?: string;
|
|
509
|
+
}): react_jsx_runtime.JSX.Element;
|
|
510
|
+
declare function ColorPaletteIcon({ size, className, }: {
|
|
511
|
+
size?: string;
|
|
512
|
+
className?: string;
|
|
513
|
+
}): react_jsx_runtime.JSX.Element;
|
|
514
|
+
declare function ConsoleIcon({ size, className, }: {
|
|
515
|
+
size?: string;
|
|
516
|
+
className?: string;
|
|
517
|
+
}): react_jsx_runtime.JSX.Element;
|
|
518
|
+
declare function BubblesIcon({ size, className, }: {
|
|
519
|
+
size?: string;
|
|
520
|
+
className?: string;
|
|
521
|
+
}): react_jsx_runtime.JSX.Element;
|
|
503
522
|
|
|
504
523
|
declare function ImageSparkle(): react_jsx_runtime.JSX.Element;
|
|
505
524
|
|
|
@@ -547,6 +566,18 @@ declare function XSocial({ className, size, }: {
|
|
|
547
566
|
size?: string;
|
|
548
567
|
className?: string;
|
|
549
568
|
}): react_jsx_runtime.JSX.Element;
|
|
569
|
+
declare function GithubIcon({ size, className, }: {
|
|
570
|
+
size?: string;
|
|
571
|
+
className?: string;
|
|
572
|
+
}): react_jsx_runtime.JSX.Element;
|
|
573
|
+
declare function DiscordIcon({ size, className, }: {
|
|
574
|
+
size?: string;
|
|
575
|
+
className?: string;
|
|
576
|
+
}): react_jsx_runtime.JSX.Element;
|
|
577
|
+
declare function MirrorIcon({ size, className, }: {
|
|
578
|
+
size?: string;
|
|
579
|
+
className?: string;
|
|
580
|
+
}): react_jsx_runtime.JSX.Element;
|
|
550
581
|
|
|
551
582
|
declare function SortIcon(): react_jsx_runtime.JSX.Element;
|
|
552
583
|
|
|
@@ -557,7 +588,10 @@ declare function SquareArrowCenter(): react_jsx_runtime.JSX.Element;
|
|
|
557
588
|
|
|
558
589
|
declare function DockSwapIcon(): react_jsx_runtime.JSX.Element;
|
|
559
590
|
|
|
560
|
-
declare function SquidLogo(
|
|
591
|
+
declare function SquidLogo({ size, className, }: {
|
|
592
|
+
size?: string;
|
|
593
|
+
className?: string;
|
|
594
|
+
}): react_jsx_runtime.JSX.Element;
|
|
561
595
|
|
|
562
596
|
declare function SwapInputsIcon(): react_jsx_runtime.JSX.Element;
|
|
563
597
|
|
|
@@ -605,6 +639,26 @@ declare function WalletFilledIcon({ size }: {
|
|
|
605
639
|
size?: string;
|
|
606
640
|
}): react_jsx_runtime.JSX.Element;
|
|
607
641
|
|
|
642
|
+
declare function CrossAnimatedIcon({ size, isOpen, transitionDuration, className, }: {
|
|
643
|
+
size?: number;
|
|
644
|
+
isOpen?: boolean;
|
|
645
|
+
transitionDuration?: React.CSSProperties['transitionDuration'];
|
|
646
|
+
className?: string;
|
|
647
|
+
}): react_jsx_runtime.JSX.Element;
|
|
648
|
+
|
|
649
|
+
declare function SunriseIcon({ size, className, }: {
|
|
650
|
+
size?: string;
|
|
651
|
+
className?: string;
|
|
652
|
+
}): react_jsx_runtime.JSX.Element;
|
|
653
|
+
declare function SunIcon({ size, className, }: {
|
|
654
|
+
size?: string;
|
|
655
|
+
className?: string;
|
|
656
|
+
}): react_jsx_runtime.JSX.Element;
|
|
657
|
+
declare function MoonIcon({ size, className, }: {
|
|
658
|
+
size?: string;
|
|
659
|
+
className?: string;
|
|
660
|
+
}): react_jsx_runtime.JSX.Element;
|
|
661
|
+
|
|
608
662
|
interface Props {
|
|
609
663
|
lottieJsonFile: object;
|
|
610
664
|
animReplacement?: JSX.Element;
|
|
@@ -1613,15 +1667,17 @@ declare function TransactionAction({ type, props }: TransactionActionProps): rea
|
|
|
1613
1667
|
|
|
1614
1668
|
declare function linkActionTimelineProps(actions: TransactionActionProps[], collapsed: boolean): TransactionActionProps[];
|
|
1615
1669
|
|
|
1670
|
+
type TransactionItemVariant = 'compact' | 'full';
|
|
1671
|
+
type TransactionItemType = {
|
|
1672
|
+
icon?: ReactNode;
|
|
1673
|
+
name: string;
|
|
1674
|
+
};
|
|
1616
1675
|
interface TransactionItemProps {
|
|
1617
1676
|
className?: string;
|
|
1618
1677
|
isLoading?: boolean;
|
|
1619
1678
|
status?: ActionStatus;
|
|
1620
1679
|
image?: ReactNode;
|
|
1621
|
-
type?:
|
|
1622
|
-
icon?: ReactNode;
|
|
1623
|
-
name: string;
|
|
1624
|
-
};
|
|
1680
|
+
type?: TransactionItemType;
|
|
1625
1681
|
hash?: string;
|
|
1626
1682
|
fromChain?: {
|
|
1627
1683
|
logoURI: string;
|
|
@@ -1634,8 +1690,9 @@ interface TransactionItemProps {
|
|
|
1634
1690
|
fromAmount?: string;
|
|
1635
1691
|
toAmount?: string;
|
|
1636
1692
|
timestamp?: number;
|
|
1693
|
+
variant?: TransactionItemVariant;
|
|
1637
1694
|
}
|
|
1638
|
-
declare function TransactionItem({ className, isLoading, status, image, type, hash, fromChain, toChain, fromAmount, toAmount, timestamp, }: TransactionItemProps): react_jsx_runtime.JSX.Element;
|
|
1695
|
+
declare function TransactionItem({ className, isLoading, status, image, type, hash, fromChain, toChain, fromAmount, toAmount, timestamp, variant, }: TransactionItemProps): react_jsx_runtime.JSX.Element;
|
|
1639
1696
|
|
|
1640
1697
|
interface DropdownMenuProps {
|
|
1641
1698
|
dropdownRef?: React.RefObject<HTMLDivElement>;
|
|
@@ -1728,6 +1785,25 @@ declare function NavigationBar({ title, displayBackButton, logoUrl, transparent,
|
|
|
1728
1785
|
|
|
1729
1786
|
declare function PipeSeparator({ className, ...props }: ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
|
|
1730
1787
|
|
|
1788
|
+
interface CollapsibleMenuProps {
|
|
1789
|
+
menuRef: React.MutableRefObject<HTMLDivElement | null>;
|
|
1790
|
+
size: {
|
|
1791
|
+
open: {
|
|
1792
|
+
width: string;
|
|
1793
|
+
height: string;
|
|
1794
|
+
};
|
|
1795
|
+
closed: {
|
|
1796
|
+
width: string;
|
|
1797
|
+
height: string;
|
|
1798
|
+
};
|
|
1799
|
+
};
|
|
1800
|
+
children?: React.ReactNode;
|
|
1801
|
+
isOpen?: boolean;
|
|
1802
|
+
transitionDuration?: React.CSSProperties['transitionDuration'];
|
|
1803
|
+
className?: string;
|
|
1804
|
+
}
|
|
1805
|
+
declare function CollapsibleMenu({ children, menuRef, isOpen, transitionDuration, size, className, }: CollapsibleMenuProps): react_jsx_runtime.JSX.Element;
|
|
1806
|
+
|
|
1731
1807
|
declare function ProductCard({ children }: React.PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
1732
1808
|
declare function BorderedContainer({ children, className, }: {
|
|
1733
1809
|
children: React.ReactNode;
|
|
@@ -2299,8 +2375,10 @@ type SquidTheme = {
|
|
|
2299
2375
|
'content-700': string;
|
|
2300
2376
|
'content-800': string;
|
|
2301
2377
|
'content-900': string;
|
|
2378
|
+
'accent-300': string;
|
|
2302
2379
|
'accent-400': string;
|
|
2303
2380
|
'accent-500': string;
|
|
2381
|
+
'accent-700': string;
|
|
2304
2382
|
'status-positive': string;
|
|
2305
2383
|
'status-negative': string;
|
|
2306
2384
|
'status-warning': string;
|
|
@@ -2348,6 +2426,46 @@ type UseMediaQueryOptions = {
|
|
|
2348
2426
|
*/
|
|
2349
2427
|
declare function useMediaQuery(query: string, { defaultValue, initializeWithValue, }?: UseMediaQueryOptions): boolean;
|
|
2350
2428
|
|
|
2429
|
+
declare function useCollapsibleMenu(): {
|
|
2430
|
+
isMenuOpen: boolean;
|
|
2431
|
+
toggleMenu: () => void;
|
|
2432
|
+
menuRef: react.RefObject<HTMLDivElement>;
|
|
2433
|
+
};
|
|
2434
|
+
|
|
2435
|
+
declare function useOnResize(ref: React.RefObject<HTMLElement>, callback: (rect: DOMRectReadOnly) => void): void;
|
|
2436
|
+
declare function useRect(ref: React.RefObject<HTMLElement>): DOMRectReadOnly;
|
|
2437
|
+
|
|
2438
|
+
declare function useVersion<T>(value: T, equal?: (a: T, b: T) => boolean): number;
|
|
2439
|
+
|
|
2440
|
+
declare const useTimer: ({ immediateStart, }: {
|
|
2441
|
+
immediateStart?: boolean;
|
|
2442
|
+
}) => {
|
|
2443
|
+
timer: string;
|
|
2444
|
+
stopTimer: () => void;
|
|
2445
|
+
startTimer: () => void;
|
|
2446
|
+
};
|
|
2447
|
+
|
|
2448
|
+
declare const CSS_VARS: {
|
|
2449
|
+
MOVE_WITH_SPRING_BOUNCE_DURATION: string;
|
|
2450
|
+
DISPLAY_DELAYED_DURATION: string;
|
|
2451
|
+
COLLAPSE_ROUTE_DURATION: string;
|
|
2452
|
+
EXPAND_ROUTE_DURATION: string;
|
|
2453
|
+
FADE_IN_DURATION: string;
|
|
2454
|
+
FADE_OUT_DURATION: string;
|
|
2455
|
+
SCALE_AND_FADE_UP_DURATION: string;
|
|
2456
|
+
SCALE_AND_FADE_DOWN_DURATION: string;
|
|
2457
|
+
TRANSLATE_TOP_OR_BOTTOM: string;
|
|
2458
|
+
SHOW_MODAL_DURATION: string;
|
|
2459
|
+
HIDE_MODAL_DURATION: string;
|
|
2460
|
+
SLIDE_TO_TOP_DURATION: string;
|
|
2461
|
+
SLIDE_TO_BOTTOM_DURATION: string;
|
|
2462
|
+
BLUR_IN_DURATION: string;
|
|
2463
|
+
BLUR_OUT_DURATION: string;
|
|
2464
|
+
COLLAPSIBLE_MENU_OPEN_WIDTH: string;
|
|
2465
|
+
COLLAPSIBLE_MENU_OPEN_HEIGHT: string;
|
|
2466
|
+
COLLAPSIBLE_MENU_CLOSED_WIDTH: string;
|
|
2467
|
+
COLLAPSIBLE_MENU_CLOSED_HEIGHT: string;
|
|
2468
|
+
};
|
|
2351
2469
|
type MediaQuery = 'MOBILE_LG' | 'MOBILE_SM_HEIGHT' | 'MOBILE_XS' | 'MOBILE_XS_HEIGHT';
|
|
2352
2470
|
declare const MEDIA_QUERIES: Record<MediaQuery, {
|
|
2353
2471
|
media: string;
|
|
@@ -2360,4 +2478,4 @@ declare const darkTheme: SquidTheme;
|
|
|
2360
2478
|
|
|
2361
2479
|
declare const baseTailwindConfig: Config;
|
|
2362
2480
|
|
|
2363
|
-
export { type ActionButton, ActionLayout, ActionLineOutRow, ActionProperties, ActionRow, type ActionStatus, ActionStatusRow, ActionWrapper, AddressButton, AnimationWrapper, AppContainer, Approve, ApproveAction, ArrowBottomTopIcon, ArrowButton, ArrowCornerDownRightIcon, ArrowLeftIcon, ArrowOutOfBoxIcon, ArrowRightDownCircleIcon, ArrowRightDownIcon, ArrowRightIcon, ArrowRightUpCircleIcon, ArrowRightUpIcon, ArrowRotate, ArrowTriangle, ArrowUpIcon, ArrowWallDownIcon, ArrowsSwapIcon, AssetsButton, type AssetsButtonVariant, AssetsView, BadgeImage, BagIcon, BankIcon, type BaseActionProps, type BaseTransactionViewProps, BlockSkeleton, BodyText, Boost, BoostBadge, BoostButton, BorderedContainer, Breadcrumb, BridgeAction, BridgeHeader, BridgeProperties, BridgeTransactionView, BrokenHeartIcon, Button, BuyNFTHeader, BuyNFTProperties, BuyNFTTransactionView, Calendar, CaptionText, ChainLink, Checkmark1Icon, Checkmark2Icon, ChevronArrowIcon, ChevronGrabberVerticalIcon, ChevronLargeDownIcon, ChevronLargeRightIcon, ChevronRightSmallIcon, ChevronTopIcon, ChevronTopSmallIcon, Chip, type ChipProps, CircleMinusIcon, CirclePlusIcon, CircleX, ClockIcon, ClockOutlineIcon, CoinsAddIcon, CoinsIcon, Collapse, CollectionIcon, CompassRound, Copy, DashboardFast, DescriptionBlocks, DetailsToolbar, DockSwapIcon, Dollar, DotGrid1x3HorizontalIcon, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, EmojiMeh, EmojiSadIcon, EmptyHeartIcon, ErrorMessage, EthereumIcon, ExplosionIcon, FeeButton, FeesAction, type FeesActionProps, FeesLines, FeesTotal, FilledHeartIcon, FilterButton, FilterIcon, GasIcon, HashLink, HeadingText, HeartSmallIcon, HelpIcon, HistoryItem, type HistoryItemStatus, HomeIcon, IconLabel, ImageIcon, ImageSparkle, IncompleteAction, InfinityIcon, InfoBox, Inline, Input, InteractionHeader, InteractionProperties, InteractionTransactionView, Join, LightningIcon, LinkIcon, List, ListItem, Loader, LoadingProvider, LoadingSkeleton, MEDIA_QUERIES, MainView, MaxIcon, Menu, MenuItem, Modal, ModalContent, ModalContentDivider, NavigationBar, NotAllowedIcon, NumericInput, PathSquareIcon, PercentIcon, PieChartIcon, PipeSeparator, PlusIcon, ProductCard, ProfileHeader, ProfileHeaderBackground, PropertiesLayout, PropertyListItem, type PropertyListItemProps, PunkIcon, RangeInput, ReceiptBillIcon, ReceiveNFTAction, ReceiveTokensAction, RecipientView, RefreshIcon, ReorderIcon, STEP_ITEM_HEIGHT, SearchIcon, SectionTitle, SendTokensAction, SettingsButton, type SettingsButtonProps, type SettingsControl, SettingsGearIcon, SettingsItem, type SettingsItemProps, SettingsSlider, type SettingsSliderProps, SizeTransition, SnapIcon, SortIcon, SparkleIcon, SparklesIcon, SquareArrowCenter, SquareArrowTopLeftIcon, SquareArrowTopRight2Icon, SquidConfigProvider, SquidLogo, type SquidTheme, StakeAction, StartAction, SuccessAction, SwapAction, SwapConfiguration, SwapDetailsView, SwapErrorIcon, SwapHeader, type SwapHeaderProps, SwapInputsIcon, SwapProgressView, SwapProgressViewHeader, SwapProperties, type SwapPropertiesProps, SwapState, type SwapStep, SwapStepItem, SwapStepSeparator, SwapStepsCollapsed, type SwapStepsCollapsedFooterButton, SwapSuccessIcon, SwapTransactionView, SwapWarningIcon, Switch, TagIcon, TagIconFilled, TextSkeleton, type ThemeType, ThumbsUp, Tick, TimeFliesIcon, Timeline, Timestamp, Toast, TokenPair, Tooltip, type TooltipProps, type TooltipThreshold, type TooltipWidth, TradingViewStepsIcon, TransactionAction, type TransactionActionProps, type TransactionActionType, TransactionFilters, TransactionHeader, TransactionHeaderLayout, type TransactionHeaderProps, type TransactionHeaderType, TransactionItem, TransactionProperties, type TransactionPropertiesProps, type TransactionPropertiesType, TransactionSearch, TransactionState, TransactionView, TransactionViewLayout, type TransactionViewProps, type TransactionViewType, Transfer, TriangleExclamation, UsdAmount, WalletFilledIcon, WalletIcon, WalletLink, WalletsView, WrapAction, XSocial, baseTailwindConfig, darkTheme, lightTheme, linkActionTimelineProps,
|
|
2481
|
+
export { type ActionButton, ActionLayout, ActionLineOutRow, ActionProperties, ActionRow, type ActionStatus, ActionStatusRow, ActionWrapper, AddressButton, AnimationWrapper, AppContainer, Approve, ApproveAction, ArrowBottomTopIcon, ArrowButton, ArrowCornerDownRightIcon, ArrowLeftIcon, ArrowOutOfBoxIcon, ArrowRightDownCircleIcon, ArrowRightDownIcon, ArrowRightIcon, ArrowRightUpCircleIcon, ArrowRightUpIcon, ArrowRotate, ArrowTriangle, ArrowUpIcon, ArrowWallDownIcon, ArrowsSwapIcon, AssetsButton, type AssetsButtonVariant, AssetsView, BackpackIcon, BadgeImage, BagIcon, BankIcon, type BaseActionProps, type BaseTransactionViewProps, BlockSkeleton, BodyText, Boost, BoostBadge, BoostButton, BorderedContainer, Breadcrumb, BridgeAction, BridgeHeader, BridgeProperties, BridgeTransactionView, BrokenHeartIcon, BubblesIcon, Button, BuyNFTHeader, BuyNFTProperties, BuyNFTTransactionView, CSS_VARS, Calendar, CaptionText, ChainLink, Checkmark1Icon, Checkmark2Icon, ChevronArrowIcon, ChevronGrabberVerticalIcon, ChevronLargeDownIcon, ChevronLargeRightIcon, ChevronRightSmallIcon, ChevronTopIcon, ChevronTopSmallIcon, Chip, type ChipProps, CircleMinusIcon, CirclePlusIcon, CircleX, ClockIcon, ClockOutlineIcon, CoinsAddIcon, CoinsIcon, Collapse, CollapsibleMenu, CollectionIcon, ColorPaletteIcon, CompassRound, ConsoleIcon, Copy, CrossAnimatedIcon, DashboardFast, DescriptionBlocks, DetailsToolbar, DiscordIcon, DockSwapIcon, Dollar, DotGrid1x3HorizontalIcon, DropdownMenu, DropdownMenuItem, type DropdownMenuItemProps, EmojiMeh, EmojiSadIcon, EmptyHeartIcon, ErrorMessage, EthereumIcon, ExplosionIcon, FeeButton, FeesAction, type FeesActionProps, FeesLines, FeesTotal, FilledHeartIcon, FilterButton, FilterIcon, GasIcon, GithubIcon, HashLink, HeadingText, HeartSmallIcon, HelpIcon, HistoryItem, type HistoryItemStatus, HomeIcon, IconLabel, ImageIcon, ImageSparkle, IncompleteAction, InfinityIcon, InfoBox, Inline, Input, InteractionHeader, InteractionProperties, InteractionTransactionView, Join, LightningIcon, LinkIcon, List, ListItem, Loader, LoadingProvider, LoadingSkeleton, MEDIA_QUERIES, MainView, MaxIcon, Menu, MenuItem, MenuSwapIcon, MirrorIcon, Modal, ModalContent, ModalContentDivider, MoonIcon, NavigationBar, NotAllowedIcon, NumericInput, PathSquareIcon, PercentIcon, PieChartIcon, PipeSeparator, PlusIcon, ProductCard, ProfileHeader, ProfileHeaderBackground, PropertiesLayout, PropertyListItem, type PropertyListItemProps, PunkIcon, RangeInput, ReceiptBillIcon, ReceiveNFTAction, ReceiveTokensAction, RecipientView, RefreshIcon, ReorderIcon, STEP_ITEM_HEIGHT, SearchIcon, SectionTitle, SendTokensAction, SettingsButton, type SettingsButtonProps, type SettingsControl, SettingsGearIcon, SettingsItem, type SettingsItemProps, SettingsSlider, type SettingsSliderProps, SizeTransition, SmileIcon, SnapIcon, SortIcon, SparkleIcon, SparklesIcon, SquareArrowCenter, SquareArrowTopLeftIcon, SquareArrowTopRight2Icon, SquidConfigProvider, SquidLogo, type SquidTheme, StakeAction, StartAction, SuccessAction, SunIcon, SunriseIcon, SwapAction, SwapConfiguration, SwapDetailsView, SwapErrorIcon, SwapHeader, type SwapHeaderProps, SwapInputsIcon, SwapProgressView, SwapProgressViewHeader, SwapProperties, type SwapPropertiesProps, SwapState, type SwapStep, SwapStepItem, SwapStepSeparator, SwapStepsCollapsed, type SwapStepsCollapsedFooterButton, SwapSuccessIcon, SwapTransactionView, SwapWarningIcon, Switch, TagIcon, TagIconFilled, TextSkeleton, type ThemeType, ThumbsUp, Tick, TimeFliesIcon, Timeline, Timestamp, Toast, TokenPair, Tooltip, type TooltipProps, type TooltipThreshold, type TooltipWidth, TradingViewStepsIcon, TransactionAction, type TransactionActionProps, type TransactionActionType, TransactionFilters, TransactionHeader, TransactionHeaderLayout, type TransactionHeaderProps, type TransactionHeaderType, TransactionItem, TransactionProperties, type TransactionPropertiesProps, type TransactionPropertiesType, TransactionSearch, TransactionState, TransactionView, TransactionViewLayout, type TransactionViewProps, type TransactionViewType, Transfer, TriangleExclamation, UsdAmount, WalletFilledIcon, WalletIcon, WalletLink, WalletsView, WrapAction, XSocial, baseTailwindConfig, darkTheme, lightTheme, linkActionTimelineProps, statusTextClassMap, useCollapsibleMenu, useDropdownMenu, useMediaQuery, useOnResize, useRect, useTimer, useVersion };
|