@hai3/uikit 0.1.0-alpha.9 → 0.2.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -1,12 +1,11 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as class_variance_authority_types from 'class-variance-authority/types';
3
3
  import * as React$1 from 'react';
4
- import React__default from 'react';
4
+ import React__default, { ComponentType, ButtonHTMLAttributes, ReactNode } from 'react';
5
5
  import { VariantProps } from 'class-variance-authority';
6
6
  import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
7
7
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
8
- import { ButtonVariant, ButtonSize, TextDirection, IconButtonSize, Theme } from '@hai3/uikit-contracts';
9
- export { ButtonSize, ButtonVariant, IconButtonSize, Theme } from '@hai3/uikit-contracts';
8
+ import * as SeparatorPrimitive from '@radix-ui/react-separator';
10
9
  import { DayPicker, DayButton } from 'react-day-picker';
11
10
  import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
12
11
  import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
@@ -20,8 +19,7 @@ import { ColumnDef, Table as Table$1, Column } from '@tanstack/react-table';
20
19
  export { Column, ColumnDef, ColumnFiltersState, Table as ReactTable, Row, SortingState, VisibilityState, flexRender, getCoreRowModel, getFilteredRowModel, getPaginationRowModel, getSortedRowModel, useReactTable } from '@tanstack/react-table';
21
20
  import * as SliderPrimitive from '@radix-ui/react-slider';
22
21
  import * as ProgressPrimitive from '@radix-ui/react-progress';
23
- import { ToasterProps } from 'sonner';
24
- export { toast } from 'sonner';
22
+ import { ToasterProps, ExternalToast } from 'sonner';
25
23
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
26
24
  import * as PopoverPrimitive from '@radix-ui/react-popover';
27
25
  import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
@@ -33,13 +31,15 @@ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
33
31
  import { Drawer as Drawer$1 } from 'vaul';
34
32
  import * as ResizablePrimitive from 'react-resizable-panels';
35
33
  import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
36
- import * as SeparatorPrimitive from '@radix-ui/react-separator';
37
34
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
38
35
  import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
39
36
  import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
40
37
  import * as SelectPrimitive from '@radix-ui/react-select';
41
38
  import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
42
39
  import * as ContextMenuPrimitive from '@radix-ui/react-context-menu';
40
+ import { Command as Command$1 } from 'cmdk';
41
+ import * as TogglePrimitive from '@radix-ui/react-toggle';
42
+ import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
43
43
  export { Area, AreaChart, Bar, BarChart, Brush, CartesianGrid, Cell, Label as ChartLabel, Legend as ChartLegend, Tooltip as ChartTooltip, ComposedChart, Cross, Curve, Customized, Dot, ErrorBar, Funnel, FunnelChart, LabelList, LegendProps, Line, LineChart, Pie, PieChart, PolarAngleAxis, PolarGrid, PolarRadiusAxis, Polygon, Radar, RadarChart, RadialBar, RadialBarChart, Rectangle, ReferenceArea, ReferenceDot, ReferenceLine, ResponsiveContainer, Sankey, Scatter, ScatterChart, Sector, Text, TooltipProps, Treemap, XAxis, YAxis, ZAxis } from 'recharts';
44
44
 
45
45
  declare const alertVariants: (props?: ({
@@ -65,6 +65,397 @@ declare const Avatar: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.Ava
65
65
  declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
66
66
  declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
67
67
 
68
+ /**
69
+ * @hai3/uikit - Type Definitions
70
+ *
71
+ * All UI Kit component types are defined here.
72
+ * This replaces @hai3/uikit-contracts for type imports.
73
+ */
74
+
75
+ /**
76
+ * Text Direction Type
77
+ * Compatible with @hai3/i18n TextDirection enum values.
78
+ */
79
+ type TextDirection = 'ltr' | 'rtl';
80
+ /**
81
+ * Theme Contract
82
+ * Defines the structure of themes for UI Kit styling.
83
+ */
84
+ interface Theme {
85
+ name: string;
86
+ colors: {
87
+ primary: string;
88
+ secondary: string;
89
+ accent: string;
90
+ background: string;
91
+ foreground: string;
92
+ muted: string;
93
+ border: string;
94
+ error: string;
95
+ warning: string;
96
+ success: string;
97
+ info: string;
98
+ mainMenu: {
99
+ DEFAULT: string;
100
+ foreground: string;
101
+ hover: string;
102
+ selected: string;
103
+ border: string;
104
+ };
105
+ chat: {
106
+ leftMenu: {
107
+ DEFAULT: string;
108
+ foreground: string;
109
+ hover: string;
110
+ selected: string;
111
+ border: string;
112
+ };
113
+ message: {
114
+ user: {
115
+ background: string;
116
+ foreground: string;
117
+ };
118
+ assistant: {
119
+ background: string;
120
+ foreground: string;
121
+ };
122
+ };
123
+ input: {
124
+ background: string;
125
+ foreground: string;
126
+ border: string;
127
+ };
128
+ codeBlock: {
129
+ background: string;
130
+ foreground: string;
131
+ border: string;
132
+ headerBackground: string;
133
+ };
134
+ };
135
+ inScreenMenu: {
136
+ DEFAULT: string;
137
+ foreground: string;
138
+ hover: string;
139
+ selected: string;
140
+ border: string;
141
+ };
142
+ /** Chart colors for data visualization (OKLCH format recommended) */
143
+ chart: {
144
+ 1: string;
145
+ 2: string;
146
+ 3: string;
147
+ 4: string;
148
+ 5: string;
149
+ };
150
+ };
151
+ spacing: {
152
+ xs: string;
153
+ sm: string;
154
+ md: string;
155
+ lg: string;
156
+ xl: string;
157
+ '2xl': string;
158
+ '3xl': string;
159
+ };
160
+ typography: {
161
+ fontFamily: {
162
+ sans: string[];
163
+ mono: string[];
164
+ };
165
+ fontSize: {
166
+ xs: string;
167
+ sm: string;
168
+ base: string;
169
+ lg: string;
170
+ xl: string;
171
+ '2xl': string;
172
+ '3xl': string;
173
+ '4xl': string;
174
+ '5xl': string;
175
+ };
176
+ fontWeight: {
177
+ normal: string;
178
+ medium: string;
179
+ semibold: string;
180
+ bold: string;
181
+ };
182
+ lineHeight: {
183
+ tight: string;
184
+ normal: string;
185
+ relaxed: string;
186
+ };
187
+ };
188
+ borderRadius: {
189
+ none: string;
190
+ sm: string;
191
+ md: string;
192
+ lg: string;
193
+ xl: string;
194
+ full: string;
195
+ };
196
+ shadows: {
197
+ sm: string;
198
+ md: string;
199
+ lg: string;
200
+ xl: string;
201
+ };
202
+ transitions: {
203
+ fast: string;
204
+ base: string;
205
+ slow: string;
206
+ slower: string;
207
+ };
208
+ }
209
+ /**
210
+ * Button Variant Enum
211
+ */
212
+ declare enum ButtonVariant {
213
+ Default = "default",
214
+ Destructive = "destructive",
215
+ Outline = "outline",
216
+ Secondary = "secondary",
217
+ Ghost = "ghost",
218
+ Link = "link"
219
+ }
220
+ /**
221
+ * Button Size Enum
222
+ */
223
+ declare enum ButtonSize {
224
+ Default = "default",
225
+ Sm = "sm",
226
+ Lg = "lg",
227
+ Icon = "icon"
228
+ }
229
+ /**
230
+ * Button Props Interface
231
+ */
232
+ interface ButtonProps$1 extends ButtonHTMLAttributes<HTMLButtonElement> {
233
+ variant?: ButtonVariant;
234
+ size?: ButtonSize;
235
+ asChild?: boolean;
236
+ }
237
+ type ButtonComponent = ComponentType<ButtonProps$1>;
238
+ /**
239
+ * IconButton Size Enum
240
+ */
241
+ declare enum IconButtonSize {
242
+ Default = "default",
243
+ Small = "sm",
244
+ Large = "lg"
245
+ }
246
+ /**
247
+ * IconButton Props Interface
248
+ */
249
+ interface IconButtonProps$1 {
250
+ icon: ReactNode;
251
+ onClick?: () => void;
252
+ variant?: ButtonVariant;
253
+ size?: IconButtonSize;
254
+ 'aria-label': string;
255
+ className?: string;
256
+ }
257
+ type IconButtonComponent = ComponentType<IconButtonProps$1>;
258
+ /**
259
+ * DropdownButton Props Interface
260
+ * Button with integrated chevron for dropdown triggers
261
+ */
262
+ interface DropdownButtonProps$1 extends ButtonHTMLAttributes<HTMLButtonElement> {
263
+ children: ReactNode;
264
+ variant?: ButtonVariant;
265
+ className?: string;
266
+ }
267
+ type DropdownButtonComponent = ComponentType<DropdownButtonProps$1>;
268
+ interface SwitchProps {
269
+ checked: boolean;
270
+ onCheckedChange: (checked: boolean) => void;
271
+ disabled?: boolean;
272
+ className?: string;
273
+ }
274
+ type SwitchComponent = ComponentType<SwitchProps>;
275
+ interface SkeletonProps$1 {
276
+ className?: string;
277
+ /**
278
+ * If true, skeleton inherits text color instead of using bg-muted
279
+ * Useful for buttons, menu items, and colored text
280
+ */
281
+ inheritColor?: boolean;
282
+ }
283
+ type SkeletonComponent = ComponentType<SkeletonProps$1>;
284
+ interface SpinnerProps$1 {
285
+ className?: string;
286
+ icon?: ComponentType<{
287
+ className?: string;
288
+ }>;
289
+ size?: string;
290
+ }
291
+ type SpinnerComponent = ComponentType<SpinnerProps$1>;
292
+ interface SidebarProps {
293
+ collapsed?: boolean;
294
+ className?: string;
295
+ children?: ReactNode;
296
+ }
297
+ interface SidebarContentProps {
298
+ className?: string;
299
+ children?: ReactNode;
300
+ }
301
+ interface SidebarHeaderProps$1 {
302
+ logo?: ReactNode;
303
+ logoText?: ReactNode;
304
+ collapsed?: boolean;
305
+ onClick?: () => void;
306
+ className?: string;
307
+ }
308
+ interface SidebarMenuProps {
309
+ className?: string;
310
+ children?: ReactNode;
311
+ }
312
+ interface SidebarMenuItemProps {
313
+ className?: string;
314
+ children?: ReactNode;
315
+ }
316
+ interface SidebarMenuButtonProps {
317
+ onClick?: () => void;
318
+ tooltip?: string;
319
+ isActive?: boolean;
320
+ variant?: string;
321
+ size?: string;
322
+ asChild?: boolean;
323
+ className?: string;
324
+ children?: ReactNode;
325
+ }
326
+ interface SidebarMenuIconProps {
327
+ className?: string;
328
+ children?: ReactNode;
329
+ }
330
+ interface SidebarMenuLabelProps {
331
+ className?: string;
332
+ children?: ReactNode;
333
+ }
334
+ type SidebarComponent = ComponentType<SidebarProps>;
335
+ type SidebarContentComponent = ComponentType<SidebarContentProps>;
336
+ type SidebarHeaderComponent = ComponentType<SidebarHeaderProps$1>;
337
+ type SidebarMenuComponent = ComponentType<SidebarMenuProps>;
338
+ type SidebarMenuItemComponent = ComponentType<SidebarMenuItemProps>;
339
+ type SidebarMenuButtonComponent = ComponentType<SidebarMenuButtonProps>;
340
+ type SidebarMenuIconComponent = ComponentType<SidebarMenuIconProps>;
341
+ type SidebarMenuLabelComponent = ComponentType<SidebarMenuLabelProps>;
342
+ interface HeaderProps$1 {
343
+ className?: string;
344
+ children?: ReactNode;
345
+ }
346
+ type HeaderComponent = ComponentType<HeaderProps$1>;
347
+ interface UserInfoProps$1 {
348
+ displayName?: string;
349
+ email?: string;
350
+ avatarUrl?: string;
351
+ loading?: boolean;
352
+ }
353
+ type UserInfoComponent = ComponentType<UserInfoProps$1>;
354
+ interface DropdownMenuProps {
355
+ children?: ReactNode;
356
+ dir?: TextDirection;
357
+ }
358
+ interface DropdownMenuTriggerProps {
359
+ asChild?: boolean;
360
+ children?: ReactNode;
361
+ }
362
+ interface DropdownMenuContentProps {
363
+ align?: 'start' | 'center' | 'end';
364
+ children?: ReactNode;
365
+ }
366
+ interface DropdownMenuItemProps {
367
+ onClick?: () => void;
368
+ children?: ReactNode;
369
+ }
370
+ interface DropdownMenuSubProps {
371
+ children?: ReactNode;
372
+ }
373
+ interface DropdownMenuSubTriggerProps {
374
+ disabled?: boolean;
375
+ children?: ReactNode;
376
+ }
377
+ interface DropdownMenuSubContentProps {
378
+ children?: ReactNode;
379
+ }
380
+ type DropdownMenuComponent = ComponentType<DropdownMenuProps>;
381
+ type DropdownMenuTriggerComponent = ComponentType<DropdownMenuTriggerProps>;
382
+ type DropdownMenuContentComponent = ComponentType<DropdownMenuContentProps>;
383
+ type DropdownMenuItemComponent = ComponentType<DropdownMenuItemProps>;
384
+ type DropdownMenuSubComponent = ComponentType<DropdownMenuSubProps>;
385
+ type DropdownMenuSubTriggerComponent = ComponentType<DropdownMenuSubTriggerProps>;
386
+ type DropdownMenuSubContentComponent = ComponentType<DropdownMenuSubContentProps>;
387
+ /**
388
+ * UI Kit Component Enum
389
+ * Defines components that can be registered with the UI Kit registry.
390
+ */
391
+ declare enum UiKitComponent {
392
+ Button = "Button",
393
+ IconButton = "IconButton",
394
+ DropdownButton = "DropdownButton",
395
+ Switch = "Switch",
396
+ Skeleton = "Skeleton",
397
+ Spinner = "Spinner",
398
+ Header = "Header",
399
+ Sidebar = "Sidebar",
400
+ SidebarContent = "SidebarContent",
401
+ SidebarHeader = "SidebarHeader",
402
+ SidebarMenu = "SidebarMenu",
403
+ SidebarMenuItem = "SidebarMenuItem",
404
+ SidebarMenuButton = "SidebarMenuButton",
405
+ SidebarMenuIcon = "SidebarMenuIcon",
406
+ SidebarMenuLabel = "SidebarMenuLabel",
407
+ UserInfo = "UserInfo",
408
+ DropdownMenu = "DropdownMenu",
409
+ DropdownMenuTrigger = "DropdownMenuTrigger",
410
+ DropdownMenuContent = "DropdownMenuContent",
411
+ DropdownMenuItem = "DropdownMenuItem",
412
+ DropdownMenuSub = "DropdownMenuSub",
413
+ DropdownMenuSubTrigger = "DropdownMenuSubTrigger",
414
+ DropdownMenuSubContent = "DropdownMenuSubContent"
415
+ }
416
+ /**
417
+ * UI Kit Icon Enum
418
+ * Well-known icons that UI Kit expects from implementations.
419
+ */
420
+ declare enum UiKitIcon {
421
+ Close = "close",
422
+ AppLogo = "app-logo",
423
+ AppLogoText = "app-logo-text"
424
+ }
425
+ /**
426
+ * UI Kit Component Map
427
+ * Maps component enum values to their type implementations.
428
+ */
429
+ interface UiKitComponentMap {
430
+ [UiKitComponent.Button]: ButtonComponent;
431
+ [UiKitComponent.IconButton]: IconButtonComponent;
432
+ [UiKitComponent.DropdownButton]: DropdownButtonComponent;
433
+ [UiKitComponent.Switch]: SwitchComponent;
434
+ [UiKitComponent.Skeleton]: SkeletonComponent;
435
+ [UiKitComponent.Spinner]: SpinnerComponent;
436
+ [UiKitComponent.Header]: HeaderComponent;
437
+ [UiKitComponent.Sidebar]: SidebarComponent;
438
+ [UiKitComponent.SidebarContent]: SidebarContentComponent;
439
+ [UiKitComponent.SidebarHeader]: SidebarHeaderComponent;
440
+ [UiKitComponent.SidebarMenu]: SidebarMenuComponent;
441
+ [UiKitComponent.SidebarMenuItem]: SidebarMenuItemComponent;
442
+ [UiKitComponent.SidebarMenuButton]: SidebarMenuButtonComponent;
443
+ [UiKitComponent.SidebarMenuIcon]: SidebarMenuIconComponent;
444
+ [UiKitComponent.SidebarMenuLabel]: SidebarMenuLabelComponent;
445
+ [UiKitComponent.UserInfo]: UserInfoComponent;
446
+ [UiKitComponent.DropdownMenu]: DropdownMenuComponent;
447
+ [UiKitComponent.DropdownMenuTrigger]: DropdownMenuTriggerComponent;
448
+ [UiKitComponent.DropdownMenuContent]: DropdownMenuContentComponent;
449
+ [UiKitComponent.DropdownMenuItem]: DropdownMenuItemComponent;
450
+ [UiKitComponent.DropdownMenuSub]: DropdownMenuSubComponent;
451
+ [UiKitComponent.DropdownMenuSubTrigger]: DropdownMenuSubTriggerComponent;
452
+ [UiKitComponent.DropdownMenuSubContent]: DropdownMenuSubContentComponent;
453
+ }
454
+ /**
455
+ * Component Names - for type-safe registration
456
+ */
457
+ type ComponentName = keyof UiKitComponentMap;
458
+
68
459
  declare const buttonVariants: (props?: ({
69
460
  variant?: ButtonVariant | null | undefined;
70
461
  size?: ButtonSize | null | undefined;
@@ -74,8 +465,19 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, V
74
465
  }
75
466
  declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
76
467
 
468
+ declare function Separator({ className, orientation, decorative, ...props }: React$1.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime.JSX.Element;
469
+
470
+ declare const buttonGroupVariants: (props?: ({
471
+ orientation?: "horizontal" | "vertical" | null | undefined;
472
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
473
+ declare function ButtonGroup({ className, orientation, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof buttonGroupVariants>): react_jsx_runtime.JSX.Element;
474
+ declare function ButtonGroupText({ className, asChild, ...props }: React$1.ComponentProps<"div"> & {
475
+ asChild?: boolean;
476
+ }): react_jsx_runtime.JSX.Element;
477
+ declare function ButtonGroupSeparator({ className, orientation, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
478
+
77
479
  declare const badgeVariants: (props?: ({
78
- variant?: "default" | "destructive" | "secondary" | "outline" | null | undefined;
480
+ variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
79
481
  } & class_variance_authority_types.ClassProp) | undefined) => string;
80
482
  interface BadgeProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
81
483
  asChild?: boolean;
@@ -251,6 +653,50 @@ declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive
251
653
 
252
654
  declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
253
655
 
656
+ type ToastPosition = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right' | 'top-center' | 'bottom-center';
657
+ interface UseToastOptions {
658
+ defaultDuration?: number;
659
+ defaultPosition?: ToastPosition;
660
+ }
661
+ type ToastOptions = ExternalToast;
662
+ interface ToastPromiseOptions<T> {
663
+ loading: string;
664
+ success: string | ((data: T) => string);
665
+ error: string | ((error: Error) => string);
666
+ }
667
+ type PromiseResult<T> = (string | number) & {
668
+ unwrap: () => Promise<T>;
669
+ };
670
+ interface UseToastReturn {
671
+ toast: (message: string, options?: ToastOptions) => string | number;
672
+ success: (message: string, options?: ToastOptions) => string | number;
673
+ error: (message: string, options?: ToastOptions) => string | number;
674
+ warning: (message: string, options?: ToastOptions) => string | number;
675
+ info: (message: string, options?: ToastOptions) => string | number;
676
+ loading: (message: string, options?: ToastOptions) => string | number;
677
+ promise: <T>(promise: Promise<T> | (() => Promise<T>), options: ToastPromiseOptions<T>) => PromiseResult<T>;
678
+ dismiss: (toastId?: string | number) => void;
679
+ }
680
+ /**
681
+ * Hook for displaying toast notifications using Sonner.
682
+ * Provides typed methods for common toast variants with optional default configuration.
683
+ *
684
+ * @param options - Optional default configuration for all toasts from this hook instance
685
+ * @returns Object with methods: toast, success, error, warning, info, loading, promise, dismiss
686
+ *
687
+ * @example
688
+ * const { success, error, promise } = useToast();
689
+ *
690
+ * success("Saved successfully!");
691
+ * error("Something went wrong");
692
+ * promise(saveData(), {
693
+ * loading: "Saving...",
694
+ * success: "Saved!",
695
+ * error: "Failed to save"
696
+ * });
697
+ */
698
+ declare function useToast(options?: UseToastOptions): UseToastReturn;
699
+
254
700
  declare const TooltipProvider: {
255
701
  ({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
256
702
  displayName: string | undefined;
@@ -393,28 +839,52 @@ declare const DialogFooter: {
393
839
  declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
394
840
  declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
395
841
 
396
- declare function AlertDialog({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
397
- declare function AlertDialogTrigger({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
398
- declare function AlertDialogPortal({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
399
- declare function AlertDialogOverlay({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Overlay>): react_jsx_runtime.JSX.Element;
400
- declare function AlertDialogContent({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Content>): react_jsx_runtime.JSX.Element;
401
- declare function AlertDialogHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
402
- declare function AlertDialogFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
403
- declare function AlertDialogTitle({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
404
- declare function AlertDialogDescription({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
405
- declare function AlertDialogAction({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Action>): react_jsx_runtime.JSX.Element;
406
- declare function AlertDialogCancel({ className, ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Cancel>): react_jsx_runtime.JSX.Element;
407
-
408
- declare function Drawer({ ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
409
- declare function DrawerTrigger({ ...props }: React$1.ComponentProps<typeof Drawer$1.Trigger>): react_jsx_runtime.JSX.Element;
410
- declare function DrawerPortal({ ...props }: React$1.ComponentProps<typeof Drawer$1.Portal>): react_jsx_runtime.JSX.Element;
411
- declare function DrawerClose({ ...props }: React$1.ComponentProps<typeof Drawer$1.Close>): react_jsx_runtime.JSX.Element;
412
- declare function DrawerOverlay({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Overlay>): react_jsx_runtime.JSX.Element;
413
- declare function DrawerContent({ className, children, ...props }: React$1.ComponentProps<typeof Drawer$1.Content>): react_jsx_runtime.JSX.Element;
414
- declare function DrawerHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
415
- declare function DrawerFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
416
- declare function DrawerTitle({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime.JSX.Element;
417
- declare function DrawerDescription({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime.JSX.Element;
842
+ declare const AlertDialog: {
843
+ ({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Root>): react_jsx_runtime.JSX.Element;
844
+ displayName: string;
845
+ };
846
+ declare const AlertDialogTrigger: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
847
+ declare const AlertDialogPortal: {
848
+ ({ ...props }: React$1.ComponentProps<typeof AlertDialogPrimitive.Portal>): react_jsx_runtime.JSX.Element;
849
+ displayName: string;
850
+ };
851
+ declare const AlertDialogOverlay: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
852
+ declare const AlertDialogContent: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
853
+ declare const AlertDialogHeader: {
854
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
855
+ displayName: string;
856
+ };
857
+ declare const AlertDialogFooter: {
858
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
859
+ displayName: string;
860
+ };
861
+ declare const AlertDialogTitle: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
862
+ declare const AlertDialogDescription: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
863
+ declare const AlertDialogAction: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogActionProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
864
+ declare const AlertDialogCancel: React$1.ForwardRefExoticComponent<Omit<AlertDialogPrimitive.AlertDialogCancelProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
865
+
866
+ declare const Drawer: {
867
+ ({ ...props }: React$1.ComponentProps<typeof Drawer$1.Root>): react_jsx_runtime.JSX.Element;
868
+ displayName: string;
869
+ };
870
+ declare const DrawerTrigger: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
871
+ declare const DrawerPortal: {
872
+ ({ ...props }: React$1.ComponentProps<typeof Drawer$1.Portal>): react_jsx_runtime.JSX.Element;
873
+ displayName: string;
874
+ };
875
+ declare const DrawerClose: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
876
+ declare const DrawerOverlay: React$1.ForwardRefExoticComponent<Omit<Omit<SheetPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
877
+ declare const DrawerContent: React$1.ForwardRefExoticComponent<Omit<Omit<SheetPrimitive.DialogContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
878
+ declare const DrawerHeader: {
879
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
880
+ displayName: string;
881
+ };
882
+ declare const DrawerFooter: {
883
+ ({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
884
+ displayName: string;
885
+ };
886
+ declare const DrawerTitle: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
887
+ declare const DrawerDescription: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
418
888
 
419
889
  declare function ResizablePanelGroup({ className, ...props }: React$1.ComponentProps<typeof ResizablePrimitive.PanelGroup>): react_jsx_runtime.JSX.Element;
420
890
  declare function ResizablePanel({ ...props }: React$1.ComponentProps<typeof ResizablePrimitive.Panel>): react_jsx_runtime.JSX.Element;
@@ -425,8 +895,6 @@ declare function ResizableHandle({ withHandle, className, ...props }: React$1.Co
425
895
  declare function ScrollArea({ className, children, ...props }: React$1.ComponentProps<typeof ScrollAreaPrimitive.Root>): react_jsx_runtime.JSX.Element;
426
896
  declare function ScrollBar({ className, orientation, ...props }: React$1.ComponentProps<typeof ScrollAreaPrimitive.ScrollAreaScrollbar>): react_jsx_runtime.JSX.Element;
427
897
 
428
- declare function Separator({ className, orientation, decorative, ...props }: React$1.ComponentProps<typeof SeparatorPrimitive.Root>): react_jsx_runtime.JSX.Element;
429
-
430
898
  declare function ItemGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
431
899
  declare function ItemSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
432
900
  declare const itemVariants: (props?: ({
@@ -571,6 +1039,46 @@ declare function ContextMenuLabel({ className, inset, ...props }: React$1.Compon
571
1039
  declare function ContextMenuSeparator({ className, ...props }: React$1.ComponentProps<typeof ContextMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
572
1040
  declare function ContextMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
573
1041
 
1042
+ declare function Command({ className, ...props }: React$1.ComponentProps<typeof Command$1>): react_jsx_runtime.JSX.Element;
1043
+ declare function CommandDialog({ title, description, children, className, ...props }: React$1.ComponentProps<typeof Dialog> & {
1044
+ title?: string;
1045
+ description?: string;
1046
+ className?: string;
1047
+ }): react_jsx_runtime.JSX.Element;
1048
+ declare function CommandInput({ className, ...props }: React$1.ComponentProps<typeof Command$1.Input>): react_jsx_runtime.JSX.Element;
1049
+ declare function CommandList({ className, ...props }: React$1.ComponentProps<typeof Command$1.List>): react_jsx_runtime.JSX.Element;
1050
+ declare function CommandEmpty({ ...props }: React$1.ComponentProps<typeof Command$1.Empty>): react_jsx_runtime.JSX.Element;
1051
+ declare function CommandGroup({ className, ...props }: React$1.ComponentProps<typeof Command$1.Group>): react_jsx_runtime.JSX.Element;
1052
+ declare function CommandSeparator({ className, ...props }: React$1.ComponentProps<typeof Command$1.Separator>): react_jsx_runtime.JSX.Element;
1053
+ declare function CommandItem({ className, ...props }: React$1.ComponentProps<typeof Command$1.Item>): react_jsx_runtime.JSX.Element;
1054
+ declare function CommandShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
1055
+
1056
+ declare const toggleVariants: (props?: ({
1057
+ variant?: "default" | "outline" | null | undefined;
1058
+ size?: "default" | "sm" | "lg" | null | undefined;
1059
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1060
+ declare function Toggle({ className, variant, size, ...props }: React$1.ComponentProps<typeof TogglePrimitive.Root> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
1061
+
1062
+ declare function ToggleGroup({ className, variant, size, spacing, children, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Root> & VariantProps<typeof toggleVariants> & {
1063
+ spacing?: number;
1064
+ }): react_jsx_runtime.JSX.Element;
1065
+ declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
1066
+
1067
+ declare function Kbd({ className, ...props }: React$1.ComponentProps<'kbd'>): react_jsx_runtime.JSX.Element;
1068
+ declare function KbdGroup({ className, ...props }: React$1.ComponentProps<'span'>): react_jsx_runtime.JSX.Element;
1069
+
1070
+ declare function TypographyH1({ className, ...props }: React$1.ComponentProps<'h1'>): react_jsx_runtime.JSX.Element;
1071
+ declare function TypographyH2({ className, ...props }: React$1.ComponentProps<'h2'>): react_jsx_runtime.JSX.Element;
1072
+ declare function TypographyH3({ className, ...props }: React$1.ComponentProps<'h3'>): react_jsx_runtime.JSX.Element;
1073
+ declare function TypographyH4({ className, ...props }: React$1.ComponentProps<'h4'>): react_jsx_runtime.JSX.Element;
1074
+ declare function TypographyP({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
1075
+ declare function TypographyBlockquote({ className, ...props }: React$1.ComponentProps<'blockquote'>): react_jsx_runtime.JSX.Element;
1076
+ declare function TypographyList({ className, ...props }: React$1.ComponentProps<'ul'>): react_jsx_runtime.JSX.Element;
1077
+ declare function TypographyInlineCode({ className, ...props }: React$1.ComponentProps<'code'>): react_jsx_runtime.JSX.Element;
1078
+ declare function TypographyLarge({ className, ...props }: React$1.ComponentProps<'div'>): react_jsx_runtime.JSX.Element;
1079
+ declare function TypographySmall({ className, ...props }: React$1.ComponentProps<'small'>): react_jsx_runtime.JSX.Element;
1080
+ declare function TypographyMuted({ className, ...props }: React$1.ComponentProps<'p'>): react_jsx_runtime.JSX.Element;
1081
+
574
1082
  /**
575
1083
  * IconButton component for HAI3 UI-Core
576
1084
  * Provides a consistent icon-only button across all screens
@@ -595,18 +1103,16 @@ interface DropdownButtonProps extends React__default.ButtonHTMLAttributes<HTMLBu
595
1103
  }
596
1104
  declare const DropdownButton: React__default.ForwardRefExoticComponent<DropdownButtonProps & React__default.RefAttributes<HTMLButtonElement>>;
597
1105
 
598
- declare function InputGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
599
- declare const inputGroupAddonVariants: (props?: ({
1106
+ declare const InputGroup: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
1107
+ declare const InputGroupAddon: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & VariantProps<(props?: ({
600
1108
  align?: "block-end" | "block-start" | "inline-end" | "inline-start" | null | undefined;
601
- } & class_variance_authority_types.ClassProp) | undefined) => string;
602
- declare function InputGroupAddon({ className, align, ...props }: React$1.ComponentProps<"div"> & VariantProps<typeof inputGroupAddonVariants>): react_jsx_runtime.JSX.Element;
603
- declare const inputGroupButtonVariants: (props?: ({
1109
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLDivElement>>;
1110
+ declare const InputGroupButton: React$1.ForwardRefExoticComponent<Omit<Omit<ButtonProps & React$1.RefAttributes<HTMLButtonElement>, "ref">, "size"> & VariantProps<(props?: ({
604
1111
  size?: "sm" | "xs" | "icon-xs" | "icon-sm" | null | undefined;
605
- } & class_variance_authority_types.ClassProp) | undefined) => string;
606
- declare function InputGroupButton({ className, type, variant, size, ...props }: Omit<React$1.ComponentProps<typeof Button>, "size"> & VariantProps<typeof inputGroupButtonVariants>): react_jsx_runtime.JSX.Element;
607
- declare function InputGroupText({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
608
- declare function InputGroupInput({ className, ...props }: React$1.ComponentProps<"input">): react_jsx_runtime.JSX.Element;
609
- declare function InputGroupTextarea({ className, ...props }: React$1.ComponentProps<"textarea">): react_jsx_runtime.JSX.Element;
1112
+ } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
1113
+ declare const InputGroupText: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
1114
+ declare const InputGroupInput: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
1115
+ declare const InputGroupTextarea: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, "ref"> & React$1.RefAttributes<HTMLTextAreaElement>>;
610
1116
 
611
1117
  interface DatePickerProps {
612
1118
  children: React$1.ReactNode;
@@ -840,4 +1346,4 @@ declare const ChevronUpIcon: React__default.FC<React__default.SVGProps<SVGSVGEle
840
1346
  */
841
1347
  declare const applyTheme: (theme: Theme, themeName?: string) => void;
842
1348
 
843
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, CLOSE_ICON_ID, Calendar, CalendarDayButton, CalendarIcon, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegendContent, ChartTooltipContent, ChatInput, type ChatInputProps, type ChatThread, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, DataTableColumnHeader, type DataTableColumnHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableViewOptions, type DataTableViewOptionsProps, DatePicker, DatePickerContent, DatePickerInput, DatePickerTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Header, type HeaderProps, HoverCard, HoverCardContent, HoverCardTrigger, IconButton, type IconButtonProps, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Label, MENU_ICON_ID, MenuIcon, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MessageBubble, type MessageBubbleProps, MessageType, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarHeader, type SidebarHeaderProps, SidebarMenu, SidebarMenuButton, SidebarMenuIcon, SidebarMenuItem, SidebarMenuLabel, Skeleton, Slider, SliderRange, SliderThumb, SliderTrack, Spinner, type SpinnerProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, ThreadList, type ThreadListProps, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, UserInfo, type UserInfoProps, alertVariants, applyTheme, badgeVariants, emptyMediaVariants, useFormField };
1349
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonComponent, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, type ButtonProps, type ButtonProps$1 as ButtonPropsContract, ButtonSize, ButtonVariant, CLOSE_ICON_ID, Calendar, CalendarDayButton, CalendarIcon, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegendContent, ChartTooltipContent, ChatInput, type ChatInputProps, type ChatThread, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ComponentName, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, DataTableColumnHeader, type DataTableColumnHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableViewOptions, type DataTableViewOptionsProps, DatePicker, DatePickerContent, DatePickerInput, DatePickerTrigger, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownButton, type DropdownButtonComponent, type DropdownButtonProps, type DropdownButtonProps$1 as DropdownButtonPropsContract, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuComponent, DropdownMenuContent, type DropdownMenuContentComponent, type DropdownMenuContentProps as DropdownMenuContentPropsContract, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemComponent, type DropdownMenuItemProps as DropdownMenuItemPropsContract, DropdownMenuLabel, DropdownMenuPortal, type DropdownMenuProps as DropdownMenuPropsContract, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, type DropdownMenuSubComponent, DropdownMenuSubContent, type DropdownMenuSubContentComponent, type DropdownMenuSubContentProps as DropdownMenuSubContentPropsContract, type DropdownMenuSubProps as DropdownMenuSubPropsContract, DropdownMenuSubTrigger, type DropdownMenuSubTriggerComponent, type DropdownMenuSubTriggerProps as DropdownMenuSubTriggerPropsContract, DropdownMenuTrigger, type DropdownMenuTriggerComponent, type DropdownMenuTriggerProps as DropdownMenuTriggerPropsContract, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Header, type HeaderComponent, type HeaderProps, type HeaderProps$1 as HeaderPropsContract, HoverCard, HoverCardContent, HoverCardTrigger, IconButton, type IconButtonComponent, type IconButtonProps, type IconButtonProps$1 as IconButtonPropsContract, IconButtonSize, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, MENU_ICON_ID, MenuIcon, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MessageBubble, type MessageBubbleProps, MessageType, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, type SidebarComponent, SidebarContent, type SidebarContentComponent, type SidebarContentProps as SidebarContentPropsContract, SidebarHeader, type SidebarHeaderComponent, type SidebarHeaderProps, type SidebarHeaderProps$1 as SidebarHeaderPropsContract, SidebarMenu, SidebarMenuButton, type SidebarMenuButtonComponent, type SidebarMenuButtonProps as SidebarMenuButtonPropsContract, type SidebarMenuComponent, SidebarMenuIcon, type SidebarMenuIconComponent, type SidebarMenuIconProps as SidebarMenuIconPropsContract, SidebarMenuItem, type SidebarMenuItemComponent, type SidebarMenuItemProps as SidebarMenuItemPropsContract, SidebarMenuLabel, type SidebarMenuLabelComponent, type SidebarMenuLabelProps as SidebarMenuLabelPropsContract, type SidebarMenuProps as SidebarMenuPropsContract, type SidebarProps as SidebarPropsContract, Skeleton, type SkeletonComponent, type SkeletonProps$1 as SkeletonPropsContract, Slider, SliderRange, SliderThumb, SliderTrack, Spinner, type SpinnerComponent, type SpinnerProps, type SpinnerProps$1 as SpinnerPropsContract, Switch, type SwitchComponent, type SwitchProps as SwitchPropsContract, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextDirection, Textarea, type Theme, ThreadList, type ThreadListProps, type ToastOptions, type ToastPromiseOptions, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TypographyBlockquote, TypographyH1, TypographyH2, TypographyH3, TypographyH4, TypographyInlineCode, TypographyLarge, TypographyList, TypographyMuted, TypographyP, TypographySmall, UiKitComponent, type UiKitComponentMap, UiKitIcon, type UseToastOptions, type UseToastReturn, UserInfo, type UserInfoComponent, type UserInfoProps, type UserInfoProps$1 as UserInfoPropsContract, alertVariants, applyTheme, badgeVariants, buttonGroupVariants, emptyMediaVariants, toggleVariants, useFormField, useToast };