@pos-360/horizon 0.15.0 → 0.16.0

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.mjs CHANGED
@@ -1,6 +1,6 @@
1
- export { Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, ColumnPicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormDescription, FormField, FormLabel, FormMessage, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, SegmentedControl, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toggle, buttonVariants, segmentedControlItemVariants, segmentedControlVariants, separatorVariants, switchLabelVariants, switchThumbVariants, switchTrackVariants, toggleGroupVariants, toggleItemVariants, useColumnVisibility, useFormContext, useFormFieldContext, useTableSelection } from './chunk-6YUIM6WB.mjs';
2
- export { AnimatedButton, ChartRenderer, CompactPanel, Dashboard, DashboardPanel, Globe, Input, LargePanel, MediumPanel, Moon, Orbit, Rocket, SideNav, SideNavFooter, SideNavHeader, SideNavItem, SideNavSection, Sparkles, Star, StatDisplay, TableRenderer, TemplateSelector, TextButton, Toast, useDashboardContext, useSideNavContext } from './chunk-A4QVL4JL.mjs';
3
- export { Badge, Caption, Code, Heading, Label, Text, badgeVariants, captionVariants, cn, codeVariants, headingVariants, labelVariants, textVariants } from './chunk-E3UN74IA.mjs';
1
+ export { Button, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, ColumnSelection, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, FormDescription, FormField, FormLabel, FormMessage, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, SegmentedControl, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toggle, buttonVariants, segmentedControlItemVariants, segmentedControlVariants, separatorVariants, switchLabelVariants, switchThumbVariants, switchTrackVariants, toggleGroupVariants, toggleItemVariants, useColumnVisibility, useFormContext, useFormFieldContext, useTableSelection } from './chunk-KQYOZC7B.mjs';
2
+ export { AnimatedButton, ChartRenderer, CompactPanel, Dashboard, DashboardPanel, Globe, Input, LargePanel, MediumPanel, Moon, Orbit, Rocket, SideNav, SideNavFooter, SideNavHeader, SideNavItem, SideNavSection, Sparkles, Star, StatDisplay, TableRenderer, TemplateSelector, TextButton, Toast, useDashboardContext, useSideNavContext } from './chunk-G36NTARE.mjs';
3
+ export { Badge, Caption, Code, Heading, Label, Text, badgeVariants, captionVariants, cn, codeVariants, headingVariants, labelVariants, textVariants } from './chunk-THQLVDXH.mjs';
4
4
  export { ArrowRightIcon, CheckIcon, PlusIcon, SendIcon, TrashIcon } from './chunk-2B2BWI5A.mjs';
5
5
  export { useToast } from './chunk-BNOZCJOK.mjs';
6
6
  import './chunk-WFBSFUC6.mjs';
@@ -21,8 +21,8 @@ interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<
21
21
  declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
22
22
 
23
23
  declare const buttonVariants: (props?: ({
24
- variant?: "default" | "secondary" | "destructive" | "outline" | "link" | "ghost" | null | undefined;
25
- size?: "default" | "sm" | "lg" | "icon" | null | undefined;
24
+ variant?: "link" | "default" | "secondary" | "destructive" | "outline" | "ghost" | null | undefined;
25
+ size?: "sm" | "lg" | "default" | "icon" | null | undefined;
26
26
  } & class_variance_authority_types.ClassProp) | undefined) => string;
27
27
  interface BaseButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
28
28
  asChild?: boolean;
@@ -295,13 +295,14 @@ declare function useColumnVisibility<T = any>(columns: ColumnDef<T>[], options?:
295
295
  setVisibleColumns: (cols: string[]) => void;
296
296
  };
297
297
 
298
- interface ColumnPickerProps<T = any> {
298
+ interface ColumnSelectionProps<T = any> {
299
299
  columns: ColumnDef<T>[];
300
300
  visibleColumns: string[];
301
301
  onVisibleColumnsChange: (cols: string[]) => void;
302
302
  triggerLabel?: string;
303
+ trigger?: React.ReactNode;
303
304
  }
304
- declare function ColumnPicker<T = any>({ columns, visibleColumns, onVisibleColumnsChange, triggerLabel, }: ColumnPickerProps<T>): react_jsx_runtime.JSX.Element;
305
+ declare function ColumnSelection<T = any>({ columns, visibleColumns, onVisibleColumnsChange, triggerLabel, trigger, }: ColumnSelectionProps<T>): react_jsx_runtime.JSX.Element;
305
306
 
306
307
  interface TabsProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.Root> {
307
308
  defaultValue?: string;
@@ -325,10 +326,10 @@ interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement
325
326
  declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
326
327
 
327
328
  declare const toggleGroupVariants: (props?: ({
328
- size?: "default" | "sm" | "lg" | null | undefined;
329
+ size?: "sm" | "lg" | "default" | null | undefined;
329
330
  } & class_variance_authority_types.ClassProp) | undefined) => string;
330
331
  declare const toggleItemVariants: (props?: ({
331
- size?: "default" | "sm" | "lg" | null | undefined;
332
+ size?: "sm" | "lg" | "default" | null | undefined;
332
333
  iconOnly?: boolean | null | undefined;
333
334
  } & class_variance_authority_types.ClassProp) | undefined) => string;
334
335
  type ToggleRadius = "none" | "sm" | "md" | "lg" | "full";
@@ -349,10 +350,10 @@ interface ToggleProps extends Omit<React.ComponentPropsWithoutRef<typeof ToggleG
349
350
  declare function Toggle({ className, options, value, onChange, size, radius, ...props }: ToggleProps): react_jsx_runtime.JSX.Element;
350
351
 
351
352
  declare const segmentedControlVariants: (props?: ({
352
- size?: "default" | "sm" | "lg" | null | undefined;
353
+ size?: "sm" | "lg" | "default" | null | undefined;
353
354
  } & class_variance_authority_types.ClassProp) | undefined) => string;
354
355
  declare const segmentedControlItemVariants: (props?: ({
355
- size?: "default" | "sm" | "lg" | null | undefined;
356
+ size?: "sm" | "lg" | "default" | null | undefined;
356
357
  } & class_variance_authority_types.ClassProp) | undefined) => string;
357
358
  type SegmentedControlRadius = "none" | "sm" | "md" | "lg" | "full";
358
359
  interface SegmentedControlOption {
@@ -369,13 +370,13 @@ interface SegmentedControlProps extends Omit<React.ComponentPropsWithoutRef<type
369
370
  declare function SegmentedControl({ className, options, value, onChange, size, radius, ...props }: SegmentedControlProps): react_jsx_runtime.JSX.Element;
370
371
 
371
372
  declare const switchTrackVariants: (props?: ({
372
- size?: "default" | "sm" | "lg" | null | undefined;
373
+ size?: "sm" | "lg" | "default" | null | undefined;
373
374
  } & class_variance_authority_types.ClassProp) | undefined) => string;
374
375
  declare const switchThumbVariants: (props?: ({
375
- size?: "default" | "sm" | "lg" | null | undefined;
376
+ size?: "sm" | "lg" | "default" | null | undefined;
376
377
  } & class_variance_authority_types.ClassProp) | undefined) => string;
377
378
  declare const switchLabelVariants: (props?: ({
378
- size?: "default" | "sm" | "lg" | null | undefined;
379
+ size?: "sm" | "lg" | "default" | null | undefined;
379
380
  } & class_variance_authority_types.ClassProp) | undefined) => string;
380
381
  interface SwitchProps extends React.ComponentPropsWithoutRef<typeof SwitchPrimitive.Root>, VariantProps<typeof switchTrackVariants> {
381
382
  label?: string;
@@ -386,7 +387,7 @@ declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAtt
386
387
  declare const headingVariants: (props?: ({
387
388
  level?: 1 | 3 | 4 | 2 | 5 | 6 | null | undefined;
388
389
  weight?: "bold" | "medium" | "semibold" | "regular" | null | undefined;
389
- align?: "center" | "right" | "left" | null | undefined;
390
+ align?: "left" | "right" | "center" | null | undefined;
390
391
  } & class_variance_authority_types.ClassProp) | undefined) => string;
391
392
  type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
392
393
  interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement>, Omit<VariantProps<typeof headingVariants>, "level"> {
@@ -398,8 +399,8 @@ declare const Heading: React.ForwardRefExoticComponent<HeadingProps & React.RefA
398
399
  declare const textVariants: (props?: ({
399
400
  size?: "sm" | "lg" | "base" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | null | undefined;
400
401
  weight?: "medium" | "semibold" | "regular" | null | undefined;
401
- align?: "center" | "right" | "left" | "justify" | null | undefined;
402
- color?: "default" | "success" | "warning" | "muted" | "error" | "accent" | null | undefined;
402
+ align?: "left" | "right" | "center" | "justify" | null | undefined;
403
+ color?: "accent" | "default" | "success" | "warning" | "muted" | "error" | null | undefined;
403
404
  } & class_variance_authority_types.ClassProp) | undefined) => string;
404
405
  interface TextProps extends Omit<React.HTMLAttributes<HTMLParagraphElement>, "color">, VariantProps<typeof textVariants> {
405
406
  asChild?: boolean;
@@ -409,8 +410,8 @@ declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttribu
409
410
 
410
411
  declare const captionVariants: (props?: ({
411
412
  weight?: "medium" | "regular" | null | undefined;
412
- align?: "center" | "right" | "left" | null | undefined;
413
- color?: "default" | "success" | "warning" | "muted" | "error" | "accent" | null | undefined;
413
+ align?: "left" | "right" | "center" | null | undefined;
414
+ color?: "accent" | "default" | "success" | "warning" | "muted" | "error" | null | undefined;
414
415
  } & class_variance_authority_types.ClassProp) | undefined) => string;
415
416
  interface CaptionProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "color">, VariantProps<typeof captionVariants> {
416
417
  }
@@ -418,10 +419,10 @@ declare const Caption: React.ForwardRefExoticComponent<CaptionProps & React.RefA
418
419
 
419
420
  declare const codeVariants: (props?: ({
420
421
  variant?: "inline" | "block" | null | undefined;
421
- color?: "default" | "success" | "warning" | "error" | "accent" | null | undefined;
422
+ color?: "accent" | "default" | "success" | "warning" | "error" | null | undefined;
422
423
  } & class_variance_authority_types.ClassProp) | undefined) => string;
423
424
  interface CodeProps extends Omit<React.HTMLAttributes<HTMLElement>, "color">, VariantProps<typeof codeVariants> {
424
425
  }
425
426
  declare const Code: React.ForwardRefExoticComponent<CodeProps & React.RefAttributes<HTMLElement>>;
426
427
 
427
- export { Badge, type BadgeProps, Button, type ButtonProps, Caption, type CaptionProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Code, type CodeProps, type ColumnDef, ColumnPicker, type ColumnPickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, type FormFieldProps, FormLabel, type FormLabelProps, FormMessage, type FormMessageProps, type FormProps, Heading, type HeadingProps, Label, type LabelProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SegmentedControlRadius, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, type TableCellProps, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, type TabsVariant, Text, type TextProps, Textarea, type TextareaProps, Toggle, type ToggleOption, type ToggleProps, type ToggleRadius, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, segmentedControlItemVariants, segmentedControlVariants, separatorVariants, switchLabelVariants, switchThumbVariants, switchTrackVariants, textVariants, toggleGroupVariants, toggleItemVariants, useColumnVisibility, useFormContext, useFormFieldContext, useTableSelection };
428
+ export { Badge, type BadgeProps, Button, type ButtonProps, Caption, type CaptionProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Code, type CodeProps, type ColumnDef, ColumnSelection, type ColumnSelectionProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, type FormFieldProps, FormLabel, type FormLabelProps, FormMessage, type FormMessageProps, type FormProps, Heading, type HeadingProps, Label, type LabelProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SegmentedControlRadius, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, type TableCellProps, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, type TabsVariant, Text, type TextProps, Textarea, type TextareaProps, Toggle, type ToggleOption, type ToggleProps, type ToggleRadius, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, segmentedControlItemVariants, segmentedControlVariants, separatorVariants, switchLabelVariants, switchThumbVariants, switchTrackVariants, textVariants, toggleGroupVariants, toggleItemVariants, useColumnVisibility, useFormContext, useFormFieldContext, useTableSelection };
@@ -21,8 +21,8 @@ interface BadgeProps extends React.HTMLAttributes<HTMLDivElement>, VariantProps<
21
21
  declare function Badge({ className, variant, ...props }: BadgeProps): react_jsx_runtime.JSX.Element;
22
22
 
23
23
  declare const buttonVariants: (props?: ({
24
- variant?: "default" | "secondary" | "destructive" | "outline" | "link" | "ghost" | null | undefined;
25
- size?: "default" | "sm" | "lg" | "icon" | null | undefined;
24
+ variant?: "link" | "default" | "secondary" | "destructive" | "outline" | "ghost" | null | undefined;
25
+ size?: "sm" | "lg" | "default" | "icon" | null | undefined;
26
26
  } & class_variance_authority_types.ClassProp) | undefined) => string;
27
27
  interface BaseButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
28
28
  asChild?: boolean;
@@ -295,13 +295,14 @@ declare function useColumnVisibility<T = any>(columns: ColumnDef<T>[], options?:
295
295
  setVisibleColumns: (cols: string[]) => void;
296
296
  };
297
297
 
298
- interface ColumnPickerProps<T = any> {
298
+ interface ColumnSelectionProps<T = any> {
299
299
  columns: ColumnDef<T>[];
300
300
  visibleColumns: string[];
301
301
  onVisibleColumnsChange: (cols: string[]) => void;
302
302
  triggerLabel?: string;
303
+ trigger?: React.ReactNode;
303
304
  }
304
- declare function ColumnPicker<T = any>({ columns, visibleColumns, onVisibleColumnsChange, triggerLabel, }: ColumnPickerProps<T>): react_jsx_runtime.JSX.Element;
305
+ declare function ColumnSelection<T = any>({ columns, visibleColumns, onVisibleColumnsChange, triggerLabel, trigger, }: ColumnSelectionProps<T>): react_jsx_runtime.JSX.Element;
305
306
 
306
307
  interface TabsProps extends React.ComponentPropsWithoutRef<typeof TabsPrimitive.Root> {
307
308
  defaultValue?: string;
@@ -325,10 +326,10 @@ interface TextareaProps extends React.TextareaHTMLAttributes<HTMLTextAreaElement
325
326
  declare const Textarea: React.ForwardRefExoticComponent<TextareaProps & React.RefAttributes<HTMLTextAreaElement>>;
326
327
 
327
328
  declare const toggleGroupVariants: (props?: ({
328
- size?: "default" | "sm" | "lg" | null | undefined;
329
+ size?: "sm" | "lg" | "default" | null | undefined;
329
330
  } & class_variance_authority_types.ClassProp) | undefined) => string;
330
331
  declare const toggleItemVariants: (props?: ({
331
- size?: "default" | "sm" | "lg" | null | undefined;
332
+ size?: "sm" | "lg" | "default" | null | undefined;
332
333
  iconOnly?: boolean | null | undefined;
333
334
  } & class_variance_authority_types.ClassProp) | undefined) => string;
334
335
  type ToggleRadius = "none" | "sm" | "md" | "lg" | "full";
@@ -349,10 +350,10 @@ interface ToggleProps extends Omit<React.ComponentPropsWithoutRef<typeof ToggleG
349
350
  declare function Toggle({ className, options, value, onChange, size, radius, ...props }: ToggleProps): react_jsx_runtime.JSX.Element;
350
351
 
351
352
  declare const segmentedControlVariants: (props?: ({
352
- size?: "default" | "sm" | "lg" | null | undefined;
353
+ size?: "sm" | "lg" | "default" | null | undefined;
353
354
  } & class_variance_authority_types.ClassProp) | undefined) => string;
354
355
  declare const segmentedControlItemVariants: (props?: ({
355
- size?: "default" | "sm" | "lg" | null | undefined;
356
+ size?: "sm" | "lg" | "default" | null | undefined;
356
357
  } & class_variance_authority_types.ClassProp) | undefined) => string;
357
358
  type SegmentedControlRadius = "none" | "sm" | "md" | "lg" | "full";
358
359
  interface SegmentedControlOption {
@@ -369,13 +370,13 @@ interface SegmentedControlProps extends Omit<React.ComponentPropsWithoutRef<type
369
370
  declare function SegmentedControl({ className, options, value, onChange, size, radius, ...props }: SegmentedControlProps): react_jsx_runtime.JSX.Element;
370
371
 
371
372
  declare const switchTrackVariants: (props?: ({
372
- size?: "default" | "sm" | "lg" | null | undefined;
373
+ size?: "sm" | "lg" | "default" | null | undefined;
373
374
  } & class_variance_authority_types.ClassProp) | undefined) => string;
374
375
  declare const switchThumbVariants: (props?: ({
375
- size?: "default" | "sm" | "lg" | null | undefined;
376
+ size?: "sm" | "lg" | "default" | null | undefined;
376
377
  } & class_variance_authority_types.ClassProp) | undefined) => string;
377
378
  declare const switchLabelVariants: (props?: ({
378
- size?: "default" | "sm" | "lg" | null | undefined;
379
+ size?: "sm" | "lg" | "default" | null | undefined;
379
380
  } & class_variance_authority_types.ClassProp) | undefined) => string;
380
381
  interface SwitchProps extends React.ComponentPropsWithoutRef<typeof SwitchPrimitive.Root>, VariantProps<typeof switchTrackVariants> {
381
382
  label?: string;
@@ -386,7 +387,7 @@ declare const Switch: React.ForwardRefExoticComponent<SwitchProps & React.RefAtt
386
387
  declare const headingVariants: (props?: ({
387
388
  level?: 1 | 3 | 4 | 2 | 5 | 6 | null | undefined;
388
389
  weight?: "bold" | "medium" | "semibold" | "regular" | null | undefined;
389
- align?: "center" | "right" | "left" | null | undefined;
390
+ align?: "left" | "right" | "center" | null | undefined;
390
391
  } & class_variance_authority_types.ClassProp) | undefined) => string;
391
392
  type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6;
392
393
  interface HeadingProps extends React.HTMLAttributes<HTMLHeadingElement>, Omit<VariantProps<typeof headingVariants>, "level"> {
@@ -398,8 +399,8 @@ declare const Heading: React.ForwardRefExoticComponent<HeadingProps & React.RefA
398
399
  declare const textVariants: (props?: ({
399
400
  size?: "sm" | "lg" | "base" | "xs" | "xl" | "2xl" | "3xl" | "4xl" | null | undefined;
400
401
  weight?: "medium" | "semibold" | "regular" | null | undefined;
401
- align?: "center" | "right" | "left" | "justify" | null | undefined;
402
- color?: "default" | "success" | "warning" | "muted" | "error" | "accent" | null | undefined;
402
+ align?: "left" | "right" | "center" | "justify" | null | undefined;
403
+ color?: "accent" | "default" | "success" | "warning" | "muted" | "error" | null | undefined;
403
404
  } & class_variance_authority_types.ClassProp) | undefined) => string;
404
405
  interface TextProps extends Omit<React.HTMLAttributes<HTMLParagraphElement>, "color">, VariantProps<typeof textVariants> {
405
406
  asChild?: boolean;
@@ -409,8 +410,8 @@ declare const Text: React.ForwardRefExoticComponent<TextProps & React.RefAttribu
409
410
 
410
411
  declare const captionVariants: (props?: ({
411
412
  weight?: "medium" | "regular" | null | undefined;
412
- align?: "center" | "right" | "left" | null | undefined;
413
- color?: "default" | "success" | "warning" | "muted" | "error" | "accent" | null | undefined;
413
+ align?: "left" | "right" | "center" | null | undefined;
414
+ color?: "accent" | "default" | "success" | "warning" | "muted" | "error" | null | undefined;
414
415
  } & class_variance_authority_types.ClassProp) | undefined) => string;
415
416
  interface CaptionProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "color">, VariantProps<typeof captionVariants> {
416
417
  }
@@ -418,10 +419,10 @@ declare const Caption: React.ForwardRefExoticComponent<CaptionProps & React.RefA
418
419
 
419
420
  declare const codeVariants: (props?: ({
420
421
  variant?: "inline" | "block" | null | undefined;
421
- color?: "default" | "success" | "warning" | "error" | "accent" | null | undefined;
422
+ color?: "accent" | "default" | "success" | "warning" | "error" | null | undefined;
422
423
  } & class_variance_authority_types.ClassProp) | undefined) => string;
423
424
  interface CodeProps extends Omit<React.HTMLAttributes<HTMLElement>, "color">, VariantProps<typeof codeVariants> {
424
425
  }
425
426
  declare const Code: React.ForwardRefExoticComponent<CodeProps & React.RefAttributes<HTMLElement>>;
426
427
 
427
- export { Badge, type BadgeProps, Button, type ButtonProps, Caption, type CaptionProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Code, type CodeProps, type ColumnDef, ColumnPicker, type ColumnPickerProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, type FormFieldProps, FormLabel, type FormLabelProps, FormMessage, type FormMessageProps, type FormProps, Heading, type HeadingProps, Label, type LabelProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SegmentedControlRadius, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, type TableCellProps, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, type TabsVariant, Text, type TextProps, Textarea, type TextareaProps, Toggle, type ToggleOption, type ToggleProps, type ToggleRadius, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, segmentedControlItemVariants, segmentedControlVariants, separatorVariants, switchLabelVariants, switchThumbVariants, switchTrackVariants, textVariants, toggleGroupVariants, toggleItemVariants, useColumnVisibility, useFormContext, useFormFieldContext, useTableSelection };
428
+ export { Badge, type BadgeProps, Button, type ButtonProps, Caption, type CaptionProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Code, type CodeProps, type ColumnDef, ColumnSelection, type ColumnSelectionProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Form, FormControl, type FormControlProps, FormDescription, type FormDescriptionProps, FormField, type FormFieldProps, FormLabel, type FormLabelProps, FormMessage, type FormMessageProps, type FormProps, Heading, type HeadingProps, Label, type LabelProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, type SegmentedControlRadius, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Skeleton, SkeletonAvatar, SkeletonBadge, SkeletonButton, SkeletonCard, SkeletonIcon, SkeletonInput, SkeletonSubtitle, SkeletonTableRow, SkeletonTableRows, SkeletonText, SkeletonTitle, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, type TableCellProps, TableFooter, TableHead, TableHeader, TableRow, TableRowCheckbox, TableSelectAll, Tabs, TabsContent, TabsList, TabsTrigger, type TabsVariant, Text, type TextProps, Textarea, type TextareaProps, Toggle, type ToggleOption, type ToggleProps, type ToggleRadius, badgeVariants, buttonVariants, captionVariants, codeVariants, headingVariants, labelVariants, segmentedControlItemVariants, segmentedControlVariants, separatorVariants, switchLabelVariants, switchThumbVariants, switchTrackVariants, textVariants, toggleGroupVariants, toggleItemVariants, useColumnVisibility, useFormContext, useFormFieldContext, useTableSelection };