@luxfi/ui 7.3.0 → 7.3.2
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/accordion.d.cts +74 -0
- package/dist/accordion.d.ts +74 -0
- package/dist/alert.d.cts +30 -0
- package/dist/alert.d.ts +30 -0
- package/dist/avatar.d.cts +25 -0
- package/dist/avatar.d.ts +25 -0
- package/dist/badge.d.cts +19 -0
- package/dist/badge.d.ts +19 -0
- package/dist/bank.d.cts +76 -0
- package/dist/bank.d.ts +76 -0
- package/dist/button.d.cts +55 -0
- package/dist/button.d.ts +55 -0
- package/dist/checkbox.d.cts +31 -0
- package/dist/checkbox.d.ts +31 -0
- package/dist/close-button.d.cts +9 -0
- package/dist/close-button.d.ts +9 -0
- package/dist/collapsible.d.cts +23 -0
- package/dist/collapsible.d.ts +23 -0
- package/dist/color-mode.d.cts +25 -0
- package/dist/color-mode.d.ts +25 -0
- package/dist/dialog.d.cts +65 -0
- package/dist/dialog.d.ts +65 -0
- package/dist/drawer.d.cts +36 -0
- package/dist/drawer.d.ts +36 -0
- package/dist/empty-state.d.cts +13 -0
- package/dist/empty-state.d.ts +13 -0
- package/dist/expiration-selector.d.cts +16 -0
- package/dist/expiration-selector.d.ts +16 -0
- package/dist/field.d.cts +24 -0
- package/dist/field.d.ts +24 -0
- package/dist/greeks-display.d.cts +14 -0
- package/dist/greeks-display.d.ts +14 -0
- package/dist/heading.d.cts +10 -0
- package/dist/heading.d.ts +10 -0
- package/dist/icon-button.d.cts +33 -0
- package/dist/icon-button.d.ts +33 -0
- package/dist/image.d.cts +57 -0
- package/dist/image.d.ts +57 -0
- package/dist/index.cjs +1 -5
- package/dist/index.d.cts +56 -0
- package/dist/index.d.ts +56 -0
- package/dist/index.js +2 -6
- package/dist/input-group.d.cts +17 -0
- package/dist/input-group.d.ts +17 -0
- package/dist/input.d.cts +11 -0
- package/dist/input.d.ts +11 -0
- package/dist/link.d.cts +37 -0
- package/dist/link.d.ts +37 -0
- package/dist/menu.d.cts +84 -0
- package/dist/menu.d.ts +84 -0
- package/dist/option-chain.d.cts +37 -0
- package/dist/option-chain.d.ts +37 -0
- package/dist/option-position.d.cts +29 -0
- package/dist/option-position.d.ts +29 -0
- package/dist/pin-input.d.cts +25 -0
- package/dist/pin-input.d.ts +25 -0
- package/dist/pnl-diagram.d.cts +11 -0
- package/dist/pnl-diagram.d.ts +11 -0
- package/dist/popover.d.cts +73 -0
- package/dist/popover.d.ts +73 -0
- package/dist/progress-circle.d.cts +47 -0
- package/dist/progress-circle.d.ts +47 -0
- package/dist/progress.d.cts +28 -0
- package/dist/progress.d.ts +28 -0
- package/dist/provider.cjs +1 -5
- package/dist/provider.d.cts +12 -0
- package/dist/provider.d.ts +12 -0
- package/dist/provider.js +1 -5
- package/dist/radio.d.cts +53 -0
- package/dist/radio.d.ts +53 -0
- package/dist/rating.d.cts +14 -0
- package/dist/rating.d.ts +14 -0
- package/dist/select.d.cts +130 -0
- package/dist/select.d.ts +130 -0
- package/dist/separator.d.cts +13 -0
- package/dist/separator.d.ts +13 -0
- package/dist/skeleton.d.cts +60 -0
- package/dist/skeleton.d.ts +60 -0
- package/dist/slider.d.cts +24 -0
- package/dist/slider.d.ts +24 -0
- package/dist/strategy-builder.d.cts +26 -0
- package/dist/strategy-builder.d.ts +26 -0
- package/dist/switch.d.cts +27 -0
- package/dist/switch.d.ts +27 -0
- package/dist/table.d.cts +107 -0
- package/dist/table.d.ts +107 -0
- package/dist/tabs.d.cts +78 -0
- package/dist/tabs.d.ts +78 -0
- package/dist/tag.d.cts +21 -0
- package/dist/tag.d.ts +21 -0
- package/dist/textarea.d.cts +11 -0
- package/dist/textarea.d.ts +11 -0
- package/dist/toaster.d.cts +29 -0
- package/dist/toaster.d.ts +29 -0
- package/dist/tooltip.d.cts +38 -0
- package/dist/tooltip.d.ts +38 -0
- package/dist/utils.d.cts +5 -0
- package/dist/utils.d.ts +5 -0
- package/package.json +1 -1
- package/src/index.ts +0 -2
- package/src/provider.tsx +4 -6
package/dist/select.d.ts
ADDED
|
@@ -0,0 +1,130 @@
|
|
|
1
|
+
import * as RadixSelect from '@radix-ui/react-select';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
interface ListCollection<T> {
|
|
5
|
+
items: Array<T>;
|
|
6
|
+
}
|
|
7
|
+
declare function createListCollection<T>(config: {
|
|
8
|
+
items: Array<T>;
|
|
9
|
+
}): ListCollection<T>;
|
|
10
|
+
type ViewMode = 'default' | 'compact';
|
|
11
|
+
interface SelectOption<Value extends string = string> {
|
|
12
|
+
label: string;
|
|
13
|
+
renderLabel?: (place: 'item' | 'value-text') => React.ReactNode;
|
|
14
|
+
value: Value;
|
|
15
|
+
icon?: React.ReactNode;
|
|
16
|
+
afterElement?: React.ReactNode;
|
|
17
|
+
}
|
|
18
|
+
interface SelectRootProps {
|
|
19
|
+
children?: React.ReactNode;
|
|
20
|
+
collection?: ListCollection<SelectOption>;
|
|
21
|
+
defaultValue?: Array<string>;
|
|
22
|
+
value?: Array<string>;
|
|
23
|
+
onValueChange?: (details: {
|
|
24
|
+
value: Array<string>;
|
|
25
|
+
items: Array<SelectOption>;
|
|
26
|
+
}) => void;
|
|
27
|
+
onInteractOutside?: () => void;
|
|
28
|
+
name?: string;
|
|
29
|
+
disabled?: boolean;
|
|
30
|
+
readOnly?: boolean;
|
|
31
|
+
required?: boolean;
|
|
32
|
+
invalid?: boolean;
|
|
33
|
+
size?: 'sm' | 'lg';
|
|
34
|
+
variant?: string;
|
|
35
|
+
open?: boolean;
|
|
36
|
+
defaultOpen?: boolean;
|
|
37
|
+
onOpenChange?: (open: boolean) => void;
|
|
38
|
+
positioning?: {
|
|
39
|
+
sameWidth?: boolean;
|
|
40
|
+
offset?: {
|
|
41
|
+
mainAxis?: number;
|
|
42
|
+
crossAxis?: number;
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
lazyMount?: boolean;
|
|
46
|
+
unmountOnExit?: boolean;
|
|
47
|
+
asChild?: boolean;
|
|
48
|
+
className?: string;
|
|
49
|
+
style?: React.CSSProperties;
|
|
50
|
+
w?: string | Record<string, string>;
|
|
51
|
+
maxW?: string | Record<string, string>;
|
|
52
|
+
minW?: string | Record<string, string>;
|
|
53
|
+
hideFrom?: string;
|
|
54
|
+
}
|
|
55
|
+
declare const SelectRoot: React.ForwardRefExoticComponent<SelectRootProps & React.RefAttributes<HTMLDivElement>>;
|
|
56
|
+
interface SelectControlProps {
|
|
57
|
+
children?: React.ReactNode;
|
|
58
|
+
noIndicator?: boolean;
|
|
59
|
+
triggerProps?: React.ComponentPropsWithoutRef<typeof RadixSelect.Trigger> & {
|
|
60
|
+
asChild?: boolean;
|
|
61
|
+
px?: string | number;
|
|
62
|
+
className?: string;
|
|
63
|
+
};
|
|
64
|
+
loading?: boolean;
|
|
65
|
+
defaultValue?: Array<string>;
|
|
66
|
+
className?: string;
|
|
67
|
+
style?: React.CSSProperties;
|
|
68
|
+
}
|
|
69
|
+
declare const SelectControl: React.ForwardRefExoticComponent<SelectControlProps & React.RefAttributes<HTMLButtonElement>>;
|
|
70
|
+
interface SelectClearTriggerProps {
|
|
71
|
+
className?: string;
|
|
72
|
+
}
|
|
73
|
+
declare const SelectClearTrigger: React.ForwardRefExoticComponent<SelectClearTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
|
74
|
+
interface SelectContentProps {
|
|
75
|
+
children?: React.ReactNode;
|
|
76
|
+
portalled?: boolean;
|
|
77
|
+
portalRef?: React.RefObject<HTMLElement>;
|
|
78
|
+
className?: string;
|
|
79
|
+
style?: React.CSSProperties;
|
|
80
|
+
}
|
|
81
|
+
declare const SelectContent: React.ForwardRefExoticComponent<SelectContentProps & React.RefAttributes<HTMLDivElement>>;
|
|
82
|
+
interface SelectItemProps {
|
|
83
|
+
item: SelectOption;
|
|
84
|
+
children?: React.ReactNode;
|
|
85
|
+
className?: string;
|
|
86
|
+
}
|
|
87
|
+
declare const SelectItem: React.ForwardRefExoticComponent<SelectItemProps & React.RefAttributes<HTMLDivElement>>;
|
|
88
|
+
interface SelectValueTextProps {
|
|
89
|
+
children?: (items: Array<SelectOption>) => React.ReactNode;
|
|
90
|
+
placeholder?: string;
|
|
91
|
+
size?: SelectRootProps['size'];
|
|
92
|
+
required?: boolean;
|
|
93
|
+
invalid?: boolean;
|
|
94
|
+
errorText?: string;
|
|
95
|
+
mode?: ViewMode;
|
|
96
|
+
className?: string;
|
|
97
|
+
style?: React.CSSProperties;
|
|
98
|
+
}
|
|
99
|
+
declare const SelectValueText: React.ForwardRefExoticComponent<SelectValueTextProps & React.RefAttributes<HTMLSpanElement>>;
|
|
100
|
+
interface SelectItemGroupProps {
|
|
101
|
+
children?: React.ReactNode;
|
|
102
|
+
label: React.ReactNode;
|
|
103
|
+
className?: string;
|
|
104
|
+
}
|
|
105
|
+
declare const SelectItemGroup: React.ForwardRefExoticComponent<SelectItemGroupProps & React.RefAttributes<HTMLDivElement>>;
|
|
106
|
+
declare const SelectLabel: React.ForwardRefExoticComponent<RadixSelect.SelectLabelProps & React.RefAttributes<HTMLDivElement>>;
|
|
107
|
+
declare const SelectItemText: React.ForwardRefExoticComponent<RadixSelect.SelectItemTextProps & React.RefAttributes<HTMLSpanElement>>;
|
|
108
|
+
interface SelectProps extends SelectRootProps {
|
|
109
|
+
collection: ListCollection<SelectOption>;
|
|
110
|
+
placeholder: string;
|
|
111
|
+
portalled?: boolean;
|
|
112
|
+
loading?: boolean;
|
|
113
|
+
errorText?: string;
|
|
114
|
+
contentProps?: SelectContentProps;
|
|
115
|
+
contentHeader?: React.ReactNode;
|
|
116
|
+
itemFilter?: (item: SelectOption) => boolean;
|
|
117
|
+
mode?: ViewMode;
|
|
118
|
+
}
|
|
119
|
+
declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLDivElement>>;
|
|
120
|
+
interface SelectAsyncProps extends Omit<SelectProps, 'collection'> {
|
|
121
|
+
placeholder: string;
|
|
122
|
+
portalled?: boolean;
|
|
123
|
+
loading?: boolean;
|
|
124
|
+
loadOptions: (input: string, currentValue: Array<string>) => Promise<ListCollection<SelectOption>>;
|
|
125
|
+
extraControls?: React.ReactNode;
|
|
126
|
+
mode?: ViewMode;
|
|
127
|
+
}
|
|
128
|
+
declare const SelectAsync: React.ForwardRefExoticComponent<SelectAsyncProps & React.RefAttributes<HTMLDivElement>>;
|
|
129
|
+
|
|
130
|
+
export { type ListCollection, Select, SelectAsync, type SelectAsyncProps, SelectClearTrigger, type SelectClearTriggerProps, SelectContent, type SelectContentProps, SelectControl, type SelectControlProps, SelectItem, SelectItemGroup, type SelectItemProps, SelectItemText, SelectLabel, type SelectOption, type SelectProps, SelectRoot, type SelectRootProps, SelectValueText, type ViewMode, createListCollection };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React__default from 'react';
|
|
2
|
+
|
|
3
|
+
type Orientation = 'horizontal' | 'vertical';
|
|
4
|
+
type Variant = 'solid' | 'dashed' | 'dotted';
|
|
5
|
+
type Size = 'xs' | 'sm' | 'md' | 'lg';
|
|
6
|
+
interface SeparatorProps extends React__default.HTMLAttributes<HTMLHRElement> {
|
|
7
|
+
readonly orientation?: Orientation;
|
|
8
|
+
readonly variant?: Variant;
|
|
9
|
+
readonly size?: Size;
|
|
10
|
+
}
|
|
11
|
+
declare const Separator: React__default.ForwardRefExoticComponent<SeparatorProps & React__default.RefAttributes<HTMLHRElement>>;
|
|
12
|
+
|
|
13
|
+
export { Separator, type SeparatorProps };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React__default from 'react';
|
|
2
|
+
|
|
3
|
+
type Orientation = 'horizontal' | 'vertical';
|
|
4
|
+
type Variant = 'solid' | 'dashed' | 'dotted';
|
|
5
|
+
type Size = 'xs' | 'sm' | 'md' | 'lg';
|
|
6
|
+
interface SeparatorProps extends React__default.HTMLAttributes<HTMLHRElement> {
|
|
7
|
+
readonly orientation?: Orientation;
|
|
8
|
+
readonly variant?: Variant;
|
|
9
|
+
readonly size?: Size;
|
|
10
|
+
}
|
|
11
|
+
declare const Separator: React__default.ForwardRefExoticComponent<SeparatorProps & React__default.RefAttributes<HTMLHRElement>>;
|
|
12
|
+
|
|
13
|
+
export { Separator, type SeparatorProps };
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
interface SkeletonProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'color'> {
|
|
4
|
+
readonly loading: boolean | undefined;
|
|
5
|
+
/** When true, the Skeleton wraps its single child element instead of adding a wrapper div. */
|
|
6
|
+
readonly asChild?: boolean;
|
|
7
|
+
readonly w?: any;
|
|
8
|
+
readonly h?: any;
|
|
9
|
+
readonly minW?: any;
|
|
10
|
+
readonly maxW?: any;
|
|
11
|
+
readonly display?: string;
|
|
12
|
+
readonly flexGrow?: number;
|
|
13
|
+
readonly flexShrink?: number;
|
|
14
|
+
readonly flexBasis?: string;
|
|
15
|
+
readonly fontWeight?: number | string;
|
|
16
|
+
readonly textStyle?: string;
|
|
17
|
+
readonly borderRadius?: string;
|
|
18
|
+
readonly alignSelf?: string;
|
|
19
|
+
readonly alignItems?: string;
|
|
20
|
+
readonly justifyContent?: string;
|
|
21
|
+
readonly color?: string;
|
|
22
|
+
readonly mt?: number | string;
|
|
23
|
+
readonly mb?: number | string;
|
|
24
|
+
readonly ml?: number | string;
|
|
25
|
+
readonly mr?: number | string;
|
|
26
|
+
readonly height?: string;
|
|
27
|
+
readonly overflow?: string;
|
|
28
|
+
readonly whiteSpace?: string;
|
|
29
|
+
readonly textOverflow?: string;
|
|
30
|
+
readonly textTransform?: string;
|
|
31
|
+
readonly gap?: number | string;
|
|
32
|
+
readonly gridTemplateColumns?: string;
|
|
33
|
+
readonly minWidth?: string;
|
|
34
|
+
readonly boxSize?: number | string;
|
|
35
|
+
readonly py?: number | string;
|
|
36
|
+
readonly px?: number | string;
|
|
37
|
+
readonly p?: number | string;
|
|
38
|
+
readonly hideBelow?: string;
|
|
39
|
+
readonly as?: React.ElementType;
|
|
40
|
+
readonly fontSize?: string;
|
|
41
|
+
readonly flexWrap?: React.CSSProperties['flexWrap'];
|
|
42
|
+
readonly wordBreak?: React.CSSProperties['wordBreak'];
|
|
43
|
+
readonly lineHeight?: string;
|
|
44
|
+
readonly marginRight?: string;
|
|
45
|
+
readonly position?: React.CSSProperties['position'];
|
|
46
|
+
readonly background?: string;
|
|
47
|
+
}
|
|
48
|
+
declare const Skeleton: React.ForwardRefExoticComponent<SkeletonProps & React.RefAttributes<HTMLDivElement>>;
|
|
49
|
+
interface SkeletonCircleProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
50
|
+
readonly size?: string | number;
|
|
51
|
+
readonly loading?: boolean;
|
|
52
|
+
}
|
|
53
|
+
declare const SkeletonCircle: React.ForwardRefExoticComponent<SkeletonCircleProps & React.RefAttributes<HTMLDivElement>>;
|
|
54
|
+
interface SkeletonTextProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
55
|
+
readonly noOfLines?: number;
|
|
56
|
+
readonly loading?: boolean;
|
|
57
|
+
}
|
|
58
|
+
declare const SkeletonText: React.ForwardRefExoticComponent<SkeletonTextProps & React.RefAttributes<HTMLDivElement>>;
|
|
59
|
+
|
|
60
|
+
export { Skeleton, SkeletonCircle, type SkeletonCircleProps, type SkeletonProps, SkeletonText, type SkeletonTextProps };
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
interface SkeletonProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'color'> {
|
|
4
|
+
readonly loading: boolean | undefined;
|
|
5
|
+
/** When true, the Skeleton wraps its single child element instead of adding a wrapper div. */
|
|
6
|
+
readonly asChild?: boolean;
|
|
7
|
+
readonly w?: any;
|
|
8
|
+
readonly h?: any;
|
|
9
|
+
readonly minW?: any;
|
|
10
|
+
readonly maxW?: any;
|
|
11
|
+
readonly display?: string;
|
|
12
|
+
readonly flexGrow?: number;
|
|
13
|
+
readonly flexShrink?: number;
|
|
14
|
+
readonly flexBasis?: string;
|
|
15
|
+
readonly fontWeight?: number | string;
|
|
16
|
+
readonly textStyle?: string;
|
|
17
|
+
readonly borderRadius?: string;
|
|
18
|
+
readonly alignSelf?: string;
|
|
19
|
+
readonly alignItems?: string;
|
|
20
|
+
readonly justifyContent?: string;
|
|
21
|
+
readonly color?: string;
|
|
22
|
+
readonly mt?: number | string;
|
|
23
|
+
readonly mb?: number | string;
|
|
24
|
+
readonly ml?: number | string;
|
|
25
|
+
readonly mr?: number | string;
|
|
26
|
+
readonly height?: string;
|
|
27
|
+
readonly overflow?: string;
|
|
28
|
+
readonly whiteSpace?: string;
|
|
29
|
+
readonly textOverflow?: string;
|
|
30
|
+
readonly textTransform?: string;
|
|
31
|
+
readonly gap?: number | string;
|
|
32
|
+
readonly gridTemplateColumns?: string;
|
|
33
|
+
readonly minWidth?: string;
|
|
34
|
+
readonly boxSize?: number | string;
|
|
35
|
+
readonly py?: number | string;
|
|
36
|
+
readonly px?: number | string;
|
|
37
|
+
readonly p?: number | string;
|
|
38
|
+
readonly hideBelow?: string;
|
|
39
|
+
readonly as?: React.ElementType;
|
|
40
|
+
readonly fontSize?: string;
|
|
41
|
+
readonly flexWrap?: React.CSSProperties['flexWrap'];
|
|
42
|
+
readonly wordBreak?: React.CSSProperties['wordBreak'];
|
|
43
|
+
readonly lineHeight?: string;
|
|
44
|
+
readonly marginRight?: string;
|
|
45
|
+
readonly position?: React.CSSProperties['position'];
|
|
46
|
+
readonly background?: string;
|
|
47
|
+
}
|
|
48
|
+
declare const Skeleton: React.ForwardRefExoticComponent<SkeletonProps & React.RefAttributes<HTMLDivElement>>;
|
|
49
|
+
interface SkeletonCircleProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
50
|
+
readonly size?: string | number;
|
|
51
|
+
readonly loading?: boolean;
|
|
52
|
+
}
|
|
53
|
+
declare const SkeletonCircle: React.ForwardRefExoticComponent<SkeletonCircleProps & React.RefAttributes<HTMLDivElement>>;
|
|
54
|
+
interface SkeletonTextProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
55
|
+
readonly noOfLines?: number;
|
|
56
|
+
readonly loading?: boolean;
|
|
57
|
+
}
|
|
58
|
+
declare const SkeletonText: React.ForwardRefExoticComponent<SkeletonTextProps & React.RefAttributes<HTMLDivElement>>;
|
|
59
|
+
|
|
60
|
+
export { Skeleton, SkeletonCircle, type SkeletonCircleProps, type SkeletonProps, SkeletonText, type SkeletonTextProps };
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
interface SliderProps {
|
|
4
|
+
readonly marks?: Array<number | {
|
|
5
|
+
readonly value: number;
|
|
6
|
+
readonly label: React.ReactNode;
|
|
7
|
+
}>;
|
|
8
|
+
readonly label?: React.ReactNode;
|
|
9
|
+
readonly showValue?: boolean;
|
|
10
|
+
readonly value?: Array<number>;
|
|
11
|
+
readonly defaultValue?: Array<number>;
|
|
12
|
+
readonly min?: number;
|
|
13
|
+
readonly max?: number;
|
|
14
|
+
readonly step?: number;
|
|
15
|
+
readonly disabled?: boolean;
|
|
16
|
+
readonly orientation?: 'horizontal' | 'vertical';
|
|
17
|
+
readonly name?: string;
|
|
18
|
+
readonly onValueChange?: (value: Array<number>) => void;
|
|
19
|
+
readonly onValueCommit?: (value: Array<number>) => void;
|
|
20
|
+
readonly className?: string;
|
|
21
|
+
}
|
|
22
|
+
declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<HTMLSpanElement>>;
|
|
23
|
+
|
|
24
|
+
export { Slider, type SliderProps };
|
package/dist/slider.d.ts
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
interface SliderProps {
|
|
4
|
+
readonly marks?: Array<number | {
|
|
5
|
+
readonly value: number;
|
|
6
|
+
readonly label: React.ReactNode;
|
|
7
|
+
}>;
|
|
8
|
+
readonly label?: React.ReactNode;
|
|
9
|
+
readonly showValue?: boolean;
|
|
10
|
+
readonly value?: Array<number>;
|
|
11
|
+
readonly defaultValue?: Array<number>;
|
|
12
|
+
readonly min?: number;
|
|
13
|
+
readonly max?: number;
|
|
14
|
+
readonly step?: number;
|
|
15
|
+
readonly disabled?: boolean;
|
|
16
|
+
readonly orientation?: 'horizontal' | 'vertical';
|
|
17
|
+
readonly name?: string;
|
|
18
|
+
readonly onValueChange?: (value: Array<number>) => void;
|
|
19
|
+
readonly onValueCommit?: (value: Array<number>) => void;
|
|
20
|
+
readonly className?: string;
|
|
21
|
+
}
|
|
22
|
+
declare const Slider: React.ForwardRefExoticComponent<SliderProps & React.RefAttributes<HTMLSpanElement>>;
|
|
23
|
+
|
|
24
|
+
export { Slider, type SliderProps };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
interface StrategyLeg {
|
|
4
|
+
action: 'buy' | 'sell';
|
|
5
|
+
type: 'call' | 'put';
|
|
6
|
+
strike: number;
|
|
7
|
+
expiration: string;
|
|
8
|
+
quantity: number;
|
|
9
|
+
premium?: number;
|
|
10
|
+
}
|
|
11
|
+
type StrategyType = 'bull_call_spread' | 'bear_put_spread' | 'iron_condor' | 'butterfly' | 'straddle' | 'strangle' | 'collar' | 'custom';
|
|
12
|
+
interface StrategySubmission {
|
|
13
|
+
type: string;
|
|
14
|
+
legs: StrategyLeg[];
|
|
15
|
+
netPremium: number;
|
|
16
|
+
}
|
|
17
|
+
interface StrategyBuilderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onSubmit'> {
|
|
18
|
+
readonly underlying: string;
|
|
19
|
+
readonly expirations: string[];
|
|
20
|
+
readonly strikes: number[];
|
|
21
|
+
readonly spotPrice: number;
|
|
22
|
+
readonly onSubmit?: (strategy: StrategySubmission) => void;
|
|
23
|
+
}
|
|
24
|
+
declare const StrategyBuilder: React.ForwardRefExoticComponent<StrategyBuilderProps & React.RefAttributes<HTMLDivElement>>;
|
|
25
|
+
|
|
26
|
+
export { StrategyBuilder, type StrategyBuilderProps, type StrategyLeg, type StrategySubmission, type StrategyType };
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
interface StrategyLeg {
|
|
4
|
+
action: 'buy' | 'sell';
|
|
5
|
+
type: 'call' | 'put';
|
|
6
|
+
strike: number;
|
|
7
|
+
expiration: string;
|
|
8
|
+
quantity: number;
|
|
9
|
+
premium?: number;
|
|
10
|
+
}
|
|
11
|
+
type StrategyType = 'bull_call_spread' | 'bear_put_spread' | 'iron_condor' | 'butterfly' | 'straddle' | 'strangle' | 'collar' | 'custom';
|
|
12
|
+
interface StrategySubmission {
|
|
13
|
+
type: string;
|
|
14
|
+
legs: StrategyLeg[];
|
|
15
|
+
netPremium: number;
|
|
16
|
+
}
|
|
17
|
+
interface StrategyBuilderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, 'onSubmit'> {
|
|
18
|
+
readonly underlying: string;
|
|
19
|
+
readonly expirations: string[];
|
|
20
|
+
readonly strikes: number[];
|
|
21
|
+
readonly spotPrice: number;
|
|
22
|
+
readonly onSubmit?: (strategy: StrategySubmission) => void;
|
|
23
|
+
}
|
|
24
|
+
declare const StrategyBuilder: React.ForwardRefExoticComponent<StrategyBuilderProps & React.RefAttributes<HTMLDivElement>>;
|
|
25
|
+
|
|
26
|
+
export { StrategyBuilder, type StrategyBuilderProps, type StrategyLeg, type StrategySubmission, type StrategyType };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
interface SwitchProps extends Omit<React.ComponentPropsWithoutRef<'label'>, 'onChange' | 'dir'> {
|
|
4
|
+
inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
5
|
+
labelProps?: React.ComponentPropsWithoutRef<'span'>;
|
|
6
|
+
rootRef?: React.Ref<HTMLLabelElement>;
|
|
7
|
+
trackLabel?: {
|
|
8
|
+
on: React.ReactNode;
|
|
9
|
+
off: React.ReactNode;
|
|
10
|
+
};
|
|
11
|
+
thumbLabel?: {
|
|
12
|
+
on: React.ReactNode;
|
|
13
|
+
off: React.ReactNode;
|
|
14
|
+
};
|
|
15
|
+
checked?: boolean;
|
|
16
|
+
defaultChecked?: boolean;
|
|
17
|
+
onCheckedChange?: (details: {
|
|
18
|
+
checked: boolean;
|
|
19
|
+
}) => void;
|
|
20
|
+
onChange?: React.FormEventHandler<HTMLLabelElement>;
|
|
21
|
+
disabled?: boolean;
|
|
22
|
+
size?: 'sm' | 'md' | 'lg';
|
|
23
|
+
direction?: 'ltr' | 'rtl';
|
|
24
|
+
}
|
|
25
|
+
declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLInputElement>>;
|
|
26
|
+
|
|
27
|
+
export { Switch, type SwitchProps };
|
package/dist/switch.d.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
|
|
3
|
+
interface SwitchProps extends Omit<React.ComponentPropsWithoutRef<'label'>, 'onChange' | 'dir'> {
|
|
4
|
+
inputProps?: React.InputHTMLAttributes<HTMLInputElement>;
|
|
5
|
+
labelProps?: React.ComponentPropsWithoutRef<'span'>;
|
|
6
|
+
rootRef?: React.Ref<HTMLLabelElement>;
|
|
7
|
+
trackLabel?: {
|
|
8
|
+
on: React.ReactNode;
|
|
9
|
+
off: React.ReactNode;
|
|
10
|
+
};
|
|
11
|
+
thumbLabel?: {
|
|
12
|
+
on: React.ReactNode;
|
|
13
|
+
off: React.ReactNode;
|
|
14
|
+
};
|
|
15
|
+
checked?: boolean;
|
|
16
|
+
defaultChecked?: boolean;
|
|
17
|
+
onCheckedChange?: (details: {
|
|
18
|
+
checked: boolean;
|
|
19
|
+
}) => void;
|
|
20
|
+
onChange?: React.FormEventHandler<HTMLLabelElement>;
|
|
21
|
+
disabled?: boolean;
|
|
22
|
+
size?: 'sm' | 'md' | 'lg';
|
|
23
|
+
direction?: 'ltr' | 'rtl';
|
|
24
|
+
}
|
|
25
|
+
declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLInputElement>>;
|
|
26
|
+
|
|
27
|
+
export { Switch, type SwitchProps };
|
package/dist/table.d.cts
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
interface ChakraStyleProps {
|
|
5
|
+
width?: React.CSSProperties['width'];
|
|
6
|
+
w?: React.CSSProperties['width'];
|
|
7
|
+
minWidth?: React.CSSProperties['minWidth'];
|
|
8
|
+
minW?: React.CSSProperties['minWidth'];
|
|
9
|
+
maxWidth?: React.CSSProperties['maxWidth'];
|
|
10
|
+
maxW?: React.CSSProperties['maxWidth'];
|
|
11
|
+
height?: React.CSSProperties['height'];
|
|
12
|
+
h?: React.CSSProperties['height'];
|
|
13
|
+
textAlign?: React.CSSProperties['textAlign'];
|
|
14
|
+
verticalAlign?: React.CSSProperties['verticalAlign'];
|
|
15
|
+
whiteSpace?: React.CSSProperties['whiteSpace'];
|
|
16
|
+
wordBreak?: React.CSSProperties['wordBreak'];
|
|
17
|
+
textTransform?: React.CSSProperties['textTransform'];
|
|
18
|
+
fontSize?: React.CSSProperties['fontSize'];
|
|
19
|
+
lineHeight?: React.CSSProperties['lineHeight'];
|
|
20
|
+
animation?: React.CSSProperties['animation'];
|
|
21
|
+
tableLayout?: React.CSSProperties['tableLayout'];
|
|
22
|
+
p?: number | string;
|
|
23
|
+
px?: number | string;
|
|
24
|
+
py?: number | string;
|
|
25
|
+
pr?: number | string;
|
|
26
|
+
pl?: number | string;
|
|
27
|
+
pt?: number | string;
|
|
28
|
+
pb?: number | string;
|
|
29
|
+
m?: number | string;
|
|
30
|
+
mx?: number | string;
|
|
31
|
+
my?: number | string;
|
|
32
|
+
mr?: number | string;
|
|
33
|
+
ml?: number | string;
|
|
34
|
+
mt?: number | string;
|
|
35
|
+
mb?: number | string;
|
|
36
|
+
position?: React.CSSProperties['position'];
|
|
37
|
+
top?: number | string;
|
|
38
|
+
left?: number | string;
|
|
39
|
+
right?: number | string;
|
|
40
|
+
bottom?: number | string;
|
|
41
|
+
zIndex?: React.CSSProperties['zIndex'];
|
|
42
|
+
backgroundColor?: React.CSSProperties['backgroundColor'] | Record<string, string>;
|
|
43
|
+
boxShadow?: React.CSSProperties['boxShadow'];
|
|
44
|
+
alignItems?: React.CSSProperties['alignItems'];
|
|
45
|
+
fontWeight?: React.CSSProperties['fontWeight'];
|
|
46
|
+
color?: React.CSSProperties['color'] | string;
|
|
47
|
+
overflow?: React.CSSProperties['overflow'];
|
|
48
|
+
borderBottomStyle?: React.CSSProperties['borderBottomStyle'];
|
|
49
|
+
borderRadius?: React.CSSProperties['borderRadius'];
|
|
50
|
+
display?: React.CSSProperties['display'];
|
|
51
|
+
_first?: Record<string, unknown>;
|
|
52
|
+
_last?: Record<string, unknown>;
|
|
53
|
+
}
|
|
54
|
+
interface TableRootProps extends Omit<ChakraStyleProps, 'minWidth' | 'minW'>, Omit<React.HTMLAttributes<HTMLTableElement>, 'color'> {
|
|
55
|
+
children?: React.ReactNode;
|
|
56
|
+
minWidth?: React.CSSProperties['minWidth'] | Record<string, string>;
|
|
57
|
+
minW?: React.CSSProperties['minWidth'] | Record<string, string>;
|
|
58
|
+
}
|
|
59
|
+
declare const TableRoot: React.ForwardRefExoticComponent<TableRootProps & React.RefAttributes<HTMLTableElement>>;
|
|
60
|
+
interface TableHeaderProps extends ChakraStyleProps, Omit<React.HTMLAttributes<HTMLTableSectionElement>, 'color'> {
|
|
61
|
+
children?: React.ReactNode;
|
|
62
|
+
}
|
|
63
|
+
declare const TableHeader: React.ForwardRefExoticComponent<TableHeaderProps & React.RefAttributes<HTMLTableSectionElement>>;
|
|
64
|
+
interface TableBodyProps extends ChakraStyleProps, Omit<React.HTMLAttributes<HTMLTableSectionElement>, 'color'> {
|
|
65
|
+
children?: React.ReactNode;
|
|
66
|
+
}
|
|
67
|
+
declare const TableBody: React.ForwardRefExoticComponent<TableBodyProps & React.RefAttributes<HTMLTableSectionElement>>;
|
|
68
|
+
interface TableRowProps extends ChakraStyleProps, Omit<React.HTMLAttributes<HTMLTableRowElement>, 'color'> {
|
|
69
|
+
children?: React.ReactNode;
|
|
70
|
+
}
|
|
71
|
+
declare const TableRow: React.ForwardRefExoticComponent<TableRowProps & React.RefAttributes<HTMLTableRowElement>>;
|
|
72
|
+
interface TableCellProps extends Omit<ChakraStyleProps, 'width' | 'height'>, Omit<React.TdHTMLAttributes<HTMLTableCellElement>, 'color'> {
|
|
73
|
+
isNumeric?: boolean;
|
|
74
|
+
children?: React.ReactNode;
|
|
75
|
+
display?: string;
|
|
76
|
+
justifyContent?: string;
|
|
77
|
+
}
|
|
78
|
+
declare const TableCell: React.ForwardRefExoticComponent<TableCellProps & React.RefAttributes<HTMLTableCellElement>>;
|
|
79
|
+
interface TableColumnHeaderProps extends ChakraStyleProps, Omit<React.ThHTMLAttributes<HTMLTableCellElement>, 'color'> {
|
|
80
|
+
isNumeric?: boolean;
|
|
81
|
+
children?: React.ReactNode;
|
|
82
|
+
}
|
|
83
|
+
declare const TableColumnHeader: React.ForwardRefExoticComponent<TableColumnHeaderProps & React.RefAttributes<HTMLTableCellElement>>;
|
|
84
|
+
interface TableColumnHeaderSortableProps<F extends string> extends TableColumnHeaderProps {
|
|
85
|
+
sortField: F;
|
|
86
|
+
sortValue: string;
|
|
87
|
+
onSortToggle: (sortField: F) => void;
|
|
88
|
+
disabled?: boolean;
|
|
89
|
+
indicatorPosition?: 'left' | 'right';
|
|
90
|
+
contentAfter?: React.ReactNode;
|
|
91
|
+
}
|
|
92
|
+
declare const TableColumnHeaderSortable: <F extends string>(props: TableColumnHeaderSortableProps<F>) => react_jsx_runtime.JSX.Element;
|
|
93
|
+
declare const TableHeaderSticky: (props: TableHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
94
|
+
interface TableCaptionProps extends ChakraStyleProps, Omit<React.HTMLAttributes<HTMLTableCaptionElement>, 'color'> {
|
|
95
|
+
children?: React.ReactNode;
|
|
96
|
+
}
|
|
97
|
+
declare const TableCaption: React.ForwardRefExoticComponent<TableCaptionProps & React.RefAttributes<HTMLTableCaptionElement>>;
|
|
98
|
+
interface TableFooterProps extends ChakraStyleProps, Omit<React.HTMLAttributes<HTMLTableSectionElement>, 'color'> {
|
|
99
|
+
children?: React.ReactNode;
|
|
100
|
+
}
|
|
101
|
+
declare const TableFooter: React.ForwardRefExoticComponent<TableFooterProps & React.RefAttributes<HTMLTableSectionElement>>;
|
|
102
|
+
interface TableScrollWrapperProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
103
|
+
children?: React.ReactNode;
|
|
104
|
+
}
|
|
105
|
+
declare const TableScrollWrapper: React.ForwardRefExoticComponent<TableScrollWrapperProps & React.RefAttributes<HTMLDivElement>>;
|
|
106
|
+
|
|
107
|
+
export { TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableColumnHeader, type TableColumnHeaderProps, TableColumnHeaderSortable, type TableColumnHeaderSortableProps, TableFooter, type TableFooterProps, TableHeader, type TableHeaderProps, TableHeaderSticky, TableRoot, type TableRootProps, TableRow, type TableRowProps, TableScrollWrapper, type TableScrollWrapperProps };
|
package/dist/table.d.ts
ADDED
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
|
|
4
|
+
interface ChakraStyleProps {
|
|
5
|
+
width?: React.CSSProperties['width'];
|
|
6
|
+
w?: React.CSSProperties['width'];
|
|
7
|
+
minWidth?: React.CSSProperties['minWidth'];
|
|
8
|
+
minW?: React.CSSProperties['minWidth'];
|
|
9
|
+
maxWidth?: React.CSSProperties['maxWidth'];
|
|
10
|
+
maxW?: React.CSSProperties['maxWidth'];
|
|
11
|
+
height?: React.CSSProperties['height'];
|
|
12
|
+
h?: React.CSSProperties['height'];
|
|
13
|
+
textAlign?: React.CSSProperties['textAlign'];
|
|
14
|
+
verticalAlign?: React.CSSProperties['verticalAlign'];
|
|
15
|
+
whiteSpace?: React.CSSProperties['whiteSpace'];
|
|
16
|
+
wordBreak?: React.CSSProperties['wordBreak'];
|
|
17
|
+
textTransform?: React.CSSProperties['textTransform'];
|
|
18
|
+
fontSize?: React.CSSProperties['fontSize'];
|
|
19
|
+
lineHeight?: React.CSSProperties['lineHeight'];
|
|
20
|
+
animation?: React.CSSProperties['animation'];
|
|
21
|
+
tableLayout?: React.CSSProperties['tableLayout'];
|
|
22
|
+
p?: number | string;
|
|
23
|
+
px?: number | string;
|
|
24
|
+
py?: number | string;
|
|
25
|
+
pr?: number | string;
|
|
26
|
+
pl?: number | string;
|
|
27
|
+
pt?: number | string;
|
|
28
|
+
pb?: number | string;
|
|
29
|
+
m?: number | string;
|
|
30
|
+
mx?: number | string;
|
|
31
|
+
my?: number | string;
|
|
32
|
+
mr?: number | string;
|
|
33
|
+
ml?: number | string;
|
|
34
|
+
mt?: number | string;
|
|
35
|
+
mb?: number | string;
|
|
36
|
+
position?: React.CSSProperties['position'];
|
|
37
|
+
top?: number | string;
|
|
38
|
+
left?: number | string;
|
|
39
|
+
right?: number | string;
|
|
40
|
+
bottom?: number | string;
|
|
41
|
+
zIndex?: React.CSSProperties['zIndex'];
|
|
42
|
+
backgroundColor?: React.CSSProperties['backgroundColor'] | Record<string, string>;
|
|
43
|
+
boxShadow?: React.CSSProperties['boxShadow'];
|
|
44
|
+
alignItems?: React.CSSProperties['alignItems'];
|
|
45
|
+
fontWeight?: React.CSSProperties['fontWeight'];
|
|
46
|
+
color?: React.CSSProperties['color'] | string;
|
|
47
|
+
overflow?: React.CSSProperties['overflow'];
|
|
48
|
+
borderBottomStyle?: React.CSSProperties['borderBottomStyle'];
|
|
49
|
+
borderRadius?: React.CSSProperties['borderRadius'];
|
|
50
|
+
display?: React.CSSProperties['display'];
|
|
51
|
+
_first?: Record<string, unknown>;
|
|
52
|
+
_last?: Record<string, unknown>;
|
|
53
|
+
}
|
|
54
|
+
interface TableRootProps extends Omit<ChakraStyleProps, 'minWidth' | 'minW'>, Omit<React.HTMLAttributes<HTMLTableElement>, 'color'> {
|
|
55
|
+
children?: React.ReactNode;
|
|
56
|
+
minWidth?: React.CSSProperties['minWidth'] | Record<string, string>;
|
|
57
|
+
minW?: React.CSSProperties['minWidth'] | Record<string, string>;
|
|
58
|
+
}
|
|
59
|
+
declare const TableRoot: React.ForwardRefExoticComponent<TableRootProps & React.RefAttributes<HTMLTableElement>>;
|
|
60
|
+
interface TableHeaderProps extends ChakraStyleProps, Omit<React.HTMLAttributes<HTMLTableSectionElement>, 'color'> {
|
|
61
|
+
children?: React.ReactNode;
|
|
62
|
+
}
|
|
63
|
+
declare const TableHeader: React.ForwardRefExoticComponent<TableHeaderProps & React.RefAttributes<HTMLTableSectionElement>>;
|
|
64
|
+
interface TableBodyProps extends ChakraStyleProps, Omit<React.HTMLAttributes<HTMLTableSectionElement>, 'color'> {
|
|
65
|
+
children?: React.ReactNode;
|
|
66
|
+
}
|
|
67
|
+
declare const TableBody: React.ForwardRefExoticComponent<TableBodyProps & React.RefAttributes<HTMLTableSectionElement>>;
|
|
68
|
+
interface TableRowProps extends ChakraStyleProps, Omit<React.HTMLAttributes<HTMLTableRowElement>, 'color'> {
|
|
69
|
+
children?: React.ReactNode;
|
|
70
|
+
}
|
|
71
|
+
declare const TableRow: React.ForwardRefExoticComponent<TableRowProps & React.RefAttributes<HTMLTableRowElement>>;
|
|
72
|
+
interface TableCellProps extends Omit<ChakraStyleProps, 'width' | 'height'>, Omit<React.TdHTMLAttributes<HTMLTableCellElement>, 'color'> {
|
|
73
|
+
isNumeric?: boolean;
|
|
74
|
+
children?: React.ReactNode;
|
|
75
|
+
display?: string;
|
|
76
|
+
justifyContent?: string;
|
|
77
|
+
}
|
|
78
|
+
declare const TableCell: React.ForwardRefExoticComponent<TableCellProps & React.RefAttributes<HTMLTableCellElement>>;
|
|
79
|
+
interface TableColumnHeaderProps extends ChakraStyleProps, Omit<React.ThHTMLAttributes<HTMLTableCellElement>, 'color'> {
|
|
80
|
+
isNumeric?: boolean;
|
|
81
|
+
children?: React.ReactNode;
|
|
82
|
+
}
|
|
83
|
+
declare const TableColumnHeader: React.ForwardRefExoticComponent<TableColumnHeaderProps & React.RefAttributes<HTMLTableCellElement>>;
|
|
84
|
+
interface TableColumnHeaderSortableProps<F extends string> extends TableColumnHeaderProps {
|
|
85
|
+
sortField: F;
|
|
86
|
+
sortValue: string;
|
|
87
|
+
onSortToggle: (sortField: F) => void;
|
|
88
|
+
disabled?: boolean;
|
|
89
|
+
indicatorPosition?: 'left' | 'right';
|
|
90
|
+
contentAfter?: React.ReactNode;
|
|
91
|
+
}
|
|
92
|
+
declare const TableColumnHeaderSortable: <F extends string>(props: TableColumnHeaderSortableProps<F>) => react_jsx_runtime.JSX.Element;
|
|
93
|
+
declare const TableHeaderSticky: (props: TableHeaderProps) => react_jsx_runtime.JSX.Element;
|
|
94
|
+
interface TableCaptionProps extends ChakraStyleProps, Omit<React.HTMLAttributes<HTMLTableCaptionElement>, 'color'> {
|
|
95
|
+
children?: React.ReactNode;
|
|
96
|
+
}
|
|
97
|
+
declare const TableCaption: React.ForwardRefExoticComponent<TableCaptionProps & React.RefAttributes<HTMLTableCaptionElement>>;
|
|
98
|
+
interface TableFooterProps extends ChakraStyleProps, Omit<React.HTMLAttributes<HTMLTableSectionElement>, 'color'> {
|
|
99
|
+
children?: React.ReactNode;
|
|
100
|
+
}
|
|
101
|
+
declare const TableFooter: React.ForwardRefExoticComponent<TableFooterProps & React.RefAttributes<HTMLTableSectionElement>>;
|
|
102
|
+
interface TableScrollWrapperProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
103
|
+
children?: React.ReactNode;
|
|
104
|
+
}
|
|
105
|
+
declare const TableScrollWrapper: React.ForwardRefExoticComponent<TableScrollWrapperProps & React.RefAttributes<HTMLDivElement>>;
|
|
106
|
+
|
|
107
|
+
export { TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableColumnHeader, type TableColumnHeaderProps, TableColumnHeaderSortable, type TableColumnHeaderSortableProps, TableFooter, type TableFooterProps, TableHeader, type TableHeaderProps, TableHeaderSticky, TableRoot, type TableRootProps, TableRow, type TableRowProps, TableScrollWrapper, type TableScrollWrapperProps };
|