@gmook9/pristine-ui 0.2.0 → 0.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -29,6 +29,212 @@ interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
29
29
  }
30
30
  declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
31
31
 
32
+ declare const badgeVariants: (props?: ({
33
+ variant?: "default" | "primary" | "danger" | "success" | "warning" | "outline" | null | undefined;
34
+ size?: "sm" | "md" | null | undefined;
35
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
36
+ interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
37
+ }
38
+ declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLSpanElement>>;
39
+
40
+ declare const alertVariants: (props?: ({
41
+ variant?: "default" | "danger" | "success" | "warning" | "info" | null | undefined;
42
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
43
+ interface AlertProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof alertVariants> {
44
+ }
45
+ declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
46
+ interface AlertTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
47
+ }
48
+ declare function AlertTitle({ className, ...props }: AlertTitleProps): react_jsx_runtime.JSX.Element;
49
+ interface AlertDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
50
+ }
51
+ declare function AlertDescription({ className, ...props }: AlertDescriptionProps): react_jsx_runtime.JSX.Element;
52
+
53
+ declare const avatarVariants: (props?: ({
54
+ size?: "sm" | "md" | "lg" | null | undefined;
55
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
56
+ interface AvatarProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof avatarVariants> {
57
+ }
58
+ declare const Avatar: React.ForwardRefExoticComponent<AvatarProps & React.RefAttributes<HTMLSpanElement>>;
59
+ interface AvatarImageProps extends React.ImgHTMLAttributes<HTMLImageElement> {
60
+ }
61
+ declare const AvatarImage: React.ForwardRefExoticComponent<AvatarImageProps & React.RefAttributes<HTMLImageElement>>;
62
+ interface AvatarFallbackProps extends React.HTMLAttributes<HTMLSpanElement> {
63
+ }
64
+ declare const AvatarFallback: React.ForwardRefExoticComponent<AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>>;
65
+
66
+ interface SwitchProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "type"> {
67
+ checked?: boolean;
68
+ defaultChecked?: boolean;
69
+ onCheckedChange?: (checked: boolean) => void;
70
+ disabled?: boolean;
71
+ }
72
+ declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;
73
+
74
+ interface ProgressProps extends React.HTMLAttributes<HTMLDivElement> {
75
+ value?: number;
76
+ max?: number;
77
+ }
78
+ declare const Progress: React.ForwardRefExoticComponent<ProgressProps & React.RefAttributes<HTMLDivElement>>;
79
+
80
+ declare const skeletonVariants: (props?: ({
81
+ variant?: "default" | "subtle" | null | undefined;
82
+ size?: "sm" | "md" | "lg" | null | undefined;
83
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
84
+ interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof skeletonVariants> {
85
+ }
86
+ declare function Skeleton({ className, variant, size, ...props }: SkeletonProps): react_jsx_runtime.JSX.Element;
87
+
88
+ interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
89
+ }
90
+ declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
91
+
92
+ interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> {
93
+ label?: React.ReactNode;
94
+ }
95
+ declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
96
+
97
+ interface BreadcrumbProps extends React.HTMLAttributes<HTMLElement> {
98
+ }
99
+ declare function Breadcrumb({ className, ...props }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
100
+ interface BreadcrumbListProps extends React.OlHTMLAttributes<HTMLOListElement> {
101
+ }
102
+ declare function BreadcrumbList({ className, ...props }: BreadcrumbListProps): react_jsx_runtime.JSX.Element;
103
+ interface BreadcrumbItemProps extends React.LiHTMLAttributes<HTMLLIElement> {
104
+ }
105
+ declare function BreadcrumbItem({ className, ...props }: BreadcrumbItemProps): react_jsx_runtime.JSX.Element;
106
+ interface BreadcrumbLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
107
+ }
108
+ declare function BreadcrumbLink({ className, ...props }: BreadcrumbLinkProps): react_jsx_runtime.JSX.Element;
109
+ interface BreadcrumbSeparatorProps extends React.HTMLAttributes<HTMLSpanElement> {
110
+ }
111
+ declare function BreadcrumbSeparator({ className, ...props }: BreadcrumbSeparatorProps): react_jsx_runtime.JSX.Element;
112
+
113
+ interface AccordionProps extends React.HTMLAttributes<HTMLDivElement> {
114
+ defaultValue?: string;
115
+ }
116
+ declare function Accordion({ className, defaultValue, ...props }: AccordionProps): react_jsx_runtime.JSX.Element;
117
+ interface AccordionItemProps extends React.HTMLAttributes<HTMLDivElement> {
118
+ value: string;
119
+ }
120
+ declare function AccordionItem({ className, value, ...props }: AccordionItemProps): react_jsx_runtime.JSX.Element;
121
+ interface AccordionTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
122
+ value: string;
123
+ }
124
+ declare function AccordionTrigger({ className, value, ...props }: AccordionTriggerProps): react_jsx_runtime.JSX.Element;
125
+ interface AccordionContentProps extends React.HTMLAttributes<HTMLDivElement> {
126
+ value: string;
127
+ }
128
+ declare function AccordionContent({ className, value, ...props }: AccordionContentProps): react_jsx_runtime.JSX.Element | null;
129
+
130
+ interface TooltipProps extends React.HTMLAttributes<HTMLSpanElement> {
131
+ text: React.ReactNode;
132
+ side?: "top" | "right" | "bottom" | "left";
133
+ }
134
+ declare function Tooltip({ className, text, side, children, ...props }: TooltipProps): react_jsx_runtime.JSX.Element;
135
+
136
+ interface DividerProps extends React.HTMLAttributes<HTMLDivElement> {
137
+ orientation?: "horizontal" | "vertical";
138
+ }
139
+ declare function Divider({ className, orientation, ...props }: DividerProps): react_jsx_runtime.JSX.Element;
140
+
141
+ declare const tagVariants: (props?: ({
142
+ variant?: "default" | "primary" | "danger" | "success" | "warning" | "outline" | null | undefined;
143
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
144
+ interface TagProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof tagVariants> {
145
+ onRemove?: () => void;
146
+ }
147
+ declare function Tag({ className, variant, onRemove, ...props }: TagProps): react_jsx_runtime.JSX.Element;
148
+
149
+ interface TableProps extends React.TableHTMLAttributes<HTMLTableElement> {
150
+ }
151
+ declare function Table({ className, ...props }: TableProps): react_jsx_runtime.JSX.Element;
152
+ interface TableHeaderProps extends React.HTMLAttributes<HTMLTableSectionElement> {
153
+ }
154
+ declare function TableHeader({ className, ...props }: TableHeaderProps): react_jsx_runtime.JSX.Element;
155
+ interface TableBodyProps extends React.HTMLAttributes<HTMLTableSectionElement> {
156
+ }
157
+ declare function TableBody({ className, ...props }: TableBodyProps): react_jsx_runtime.JSX.Element;
158
+ interface TableRowProps extends React.HTMLAttributes<HTMLTableRowElement> {
159
+ }
160
+ declare function TableRow({ className, ...props }: TableRowProps): react_jsx_runtime.JSX.Element;
161
+ interface TableHeadProps extends React.ThHTMLAttributes<HTMLTableCellElement> {
162
+ }
163
+ declare function TableHead({ className, ...props }: TableHeadProps): react_jsx_runtime.JSX.Element;
164
+ interface TableCellProps extends React.TdHTMLAttributes<HTMLTableCellElement> {
165
+ }
166
+ declare function TableCell({ className, ...props }: TableCellProps): react_jsx_runtime.JSX.Element;
167
+ interface TableCaptionProps extends React.HTMLAttributes<HTMLTableCaptionElement> {
168
+ }
169
+ declare function TableCaption({ className, ...props }: TableCaptionProps): react_jsx_runtime.JSX.Element;
170
+
171
+ type TabsValue = string;
172
+ interface TabsProps extends React.HTMLAttributes<HTMLDivElement> {
173
+ value?: TabsValue;
174
+ defaultValue?: TabsValue;
175
+ onValueChange?: (value: TabsValue) => void;
176
+ }
177
+ declare function Tabs({ className, value, defaultValue, onValueChange, ...props }: TabsProps): react_jsx_runtime.JSX.Element;
178
+ interface TabsListProps extends React.HTMLAttributes<HTMLDivElement> {
179
+ }
180
+ declare function TabsList({ className, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
181
+ interface TabsTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
182
+ value: TabsValue;
183
+ }
184
+ declare function TabsTrigger({ className, value, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
185
+ interface TabsContentProps extends React.HTMLAttributes<HTMLDivElement> {
186
+ value: TabsValue;
187
+ }
188
+ declare function TabsContent({ className, value, ...props }: TabsContentProps): react_jsx_runtime.JSX.Element | null;
189
+
190
+ interface ModalProps extends React.HTMLAttributes<HTMLDivElement> {
191
+ open: boolean;
192
+ onOpenChange?: (open: boolean) => void;
193
+ }
194
+ declare function Modal({ className, open, onOpenChange, ...props }: ModalProps): react_jsx_runtime.JSX.Element | null;
195
+ interface ModalHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
196
+ }
197
+ declare function ModalHeader({ className, ...props }: ModalHeaderProps): react_jsx_runtime.JSX.Element;
198
+ interface ModalTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
199
+ }
200
+ declare function ModalTitle({ className, ...props }: ModalTitleProps): react_jsx_runtime.JSX.Element;
201
+ interface ModalDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
202
+ }
203
+ declare function ModalDescription({ className, ...props }: ModalDescriptionProps): react_jsx_runtime.JSX.Element;
204
+ interface ModalFooterProps extends React.HTMLAttributes<HTMLDivElement> {
205
+ }
206
+ declare function ModalFooter({ className, ...props }: ModalFooterProps): react_jsx_runtime.JSX.Element;
207
+
208
+ interface DropdownProps extends React.HTMLAttributes<HTMLDivElement> {
209
+ }
210
+ declare function Dropdown({ className, ...props }: DropdownProps): react_jsx_runtime.JSX.Element;
211
+ interface DropdownTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
212
+ }
213
+ declare function DropdownTrigger({ className, ...props }: DropdownTriggerProps): react_jsx_runtime.JSX.Element;
214
+ interface DropdownContentProps extends React.HTMLAttributes<HTMLDivElement> {
215
+ }
216
+ declare function DropdownContent({ className, ...props }: DropdownContentProps): react_jsx_runtime.JSX.Element | null;
217
+ interface DropdownItemProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
218
+ }
219
+ declare function DropdownItem({ className, ...props }: DropdownItemProps): react_jsx_runtime.JSX.Element;
220
+
221
+ interface SelectProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
222
+ }
223
+ declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLSelectElement>>;
224
+
225
+ interface ToastProps extends React.HTMLAttributes<HTMLDivElement> {
226
+ }
227
+ declare function Toast({ className, ...props }: ToastProps): react_jsx_runtime.JSX.Element;
228
+ interface ToastTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
229
+ }
230
+ declare function ToastTitle({ className, ...props }: ToastTitleProps): react_jsx_runtime.JSX.Element;
231
+ interface ToastDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
232
+ }
233
+ declare function ToastDescription({ className, ...props }: ToastDescriptionProps): react_jsx_runtime.JSX.Element;
234
+ interface ToastActionProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
235
+ }
236
+ declare function ToastAction({ className, ...props }: ToastActionProps): react_jsx_runtime.JSX.Element;
237
+
32
238
  declare function cn(...inputs: ClassValue[]): string;
33
239
 
34
- export { Button, type ButtonProps, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, Input, type InputProps, cn };
240
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, Checkbox, type CheckboxProps, Divider, type DividerProps, Dropdown, DropdownContent, type DropdownContentProps, DropdownItem, type DropdownItemProps, type DropdownProps, DropdownTrigger, type DropdownTriggerProps, Input, type InputProps, Modal, ModalDescription, type ModalDescriptionProps, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, type ModalProps, ModalTitle, type ModalTitleProps, Progress, type ProgressProps, Select, type SelectProps, Skeleton, type SkeletonProps, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, type TagProps, Textarea, type TextareaProps, Toast, ToastAction, type ToastActionProps, ToastDescription, type ToastDescriptionProps, type ToastProps, ToastTitle, type ToastTitleProps, Tooltip, type TooltipProps, cn };
package/dist/index.d.ts CHANGED
@@ -29,6 +29,212 @@ interface InputProps extends React.InputHTMLAttributes<HTMLInputElement> {
29
29
  }
30
30
  declare const Input: React.ForwardRefExoticComponent<InputProps & React.RefAttributes<HTMLInputElement>>;
31
31
 
32
+ declare const badgeVariants: (props?: ({
33
+ variant?: "default" | "primary" | "danger" | "success" | "warning" | "outline" | null | undefined;
34
+ size?: "sm" | "md" | null | undefined;
35
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
36
+ interface BadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
37
+ }
38
+ declare const Badge: React.ForwardRefExoticComponent<BadgeProps & React.RefAttributes<HTMLSpanElement>>;
39
+
40
+ declare const alertVariants: (props?: ({
41
+ variant?: "default" | "danger" | "success" | "warning" | "info" | null | undefined;
42
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
43
+ interface AlertProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof alertVariants> {
44
+ }
45
+ declare const Alert: React.ForwardRefExoticComponent<AlertProps & React.RefAttributes<HTMLDivElement>>;
46
+ interface AlertTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
47
+ }
48
+ declare function AlertTitle({ className, ...props }: AlertTitleProps): react_jsx_runtime.JSX.Element;
49
+ interface AlertDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
50
+ }
51
+ declare function AlertDescription({ className, ...props }: AlertDescriptionProps): react_jsx_runtime.JSX.Element;
52
+
53
+ declare const avatarVariants: (props?: ({
54
+ size?: "sm" | "md" | "lg" | null | undefined;
55
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
56
+ interface AvatarProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof avatarVariants> {
57
+ }
58
+ declare const Avatar: React.ForwardRefExoticComponent<AvatarProps & React.RefAttributes<HTMLSpanElement>>;
59
+ interface AvatarImageProps extends React.ImgHTMLAttributes<HTMLImageElement> {
60
+ }
61
+ declare const AvatarImage: React.ForwardRefExoticComponent<AvatarImageProps & React.RefAttributes<HTMLImageElement>>;
62
+ interface AvatarFallbackProps extends React.HTMLAttributes<HTMLSpanElement> {
63
+ }
64
+ declare const AvatarFallback: React.ForwardRefExoticComponent<AvatarFallbackProps & React.RefAttributes<HTMLSpanElement>>;
65
+
66
+ interface SwitchProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "type"> {
67
+ checked?: boolean;
68
+ defaultChecked?: boolean;
69
+ onCheckedChange?: (checked: boolean) => void;
70
+ disabled?: boolean;
71
+ }
72
+ declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAttributes<HTMLButtonElement>>;
73
+
74
+ interface ProgressProps extends React.HTMLAttributes<HTMLDivElement> {
75
+ value?: number;
76
+ max?: number;
77
+ }
78
+ declare const Progress: React.ForwardRefExoticComponent<ProgressProps & React.RefAttributes<HTMLDivElement>>;
79
+
80
+ declare const skeletonVariants: (props?: ({
81
+ variant?: "default" | "subtle" | null | undefined;
82
+ size?: "sm" | "md" | "lg" | null | undefined;
83
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
84
+ interface SkeletonProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<typeof skeletonVariants> {
85
+ }
86
+ declare function Skeleton({ className, variant, size, ...props }: SkeletonProps): react_jsx_runtime.JSX.Element;
87
+
88
+ interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement> {
89
+ }
90
+ declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
91
+
92
+ interface CheckboxProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "type"> {
93
+ label?: React.ReactNode;
94
+ }
95
+ declare const Checkbox: React.ForwardRefExoticComponent<CheckboxProps & React.RefAttributes<HTMLInputElement>>;
96
+
97
+ interface BreadcrumbProps extends React.HTMLAttributes<HTMLElement> {
98
+ }
99
+ declare function Breadcrumb({ className, ...props }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
100
+ interface BreadcrumbListProps extends React.OlHTMLAttributes<HTMLOListElement> {
101
+ }
102
+ declare function BreadcrumbList({ className, ...props }: BreadcrumbListProps): react_jsx_runtime.JSX.Element;
103
+ interface BreadcrumbItemProps extends React.LiHTMLAttributes<HTMLLIElement> {
104
+ }
105
+ declare function BreadcrumbItem({ className, ...props }: BreadcrumbItemProps): react_jsx_runtime.JSX.Element;
106
+ interface BreadcrumbLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
107
+ }
108
+ declare function BreadcrumbLink({ className, ...props }: BreadcrumbLinkProps): react_jsx_runtime.JSX.Element;
109
+ interface BreadcrumbSeparatorProps extends React.HTMLAttributes<HTMLSpanElement> {
110
+ }
111
+ declare function BreadcrumbSeparator({ className, ...props }: BreadcrumbSeparatorProps): react_jsx_runtime.JSX.Element;
112
+
113
+ interface AccordionProps extends React.HTMLAttributes<HTMLDivElement> {
114
+ defaultValue?: string;
115
+ }
116
+ declare function Accordion({ className, defaultValue, ...props }: AccordionProps): react_jsx_runtime.JSX.Element;
117
+ interface AccordionItemProps extends React.HTMLAttributes<HTMLDivElement> {
118
+ value: string;
119
+ }
120
+ declare function AccordionItem({ className, value, ...props }: AccordionItemProps): react_jsx_runtime.JSX.Element;
121
+ interface AccordionTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
122
+ value: string;
123
+ }
124
+ declare function AccordionTrigger({ className, value, ...props }: AccordionTriggerProps): react_jsx_runtime.JSX.Element;
125
+ interface AccordionContentProps extends React.HTMLAttributes<HTMLDivElement> {
126
+ value: string;
127
+ }
128
+ declare function AccordionContent({ className, value, ...props }: AccordionContentProps): react_jsx_runtime.JSX.Element | null;
129
+
130
+ interface TooltipProps extends React.HTMLAttributes<HTMLSpanElement> {
131
+ text: React.ReactNode;
132
+ side?: "top" | "right" | "bottom" | "left";
133
+ }
134
+ declare function Tooltip({ className, text, side, children, ...props }: TooltipProps): react_jsx_runtime.JSX.Element;
135
+
136
+ interface DividerProps extends React.HTMLAttributes<HTMLDivElement> {
137
+ orientation?: "horizontal" | "vertical";
138
+ }
139
+ declare function Divider({ className, orientation, ...props }: DividerProps): react_jsx_runtime.JSX.Element;
140
+
141
+ declare const tagVariants: (props?: ({
142
+ variant?: "default" | "primary" | "danger" | "success" | "warning" | "outline" | null | undefined;
143
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
144
+ interface TagProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof tagVariants> {
145
+ onRemove?: () => void;
146
+ }
147
+ declare function Tag({ className, variant, onRemove, ...props }: TagProps): react_jsx_runtime.JSX.Element;
148
+
149
+ interface TableProps extends React.TableHTMLAttributes<HTMLTableElement> {
150
+ }
151
+ declare function Table({ className, ...props }: TableProps): react_jsx_runtime.JSX.Element;
152
+ interface TableHeaderProps extends React.HTMLAttributes<HTMLTableSectionElement> {
153
+ }
154
+ declare function TableHeader({ className, ...props }: TableHeaderProps): react_jsx_runtime.JSX.Element;
155
+ interface TableBodyProps extends React.HTMLAttributes<HTMLTableSectionElement> {
156
+ }
157
+ declare function TableBody({ className, ...props }: TableBodyProps): react_jsx_runtime.JSX.Element;
158
+ interface TableRowProps extends React.HTMLAttributes<HTMLTableRowElement> {
159
+ }
160
+ declare function TableRow({ className, ...props }: TableRowProps): react_jsx_runtime.JSX.Element;
161
+ interface TableHeadProps extends React.ThHTMLAttributes<HTMLTableCellElement> {
162
+ }
163
+ declare function TableHead({ className, ...props }: TableHeadProps): react_jsx_runtime.JSX.Element;
164
+ interface TableCellProps extends React.TdHTMLAttributes<HTMLTableCellElement> {
165
+ }
166
+ declare function TableCell({ className, ...props }: TableCellProps): react_jsx_runtime.JSX.Element;
167
+ interface TableCaptionProps extends React.HTMLAttributes<HTMLTableCaptionElement> {
168
+ }
169
+ declare function TableCaption({ className, ...props }: TableCaptionProps): react_jsx_runtime.JSX.Element;
170
+
171
+ type TabsValue = string;
172
+ interface TabsProps extends React.HTMLAttributes<HTMLDivElement> {
173
+ value?: TabsValue;
174
+ defaultValue?: TabsValue;
175
+ onValueChange?: (value: TabsValue) => void;
176
+ }
177
+ declare function Tabs({ className, value, defaultValue, onValueChange, ...props }: TabsProps): react_jsx_runtime.JSX.Element;
178
+ interface TabsListProps extends React.HTMLAttributes<HTMLDivElement> {
179
+ }
180
+ declare function TabsList({ className, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
181
+ interface TabsTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
182
+ value: TabsValue;
183
+ }
184
+ declare function TabsTrigger({ className, value, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
185
+ interface TabsContentProps extends React.HTMLAttributes<HTMLDivElement> {
186
+ value: TabsValue;
187
+ }
188
+ declare function TabsContent({ className, value, ...props }: TabsContentProps): react_jsx_runtime.JSX.Element | null;
189
+
190
+ interface ModalProps extends React.HTMLAttributes<HTMLDivElement> {
191
+ open: boolean;
192
+ onOpenChange?: (open: boolean) => void;
193
+ }
194
+ declare function Modal({ className, open, onOpenChange, ...props }: ModalProps): react_jsx_runtime.JSX.Element | null;
195
+ interface ModalHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
196
+ }
197
+ declare function ModalHeader({ className, ...props }: ModalHeaderProps): react_jsx_runtime.JSX.Element;
198
+ interface ModalTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
199
+ }
200
+ declare function ModalTitle({ className, ...props }: ModalTitleProps): react_jsx_runtime.JSX.Element;
201
+ interface ModalDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
202
+ }
203
+ declare function ModalDescription({ className, ...props }: ModalDescriptionProps): react_jsx_runtime.JSX.Element;
204
+ interface ModalFooterProps extends React.HTMLAttributes<HTMLDivElement> {
205
+ }
206
+ declare function ModalFooter({ className, ...props }: ModalFooterProps): react_jsx_runtime.JSX.Element;
207
+
208
+ interface DropdownProps extends React.HTMLAttributes<HTMLDivElement> {
209
+ }
210
+ declare function Dropdown({ className, ...props }: DropdownProps): react_jsx_runtime.JSX.Element;
211
+ interface DropdownTriggerProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
212
+ }
213
+ declare function DropdownTrigger({ className, ...props }: DropdownTriggerProps): react_jsx_runtime.JSX.Element;
214
+ interface DropdownContentProps extends React.HTMLAttributes<HTMLDivElement> {
215
+ }
216
+ declare function DropdownContent({ className, ...props }: DropdownContentProps): react_jsx_runtime.JSX.Element | null;
217
+ interface DropdownItemProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
218
+ }
219
+ declare function DropdownItem({ className, ...props }: DropdownItemProps): react_jsx_runtime.JSX.Element;
220
+
221
+ interface SelectProps extends React.SelectHTMLAttributes<HTMLSelectElement> {
222
+ }
223
+ declare const Select: React.ForwardRefExoticComponent<SelectProps & React.RefAttributes<HTMLSelectElement>>;
224
+
225
+ interface ToastProps extends React.HTMLAttributes<HTMLDivElement> {
226
+ }
227
+ declare function Toast({ className, ...props }: ToastProps): react_jsx_runtime.JSX.Element;
228
+ interface ToastTitleProps extends React.HTMLAttributes<HTMLHeadingElement> {
229
+ }
230
+ declare function ToastTitle({ className, ...props }: ToastTitleProps): react_jsx_runtime.JSX.Element;
231
+ interface ToastDescriptionProps extends React.HTMLAttributes<HTMLParagraphElement> {
232
+ }
233
+ declare function ToastDescription({ className, ...props }: ToastDescriptionProps): react_jsx_runtime.JSX.Element;
234
+ interface ToastActionProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
235
+ }
236
+ declare function ToastAction({ className, ...props }: ToastActionProps): react_jsx_runtime.JSX.Element;
237
+
32
238
  declare function cn(...inputs: ClassValue[]): string;
33
239
 
34
- export { Button, type ButtonProps, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, Input, type InputProps, cn };
240
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertDescription, type AlertDescriptionProps, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, type ButtonProps, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, Checkbox, type CheckboxProps, Divider, type DividerProps, Dropdown, DropdownContent, type DropdownContentProps, DropdownItem, type DropdownItemProps, type DropdownProps, DropdownTrigger, type DropdownTriggerProps, Input, type InputProps, Modal, ModalDescription, type ModalDescriptionProps, ModalFooter, type ModalFooterProps, ModalHeader, type ModalHeaderProps, type ModalProps, ModalTitle, type ModalTitleProps, Progress, type ProgressProps, Select, type SelectProps, Skeleton, type SkeletonProps, Switch, type SwitchProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Tag, type TagProps, Textarea, type TextareaProps, Toast, ToastAction, type ToastActionProps, ToastDescription, type ToastDescriptionProps, type ToastProps, ToastTitle, type ToastTitleProps, Tooltip, type TooltipProps, cn };