@orderly.network/ui 2.0.3-alpha.0 → 2.0.4-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.d.mts +90 -78
- package/dist/index.d.ts +90 -78
- package/dist/index.js +56 -55
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -8
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
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, ComponentType } from 'react';
|
|
5
|
+
import React__default, { FC, ReactNode, InputHTMLAttributes, PropsWithChildren, HTMLAttributes, ElementRef, ReactElement, JSXElementConstructor, ElementType, ComponentPropsWithoutRef, PropsWithoutRef, SelectHTMLAttributes, 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';
|
|
@@ -167,13 +167,13 @@ interface ButtonProps extends Omit<BaseButtonProps, "size">, VariantProps<typeof
|
|
|
167
167
|
"data-testid"?: string;
|
|
168
168
|
}
|
|
169
169
|
declare const Button: React__default.ForwardRefExoticComponent<ButtonProps & {
|
|
170
|
-
children?: React__default.ReactNode;
|
|
170
|
+
children?: React__default.ReactNode | undefined;
|
|
171
171
|
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
172
172
|
|
|
173
173
|
declare const ThrottledButton: React__default.ForwardRefExoticComponent<ButtonProps & {
|
|
174
|
-
throttleDuration?: number
|
|
174
|
+
throttleDuration?: number;
|
|
175
175
|
} & {
|
|
176
|
-
children?: React__default.ReactNode;
|
|
176
|
+
children?: React__default.ReactNode | undefined;
|
|
177
177
|
} & React__default.RefAttributes<HTMLButtonElement>>;
|
|
178
178
|
|
|
179
179
|
declare const boxVariants: tailwind_variants.TVReturnType<{
|
|
@@ -1605,10 +1605,10 @@ declare const gridVariants: tailwind_variants.TVReturnType<{
|
|
|
1605
1605
|
}, undefined, string[], {
|
|
1606
1606
|
responsiveVariants?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | {
|
|
1607
1607
|
gap?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
1608
|
-
gapX?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
1609
|
-
gapY?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
1610
1608
|
cols?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
1611
1609
|
rows?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
1610
|
+
gapX?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
1611
|
+
gapY?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
1612
1612
|
autoFlow?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
1613
1613
|
} | undefined;
|
|
1614
1614
|
} & tailwind_variants_dist_config.TWMConfig & {
|
|
@@ -2653,14 +2653,14 @@ declare const Statistic: React__default.ForwardRefExoticComponent<VariantProps<t
|
|
|
2653
2653
|
};
|
|
2654
2654
|
}>, unknown, unknown, undefined>>> & React__default.HTMLAttributes<HTMLDivElement> & {
|
|
2655
2655
|
label: string | ReactNode;
|
|
2656
|
-
valueProps?: NumeralProps
|
|
2656
|
+
valueProps?: NumeralProps;
|
|
2657
2657
|
classNames?: {
|
|
2658
|
-
root?: string
|
|
2659
|
-
label?: string
|
|
2660
|
-
value?: string
|
|
2661
|
-
}
|
|
2658
|
+
root?: string;
|
|
2659
|
+
label?: string;
|
|
2660
|
+
value?: string;
|
|
2661
|
+
};
|
|
2662
2662
|
} & {
|
|
2663
|
-
children?:
|
|
2663
|
+
children?: ReactNode | undefined;
|
|
2664
2664
|
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
2665
2665
|
|
|
2666
2666
|
type TextRule = "date" | "address" | "symbol" | "status" | "txId";
|
|
@@ -2833,7 +2833,7 @@ declare const GradientText: React__default.ForwardRefExoticComponent<Omit<TextPr
|
|
|
2833
2833
|
/**
|
|
2834
2834
|
* Angle of the gradient
|
|
2835
2835
|
*/
|
|
2836
|
-
angle?: number
|
|
2836
|
+
angle?: number;
|
|
2837
2837
|
} & React__default.RefAttributes<HTMLSpanElement>>;
|
|
2838
2838
|
|
|
2839
2839
|
type TextType = typeof Text$1 & {
|
|
@@ -3286,10 +3286,10 @@ declare const QuantityInput: React$1.ForwardRefExoticComponent<{
|
|
|
3286
3286
|
declare const InputWithTooltip: React$1.ForwardRefExoticComponent<InputProps<string> & {
|
|
3287
3287
|
tooltip?: React.ReactNode;
|
|
3288
3288
|
tooltipProps?: {
|
|
3289
|
-
content?: TooltipContentProps
|
|
3290
|
-
arrow?: TooltipContentProps
|
|
3291
|
-
}
|
|
3292
|
-
triggerClassName?: string
|
|
3289
|
+
content?: TooltipContentProps;
|
|
3290
|
+
arrow?: TooltipContentProps;
|
|
3291
|
+
};
|
|
3292
|
+
triggerClassName?: string;
|
|
3293
3293
|
} & React$1.RefAttributes<HTMLInputElement>>;
|
|
3294
3294
|
|
|
3295
3295
|
declare const InputAdditional: FC<PropsWithChildren<{
|
|
@@ -3427,10 +3427,10 @@ type InputType = typeof Input$1 & {
|
|
|
3427
3427
|
declare const Input: InputType;
|
|
3428
3428
|
|
|
3429
3429
|
declare const Checkbox: React$1.ForwardRefExoticComponent<Omit<CheckboxPrimitive.CheckboxProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
3430
|
-
size?: number
|
|
3431
|
-
indicatorClassName?: string
|
|
3432
|
-
color?: "primary" | "white"
|
|
3433
|
-
variant?: "
|
|
3430
|
+
size?: number;
|
|
3431
|
+
indicatorClassName?: string;
|
|
3432
|
+
color?: "primary" | "white";
|
|
3433
|
+
variant?: "checkBox" | "radio";
|
|
3434
3434
|
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
3435
3435
|
|
|
3436
3436
|
declare const switchVariants: tailwind_variants.TVReturnType<{
|
|
@@ -3685,8 +3685,8 @@ type LogoProps = HTMLAttributes<Elment> & {
|
|
|
3685
3685
|
};
|
|
3686
3686
|
declare const Logo: React__default.ForwardRefExoticComponent<React__default.HTMLAttributes<HTMLDivElement> & {
|
|
3687
3687
|
src: string;
|
|
3688
|
-
alt?: string
|
|
3689
|
-
href?: string
|
|
3688
|
+
alt?: string;
|
|
3689
|
+
href?: string;
|
|
3690
3690
|
} & React__default.RefAttributes<HTMLDivElement>>;
|
|
3691
3691
|
|
|
3692
3692
|
declare const TooltipProvider: React$1.FC<TooltipPrimitive.TooltipProviderProps>;
|
|
@@ -3699,9 +3699,9 @@ declare const TooltipArrow: (props: {
|
|
|
3699
3699
|
style?: React$1.CSSProperties;
|
|
3700
3700
|
}) => react_jsx_runtime.JSX.Element;
|
|
3701
3701
|
declare const Tooltip: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipProps & Omit<Omit<TooltipPrimitive.TooltipContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
3702
|
-
className?: string
|
|
3702
|
+
className?: string;
|
|
3703
3703
|
content?: React$1.ReactNode;
|
|
3704
|
-
arrow?: TooltipPrimitive.TooltipArrowProps
|
|
3704
|
+
arrow?: TooltipPrimitive.TooltipArrowProps;
|
|
3705
3705
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
3706
3706
|
|
|
3707
3707
|
type ColumnFixed = "left" | "right";
|
|
@@ -4029,7 +4029,7 @@ type SelectProps<T> = SelectPrimitive.SelectProps & {
|
|
|
4029
4029
|
trigger?: string;
|
|
4030
4030
|
};
|
|
4031
4031
|
} & SelectVariantProps;
|
|
4032
|
-
declare const Select$1: <T>(props:
|
|
4032
|
+
declare const Select$1: <T>(props: PropsWithChildren<SelectProps<T>>) => react_jsx_runtime.JSX.Element;
|
|
4033
4033
|
|
|
4034
4034
|
type SelectOption = {
|
|
4035
4035
|
label: string;
|
|
@@ -4938,8 +4938,8 @@ declare const DialogContent: React$1.ForwardRefExoticComponent<Omit<DialogPrimit
|
|
|
4938
4938
|
};
|
|
4939
4939
|
};
|
|
4940
4940
|
}>, unknown, unknown, undefined>>> & {
|
|
4941
|
-
closable?: boolean
|
|
4942
|
-
onClose?: (
|
|
4941
|
+
closable?: boolean;
|
|
4942
|
+
onClose?: () => void;
|
|
4943
4943
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
4944
4944
|
declare const DialogHeader: {
|
|
4945
4945
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
@@ -5152,12 +5152,12 @@ type ConfirmProps = {
|
|
|
5152
5152
|
declare const ConfirmDialog: React$1.FC<{
|
|
5153
5153
|
content?: React.ReactNode;
|
|
5154
5154
|
footer?: React.ReactNode;
|
|
5155
|
-
onOk?: (
|
|
5156
|
-
okLabel?: string
|
|
5157
|
-
onCancel?: (
|
|
5158
|
-
cancelLabel?: string
|
|
5159
|
-
contentClassName?: string
|
|
5160
|
-
bodyClassName?: string
|
|
5155
|
+
onOk?: () => Promise<any>;
|
|
5156
|
+
okLabel?: string;
|
|
5157
|
+
onCancel?: () => Promise<any>;
|
|
5158
|
+
cancelLabel?: string;
|
|
5159
|
+
contentClassName?: string;
|
|
5160
|
+
bodyClassName?: string;
|
|
5161
5161
|
} & Pick<SimpleDialogProps, "title" | "size" | "classNames"> & ModalHocProps>;
|
|
5162
5162
|
|
|
5163
5163
|
declare function register<Props = {}>(id: string, comp: ElementType<Props>, props?: Partial<ModalArgs<Props>>): void;
|
|
@@ -5180,15 +5180,15 @@ declare const modal: {
|
|
|
5180
5180
|
sheet: (props: SheetProps) => Promise<unknown>;
|
|
5181
5181
|
dialog: (props: DialogProps) => Promise<unknown>;
|
|
5182
5182
|
show: {
|
|
5183
|
-
<
|
|
5184
|
-
<
|
|
5185
|
-
<
|
|
5183
|
+
<T extends unknown, C extends unknown>(modal: React$1.ElementType<C>, args?: ModalArgs<React$1.ElementType<C>>): Promise<T>;
|
|
5184
|
+
<T extends unknown>(modal: string, args?: Record<string, unknown>): Promise<T>;
|
|
5185
|
+
<T extends unknown, P extends unknown>(modal: string, args?: P): Promise<T>;
|
|
5186
5186
|
};
|
|
5187
|
-
hide: <
|
|
5187
|
+
hide: <T>(modal: string | React$1.FC<any>) => Promise<T>;
|
|
5188
5188
|
remove: (id: string) => void;
|
|
5189
5189
|
setStates: (id: string, states: Record<string, unknown>) => void;
|
|
5190
5190
|
updateArgs: (id: string, args: Record<string, unknown>) => void;
|
|
5191
|
-
create: <
|
|
5191
|
+
create: <P extends {}>(Comp: React.ComponentType<P>) => React$1.FC<P & ModalHocProps>;
|
|
5192
5192
|
register: typeof register;
|
|
5193
5193
|
unregister: (id: string) => void;
|
|
5194
5194
|
};
|
|
@@ -5891,8 +5891,8 @@ declare const TabsTrigger: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.
|
|
|
5891
5891
|
xl: {};
|
|
5892
5892
|
};
|
|
5893
5893
|
}>, unknown, unknown, undefined>>> & {
|
|
5894
|
-
icon?: React$1.ReactElement
|
|
5895
|
-
"data-testid"?: string
|
|
5894
|
+
icon?: React$1.ReactElement;
|
|
5895
|
+
"data-testid"?: string;
|
|
5896
5896
|
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
5897
5897
|
declare const TabsContent: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & VariantProps<tailwind_variants.TVReturnType<{
|
|
5898
5898
|
variant: {
|
|
@@ -6095,8 +6095,8 @@ declare const chainSelectVariants: tailwind_variants.TVReturnType<{
|
|
|
6095
6095
|
responsiveVariants?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | {
|
|
6096
6096
|
position?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
6097
6097
|
size?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
6098
|
-
variant?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
6099
6098
|
error?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
6099
|
+
variant?: boolean | tailwind_variants_dist_generated.TVGeneratedScreens[] | undefined;
|
|
6100
6100
|
} | undefined;
|
|
6101
6101
|
} & tailwind_variants_dist_config.TWMConfig & {
|
|
6102
6102
|
twMergeConfig: {
|
|
@@ -6640,11 +6640,11 @@ declare const Card: React$1.ForwardRefExoticComponent<{
|
|
|
6640
6640
|
title?: ReactNode;
|
|
6641
6641
|
footer?: ReactNode;
|
|
6642
6642
|
classNames?: {
|
|
6643
|
-
root?: string
|
|
6644
|
-
header?: string
|
|
6645
|
-
content?: string
|
|
6646
|
-
footer?: string
|
|
6647
|
-
}
|
|
6643
|
+
root?: string;
|
|
6644
|
+
header?: string;
|
|
6645
|
+
content?: string;
|
|
6646
|
+
footer?: string;
|
|
6647
|
+
};
|
|
6648
6648
|
} & ComponentPropsWithout<"div", "color"> & tailwind_variants.VariantProps<tailwind_variants.TVReturnType<{
|
|
6649
6649
|
border: {
|
|
6650
6650
|
true: string;
|
|
@@ -6863,7 +6863,7 @@ declare const Card: React$1.ForwardRefExoticComponent<{
|
|
|
6863
6863
|
16: string;
|
|
6864
6864
|
};
|
|
6865
6865
|
}>, unknown, unknown, undefined>>> & {
|
|
6866
|
-
children?: ReactNode;
|
|
6866
|
+
children?: ReactNode | undefined;
|
|
6867
6867
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
6868
6868
|
|
|
6869
6869
|
declare const HoverCardRoot: React$1.FC<HoverCardPrimitive.HoverCardProps>;
|
|
@@ -7301,22 +7301,22 @@ declare const BaseSlider: React$1.ForwardRefExoticComponent<Omit<SliderPrimitive
|
|
|
7301
7301
|
};
|
|
7302
7302
|
};
|
|
7303
7303
|
}>, unknown, unknown, undefined>>> & {
|
|
7304
|
-
marks?: SliderMarks
|
|
7305
|
-
markCount?: number
|
|
7306
|
-
markLabelVisible?: boolean
|
|
7307
|
-
showTip?: boolean
|
|
7308
|
-
tipFormatter?: (
|
|
7304
|
+
marks?: SliderMarks;
|
|
7305
|
+
markCount?: number;
|
|
7306
|
+
markLabelVisible?: boolean;
|
|
7307
|
+
showTip?: boolean;
|
|
7308
|
+
tipFormatter?: (value: number, min: number, max: number, percent: number) => string | React$1.ReactNode;
|
|
7309
7309
|
classNames?: {
|
|
7310
|
-
root?: string
|
|
7311
|
-
thumb?: string
|
|
7312
|
-
track?: string
|
|
7313
|
-
range?: string
|
|
7314
|
-
}
|
|
7310
|
+
root?: string;
|
|
7311
|
+
thumb?: string;
|
|
7312
|
+
track?: string;
|
|
7313
|
+
range?: string;
|
|
7314
|
+
};
|
|
7315
7315
|
} & React$1.RefAttributes<HTMLSpanElement>>;
|
|
7316
7316
|
declare const SingleSlider: React$1.ForwardRefExoticComponent<Omit<SliderProps, "value" | "onValueChange" | "onValueCommit"> & {
|
|
7317
7317
|
value: number;
|
|
7318
|
-
onValueChange?: (
|
|
7319
|
-
onValueCommit?: (
|
|
7318
|
+
onValueChange?: (value: number) => void;
|
|
7319
|
+
onValueCommit?: (value: number) => void;
|
|
7320
7320
|
} & React$1.RefAttributes<HTMLSpanElement>>;
|
|
7321
7321
|
type SliderType = typeof BaseSlider & {
|
|
7322
7322
|
single: typeof SingleSlider;
|
|
@@ -7351,12 +7351,12 @@ interface ListViewProps<T, D extends unknown> {
|
|
|
7351
7351
|
emptyView?: React__default.ReactNode;
|
|
7352
7352
|
}
|
|
7353
7353
|
declare const ListView: <T, D>(props: ListViewProps<T, D> & {
|
|
7354
|
-
ref?:
|
|
7354
|
+
ref?: ForwardedRef<{
|
|
7355
7355
|
scroll: (direction: {
|
|
7356
7356
|
x: number;
|
|
7357
7357
|
y: number;
|
|
7358
7358
|
}) => void;
|
|
7359
|
-
}
|
|
7359
|
+
}>;
|
|
7360
7360
|
}) => JSX.Element;
|
|
7361
7361
|
|
|
7362
7362
|
declare const Collapsible: React$1.ForwardRefExoticComponent<CollapsiblePrimitive.CollapsibleProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -7608,11 +7608,11 @@ declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<Omit<Dropdo
|
|
|
7608
7608
|
};
|
|
7609
7609
|
}>, unknown, unknown, undefined>>> & React$1.RefAttributes<HTMLDivElement>>;
|
|
7610
7610
|
declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
7611
|
-
inset?: boolean
|
|
7612
|
-
size?: SizeType
|
|
7611
|
+
inset?: boolean;
|
|
7612
|
+
size?: SizeType;
|
|
7613
7613
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
7614
7614
|
declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
7615
|
-
inset?: boolean
|
|
7615
|
+
inset?: boolean;
|
|
7616
7616
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
7617
7617
|
declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
7618
7618
|
declare const DropdownMenuShortcut: {
|
|
@@ -8176,10 +8176,10 @@ declare const EVMAvatar: React$1.ForwardRefExoticComponent<Omit<Omit<AvatarPrimi
|
|
|
8176
8176
|
};
|
|
8177
8177
|
};
|
|
8178
8178
|
}>, unknown, unknown, undefined>>> & React$1.RefAttributes<HTMLSpanElement> & {
|
|
8179
|
-
src?: string
|
|
8180
|
-
alt?: string
|
|
8179
|
+
src?: string;
|
|
8180
|
+
alt?: string;
|
|
8181
8181
|
fallback?: React$1.ReactNode;
|
|
8182
|
-
delayMs?: number
|
|
8182
|
+
delayMs?: number;
|
|
8183
8183
|
onLoadingStatusChange?: AvatarPrimitive.AvatarImageProps["onLoadingStatusChange"];
|
|
8184
8184
|
} & {
|
|
8185
8185
|
address: string;
|
|
@@ -8260,7 +8260,7 @@ type ExtensionOptions<Props> = {
|
|
|
8260
8260
|
deactivate?: () => Promise<void>;
|
|
8261
8261
|
};
|
|
8262
8262
|
type ExtensionRenderComponentType<Props> = ElementType<Props> | ((props: Props) => ReactElement);
|
|
8263
|
-
declare const installExtension: <Props>(options: ExtensionOptions<Props>) => (component: ExtensionRenderComponentType<Props>) => void;
|
|
8263
|
+
declare const installExtension: <Props>(options: ExtensionOptions<Props>) => ((component: ExtensionRenderComponentType<Props>) => void);
|
|
8264
8264
|
/**
|
|
8265
8265
|
* update the extension builder function
|
|
8266
8266
|
*/
|
|
@@ -8278,6 +8278,17 @@ type ComponentOverrides = {
|
|
|
8278
8278
|
tabs: {
|
|
8279
8279
|
variant: "text" | "contained";
|
|
8280
8280
|
};
|
|
8281
|
+
chainSelector: {
|
|
8282
|
+
/**
|
|
8283
|
+
* show testnet chains list
|
|
8284
|
+
* @default true
|
|
8285
|
+
* */
|
|
8286
|
+
showTestnet: boolean;
|
|
8287
|
+
};
|
|
8288
|
+
};
|
|
8289
|
+
type GetComponentTheme = <T extends keyof ComponentOverrides>(component: T, defaultValue?: ComponentOverrides[T]) => ComponentOverrides[T];
|
|
8290
|
+
type OrderlyThemeContextState = {
|
|
8291
|
+
getComponentTheme: GetComponentTheme;
|
|
8281
8292
|
};
|
|
8282
8293
|
type OrderlyThemeProviderProps = {
|
|
8283
8294
|
components?: {
|
|
@@ -8285,6 +8296,7 @@ type OrderlyThemeProviderProps = {
|
|
|
8285
8296
|
};
|
|
8286
8297
|
overrides?: Partial<ComponentOverrides>;
|
|
8287
8298
|
};
|
|
8299
|
+
declare const useOrderlyTheme: () => OrderlyThemeContextState;
|
|
8288
8300
|
declare const OrderlyThemeProvider: FC<PropsWithChildren<OrderlyThemeProviderProps>>;
|
|
8289
8301
|
|
|
8290
8302
|
type Props$1 = {
|
|
@@ -8319,42 +8331,42 @@ declare const tv: tailwind_variants.CreateTV<{
|
|
|
8319
8331
|
|
|
8320
8332
|
declare const basePlugin: () => {
|
|
8321
8333
|
handler: tailwindcss_types_config.PluginCreator;
|
|
8322
|
-
config?: Partial<tailwindcss_types_config.Config
|
|
8334
|
+
config?: Partial<tailwindcss_types_config.Config>;
|
|
8323
8335
|
};
|
|
8324
8336
|
|
|
8325
8337
|
declare const chartPlugin: () => {
|
|
8326
8338
|
handler: tailwindcss_types_config.PluginCreator;
|
|
8327
|
-
config?: Partial<tailwindcss_types_config.Config
|
|
8339
|
+
config?: Partial<tailwindcss_types_config.Config>;
|
|
8328
8340
|
};
|
|
8329
8341
|
|
|
8330
8342
|
declare const componentsPlugin: () => {
|
|
8331
8343
|
handler: tailwindcss_types_config.PluginCreator;
|
|
8332
|
-
config?: Partial<tailwindcss_types_config.Config
|
|
8344
|
+
config?: Partial<tailwindcss_types_config.Config>;
|
|
8333
8345
|
};
|
|
8334
8346
|
|
|
8335
8347
|
declare const gradientPlugin: () => {
|
|
8336
8348
|
handler: tailwindcss_types_config.PluginCreator;
|
|
8337
|
-
config?: Partial<tailwindcss_types_config.Config
|
|
8349
|
+
config?: Partial<tailwindcss_types_config.Config>;
|
|
8338
8350
|
};
|
|
8339
8351
|
|
|
8340
8352
|
declare const positionPlugin: () => {
|
|
8341
8353
|
handler: tailwindcss_types_config.PluginCreator;
|
|
8342
|
-
config?: Partial<tailwindcss_types_config.Config
|
|
8354
|
+
config?: Partial<tailwindcss_types_config.Config>;
|
|
8343
8355
|
};
|
|
8344
8356
|
|
|
8345
8357
|
declare const scrollBarPlugin: () => {
|
|
8346
8358
|
handler: tailwindcss_types_config.PluginCreator;
|
|
8347
|
-
config?: Partial<tailwindcss_types_config.Config
|
|
8359
|
+
config?: Partial<tailwindcss_types_config.Config>;
|
|
8348
8360
|
};
|
|
8349
8361
|
|
|
8350
8362
|
declare const sizePlugin: () => {
|
|
8351
8363
|
handler: tailwindcss_types_config.PluginCreator;
|
|
8352
|
-
config?: Partial<tailwindcss_types_config.Config
|
|
8364
|
+
config?: Partial<tailwindcss_types_config.Config>;
|
|
8353
8365
|
};
|
|
8354
8366
|
|
|
8355
8367
|
declare const themePlugin: () => {
|
|
8356
8368
|
handler: tailwindcss_types_config.PluginCreator;
|
|
8357
|
-
config?: Partial<tailwindcss_types_config.Config
|
|
8369
|
+
config?: Partial<tailwindcss_types_config.Config>;
|
|
8358
8370
|
};
|
|
8359
8371
|
|
|
8360
8372
|
declare const index_basePlugin: typeof basePlugin;
|
|
@@ -8374,4 +8386,4 @@ declare function useScreen(): {
|
|
|
8374
8386
|
isDesktop: boolean;
|
|
8375
8387
|
};
|
|
8376
8388
|
|
|
8377
|
-
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, 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, 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, useModal, usePagination, useScreen };
|
|
8389
|
+
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, 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, 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, useModal, useOrderlyTheme, usePagination, useScreen };
|