@0xsquid/ui 0.8.3 → 0.9.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.
Files changed (52) hide show
  1. package/README.md +22 -0
  2. package/dist/cjs/index.js +116 -75
  3. package/dist/cjs/types/components/badges/index.d.ts +1 -0
  4. package/dist/cjs/types/components/controls/Input.d.ts +2 -2
  5. package/dist/cjs/types/components/controls/Tooltip.d.ts +1 -2
  6. package/dist/cjs/types/components/icons/Clock.d.ts +4 -0
  7. package/dist/cjs/types/components/layout/DropdownMenu.d.ts +4 -1
  8. package/dist/cjs/types/components/layout/InfoBox.d.ts +8 -0
  9. package/dist/cjs/types/components/layout/Menu.d.ts +2 -1
  10. package/dist/cjs/types/components/layout/Modal.d.ts +2 -1
  11. package/dist/cjs/types/components/layout/ModalContent.d.ts +8 -0
  12. package/dist/cjs/types/components/layout/NavigationBar.d.ts +7 -4
  13. package/dist/cjs/types/components/layout/index.d.ts +1 -0
  14. package/dist/cjs/types/components/lists/DropdownMenuItem.d.ts +2 -1
  15. package/dist/cjs/types/components/lists/HistoryItem.d.ts +3 -1
  16. package/dist/cjs/types/components/lists/SettingsItem.d.ts +4 -1
  17. package/dist/cjs/types/hooks/index.d.ts +1 -1
  18. package/dist/cjs/types/hooks/useDropdownMenu.d.ts +10 -0
  19. package/dist/cjs/types/stories/buttons/AssetsButton.stories.d.ts +2 -1
  20. package/dist/cjs/types/stories/layout/InfoBox.stories.d.ts +7 -0
  21. package/dist/cjs/types/stories/layout/ModalContent.stories.d.ts +8 -0
  22. package/dist/cjs/types/stories/layout/NavigationBar.stories.d.ts +1 -0
  23. package/dist/cjs/types/stories/lists/HistoryItem.stories.d.ts +1 -0
  24. package/dist/cjs/types/stories/lists/SettingsItem.stories.d.ts +2 -0
  25. package/dist/esm/index.js +114 -75
  26. package/dist/esm/types/components/badges/index.d.ts +1 -0
  27. package/dist/esm/types/components/controls/Input.d.ts +2 -2
  28. package/dist/esm/types/components/controls/Tooltip.d.ts +1 -2
  29. package/dist/esm/types/components/icons/Clock.d.ts +4 -0
  30. package/dist/esm/types/components/layout/DropdownMenu.d.ts +4 -1
  31. package/dist/esm/types/components/layout/InfoBox.d.ts +8 -0
  32. package/dist/esm/types/components/layout/Menu.d.ts +2 -1
  33. package/dist/esm/types/components/layout/Modal.d.ts +2 -1
  34. package/dist/esm/types/components/layout/ModalContent.d.ts +8 -0
  35. package/dist/esm/types/components/layout/NavigationBar.d.ts +7 -4
  36. package/dist/esm/types/components/layout/index.d.ts +1 -0
  37. package/dist/esm/types/components/lists/DropdownMenuItem.d.ts +2 -1
  38. package/dist/esm/types/components/lists/HistoryItem.d.ts +3 -1
  39. package/dist/esm/types/components/lists/SettingsItem.d.ts +4 -1
  40. package/dist/esm/types/hooks/index.d.ts +1 -1
  41. package/dist/esm/types/hooks/useDropdownMenu.d.ts +10 -0
  42. package/dist/esm/types/stories/buttons/AssetsButton.stories.d.ts +2 -1
  43. package/dist/esm/types/stories/layout/InfoBox.stories.d.ts +7 -0
  44. package/dist/esm/types/stories/layout/ModalContent.stories.d.ts +8 -0
  45. package/dist/esm/types/stories/layout/NavigationBar.stories.d.ts +1 -0
  46. package/dist/esm/types/stories/lists/HistoryItem.stories.d.ts +1 -0
  47. package/dist/esm/types/stories/lists/SettingsItem.stories.d.ts +2 -0
  48. package/dist/index.css +47 -18
  49. package/dist/index.d.ts +42 -19
  50. package/package.json +1 -1
  51. package/dist/cjs/types/hooks/useModal.d.ts +0 -10
  52. package/dist/esm/types/hooks/useModal.d.ts +0 -10
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ export declare function useDropdownMenu(props?: {
3
+ initialIsModalOpen?: boolean;
4
+ }): {
5
+ isDropdownOpen: boolean;
6
+ openDropdown: () => void;
7
+ closeDropdown: () => void;
8
+ dropdownRef: React.RefObject<HTMLDivElement>;
9
+ openDropdownButtonRef: React.RefObject<HTMLButtonElement>;
10
+ };
@@ -5,5 +5,6 @@ export default meta;
5
5
  type Story = StoryObj<typeof meta>;
6
6
  export declare const Empty: Story;
7
7
  export declare const ChainOnly: Story;
8
- export declare const ChainAndToken: Story;
8
+ export declare const ChainAndTokenLightText: Story;
9
+ export declare const ChainAndTokenDarkText: Story;
9
10
  export declare const LongTokenSymbol: Story;
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { InfoBox } from '../../components/layout/InfoBox';
3
+ declare const meta: Meta<typeof InfoBox>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const WithIcon: Story;
@@ -0,0 +1,8 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { ModalContent } from '../../components/layout/ModalContent';
3
+ declare const meta: Meta<typeof ModalContent>;
4
+ export default meta;
5
+ type Story = StoryObj<typeof meta>;
6
+ export declare const Default: Story;
7
+ export declare const WithBorder: Story;
8
+ export declare const WithOutline: Story;
@@ -7,5 +7,6 @@ export declare const Default: Story;
7
7
  export declare const Title: Story;
8
8
  export declare const BackButton: Story;
9
9
  export declare const Logo: Story;
10
+ export declare const WithActions: Story;
10
11
  export declare const AllProps: Story;
11
12
  export declare const Transparent: Story;
@@ -5,3 +5,4 @@ export default meta;
5
5
  type Story = StoryObj<typeof meta>;
6
6
  export declare const Default: Story;
7
7
  export declare const Pending: Story;
8
+ export declare const WithActions: Story;
@@ -8,3 +8,5 @@ export declare const WithControls: Story;
8
8
  export declare const WithoutHelpIcon: Story;
9
9
  export declare const TransparentControls: Story;
10
10
  export declare const Link: Story;
11
+ export declare const Transparent: Story;
12
+ export declare const WithHelpTooltip: Story;
package/dist/esm/index.js CHANGED
@@ -2561,6 +2561,10 @@ function BadgeImage({ imageUrl, badgeUrl, size = 'sm', extraMarginForBadge, roun
2561
2561
  return imageUrl ? (jsxs("div", { className: cn('tw-relative', extraMarginForBadge && badgeUrl ? 'tw-mr-1.5' : null, mainImageSizeClassMap[size]), children: [jsx("img", { src: imageUrl, alt: "", className: cn('tw-h-full tw-w-full', rounded ? ' tw-rounded-full' : 'tw-rounded-squid-xs') }), badgeUrl ? (jsx("img", { src: badgeUrl, alt: "", className: cn('tw-absolute -tw-right-1/3 tw-bottom-0 tw-z-10 tw-m-0 -tw-translate-x-1/3 tw-rounded-md tw-border-[1px] tw-border-grey-800', badgeSizeClassMap[size]) })) : null] })) : null;
2562
2562
  }
2563
2563
 
2564
+ function LoadingSkeleton({ className, height = '20', }) {
2565
+ return (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "100", height: height, viewBox: "0 0 100 20", fill: "none", className: className, children: [jsxs("g", { "clip-path": "url(#clip0_1083_18992)", children: [jsx("mask", { id: "mask0_1083_18992", style: { maskType: 'alpha' }, maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "100", height: "20", children: jsx("rect", { width: "100", height: "20", fill: "url(#paint0_linear_1083_18992)" }) }), jsx("g", { mask: "url(#mask0_1083_18992)", children: jsx("rect", { width: "100", height: "20", fill: "currentColor" }) })] }), jsxs("defs", { children: [jsxs("linearGradient", { id: "paint0_linear_1083_18992", x1: "0", y1: "10", x2: "100", y2: "10", gradientUnits: "userSpaceOnUse", className: "tw-animate-loading-gradient", children: [jsx("stop", { "stop-color": "#D9D9D9", "stop-opacity": "0.33" }), jsx("stop", { offset: "0.395881", "stop-color": "#737373", "stop-opacity": "0.33" }), jsx("stop", { offset: "0.597867", "stop-color": "#737373", "stop-opacity": "0.66" }), jsx("stop", { offset: "0.697004", "stop-color": "#737373", "stop-opacity": "0.33" })] }), jsx("clipPath", { id: "clip0_1083_18992", children: jsx("path", { d: "M0 10C0 4.47715 4.47715 0 10 0H90C95.5228 0 100 4.47715 100 10C100 15.5228 95.5229 20 90 20H10C4.47716 20 0 15.5228 0 10Z", fill: "white" }) })] })] }));
2566
+ }
2567
+
2564
2568
  /******************************************************************************
2565
2569
  Copyright (c) Microsoft Corporation.
2566
2570
 
@@ -2666,10 +2670,6 @@ function ArrowButton(_a) {
2666
2670
  'aria-disabled:tw-bg-grey-600 aria-disabled:tw-text-grey-800'), children: jsx(ArrowRightIcon, {}) })] })));
2667
2671
  }
2668
2672
 
2669
- function PlusIcon() {
2670
- return (jsx("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: jsx("path", { d: "M12 17V12M12 12V7M12 12H17M12 12H7", stroke: "currentColor", "stroke-width": "2", "stroke-linecap": "round" }) }));
2671
- }
2672
-
2673
2673
  const SQUID_THEME_CSS_VARIABLE_PREFIX = '--squid-theme-';
2674
2674
  /**
2675
2675
  * Mapping between readable variables name and css variables used TailwindCSS config
@@ -2776,6 +2776,10 @@ const themeTypesKeys = {
2776
2776
  },
2777
2777
  };
2778
2778
 
2779
+ function PlusIcon() {
2780
+ return (jsx("svg", { width: "24", height: "24", viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: jsx("path", { d: "M12 17V12M12 12V7M12 12H17M12 12H7", stroke: "currentColor", "stroke-width": "2", "stroke-linecap": "round" }) }));
2781
+ }
2782
+
2779
2783
  const imageClass = 'tw-w-[40px] tw-aspect-square tw-flex tw-items-center tw-justify-center';
2780
2784
  const defaultBgColor = `var(${themeTypesKeys['royal-500'].cssVariable})`;
2781
2785
  function AssetsButton({ chainImageUrl, tokenImageUrl, tokenSymbol, chainBgColor = defaultBgColor, tokenBgColor = defaultBgColor, tokenTextColor, onClick, }) {
@@ -2795,7 +2799,7 @@ function AssetsButton({ chainImageUrl, tokenImageUrl, tokenSymbol, chainBgColor
2795
2799
  }, children: jsx("img", { src: tokenImageUrl, alt: "", className: "tw-h-squid-xl tw-w-squid-xl -tw-translate-x-[2px] tw-rounded-full" }) })) : null, jsxs("div", { className: cn('tw-flex tw-h-squid-xl tw-w-fit tw-min-w-squid-xl tw-cursor-pointer tw-items-center tw-gap-squid-xxs tw-rounded-br-full tw-rounded-tr-full tw-border-b tw-border-r tw-border-t tw-border-material-light-thin tw-py-squid-xs tw-pr-squid-xs', tokenImageUrl && 'tw-pl-[7px]'), style: {
2796
2800
  backgroundColor: tokenBgColor,
2797
2801
  color: tokenTextColor,
2798
- }, children: [jsx(BodyText, { size: "small", className: "tw-leading-[13px]", children: tokenImageUrl ? tokenSymbol : 'Select token' }), jsx(ChevronLargeRightIcon, { className: "tw-text-material-light-thick" })] })] }));
2802
+ }, children: [jsx(BodyText, { size: "small", className: "tw-leading-[13px]", children: tokenImageUrl ? tokenSymbol : 'Select token' }), jsx(ChevronLargeRightIcon, { className: "tw-opacity-66" })] })] }));
2799
2803
  }
2800
2804
 
2801
2805
  function SearchIcon() {
@@ -2803,8 +2807,8 @@ function SearchIcon() {
2803
2807
  }
2804
2808
 
2805
2809
  function Input(_a) {
2806
- var { placeholder = 'Search', showIcon = true, showPasteButton = false, className, icon, error, onPasteButtonClick } = _a, props = __rest(_a, ["placeholder", "showIcon", "showPasteButton", "className", "icon", "error", "onPasteButtonClick"]);
2807
- return (jsxs("div", { className: "tw-relative tw-w-full tw-text-grey-600", children: [jsx("input", Object.assign({}, props, { className: cn('tw-relative tw-h-10 tw-w-full tw-rounded-full tw-border tw-border-material-light-thin tw-bg-grey-900 tw-text-body-small tw-font-medium tw-text-grey-300 tw-outline-none tw-outline-offset-0 placeholder:tw-text-grey-600 focus:tw-outline-2', showIcon ? 'tw-pl-[44px]' : 'tw-px-2.5', showPasteButton ? 'tw-px-[70px]' : 'tw-pr-2.5', error ? 'tw-outline-status-negative' : 'focus:tw-outline-royal-500', className), placeholder: placeholder })), showIcon ? (jsx("div", { className: "tw-absolute tw-inset-y-0 tw-left-0 tw-flex tw-h-full tw-w-[44px] tw-items-center tw-justify-center tw-px-squid-xs", children: icon || jsx(SearchIcon, {}) })) : null, showPasteButton ? (jsx("div", { className: "tw-absolute tw-inset-y-0 tw-right-1.5 tw-flex tw-items-center tw-justify-center", children: jsx(PasteButton, { onClick: onPasteButtonClick }) })) : null] }));
2810
+ var { placeholder = 'Search', showIcon = true, showPasteButton = false, className, icon, isError = false, onPasteButtonClick } = _a, props = __rest(_a, ["placeholder", "showIcon", "showPasteButton", "className", "icon", "isError", "onPasteButtonClick"]);
2811
+ return (jsxs("div", { className: "tw-relative tw-w-full tw-text-grey-600", children: [jsx("input", Object.assign({}, props, { className: cn('tw-relative tw-h-10 tw-w-full tw-rounded-full tw-border tw-border-material-light-thin tw-bg-grey-900 tw-text-body-small tw-font-medium tw-text-grey-300 tw-outline-none tw-outline-offset-0 placeholder:tw-text-grey-600 focus:tw-outline-2', showIcon ? 'tw-pl-[44px]' : 'tw-px-2.5', showPasteButton ? 'tw-px-[70px]' : 'tw-pr-2.5', isError ? 'tw-outline-status-negative' : 'focus:tw-outline-royal-500', className), placeholder: placeholder })), showIcon ? (jsx("div", { className: "tw-absolute tw-inset-y-0 tw-left-0 tw-flex tw-h-full tw-w-[44px] tw-items-center tw-justify-center tw-px-squid-xs", children: icon || jsx(SearchIcon, {}) })) : null, showPasteButton ? (jsx("div", { className: "tw-absolute tw-inset-y-0 tw-right-1.5 tw-flex tw-items-center tw-justify-center", children: jsx(PasteButton, { onClick: onPasteButtonClick }) })) : null] }));
2808
2812
  }
2809
2813
  const PasteButton = ({ onClick }) => {
2810
2814
  return (jsx("button", { onClick: onClick, className: "tw-h-[30px] tw-rounded-full tw-border tw-border-grey-700 tw-bg-grey-800 tw-px-2 tw-text-grey-300", children: jsx(CaptionText, { children: "Paste" }) }));
@@ -2953,7 +2957,7 @@ function HeadingText({ children, bold, size }) {
2953
2957
  }
2954
2958
 
2955
2959
  function SettingsSlider({ value, type }) {
2956
- return (jsxs("div", { className: "tw-flex tw-items-center tw-justify-center tw-gap-squid-xs tw-self-stretch tw-rounded-squid-xs tw-border-royal-500 tw-p-squid-xs", children: [jsx("span", { className: "tw-flex tw-items-center tw-justify-center", children: type === 'percentage' ? (jsxs(Fragment, { children: [jsx(CaptionText, { className: "tw-text-grey-600", children: String(value) }), jsx(CaptionText, { className: "tw-text-grey-300", children: "%" })] })) : (jsxs(Fragment, { children: [jsx(CaptionText, { className: "tw-text-grey-300", children: "$" }), jsx(CaptionText, { className: "tw-text-grey-600", children: String(value) })] })) }), jsx(Chip, { icon: jsx(ChevronGrabberVerticalIcon, { className: "tw-text-grey-900" }) })] }));
2960
+ return (jsxs("div", { className: "tw-flex tw-items-center tw-justify-center tw-gap-squid-xs tw-self-stretch tw-rounded-squid-xs tw-border-royal-500 tw-p-squid-xs", children: [jsx("span", { className: "tw-flex tw-items-center tw-justify-center", children: type === 'percentage' ? (jsxs(Fragment, { children: [jsx(CaptionText, { className: "!tw-font-medium tw-text-grey-600", children: String(value) }), jsx(CaptionText, { className: "!tw-font-medium tw-text-grey-300", children: "%" })] })) : (jsxs(Fragment, { children: [jsx(CaptionText, { className: "!tw-font-medium tw-text-grey-300", children: "$" }), jsx(CaptionText, { className: "!tw-font-medium tw-text-grey-600", children: String(value) })] })) }), jsx(Chip, { icon: jsx(ChevronGrabberVerticalIcon, { className: "tw-text-grey-900" }) })] }));
2957
2961
  }
2958
2962
 
2959
2963
  const switchSizeClassMap = {
@@ -2980,7 +2984,7 @@ function Switch({ checked = false, onChange, size, disabled = false, }) {
2980
2984
  switchCircleSizeClassMap[size],
2981
2985
  // disabled and checked styles
2982
2986
  checked
2983
- ? 'tw-translate-x-0 tw-bg-grey-100'
2987
+ ? 'tw-translate-x-0 tw-bg-[#FBFBFD]'
2984
2988
  : '-tw-translate-x-full tw-bg-grey-500') })] }));
2985
2989
  }
2986
2990
 
@@ -2989,8 +2993,8 @@ const borderRadiusClassMap = {
2989
2993
  lg: 'tw-rounded-squid-m',
2990
2994
  };
2991
2995
  function Menu(_a) {
2992
- var { children, containerClassName, contentClassName, title, displayControls, rounded = 'lg' } = _a, props = __rest(_a, ["children", "containerClassName", "contentClassName", "title", "displayControls", "rounded"]);
2993
- return (jsx("div", Object.assign({}, props, { className: cn('tw-max-w-[320px]', containerClassName), children: jsxs("div", { className: cn('tw-relative tw-inline-flex tw-flex-col tw-items-center tw-justify-center tw-gap-squid-xs tw-rounded-squid-m tw-bg-material-dark-thick tw-p-squid-s tw-text-center tw-text-material-light-thick tw-backdrop-blur/20 tw-backdrop-saturate-150 group-data-[squid-theme-type=dark]:tw-shadow-elevation-dark-2 group-data-[squid-theme-type=light]:tw-shadow-elevation-light-2', borderRadiusClassMap[rounded], contentClassName), children: [title ? (jsx("div", { className: "tw-z-20 tw-flex tw-flex-col tw-items-center tw-justify-center tw-self-stretch tw-py-squid-xxs tw-text-grey-100", children: jsx(BodyText, { size: "small", className: "tw-self-stretch !tw-leading-[10px]", children: title }) })) : null, typeof children === 'string' ? (jsx(CaptionText, { className: "tw-z-20 tw-self-stretch", children: children })) : (jsx("div", { className: "tw-z-20", children: children })), displayControls ? (jsx("div", { className: "tw-z-20 tw-flex tw-flex-col tw-items-center tw-justify-center tw-gap-squid-xs tw-self-stretch tw-pt-squid-xs", children: jsx(Button, { size: "md", variant: "tertiary", label: "Learn more", className: "tw-self-stretch" }) })) : null, jsx("div", { className: cn('tw-absolute tw-z-10 tw-h-full tw-w-full tw-border tw-border-material-light-thin tw-bg-material-light-thin', borderRadiusClassMap[rounded]) })] }) })));
2996
+ var { children, containerClassName, contentClassName, title, displayControls, rounded = 'lg', menuRef } = _a, props = __rest(_a, ["children", "containerClassName", "contentClassName", "title", "displayControls", "rounded", "menuRef"]);
2997
+ return (jsx("div", Object.assign({}, props, { className: cn('tw-max-w-[320px]', containerClassName), ref: menuRef, children: jsxs("div", { className: cn('tw-relative tw-inline-flex tw-max-w-full tw-flex-col tw-items-center tw-justify-center tw-gap-squid-xs tw-rounded-squid-m tw-bg-material-dark-thick tw-p-squid-s tw-text-center tw-text-material-light-thick tw-backdrop-blur/20 tw-backdrop-saturate-150 group-data-[squid-theme-type=dark]:tw-shadow-elevation-dark-2 group-data-[squid-theme-type=light]:tw-shadow-elevation-light-2', borderRadiusClassMap[rounded], contentClassName), children: [title ? (jsx("div", { className: "tw-z-20 tw-flex tw-flex-col tw-items-center tw-justify-center tw-self-stretch tw-py-squid-xxs tw-text-grey-100", children: jsx(BodyText, { size: "small", className: "tw-self-stretch !tw-leading-[10px]", children: title }) })) : null, typeof children === 'string' ? (jsx(CaptionText, { className: "tw-z-20 tw-self-stretch", children: children })) : (jsx("div", { className: "tw-z-20 tw-max-w-full", children: children })), displayControls ? (jsx("div", { className: "tw-z-20 tw-flex tw-flex-col tw-items-center tw-justify-center tw-gap-squid-xs tw-self-stretch tw-pt-squid-xs", children: jsx(Button, { size: "md", variant: "tertiary", label: "Learn more", className: "tw-self-stretch" }) })) : null, jsx("div", { className: cn('tw-absolute tw-z-10 tw-h-full tw-w-full tw-border tw-border-material-light-thin tw-bg-material-light-thin', borderRadiusClassMap[rounded]) })] }) })));
2994
2998
  }
2995
2999
 
2996
3000
  const tooltipWidthClassMap = {
@@ -3088,7 +3092,7 @@ function FeeButton(_a) {
3088
3092
  }
3089
3093
 
3090
3094
  function SettingsButton({ label }) {
3091
- return (jsx("button", { className: "tw-flex tw-items-center tw-justify-center tw-self-stretch tw-rounded-squid-xs tw-border-2 tw-border-transparent tw-p-squid-xs", children: jsx(CaptionText, { children: label }) }));
3095
+ return (jsx("button", { className: "tw-flex tw-items-center tw-justify-center tw-self-stretch tw-rounded-squid-xs tw-border-2 tw-border-transparent tw-p-squid-xs", children: jsx(CaptionText, { className: "!tw-font-medium", children: label }) }));
3092
3096
  }
3093
3097
 
3094
3098
  function Boost({ boostMode, onToggleBoostMode, estimatedTime, boostDisabledMessage, canToggleBoostMode = true, }) {
@@ -3125,21 +3129,21 @@ function DetailsToolbar({ errorMessage, boostMode = 'normal', onToggleBoostMode,
3125
3129
  return (jsx("aside", { className: cn('tw-h-squid-[50px] tw-flex tw-w-[480px] tw-items-center tw-justify-around tw-bg-grey-900 tw-py-squid-xxs tw-text-grey-500', state === 'error' ? 'tw-px-squid-l' : 'tw-px-squid-m'), children: state === 'error' && errorMessage ? (jsxs(Fragment, { children: [jsx(ErrorMessage, { message: errorMessage }), helpButton ? (jsx(Button, { onClick: helpButton.onClick, size: "md", variant: "tertiary", label: helpButton.label })) : null] })) : (jsxs(Fragment, { children: [jsx("div", { className: detailClassName, children: jsx(FeeButton, { feeInUsd: feeInUsd, onClick: onFeeButtonClick }) }), jsx("div", { className: "tw-flex tw-h-squid-xl tw-w-squid-xxl tw-items-center tw-justify-center", children: state === 'loading' ? (jsx(Loader, { size: "32" })) : (jsx(Button, { variant: "tertiary", size: "md", onClick: onInvertSwapButtonClick, className: "tw-border-transparent tw-bg-transparent hover:tw-bg-material-light-thin", icon: jsx(ChevronLargeDownIcon, {}) })) }), jsx("div", { className: detailClassName, children: jsx(Boost, { estimatedTime: estimatedTime !== null && estimatedTime !== void 0 ? estimatedTime : '0s', boostMode: boostMode, onToggleBoostMode: onToggleBoostMode, canToggleBoostMode: state === 'loading' ? false : canToggleBoostMode, boostDisabledMessage: boostDisabledMessage }) })] })) }));
3126
3130
  }
3127
3131
 
3128
- function DropdownMenuItem({ label, imageUrl, icon, labelClassName, }) {
3129
- return (jsx("li", { className: "tw-max-h-squid-xl tw-w-full tw-px-squid-xxs", children: jsxs("div", { className: "tw-flex tw-h-squid-l tw-cursor-pointer tw-items-center tw-gap-squid-xxs tw-rounded-squid-xs tw-pl-squid-xxs hover:tw-bg-material-light-thin", children: [jsx("div", { className: "tw-flex tw-h-squid-m tw-w-squid-m tw-items-center tw-justify-between tw-rounded-squid-xs", children: imageUrl ? (jsx("img", { src: imageUrl, className: "tw-h-full tw-w-full tw-rounded-squid-xxs" })) : (icon) }), jsx(CaptionText, { className: labelClassName, children: label })] }) }));
3132
+ function DropdownMenuItem({ label, imageUrl, icon, labelClassName, onClick, }) {
3133
+ return (jsx("li", { className: "tw-max-h-squid-xl tw-w-full tw-px-squid-xxs", onClick: onClick, children: jsxs("div", { className: "tw-flex tw-h-squid-l tw-cursor-pointer tw-items-center tw-gap-squid-xxs tw-rounded-squid-xs tw-px-squid-xxs hover:tw-bg-material-light-thin", children: [jsx("div", { className: "tw-flex tw-h-squid-m tw-w-squid-m tw-items-center tw-justify-between tw-rounded-squid-xs", children: imageUrl ? (jsx("img", { src: imageUrl, className: "tw-h-full tw-w-full tw-rounded-squid-xxs" })) : (icon) }), jsx(CaptionText, { className: cn(labelClassName, 'tw-max-w-full tw-truncate !tw-leading-[18px]'), children: label })] }) }));
3130
3134
  }
3131
3135
 
3132
- function useModal(props) {
3133
- const [isModalOpen, setIsModalOpen] = useState(Boolean(props === null || props === void 0 ? void 0 : props.initialIsModalOpen));
3134
- const modalRef = useRef(null);
3135
- const openModalButtonRef = useRef(null);
3136
+ function useDropdownMenu(props) {
3137
+ const [isDropdownOpen, setIsModalOpen] = useState(Boolean(props === null || props === void 0 ? void 0 : props.initialIsModalOpen));
3138
+ const dropdownRef = useRef(null);
3139
+ const openDropdownButtonRef = useRef(null);
3136
3140
  useEffect(() => {
3137
3141
  const handleClickOutside = (event) => {
3138
3142
  var _a;
3139
3143
  // close modal if the user clicked outside of it
3140
- if (modalRef.current &&
3141
- !modalRef.current.contains(event.target) &&
3142
- !((_a = openModalButtonRef.current) === null || _a === void 0 ? void 0 : _a.contains(event.target))) {
3144
+ if (dropdownRef.current &&
3145
+ !dropdownRef.current.contains(event.target) &&
3146
+ !((_a = openDropdownButtonRef.current) === null || _a === void 0 ? void 0 : _a.contains(event.target))) {
3143
3147
  setIsModalOpen(false);
3144
3148
  }
3145
3149
  };
@@ -3147,58 +3151,83 @@ function useModal(props) {
3147
3151
  return () => {
3148
3152
  document.removeEventListener('click', handleClickOutside);
3149
3153
  };
3150
- }, [modalRef]);
3151
- const openModal = useCallback(() => {
3154
+ }, [dropdownRef]);
3155
+ const openDropdown = useCallback(() => {
3152
3156
  setIsModalOpen((prev) => !prev);
3153
3157
  }, []);
3154
- const closeModal = useCallback(() => {
3158
+ const closeDropdown = useCallback(() => {
3155
3159
  setIsModalOpen(false);
3156
3160
  }, []);
3157
3161
  return {
3158
- isModalOpen,
3159
- openModal,
3160
- closeModal,
3161
- modalRef,
3162
- openModalButtonRef,
3162
+ isDropdownOpen,
3163
+ openDropdown,
3164
+ closeDropdown,
3165
+ dropdownRef,
3166
+ openDropdownButtonRef,
3163
3167
  };
3164
3168
  }
3165
3169
 
3166
- function CompassRound({ size = '20', className, }) {
3167
- return (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 20 20", fill: "none", className: className, children: [jsx("path", { d: "M17.7087 9.99996C17.7087 14.2572 14.2575 17.7083 10.0003 17.7083C5.74313 17.7083 2.29199 14.2572 2.29199 9.99996C2.29199 5.74276 5.74313 2.29163 10.0003 2.29163C14.2575 2.29163 17.7087 5.74276 17.7087 9.99996Z", stroke: "currentColor", "stroke-width": "1.5", "stroke-linejoin": "round" }), jsx("path", { d: "M12.2135 7.27515L8.79307 8.208C8.5084 8.28564 8.286 8.50803 8.20837 8.7927L7.27552 12.2132C7.19069 12.5242 7.47609 12.8096 7.78713 12.7248L11.2076 11.7919C11.4923 11.7143 11.7146 11.4919 11.7923 11.2072L12.7251 7.78677C12.81 7.47573 12.5246 7.19032 12.2135 7.27515Z", stroke: "currentColor", "stroke-width": "1.5", "stroke-linejoin": "round" })] }));
3168
- }
3169
- function CircleX({ size = '20', className, }) {
3170
- return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 20 20", fill: "none", className: className, children: jsx("path", { d: "M12.5003 7.49996L7.50033 12.5M12.5003 12.5L7.50033 7.49996M17.7087 9.99996C17.7087 14.2572 14.2575 17.7083 10.0003 17.7083C5.74313 17.7083 2.29199 14.2572 2.29199 9.99996C2.29199 5.74276 5.74313 2.29163 10.0003 2.29163C14.2575 2.29163 17.7087 5.74276 17.7087 9.99996Z", stroke: "currentColor", "stroke-width": "1.5", "stroke-linecap": "round" }) }));
3171
- }
3172
-
3173
3170
  function DotGrid1x3HorizontalIcon({ className, size = '16', }) {
3174
3171
  return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 16 16", fill: "none", className: className, children: jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M1.33325 8.00008C1.33325 7.2637 1.93021 6.66675 2.66659 6.66675C3.40297 6.66675 3.99992 7.2637 3.99992 8.00008C3.99992 8.73646 3.40297 9.33341 2.66659 9.33341C1.93021 9.33341 1.33325 8.73646 1.33325 8.00008ZM6.66659 8.00008C6.66659 7.2637 7.26354 6.66675 7.99992 6.66675C8.7363 6.66675 9.33325 7.2637 9.33325 8.00008C9.33325 8.73646 8.7363 9.33341 7.99992 9.33341C7.26354 9.33341 6.66659 8.73646 6.66659 8.00008ZM11.9999 8.00008C11.9999 7.2637 12.5969 6.66675 13.3333 6.66675C14.0696 6.66675 14.6666 7.2637 14.6666 8.00008C14.6666 8.73646 14.0696 9.33341 13.3333 9.33341C12.5969 9.33341 11.9999 8.73646 11.9999 8.00008Z", fill: "currentColor" }) }));
3175
3172
  }
3176
3173
 
3177
- function RefreshIcon() {
3178
- return (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "20", height: "20", viewBox: "0 0 20 20", fill: "none", children: [jsx("path", { d: "M10.8333 17.4999C11.2936 17.4999 11.6667 17.1269 11.6667 16.6666C11.6667 16.2064 11.2936 15.8333 10.8333 15.8333C10.3731 15.8333 10 16.2064 10 16.6666C10 17.1269 10.3731 17.4999 10.8333 17.4999Z", fill: "currentColor" }), jsx("path", { d: "M17.5 9.16661C17.5 8.70638 17.1269 8.33328 16.6667 8.33328C16.2064 8.33328 15.8333 8.70638 15.8333 9.16661C15.8333 9.62685 16.2064 9.99995 16.6667 9.99995C17.1269 9.99995 17.5 9.62685 17.5 9.16661Z", fill: "currentColor" }), jsx("path", { d: "M16.6079 11.8899C17.0065 12.12 17.143 12.6297 16.9129 13.0283C16.6828 13.4268 16.1731 13.5634 15.7746 13.3333C15.376 13.1032 15.2394 12.5935 15.4695 12.1949C15.6997 11.7964 16.2093 11.6598 16.6079 11.8899Z", fill: "currentColor" }), jsx("path", { d: "M14.473 16.0785C14.8716 15.8483 15.0081 15.3387 14.778 14.9401C14.5479 14.5415 14.0382 14.405 13.6397 14.6351C13.2411 14.8652 13.1045 15.3749 13.3347 15.7734C13.5648 16.172 14.0744 16.3086 14.473 16.0785Z", fill: "currentColor" }), jsx("path", { d: "M15.7725 6.66661C15.3739 6.89673 14.8642 6.76017 14.6341 6.36159C14.404 5.96301 14.5405 5.45335 14.9391 5.22323C15.3377 4.99312 15.8474 5.12968 16.0775 5.52826C16.3076 5.92683 16.171 6.43649 15.7725 6.66661Z", fill: "currentColor" }), jsx("path", { d: "M7.70833 12.2917V16.875H3.125M7.5 16.4063C4.93915 15.4062 3.125 12.915 3.125 10C3.125 6.20304 6.20304 3.125 10 3.125C10.9614 3.125 11.8768 3.32235 12.7077 3.67876", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" })] }));
3179
- }
3180
-
3181
- function HistoryItem({ firstImageUrl, secondImageUrl, isPending, dateCompleted, fromAmount, fromLabel, toAmount, toLabel, pendingLabel = 'Pending', }) {
3182
- const { isModalOpen, modalRef, openModalButtonRef, openModal } = useModal();
3183
- return (jsx("li", { className: "tw-h-list-item-large tw-min-w-list-item-small tw-self-stretch tw-bg-grey-900 tw-px-squid-xs tw-text-grey-300", children: jsxs("div", { className: "tw-group/history-item tw-relative tw-flex tw-flex-shrink-0 tw-cursor-pointer tw-items-center tw-gap-squid-xs tw-self-stretch tw-rounded-squid-s tw-px-squid-xs tw-py-squid-xxs hover:tw-bg-material-light-thin", children: [jsxs("div", { className: "tw-relative tw-h-10 tw-w-[60px]", children: [isPending ? (jsx("span", { className: "tw-absolute -tw-left-[5px] tw-bottom-0 tw-z-30 tw-flex tw-h-squid-m tw-w-squid-m tw-items-center tw-justify-center tw-rounded-full tw-border tw-border-grey-900 tw-bg-royal-400 tw-p-0.5", children: jsx(DotGrid1x3HorizontalIcon, {}) })) : null, jsx("img", { src: firstImageUrl, className: "tw-absolute tw-h-10 tw-w-10 tw-rounded-full tw-border tw-border-grey-900" }), jsx("img", { src: secondImageUrl, className: "tw-absolute tw-left-5 tw-h-10 tw-w-10 tw-rounded-full tw-border tw-border-grey-900" })] }), jsxs("div", { className: "tw-flex tw-h-10 tw-flex-1 tw-flex-col tw-self-stretch", children: [jsxs("div", { className: "tw-flex tw-h-5 tw-items-center tw-justify-between tw-text-grey-500", children: [jsxs("div", { className: "tw-flex tw-items-center", children: [jsx(CaptionText, { children: fromLabel }), jsx("span", { className: "tw-text-grey-600", children: jsx(ChevronRightSmallIcon, {}) }), jsx(CaptionText, { children: toLabel })] }), jsx("div", { className: "tw-transition-opacity group-hover/history-item:tw-opacity-0", children: isPending ? (jsx(CaptionText, { className: "tw-text-royal-400", children: pendingLabel })) : (jsx(CaptionText, { children: dateCompleted })) }), jsx("button", { className: "tw-absolute tw-right-squid-xxs tw-top-squid-xxs tw-flex tw-h-squid-xl tw-w-squid-xl tw-items-center tw-justify-center tw-rounded-squid-xs tw-bg-material-light-thin tw-p-2 tw-text-grey-300 tw-opacity-0 tw-transition-opacity group-hover/history-item:tw-opacity-100", onClick: openModal, ref: openModalButtonRef, children: jsx(DotGrid1x3HorizontalIcon, { size: "24" }) })] }), jsxs("div", { className: "tw-flex tw-h-5 tw-items-center tw-gap-squid-xxs tw-text-grey-300", children: [jsx(BodyText, { size: "small", children: fromAmount }), jsx("span", { className: "tw-text-grey-600", children: jsx(ChevronLargeRightIcon, {}) }), jsx(BodyText, { size: "small", children: toAmount })] })] }), isModalOpen ? (jsx(DropdownMenu, { className: "-tw-left-[85px] tw-top-7", dropdownRef: modalRef, items: [
3184
- {
3185
- label: 'Repeat swap',
3186
- icon: jsx(RefreshIcon, {}),
3187
- },
3188
- {
3189
- label: 'View on xyz',
3190
- icon: jsx(CompassRound, {}),
3191
- },
3192
- {
3193
- label: 'Clear',
3194
- labelClassName: 'tw-text-status-negative',
3195
- icon: jsx(CircleX, { className: "tw-text-status-negative" }),
3196
- },
3197
- ] })) : null] }) }));
3198
- }
3199
-
3200
- function LoadingSkeleton({ className, height = '20', }) {
3201
- return (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: "100", height: height, viewBox: "0 0 100 20", fill: "none", className: className, children: [jsxs("g", { "clip-path": "url(#clip0_1083_18992)", children: [jsx("mask", { id: "mask0_1083_18992", style: { maskType: 'alpha' }, maskUnits: "userSpaceOnUse", x: "0", y: "0", width: "100", height: "20", children: jsx("rect", { width: "100", height: "20", fill: "url(#paint0_linear_1083_18992)" }) }), jsx("g", { mask: "url(#mask0_1083_18992)", children: jsx("rect", { width: "100", height: "20", fill: "currentColor" }) })] }), jsxs("defs", { children: [jsxs("linearGradient", { id: "paint0_linear_1083_18992", x1: "0", y1: "10", x2: "100", y2: "10", gradientUnits: "userSpaceOnUse", className: "tw-animate-loading-gradient", children: [jsx("stop", { "stop-color": "#D9D9D9", "stop-opacity": "0.33" }), jsx("stop", { offset: "0.395881", "stop-color": "#737373", "stop-opacity": "0.33" }), jsx("stop", { offset: "0.597867", "stop-color": "#737373", "stop-opacity": "0.66" }), jsx("stop", { offset: "0.697004", "stop-color": "#737373", "stop-opacity": "0.33" })] }), jsx("clipPath", { id: "clip0_1083_18992", children: jsx("path", { d: "M0 10C0 4.47715 4.47715 0 10 0H90C95.5228 0 100 4.47715 100 10C100 15.5228 95.5229 20 90 20H10C4.47716 20 0 15.5228 0 10Z", fill: "white" }) })] })] }));
3174
+ const dropdownPositionClassMap = {
3175
+ top: 'tw-right-[calc(100%-10px)] tw-bottom-7',
3176
+ bottom: 'tw-right-[calc(100%-10px)] tw-top-7',
3177
+ center: 'tw-right-[40px] -tw-top-[55px]',
3178
+ };
3179
+ function HistoryItem({ firstImageUrl, secondImageUrl, isPending, dateCompleted, fromAmount, fromLabel, toAmount, toLabel, pendingLabel = 'Pending', dropdownMenuItems, }) {
3180
+ const { isDropdownOpen, dropdownRef, openDropdownButtonRef, openDropdown } = useDropdownMenu();
3181
+ const [dropdownPosition, setDropdownPosition] = useState(null);
3182
+ const itemRef = useRef(null);
3183
+ const menuRef = useRef(null);
3184
+ // Effect to find the best position for the dropdown menu, so it's always visible for the user
3185
+ useEffect(() => {
3186
+ if (!isDropdownOpen) {
3187
+ // when the dropdown is closed, we want to reset its position
3188
+ // because user may scroll, and the old position may be out of view, so we'll need to recalculate it
3189
+ setDropdownPosition(null);
3190
+ return;
3191
+ }
3192
+ const item = itemRef.current;
3193
+ const itemsContainer = item === null || item === void 0 ? void 0 : item.parentElement;
3194
+ const dropdownMenu = menuRef.current;
3195
+ if (!item || !dropdownRef.current || !itemsContainer || !dropdownMenu) {
3196
+ return;
3197
+ }
3198
+ // Get the bounding rectangle of the item
3199
+ const itemRect = item.getBoundingClientRect();
3200
+ // Get the bounding rectangle of the container element
3201
+ const containerRect = itemsContainer.getBoundingClientRect();
3202
+ // Calculate the bottom position of the visible area of the the items container
3203
+ const containerVisibleBottom = containerRect.top + containerRect.height;
3204
+ // Calculate the distance from the bottom of the item to the visible bottom of the items container
3205
+ const distanceBetweenItemBottomAndContainerBottomEdge = containerVisibleBottom - itemRect.bottom;
3206
+ // the same but for the top
3207
+ const distanceBetweenItemTopAndContainerTopEdge = itemRect.top - containerRect.top;
3208
+ const dropdownMenuHeight = dropdownMenu.clientHeight;
3209
+ // check if the height of the dropdown is less than the longest distance, either top or bottom
3210
+ // if so, means that the dropdown keeps visible when positioned at the top or bottom of the item
3211
+ const isDropdownVisibleAtItemTopOrBottom = dropdownMenuHeight <=
3212
+ Math.max(distanceBetweenItemBottomAndContainerBottomEdge, distanceBetweenItemTopAndContainerTopEdge);
3213
+ // if the dropdown is not visible at top or bottom of the item
3214
+ // we just center it
3215
+ if (!isDropdownVisibleAtItemTopOrBottom) {
3216
+ return setDropdownPosition('center');
3217
+ }
3218
+ // finally, if the dropdown fits, position it where it has more space
3219
+ if (distanceBetweenItemBottomAndContainerBottomEdge >=
3220
+ distanceBetweenItemTopAndContainerTopEdge) {
3221
+ setDropdownPosition('bottom');
3222
+ }
3223
+ else {
3224
+ setDropdownPosition('top');
3225
+ }
3226
+ }, [isDropdownOpen, menuRef, dropdownPosition, itemRef]);
3227
+ return (jsx("li", { ref: itemRef, className: "tw-h-list-item-large tw-min-w-list-item-small tw-self-stretch tw-bg-grey-900 tw-px-squid-xs tw-text-grey-300", children: jsxs("div", { className: "tw-group/history-item tw-relative tw-flex tw-flex-shrink-0 tw-cursor-pointer tw-items-center tw-gap-squid-xs tw-self-stretch tw-rounded-squid-s tw-px-squid-xs tw-py-squid-xxs hover:tw-bg-material-light-thin", children: [jsxs("div", { className: "tw-relative tw-h-10 tw-w-[60px]", children: [isPending ? (jsx("span", { className: "tw-absolute -tw-left-[5px] tw-bottom-0 tw-z-30 tw-flex tw-h-squid-m tw-w-squid-m tw-items-center tw-justify-center tw-rounded-full tw-border tw-border-grey-900 tw-bg-royal-400 tw-p-0.5", children: jsx(DotGrid1x3HorizontalIcon, {}) })) : null, jsx("img", { src: firstImageUrl, className: "tw-absolute tw-h-10 tw-w-10 tw-rounded-full tw-border tw-border-grey-900" }), jsx("img", { src: secondImageUrl, className: "tw-absolute tw-left-5 tw-h-10 tw-w-10 tw-rounded-full tw-border tw-border-grey-900" })] }), jsxs("div", { className: "tw-flex tw-h-10 tw-flex-1 tw-flex-col tw-self-stretch", children: [jsxs("div", { className: "tw-flex tw-h-5 tw-items-center tw-justify-between tw-text-grey-500", children: [jsxs("div", { className: "tw-flex tw-items-center", children: [jsx(CaptionText, { children: fromLabel }), jsx("span", { className: "tw-text-grey-600", children: jsx(ChevronRightSmallIcon, {}) }), jsx(CaptionText, { children: toLabel })] }), !!dropdownMenuItems && (jsx("button", { className: "tw-peer tw-absolute tw-right-squid-xxs tw-top-squid-xxs tw-flex tw-h-squid-xl tw-w-squid-xl tw-items-center tw-justify-center tw-rounded-squid-xs tw-bg-material-light-thin tw-p-2 tw-text-grey-300 tw-opacity-0 tw-transition-opacity focus:tw-opacity-100 group-hover/history-item:tw-opacity-100", onClick: openDropdown, ref: openDropdownButtonRef, children: jsx(DotGrid1x3HorizontalIcon, { size: "24" }) })), jsx("div", { className: cn(!!dropdownMenuItems &&
3228
+ 'tw-transition-opacity group-hover/history-item:tw-opacity-0 peer-focus:tw-opacity-0'), children: isPending ? (jsx(CaptionText, { className: "tw-text-royal-400", children: pendingLabel })) : (jsx(CaptionText, { children: dateCompleted })) })] }), jsxs("div", { className: "tw-flex tw-h-5 tw-items-center tw-gap-squid-xxs tw-text-grey-300", children: [jsx(BodyText, { size: "small", children: fromAmount }), jsx("span", { className: "tw-text-grey-600", children: jsx(ChevronLargeRightIcon, {}) }), jsx(BodyText, { size: "small", children: toAmount })] })] }), isDropdownOpen && !!dropdownMenuItems ? (jsx(DropdownMenu, { menuRef: menuRef,
3229
+ // only show dropdown menu if there is a position defined for it
3230
+ isHidden: !dropdownPosition, className: cn(!!dropdownPosition && dropdownPositionClassMap[dropdownPosition]), dropdownRef: dropdownRef, items: dropdownMenuItems })) : null] }) }));
3202
3231
  }
3203
3232
 
3204
3233
  const listItemSizeMap = {
@@ -3231,7 +3260,7 @@ function HelpIcon({ size = '20', className, }) {
3231
3260
  return (jsxs("svg", { xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 20 20", fill: "none", className: className, children: [jsx("g", { "clip-path": "url(#clip0_457_36778)", children: jsx("path", { "fill-rule": "evenodd", "clip-rule": "evenodd", d: "M20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10ZM6 7C6 4.46214 8.03736 3 10 3C12.1193 3 14 4.66531 14 7C14 7.93746 13.7596 8.6603 13.368 9.2586C13.0353 9.76679 12.6034 10.1601 12.2697 10.4639L12.1757 10.5497C11.8041 10.8904 11.534 11.1593 11.337 11.504C11.1513 11.8288 11 12.2794 11 13C11 13.5523 10.5523 14 10 14C9.44772 14 9 13.5523 9 13C9 11.9706 9.22366 11.1712 9.60051 10.5117C9.96604 9.87199 10.4459 9.42214 10.8243 9.07535L10.8834 9.02116L10.8834 9.02116L10.8834 9.02115C11.2572 8.67885 11.5066 8.45039 11.6945 8.16328C11.8654 7.9022 12 7.56254 12 7C12 5.83469 11.0807 5 10 5C8.96264 5 8 5.73786 8 7C8 7.55228 7.55228 8 7 8C6.44772 8 6 7.55228 6 7ZM10 15C9.44771 15 9 15.4477 9 16C9 16.5523 9.44771 17 10 17C10.5523 17 11 16.5523 11 16C11 15.4477 10.5523 15 10 15Z", fill: "currentColor" }) }), jsx("defs", { children: jsx("clipPath", { id: "clip0_457_36778", children: jsx("rect", { width: "20", height: "20", fill: "white" }) }) })] }));
3232
3261
  }
3233
3262
 
3234
- function SettingsItem({ icon, label, controls, transparentControls = false, showHelpIcon = true, link, }) {
3263
+ function SettingsItem({ icon, label, controls, transparentControls = false, showHelpIcon = true, link, transparent = false, helpTooltip, }) {
3235
3264
  const ContentTag = link ? 'a' : 'div';
3236
3265
  const contentTagProps = link
3237
3266
  ? {
@@ -3239,7 +3268,11 @@ function SettingsItem({ icon, label, controls, transparentControls = false, show
3239
3268
  target: '_blank',
3240
3269
  }
3241
3270
  : {};
3242
- return (jsx("li", { className: "tw-h-[50px] tw-self-stretch tw-bg-grey-900 tw-px-squid-xs", children: jsxs(ContentTag, Object.assign({ className: cn('tw-flex tw-items-center tw-justify-center tw-gap-squid-xs tw-rounded-squid-s tw-px-squid-xs tw-py-squid-xs tw-text-grey-300', link && 'hover:tw-bg-material-light-thin') }, contentTagProps, { children: [icon, jsxs("div", { className: "tw-flex tw-flex-1 tw-items-center tw-gap-squid-xxs tw-self-stretch", children: [jsx(BodyText, { size: "small", children: label }), showHelpIcon ? jsx(HelpIcon, { className: "tw-text-grey-600" }) : null] }), jsx("div", { className: cn('tw-flex tw-h-squid-l tw-items-center tw-justify-center tw-rounded-squid-xs', transparentControls ? '' : 'tw-bg-grey-800'), children: controls })] })) }));
3271
+ const helpIcon = showHelpIcon && (jsx(HelpIcon, { className: cn('tw-text-grey-600',
3272
+ // only add hover styles if helpTooltip is provided
3273
+ !!helpTooltip &&
3274
+ 'tw-cursor-help tw-transition-colors tw-duration-200 hover:tw-text-grey-400') }));
3275
+ return (jsx("li", { className: cn('tw-h-[50px] tw-self-stretch tw-px-squid-xs', transparent ? 'tw-bg-transparent' : 'tw-bg-grey-900 '), children: jsxs(ContentTag, Object.assign({ className: cn('tw-flex tw-items-center tw-justify-center tw-gap-squid-xs tw-rounded-squid-s tw-px-squid-xs tw-py-squid-xs tw-text-grey-300', link && 'hover:tw-bg-material-light-thin') }, contentTagProps, { children: [icon, jsxs("div", { className: "tw-flex tw-flex-1 tw-items-center tw-gap-squid-xxs tw-self-stretch", children: [jsx(BodyText, { size: "small", children: label }), helpTooltip ? (jsx(Tooltip, Object.assign({}, helpTooltip, { children: helpIcon }))) : (jsx(Fragment, { children: helpIcon }))] }), jsx("div", { className: cn('tw-flex tw-h-squid-l tw-items-center tw-justify-center tw-rounded-squid-xs', transparentControls ? '' : 'tw-bg-grey-800'), children: controls })] })) }));
3243
3276
  }
3244
3277
 
3245
3278
  function SwapDetailListItem({ label, detail, icon, isLoading = false, }) {
@@ -3284,11 +3317,15 @@ function SwapStepItem({ descriptionBlocks, chipContent, showStepSeparator = fals
3284
3317
  }) }), !!link && (jsx(ChevronLargeRightIcon, { className: "tw-mr-squid-xxs tw-hidden tw-text-material-light-average group-hover/swap-step-item:tw-block" }))] })] }));
3285
3318
  }
3286
3319
 
3287
- function DropdownMenu({ dropdownRef, items, className, }) {
3288
- return (jsx("div", { ref: dropdownRef, className: "tw-relative", children: jsx(Menu, { rounded: "sm", containerClassName: cn('tw-absolute tw-right-0 tw-z-20', className), contentClassName: "!tw-p-0", children: jsx("ul", { className: "tw-flex tw-w-[144px] tw-flex-col tw-gap-squid-xxs tw-overflow-auto tw-px-0 tw-py-squid-xxs", children: items.map((item) => (jsx(DropdownMenuItem, Object.assign({}, item), item.label))) }) }) }));
3320
+ function DropdownMenu({ dropdownRef, items, className, menuRef, isHidden = false, listClassName, }) {
3321
+ return (jsx("div", { ref: dropdownRef, className: "tw-relative", children: jsx(Menu, { menuRef: menuRef, rounded: "sm", containerClassName: cn('tw-absolute tw-right-0 tw-z-20', className), contentClassName: "!tw-p-0", children: !isHidden && (jsx("ul", { className: cn('tw-flex tw-max-w-full tw-flex-col tw-gap-squid-xxs tw-overflow-auto tw-px-0 tw-py-squid-xxs', listClassName), children: items.map((item) => (jsx(DropdownMenuItem, Object.assign({}, item), item.label))) })) }) }));
3322
+ }
3323
+
3324
+ function InfoBox({ title, description, icon }) {
3325
+ return (jsxs("div", { className: "tw-align-self-stretch tw-flex tw-flex-col tw-items-center tw-gap-squid-xs tw-px-squid-m tw-pb-squid-l tw-pt-squid-xs tw-text-royal-400", children: [icon, jsxs("div", { className: "tw-flex tw-flex-col tw-items-center tw-justify-center tw-gap-squid-xs tw-self-stretch tw-pt-squid-xxs tw-text-center", children: [jsx(BodyText, { size: "small", className: "!tw-leading-[9px]", children: title }), jsx(CaptionText, { className: "tw-text-grey-500", children: description })] })] }));
3289
3326
  }
3290
3327
 
3291
- function Modal({ children, className, onBackdropClick, isOpen: _isOpen = true, }) {
3328
+ function Modal({ children, className, onBackdropClick, isOpen: _isOpen = true, maxHeight = false, }) {
3292
3329
  const [isOpen, setIsOpen] = useState(_isOpen);
3293
3330
  useEffect(() => {
3294
3331
  if (_isOpen)
@@ -3308,15 +3345,17 @@ function Modal({ children, className, onBackdropClick, isOpen: _isOpen = true, }
3308
3345
  onBackdropClick();
3309
3346
  }
3310
3347
  }
3311
- : undefined, className: cn('tw-absolute tw-inset-0 tw-z-40 tw-flex tw-items-start tw-justify-center tw-bg-material-dark-average tw-px-squid-xs tw-py-squid-xl tw-pb-squid-m tw-transition-all', _isOpen ? 'tw-animate-blur-in' : 'tw-animate-blur-out'), children: jsx("div", { className: cn('tw-relative tw-flex tw-max-h-[600px] tw-w-[400px] tw-flex-col tw-items-start tw-justify-end tw-gap-squid-xxs tw-self-end', className, _isOpen ? 'tw-animate-slide-to-top' : 'tw-animate-slide-to-bottom'), children: children }) })));
3348
+ : undefined, className: cn('tw-absolute tw-inset-0 tw-z-40 tw-flex tw-items-start tw-justify-center tw-bg-material-dark-average tw-px-squid-xs tw-py-squid-xl tw-pb-squid-m tw-transition-all', _isOpen ? 'tw-animate-blur-in' : 'tw-animate-blur-out'), children: jsx("div", { className: cn('tw-relative tw-flex tw-max-h-[600px] tw-w-[400px] tw-flex-col tw-items-start tw-justify-end tw-gap-squid-xxs tw-self-end', className, _isOpen ? 'tw-animate-slide-to-top' : 'tw-animate-slide-to-bottom', maxHeight && 'tw-h-full'), children: children }) })));
3312
3349
  }
3313
3350
 
3314
- function NavigationBar({ title, displayBackButton = false, logoUrl, transparent = false, displayButtonShadows = false, onBackButtonClick, label = '', onAddressButtonClick, isLoading, }) {
3351
+ function NavigationBar({ title, displayBackButton = false, logoUrl, transparent = false, displayButtonShadows = false, onBackButtonClick, actions, }) {
3315
3352
  return (jsxs("nav", { className: cn('tw-flex tw-max-h-[120px] tw-min-w-96 tw-flex-col tw-text-grey-300', transparent ? 'tw-bg-transparent' : 'tw-bg-grey-900'), children: [jsxs("div", { className: cn('tw-flex tw-h-squid-xxl tw-items-center tw-justify-end tw-gap-x-squid-xs', displayBackButton ? 'tw-px-squid-m' : 'tw-pl-squid-l tw-pr-squid-m'), children: [displayBackButton ? (jsx(Button, { className: displayButtonShadows
3316
3353
  ? 'group-data-[squid-theme-type=dark]:tw-shadow-elevation-dark-2 group-data-[squid-theme-type=light]:tw-shadow-elevation-light-2'
3317
- : undefined, variant: "tertiary", size: "md", icon: jsx(ArrowLeftIcon, {}), onClick: onBackButtonClick })) : null, logoUrl ? (jsx("img", { src: logoUrl, className: "tw-h-squid-xl tw-min-w-squid-xl" })) : null, jsx("span", { className: "tw-flex tw-flex-1 tw-items-center tw-justify-end", children: jsx(AddressButton, { isLoading: isLoading, onClick: onAddressButtonClick, className: displayButtonShadows
3318
- ? 'group-data-[squid-theme-type=dark]:tw-shadow-elevation-dark-2 group-data-[squid-theme-type=light]:tw-shadow-elevation-light-2'
3319
- : undefined, label: label }) })] }), title ? (jsx("div", { className: "tw-flex tw-h-squid-xxl tw-items-center tw-px-squid-l tw-py-squid-xxs", children: jsx(HeadingText, { size: "small", children: title }) })) : null] }));
3354
+ : undefined, variant: "tertiary", size: "md", icon: jsx(ArrowLeftIcon, {}), onClick: onBackButtonClick })) : null, logoUrl ? (jsx("img", { src: logoUrl, className: "tw-h-squid-xl tw-min-w-squid-xl" })) : null, jsx("span", { className: "tw-flex tw-flex-1 tw-items-center tw-justify-end tw-gap-squid-xxs", children: actions === null || actions === void 0 ? void 0 : actions.map((action) => (jsx(Button, { size: "md", variant: "tertiary", label: typeof action.labelOrIcon === 'string'
3355
+ ? action.labelOrIcon
3356
+ : undefined, className: "tw-text-grey-300", icon: typeof action.labelOrIcon === 'string'
3357
+ ? null
3358
+ : action.labelOrIcon, onClick: action.onClick }))) })] }), title ? (jsx("div", { className: "tw-flex tw-h-squid-xxl tw-items-center tw-px-squid-l tw-py-squid-xxs", children: jsx(HeadingText, { size: "small", children: title }) })) : null] }));
3320
3359
  }
3321
3360
 
3322
3361
  function ProductCard({ children }) {
@@ -3395,12 +3434,12 @@ function SwapStepsCollapsed({ steps, currentStepIndex: _newStepIndex, }) {
3395
3434
  };
3396
3435
  }, [isShowRouteAnimationRunning]);
3397
3436
  const collapseRouteSteps = () => setIsShowRouteAnimationRunning(false);
3398
- return (jsxs(Fragment, { children: [jsx(Tooltip, { tooltipContent: "View route", tooltipWidth: "max", containerClassName: "tw-w-full", childrenClassName: "tw-w-full tw-rounded-full", children: jsxs("button", { className: "tw-relative tw-max-h-button tw-overflow-hidden tw-rounded-full tw-border tw-border-material-light-thin tw-bg-grey-800", onClick: () => {
3437
+ return (jsxs(Fragment, { children: [jsx(Tooltip, { tooltipContent: "View route", tooltipWidth: "max", containerClassName: "tw-w-full", childrenClassName: "tw-w-full tw-rounded-full", children: jsxs("button", { className: "tw-relative tw-max-h-button tw-max-w-[400px] tw-overflow-hidden tw-rounded-full tw-border tw-border-material-light-thin tw-bg-grey-800", onClick: () => {
3399
3438
  // mount route component and start animation
3400
3439
  setIsRouteVisible(true);
3401
3440
  setIsShowRouteAnimationRunning(true);
3402
- }, children: [newStepIndex > currentStepIndex && (jsx("div", { className: "tw-animate-translate-to-bottom tw-absolute -tw-top-full tw-left-0 tw-w-full", children: jsx(CurrentStep, { currentStep: steps[newStepIndex], isFirstStep: newStepIndex === 0, isLastStep: newStepIndex === steps.length - 1 }) })), jsx(CurrentStep, { className: cn(newStepIndex > currentStepIndex &&
3403
- 'tw-animate-translate-to-bottom', newStepIndex < currentStepIndex && 'tw-animate-translate-to-top'), currentStep: currentStep, isFirstStep: isFirstStep, isLastStep: isLastStep }), newStepIndex < currentStepIndex && (jsx("div", { className: "tw-animate-translate-to-top tw-absolute tw-left-0 tw-top-full tw-w-full", children: jsx(CurrentStep, { currentStep: steps[newStepIndex], isFirstStep: newStepIndex === 0, isLastStep: newStepIndex === steps.length - 1 }) })), jsx("span", { className: "tw-absolute tw-left-0 tw-top-0 tw-z-20 tw-h-[21px] tw-w-full tw-bg-gradient-to-b tw-from-grey-800" }), jsx("span", { className: "tw-absolute tw-bottom-0 tw-left-0 tw-z-20 tw-h-[21px] tw-w-full tw-bg-gradient-to-t tw-from-grey-800" })] }) }), isRouteVisible && (jsxs("div", { className: "tw-absolute tw-top-0 tw-z-20 tw-flex tw-h-[536px] tw-w-full tw-flex-col tw-justify-end tw-gap-squid-xxs", children: [jsx("div", { className: cn('tw-absolute tw-top-0 tw-h-[536px] tw-w-full tw-rounded-squid-l tw-bg-material-dark-thick tw-opacity-0 tw-backdrop-blur/10', isShowRouteAnimationRunning
3441
+ }, children: [newStepIndex > currentStepIndex && (jsx("div", { className: "tw-absolute -tw-top-full tw-left-0 tw-w-full tw-animate-translate-to-bottom", children: jsx(CurrentStep, { currentStep: steps[newStepIndex], isFirstStep: newStepIndex === 0, isLastStep: newStepIndex === steps.length - 1 }) })), jsx(CurrentStep, { className: cn(newStepIndex > currentStepIndex &&
3442
+ 'tw-animate-translate-to-bottom', newStepIndex < currentStepIndex && 'tw-animate-translate-to-top'), currentStep: currentStep, isFirstStep: isFirstStep, isLastStep: isLastStep }), newStepIndex < currentStepIndex && (jsx("div", { className: "tw-absolute tw-left-0 tw-top-full tw-w-full tw-animate-translate-to-top", children: jsx(CurrentStep, { currentStep: steps[newStepIndex], isFirstStep: newStepIndex === 0, isLastStep: newStepIndex === steps.length - 1 }) })), jsx("span", { className: "tw-absolute tw-left-0 tw-top-0 tw-z-20 tw-h-[21px] tw-w-full tw-bg-gradient-to-b tw-from-grey-800" }), jsx("span", { className: "tw-absolute tw-bottom-0 tw-left-0 tw-z-20 tw-h-[21px] tw-w-full tw-bg-gradient-to-t tw-from-grey-800" })] }) }), isRouteVisible && (jsxs("div", { className: "tw-absolute tw-top-0 tw-z-20 tw-flex tw-h-[536px] tw-w-full tw-flex-col tw-justify-end tw-gap-squid-xxs", children: [jsx("div", { className: cn('tw-absolute tw-top-0 tw-h-[536px] tw-w-full tw-rounded-squid-l tw-bg-material-dark-thick tw-opacity-0 tw-backdrop-blur/10', isShowRouteAnimationRunning
3404
3443
  ? 'tw-animate-fade-in'
3405
3444
  : 'tw-animate-fade-out'), onClick: collapseRouteSteps }), jsxs("div", { className: cn('tw-flex tw-max-h-[536px] tw-w-full tw-flex-col tw-gap-squid-xxs tw-overflow-hidden tw-rounded-squid-l tw-border tw-border-material-light-thin tw-bg-grey-800 tw-backdrop-blur-2xl', isShowRouteAnimationRunning
3406
3445
  ? 'tw-animate-slide-to-top'
@@ -3478,4 +3517,4 @@ function SquidConfigProvider({ theme, children, themeType = 'light', }) {
3478
3517
  return (jsx("div", { style: parsedStyle, "data-squid-theme-type": themeType, className: "tw-group tw-relative tw-font-geist", children: children }));
3479
3518
  }
3480
3519
 
3481
- export { AddressButton, ArrowButton, AssetsButton, BadgeImage, BodyText, Boost, BoostButton, Button, CaptionText, Chip, DetailsToolbar, DropdownMenu, DropdownMenuItem, ErrorMessage, FeeButton, HeadingText, HistoryItem, Input, ListItem, Menu, MenuItem, Modal, NavigationBar, NumericInput, ProductCard, ProfileHeaderBackground, SectionTitle, SettingsButton, SettingsItem, SettingsSlider, SquidConfigProvider, SwapConfiguration, SwapDetailListItem, SwapProgressViewHeader, SwapStepItem, SwapStepsCollapsed, Switch, TokenPair, Tooltip, UsdAmount, useModal };
3520
+ export { AddressButton, ArrowButton, AssetsButton, BadgeImage, BodyText, Boost, BoostButton, Button, CaptionText, Chip, DetailsToolbar, DropdownMenu, DropdownMenuItem, ErrorMessage, FeeButton, HeadingText, HistoryItem, InfoBox, Input, ListItem, LoadingSkeleton, Menu, MenuItem, Modal, NavigationBar, NumericInput, ProductCard, ProfileHeaderBackground, SectionTitle, SettingsButton, SettingsItem, SettingsSlider, SquidConfigProvider, SwapConfiguration, SwapDetailListItem, SwapProgressViewHeader, SwapStepItem, SwapStepsCollapsed, Switch, TokenPair, Tooltip, UsdAmount, useDropdownMenu };
@@ -1,2 +1,3 @@
1
1
  export * from './BadgeImage';
2
+ export * from './LoadingSkeleton';
2
3
  export * from './UsdAmount';
@@ -4,8 +4,8 @@ interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
4
4
  showIcon?: boolean;
5
5
  showPasteButton?: boolean;
6
6
  icon?: React.ReactNode;
7
- error?: string;
7
+ isError?: boolean;
8
8
  onPasteButtonClick?: () => void;
9
9
  }
10
- export declare function Input({ placeholder, showIcon, showPasteButton, className, icon, error, onPasteButtonClick, ...props }: InputProps): import("react/jsx-runtime").JSX.Element;
10
+ export declare function Input({ placeholder, showIcon, showPasteButton, className, icon, isError, onPasteButtonClick, ...props }: InputProps): import("react/jsx-runtime").JSX.Element;
11
11
  export {};
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  export type TooltipWidth = 'max' | 'container';
3
3
  export type TooltipThreshold = 'xxs' | 'xs' | 's' | 'm' | 'l' | 'xl' | 'xxl';
4
- interface TooltipProps {
4
+ export interface TooltipProps {
5
5
  children: React.ReactNode;
6
6
  tooltipContent: React.ReactNode;
7
7
  threshold?: TooltipThreshold;
@@ -11,4 +11,3 @@ interface TooltipProps {
11
11
  tooltipClassName?: string;
12
12
  }
13
13
  export declare function Tooltip({ children, tooltipContent, tooltipWidth, threshold, containerClassName, childrenClassName, tooltipClassName, }: TooltipProps): import("react/jsx-runtime").JSX.Element;
14
- export {};
@@ -6,3 +6,7 @@ export declare function ClockOutlineIcon({ className, size, }: {
6
6
  className?: string;
7
7
  size?: string;
8
8
  }): import("react/jsx-runtime").JSX.Element;
9
+ export declare const SettingsGearIcon: ({ size, className, }: {
10
+ className?: string;
11
+ size?: string;
12
+ }) => import("react/jsx-runtime").JSX.Element;
@@ -2,8 +2,11 @@
2
2
  import { DropdownMenuItemProps } from '../lists';
3
3
  interface DropdownMenuProps {
4
4
  dropdownRef?: React.RefObject<HTMLDivElement>;
5
+ menuRef?: React.RefObject<HTMLDivElement>;
5
6
  items: DropdownMenuItemProps[];
6
7
  className?: string;
8
+ isHidden?: boolean;
9
+ listClassName?: string;
7
10
  }
8
- export declare function DropdownMenu({ dropdownRef, items, className, }: DropdownMenuProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function DropdownMenu({ dropdownRef, items, className, menuRef, isHidden, listClassName, }: DropdownMenuProps): import("react/jsx-runtime").JSX.Element;
9
12
  export {};
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ interface InfoBoxProps {
3
+ title: string;
4
+ description: string;
5
+ icon?: React.ReactNode;
6
+ }
7
+ export declare function InfoBox({ title, description, icon }: InfoBoxProps): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -6,6 +6,7 @@ interface MenuProps extends React.ComponentProps<'div'> {
6
6
  title?: string;
7
7
  displayControls?: boolean;
8
8
  rounded?: Rounded;
9
+ menuRef?: React.RefObject<HTMLDivElement>;
9
10
  }
10
- export declare function Menu({ children, containerClassName, contentClassName, title, displayControls, rounded, ...props }: MenuProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function Menu({ children, containerClassName, contentClassName, title, displayControls, rounded, menuRef, ...props }: MenuProps): import("react/jsx-runtime").JSX.Element;
11
12
  export {};
@@ -4,6 +4,7 @@ interface ModalProps {
4
4
  className?: string;
5
5
  onBackdropClick?: () => void;
6
6
  isOpen?: boolean;
7
+ maxHeight?: boolean;
7
8
  }
8
- export declare function Modal({ children, className, onBackdropClick, isOpen: _isOpen, }: ModalProps): false | import("react/jsx-runtime").JSX.Element;
9
+ export declare function Modal({ children, className, onBackdropClick, isOpen: _isOpen, maxHeight, }: ModalProps): false | import("react/jsx-runtime").JSX.Element;
9
10
  export {};
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ type ModalContentBorderType = 'border' | 'outline';
3
+ export declare function ModalContent({ children, addGap, borderType, }: {
4
+ children?: React.ReactNode;
5
+ addGap?: boolean;
6
+ borderType?: ModalContentBorderType;
7
+ }): import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,3 +1,8 @@
1
+ /// <reference types="react" />
2
+ type ActionButton = {
3
+ labelOrIcon: string | React.ReactNode;
4
+ onClick?: () => void;
5
+ };
1
6
  interface NavigationBarProps {
2
7
  title?: string;
3
8
  displayBackButton?: boolean;
@@ -5,9 +10,7 @@ interface NavigationBarProps {
5
10
  transparent?: boolean;
6
11
  displayButtonShadows?: boolean;
7
12
  onBackButtonClick?: () => void;
8
- onAddressButtonClick?: () => void;
9
- label?: string;
10
- isLoading?: boolean;
13
+ actions?: ActionButton[];
11
14
  }
12
- export declare function NavigationBar({ title, displayBackButton, logoUrl, transparent, displayButtonShadows, onBackButtonClick, label, onAddressButtonClick, isLoading, }: NavigationBarProps): import("react/jsx-runtime").JSX.Element;
15
+ export declare function NavigationBar({ title, displayBackButton, logoUrl, transparent, displayButtonShadows, onBackButtonClick, actions, }: NavigationBarProps): import("react/jsx-runtime").JSX.Element;
13
16
  export {};
@@ -2,6 +2,7 @@ export * from './Boost';
2
2
  export * from './DetailsToolbar';
3
3
  export * from './DropdownMenu';
4
4
  export * from './ErrorMessage';
5
+ export * from './InfoBox';
5
6
  export * from './Menu';
6
7
  export * from './Modal';
7
8
  export * from './NavigationBar';
@@ -4,5 +4,6 @@ export interface DropdownMenuItemProps {
4
4
  labelClassName?: string;
5
5
  imageUrl?: string;
6
6
  icon?: React.ReactNode;
7
+ onClick?: () => void;
7
8
  }
8
- export declare function DropdownMenuItem({ label, imageUrl, icon, labelClassName, }: DropdownMenuItemProps): import("react/jsx-runtime").JSX.Element;
9
+ export declare function DropdownMenuItem({ label, imageUrl, icon, labelClassName, onClick, }: DropdownMenuItemProps): import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,4 @@
1
+ import { DropdownMenuItemProps } from './DropdownMenuItem';
1
2
  interface HistoryItemProps {
2
3
  firstImageUrl: string;
3
4
  secondImageUrl: string;
@@ -8,6 +9,7 @@ interface HistoryItemProps {
8
9
  dateCompleted: string;
9
10
  fromAmount: string;
10
11
  toAmount: string;
12
+ dropdownMenuItems?: DropdownMenuItemProps[];
11
13
  }
12
- export declare function HistoryItem({ firstImageUrl, secondImageUrl, isPending, dateCompleted, fromAmount, fromLabel, toAmount, toLabel, pendingLabel, }: HistoryItemProps): import("react/jsx-runtime").JSX.Element;
14
+ export declare function HistoryItem({ firstImageUrl, secondImageUrl, isPending, dateCompleted, fromAmount, fromLabel, toAmount, toLabel, pendingLabel, dropdownMenuItems, }: HistoryItemProps): import("react/jsx-runtime").JSX.Element;
13
15
  export {};