duokit-ui 0.1.0 → 0.1.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
@@ -28,14 +28,15 @@ import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
28
28
  import * as ResizablePrimitive from 'react-resizable-panels';
29
29
  import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
30
30
  import * as SelectPrimitive from '@radix-ui/react-select';
31
- import * as TooltipPrimitive from '@radix-ui/react-tooltip';
32
31
  import { ToasterProps, toast } from 'sonner';
33
32
  import * as SwitchPrimitive from '@radix-ui/react-switch';
34
33
  import * as TabsPrimitive from '@radix-ui/react-tabs';
35
34
  import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
36
35
  import * as TogglePrimitive from '@radix-ui/react-toggle';
36
+ import * as TooltipPrimitive from '@radix-ui/react-tooltip';
37
37
  import { Table as Table$1 } from '@tanstack/react-table';
38
38
  import { ClassValue } from 'clsx';
39
+ import { z } from 'zod';
39
40
 
40
41
  declare function Accordion({ ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Root>): react_jsx_runtime.JSX.Element;
41
42
  declare function AccordionItem({ className, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Item>): react_jsx_runtime.JSX.Element;
@@ -437,74 +438,6 @@ declare function SheetFooter({ className, ...props }: React$1.ComponentProps<"di
437
438
  declare function SheetTitle({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Title>): react_jsx_runtime.JSX.Element;
438
439
  declare function SheetDescription({ className, ...props }: React$1.ComponentProps<typeof DialogPrimitive.Description>): react_jsx_runtime.JSX.Element;
439
440
 
440
- declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
441
- declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
442
- declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
443
- declare function TooltipContent({ className, sideOffset, children, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
444
-
445
- type SidebarContextProps = {
446
- state: "expanded" | "collapsed";
447
- open: boolean;
448
- setOpen: (open: boolean) => void;
449
- openMobile: boolean;
450
- setOpenMobile: (open: boolean) => void;
451
- isMobile: boolean;
452
- toggleSidebar: () => void;
453
- };
454
- declare function useSidebar(): SidebarContextProps;
455
- declare function SidebarProvider({ defaultOpen, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }: React$1.ComponentProps<"div"> & {
456
- defaultOpen?: boolean;
457
- open?: boolean;
458
- onOpenChange?: (open: boolean) => void;
459
- }): react_jsx_runtime.JSX.Element;
460
- declare function Sidebar({ side, variant, collapsible, className, children, ...props }: React$1.ComponentProps<"div"> & {
461
- side?: "left" | "right";
462
- variant?: "sidebar" | "floating" | "inset";
463
- collapsible?: "offcanvas" | "icon" | "none";
464
- }): react_jsx_runtime.JSX.Element;
465
- declare function SidebarTrigger({ className, onClick, ...props }: React$1.ComponentProps<typeof Button>): react_jsx_runtime.JSX.Element;
466
- declare function SidebarRail({ className, ...props }: React$1.ComponentProps<"button">): react_jsx_runtime.JSX.Element;
467
- declare function SidebarInset({ className, ...props }: React$1.ComponentProps<"main">): react_jsx_runtime.JSX.Element;
468
- declare function SidebarInput({ className, ...props }: React$1.ComponentProps<typeof Input>): react_jsx_runtime.JSX.Element;
469
- declare function SidebarHeader({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
470
- declare function SidebarFooter({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
471
- declare function SidebarSeparator({ className, ...props }: React$1.ComponentProps<typeof Separator>): react_jsx_runtime.JSX.Element;
472
- declare function SidebarContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
473
- declare function SidebarGroup({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
474
- declare function SidebarGroupLabel({ className, asChild, ...props }: React$1.ComponentProps<"div"> & {
475
- asChild?: boolean;
476
- }): react_jsx_runtime.JSX.Element;
477
- declare function SidebarGroupAction({ className, asChild, ...props }: React$1.ComponentProps<"button"> & {
478
- asChild?: boolean;
479
- }): react_jsx_runtime.JSX.Element;
480
- declare function SidebarGroupContent({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
481
- declare function SidebarMenu({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
482
- declare function SidebarMenuItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
483
- declare const sidebarMenuButtonVariants: (props?: ({
484
- variant?: "default" | "outline" | null | undefined;
485
- size?: "default" | "sm" | "lg" | null | undefined;
486
- } & class_variance_authority_types.ClassProp) | undefined) => string;
487
- declare function SidebarMenuButton({ asChild, isActive, variant, size, tooltip, className, ...props }: React$1.ComponentProps<"button"> & {
488
- asChild?: boolean;
489
- isActive?: boolean;
490
- tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
491
- } & VariantProps<typeof sidebarMenuButtonVariants>): react_jsx_runtime.JSX.Element;
492
- declare function SidebarMenuAction({ className, asChild, showOnHover, ...props }: React$1.ComponentProps<"button"> & {
493
- asChild?: boolean;
494
- showOnHover?: boolean;
495
- }): react_jsx_runtime.JSX.Element;
496
- declare function SidebarMenuBadge({ className, ...props }: React$1.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
497
- declare function SidebarMenuSkeleton({ className, showIcon, ...props }: React$1.ComponentProps<"div"> & {
498
- showIcon?: boolean;
499
- }): react_jsx_runtime.JSX.Element;
500
- declare function SidebarMenuSub({ className, ...props }: React$1.ComponentProps<"ul">): react_jsx_runtime.JSX.Element;
501
- declare function SidebarMenuSubItem({ className, ...props }: React$1.ComponentProps<"li">): react_jsx_runtime.JSX.Element;
502
- declare function SidebarMenuSubButton({ asChild, size, isActive, className, ...props }: React$1.ComponentProps<"a"> & {
503
- asChild?: boolean;
504
- size?: "sm" | "md";
505
- isActive?: boolean;
506
- }): react_jsx_runtime.JSX.Element;
507
-
508
441
  declare function Skeleton({ className, ...props }: React.ComponentProps<"div">): react_jsx_runtime.JSX.Element;
509
442
 
510
443
  declare const Toaster: ({ ...props }: ToasterProps) => react_jsx_runtime.JSX.Element;
@@ -545,6 +478,11 @@ declare function ToggleGroup({ className, variant, size, spacing, children, ...p
545
478
  }): react_jsx_runtime.JSX.Element;
546
479
  declare function ToggleGroupItem({ className, children, variant, size, ...props }: React$1.ComponentProps<typeof ToggleGroupPrimitive.Item> & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
547
480
 
481
+ declare function TooltipProvider({ delayDuration, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Provider>): react_jsx_runtime.JSX.Element;
482
+ declare function Tooltip({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Root>): react_jsx_runtime.JSX.Element;
483
+ declare function TooltipTrigger({ ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
484
+ declare function TooltipContent({ className, sideOffset, children, ...props }: React$1.ComponentProps<typeof TooltipPrimitive.Content>): react_jsx_runtime.JSX.Element;
485
+
548
486
  /**
549
487
  * Animation types and configurations
550
488
  */
@@ -1110,10 +1048,274 @@ declare function Blockquote({ children, className, }: {
1110
1048
  className?: string;
1111
1049
  }): react_jsx_runtime.JSX.Element;
1112
1050
 
1051
+ declare const NavigationConfigSchema: z.ZodObject<{
1052
+ style: z.ZodDefault<z.ZodEnum<["custom", "sidebar", "header"]>>;
1053
+ sidebarCollapsed: z.ZodEffects<z.ZodOptional<z.ZodDefault<z.ZodEnum<["false", "true"]>>>, boolean, "true" | "false" | undefined>;
1054
+ sidebarCollapsedStyle: z.ZodDefault<z.ZodEnum<["offcanvas", "icon", "none"]>>;
1055
+ routes: z.ZodArray<z.ZodUnion<[z.ZodObject<{
1056
+ label: z.ZodString;
1057
+ collapsible: z.ZodOptional<z.ZodBoolean>;
1058
+ collapsed: z.ZodOptional<z.ZodBoolean>;
1059
+ children: z.ZodArray<z.ZodObject<{
1060
+ label: z.ZodString;
1061
+ path: z.ZodString;
1062
+ Icon: z.ZodOptional<z.ZodType<React$1.ReactNode, z.ZodTypeDef, React$1.ReactNode>>;
1063
+ end: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodBoolean, z.ZodFunction<z.ZodTuple<[z.ZodString], z.ZodUnknown>, z.ZodBoolean>]>>>;
1064
+ children: z.ZodOptional<z.ZodDefault<z.ZodArray<z.ZodObject<{
1065
+ label: z.ZodString;
1066
+ path: z.ZodString;
1067
+ Icon: z.ZodOptional<z.ZodType<React$1.ReactNode, z.ZodTypeDef, React$1.ReactNode>>;
1068
+ end: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodBoolean, z.ZodFunction<z.ZodTuple<[z.ZodString], z.ZodUnknown>, z.ZodBoolean>]>>>;
1069
+ renderAction: z.ZodOptional<z.ZodType<React$1.ReactNode, z.ZodTypeDef, React$1.ReactNode>>;
1070
+ }, "strip", z.ZodTypeAny, {
1071
+ label: string;
1072
+ path: string;
1073
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1074
+ Icon?: React$1.ReactNode;
1075
+ renderAction?: React$1.ReactNode;
1076
+ }, {
1077
+ label: string;
1078
+ path: string;
1079
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1080
+ Icon?: React$1.ReactNode;
1081
+ renderAction?: React$1.ReactNode;
1082
+ }>, "many">>>;
1083
+ collapsible: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1084
+ collapsed: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
1085
+ renderAction: z.ZodOptional<z.ZodType<React$1.ReactNode, z.ZodTypeDef, React$1.ReactNode>>;
1086
+ }, "strip", z.ZodTypeAny, {
1087
+ label: string;
1088
+ path: string;
1089
+ children?: {
1090
+ label: string;
1091
+ path: string;
1092
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1093
+ Icon?: React$1.ReactNode;
1094
+ renderAction?: React$1.ReactNode;
1095
+ }[] | undefined;
1096
+ collapsible?: boolean | undefined;
1097
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1098
+ Icon?: React$1.ReactNode;
1099
+ renderAction?: React$1.ReactNode;
1100
+ collapsed?: boolean | undefined;
1101
+ }, {
1102
+ label: string;
1103
+ path: string;
1104
+ children?: {
1105
+ label: string;
1106
+ path: string;
1107
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1108
+ Icon?: React$1.ReactNode;
1109
+ renderAction?: React$1.ReactNode;
1110
+ }[] | undefined;
1111
+ collapsible?: boolean | undefined;
1112
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1113
+ Icon?: React$1.ReactNode;
1114
+ renderAction?: React$1.ReactNode;
1115
+ collapsed?: boolean | undefined;
1116
+ }>, "many">;
1117
+ renderAction: z.ZodOptional<z.ZodType<React$1.ReactNode, z.ZodTypeDef, React$1.ReactNode>>;
1118
+ }, "strip", z.ZodTypeAny, {
1119
+ label: string;
1120
+ children: {
1121
+ label: string;
1122
+ path: string;
1123
+ children?: {
1124
+ label: string;
1125
+ path: string;
1126
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1127
+ Icon?: React$1.ReactNode;
1128
+ renderAction?: React$1.ReactNode;
1129
+ }[] | undefined;
1130
+ collapsible?: boolean | undefined;
1131
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1132
+ Icon?: React$1.ReactNode;
1133
+ renderAction?: React$1.ReactNode;
1134
+ collapsed?: boolean | undefined;
1135
+ }[];
1136
+ collapsible?: boolean | undefined;
1137
+ renderAction?: React$1.ReactNode;
1138
+ collapsed?: boolean | undefined;
1139
+ }, {
1140
+ label: string;
1141
+ children: {
1142
+ label: string;
1143
+ path: string;
1144
+ children?: {
1145
+ label: string;
1146
+ path: string;
1147
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1148
+ Icon?: React$1.ReactNode;
1149
+ renderAction?: React$1.ReactNode;
1150
+ }[] | undefined;
1151
+ collapsible?: boolean | undefined;
1152
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1153
+ Icon?: React$1.ReactNode;
1154
+ renderAction?: React$1.ReactNode;
1155
+ collapsed?: boolean | undefined;
1156
+ }[];
1157
+ collapsible?: boolean | undefined;
1158
+ renderAction?: React$1.ReactNode;
1159
+ collapsed?: boolean | undefined;
1160
+ }>, z.ZodObject<{
1161
+ divider: z.ZodLiteral<true>;
1162
+ }, "strip", z.ZodTypeAny, {
1163
+ divider: true;
1164
+ }, {
1165
+ divider: true;
1166
+ }>]>, "many">;
1167
+ }, "strip", z.ZodTypeAny, {
1168
+ style: "header" | "custom" | "sidebar";
1169
+ sidebarCollapsed: boolean;
1170
+ sidebarCollapsedStyle: "none" | "icon" | "offcanvas";
1171
+ routes: ({
1172
+ divider: true;
1173
+ } | {
1174
+ label: string;
1175
+ children: {
1176
+ label: string;
1177
+ path: string;
1178
+ children?: {
1179
+ label: string;
1180
+ path: string;
1181
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1182
+ Icon?: React$1.ReactNode;
1183
+ renderAction?: React$1.ReactNode;
1184
+ }[] | undefined;
1185
+ collapsible?: boolean | undefined;
1186
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1187
+ Icon?: React$1.ReactNode;
1188
+ renderAction?: React$1.ReactNode;
1189
+ collapsed?: boolean | undefined;
1190
+ }[];
1191
+ collapsible?: boolean | undefined;
1192
+ renderAction?: React$1.ReactNode;
1193
+ collapsed?: boolean | undefined;
1194
+ })[];
1195
+ }, {
1196
+ routes: ({
1197
+ divider: true;
1198
+ } | {
1199
+ label: string;
1200
+ children: {
1201
+ label: string;
1202
+ path: string;
1203
+ children?: {
1204
+ label: string;
1205
+ path: string;
1206
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1207
+ Icon?: React$1.ReactNode;
1208
+ renderAction?: React$1.ReactNode;
1209
+ }[] | undefined;
1210
+ collapsible?: boolean | undefined;
1211
+ end?: boolean | ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
1212
+ Icon?: React$1.ReactNode;
1213
+ renderAction?: React$1.ReactNode;
1214
+ collapsed?: boolean | undefined;
1215
+ }[];
1216
+ collapsible?: boolean | undefined;
1217
+ renderAction?: React$1.ReactNode;
1218
+ collapsed?: boolean | undefined;
1219
+ })[];
1220
+ style?: "header" | "custom" | "sidebar" | undefined;
1221
+ sidebarCollapsed?: "true" | "false" | undefined;
1222
+ sidebarCollapsedStyle?: "none" | "icon" | "offcanvas" | undefined;
1223
+ }>;
1224
+ type SidebarConfig = z.infer<typeof NavigationConfigSchema>;
1225
+
1226
+ type SidebarContextValue = {
1227
+ state: "expanded" | "collapsed";
1228
+ open: boolean;
1229
+ setOpen: (open: boolean) => void;
1230
+ openMobile: boolean;
1231
+ setOpenMobile: (open: boolean) => void;
1232
+ isMobile: boolean;
1233
+ toggleSidebar: () => void;
1234
+ };
1235
+ declare const SidebarContext: React$1.Context<SidebarContextValue | null>;
1236
+ declare function useSidebar(): SidebarContextValue;
1237
+ declare const SidebarProvider: React$1.FC<React$1.ComponentProps<"div"> & {
1238
+ defaultOpen?: boolean;
1239
+ open?: boolean;
1240
+ onOpenChange?: (open: boolean) => void;
1241
+ }>;
1242
+ declare const Sidebar: React$1.FC<React$1.ComponentPropsWithRef<"div"> & {
1243
+ side?: "left" | "right";
1244
+ variant?: "sidebar" | "floating" | "inset" | "ghost";
1245
+ collapsible?: "offcanvas" | "icon" | "none";
1246
+ }>;
1247
+ declare const SidebarTrigger: React$1.FC<React$1.ComponentProps<typeof Button>>;
1248
+ declare const SidebarRail: React$1.FC<React$1.ComponentProps<"button">>;
1249
+ declare const SidebarInset: React$1.FC<React$1.ComponentProps<"main">>;
1250
+ declare const SidebarInput: React$1.FC<React$1.ComponentPropsWithRef<typeof Input>>;
1251
+ declare const SidebarHeader: React$1.FC<React$1.ComponentPropsWithRef<"div">>;
1252
+ declare const SidebarFooter: React$1.FC<React$1.ComponentProps<"div">>;
1253
+ declare const SidebarSeparator: React$1.FC<React$1.ComponentProps<typeof Separator>>;
1254
+ declare const SidebarContent: React$1.FC<React$1.ComponentProps<"div">>;
1255
+ declare const SidebarGroup: React$1.FC<React$1.ComponentProps<"div">>;
1256
+ declare const SidebarGroupLabel: React$1.FC<React$1.ComponentProps<"div"> & {
1257
+ asChild?: boolean;
1258
+ }>;
1259
+ declare const SidebarGroupAction: React$1.FC<React$1.ComponentProps<"button"> & {
1260
+ asChild?: boolean;
1261
+ }>;
1262
+ declare const SidebarGroupContent: React$1.FC<React$1.ComponentProps<"div">>;
1263
+ declare const SidebarMenu: React$1.FC<React$1.ComponentProps<"ul">>;
1264
+ declare const SidebarMenuItem: React$1.FC<React$1.ComponentProps<"li">>;
1265
+ declare const sidebarMenuButtonVariants: (props?: ({
1266
+ variant?: "default" | "outline" | null | undefined;
1267
+ size?: "default" | "sm" | "lg" | null | undefined;
1268
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
1269
+ declare const SidebarMenuButton: React$1.FC<React$1.ComponentProps<"button"> & {
1270
+ asChild?: boolean;
1271
+ isActive?: boolean;
1272
+ tooltip?: string | React$1.ComponentProps<typeof TooltipContent>;
1273
+ } & VariantProps<typeof sidebarMenuButtonVariants>>;
1274
+ declare const SidebarMenuAction: React$1.FC<React$1.ComponentProps<"button"> & {
1275
+ asChild?: boolean;
1276
+ showOnHover?: boolean;
1277
+ }>;
1278
+ declare const SidebarMenuBadge: React$1.FC<React$1.ComponentProps<"div">>;
1279
+ declare const SidebarMenuSkeleton: React$1.FC<React$1.ComponentProps<"div"> & {
1280
+ showIcon?: boolean;
1281
+ }>;
1282
+ declare const SidebarMenuSub: React$1.FC<React$1.ComponentProps<"ul">>;
1283
+ declare const SidebarMenuSubItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
1284
+ declare const SidebarMenuSubButton: React$1.FC<React$1.ComponentProps<"a"> & {
1285
+ asChild?: boolean;
1286
+ size?: "sm" | "md";
1287
+ isActive?: boolean;
1288
+ }>;
1289
+
1290
+ type Condition<Value = unknown> = Value | false | null | undefined | 0 | "";
1291
+ declare function If<Value = unknown>({ condition, children, fallback, }: React.PropsWithoutRef<{
1292
+ condition: Condition<Value>;
1293
+ children: React.ReactNode | ((value: Value) => React.ReactNode);
1294
+ fallback?: React.ReactNode;
1295
+ }>): react_jsx_runtime.JSX.Element | null;
1296
+
1297
+ /**
1298
+ * @name isRouteActive
1299
+ * @description A function to check if a route is active. This is used to
1300
+ * @param end
1301
+ * @param path
1302
+ * @param currentPath
1303
+ */
1304
+ declare function isRouteActive(path: string, currentPath: string, end?: boolean | ((path: string) => boolean)): boolean;
1305
+ /**
1306
+ * @name checkIfRouteIsActive
1307
+ * @description A function to check if a route is active. This is used to
1308
+ * highlight the active link in the navigation.
1309
+ * @param targetLink - The link to check against
1310
+ * @param currentRoute - the current route
1311
+ * @param depth - how far down should segments be matched?
1312
+ */
1313
+ declare function checkIfRouteIsActive(targetLink: string, currentRoute: string, depth?: number): boolean;
1314
+
1113
1315
  declare function cn(...inputs: ClassValue[]): string;
1114
1316
 
1115
1317
  declare function useIsMobile(): boolean;
1116
1318
 
1117
1319
  declare const useToast: () => typeof toast;
1118
1320
 
1119
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AnimationConfig$1 as AnimationConfig, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Blockquote, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDatePicker, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, ClientMultiSelect, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, 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, type DataTablePaginationProps, type DataTableProps, type DataTableSearchProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, 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, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, H1, H2, H3, H4, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MultiSelect, type MultiSelectGroup$1 as MultiSelectGroup, type MultiSelectOption$1 as MultiSelectOption, type MultiSelectProps$1 as MultiSelectProps, type MultiSelectRef$1 as MultiSelectRef, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PaginatedMultiSelect, Paragraph, Popover, PopoverContent, PopoverTrigger, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, 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, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, cn, navigationMenuTriggerStyle, tabsListVariants, toggleVariants, useComboboxAnchor, useIsMobile, useSidebar, useToast };
1321
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, type AnimationConfig$1 as AnimationConfig, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Blockquote, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDatePicker, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, ClientMultiSelect, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, 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, type DataTablePaginationProps, type DataTableProps, type DataTableSearchProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, 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, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, H1, H2, H3, H4, HoverCard, HoverCardContent, HoverCardTrigger, If, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MultiSelect, type MultiSelectGroup$1 as MultiSelectGroup, type MultiSelectOption$1 as MultiSelectOption, type MultiSelectProps$1 as MultiSelectProps, type MultiSelectRef$1 as MultiSelectRef, NavigationConfigSchema, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PaginatedMultiSelect, Paragraph, Popover, PopoverContent, PopoverTrigger, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, type SidebarConfig, SidebarContent, SidebarContext, type SidebarContextValue, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, buttonGroupVariants, buttonVariants, checkIfRouteIsActive, cn, isRouteActive, navigationMenuTriggerStyle, sidebarMenuButtonVariants, tabsListVariants, toggleVariants, useComboboxAnchor, useIsMobile, useSidebar, useToast };