@orderly.network/ui 2.0.1-preview.3 → 2.0.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.
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +44 -11
- package/dist/index.d.ts +44 -11
- package/dist/index.js +193 -191
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15 -14
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -10,7 +10,8 @@ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
|
10
10
|
import { TooltipContentProps } from '@radix-ui/react-tooltip';
|
|
11
11
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
12
12
|
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
13
|
-
import { Row, CoreOptions, ColumnFilter, RowSelectionState } from '@tanstack/react-table';
|
|
13
|
+
import { Row, CoreOptions, ColumnFilter, RowSelectionState, TableFeature, Table, RowData } from '@tanstack/react-table';
|
|
14
|
+
export { Table, Column as TanstackColumn } from '@tanstack/react-table';
|
|
14
15
|
import { DateRange, DayPickerRangeProps, DayPicker } from 'react-day-picker';
|
|
15
16
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
16
17
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
@@ -3328,14 +3329,14 @@ declare const identifierFormatter: () => {
|
|
|
3328
3329
|
onSendBefore: (value: string | number, options: InputFormatterOptions) => string;
|
|
3329
3330
|
};
|
|
3330
3331
|
|
|
3331
|
-
declare const index$
|
|
3332
|
-
declare const index$
|
|
3333
|
-
declare const index$
|
|
3334
|
-
declare const index$
|
|
3335
|
-
declare const index$
|
|
3336
|
-
declare const index$
|
|
3337
|
-
declare namespace index$
|
|
3338
|
-
export { index$
|
|
3332
|
+
declare const index$2_createRegexInputFormatter: typeof createRegexInputFormatter;
|
|
3333
|
+
declare const index$2_currencyFormatter: typeof currencyFormatter;
|
|
3334
|
+
declare const index$2_dpFormatter: typeof dpFormatter;
|
|
3335
|
+
declare const index$2_identifierFormatter: typeof identifierFormatter;
|
|
3336
|
+
declare const index$2_numberFormatter: typeof numberFormatter;
|
|
3337
|
+
declare const index$2_rangeFormatter: typeof rangeFormatter;
|
|
3338
|
+
declare namespace index$2 {
|
|
3339
|
+
export { index$2_createRegexInputFormatter as createRegexInputFormatter, index$2_currencyFormatter as currencyFormatter, index$2_dpFormatter as dpFormatter, index$2_identifierFormatter as identifierFormatter, index$2_numberFormatter as numberFormatter, index$2_rangeFormatter as rangeFormatter };
|
|
3339
3340
|
}
|
|
3340
3341
|
|
|
3341
3342
|
declare const textFieldVariants: tailwind_variants.TVReturnType<{
|
|
@@ -3705,11 +3706,17 @@ declare const Tooltip: React$1.ForwardRefExoticComponent<TooltipPrimitive.Toolti
|
|
|
3705
3706
|
|
|
3706
3707
|
type ColumnFixed = "left" | "right";
|
|
3707
3708
|
type SortOrder = "asc" | "desc";
|
|
3709
|
+
type PlainText = number | string | null | undefined;
|
|
3708
3710
|
type TableCellFormatter<T> = string | ((value: any, record: T, index: number) => any);
|
|
3709
3711
|
type TableCellRenderer<T> = string | ((value: any, record: T, index: number) => React.ReactNode);
|
|
3712
|
+
type TableCellPlainTextRenderer<T> = (value: any, record: T, index: number) => PlainText;
|
|
3710
3713
|
type Column<RecordType extends unknown = any> = {
|
|
3711
3714
|
type?: "data" | "action" | "group";
|
|
3712
3715
|
title?: ReactNode;
|
|
3716
|
+
/**
|
|
3717
|
+
* when title is ReactElement, download feature need this field to render plant text
|
|
3718
|
+
* */
|
|
3719
|
+
plantTextTitle?: PlainText;
|
|
3713
3720
|
hint?: ReactNode;
|
|
3714
3721
|
hintClassName?: string;
|
|
3715
3722
|
width?: number;
|
|
@@ -3720,6 +3727,10 @@ type Column<RecordType extends unknown = any> = {
|
|
|
3720
3727
|
onSort?: boolean | ((r1: RecordType, r2: RecordType, sortOrder?: SortOrder) => number);
|
|
3721
3728
|
formatter?: TableCellFormatter<RecordType>;
|
|
3722
3729
|
render?: TableCellRenderer<RecordType>;
|
|
3730
|
+
/**
|
|
3731
|
+
* when render return ReactElement, download feature need this field to render plant text
|
|
3732
|
+
* */
|
|
3733
|
+
renderPlantText?: TableCellPlainTextRenderer<RecordType>;
|
|
3723
3734
|
getKey?: (record: RecordType, index: number) => string;
|
|
3724
3735
|
/**
|
|
3725
3736
|
* text rule for formatted text, if provided, the text will be rendered as formatted text component;
|
|
@@ -3782,6 +3793,8 @@ type DataTableProps<RecordType> = {
|
|
|
3782
3793
|
testIds?: {
|
|
3783
3794
|
body?: string;
|
|
3784
3795
|
};
|
|
3796
|
+
features?: TableFeature[];
|
|
3797
|
+
getTableInstance?: (table: Table<RecordType>) => void;
|
|
3785
3798
|
};
|
|
3786
3799
|
declare function DataTable<RecordType extends any>(props: PropsWithChildren<DataTableProps<RecordType>>): react_jsx_runtime.JSX.Element;
|
|
3787
3800
|
|
|
@@ -4012,6 +4025,9 @@ type SelectProps<T> = SelectPrimitive.SelectProps & {
|
|
|
4012
4025
|
showCaret?: boolean;
|
|
4013
4026
|
maxHeight?: number;
|
|
4014
4027
|
testid?: string;
|
|
4028
|
+
classNames?: {
|
|
4029
|
+
trigger?: string;
|
|
4030
|
+
};
|
|
4015
4031
|
} & SelectVariantProps;
|
|
4016
4032
|
declare const Select$1: <T>(props: React__default.PropsWithChildren<SelectProps<T>>) => react_jsx_runtime.JSX.Element;
|
|
4017
4033
|
|
|
@@ -4110,6 +4126,21 @@ declare const EmptyDataState: FC<{
|
|
|
4110
4126
|
className?: string;
|
|
4111
4127
|
}>;
|
|
4112
4128
|
|
|
4129
|
+
interface DownloadInstance {
|
|
4130
|
+
getPlainTextData: () => any[];
|
|
4131
|
+
download: (filename?: string) => void;
|
|
4132
|
+
}
|
|
4133
|
+
declare module "@tanstack/react-table" {
|
|
4134
|
+
interface Table<TData extends RowData> extends DownloadInstance {
|
|
4135
|
+
}
|
|
4136
|
+
}
|
|
4137
|
+
declare const DownloadFeature: TableFeature<any>;
|
|
4138
|
+
|
|
4139
|
+
declare const index$1_DownloadFeature: typeof DownloadFeature;
|
|
4140
|
+
declare namespace index$1 {
|
|
4141
|
+
export { index$1_DownloadFeature as DownloadFeature };
|
|
4142
|
+
}
|
|
4143
|
+
|
|
4113
4144
|
declare const scrollAreaVariants: tailwind_variants.TVReturnType<{
|
|
4114
4145
|
orientation: {
|
|
4115
4146
|
vertical: {
|
|
@@ -5965,6 +5996,8 @@ type ChainItem = {
|
|
|
5965
5996
|
type ChainSelectProps = {
|
|
5966
5997
|
value?: number;
|
|
5967
5998
|
onChange?: (chain: ChainItem) => void;
|
|
5999
|
+
storageChains?: ChainItem[];
|
|
6000
|
+
networkId?: string;
|
|
5968
6001
|
chains: {
|
|
5969
6002
|
mainnet: ChainItem[];
|
|
5970
6003
|
testnet: ChainItem[];
|
|
@@ -7388,7 +7421,7 @@ type TokenIconProps = {
|
|
|
7388
7421
|
declare const TokenIcon: FC<TokenIconProps>;
|
|
7389
7422
|
|
|
7390
7423
|
type ChainIconProps = {
|
|
7391
|
-
size?: "2xs" | "sm" | "md" | "lg";
|
|
7424
|
+
size?: "2xs" | "xs" | "sm" | "md" | "lg";
|
|
7392
7425
|
chainId: string | number;
|
|
7393
7426
|
className?: string;
|
|
7394
7427
|
};
|
|
@@ -7978,4 +8011,4 @@ declare function useScreen(): {
|
|
|
7978
8011
|
isDesktop: boolean;
|
|
7979
8012
|
};
|
|
7980
8013
|
|
|
7981
|
-
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, ConfirmDialog, type ConfirmProps, CopyIcon, DataFilter, type DataFilterItems, DataTable, type DataTableClassNames, type DataTableProps, DatePicker, type DatePickerProps, Dialog, 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, Logo, type LogoProps, Match, type MenuItem, ModalContext, type ModalHocProps, ModalIdContext, ModalProvider, type NumeralProps, index as OUITailwind, OrderlyThemeProvider, 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, type SimpleDialogProps, SimpleDropdownMenu, SimpleSheet, type SizeType, Slider, type SliderMarks, type SortOrder, SortingAscIcon, SortingDescIcon, SortingIcon, Spinner, type SpinnerProps, SquareOutlinedIcon, Statistic, StatisticLabel, Switch, TabPanel, 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$
|
|
8014
|
+
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, 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, Logo, type LogoProps, Match, type MenuItem, ModalContext, type ModalHocProps, ModalIdContext, ModalProvider, type NumeralProps, index as OUITailwind, OrderlyThemeProvider, 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, 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, useModal, usePagination, useScreen };
|
package/dist/index.d.ts
CHANGED
|
@@ -10,7 +10,8 @@ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
|
|
|
10
10
|
import { TooltipContentProps } from '@radix-ui/react-tooltip';
|
|
11
11
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
12
12
|
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
13
|
-
import { Row, CoreOptions, ColumnFilter, RowSelectionState } from '@tanstack/react-table';
|
|
13
|
+
import { Row, CoreOptions, ColumnFilter, RowSelectionState, TableFeature, Table, RowData } from '@tanstack/react-table';
|
|
14
|
+
export { Table, Column as TanstackColumn } from '@tanstack/react-table';
|
|
14
15
|
import { DateRange, DayPickerRangeProps, DayPicker } from 'react-day-picker';
|
|
15
16
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
16
17
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
@@ -3328,14 +3329,14 @@ declare const identifierFormatter: () => {
|
|
|
3328
3329
|
onSendBefore: (value: string | number, options: InputFormatterOptions) => string;
|
|
3329
3330
|
};
|
|
3330
3331
|
|
|
3331
|
-
declare const index$
|
|
3332
|
-
declare const index$
|
|
3333
|
-
declare const index$
|
|
3334
|
-
declare const index$
|
|
3335
|
-
declare const index$
|
|
3336
|
-
declare const index$
|
|
3337
|
-
declare namespace index$
|
|
3338
|
-
export { index$
|
|
3332
|
+
declare const index$2_createRegexInputFormatter: typeof createRegexInputFormatter;
|
|
3333
|
+
declare const index$2_currencyFormatter: typeof currencyFormatter;
|
|
3334
|
+
declare const index$2_dpFormatter: typeof dpFormatter;
|
|
3335
|
+
declare const index$2_identifierFormatter: typeof identifierFormatter;
|
|
3336
|
+
declare const index$2_numberFormatter: typeof numberFormatter;
|
|
3337
|
+
declare const index$2_rangeFormatter: typeof rangeFormatter;
|
|
3338
|
+
declare namespace index$2 {
|
|
3339
|
+
export { index$2_createRegexInputFormatter as createRegexInputFormatter, index$2_currencyFormatter as currencyFormatter, index$2_dpFormatter as dpFormatter, index$2_identifierFormatter as identifierFormatter, index$2_numberFormatter as numberFormatter, index$2_rangeFormatter as rangeFormatter };
|
|
3339
3340
|
}
|
|
3340
3341
|
|
|
3341
3342
|
declare const textFieldVariants: tailwind_variants.TVReturnType<{
|
|
@@ -3705,11 +3706,17 @@ declare const Tooltip: React$1.ForwardRefExoticComponent<TooltipPrimitive.Toolti
|
|
|
3705
3706
|
|
|
3706
3707
|
type ColumnFixed = "left" | "right";
|
|
3707
3708
|
type SortOrder = "asc" | "desc";
|
|
3709
|
+
type PlainText = number | string | null | undefined;
|
|
3708
3710
|
type TableCellFormatter<T> = string | ((value: any, record: T, index: number) => any);
|
|
3709
3711
|
type TableCellRenderer<T> = string | ((value: any, record: T, index: number) => React.ReactNode);
|
|
3712
|
+
type TableCellPlainTextRenderer<T> = (value: any, record: T, index: number) => PlainText;
|
|
3710
3713
|
type Column<RecordType extends unknown = any> = {
|
|
3711
3714
|
type?: "data" | "action" | "group";
|
|
3712
3715
|
title?: ReactNode;
|
|
3716
|
+
/**
|
|
3717
|
+
* when title is ReactElement, download feature need this field to render plant text
|
|
3718
|
+
* */
|
|
3719
|
+
plantTextTitle?: PlainText;
|
|
3713
3720
|
hint?: ReactNode;
|
|
3714
3721
|
hintClassName?: string;
|
|
3715
3722
|
width?: number;
|
|
@@ -3720,6 +3727,10 @@ type Column<RecordType extends unknown = any> = {
|
|
|
3720
3727
|
onSort?: boolean | ((r1: RecordType, r2: RecordType, sortOrder?: SortOrder) => number);
|
|
3721
3728
|
formatter?: TableCellFormatter<RecordType>;
|
|
3722
3729
|
render?: TableCellRenderer<RecordType>;
|
|
3730
|
+
/**
|
|
3731
|
+
* when render return ReactElement, download feature need this field to render plant text
|
|
3732
|
+
* */
|
|
3733
|
+
renderPlantText?: TableCellPlainTextRenderer<RecordType>;
|
|
3723
3734
|
getKey?: (record: RecordType, index: number) => string;
|
|
3724
3735
|
/**
|
|
3725
3736
|
* text rule for formatted text, if provided, the text will be rendered as formatted text component;
|
|
@@ -3782,6 +3793,8 @@ type DataTableProps<RecordType> = {
|
|
|
3782
3793
|
testIds?: {
|
|
3783
3794
|
body?: string;
|
|
3784
3795
|
};
|
|
3796
|
+
features?: TableFeature[];
|
|
3797
|
+
getTableInstance?: (table: Table<RecordType>) => void;
|
|
3785
3798
|
};
|
|
3786
3799
|
declare function DataTable<RecordType extends any>(props: PropsWithChildren<DataTableProps<RecordType>>): react_jsx_runtime.JSX.Element;
|
|
3787
3800
|
|
|
@@ -4012,6 +4025,9 @@ type SelectProps<T> = SelectPrimitive.SelectProps & {
|
|
|
4012
4025
|
showCaret?: boolean;
|
|
4013
4026
|
maxHeight?: number;
|
|
4014
4027
|
testid?: string;
|
|
4028
|
+
classNames?: {
|
|
4029
|
+
trigger?: string;
|
|
4030
|
+
};
|
|
4015
4031
|
} & SelectVariantProps;
|
|
4016
4032
|
declare const Select$1: <T>(props: React__default.PropsWithChildren<SelectProps<T>>) => react_jsx_runtime.JSX.Element;
|
|
4017
4033
|
|
|
@@ -4110,6 +4126,21 @@ declare const EmptyDataState: FC<{
|
|
|
4110
4126
|
className?: string;
|
|
4111
4127
|
}>;
|
|
4112
4128
|
|
|
4129
|
+
interface DownloadInstance {
|
|
4130
|
+
getPlainTextData: () => any[];
|
|
4131
|
+
download: (filename?: string) => void;
|
|
4132
|
+
}
|
|
4133
|
+
declare module "@tanstack/react-table" {
|
|
4134
|
+
interface Table<TData extends RowData> extends DownloadInstance {
|
|
4135
|
+
}
|
|
4136
|
+
}
|
|
4137
|
+
declare const DownloadFeature: TableFeature<any>;
|
|
4138
|
+
|
|
4139
|
+
declare const index$1_DownloadFeature: typeof DownloadFeature;
|
|
4140
|
+
declare namespace index$1 {
|
|
4141
|
+
export { index$1_DownloadFeature as DownloadFeature };
|
|
4142
|
+
}
|
|
4143
|
+
|
|
4113
4144
|
declare const scrollAreaVariants: tailwind_variants.TVReturnType<{
|
|
4114
4145
|
orientation: {
|
|
4115
4146
|
vertical: {
|
|
@@ -5965,6 +5996,8 @@ type ChainItem = {
|
|
|
5965
5996
|
type ChainSelectProps = {
|
|
5966
5997
|
value?: number;
|
|
5967
5998
|
onChange?: (chain: ChainItem) => void;
|
|
5999
|
+
storageChains?: ChainItem[];
|
|
6000
|
+
networkId?: string;
|
|
5968
6001
|
chains: {
|
|
5969
6002
|
mainnet: ChainItem[];
|
|
5970
6003
|
testnet: ChainItem[];
|
|
@@ -7388,7 +7421,7 @@ type TokenIconProps = {
|
|
|
7388
7421
|
declare const TokenIcon: FC<TokenIconProps>;
|
|
7389
7422
|
|
|
7390
7423
|
type ChainIconProps = {
|
|
7391
|
-
size?: "2xs" | "sm" | "md" | "lg";
|
|
7424
|
+
size?: "2xs" | "xs" | "sm" | "md" | "lg";
|
|
7392
7425
|
chainId: string | number;
|
|
7393
7426
|
className?: string;
|
|
7394
7427
|
};
|
|
@@ -7978,4 +8011,4 @@ declare function useScreen(): {
|
|
|
7978
8011
|
isDesktop: boolean;
|
|
7979
8012
|
};
|
|
7980
8013
|
|
|
7981
|
-
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, ConfirmDialog, type ConfirmProps, CopyIcon, DataFilter, type DataFilterItems, DataTable, type DataTableClassNames, type DataTableProps, DatePicker, type DatePickerProps, Dialog, 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, Logo, type LogoProps, Match, type MenuItem, ModalContext, type ModalHocProps, ModalIdContext, ModalProvider, type NumeralProps, index as OUITailwind, OrderlyThemeProvider, 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, type SimpleDialogProps, SimpleDropdownMenu, SimpleSheet, type SizeType, Slider, type SliderMarks, type SortOrder, SortingAscIcon, SortingDescIcon, SortingIcon, Spinner, type SpinnerProps, SquareOutlinedIcon, Statistic, StatisticLabel, Switch, TabPanel, 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$
|
|
8014
|
+
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, 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, Logo, type LogoProps, Match, type MenuItem, ModalContext, type ModalHocProps, ModalIdContext, ModalProvider, type NumeralProps, index as OUITailwind, OrderlyThemeProvider, 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, 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, useModal, usePagination, useScreen };
|