@iclips/ui 0.0.12 → 0.0.13

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.cts CHANGED
@@ -1,5 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React$1 from 'react';
3
+ import React__default from 'react';
3
4
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
4
5
  import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
5
6
  import * as class_variance_authority_types from 'class-variance-authority/types';
@@ -9,6 +10,7 @@ import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
9
10
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
10
11
  import { DayPicker, DateRange } from 'react-day-picker';
11
12
  import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
13
+ import * as RechartsPrimitive from 'recharts';
12
14
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
13
15
  import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
14
16
  import { Command as Command$1 } from 'cmdk';
@@ -31,14 +33,13 @@ import * as ResizablePrimitive from 'react-resizable-panels';
31
33
  import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
32
34
  import * as SelectPrimitive from '@radix-ui/react-select';
33
35
  import * as SeparatorPrimitive from '@radix-ui/react-separator';
36
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
34
37
  import * as SliderPrimitive from '@radix-ui/react-slider';
35
38
  import { ToasterProps } from 'sonner';
36
39
  import * as SwitchPrimitive from '@radix-ui/react-switch';
37
40
  import * as TabsPrimitive from '@radix-ui/react-tabs';
38
41
  import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
39
42
  import * as TogglePrimitive from '@radix-ui/react-toggle';
40
- import * as TooltipPrimitive from '@radix-ui/react-tooltip';
41
- import * as RechartsPrimitive from 'recharts';
42
43
  import { ClassValue } from 'clsx';
43
44
 
44
45
  declare function Accordion({ ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Root>): react_jsx_runtime.JSX.Element;
@@ -48,8 +49,6 @@ declare function AccordionContent({ className, children, ...props }: React$1.Com
48
49
 
49
50
  declare function AlertDialog({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
50
51
  declare function AlertDialogTrigger({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
51
- declare function AlertDialogPortal({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
52
- declare const AlertDialogOverlay: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
53
52
  declare function AlertDialogContent({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Content>): react_jsx_runtime.JSX.Element;
54
53
  declare function AlertDialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
55
54
  declare function AlertDialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
@@ -136,7 +135,6 @@ declare function Card({ className, ...props }: React$1.ComponentProps<"div">): r
136
135
  declare function CardHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
137
136
  declare function CardTitle({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
138
137
  declare function CardDescription({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
139
- declare function CardAction({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
140
138
  declare function CardContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
141
139
  declare function CardFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
142
140
 
@@ -156,17 +154,131 @@ declare function CarouselItem({ className, ...props }: React$1.ComponentProps<"d
156
154
  declare function CarouselPrevious({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
157
155
  declare function CarouselNext({ className, variant, size, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
158
156
 
157
+ declare const THEMES: {
158
+ readonly light: "";
159
+ readonly dark: ".dark";
160
+ };
161
+ type ChartConfig = {
162
+ [k in string]: {
163
+ label?: React$1.ReactNode;
164
+ icon?: React$1.ComponentType;
165
+ } & ({
166
+ color?: string;
167
+ theme?: never;
168
+ } | {
169
+ color?: never;
170
+ theme: Record<keyof typeof THEMES, string>;
171
+ });
172
+ };
173
+ declare function ChartContainer({ id, className, children, config, ...props }: React$1.ComponentProps<"div"> & {
174
+ config: ChartConfig;
175
+ children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
176
+ }): react_jsx_runtime.JSX.Element;
177
+ declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
178
+ declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React$1.ComponentProps<typeof RechartsPrimitive.Tooltip> & React$1.ComponentProps<"div"> & {
179
+ hideLabel?: boolean;
180
+ hideIndicator?: boolean;
181
+ indicator?: "line" | "dot" | "dashed";
182
+ nameKey?: string;
183
+ labelKey?: string;
184
+ payload?: any[];
185
+ label?: string;
186
+ }): react_jsx_runtime.JSX.Element | null;
187
+ declare const ChartLegend: typeof RechartsPrimitive.Legend;
188
+ declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React$1.ComponentProps<"div"> & {
189
+ hideIcon?: boolean;
190
+ nameKey?: string;
191
+ payload?: any[];
192
+ verticalAlign?: "top" | "bottom";
193
+ }): react_jsx_runtime.JSX.Element | null;
194
+
159
195
  declare function Checkbox({ className, ...props }: React$1.ComponentProps<typeof CheckboxPrimitive.Root>): react_jsx_runtime.JSX.Element;
160
196
 
197
+ interface ColorPickerProps {
198
+ value?: string;
199
+ onChange?: (color: string) => void;
200
+ label?: string;
201
+ className?: string;
202
+ disabled?: boolean;
203
+ }
204
+ declare function ColorPicker({ value, onChange, label, className, disabled, }: ColorPickerProps): react_jsx_runtime.JSX.Element;
205
+
161
206
  declare function Collapsible({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.Root>): react_jsx_runtime.JSX.Element;
162
207
  declare function CollapsibleTrigger({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleTrigger>): react_jsx_runtime.JSX.Element;
163
208
  declare function CollapsibleContent({ ...props }: React.ComponentProps<typeof CollapsiblePrimitive.CollapsibleContent>): react_jsx_runtime.JSX.Element;
164
209
 
210
+ interface DateTimePickerProps {
211
+ date?: Date;
212
+ onChange?: (date: Date | undefined) => void;
213
+ label?: string;
214
+ placeholder?: string;
215
+ className?: string;
216
+ disabled?: boolean;
217
+ }
218
+ declare function DateTimePicker({ date, onChange, label, placeholder, className, disabled, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
219
+
220
+ interface DateRangePickerProps {
221
+ dateRange?: DateRange;
222
+ onChange?: (range: DateRange | undefined) => void;
223
+ label?: string;
224
+ placeholder?: string;
225
+ className?: string;
226
+ disabled?: boolean;
227
+ withTime?: boolean;
228
+ }
229
+ declare function DateRangePicker({ dateRange, onChange, label, placeholder, className, disabled, withTime, }: DateRangePickerProps): react_jsx_runtime.JSX.Element;
230
+
231
+ interface TimePickerProps {
232
+ date?: Date;
233
+ onChange?: (date: Date | undefined) => void;
234
+ label?: string;
235
+ className?: string;
236
+ disabled?: boolean;
237
+ }
238
+ declare function TimePicker({ date, onChange, label, className, disabled, }: TimePickerProps): react_jsx_runtime.JSX.Element;
239
+
240
+ interface KanbanCardTag {
241
+ id: string;
242
+ label: string;
243
+ color?: string;
244
+ }
245
+ interface KanbanCardAssignee {
246
+ id: string;
247
+ name: string;
248
+ avatar?: string;
249
+ initials?: string;
250
+ }
251
+ interface KanbanCardProps {
252
+ id: string;
253
+ title: string;
254
+ description?: string;
255
+ coverImage?: string;
256
+ thumbnailImage?: string;
257
+ tags?: KanbanCardTag[];
258
+ assignees?: KanbanCardAssignee[];
259
+ priority?: "low" | "medium" | "high" | "urgent";
260
+ dueDate?: Date;
261
+ comments?: number;
262
+ attachments?: number;
263
+ checklist?: {
264
+ completed: number;
265
+ total: number;
266
+ };
267
+ progress?: number;
268
+ status?: string;
269
+ variant?: "default" | "compact" | "detailed";
270
+ isDragging?: boolean;
271
+ onClick?: () => void;
272
+ onEdit?: () => void;
273
+ onDelete?: () => void;
274
+ onDuplicate?: () => void;
275
+ className?: string;
276
+ }
277
+ declare const KanbanCard: React$1.ForwardRefExoticComponent<KanbanCardProps & React$1.RefAttributes<HTMLDivElement>>;
278
+
165
279
  declare function Dialog({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
166
280
  declare function DialogTrigger({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
167
- declare function DialogPortal({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
168
281
  declare function DialogClose({ ...props }: React$1.ComponentProps<typeof DialogPrimitive.Close>): react_jsx_runtime.JSX.Element;
169
- declare const DialogOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
170
282
  declare function DialogContent({ className, children, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Content>): react_jsx_runtime.JSX.Element;
171
283
  declare function DialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
172
284
  declare function DialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
@@ -211,9 +323,7 @@ declare function ContextMenuShortcut({ className, ...props }: React$1.ComponentP
211
323
 
212
324
  declare function Drawer({ ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
213
325
  declare const DrawerTrigger: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
214
- declare function DrawerPortal({ ...props }: React$1.ComponentProps<typeof Drawer$1.Portal>): react_jsx_runtime.JSX.Element;
215
326
  declare const DrawerClose: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
216
- declare const DrawerOverlay: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
217
327
  declare const DrawerContent: React$1.ForwardRefExoticComponent<Omit<Omit<DialogPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
218
328
  declare function DrawerHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
219
329
  declare function DrawerFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
@@ -312,9 +422,7 @@ declare function NavigationMenuItem({ className, ...props }: React$1.ComponentPr
312
422
  declare const navigationMenuTriggerStyle: (props?: class_variance_authority_types.ClassProp | undefined) => string;
313
423
  declare function NavigationMenuTrigger({ className, children, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
314
424
  declare function NavigationMenuContent({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
315
- declare function NavigationMenuViewport({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Viewport>): react_jsx_runtime.JSX.Element;
316
425
  declare function NavigationMenuLink({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Link>): react_jsx_runtime.JSX.Element;
317
- declare function NavigationMenuIndicator({ className, ...props }: React$1.ComponentProps<typeof NavigationMenuPrimitive.Indicator>): react_jsx_runtime.JSX.Element;
318
426
 
319
427
  declare function Pagination({ className, ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
320
428
  declare function PaginationContent({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
@@ -330,7 +438,6 @@ declare function PaginationEllipsis({ className, ...props }: React$1.ComponentPr
330
438
  declare function Popover({ ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime.JSX.Element;
331
439
  declare const PopoverTrigger: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
332
440
  declare const PopoverContent: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
333
- declare const PopoverAnchor: React$1.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverAnchorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
334
441
 
335
442
  declare function Progress({ className, value, ...props }: React$1.ComponentProps<typeof ProgressPrimitive.Root>): react_jsx_runtime.JSX.Element;
336
443
 
@@ -356,8 +463,6 @@ declare function SelectContent({ className, children, position, ...props }: Reac
356
463
  declare function SelectLabel({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Label>): react_jsx_runtime.JSX.Element;
357
464
  declare function SelectItem({ className, children, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Item>): react_jsx_runtime.JSX.Element;
358
465
  declare function SelectSeparator({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.Separator>): react_jsx_runtime.JSX.Element;
359
- declare function SelectScrollUpButton({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.ScrollUpButton>): react_jsx_runtime.JSX.Element;
360
- declare function SelectScrollDownButton({ className, ...props }: React$1.ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime.JSX.Element;
361
466
 
362
467
  declare function Separator({ className, orientation, decorative, ...props }: React$1.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime.JSX.Element;
363
468
 
@@ -372,338 +477,11 @@ declare function SheetFooter({ className, ...props }: React$1.ComponentProps<"di
372
477
  declare function SheetTitle({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
373
478
  declare function SheetDescription({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
374
479
 
375
- declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
376
-
377
- declare function Slider({ className, defaultValue, value, min, max, ...props }: React$1.ComponentProps<typeof SliderPrimitive.Root>): react_jsx_runtime.JSX.Element;
378
-
379
- declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
380
-
381
- declare function Switch({ className, ...props }: React$1.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime.JSX.Element;
382
-
383
- declare function Table({ className, ...props }: React$1.ComponentProps<"table">): react_jsx_runtime.JSX.Element;
384
- declare function TableHeader({ className, ...props }: React$1.ComponentProps<"thead">): react_jsx_runtime.JSX.Element;
385
- declare function TableBody({ className, ...props }: React$1.ComponentProps<"tbody">): react_jsx_runtime.JSX.Element;
386
- declare function TableFooter({ className, ...props }: React$1.ComponentProps<"tfoot">): react_jsx_runtime.JSX.Element;
387
- declare const TableRow: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "ref"> & React$1.RefAttributes<HTMLTableRowElement>>;
388
- declare function TableHead({ className, ...props }: React$1.ComponentProps<"th">): react_jsx_runtime.JSX.Element;
389
- declare function TableCell({ className, ...props }: React$1.ComponentProps<"td">): react_jsx_runtime.JSX.Element;
390
- declare function TableCaption({ className, ...props }: React$1.ComponentProps<"caption">): react_jsx_runtime.JSX.Element;
391
-
392
- declare function Tabs({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime.JSX.Element;
393
- declare function TabsList({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime.JSX.Element;
394
- declare function TabsTrigger({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
395
- declare function TabsContent({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime.JSX.Element;
396
-
397
- declare function Textarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
398
-
399
- declare const toggleVariants: (props?: ({
400
- variant?: "default" | "outline" | null | undefined;
401
- size?: "default" | "sm" | "lg" | null | undefined;
402
- } & class_variance_authority_types.ClassProp) | undefined) => string;
403
- declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
404
-
405
- declare function ToggleGroup({ className, variant, size, children, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
406
- declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
407
-
408
480
  declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
409
481
  declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
410
482
  declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
411
483
  declare function TooltipContent({ className, sideOffset, children, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
412
484
 
413
- interface BrandLogoProps extends React$1.HTMLAttributes<HTMLDivElement> {
414
- variant?: "symbol" | "full";
415
- mode?: "positive" | "negative";
416
- }
417
- declare function BrandLogo({ variant, mode, className, ...props }: BrandLogoProps): react_jsx_runtime.JSX.Element;
418
-
419
- declare const THEMES: {
420
- readonly light: "";
421
- readonly dark: ".dark";
422
- };
423
- type ChartConfig = {
424
- [k in string]: {
425
- label?: React$1.ReactNode;
426
- icon?: React$1.ComponentType;
427
- } & ({
428
- color?: string;
429
- theme?: never;
430
- } | {
431
- color?: never;
432
- theme: Record<keyof typeof THEMES, string>;
433
- });
434
- };
435
- declare function ChartContainer({ id, className, children, config, ...props }: React$1.ComponentProps<"div"> & {
436
- config: ChartConfig;
437
- children: React$1.ComponentProps<typeof RechartsPrimitive.ResponsiveContainer>["children"];
438
- }): react_jsx_runtime.JSX.Element;
439
- declare const ChartStyle: ({ id, config }: {
440
- id: string;
441
- config: ChartConfig;
442
- }) => react_jsx_runtime.JSX.Element | null;
443
- declare const ChartTooltip: typeof RechartsPrimitive.Tooltip;
444
- declare function ChartTooltipContent({ active, payload, className, indicator, hideLabel, hideIndicator, label, labelFormatter, labelClassName, formatter, color, nameKey, labelKey, }: React$1.ComponentProps<typeof RechartsPrimitive.Tooltip> & React$1.ComponentProps<"div"> & {
445
- hideLabel?: boolean;
446
- hideIndicator?: boolean;
447
- indicator?: "line" | "dot" | "dashed";
448
- nameKey?: string;
449
- labelKey?: string;
450
- payload?: any[];
451
- label?: string;
452
- }): react_jsx_runtime.JSX.Element | null;
453
- declare const ChartLegend: typeof RechartsPrimitive.Legend;
454
- declare function ChartLegendContent({ className, hideIcon, payload, verticalAlign, nameKey, }: React$1.ComponentProps<"div"> & {
455
- hideIcon?: boolean;
456
- nameKey?: string;
457
- payload?: any[];
458
- verticalAlign?: "top" | "bottom";
459
- }): react_jsx_runtime.JSX.Element | null;
460
-
461
- interface ColorPickerProps {
462
- value?: string;
463
- onChange?: (color: string) => void;
464
- label?: string;
465
- className?: string;
466
- disabled?: boolean;
467
- }
468
- declare function ColorPicker({ value, onChange, label, className, disabled, }: ColorPickerProps): react_jsx_runtime.JSX.Element;
469
- declare function ColorPickerInline({ value, onChange, className, disabled, }: Omit<ColorPickerProps, "label">): react_jsx_runtime.JSX.Element;
470
-
471
- type UserRole = 'internal' | 'client' | 'freelancer';
472
- interface CommentUser {
473
- id: string;
474
- name: string;
475
- avatar?: string;
476
- role: UserRole;
477
- }
478
- interface CommentReaction {
479
- emoji: string;
480
- users: string[];
481
- }
482
- interface CommentAttachment {
483
- id: string;
484
- url: string;
485
- name: string;
486
- type: 'image' | 'file';
487
- }
488
- interface Comment {
489
- id: string;
490
- content: string;
491
- user: CommentUser;
492
- createdAt: Date;
493
- isRevisionRequest?: boolean;
494
- attachments?: CommentAttachment[];
495
- reactions?: CommentReaction[];
496
- }
497
- interface CommentSystemProps {
498
- comments: Comment[];
499
- currentUser: CommentUser;
500
- users?: CommentUser[];
501
- onAddComment: (comment: Omit<Comment, "id" | "createdAt">) => void;
502
- onDeleteComment?: (id: string) => void;
503
- onReact?: (commentId: string, emoji: string) => void;
504
- className?: string;
505
- }
506
- declare const CommentSystem: ({ comments, currentUser, users, onAddComment, onDeleteComment, onReact, className }: CommentSystemProps) => react_jsx_runtime.JSX.Element;
507
-
508
- interface DateRangePickerProps {
509
- dateRange?: DateRange;
510
- onChange?: (range: DateRange | undefined) => void;
511
- label?: string;
512
- placeholder?: string;
513
- className?: string;
514
- disabled?: boolean;
515
- withTime?: boolean;
516
- }
517
- declare function DateRangePicker({ dateRange, onChange, label, placeholder, className, disabled, withTime, }: DateRangePickerProps): react_jsx_runtime.JSX.Element;
518
-
519
- interface DateTimePickerProps {
520
- date?: Date;
521
- onChange?: (date: Date | undefined) => void;
522
- label?: string;
523
- placeholder?: string;
524
- className?: string;
525
- disabled?: boolean;
526
- }
527
- declare function DateTimePicker({ date, onChange, label, placeholder, className, disabled, }: DateTimePickerProps): react_jsx_runtime.JSX.Element;
528
-
529
- type EditorVariant = 'simple' | 'full';
530
- interface DocumentEditorProps {
531
- content?: string;
532
- onChange?: (content: string) => void;
533
- placeholder?: string;
534
- variant?: EditorVariant;
535
- className?: string;
536
- readOnly?: boolean;
537
- label?: string;
538
- }
539
- declare function DocumentEditor({ content, onChange, placeholder, variant, className, readOnly, label }: DocumentEditorProps): react_jsx_runtime.JSX.Element | null;
540
-
541
- type SocialChannel = "instagram" | "linkedin" | "facebook" | "twitter" | "youtube" | "blog" | "other";
542
- type TaskStatus = "idea" | "planned" | "in-progress" | "approval" | "scheduled" | "published";
543
- type CalendarMode = "editorial" | "execution";
544
- interface CalendarTask {
545
- id: string;
546
- title: string;
547
- date?: Date | string;
548
- endDate?: Date | string;
549
- channel?: SocialChannel;
550
- status: TaskStatus;
551
- imageUrl?: string;
552
- description?: string;
553
- assignees?: {
554
- name: string;
555
- avatar?: string;
556
- }[];
557
- color?: string;
558
- }
559
- interface BaseCalendarProps {
560
- tasks: CalendarTask[];
561
- onTaskUpdate: (updatedTask: CalendarTask) => void;
562
- onTaskCreate?: (newTask: Partial<CalendarTask>) => void;
563
- className?: string;
564
- }
565
- declare function EditorialCalendar(props: BaseCalendarProps): react_jsx_runtime.JSX.Element;
566
- declare function TaskCalendar(props: BaseCalendarProps): react_jsx_runtime.JSX.Element;
567
-
568
- interface ActiveFilter {
569
- id: string;
570
- label: string;
571
- value?: string;
572
- onRemove?: () => void;
573
- }
574
- interface FilterBarProps {
575
- activeFilters?: ActiveFilter[];
576
- onClearAll?: () => void;
577
- onOpenFilters?: () => void;
578
- className?: string;
579
- children?: React$1.ReactNode;
580
- }
581
- declare function FilterBar({ activeFilters, onClearAll, onOpenFilters, className, children, }: FilterBarProps): react_jsx_runtime.JSX.Element;
582
-
583
- interface FilterCondition {
584
- id: string;
585
- field: string;
586
- operator: string;
587
- value: string | string[];
588
- }
589
- interface FilterField {
590
- value: string;
591
- label: string;
592
- type?: "text" | "number" | "select" | "date";
593
- options?: {
594
- value: string;
595
- label: string;
596
- }[];
597
- multiSelect?: boolean;
598
- }
599
- interface FilterBuilderProps {
600
- conditions: FilterCondition[];
601
- onConditionsChange: (conditions: FilterCondition[]) => void;
602
- fields: FilterField[];
603
- className?: string;
604
- }
605
- declare function FilterBuilder({ conditions, onConditionsChange, fields, className, }: FilterBuilderProps): react_jsx_runtime.JSX.Element;
606
-
607
- interface FilterChipProps {
608
- label: string;
609
- value?: string;
610
- onRemove?: () => void;
611
- className?: string;
612
- }
613
- declare function FilterChip({ label, value, onRemove, className }: FilterChipProps): react_jsx_runtime.JSX.Element;
614
-
615
- type GanttTaskStatus = "not-started" | "in-progress" | "on-hold" | "delayed" | "completed" | "cancelled";
616
- interface GanttTask {
617
- id: string;
618
- name: string;
619
- startDate: Date;
620
- endDate: Date;
621
- progress: number;
622
- status: GanttTaskStatus;
623
- projectId?: string;
624
- assignee?: {
625
- name: string;
626
- initials?: string;
627
- avatar?: string;
628
- };
629
- description?: string;
630
- milestone?: boolean;
631
- }
632
- interface GanttProject {
633
- id: string;
634
- name: string;
635
- color?: string;
636
- }
637
- interface GanttChartProps {
638
- tasks: GanttTask[];
639
- projects?: GanttProject[];
640
- onTaskClick?: (task: GanttTask) => void;
641
- onTaskEdit?: (task: GanttTask) => void;
642
- rowHeight?: number;
643
- columnWidth?: number;
644
- showWeekends?: boolean;
645
- groupBy?: "projects" | "assignees";
646
- }
647
- declare const GanttChart: React$1.ForwardRefExoticComponent<GanttChartProps & React$1.RefAttributes<HTMLDivElement>>;
648
- declare const GanttLegend: React$1.ForwardRefExoticComponent<{
649
- className?: string;
650
- } & React$1.RefAttributes<HTMLDivElement>>;
651
-
652
- interface KanbanCardTag {
653
- id: string;
654
- label: string;
655
- color?: string;
656
- }
657
- interface KanbanCardAssignee {
658
- id: string;
659
- name: string;
660
- avatar?: string;
661
- initials?: string;
662
- }
663
- interface KanbanCardProps {
664
- id: string;
665
- title: string;
666
- description?: string;
667
- coverImage?: string;
668
- thumbnailImage?: string;
669
- tags?: KanbanCardTag[];
670
- assignees?: KanbanCardAssignee[];
671
- priority?: "low" | "medium" | "high" | "urgent";
672
- dueDate?: Date;
673
- comments?: number;
674
- attachments?: number;
675
- checklist?: {
676
- completed: number;
677
- total: number;
678
- };
679
- progress?: number;
680
- status?: string;
681
- variant?: "default" | "compact" | "detailed";
682
- isDragging?: boolean;
683
- onClick?: () => void;
684
- onEdit?: () => void;
685
- onDelete?: () => void;
686
- onDuplicate?: () => void;
687
- className?: string;
688
- }
689
- declare const KanbanCard: React$1.ForwardRefExoticComponent<KanbanCardProps & React$1.RefAttributes<HTMLDivElement>>;
690
-
691
- interface SavedFilter {
692
- id: string;
693
- name: string;
694
- description?: string;
695
- isFavorite?: boolean;
696
- filterCount?: number;
697
- }
698
- interface SavedFiltersProps {
699
- filters?: SavedFilter[];
700
- onSelectFilter?: (filterId: string) => void;
701
- onToggleFavorite?: (filterId: string) => void;
702
- onDeleteFilter?: (filterId: string) => void;
703
- className?: string;
704
- }
705
- declare function SavedFilters({ filters, onSelectFilter, onToggleFavorite, onDeleteFilter, className, }: SavedFiltersProps): react_jsx_runtime.JSX.Element;
706
-
707
485
  type SidebarContextProps = {
708
486
  state: "expanded" | "collapsed";
709
487
  open: boolean;
@@ -727,7 +505,6 @@ declare function Sidebar({ side, variant, collapsible, className, children, ...p
727
505
  declare function SidebarTrigger({ className, onClick, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
728
506
  declare function SidebarRail({ className, ...props }: React$1.ComponentProps<"button">): react_jsx_runtime.JSX.Element;
729
507
  declare function SidebarInset({ className, ...props }: React$1.ComponentProps<"main">): react_jsx_runtime.JSX.Element;
730
- declare function SidebarInput({ className, ...props }: React$1.ComponentProps<typeof Input>): react_jsx_runtime.JSX.Element;
731
508
  declare function SidebarHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
732
509
  declare function SidebarFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
733
510
  declare function SidebarSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
@@ -767,52 +544,27 @@ declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...p
767
544
  isActive?: boolean;
768
545
  }): react_jsx_runtime.JSX.Element;
769
546
 
770
- interface TaskEditDialogProps {
771
- task: GanttTask | null;
772
- open: boolean;
773
- onOpenChange: (open: boolean) => void;
774
- onSave: (task: GanttTask) => void;
775
- availableTasks?: GanttTask[];
776
- availableAssignees?: {
777
- name: string;
778
- initials?: string;
779
- }[];
780
- }
781
- declare function TaskEditDialog({ task, open, onOpenChange, onSave, availableTasks, availableAssignees, }: TaskEditDialogProps): react_jsx_runtime.JSX.Element | null;
547
+ declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
782
548
 
783
- interface TimePickerProps {
784
- date?: Date;
785
- onChange?: (date: Date | undefined) => void;
786
- label?: string;
787
- className?: string;
788
- disabled?: boolean;
789
- }
790
- declare function TimePicker({ date, onChange, label, className, disabled, }: TimePickerProps): react_jsx_runtime.JSX.Element;
549
+ declare function Slider({ className, defaultValue, value, min, max, ...props }: React$1.ComponentProps<typeof SliderPrimitive.Root>): react_jsx_runtime.JSX.Element;
791
550
 
792
- type TimelineActionType = 'create' | 'update' | 'status_change' | 'comment' | 'upload' | 'assignment';
793
- interface TimelineUser {
794
- id: string;
795
- name: string;
796
- avatar?: string;
797
- }
798
- interface TimelineEvent {
799
- id: string;
800
- user: TimelineUser;
801
- action: TimelineActionType;
802
- title: string;
803
- timestamp: Date;
804
- metadata?: {
805
- before?: string | null;
806
- after?: string | null;
807
- details?: React$1.ReactNode;
808
- fileName?: string;
809
- };
810
- }
811
- interface TimelineProps {
812
- events: TimelineEvent[];
813
- className?: string;
814
- }
815
- declare const Timeline: ({ events, className }: TimelineProps) => react_jsx_runtime.JSX.Element;
551
+ declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
552
+
553
+ declare function Switch({ className, ...props }: React$1.ComponentProps<typeof SwitchPrimitive.Root>): react_jsx_runtime.JSX.Element;
554
+
555
+ declare function Table({ className, ...props }: React$1.ComponentProps<"table">): react_jsx_runtime.JSX.Element;
556
+ declare function TableHeader({ className, ...props }: React$1.ComponentProps<"thead">): react_jsx_runtime.JSX.Element;
557
+ declare function TableBody({ className, ...props }: React$1.ComponentProps<"tbody">): react_jsx_runtime.JSX.Element;
558
+ declare function TableFooter({ className, ...props }: React$1.ComponentProps<"tfoot">): react_jsx_runtime.JSX.Element;
559
+ declare const TableRow: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLTableRowElement>, HTMLTableRowElement>, "ref"> & React$1.RefAttributes<HTMLTableRowElement>>;
560
+ declare function TableHead({ className, ...props }: React$1.ComponentProps<"th">): react_jsx_runtime.JSX.Element;
561
+ declare function TableCell({ className, ...props }: React$1.ComponentProps<"td">): react_jsx_runtime.JSX.Element;
562
+ declare function TableCaption({ className, ...props }: React$1.ComponentProps<"caption">): react_jsx_runtime.JSX.Element;
563
+
564
+ declare function Tabs({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Root>): react_jsx_runtime.JSX.Element;
565
+ declare function TabsList({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.List>): react_jsx_runtime.JSX.Element;
566
+ declare function TabsTrigger({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
567
+ declare function TabsContent({ className, ...props }: React$1.ComponentProps<typeof TabsPrimitive.Content>): react_jsx_runtime.JSX.Element;
816
568
 
817
569
  interface UnderlineTabsProps {
818
570
  defaultValue?: string;
@@ -841,8 +593,21 @@ interface UnderlineTabsContentProps {
841
593
  }
842
594
  declare function UnderlineTabsContent({ value: contentValue, children, className, }: UnderlineTabsContentProps): react_jsx_runtime.JSX.Element | null;
843
595
 
596
+ declare function Textarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
597
+
598
+ declare const toggleVariants: (props?: ({
599
+ variant?: "default" | "outline" | null | undefined;
600
+ size?: "default" | "sm" | "lg" | null | undefined;
601
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
602
+ declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
603
+
604
+ declare function ToggleGroup({ className, variant, size, children, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
605
+ declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
606
+
844
607
  declare function cn(...inputs: ClassValue[]): string;
845
608
 
846
609
  declare function useIsMobile(): boolean;
847
610
 
848
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActiveFilter, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppLayout, type AppLayoutProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, BrandLogo, type BrandLogoProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, type CalendarMode, type CalendarTask, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorPicker, ColorPickerInline, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type Comment, type CommentAttachment, type CommentReaction, CommentSystem, type CommentUser, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DateRangePicker, DateTimePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DocumentEditor, type DocumentEditorProps, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, type EditorVariant, EditorialCalendar, FilterBar, type FilterBarProps, FilterBuilder, type FilterBuilderProps, FilterChip, type FilterChipProps, type FilterCondition, type FilterField, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GanttChart, GanttLegend, type GanttProject, type GanttTask, type GanttTaskStatus, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, KanbanCard, type KanbanCardAssignee, type KanbanCardProps, type KanbanCardTag, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type PrimaryNavItem, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, type SavedFilter, SavedFilters, type SavedFiltersProps, ScrollArea, ScrollBar, type SecondaryNavItem, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, type SocialChannel, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TaskCalendar, TaskEditDialog, type TaskEditDialogProps, type TaskStatus, Textarea, TimePicker, Timeline, type TimelineActionType, type TimelineEvent, type TimelineUser, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UnderlineTabs, UnderlineTabsContent, UnderlineTabsList, UnderlineTabsTrigger, type UserRole, badgeVariants, buttonVariants, cn, navigationMenuTriggerStyle, toggleVariants, useFormField, useIsMobile, useSidebar };
611
+ declare function ImageWithFallback(props: React__default.ImgHTMLAttributes<HTMLImageElement>): react_jsx_runtime.JSX.Element;
612
+
613
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppLayout, type AppLayoutProps, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorPicker, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DateRangePicker, DateTimePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, ImageWithFallback, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, KanbanCard, type KanbanCardAssignee, type KanbanCardProps, type KanbanCardTag, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverTrigger, type PrimaryNavItem, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, type SecondaryNavItem, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Toaster as Sonner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, TimePicker, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UnderlineTabs, UnderlineTabsContent, UnderlineTabsList, UnderlineTabsTrigger, badgeVariants, buttonVariants, cn, navigationMenuTriggerStyle, toggleVariants, useFormField, useIsMobile, useSidebar };