@orderly.network/ui 2.8.1-alpha.0 → 2.8.2-alpha.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.css +7955 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +41 -2
- package/dist/index.d.ts +41 -2
- package/dist/index.js +11458 -304
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +11163 -26
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -3810,6 +3810,8 @@ type PaginationMeta = {
|
|
|
3810
3810
|
pageTotal?: number;
|
|
3811
3811
|
onPageChange?: (page: number) => void;
|
|
3812
3812
|
onPageSizeChange?: (pageSize: number) => void;
|
|
3813
|
+
generatePageNumbers?: (currentPage: number, totalPages: number) => (number | string)[];
|
|
3814
|
+
hideRowsPerPage?: boolean;
|
|
3813
3815
|
};
|
|
3814
3816
|
type DataTableClassNames = {
|
|
3815
3817
|
root?: string;
|
|
@@ -6266,6 +6268,8 @@ type PaginationProps = {
|
|
|
6266
6268
|
paginationNext?: string;
|
|
6267
6269
|
paginationEllipsis?: string;
|
|
6268
6270
|
};
|
|
6271
|
+
hideRowsPerPage?: boolean;
|
|
6272
|
+
generatePageNumbers?: (currentPage: number, totalPages: number) => (number | string)[];
|
|
6269
6273
|
};
|
|
6270
6274
|
declare const PaginationItems: (props: Omit<PaginationProps, "onPageSizeChange">) => react_jsx_runtime.JSX.Element | null;
|
|
6271
6275
|
|
|
@@ -7848,7 +7852,7 @@ declare const ToastTile: (props: {
|
|
|
7848
7852
|
};
|
|
7849
7853
|
}) => react_jsx_runtime.JSX.Element;
|
|
7850
7854
|
|
|
7851
|
-
interface ListViewProps<T, D
|
|
7855
|
+
interface ListViewProps<T, D> {
|
|
7852
7856
|
dataSource: T[] | null | undefined;
|
|
7853
7857
|
renderItem: (item: T, index: number, extraData?: D) => React__default.ReactNode;
|
|
7854
7858
|
className?: string;
|
|
@@ -8282,6 +8286,7 @@ declare const iconVariants: tailwind_variants.TVReturnType<{
|
|
|
8282
8286
|
}>, unknown, unknown, undefined>>;
|
|
8283
8287
|
interface BaseIconProps extends ComponentPropsWithout<"svg", RemovedProps>, VariantProps<typeof iconVariants> {
|
|
8284
8288
|
size?: number;
|
|
8289
|
+
viewBox?: string;
|
|
8285
8290
|
opacity?: number;
|
|
8286
8291
|
}
|
|
8287
8292
|
declare const BaseIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
@@ -8372,8 +8377,20 @@ declare const BarChartIcon: () => react_jsx_runtime.JSX.Element;
|
|
|
8372
8377
|
|
|
8373
8378
|
declare const BattleIcon: () => react_jsx_runtime.JSX.Element;
|
|
8374
8379
|
|
|
8380
|
+
declare const BattleActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8381
|
+
|
|
8382
|
+
declare const BattleInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8383
|
+
|
|
8384
|
+
declare const BattleSolidActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8385
|
+
|
|
8386
|
+
declare const BattleSolidInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8387
|
+
|
|
8375
8388
|
declare const FeeTierIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
8376
8389
|
|
|
8390
|
+
declare const EarnActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8391
|
+
|
|
8392
|
+
declare const EarnInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8393
|
+
|
|
8377
8394
|
declare const EditIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
8378
8395
|
|
|
8379
8396
|
declare const EyeIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
@@ -8436,6 +8453,20 @@ declare const MarketsActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX
|
|
|
8436
8453
|
|
|
8437
8454
|
declare const MarketsInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8438
8455
|
|
|
8456
|
+
declare const StarChildChatActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8457
|
+
|
|
8458
|
+
declare const StarChildChatInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8459
|
+
|
|
8460
|
+
declare const CloseRoundFillIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8461
|
+
|
|
8462
|
+
declare const SelectedChoicesFillIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8463
|
+
|
|
8464
|
+
declare const PopupUnionIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8465
|
+
|
|
8466
|
+
declare const SpotIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8467
|
+
|
|
8468
|
+
declare const PerpsIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8469
|
+
|
|
8439
8470
|
declare function EmptyStateIcon(): react_jsx_runtime.JSX.Element;
|
|
8440
8471
|
|
|
8441
8472
|
declare const VectorIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
@@ -8456,6 +8487,14 @@ declare const LeftNavVaultsIcon: React$1.ForwardRefExoticComponent<BaseIconProps
|
|
|
8456
8487
|
|
|
8457
8488
|
declare const NewsFillIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
8458
8489
|
|
|
8490
|
+
declare const BellIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
8491
|
+
|
|
8492
|
+
declare const WoofiStakeIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8493
|
+
|
|
8494
|
+
declare const EarnIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8495
|
+
|
|
8496
|
+
declare const ReferralSolidIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8497
|
+
|
|
8459
8498
|
type IconType = typeof BaseIcon & {
|
|
8460
8499
|
combine: typeof CombineIcon;
|
|
8461
8500
|
};
|
|
@@ -8690,4 +8729,4 @@ type ScrollIndicatorProps = {
|
|
|
8690
8729
|
};
|
|
8691
8730
|
declare const ScrollIndicator: FC<ScrollIndicatorProps>;
|
|
8692
8731
|
|
|
8693
|
-
export { ActionSheet, type ActionSheetItem, AffiliateIcon, AlertDialog, type AlertDialogProps, ArrowDownShortIcon, ArrowDownSquareFillIcon, ArrowDownUpIcon, ArrowLeftRightIcon, ArrowLeftRightSquareFill, ArrowLeftShortIcon, ArrowRightShortIcon, ArrowRightUpSquareFillIcon, ArrowUpShortIcon, ArrowUpSquareFillIcon, AssetIcon, Avatar, Badge, BarChartIcon, type BaseActionSheetItem, type BaseIconProps, BattleIcon, 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 DataFilterItem, 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, EmptyStateIcon, EsOrderlyIcon, ExclamationFillIcon, type ExtensionPosition, ExtensionPositionEnum, ExtensionSlot, EyeCloseIcon, EyeIcon, FeeTierIcon, Flex, type FlexProps, GradientText, Grid, HoverCard, HoverCardContent, type HoverCardProps, HoverCardRoot, HoverCardTrigger, Icon, type IconType, InfoCircleIcon, Input, InputAdditional, type InputFormatter, type InputFormatterOptions, type InputProps, type InputWithTooltipProps, LeaderboardActiveIcon, LeaderboardInactiveIcon, LeftNavVaultsIcon, ListView, type Locale, LocaleContext, LocaleProvider, Logo, type LogoProps, MarketsActiveIcon, MarketsInactiveIcon, Marquee, type MarqueeProps, type MenuItem, ModalContext, type ModalHocProps, ModalIdContext, ModalProvider, type MultiFieldSort, type MultiSortField, MultiSortHeader, type MultiSortHeaderProps, NewsFillIcon, type NumeralProps, index as OUITailwind, OrderlyIcon, OrderlyThemeProvider, type OrderlyThemeProviderProps, PaginationItems, type PaginationMeta, PeopleIcon, PersonIcon, Picker, PlusIcon, Popover, PopoverAnchor, PopoverContent, PopoverRoot, PopoverTrigger, PortfolioActiveIcon, PortfolioInactiveIcon, QuestionFillIcon, ReduceIcon, RefreshIcon, ScrollArea, ScrollBar, ScrollIndicator, type ScrollIndicatorProps, Select, SelectItem, type SelectOption, 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, SwapHorizIcon, Switch, TabPanel, type TabPanelProps, type TableCellContext, 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, TradingIcon, TradingInactiveIcon, TradingLeftNavIcon, TradingRewardsIcon, TriggerDialog, type TriggerDialogProps, VaultsIcon, VectorIcon, WalletIcon, boxVariants, buttonVariants, capitalizeFirstLetter, convertValueToPercentage, formatAddress, gradientTextVariants, index$2 as inputFormatter, installExtension, modal, parseNumber, registerSimpleDialog, registerSimpleSheet, scrollAreaVariants, setExtensionBuilder, startViewTransition, statisticVariants, textVariants, tv, useLocale, useMediaQuery, useModal, useMultiSort, useObserverElement, useOrderlyTheme, usePagination, useScreen };
|
|
8732
|
+
export { ActionSheet, type ActionSheetItem, AffiliateIcon, AlertDialog, type AlertDialogProps, ArrowDownShortIcon, ArrowDownSquareFillIcon, ArrowDownUpIcon, ArrowLeftRightIcon, ArrowLeftRightSquareFill, ArrowLeftShortIcon, ArrowRightShortIcon, ArrowRightUpSquareFillIcon, ArrowUpShortIcon, ArrowUpSquareFillIcon, AssetIcon, Avatar, Badge, BarChartIcon, type BaseActionSheetItem, type BaseIconProps, BattleActiveIcon, BattleIcon, BattleInactiveIcon, BattleSolidActiveIcon, BattleSolidInactiveIcon, BellIcon, 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, CloseRoundFillIcon, CloseSquareFillIcon, Collapse, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, type ColumnFixed, ConfirmDialog, type ConfirmProps, CopyIcon, DataFilter, type DataFilterItem, 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, EarnActiveIcon, EarnIcon, EarnInactiveIcon, EditIcon, Either, EmptyDataState, EmptyStateIcon, EsOrderlyIcon, ExclamationFillIcon, type ExtensionPosition, ExtensionPositionEnum, ExtensionSlot, EyeCloseIcon, EyeIcon, FeeTierIcon, Flex, type FlexProps, GradientText, Grid, HoverCard, HoverCardContent, type HoverCardProps, HoverCardRoot, HoverCardTrigger, Icon, type IconType, InfoCircleIcon, Input, InputAdditional, type InputFormatter, type InputFormatterOptions, type InputProps, type InputWithTooltipProps, LeaderboardActiveIcon, LeaderboardInactiveIcon, LeftNavVaultsIcon, ListView, type Locale, LocaleContext, LocaleProvider, Logo, type LogoProps, MarketsActiveIcon, MarketsInactiveIcon, Marquee, type MarqueeProps, type MenuItem, ModalContext, type ModalHocProps, ModalIdContext, ModalProvider, type MultiFieldSort, type MultiSortField, MultiSortHeader, type MultiSortHeaderProps, NewsFillIcon, type NumeralProps, index as OUITailwind, OrderlyIcon, OrderlyThemeProvider, type OrderlyThemeProviderProps, PaginationItems, type PaginationMeta, PeopleIcon, PerpsIcon, PersonIcon, Picker, PlusIcon, Popover, PopoverAnchor, PopoverContent, PopoverRoot, PopoverTrigger, PopupUnionIcon, PortfolioActiveIcon, PortfolioInactiveIcon, QuestionFillIcon, ReduceIcon, ReferralSolidIcon, RefreshIcon, ScrollArea, ScrollBar, ScrollIndicator, type ScrollIndicatorProps, Select, SelectItem, type SelectOption, type SelectProps, SelectedChoicesFillIcon, 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, SpotIcon, SquareOutlinedIcon, StarChildChatActiveIcon, StarChildChatInactiveIcon, Statistic, StatisticLabel, SwapHorizIcon, Switch, TabPanel, type TabPanelProps, type TableCellContext, 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, TradingIcon, TradingInactiveIcon, TradingLeftNavIcon, TradingRewardsIcon, TriggerDialog, type TriggerDialogProps, VaultsIcon, VectorIcon, WalletIcon, WoofiStakeIcon, boxVariants, buttonVariants, capitalizeFirstLetter, convertValueToPercentage, formatAddress, gradientTextVariants, index$2 as inputFormatter, installExtension, modal, parseNumber, registerSimpleDialog, registerSimpleSheet, scrollAreaVariants, setExtensionBuilder, startViewTransition, statisticVariants, textVariants, tv, useLocale, useMediaQuery, useModal, useMultiSort, useObserverElement, useOrderlyTheme, usePagination, useScreen };
|
package/dist/index.d.ts
CHANGED
|
@@ -3810,6 +3810,8 @@ type PaginationMeta = {
|
|
|
3810
3810
|
pageTotal?: number;
|
|
3811
3811
|
onPageChange?: (page: number) => void;
|
|
3812
3812
|
onPageSizeChange?: (pageSize: number) => void;
|
|
3813
|
+
generatePageNumbers?: (currentPage: number, totalPages: number) => (number | string)[];
|
|
3814
|
+
hideRowsPerPage?: boolean;
|
|
3813
3815
|
};
|
|
3814
3816
|
type DataTableClassNames = {
|
|
3815
3817
|
root?: string;
|
|
@@ -6266,6 +6268,8 @@ type PaginationProps = {
|
|
|
6266
6268
|
paginationNext?: string;
|
|
6267
6269
|
paginationEllipsis?: string;
|
|
6268
6270
|
};
|
|
6271
|
+
hideRowsPerPage?: boolean;
|
|
6272
|
+
generatePageNumbers?: (currentPage: number, totalPages: number) => (number | string)[];
|
|
6269
6273
|
};
|
|
6270
6274
|
declare const PaginationItems: (props: Omit<PaginationProps, "onPageSizeChange">) => react_jsx_runtime.JSX.Element | null;
|
|
6271
6275
|
|
|
@@ -7848,7 +7852,7 @@ declare const ToastTile: (props: {
|
|
|
7848
7852
|
};
|
|
7849
7853
|
}) => react_jsx_runtime.JSX.Element;
|
|
7850
7854
|
|
|
7851
|
-
interface ListViewProps<T, D
|
|
7855
|
+
interface ListViewProps<T, D> {
|
|
7852
7856
|
dataSource: T[] | null | undefined;
|
|
7853
7857
|
renderItem: (item: T, index: number, extraData?: D) => React__default.ReactNode;
|
|
7854
7858
|
className?: string;
|
|
@@ -8282,6 +8286,7 @@ declare const iconVariants: tailwind_variants.TVReturnType<{
|
|
|
8282
8286
|
}>, unknown, unknown, undefined>>;
|
|
8283
8287
|
interface BaseIconProps extends ComponentPropsWithout<"svg", RemovedProps>, VariantProps<typeof iconVariants> {
|
|
8284
8288
|
size?: number;
|
|
8289
|
+
viewBox?: string;
|
|
8285
8290
|
opacity?: number;
|
|
8286
8291
|
}
|
|
8287
8292
|
declare const BaseIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
@@ -8372,8 +8377,20 @@ declare const BarChartIcon: () => react_jsx_runtime.JSX.Element;
|
|
|
8372
8377
|
|
|
8373
8378
|
declare const BattleIcon: () => react_jsx_runtime.JSX.Element;
|
|
8374
8379
|
|
|
8380
|
+
declare const BattleActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8381
|
+
|
|
8382
|
+
declare const BattleInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8383
|
+
|
|
8384
|
+
declare const BattleSolidActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8385
|
+
|
|
8386
|
+
declare const BattleSolidInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8387
|
+
|
|
8375
8388
|
declare const FeeTierIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
8376
8389
|
|
|
8390
|
+
declare const EarnActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8391
|
+
|
|
8392
|
+
declare const EarnInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8393
|
+
|
|
8377
8394
|
declare const EditIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
8378
8395
|
|
|
8379
8396
|
declare const EyeIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
@@ -8436,6 +8453,20 @@ declare const MarketsActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX
|
|
|
8436
8453
|
|
|
8437
8454
|
declare const MarketsInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8438
8455
|
|
|
8456
|
+
declare const StarChildChatActiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8457
|
+
|
|
8458
|
+
declare const StarChildChatInactiveIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8459
|
+
|
|
8460
|
+
declare const CloseRoundFillIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8461
|
+
|
|
8462
|
+
declare const SelectedChoicesFillIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8463
|
+
|
|
8464
|
+
declare const PopupUnionIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8465
|
+
|
|
8466
|
+
declare const SpotIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8467
|
+
|
|
8468
|
+
declare const PerpsIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8469
|
+
|
|
8439
8470
|
declare function EmptyStateIcon(): react_jsx_runtime.JSX.Element;
|
|
8440
8471
|
|
|
8441
8472
|
declare const VectorIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
@@ -8456,6 +8487,14 @@ declare const LeftNavVaultsIcon: React$1.ForwardRefExoticComponent<BaseIconProps
|
|
|
8456
8487
|
|
|
8457
8488
|
declare const NewsFillIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
8458
8489
|
|
|
8490
|
+
declare const BellIcon: React__default.ForwardRefExoticComponent<BaseIconProps & React__default.RefAttributes<SVGSVGElement>>;
|
|
8491
|
+
|
|
8492
|
+
declare const WoofiStakeIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8493
|
+
|
|
8494
|
+
declare const EarnIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8495
|
+
|
|
8496
|
+
declare const ReferralSolidIcon: (props: BaseIconProps) => react_jsx_runtime.JSX.Element;
|
|
8497
|
+
|
|
8459
8498
|
type IconType = typeof BaseIcon & {
|
|
8460
8499
|
combine: typeof CombineIcon;
|
|
8461
8500
|
};
|
|
@@ -8690,4 +8729,4 @@ type ScrollIndicatorProps = {
|
|
|
8690
8729
|
};
|
|
8691
8730
|
declare const ScrollIndicator: FC<ScrollIndicatorProps>;
|
|
8692
8731
|
|
|
8693
|
-
export { ActionSheet, type ActionSheetItem, AffiliateIcon, AlertDialog, type AlertDialogProps, ArrowDownShortIcon, ArrowDownSquareFillIcon, ArrowDownUpIcon, ArrowLeftRightIcon, ArrowLeftRightSquareFill, ArrowLeftShortIcon, ArrowRightShortIcon, ArrowRightUpSquareFillIcon, ArrowUpShortIcon, ArrowUpSquareFillIcon, AssetIcon, Avatar, Badge, BarChartIcon, type BaseActionSheetItem, type BaseIconProps, BattleIcon, 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 DataFilterItem, 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, EmptyStateIcon, EsOrderlyIcon, ExclamationFillIcon, type ExtensionPosition, ExtensionPositionEnum, ExtensionSlot, EyeCloseIcon, EyeIcon, FeeTierIcon, Flex, type FlexProps, GradientText, Grid, HoverCard, HoverCardContent, type HoverCardProps, HoverCardRoot, HoverCardTrigger, Icon, type IconType, InfoCircleIcon, Input, InputAdditional, type InputFormatter, type InputFormatterOptions, type InputProps, type InputWithTooltipProps, LeaderboardActiveIcon, LeaderboardInactiveIcon, LeftNavVaultsIcon, ListView, type Locale, LocaleContext, LocaleProvider, Logo, type LogoProps, MarketsActiveIcon, MarketsInactiveIcon, Marquee, type MarqueeProps, type MenuItem, ModalContext, type ModalHocProps, ModalIdContext, ModalProvider, type MultiFieldSort, type MultiSortField, MultiSortHeader, type MultiSortHeaderProps, NewsFillIcon, type NumeralProps, index as OUITailwind, OrderlyIcon, OrderlyThemeProvider, type OrderlyThemeProviderProps, PaginationItems, type PaginationMeta, PeopleIcon, PersonIcon, Picker, PlusIcon, Popover, PopoverAnchor, PopoverContent, PopoverRoot, PopoverTrigger, PortfolioActiveIcon, PortfolioInactiveIcon, QuestionFillIcon, ReduceIcon, RefreshIcon, ScrollArea, ScrollBar, ScrollIndicator, type ScrollIndicatorProps, Select, SelectItem, type SelectOption, 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, SwapHorizIcon, Switch, TabPanel, type TabPanelProps, type TableCellContext, 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, TradingIcon, TradingInactiveIcon, TradingLeftNavIcon, TradingRewardsIcon, TriggerDialog, type TriggerDialogProps, VaultsIcon, VectorIcon, WalletIcon, boxVariants, buttonVariants, capitalizeFirstLetter, convertValueToPercentage, formatAddress, gradientTextVariants, index$2 as inputFormatter, installExtension, modal, parseNumber, registerSimpleDialog, registerSimpleSheet, scrollAreaVariants, setExtensionBuilder, startViewTransition, statisticVariants, textVariants, tv, useLocale, useMediaQuery, useModal, useMultiSort, useObserverElement, useOrderlyTheme, usePagination, useScreen };
|
|
8732
|
+
export { ActionSheet, type ActionSheetItem, AffiliateIcon, AlertDialog, type AlertDialogProps, ArrowDownShortIcon, ArrowDownSquareFillIcon, ArrowDownUpIcon, ArrowLeftRightIcon, ArrowLeftRightSquareFill, ArrowLeftShortIcon, ArrowRightShortIcon, ArrowRightUpSquareFillIcon, ArrowUpShortIcon, ArrowUpSquareFillIcon, AssetIcon, Avatar, Badge, BarChartIcon, type BaseActionSheetItem, type BaseIconProps, BattleActiveIcon, BattleIcon, BattleInactiveIcon, BattleSolidActiveIcon, BattleSolidInactiveIcon, BellIcon, 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, CloseRoundFillIcon, CloseSquareFillIcon, Collapse, Collapsible, CollapsibleContent, CollapsibleTrigger, type Column, type ColumnFixed, ConfirmDialog, type ConfirmProps, CopyIcon, DataFilter, type DataFilterItem, 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, EarnActiveIcon, EarnIcon, EarnInactiveIcon, EditIcon, Either, EmptyDataState, EmptyStateIcon, EsOrderlyIcon, ExclamationFillIcon, type ExtensionPosition, ExtensionPositionEnum, ExtensionSlot, EyeCloseIcon, EyeIcon, FeeTierIcon, Flex, type FlexProps, GradientText, Grid, HoverCard, HoverCardContent, type HoverCardProps, HoverCardRoot, HoverCardTrigger, Icon, type IconType, InfoCircleIcon, Input, InputAdditional, type InputFormatter, type InputFormatterOptions, type InputProps, type InputWithTooltipProps, LeaderboardActiveIcon, LeaderboardInactiveIcon, LeftNavVaultsIcon, ListView, type Locale, LocaleContext, LocaleProvider, Logo, type LogoProps, MarketsActiveIcon, MarketsInactiveIcon, Marquee, type MarqueeProps, type MenuItem, ModalContext, type ModalHocProps, ModalIdContext, ModalProvider, type MultiFieldSort, type MultiSortField, MultiSortHeader, type MultiSortHeaderProps, NewsFillIcon, type NumeralProps, index as OUITailwind, OrderlyIcon, OrderlyThemeProvider, type OrderlyThemeProviderProps, PaginationItems, type PaginationMeta, PeopleIcon, PerpsIcon, PersonIcon, Picker, PlusIcon, Popover, PopoverAnchor, PopoverContent, PopoverRoot, PopoverTrigger, PopupUnionIcon, PortfolioActiveIcon, PortfolioInactiveIcon, QuestionFillIcon, ReduceIcon, ReferralSolidIcon, RefreshIcon, ScrollArea, ScrollBar, ScrollIndicator, type ScrollIndicatorProps, Select, SelectItem, type SelectOption, type SelectProps, SelectedChoicesFillIcon, 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, SpotIcon, SquareOutlinedIcon, StarChildChatActiveIcon, StarChildChatInactiveIcon, Statistic, StatisticLabel, SwapHorizIcon, Switch, TabPanel, type TabPanelProps, type TableCellContext, 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, TradingIcon, TradingInactiveIcon, TradingLeftNavIcon, TradingRewardsIcon, TriggerDialog, type TriggerDialogProps, VaultsIcon, VectorIcon, WalletIcon, WoofiStakeIcon, boxVariants, buttonVariants, capitalizeFirstLetter, convertValueToPercentage, formatAddress, gradientTextVariants, index$2 as inputFormatter, installExtension, modal, parseNumber, registerSimpleDialog, registerSimpleSheet, scrollAreaVariants, setExtensionBuilder, startViewTransition, statisticVariants, textVariants, tv, useLocale, useMediaQuery, useModal, useMultiSort, useObserverElement, useOrderlyTheme, usePagination, useScreen };
|