@orderly.network/ui 2.1.3 → 2.2.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/index.d.mts CHANGED
@@ -2,7 +2,7 @@ import * as tailwind_variants from 'tailwind-variants';
2
2
  import { VariantProps } from 'tailwind-variants';
3
3
  export { VariantProps, cnBase as cn } from 'tailwind-variants';
4
4
  import * as React$1 from 'react';
5
- import React__default, { FC, ReactNode, InputHTMLAttributes, PropsWithChildren, HTMLAttributes, ElementRef, ReactElement, JSXElementConstructor, ElementType, ComponentPropsWithoutRef, PropsWithoutRef, SelectHTMLAttributes, ForwardedRef, ComponentType } from 'react';
5
+ import React__default, { FC, ReactNode, InputHTMLAttributes, PropsWithChildren, HTMLAttributes, ElementRef, ReactElement, SelectHTMLAttributes, JSXElementConstructor, ElementType, ComponentPropsWithoutRef, PropsWithoutRef, ForwardedRef, ComponentType } from 'react';
6
6
  import * as tailwind_variants_dist_config from 'tailwind-variants/dist/config';
7
7
  import * as tailwind_variants_dist_generated from 'tailwind-variants/dist/generated';
8
8
  import * as react_jsx_runtime from 'react/jsx-runtime';
@@ -4066,7 +4066,120 @@ type DatePickerProps = {
4066
4066
  } & CalendarProps;
4067
4067
  declare const DatePicker$1: FC<DatePickerProps>;
4068
4068
 
4069
- type FilterType = "select" | "input" | "date" | "range" | "custom" | "symbol";
4069
+ declare const pickerVariants: tailwind_variants.TVReturnType<{
4070
+ size: {
4071
+ sm: string;
4072
+ md: string;
4073
+ base: string;
4074
+ lg: string;
4075
+ };
4076
+ fullWidth: {
4077
+ true: string;
4078
+ };
4079
+ disabled: {
4080
+ true: string;
4081
+ };
4082
+ color: {
4083
+ base: string;
4084
+ buy: string;
4085
+ sell: string;
4086
+ };
4087
+ }, undefined, "oui-flex oui-flex-row oui-items-stretch oui-rounded-md oui-cursor-pointer oui-border oui-border-line-6 oui-bg-line-4 oui-text-base-contrast-54", {
4088
+ responsiveVariants?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | {
4089
+ color?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
4090
+ size?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
4091
+ disabled?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
4092
+ fullWidth?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
4093
+ } | undefined;
4094
+ } & tailwind_variants_dist_config.TWMConfig & {
4095
+ twMergeConfig: {
4096
+ prefix: string;
4097
+ };
4098
+ }, {
4099
+ size: {
4100
+ sm: string;
4101
+ md: string;
4102
+ base: string;
4103
+ lg: string;
4104
+ };
4105
+ fullWidth: {
4106
+ true: string;
4107
+ };
4108
+ disabled: {
4109
+ true: string;
4110
+ };
4111
+ color: {
4112
+ base: string;
4113
+ buy: string;
4114
+ sell: string;
4115
+ };
4116
+ }, undefined, tailwind_variants.TVReturnType<{
4117
+ size: {
4118
+ sm: string;
4119
+ md: string;
4120
+ base: string;
4121
+ lg: string;
4122
+ };
4123
+ fullWidth: {
4124
+ true: string;
4125
+ };
4126
+ disabled: {
4127
+ true: string;
4128
+ };
4129
+ color: {
4130
+ base: string;
4131
+ buy: string;
4132
+ sell: string;
4133
+ };
4134
+ }, undefined, "oui-flex oui-flex-row oui-items-stretch oui-rounded-md oui-cursor-pointer oui-border oui-border-line-6 oui-bg-line-4 oui-text-base-contrast-54", tailwind_variants_dist_config.TVConfig<{
4135
+ size: {
4136
+ sm: string;
4137
+ md: string;
4138
+ base: string;
4139
+ lg: string;
4140
+ };
4141
+ fullWidth: {
4142
+ true: string;
4143
+ };
4144
+ disabled: {
4145
+ true: string;
4146
+ };
4147
+ color: {
4148
+ base: string;
4149
+ buy: string;
4150
+ sell: string;
4151
+ };
4152
+ }, {
4153
+ size: {
4154
+ sm: string;
4155
+ md: string;
4156
+ base: string;
4157
+ lg: string;
4158
+ };
4159
+ fullWidth: {
4160
+ true: string;
4161
+ };
4162
+ disabled: {
4163
+ true: string;
4164
+ };
4165
+ color: {
4166
+ base: string;
4167
+ buy: string;
4168
+ sell: string;
4169
+ };
4170
+ }>, unknown, unknown, undefined>>;
4171
+ interface PickerProps extends Omit<SelectHTMLAttributes<HTMLSelectElement>, "disabled" | "size" | "color" | "value">, VariantProps<typeof pickerVariants> {
4172
+ loading?: boolean;
4173
+ label?: string;
4174
+ placeholder?: string;
4175
+ options: SelectOption[];
4176
+ value?: SelectOption | string | number;
4177
+ onValueChange?: (value: any) => void;
4178
+ }
4179
+ type PickerRef = {};
4180
+ declare const Picker: React$1.ForwardRefExoticComponent<PickerProps & React$1.RefAttributes<PickerRef>>;
4181
+
4182
+ type FilterType = "select" | "input" | "date" | "range" | "custom" | "symbol" | "picker";
4070
4183
  type DataFilterGeneral = {
4071
4184
  name: string;
4072
4185
  type: FilterType;
@@ -4084,7 +4197,10 @@ type DateRangeFilter = {
4084
4197
  type SymbolFilter = {
4085
4198
  type: "symbol";
4086
4199
  };
4087
- type DataFilterItems = (DataFilterGeneral & (SelectFilter | DateFilter | DateRangeFilter | SymbolFilter))[];
4200
+ type PickerFilter = {
4201
+ type: "picker";
4202
+ } & PickerProps;
4203
+ type DataFilterItems = (DataFilterGeneral & (SelectFilter | DateFilter | DateRangeFilter | SymbolFilter | PickerFilter))[];
4088
4204
  type DataFilterProps = {
4089
4205
  items: DataFilterItems;
4090
4206
  onFilter: (filter: {
@@ -4587,6 +4703,7 @@ declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimit
4587
4703
  type DialogContentProps = React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content> & VariantProps<typeof dialogVariants> & {
4588
4704
  closable?: boolean;
4589
4705
  onClose?: () => void;
4706
+ overlyClassName?: string;
4590
4707
  };
4591
4708
  declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & VariantProps<tailwind_variants.TVReturnType<{
4592
4709
  size: {
@@ -4947,6 +5064,7 @@ declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimit
4947
5064
  }>, unknown, unknown, undefined>>> & {
4948
5065
  closable?: boolean;
4949
5066
  onClose?: () => void;
5067
+ overlyClassName?: string;
4950
5068
  } & React$1.RefAttributes<HTMLDivElement>>;
4951
5069
  declare const DialogHeader: {
4952
5070
  ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
@@ -4984,6 +5102,7 @@ type SimpleDialogProps = {
4984
5102
  content?: string;
4985
5103
  body?: string;
4986
5104
  footer?: string;
5105
+ overlay?: string;
4987
5106
  };
4988
5107
  /** if provider, it will overrides others content props */
4989
5108
  contentProps?: DialogContentProps;
@@ -6882,114 +7001,6 @@ interface HoverCardProps extends React$1.ComponentPropsWithoutRef<typeof HoverCa
6882
7001
  }
6883
7002
  declare const HoverCard: React$1.FC<HoverCardProps & React$1.ComponentPropsWithoutRef<typeof HoverCardPrimitive.Content>>;
6884
7003
 
6885
- declare const pickerVariants: tailwind_variants.TVReturnType<{
6886
- size: {
6887
- sm: string;
6888
- base: string;
6889
- lg: string;
6890
- };
6891
- fullWidth: {
6892
- true: string;
6893
- };
6894
- disabled: {
6895
- true: string;
6896
- };
6897
- color: {
6898
- base: string;
6899
- buy: string;
6900
- sell: string;
6901
- };
6902
- }, undefined, "oui-flex oui-flex-row oui-items-stretch oui-rounded-md oui-cursor-pointer oui-border oui-border-line-6 oui-bg-line-4 oui-text-base-contrast-54", {
6903
- responsiveVariants?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | {
6904
- color?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
6905
- size?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
6906
- disabled?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
6907
- fullWidth?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
6908
- } | undefined;
6909
- } & tailwind_variants_dist_config.TWMConfig & {
6910
- twMergeConfig: {
6911
- prefix: string;
6912
- };
6913
- }, {
6914
- size: {
6915
- sm: string;
6916
- base: string;
6917
- lg: string;
6918
- };
6919
- fullWidth: {
6920
- true: string;
6921
- };
6922
- disabled: {
6923
- true: string;
6924
- };
6925
- color: {
6926
- base: string;
6927
- buy: string;
6928
- sell: string;
6929
- };
6930
- }, undefined, tailwind_variants.TVReturnType<{
6931
- size: {
6932
- sm: string;
6933
- base: string;
6934
- lg: string;
6935
- };
6936
- fullWidth: {
6937
- true: string;
6938
- };
6939
- disabled: {
6940
- true: string;
6941
- };
6942
- color: {
6943
- base: string;
6944
- buy: string;
6945
- sell: string;
6946
- };
6947
- }, undefined, "oui-flex oui-flex-row oui-items-stretch oui-rounded-md oui-cursor-pointer oui-border oui-border-line-6 oui-bg-line-4 oui-text-base-contrast-54", tailwind_variants_dist_config.TVConfig<{
6948
- size: {
6949
- sm: string;
6950
- base: string;
6951
- lg: string;
6952
- };
6953
- fullWidth: {
6954
- true: string;
6955
- };
6956
- disabled: {
6957
- true: string;
6958
- };
6959
- color: {
6960
- base: string;
6961
- buy: string;
6962
- sell: string;
6963
- };
6964
- }, {
6965
- size: {
6966
- sm: string;
6967
- base: string;
6968
- lg: string;
6969
- };
6970
- fullWidth: {
6971
- true: string;
6972
- };
6973
- disabled: {
6974
- true: string;
6975
- };
6976
- color: {
6977
- base: string;
6978
- buy: string;
6979
- sell: string;
6980
- };
6981
- }>, unknown, unknown, undefined>>;
6982
- interface PickerProps extends Omit<SelectHTMLAttributes<HTMLSelectElement>, "disabled" | "size" | "color" | "value">, VariantProps<typeof pickerVariants> {
6983
- loading?: boolean;
6984
- label?: string;
6985
- placeholder?: string;
6986
- options: SelectOption[];
6987
- value?: SelectOption | string | number;
6988
- onValueChange?: (value: any) => void;
6989
- }
6990
- type PickerRef = {};
6991
- declare const Picker: React$1.ForwardRefExoticComponent<PickerProps & React$1.RefAttributes<PickerRef>>;
6992
-
6993
7004
  type DatePickerType = typeof DatePicker$1 & {
6994
7005
  range: typeof DateRangePicker;
6995
7006
  };
@@ -7716,7 +7727,31 @@ interface BaseIconProps extends ComponentPropsWithout<"svg", RemovedProps>, Vari
7716
7727
  size?: number;
7717
7728
  opacity?: number;
7718
7729
  }
7719
- declare const BaseIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
7730
+ declare const BaseIcon: React__default.ForwardRefExoticComponent<BaseIconProps & {
7731
+ children?: React__default.ReactNode | undefined;
7732
+ } & React__default.RefAttributes<SVGSVGElement>>;
7733
+
7734
+ type ChainIconProps = {
7735
+ size?: "2xs" | "xs" | "sm" | "md" | "lg";
7736
+ chainId: string | number;
7737
+ className?: string;
7738
+ };
7739
+ declare const ChainIcon: FC<ChainIconProps>;
7740
+
7741
+ type TokenIconProps = {
7742
+ size?: SizeType;
7743
+ name?: string;
7744
+ symbol?: string;
7745
+ className?: string;
7746
+ };
7747
+ declare const TokenIcon: FC<TokenIconProps>;
7748
+
7749
+ type CombineIconProps = {
7750
+ secondary: (ChainIconProps | TokenIconProps) & {
7751
+ component?: ReactNode;
7752
+ };
7753
+ };
7754
+ declare const CombineIcon: FC<PropsWithChildren<CombineIconProps>>;
7720
7755
 
7721
7756
  declare const CloseIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
7722
7757
 
@@ -7738,6 +7773,8 @@ declare const ChevronLeftIcon: React__default.ForwardRefExoticComponent<BaseIcon
7738
7773
 
7739
7774
  declare const ChevronRightIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
7740
7775
 
7776
+ declare const CalendarMinusIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
7777
+
7741
7778
  declare const SettingIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
7742
7779
 
7743
7780
  declare const SettingFillIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
@@ -7754,6 +7791,8 @@ declare const CheckSquareEmptyIcon: React__default.ForwardRefExoticComponent<Bas
7754
7791
 
7755
7792
  declare const PlusIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
7756
7793
 
7794
+ declare const ReduceIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
7795
+
7757
7796
  declare const CircleOutlinedIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
7758
7797
 
7759
7798
  declare const SquareOutlinedIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
@@ -7782,20 +7821,9 @@ declare const EyeCloseIcon: React__default.ForwardRefExoticComponent<BaseIconPro
7782
7821
 
7783
7822
  declare const RefreshIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
7784
7823
 
7785
- type TokenIconProps = {
7786
- size?: SizeType;
7787
- name?: string;
7788
- symbol?: string;
7789
- className?: string;
7790
- };
7791
- declare const TokenIcon: FC<TokenIconProps>;
7824
+ declare const OrderlyIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
7792
7825
 
7793
- type ChainIconProps = {
7794
- size?: "2xs" | "xs" | "sm" | "md" | "lg";
7795
- chainId: string | number;
7796
- className?: string;
7797
- };
7798
- declare const ChainIcon: FC<ChainIconProps>;
7826
+ declare const EsOrderlyIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
7799
7827
 
7800
7828
  declare const avatarVariants: tailwind_variants.TVReturnType<{
7801
7829
  size: {
@@ -8214,12 +8242,23 @@ declare const ArrowRightShortIcon: React__default.ForwardRefExoticComponent<Base
8214
8242
 
8215
8243
  declare const SortingIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
8216
8244
 
8217
- type CombineIconProps = {
8218
- secondary: (ChainIconProps | TokenIconProps) & {
8219
- component?: ReactNode;
8220
- };
8221
- };
8222
- declare const CombineIcon: FC<PropsWithChildren<CombineIconProps>>;
8245
+ declare const TraderMobileIcon: FC;
8246
+
8247
+ declare const AffiliateIcon: FC;
8248
+
8249
+ declare const TradingRewardsIcon: FC;
8250
+
8251
+ declare const PortfolioActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
8252
+
8253
+ declare const PortfolioInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
8254
+
8255
+ declare const TradingActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
8256
+
8257
+ declare const TradingInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
8258
+
8259
+ declare const LeaderboardActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
8260
+
8261
+ declare const LeaderboardInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
8223
8262
 
8224
8263
  type IconType = typeof BaseIcon & {
8225
8264
  combine: typeof CombineIcon;
@@ -8457,4 +8496,4 @@ declare const LocaleProvider: FC<LocaleProviderProps>;
8457
8496
  type LocaleComponentName = Exclude<keyof Locale, "locale">;
8458
8497
  declare const useLocale: <C extends LocaleComponentName = LocaleComponentName>(componentName: C, defaultLocale?: Locale[C] | (() => Locale[C])) => readonly [NonNullable<Locale[C]>, string];
8459
8498
 
8460
- export { ActionSheet, type ActionSheetItem, AlertDialog, type AlertDialogProps, ArrowDownShortIcon, ArrowDownSquareFillIcon, ArrowDownUpIcon, ArrowLeftRightIcon, ArrowLeftShortIcon, ArrowRightShortIcon, ArrowUpShortIcon, ArrowUpSquareFillIcon, Avatar, Badge, type BaseActionSheetItem, type BaseIconProps, Box, type BoxProps, Button, type ButtonProps, Calendar, CalendarIcon, Card, CardBase, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDownIcon, CaretLeftIcon, CaretRightIcon, CaretUpIcon, ChainIcon, type ChainSelectProps, CheckIcon, CheckSquareEmptyIcon, Checkbox, CheckedCircleFillIcon, CheckedSquareFillIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleOutlinedIcon, CloseCircleFillIcon, CloseIcon, CloseSquareFillIcon, Collapse, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, type ColumnFixed, ConfirmDialog, type ConfirmProps, CopyIcon, DataFilter, type DataFilterItems, DataTable, type DataTableClassNames, type DataTableProps, DatePicker, type DatePickerProps, Dialog, type DialogAction, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Divider, type DividerProps, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRoot, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuTrigger, EVMAvatar, EditIcon, Either, EmptyDataState, ExclamationFillIcon, type ExtensionPosition, ExtensionPositionEnum, ExtensionSlot, EyeCloseIcon, EyeIcon, FeeTierIcon, Flex, type FlexProps, Grid, HoverCard, HoverCardContent, type HoverCardProps, HoverCardRoot, HoverCardTrigger, Icon, type IconType, Input, InputAdditional, type InputFormatter, type InputFormatterOptions, type InputProps, ListView, type Locale, LocaleContext, LocaleProvider, Logo, type LogoProps, Match, type MenuItem, ModalContext, type ModalHocProps, ModalIdContext, ModalProvider, type NumeralProps, index as OUITailwind, OrderlyThemeProvider, type OrderlyThemeProviderProps, PaginationItems, type PaginationMeta, Picker, PlusIcon, Popover, PopoverAnchor, PopoverContent, PopoverRoot, PopoverTrigger, QuestionFillIcon, RefreshIcon, ScrollArea, ScrollBar, Select, SelectItem, type SelectProps, ServerFillIcon, SettingFillIcon, SettingIcon, ShareIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SimpleDialog, SimpleDialogFooter, type SimpleDialogFooterProps, type SimpleDialogProps, SimpleDropdownMenu, SimpleSheet, type SizeType, Slider, type SliderMarks, type SortOrder, SortingAscIcon, SortingDescIcon, SortingIcon, Spinner, type SpinnerProps, SquareOutlinedIcon, Statistic, StatisticLabel, Switch, TabPanel, type TableCellFormatter, type TableCellPlainTextRenderer, type TableCellRenderer, index$1 as TableFeatures, type TableSort, Tabs, TabsBase, TabsContent, TabsList, TabsTrigger, Text, TextField, type TextFieldProps, type TextProps, type TextType, ThrottledButton, ToastTile, Toaster, TokenIcon, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, TooltipProvider, TooltipRoot, TooltipTrigger, TriggerDialog, type TriggerDialogProps, WalletIcon, boxVariants, buttonVariants, capitalizeFirstLetter, convertValueToPercentage, formatAddress, gradientTextVariants, index$2 as inputFormatter, installExtension, modal, parseNumber, registerSimpleDialog, registerSimpleSheet, scrollAreaVariants, setExtensionBuilder, statisticVariants, textVariants, tv, useLocale, useMediaQuery, useModal, useObserverElement, useOrderlyTheme, usePagination, useScreen };
8499
+ export { ActionSheet, type ActionSheetItem, AffiliateIcon, AlertDialog, type AlertDialogProps, ArrowDownShortIcon, ArrowDownSquareFillIcon, ArrowDownUpIcon, ArrowLeftRightIcon, ArrowLeftShortIcon, ArrowRightShortIcon, ArrowUpShortIcon, ArrowUpSquareFillIcon, Avatar, Badge, type BaseActionSheetItem, type BaseIconProps, Box, type BoxProps, Button, type ButtonProps, Calendar, CalendarIcon, CalendarMinusIcon, Card, CardBase, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CaretDownIcon, CaretLeftIcon, CaretRightIcon, CaretUpIcon, ChainIcon, type ChainSelectProps, CheckIcon, CheckSquareEmptyIcon, Checkbox, CheckedCircleFillIcon, CheckedSquareFillIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CircleOutlinedIcon, CloseCircleFillIcon, CloseIcon, CloseSquareFillIcon, Collapse, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, type ColumnFixed, ConfirmDialog, type ConfirmProps, CopyIcon, DataFilter, type DataFilterItems, DataTable, type DataTableClassNames, type DataTableProps, DatePicker, type DatePickerProps, Dialog, type DialogAction, DialogBody, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Divider, type DividerProps, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRoot, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuTrigger, EVMAvatar, EditIcon, Either, EmptyDataState, EsOrderlyIcon, ExclamationFillIcon, type ExtensionPosition, ExtensionPositionEnum, ExtensionSlot, EyeCloseIcon, EyeIcon, FeeTierIcon, Flex, type FlexProps, Grid, HoverCard, HoverCardContent, type HoverCardProps, HoverCardRoot, HoverCardTrigger, Icon, type IconType, Input, InputAdditional, type InputFormatter, type InputFormatterOptions, type InputProps, LeaderboardActiveIcon, LeaderboardInactiveIcon, ListView, type Locale, LocaleContext, LocaleProvider, Logo, type LogoProps, Match, type MenuItem, ModalContext, type ModalHocProps, ModalIdContext, ModalProvider, type NumeralProps, index as OUITailwind, OrderlyIcon, OrderlyThemeProvider, type OrderlyThemeProviderProps, PaginationItems, type PaginationMeta, Picker, PlusIcon, Popover, PopoverAnchor, PopoverContent, PopoverRoot, PopoverTrigger, PortfolioActiveIcon, PortfolioInactiveIcon, QuestionFillIcon, ReduceIcon, RefreshIcon, ScrollArea, ScrollBar, Select, SelectItem, type SelectProps, ServerFillIcon, SettingFillIcon, SettingIcon, ShareIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SimpleDialog, SimpleDialogFooter, type SimpleDialogFooterProps, type SimpleDialogProps, SimpleDropdownMenu, SimpleSheet, type SizeType, Slider, type SliderMarks, type SortOrder, SortingAscIcon, SortingDescIcon, SortingIcon, Spinner, type SpinnerProps, SquareOutlinedIcon, Statistic, StatisticLabel, Switch, TabPanel, type TableCellFormatter, type TableCellPlainTextRenderer, type TableCellRenderer, index$1 as TableFeatures, type TableSort, Tabs, TabsBase, TabsContent, TabsList, TabsTrigger, Text, TextField, type TextFieldProps, type TextProps, type TextType, ThrottledButton, ToastTile, Toaster, TokenIcon, Tooltip, TooltipArrow, TooltipContent, TooltipPortal, TooltipProvider, TooltipRoot, TooltipTrigger, TraderMobileIcon, TradingActiveIcon, TradingInactiveIcon, TradingRewardsIcon, TriggerDialog, type TriggerDialogProps, WalletIcon, boxVariants, buttonVariants, capitalizeFirstLetter, convertValueToPercentage, formatAddress, gradientTextVariants, index$2 as inputFormatter, installExtension, modal, parseNumber, registerSimpleDialog, registerSimpleSheet, scrollAreaVariants, setExtensionBuilder, statisticVariants, textVariants, tv, useLocale, useMediaQuery, useModal, useObserverElement, useOrderlyTheme, usePagination, useScreen };