@webstacks/ui 0.3.1 → 0.4.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,10 +1,10 @@
1
- import { ClassValue } from 'clsx';
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import * as React$1 from 'react';
3
+ import { ClassValue } from 'clsx';
3
4
  import * as class_variance_authority_types from 'class-variance-authority/types';
4
5
  import * as ToastPrimitives from '@radix-ui/react-toast';
5
6
  import { VariantProps } from 'class-variance-authority';
6
7
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
7
- import * as react_jsx_runtime from 'react/jsx-runtime';
8
8
  import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
9
9
  import * as AspectRatioPrimitive from '@radix-ui/react-aspect-ratio';
10
10
  import * as AvatarPrimitive from '@radix-ui/react-avatar';
@@ -46,6 +46,33 @@ import * as TabsPrimitive from '@radix-ui/react-tabs';
46
46
  import * as TogglePrimitive from '@radix-ui/react-toggle';
47
47
  import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
48
48
 
49
+ interface BaseStylesProps {
50
+ children: React$1.ReactNode;
51
+ /**
52
+ * Color mode for the application.
53
+ * - "light" — force light theme
54
+ * - "dark" — force dark theme
55
+ * - "auto" — follow system preference
56
+ * @default "light"
57
+ */
58
+ colorMode?: "light" | "dark" | "auto";
59
+ }
60
+ /**
61
+ * BaseStyles wraps your application with the @webstacks/ui design tokens,
62
+ * fonts, color primitives, and base styles. Place this at the root of your
63
+ * app so all components render correctly.
64
+ *
65
+ * @example
66
+ * ```tsx
67
+ * import { BaseStyles } from '@webstacks/ui'
68
+ *
69
+ * function RootLayout({ children }) {
70
+ * return <BaseStyles>{children}</BaseStyles>
71
+ * }
72
+ * ```
73
+ */
74
+ declare function BaseStyles({ children, colorMode }: BaseStylesProps): react_jsx_runtime.JSX.Element;
75
+
49
76
  declare function cn(...inputs: ClassValue[]): string;
50
77
 
51
78
  declare function useIsMobile(): boolean;
@@ -141,53 +168,53 @@ declare const BreadcrumbEllipsis: {
141
168
  };
142
169
 
143
170
  declare const boxVariants: (props?: ({
144
- padding?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
145
- paddingX?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
146
- paddingY?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
147
- paddingTop?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
148
- paddingBottom?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
149
- paddingStart?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
150
- paddingEnd?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
151
- margin?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
152
- marginX?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
153
- marginY?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
154
- marginTop?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
155
- marginBottom?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
156
- marginStart?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
157
- marginEnd?: "none" | "auto" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
171
+ padding?: "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
172
+ paddingX?: "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
173
+ paddingY?: "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
174
+ paddingTop?: "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
175
+ paddingBottom?: "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
176
+ paddingStart?: "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
177
+ paddingEnd?: "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
178
+ margin?: "auto" | "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
179
+ marginX?: "auto" | "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
180
+ marginY?: "auto" | "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
181
+ marginTop?: "auto" | "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
182
+ marginBottom?: "auto" | "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
183
+ marginStart?: "auto" | "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
184
+ marginEnd?: "auto" | "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
158
185
  backgroundColor?: "default" | "subtle" | "inset" | null | undefined;
159
186
  borderStyle?: "none" | "solid" | "dashed" | null | undefined;
160
187
  borderRadius?: "small" | "none" | "medium" | "large" | "xlarge" | "full" | null | undefined;
161
- borderColor?: "muted" | "default" | "subtle" | null | undefined;
188
+ borderColor?: "default" | "muted" | "subtle" | null | undefined;
162
189
  } & class_variance_authority_types.ClassProp) | undefined) => string;
163
190
  type SpacingValue = "none" | "condensed" | "normal" | "spacious" | "extra-spacious";
164
191
  type MarginValue = SpacingValue | "auto";
165
- interface ResponsiveProp$3<T> {
192
+ interface ResponsiveProp$4<T> {
166
193
  narrow?: T;
167
194
  regular?: T;
168
195
  wide?: T;
169
196
  }
170
197
  interface BoxProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "color">, Omit<VariantProps<typeof boxVariants>, "padding" | "paddingX" | "paddingY" | "paddingTop" | "paddingBottom" | "paddingStart" | "paddingEnd" | "margin" | "marginX" | "marginY" | "marginTop" | "marginBottom" | "marginStart" | "marginEnd"> {
171
198
  as?: React$1.ElementType;
172
- padding?: SpacingValue | ResponsiveProp$3<SpacingValue>;
173
- paddingX?: SpacingValue | ResponsiveProp$3<SpacingValue>;
174
- paddingY?: SpacingValue | ResponsiveProp$3<SpacingValue>;
175
- paddingTop?: SpacingValue | ResponsiveProp$3<SpacingValue>;
176
- paddingBottom?: SpacingValue | ResponsiveProp$3<SpacingValue>;
177
- paddingStart?: SpacingValue | ResponsiveProp$3<SpacingValue>;
178
- paddingEnd?: SpacingValue | ResponsiveProp$3<SpacingValue>;
179
- margin?: MarginValue | ResponsiveProp$3<MarginValue>;
180
- marginX?: MarginValue | ResponsiveProp$3<MarginValue>;
181
- marginY?: MarginValue | ResponsiveProp$3<MarginValue>;
182
- marginTop?: MarginValue | ResponsiveProp$3<MarginValue>;
183
- marginBottom?: MarginValue | ResponsiveProp$3<MarginValue>;
184
- marginStart?: MarginValue | ResponsiveProp$3<MarginValue>;
185
- marginEnd?: MarginValue | ResponsiveProp$3<MarginValue>;
199
+ padding?: SpacingValue | ResponsiveProp$4<SpacingValue>;
200
+ paddingX?: SpacingValue | ResponsiveProp$4<SpacingValue>;
201
+ paddingY?: SpacingValue | ResponsiveProp$4<SpacingValue>;
202
+ paddingTop?: SpacingValue | ResponsiveProp$4<SpacingValue>;
203
+ paddingBottom?: SpacingValue | ResponsiveProp$4<SpacingValue>;
204
+ paddingStart?: SpacingValue | ResponsiveProp$4<SpacingValue>;
205
+ paddingEnd?: SpacingValue | ResponsiveProp$4<SpacingValue>;
206
+ margin?: MarginValue | ResponsiveProp$4<MarginValue>;
207
+ marginX?: MarginValue | ResponsiveProp$4<MarginValue>;
208
+ marginY?: MarginValue | ResponsiveProp$4<MarginValue>;
209
+ marginTop?: MarginValue | ResponsiveProp$4<MarginValue>;
210
+ marginBottom?: MarginValue | ResponsiveProp$4<MarginValue>;
211
+ marginStart?: MarginValue | ResponsiveProp$4<MarginValue>;
212
+ marginEnd?: MarginValue | ResponsiveProp$4<MarginValue>;
186
213
  }
187
214
  declare const Box: React$1.ForwardRefExoticComponent<BoxProps & React$1.RefAttributes<HTMLElement>>;
188
215
 
189
216
  declare const buttonVariants: (props?: ({
190
- variant?: "link" | "default" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
217
+ variant?: "default" | "link" | "destructive" | "outline" | "secondary" | "ghost" | null | undefined;
191
218
  size?: "default" | "sm" | "lg" | "icon" | null | undefined;
192
219
  } & class_variance_authority_types.ClassProp) | undefined) => string;
193
220
  interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
@@ -196,10 +223,10 @@ interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, V
196
223
  declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
197
224
 
198
225
  declare const gridVariants: (props?: ({
199
- columns?: 2 | 1 | 12 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | null | undefined;
200
- gap?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
201
- gapX?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
202
- gapY?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
226
+ columns?: 2 | 1 | 3 | 12 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | null | undefined;
227
+ gap?: "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
228
+ gapX?: "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
229
+ gapY?: "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
203
230
  align?: "center" | "start" | "end" | "baseline" | "stretch" | null | undefined;
204
231
  justify?: "center" | "start" | "end" | "stretch" | null | undefined;
205
232
  } & class_variance_authority_types.ClassProp) | undefined) => string;
@@ -215,8 +242,8 @@ interface GridProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "column
215
242
  }
216
243
  declare const Grid: React$1.ForwardRefExoticComponent<GridProps & React$1.RefAttributes<HTMLDivElement>>;
217
244
  declare const gridColumnVariants: (props?: ({
218
- span?: 2 | 1 | 12 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | null | undefined;
219
- start?: 2 | 1 | 12 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | null | undefined;
245
+ span?: 2 | 1 | 3 | 12 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | null | undefined;
246
+ start?: 2 | 1 | 3 | 12 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | null | undefined;
220
247
  } & class_variance_authority_types.ClassProp) | undefined) => string;
221
248
  type SpanValue = 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12;
222
249
  interface ResponsiveSpan {
@@ -232,53 +259,85 @@ interface GridColumnProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "
232
259
  declare const GridColumn: React$1.ForwardRefExoticComponent<GridColumnProps & React$1.RefAttributes<HTMLDivElement>>;
233
260
 
234
261
  declare const headingVariants: (props?: ({
235
- size?: 2 | 1 | "display" | 3 | 4 | 5 | 6 | "subhead-large" | "subhead-medium" | null | undefined;
236
- weight?: "bold" | "normal" | "medium" | "heavy" | "extrabold" | "semibold" | "light" | "extralight" | null | undefined;
237
- stretch?: "condensed" | "normal" | "expanded" | null | undefined;
238
- letterSpacing?: "none" | "condensed" | "normal" | null | undefined;
262
+ size?: 2 | 1 | 3 | "display" | 4 | 5 | 6 | "subhead-large" | "subhead-medium" | null | undefined;
263
+ weight?: "light" | "bold" | "normal" | "medium" | "heavy" | "extrabold" | "semibold" | "extralight" | null | undefined;
264
+ stretch?: "normal" | "condensed" | "expanded" | null | undefined;
265
+ letterSpacing?: "normal" | "none" | "condensed" | null | undefined;
239
266
  align?: "center" | "start" | "end" | null | undefined;
240
- variant?: "muted" | "default" | null | undefined;
267
+ variant?: "default" | "muted" | null | undefined;
241
268
  } & class_variance_authority_types.ClassProp) | undefined) => string;
242
269
  type HeadingTag = "h1" | "h2" | "h3" | "h4" | "h5" | "h6";
243
270
  type HeadingSize = "display" | 1 | 2 | 3 | 4 | 5 | 6 | "subhead-large" | "subhead-medium";
244
- interface ResponsiveProp$2<T> {
271
+ interface ResponsiveProp$3<T> {
245
272
  narrow?: T;
246
273
  regular?: T;
247
274
  wide?: T;
248
275
  }
249
276
  interface HeadingProps extends Omit<React$1.HTMLAttributes<HTMLHeadingElement>, "color">, Omit<VariantProps<typeof headingVariants>, "size" | "weight"> {
250
277
  as?: HeadingTag;
251
- size?: HeadingSize | ResponsiveProp$2<HeadingSize>;
252
- weight?: VariantProps<typeof headingVariants>["weight"] | ResponsiveProp$2<NonNullable<VariantProps<typeof headingVariants>["weight"]>>;
278
+ size?: HeadingSize | ResponsiveProp$3<HeadingSize>;
279
+ weight?: VariantProps<typeof headingVariants>["weight"] | ResponsiveProp$3<NonNullable<VariantProps<typeof headingVariants>["weight"]>>;
253
280
  }
254
281
  declare const Heading: React$1.ForwardRefExoticComponent<HeadingProps & React$1.RefAttributes<HTMLHeadingElement>>;
255
282
 
256
283
  declare const textVariants: (props?: ({
257
284
  size?: 400 | 100 | 200 | 300 | 500 | 600 | 700 | null | undefined;
258
- variant?: "muted" | "default" | null | undefined;
259
- weight?: "bold" | "normal" | "medium" | "heavy" | "extrabold" | "semibold" | "light" | "extralight" | null | undefined;
285
+ variant?: "default" | "muted" | null | undefined;
286
+ weight?: "light" | "bold" | "normal" | "medium" | "heavy" | "extrabold" | "semibold" | "extralight" | null | undefined;
260
287
  align?: "center" | "start" | "end" | null | undefined;
261
288
  } & class_variance_authority_types.ClassProp) | undefined) => string;
262
289
  type TextSize = 100 | 200 | 300 | 400 | 500 | 600 | 700;
263
- interface ResponsiveProp$1<T> {
290
+ interface ResponsiveProp$2<T> {
264
291
  narrow?: T;
265
292
  regular?: T;
266
293
  wide?: T;
267
294
  }
268
295
  interface TextProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "color">, Omit<VariantProps<typeof textVariants>, "size" | "weight"> {
269
296
  as?: React$1.ElementType;
270
- size?: TextSize | ResponsiveProp$1<TextSize>;
271
- weight?: VariantProps<typeof textVariants>["weight"] | ResponsiveProp$1<NonNullable<VariantProps<typeof textVariants>["weight"]>>;
297
+ size?: TextSize | ResponsiveProp$2<TextSize>;
298
+ weight?: VariantProps<typeof textVariants>["weight"] | ResponsiveProp$2<NonNullable<VariantProps<typeof textVariants>["weight"]>>;
272
299
  }
273
300
  declare const Text: React$1.ForwardRefExoticComponent<TextProps & React$1.RefAttributes<HTMLElement>>;
274
301
 
302
+ type ResponsiveProp$1<T> = T | {
303
+ narrow?: T;
304
+ regular?: T;
305
+ wide?: T;
306
+ };
307
+ declare const sectionVariants: (props?: ({
308
+ rounded?: boolean | null | undefined;
309
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
310
+ interface SectionProps extends Omit<React$1.HTMLAttributes<HTMLElement>, "color">, VariantProps<typeof sectionVariants> {
311
+ as?: "section" | "div";
312
+ paddingBlockStart?: ResponsiveProp$1<"none" | "condensed" | "normal" | "spacious">;
313
+ paddingBlockEnd?: ResponsiveProp$1<"none" | "condensed" | "normal" | "spacious">;
314
+ backgroundColor?: ResponsiveProp$1<"default" | "subtle" | "inset"> | string;
315
+ backgroundImageSrc?: string | string[];
316
+ backgroundImageSize?: string;
317
+ backgroundImagePosition?: string;
318
+ /**
319
+ * Optional section title rendered as an h2 heading inside the container.
320
+ */
321
+ sectionTitle?: React$1.ReactNode;
322
+ /**
323
+ * Additional class names for the inner container.
324
+ */
325
+ containerClassName?: string;
326
+ /**
327
+ * When true, the inner container is full-width (no max-width constraint).
328
+ * @default false
329
+ */
330
+ fullWidth?: boolean;
331
+ }
332
+ declare const Section: React$1.ForwardRefExoticComponent<SectionProps & React$1.RefAttributes<HTMLElement>>;
333
+
275
334
  declare const stackVariants: (props?: ({
276
335
  direction?: "horizontal" | "vertical" | null | undefined;
277
- gap?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
336
+ gap?: "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
278
337
  align?: "center" | "start" | "end" | "baseline" | "stretch" | null | undefined;
279
- justify?: "center" | "start" | "end" | "space-between" | "space-around" | "space-evenly" | null | undefined;
338
+ justify?: "center" | "start" | "end" | "space-around" | "space-between" | "space-evenly" | null | undefined;
280
339
  wrap?: boolean | null | undefined;
281
- padding?: "none" | "condensed" | "normal" | "spacious" | "extra-spacious" | null | undefined;
340
+ padding?: "normal" | "none" | "condensed" | "spacious" | "extra-spacious" | null | undefined;
282
341
  } & class_variance_authority_types.ClassProp) | undefined) => string;
283
342
  type DirectionValue = "horizontal" | "vertical";
284
343
  type GapValue = "none" | "condensed" | "normal" | "spacious" | "extra-spacious";
@@ -583,7 +642,7 @@ declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCard
583
642
 
584
643
  declare const Input: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, "ref"> & React$1.RefAttributes<HTMLInputElement>>;
585
644
 
586
- declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
645
+ declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "containerClassName" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "noScriptCSSFallback"> & {
587
646
  value?: string;
588
647
  onChange?: (newValue: string) => unknown;
589
648
  maxLength: number;
@@ -596,7 +655,7 @@ declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.Inp
596
655
  } & {
597
656
  render: (props: input_otp.RenderProps) => React$1.ReactNode;
598
657
  children?: never;
599
- } & React$1.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
658
+ } & React$1.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "containerClassName" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "noScriptCSSFallback"> & {
600
659
  value?: string;
601
660
  onChange?: (newValue: string) => unknown;
602
661
  maxLength: number;
@@ -718,7 +777,7 @@ declare const SheetClose: React$1.ForwardRefExoticComponent<DialogPrimitive.Dial
718
777
  declare const SheetPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
719
778
  declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
720
779
  declare const sheetVariants: (props?: ({
721
- side?: "left" | "right" | "top" | "bottom" | null | undefined;
780
+ side?: "bottom" | "left" | "right" | "top" | null | undefined;
722
781
  } & class_variance_authority_types.ClassProp) | undefined) => string;
723
782
  interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>, VariantProps<typeof sheetVariants> {
724
783
  }
@@ -846,4 +905,4 @@ declare const ToggleGroupItem: React$1.ForwardRefExoticComponent<Omit<ToggleGrou
846
905
  size?: "default" | "sm" | "lg" | null | undefined;
847
906
  } & class_variance_authority_types.ClassProp) | undefined) => string> & React$1.RefAttributes<HTMLButtonElement>>;
848
907
 
849
- 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, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, CalendarDayButton, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, 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, 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, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Grid, GridColumn, type GridColumnProps, type GridProps, Heading, type HeadingProps, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, 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, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Toaster$1 as Sonner, Stack, type StackProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Text, type TextProps, Textarea, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, boxVariants, buttonVariants, cn, gridColumnVariants, gridVariants, headingVariants, navigationMenuTriggerStyle, stackVariants, textVariants, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
908
+ 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, BaseStyles, type BaseStylesProps, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, CalendarDayButton, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, 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, 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, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Grid, GridColumn, type GridColumnProps, type GridProps, Heading, type HeadingProps, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, Section, type SectionProps, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Toaster$1 as Sonner, Stack, type StackProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Text, type TextProps, Textarea, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, badgeVariants, boxVariants, buttonVariants, cn, gridColumnVariants, gridVariants, headingVariants, navigationMenuTriggerStyle, sectionVariants, stackVariants, textVariants, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };