@hai3/uikit 0.1.0-alpha.10 → 0.1.0-alpha.11
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.cjs +108 -60
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +394 -5
- package/dist/index.d.ts +394 -5
- package/dist/index.js +104 -50
- package/dist/index.js.map +1 -1
- package/package.json +3 -4
- package/src/styles/applyTheme.ts +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1,12 +1,10 @@
|
|
|
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';
|
|
10
8
|
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
11
9
|
import { DayPicker, DayButton } from 'react-day-picker';
|
|
12
10
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
@@ -67,6 +65,397 @@ declare const Avatar: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.Ava
|
|
|
67
65
|
declare const AvatarImage: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarImageProps & React$1.RefAttributes<HTMLImageElement>, "ref"> & React$1.RefAttributes<HTMLImageElement>>;
|
|
68
66
|
declare const AvatarFallback: React$1.ForwardRefExoticComponent<Omit<AvatarPrimitive.AvatarFallbackProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
69
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
|
+
|
|
70
459
|
declare const buttonVariants: (props?: ({
|
|
71
460
|
variant?: ButtonVariant | null | undefined;
|
|
72
461
|
size?: ButtonSize | null | undefined;
|
|
@@ -88,7 +477,7 @@ declare function ButtonGroupText({ className, asChild, ...props }: React$1.Compo
|
|
|
88
477
|
declare function ButtonGroupSeparator({ className, orientation, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
|
|
89
478
|
|
|
90
479
|
declare const badgeVariants: (props?: ({
|
|
91
|
-
variant?: "default" | "destructive" | "
|
|
480
|
+
variant?: "default" | "destructive" | "outline" | "secondary" | null | undefined;
|
|
92
481
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
93
482
|
interface BadgeProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeVariants> {
|
|
94
483
|
asChild?: boolean;
|
|
@@ -957,4 +1346,4 @@ declare const ChevronUpIcon: React__default.FC<React__default.SVGProps<SVGSVGEle
|
|
|
957
1346
|
*/
|
|
958
1347
|
declare const applyTheme: (theme: Theme, themeName?: string) => void;
|
|
959
1348
|
|
|
960
|
-
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, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, 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, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, 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, 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, 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, type ToastOptions, type ToastPromiseOptions, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TypographyBlockquote, TypographyH1, TypographyH2, TypographyH3, TypographyH4, TypographyInlineCode, TypographyLarge, TypographyList, TypographyMuted, TypographyP, TypographySmall, type UseToastOptions, type UseToastReturn, UserInfo, type UserInfoProps, alertVariants, applyTheme, badgeVariants, buttonGroupVariants, emptyMediaVariants, toggleVariants, useFormField, useToast };
|
|
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 };
|