@juanarenas31/metrik-ui 0.3.0 → 0.3.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 +62 -1
- package/dist/index.js +114 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -342,6 +342,26 @@ declare const CommandItem: react.ForwardRefExoticComponent<Omit<{
|
|
|
342
342
|
} & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
343
343
|
declare function CommandShortcut({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
344
344
|
|
|
345
|
+
declare const containerVariants: (props?: ({
|
|
346
|
+
size?: "sm" | "md" | "lg" | "xl" | "2xl" | "prose" | "full" | null | undefined;
|
|
347
|
+
padding?: "none" | "sm" | "md" | "lg" | null | undefined;
|
|
348
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
349
|
+
type ContainerVariants = VariantProps<typeof containerVariants>;
|
|
350
|
+
|
|
351
|
+
interface ContainerProps extends HTMLAttributes<HTMLDivElement>, ContainerVariants {
|
|
352
|
+
/** Renderiza el hijo en lugar de un `<div>` (Radix Slot). */
|
|
353
|
+
asChild?: boolean;
|
|
354
|
+
}
|
|
355
|
+
/**
|
|
356
|
+
* Contenedor centrado con ancho máximo y padding horizontal responsive.
|
|
357
|
+
* La pieza base para componer el layout de una página.
|
|
358
|
+
*
|
|
359
|
+
* @example
|
|
360
|
+
* <Container size="lg">…</Container>
|
|
361
|
+
* <Container asChild><main>…</main></Container>
|
|
362
|
+
*/
|
|
363
|
+
declare const Container: react.ForwardRefExoticComponent<ContainerProps & react.RefAttributes<HTMLDivElement>>;
|
|
364
|
+
|
|
345
365
|
declare const ContextMenu: react.FC<ContextMenuPrimitive.ContextMenuProps>;
|
|
346
366
|
declare const ContextMenuTrigger: react.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuTriggerProps & react.RefAttributes<HTMLSpanElement>>;
|
|
347
367
|
declare const ContextMenuGroup: react.ForwardRefExoticComponent<ContextMenuPrimitive.ContextMenuGroupProps & react.RefAttributes<HTMLDivElement>>;
|
|
@@ -496,6 +516,26 @@ declare const FormControl: react.ForwardRefExoticComponent<Omit<_radix_ui_react_
|
|
|
496
516
|
declare function FormDescription({ className, ...props }: HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element;
|
|
497
517
|
declare function FormMessage({ className, children, ...props }: HTMLAttributes<HTMLParagraphElement>): react_jsx_runtime.JSX.Element | null;
|
|
498
518
|
|
|
519
|
+
declare const gridVariants: (props?: ({
|
|
520
|
+
cols?: 1 | 2 | 3 | 4 | 5 | 6 | 12 | null | undefined;
|
|
521
|
+
gap?: "none" | "sm" | "md" | "lg" | "xl" | "xs" | null | undefined;
|
|
522
|
+
flow?: "col" | "row" | "dense" | null | undefined;
|
|
523
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
524
|
+
type GridVariants = VariantProps<typeof gridVariants>;
|
|
525
|
+
|
|
526
|
+
interface GridProps extends HTMLAttributes<HTMLDivElement>, GridVariants {
|
|
527
|
+
asChild?: boolean;
|
|
528
|
+
}
|
|
529
|
+
/**
|
|
530
|
+
* Layout en cuadrícula CSS, con columnas y `gap` tipados. Para columnas
|
|
531
|
+
* responsive usa `className` (p. ej. `className="md:grid-cols-3"`).
|
|
532
|
+
*
|
|
533
|
+
* @example
|
|
534
|
+
* <Grid cols={3} gap="lg">…</Grid>
|
|
535
|
+
* <Grid cols={1} className="md:grid-cols-2 lg:grid-cols-4">…</Grid>
|
|
536
|
+
*/
|
|
537
|
+
declare const Grid: react.ForwardRefExoticComponent<GridProps & react.RefAttributes<HTMLDivElement>>;
|
|
538
|
+
|
|
499
539
|
declare const HoverCard: react.FC<HoverCardPrimitive.HoverCardProps>;
|
|
500
540
|
declare const HoverCardTrigger: react.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & react.RefAttributes<HTMLAnchorElement>>;
|
|
501
541
|
declare const HoverCardContent: react.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & react.RefAttributes<HTMLDivElement>, "ref"> & react.RefAttributes<HTMLDivElement>>;
|
|
@@ -614,6 +654,27 @@ interface SpinnerProps extends SVGAttributes<SVGSVGElement> {
|
|
|
614
654
|
}
|
|
615
655
|
declare const Spinner: react.ForwardRefExoticComponent<SpinnerProps & react.RefAttributes<SVGSVGElement>>;
|
|
616
656
|
|
|
657
|
+
declare const stackVariants: (props?: ({
|
|
658
|
+
direction?: "col" | "row" | "row-reverse" | "col-reverse" | null | undefined;
|
|
659
|
+
gap?: "none" | "sm" | "md" | "lg" | "xl" | "xs" | null | undefined;
|
|
660
|
+
align?: "center" | "end" | "start" | "baseline" | "stretch" | null | undefined;
|
|
661
|
+
justify?: "center" | "end" | "start" | "between" | "around" | "evenly" | null | undefined;
|
|
662
|
+
wrap?: boolean | null | undefined;
|
|
663
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
664
|
+
type StackVariants = VariantProps<typeof stackVariants>;
|
|
665
|
+
|
|
666
|
+
interface StackProps extends HTMLAttributes<HTMLDivElement>, StackVariants {
|
|
667
|
+
asChild?: boolean;
|
|
668
|
+
}
|
|
669
|
+
/**
|
|
670
|
+
* Layout flex en una dirección, con `gap`, alineación y justificación tipados.
|
|
671
|
+
*
|
|
672
|
+
* @example
|
|
673
|
+
* <Stack gap="lg">…</Stack>
|
|
674
|
+
* <Stack direction="row" align="center" justify="between">…</Stack>
|
|
675
|
+
*/
|
|
676
|
+
declare const Stack: react.ForwardRefExoticComponent<StackProps & react.RefAttributes<HTMLDivElement>>;
|
|
677
|
+
|
|
617
678
|
interface SwitchProps extends ComponentPropsWithoutRef<typeof SwitchPrimitive.Root> {
|
|
618
679
|
}
|
|
619
680
|
declare const Switch: react.ForwardRefExoticComponent<SwitchProps & react.RefAttributes<HTMLButtonElement>>;
|
|
@@ -735,4 +796,4 @@ declare function useClickOutside<T extends HTMLElement>(ref: RefObject<T | null>
|
|
|
735
796
|
|
|
736
797
|
declare function useToggle(initial?: boolean): [boolean, () => void, (v: boolean) => void];
|
|
737
798
|
|
|
738
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertVariants, Avatar, AvatarFallback, AvatarImage, type AvatarProps, Badge, type BadgeProps, type BadgeVariants, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, type ButtonVariants, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, type ChipOption, ChipSelector, type ChipSelectorProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, type ComboboxOption, type ComboboxProps, 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 DataTableProps, DateRangePill, type DateRangePillProps, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, type DisclosureControls, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, FileDropzone, type FileDropzoneProps, FloatingDatePicker, type FloatingDatePickerProps, FloatingFileInput, type FloatingFileInputProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, FloatingTextarea, type FloatingTextareaProps, Form, FormControl, FormDescription, FormField, type FormFieldProps, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, type InputProps, type InputVariants, Label, type LabelProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, type ProgressProps, RadioGroup, RadioGroupItem, RichTextEditor, type RichTextEditorProps, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, type SkeletonProps, Slider, Spinner, type SpinnerProps, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, type Theme, Toaster, Toggle, ToggleGroup, ToggleGroupItem, type ToggleProps, type ToggleVariants, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, VisuallyHidden, alertVariants, badgeVariants, buttonVariants, cn, inputVariants, toggleVariants, useBreakpoint, useChart, useClickOutside, useDebounce, useDisclosure, useLocalStorage, useMediaQuery, useTheme, useToggle };
|
|
799
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertVariants, Avatar, AvatarFallback, AvatarImage, type AvatarProps, Badge, type BadgeProps, type BadgeVariants, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, type ButtonVariants, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, type ChipOption, ChipSelector, type ChipSelectorProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, type ContainerProps, type ContainerVariants, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, type DataTableProps, DateRangePill, type DateRangePillProps, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, type DisclosureControls, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, FileDropzone, type FileDropzoneProps, FloatingDatePicker, type FloatingDatePickerProps, FloatingFileInput, type FloatingFileInputProps, FloatingInput, type FloatingInputProps, FloatingSelect, type FloatingSelectProps, FloatingTextarea, type FloatingTextareaProps, Form, FormControl, FormDescription, FormField, type FormFieldProps, FormLabel, FormMessage, Grid, type GridProps, type GridVariants, HoverCard, HoverCardContent, HoverCardTrigger, Input, type InputProps, type InputVariants, Label, type LabelProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, type ProgressProps, RadioGroup, RadioGroupItem, RichTextEditor, type RichTextEditorProps, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, type SeparatorProps, Sheet, SheetClose, SheetContent, type SheetContentProps, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, type SkeletonProps, Slider, Spinner, type SpinnerProps, Stack, type StackProps, type StackVariants, Switch, type SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, type Theme, Toaster, Toggle, ToggleGroup, ToggleGroupItem, type ToggleProps, type ToggleVariants, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, VisuallyHidden, alertVariants, badgeVariants, buttonVariants, cn, containerVariants, gridVariants, inputVariants, stackVariants, toggleVariants, useBreakpoint, useChart, useClickOutside, useDebounce, useDisclosure, useLocalStorage, useMediaQuery, useTheme, useToggle };
|
package/dist/index.js
CHANGED
|
@@ -939,6 +939,34 @@ var Combobox = forwardRef(function Combobox2({
|
|
|
939
939
|
] }) })
|
|
940
940
|
] });
|
|
941
941
|
});
|
|
942
|
+
|
|
943
|
+
// src/components/container/container.variants.ts
|
|
944
|
+
var containerVariants = cva("mx-auto w-full", {
|
|
945
|
+
variants: {
|
|
946
|
+
/** Ancho máximo del contenido. */
|
|
947
|
+
size: {
|
|
948
|
+
sm: "max-w-2xl",
|
|
949
|
+
md: "max-w-4xl",
|
|
950
|
+
lg: "max-w-6xl",
|
|
951
|
+
xl: "max-w-7xl",
|
|
952
|
+
"2xl": "max-w-[1536px]",
|
|
953
|
+
prose: "max-w-prose",
|
|
954
|
+
full: "max-w-full"
|
|
955
|
+
},
|
|
956
|
+
/** Padding horizontal responsive. */
|
|
957
|
+
padding: {
|
|
958
|
+
none: "",
|
|
959
|
+
sm: "px-3",
|
|
960
|
+
md: "px-4 sm:px-6",
|
|
961
|
+
lg: "px-4 sm:px-6 lg:px-8"
|
|
962
|
+
}
|
|
963
|
+
},
|
|
964
|
+
defaultVariants: { size: "xl", padding: "lg" }
|
|
965
|
+
});
|
|
966
|
+
var Container = forwardRef(function Container2({ className, size, padding, asChild, ...props }, ref) {
|
|
967
|
+
const Comp = asChild ? Slot : "div";
|
|
968
|
+
return /* @__PURE__ */ jsx(Comp, { ref, className: cn(containerVariants({ size, padding }), className), ...props });
|
|
969
|
+
});
|
|
942
970
|
var ContextMenu = ContextMenuPrimitive.Root;
|
|
943
971
|
var ContextMenuTrigger = ContextMenuPrimitive.Trigger;
|
|
944
972
|
var ContextMenuGroup = ContextMenuPrimitive.Group;
|
|
@@ -1731,6 +1759,40 @@ function FormMessage({ className, children, ...props }) {
|
|
|
1731
1759
|
if (!body) return null;
|
|
1732
1760
|
return /* @__PURE__ */ jsx("p", { id: `${id}-msg`, className: cn("text-xs font-medium text-danger", className), ...props, children: body });
|
|
1733
1761
|
}
|
|
1762
|
+
|
|
1763
|
+
// src/components/grid/grid.variants.ts
|
|
1764
|
+
var gridVariants = cva("grid", {
|
|
1765
|
+
variants: {
|
|
1766
|
+
/** Número de columnas. Para responsive, añade clases vía `className`. */
|
|
1767
|
+
cols: {
|
|
1768
|
+
1: "grid-cols-1",
|
|
1769
|
+
2: "grid-cols-2",
|
|
1770
|
+
3: "grid-cols-3",
|
|
1771
|
+
4: "grid-cols-4",
|
|
1772
|
+
5: "grid-cols-5",
|
|
1773
|
+
6: "grid-cols-6",
|
|
1774
|
+
12: "grid-cols-12"
|
|
1775
|
+
},
|
|
1776
|
+
gap: {
|
|
1777
|
+
none: "gap-0",
|
|
1778
|
+
xs: "gap-1",
|
|
1779
|
+
sm: "gap-2",
|
|
1780
|
+
md: "gap-4",
|
|
1781
|
+
lg: "gap-6",
|
|
1782
|
+
xl: "gap-8"
|
|
1783
|
+
},
|
|
1784
|
+
flow: {
|
|
1785
|
+
row: "grid-flow-row",
|
|
1786
|
+
col: "grid-flow-col",
|
|
1787
|
+
dense: "grid-flow-row-dense"
|
|
1788
|
+
}
|
|
1789
|
+
},
|
|
1790
|
+
defaultVariants: { cols: 1, gap: "md" }
|
|
1791
|
+
});
|
|
1792
|
+
var Grid = forwardRef(function Grid2({ className, cols, gap, flow, asChild, ...props }, ref) {
|
|
1793
|
+
const Comp = asChild ? Slot : "div";
|
|
1794
|
+
return /* @__PURE__ */ jsx(Comp, { ref, className: cn(gridVariants({ cols, gap, flow }), className), ...props });
|
|
1795
|
+
});
|
|
1734
1796
|
var HoverCard = HoverCardPrimitive.Root;
|
|
1735
1797
|
var HoverCardTrigger = HoverCardPrimitive.Trigger;
|
|
1736
1798
|
var HoverCardContent = forwardRef(function HoverCardContent2({ className, align = "center", sideOffset = 6, ...props }, ref) {
|
|
@@ -2249,6 +2311,57 @@ var Spinner = forwardRef(function Spinner2({ size = "md", label = "Cargando", cl
|
|
|
2249
2311
|
}
|
|
2250
2312
|
);
|
|
2251
2313
|
});
|
|
2314
|
+
|
|
2315
|
+
// src/components/stack/stack.variants.ts
|
|
2316
|
+
var stackVariants = cva("flex", {
|
|
2317
|
+
variants: {
|
|
2318
|
+
direction: {
|
|
2319
|
+
row: "flex-row",
|
|
2320
|
+
col: "flex-col",
|
|
2321
|
+
"row-reverse": "flex-row-reverse",
|
|
2322
|
+
"col-reverse": "flex-col-reverse"
|
|
2323
|
+
},
|
|
2324
|
+
gap: {
|
|
2325
|
+
none: "gap-0",
|
|
2326
|
+
xs: "gap-1",
|
|
2327
|
+
sm: "gap-2",
|
|
2328
|
+
md: "gap-4",
|
|
2329
|
+
lg: "gap-6",
|
|
2330
|
+
xl: "gap-8"
|
|
2331
|
+
},
|
|
2332
|
+
align: {
|
|
2333
|
+
start: "items-start",
|
|
2334
|
+
center: "items-center",
|
|
2335
|
+
end: "items-end",
|
|
2336
|
+
stretch: "items-stretch",
|
|
2337
|
+
baseline: "items-baseline"
|
|
2338
|
+
},
|
|
2339
|
+
justify: {
|
|
2340
|
+
start: "justify-start",
|
|
2341
|
+
center: "justify-center",
|
|
2342
|
+
end: "justify-end",
|
|
2343
|
+
between: "justify-between",
|
|
2344
|
+
around: "justify-around",
|
|
2345
|
+
evenly: "justify-evenly"
|
|
2346
|
+
},
|
|
2347
|
+
wrap: {
|
|
2348
|
+
true: "flex-wrap",
|
|
2349
|
+
false: "flex-nowrap"
|
|
2350
|
+
}
|
|
2351
|
+
},
|
|
2352
|
+
defaultVariants: { direction: "col", gap: "md", align: "stretch", justify: "start" }
|
|
2353
|
+
});
|
|
2354
|
+
var Stack = forwardRef(function Stack2({ className, direction, gap, align, justify, wrap, asChild, ...props }, ref) {
|
|
2355
|
+
const Comp = asChild ? Slot : "div";
|
|
2356
|
+
return /* @__PURE__ */ jsx(
|
|
2357
|
+
Comp,
|
|
2358
|
+
{
|
|
2359
|
+
ref,
|
|
2360
|
+
className: cn(stackVariants({ direction, gap, align, justify, wrap }), className),
|
|
2361
|
+
...props
|
|
2362
|
+
}
|
|
2363
|
+
);
|
|
2364
|
+
});
|
|
2252
2365
|
var Switch = forwardRef(
|
|
2253
2366
|
function Switch2({ className, ...props }, ref) {
|
|
2254
2367
|
return /* @__PURE__ */ jsx(
|
|
@@ -2521,6 +2634,6 @@ function useToggle(initial = false) {
|
|
|
2521
2634
|
return [value, toggle, setValue];
|
|
2522
2635
|
}
|
|
2523
2636
|
|
|
2524
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, ChipSelector, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, 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, DateRangePill, 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, EmptyState, FileDropzone, FloatingDatePicker, FloatingFileInput, FloatingInput, FloatingSelect, FloatingTextarea, Form, FormControl, FormDescription, FormField, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, Label3 as Label, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup3 as RadioGroup, RadioGroupItem, RichTextEditor, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator4 as Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, VisuallyHidden, alertVariants, badgeVariants, buttonVariants, cn, inputVariants, toggleVariants, useBreakpoint, useChart, useClickOutside, useDebounce, useDisclosure, useLocalStorage, useMediaQuery, useTheme, useToggle };
|
|
2637
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, ChipSelector, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Container, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DataTable, DateRangePill, 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, EmptyState, FileDropzone, FloatingDatePicker, FloatingFileInput, FloatingInput, FloatingSelect, FloatingTextarea, Form, FormControl, FormDescription, FormField, FormLabel, FormMessage, Grid, HoverCard, HoverCardContent, HoverCardTrigger, Input, Label3 as Label, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup3 as RadioGroup, RadioGroupItem, RichTextEditor, ScrollArea, ScrollBar, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator4 as Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Slider, Spinner, Stack, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, VisuallyHidden, alertVariants, badgeVariants, buttonVariants, cn, containerVariants, gridVariants, inputVariants, stackVariants, toggleVariants, useBreakpoint, useChart, useClickOutside, useDebounce, useDisclosure, useLocalStorage, useMediaQuery, useTheme, useToggle };
|
|
2525
2638
|
//# sourceMappingURL=index.js.map
|
|
2526
2639
|
//# sourceMappingURL=index.js.map
|