@the12company/ui 0.1.7 → 0.1.9
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 +45 -7
- package/dist/index.js +160 -21
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -520,6 +520,16 @@ declare const ContextMenuShortcut: {
|
|
|
520
520
|
displayName: string;
|
|
521
521
|
};
|
|
522
522
|
|
|
523
|
+
declare const dialogIconVariants: (props?: ({
|
|
524
|
+
size?: "sm" | "lg" | "md" | null | undefined;
|
|
525
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
526
|
+
type DialogIconProps = React$1.HTMLAttributes<HTMLDivElement> & VariantProps<typeof dialogIconVariants>;
|
|
527
|
+
/**
|
|
528
|
+
* Accent icon shell used in dialog headers (and similar callouts).
|
|
529
|
+
* Pass a Lucide (or other) icon as children; color comes from `text-primary` / `currentColor`.
|
|
530
|
+
*/
|
|
531
|
+
declare function DialogIcon({ className, size, children, ...props }: DialogIconProps): React$1.JSX.Element;
|
|
532
|
+
|
|
523
533
|
declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
|
|
524
534
|
declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
525
535
|
declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
|
|
@@ -607,7 +617,7 @@ declare const useFormField: () => {
|
|
|
607
617
|
isDirty: boolean;
|
|
608
618
|
isTouched: boolean;
|
|
609
619
|
isValidating: boolean;
|
|
610
|
-
error?: react_hook_form.FieldError;
|
|
620
|
+
error?: react_hook_form.FieldError | undefined;
|
|
611
621
|
id: string;
|
|
612
622
|
name: string;
|
|
613
623
|
formItemId: string;
|
|
@@ -626,7 +636,7 @@ declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
|
|
|
626
636
|
declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
627
637
|
declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
628
638
|
|
|
629
|
-
declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
639
|
+
declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "nonce" | "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
630
640
|
value?: string;
|
|
631
641
|
onChange?: (newValue: string) => unknown;
|
|
632
642
|
maxLength: number;
|
|
@@ -636,10 +646,11 @@ declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.Inp
|
|
|
636
646
|
pasteTransformer?: (pasted: string) => string;
|
|
637
647
|
containerClassName?: string;
|
|
638
648
|
noScriptCSSFallback?: string | null;
|
|
649
|
+
nonce?: string;
|
|
639
650
|
} & {
|
|
640
651
|
render: (props: input_otp.RenderProps) => React$1.ReactNode;
|
|
641
652
|
children?: never;
|
|
642
|
-
} & React$1.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
653
|
+
} & React$1.RefAttributes<HTMLInputElement>, "ref"> | Omit<Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "nonce" | "onChange" | "value" | "maxLength" | "textAlign" | "onComplete" | "pushPasswordManagerStrategy" | "pasteTransformer" | "containerClassName" | "noScriptCSSFallback"> & {
|
|
643
654
|
value?: string;
|
|
644
655
|
onChange?: (newValue: string) => unknown;
|
|
645
656
|
maxLength: number;
|
|
@@ -649,6 +660,7 @@ declare const InputOTP: React$1.ForwardRefExoticComponent<(Omit<Omit<React$1.Inp
|
|
|
649
660
|
pasteTransformer?: (pasted: string) => string;
|
|
650
661
|
containerClassName?: string;
|
|
651
662
|
noScriptCSSFallback?: string | null;
|
|
663
|
+
nonce?: string;
|
|
652
664
|
} & {
|
|
653
665
|
render?: never;
|
|
654
666
|
children: React$1.ReactNode;
|
|
@@ -668,6 +680,8 @@ type ListingPaginationProps = {
|
|
|
668
680
|
pageSize?: number;
|
|
669
681
|
itemLabel?: string;
|
|
670
682
|
disabled?: boolean;
|
|
683
|
+
/** When true, render even if there is only one page. */
|
|
684
|
+
showWhenSinglePage?: boolean;
|
|
671
685
|
variant?: "default" | "minimal";
|
|
672
686
|
className?: string;
|
|
673
687
|
onPageChange: (page: number) => void;
|
|
@@ -681,7 +695,7 @@ type ListingPaginationProps = {
|
|
|
681
695
|
pageAria?: (page: number) => string;
|
|
682
696
|
};
|
|
683
697
|
};
|
|
684
|
-
declare function ListingPagination({ page, totalPages, total, pageSize, itemLabel, disabled, variant, className, onPageChange, formatTotal, labels, }: ListingPaginationProps): React$1.JSX.Element | null;
|
|
698
|
+
declare function ListingPagination({ page, totalPages, total, pageSize, itemLabel, disabled, showWhenSinglePage, variant, className, onPageChange, formatTotal, labels, }: ListingPaginationProps): React$1.JSX.Element | null;
|
|
685
699
|
|
|
686
700
|
declare const MenubarMenu: (props: MenubarPrimitive.MenubarMenuProps & {
|
|
687
701
|
__scopeMenubar?: _radix_ui_react_context.Scope;
|
|
@@ -721,6 +735,25 @@ declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMe
|
|
|
721
735
|
declare const NavigationMenuViewport: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuViewportProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
722
736
|
declare const NavigationMenuIndicator: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuIndicatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
723
737
|
|
|
738
|
+
declare const noteVariants: (props?: ({
|
|
739
|
+
variant?: "muted" | "default" | null | undefined;
|
|
740
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
741
|
+
declare const noteIconVariants: (props?: class_variance_authority_types.ClassProp | undefined) => string;
|
|
742
|
+
type NoteProps = React$1.HTMLAttributes<HTMLDivElement> & VariantProps<typeof noteVariants> & {
|
|
743
|
+
icon?: React$1.ReactNode;
|
|
744
|
+
title?: React$1.ReactNode;
|
|
745
|
+
description?: React$1.ReactNode;
|
|
746
|
+
};
|
|
747
|
+
type NoteIconProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
748
|
+
/** Circular accent icon used inside {@link Note}. */
|
|
749
|
+
declare function NoteIcon({ className, children, ...props }: NoteIconProps): React$1.JSX.Element;
|
|
750
|
+
declare function NoteTitle({ className, ...props }: React$1.HTMLAttributes<HTMLParagraphElement>): React$1.JSX.Element;
|
|
751
|
+
declare function NoteDescription({ className, ...props }: React$1.HTMLAttributes<HTMLParagraphElement>): React$1.JSX.Element;
|
|
752
|
+
/**
|
|
753
|
+
* Inline help / tip callout: optional icon, title, description, and trailing actions.
|
|
754
|
+
*/
|
|
755
|
+
declare function Note({ className, variant, icon, title, description, children, ...props }: NoteProps): React$1.JSX.Element;
|
|
756
|
+
|
|
724
757
|
type PageHeaderProps = {
|
|
725
758
|
/** Optional eyebrow above the title. */
|
|
726
759
|
label?: React$1.ReactNode;
|
|
@@ -822,7 +855,7 @@ type SearchableSelectLoadResult = {
|
|
|
822
855
|
};
|
|
823
856
|
type SearchableSelectProps = {
|
|
824
857
|
value: string;
|
|
825
|
-
onChange: (id: string) => void;
|
|
858
|
+
onChange: (id: string, item?: SearchableSelectItem) => void;
|
|
826
859
|
/** Sentinel value meaning “no filter / all”. @default "all" */
|
|
827
860
|
allValue?: string;
|
|
828
861
|
allLabel: string;
|
|
@@ -844,6 +877,10 @@ type SearchableSelectProps = {
|
|
|
844
877
|
disabled?: boolean;
|
|
845
878
|
/** When this changes, cached items/labels are cleared. */
|
|
846
879
|
resetKey?: string | number;
|
|
880
|
+
/** Treat the trigger as filtered even when value is still `allValue`. */
|
|
881
|
+
forceActive?: boolean;
|
|
882
|
+
/** Called when a display label is known for the current (or newly selected) id. */
|
|
883
|
+
onResolvedLabel?: (id: string, label: string) => void;
|
|
847
884
|
emptyLabel?: string;
|
|
848
885
|
loadingLabel?: string;
|
|
849
886
|
loadingMoreLabel?: string;
|
|
@@ -853,7 +890,7 @@ type SearchableSelectProps = {
|
|
|
853
890
|
* Async searchable combobox with infinite scroll.
|
|
854
891
|
* Data loading is injected via `loadItems` — no product API coupling.
|
|
855
892
|
*/
|
|
856
|
-
declare function SearchableSelect({ value, onChange, allValue, allLabel, searchPlaceholder, loadItems, resolveLabel, pageSize, triggerClassName, icon, nestedInPopover, disabled, resetKey, emptyLabel, loadingLabel, loadingMoreLabel, debounceMs, }: SearchableSelectProps): React$1.JSX.Element;
|
|
893
|
+
declare function SearchableSelect({ value, onChange, allValue, allLabel, searchPlaceholder, loadItems, resolveLabel, pageSize, triggerClassName, icon, nestedInPopover, disabled, resetKey, forceActive, onResolvedLabel, emptyLabel, loadingLabel, loadingMoreLabel, debounceMs, }: SearchableSelectProps): React$1.JSX.Element;
|
|
857
894
|
|
|
858
895
|
declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
|
|
859
896
|
declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -980,6 +1017,7 @@ declare const Toaster$1: ({ duration, toastOptions, ...props }: ToasterProps) =>
|
|
|
980
1017
|
|
|
981
1018
|
declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.SwitchProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
|
982
1019
|
thumbClassName?: string;
|
|
1020
|
+
loading?: boolean;
|
|
983
1021
|
} & React$1.RefAttributes<HTMLButtonElement>>;
|
|
984
1022
|
|
|
985
1023
|
interface TableProps extends React$1.HTMLAttributes<HTMLTableElement> {
|
|
@@ -1032,4 +1070,4 @@ type VisiblePage = number | "ellipsis";
|
|
|
1032
1070
|
declare function buildVisiblePages(current: number, totalPages: number): VisiblePage[];
|
|
1033
1071
|
declare function buildRangeLabel(page: number, pageSize: number, total: number, itemLabel?: string, formatTotal?: (n: number) => string): string;
|
|
1034
1072
|
|
|
1035
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppChromeBrand, type AppChromeBrandProps, AppChromeHeader, type AppChromeHeaderProps, AppChromeSidebar, type AppChromeSidebarProps, AspectRatio, Aurora, type AuroraProps, AuthBanner, type AuthBannerProps, AuthBrand, type AuthBrandProps, AuthCard, AuthCardDescription, AuthCardHeader, AuthCardTitle, AuthFieldError, type AuthFieldErrorProps, AuthFooter, AuthFooterLink, type AuthFooterLinkProps, type AuthFooterProps, AuthShell, type AuthShellProps, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartCard, type ChartCardProps, 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, Dropdown, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailInput, type EmailInputProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, ListingPagination, type ListingPaginationProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PageHeader, type PageHeaderProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PasswordInput, type PasswordInputProps, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchableSelect, type SearchableSelectItem, type SearchableSelectLoadResult, type SearchableSelectProps, 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 SonnerToaster, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type VisiblePage, authBannerVariants, badgeVariants, buildRangeLabel, buildVisiblePages, buttonVariants, cn, inputVariants, navigationMenuTriggerStyle, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
|
|
1073
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppChromeBrand, type AppChromeBrandProps, AppChromeHeader, type AppChromeHeaderProps, AppChromeSidebar, type AppChromeSidebarProps, AspectRatio, Aurora, type AuroraProps, AuthBanner, type AuthBannerProps, AuthBrand, type AuthBrandProps, AuthCard, AuthCardDescription, AuthCardHeader, AuthCardTitle, AuthFieldError, type AuthFieldErrorProps, AuthFooter, AuthFooterLink, type AuthFooterLinkProps, type AuthFooterProps, AuthShell, type AuthShellProps, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartCard, type ChartCardProps, 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, DialogIcon, type DialogIconProps, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, Dropdown, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailInput, type EmailInputProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, ListingPagination, type ListingPaginationProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Note, NoteDescription, NoteIcon, type NoteIconProps, type NoteProps, NoteTitle, PageHeader, type PageHeaderProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PasswordInput, type PasswordInputProps, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchableSelect, type SearchableSelectItem, type SearchableSelectLoadResult, type SearchableSelectProps, 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 SonnerToaster, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type VisiblePage, authBannerVariants, badgeVariants, buildRangeLabel, buildVisiblePages, buttonVariants, cn, dialogIconVariants, inputVariants, navigationMenuTriggerStyle, noteIconVariants, noteVariants, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
|
package/dist/index.js
CHANGED
|
@@ -2426,7 +2426,7 @@ function ChartCard({
|
|
|
2426
2426
|
glass ? "bg-content-glass" : "bg-card border border-border"
|
|
2427
2427
|
),
|
|
2428
2428
|
children: [
|
|
2429
|
-
/* @__PURE__ */ jsxs("div", { className: "mb-
|
|
2429
|
+
/* @__PURE__ */ jsxs("div", { className: "mb-2 flex items-center justify-between gap-3", children: [
|
|
2430
2430
|
/* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
2431
2431
|
/* @__PURE__ */ jsxs("div", { className: "flex flex-wrap items-center gap-x-2 gap-y-1", children: [
|
|
2432
2432
|
/* @__PURE__ */ jsx(
|
|
@@ -2472,6 +2472,38 @@ Checkbox.displayName = CheckboxPrimitive.Root.displayName;
|
|
|
2472
2472
|
var Collapsible = CollapsiblePrimitive.Root;
|
|
2473
2473
|
var CollapsibleTrigger2 = CollapsiblePrimitive.CollapsibleTrigger;
|
|
2474
2474
|
var CollapsibleContent2 = CollapsiblePrimitive.CollapsibleContent;
|
|
2475
|
+
var dialogIconVariants = cva(
|
|
2476
|
+
"flex w-fit shrink-0 items-center justify-center rounded-lg bg-primary/15 text-primary",
|
|
2477
|
+
{
|
|
2478
|
+
variants: {
|
|
2479
|
+
size: {
|
|
2480
|
+
sm: "p-2 [&_svg]:size-4",
|
|
2481
|
+
/** Default modal / dialog header icon. */
|
|
2482
|
+
md: "p-2.5 [&_svg]:size-6",
|
|
2483
|
+
lg: "p-3 [&_svg]:size-6"
|
|
2484
|
+
}
|
|
2485
|
+
},
|
|
2486
|
+
defaultVariants: {
|
|
2487
|
+
size: "md"
|
|
2488
|
+
}
|
|
2489
|
+
}
|
|
2490
|
+
);
|
|
2491
|
+
function DialogIcon({
|
|
2492
|
+
className,
|
|
2493
|
+
size,
|
|
2494
|
+
children,
|
|
2495
|
+
...props
|
|
2496
|
+
}) {
|
|
2497
|
+
return /* @__PURE__ */ jsx(
|
|
2498
|
+
"div",
|
|
2499
|
+
{
|
|
2500
|
+
"aria-hidden": true,
|
|
2501
|
+
...props,
|
|
2502
|
+
className: cn(dialogIconVariants({ size }), className),
|
|
2503
|
+
children
|
|
2504
|
+
}
|
|
2505
|
+
);
|
|
2506
|
+
}
|
|
2475
2507
|
var Dialog = SheetPrimitive.Root;
|
|
2476
2508
|
var DialogTrigger = SheetPrimitive.Trigger;
|
|
2477
2509
|
var DialogPortal = SheetPrimitive.Portal;
|
|
@@ -2495,7 +2527,7 @@ var DialogContent = React11.forwardRef(({ className, children, ...props }, ref)
|
|
|
2495
2527
|
{
|
|
2496
2528
|
ref,
|
|
2497
2529
|
className: cn(
|
|
2498
|
-
"fixed left-[50%] top-[50%] z-50 grid w-[calc(100%-2rem)] outline-none max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 md:gap-6 border bg-background p-6 shadow-lg duration-300 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] rounded-lg",
|
|
2530
|
+
"fixed left-[50%] top-[50%] z-50 grid max-h-[calc(100dvh-2rem)] scrollbar-thin overflow-y-auto overscroll-contain w-[calc(100%-2rem)] outline-none max-w-lg translate-x-[-50%] translate-y-[-50%] gap-4 md:gap-6 border bg-background p-6 shadow-lg duration-300 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] rounded-lg",
|
|
2499
2531
|
className
|
|
2500
2532
|
),
|
|
2501
2533
|
...props,
|
|
@@ -3377,13 +3409,14 @@ function ListingPagination({
|
|
|
3377
3409
|
pageSize,
|
|
3378
3410
|
itemLabel,
|
|
3379
3411
|
disabled = false,
|
|
3412
|
+
showWhenSinglePage = false,
|
|
3380
3413
|
variant = "default",
|
|
3381
3414
|
className,
|
|
3382
3415
|
onPageChange,
|
|
3383
3416
|
formatTotal,
|
|
3384
3417
|
labels
|
|
3385
3418
|
}) {
|
|
3386
|
-
if (totalPages <= 1) return null;
|
|
3419
|
+
if (!showWhenSinglePage && totalPages <= 1) return null;
|
|
3387
3420
|
const previous = labels?.previous ?? "Anterior";
|
|
3388
3421
|
const next = labels?.next ?? "Pr\xF3xima";
|
|
3389
3422
|
const previousAria = labels?.previousAria ?? "P\xE1gina anterior";
|
|
@@ -3770,6 +3803,87 @@ var NavigationMenuIndicator = React11.forwardRef(({ className, ...props }, ref)
|
|
|
3770
3803
|
}
|
|
3771
3804
|
));
|
|
3772
3805
|
NavigationMenuIndicator.displayName = NavigationMenuPrimitive.Indicator.displayName;
|
|
3806
|
+
var noteVariants = cva(
|
|
3807
|
+
"flex gap-3 rounded-xl border px-4 py-3.5 transition-all duration-500",
|
|
3808
|
+
{
|
|
3809
|
+
variants: {
|
|
3810
|
+
variant: {
|
|
3811
|
+
default: "border-primary/30 bg-primary/15 dark:border-primary/25 dark:bg-primary/5 hover:shadow-[0_0_15px_rgba(96,214,111,0.2)] hover:shadow-primary/25 dark:hover:shadow-primary/10",
|
|
3812
|
+
muted: "border-border bg-muted/40"
|
|
3813
|
+
}
|
|
3814
|
+
},
|
|
3815
|
+
defaultVariants: {
|
|
3816
|
+
variant: "default"
|
|
3817
|
+
}
|
|
3818
|
+
}
|
|
3819
|
+
);
|
|
3820
|
+
var noteIconVariants = cva(
|
|
3821
|
+
"flex h-10 w-10 shrink-0 items-center justify-center rounded-full bg-primary/15 text-primary [&_svg]:size-5"
|
|
3822
|
+
);
|
|
3823
|
+
function NoteIcon({ className, children, ...props }) {
|
|
3824
|
+
return /* @__PURE__ */ jsx(
|
|
3825
|
+
"div",
|
|
3826
|
+
{
|
|
3827
|
+
"aria-hidden": true,
|
|
3828
|
+
...props,
|
|
3829
|
+
className: cn(noteIconVariants(), className),
|
|
3830
|
+
children
|
|
3831
|
+
}
|
|
3832
|
+
);
|
|
3833
|
+
}
|
|
3834
|
+
function NoteTitle({
|
|
3835
|
+
className,
|
|
3836
|
+
...props
|
|
3837
|
+
}) {
|
|
3838
|
+
return /* @__PURE__ */ jsx(
|
|
3839
|
+
"p",
|
|
3840
|
+
{
|
|
3841
|
+
className: cn("text-sm font-semibold text-foreground", className),
|
|
3842
|
+
...props
|
|
3843
|
+
}
|
|
3844
|
+
);
|
|
3845
|
+
}
|
|
3846
|
+
function NoteDescription({
|
|
3847
|
+
className,
|
|
3848
|
+
...props
|
|
3849
|
+
}) {
|
|
3850
|
+
return /* @__PURE__ */ jsx(
|
|
3851
|
+
"p",
|
|
3852
|
+
{
|
|
3853
|
+
className: cn(
|
|
3854
|
+
"text-xs leading-relaxed text-muted-foreground",
|
|
3855
|
+
className
|
|
3856
|
+
),
|
|
3857
|
+
...props
|
|
3858
|
+
}
|
|
3859
|
+
);
|
|
3860
|
+
}
|
|
3861
|
+
function Note({
|
|
3862
|
+
className,
|
|
3863
|
+
variant,
|
|
3864
|
+
icon,
|
|
3865
|
+
title,
|
|
3866
|
+
description,
|
|
3867
|
+
children,
|
|
3868
|
+
...props
|
|
3869
|
+
}) {
|
|
3870
|
+
return /* @__PURE__ */ jsxs(
|
|
3871
|
+
"div",
|
|
3872
|
+
{
|
|
3873
|
+
role: "note",
|
|
3874
|
+
...props,
|
|
3875
|
+
className: cn(noteVariants({ variant }), className),
|
|
3876
|
+
children: [
|
|
3877
|
+
icon ? /* @__PURE__ */ jsx(NoteIcon, { children: icon }) : null,
|
|
3878
|
+
/* @__PURE__ */ jsxs("div", { className: "min-w-0 space-y-0", children: [
|
|
3879
|
+
title != null ? typeof title === "string" || typeof title === "number" ? /* @__PURE__ */ jsx(NoteTitle, { children: title }) : title : null,
|
|
3880
|
+
description != null ? typeof description === "string" || typeof description === "number" ? /* @__PURE__ */ jsx(NoteDescription, { children: description }) : description : null,
|
|
3881
|
+
children
|
|
3882
|
+
] })
|
|
3883
|
+
]
|
|
3884
|
+
}
|
|
3885
|
+
);
|
|
3886
|
+
}
|
|
3773
3887
|
function PageHeader({
|
|
3774
3888
|
label,
|
|
3775
3889
|
title,
|
|
@@ -3802,16 +3916,7 @@ function PageHeader({
|
|
|
3802
3916
|
label && "mt-1"
|
|
3803
3917
|
),
|
|
3804
3918
|
children: [
|
|
3805
|
-
/* @__PURE__ */ jsx(
|
|
3806
|
-
"h1",
|
|
3807
|
-
{
|
|
3808
|
-
className: cn(
|
|
3809
|
-
"text-xl font-bold tracking-tight",
|
|
3810
|
-
titleClassName
|
|
3811
|
-
),
|
|
3812
|
-
children: title
|
|
3813
|
-
}
|
|
3814
|
-
),
|
|
3919
|
+
/* @__PURE__ */ jsx("h1", { className: cn("text-xl font-bold tracking-tight", titleClassName), children: title }),
|
|
3815
3920
|
badge
|
|
3816
3921
|
]
|
|
3817
3922
|
}
|
|
@@ -3838,7 +3943,7 @@ function PageHeader({
|
|
|
3838
3943
|
"header",
|
|
3839
3944
|
{
|
|
3840
3945
|
className: cn(
|
|
3841
|
-
children ? "flex flex-col gap-3 sm:flex-row sm:items-
|
|
3946
|
+
children ? "flex flex-col gap-3 sm:flex-row sm:items-start sm:justify-between" : "w-full",
|
|
3842
3947
|
className
|
|
3843
3948
|
),
|
|
3844
3949
|
children: [
|
|
@@ -4000,6 +4105,8 @@ function SearchableSelect({
|
|
|
4000
4105
|
nestedInPopover = false,
|
|
4001
4106
|
disabled = false,
|
|
4002
4107
|
resetKey,
|
|
4108
|
+
forceActive = false,
|
|
4109
|
+
onResolvedLabel,
|
|
4003
4110
|
emptyLabel = "Nenhum resultado.",
|
|
4004
4111
|
loadingLabel = "Buscando\u2026",
|
|
4005
4112
|
loadingMoreLabel = "Carregando...",
|
|
@@ -4019,12 +4126,16 @@ function SearchableSelect({
|
|
|
4019
4126
|
const loadMoreLockRef = React11.useRef(false);
|
|
4020
4127
|
const loadItemsRef = React11.useRef(loadItems);
|
|
4021
4128
|
const resolveLabelRef = React11.useRef(resolveLabel);
|
|
4129
|
+
const onResolvedLabelRef = React11.useRef(onResolvedLabel);
|
|
4022
4130
|
React11.useEffect(() => {
|
|
4023
4131
|
loadItemsRef.current = loadItems;
|
|
4024
4132
|
}, [loadItems]);
|
|
4025
4133
|
React11.useEffect(() => {
|
|
4026
4134
|
resolveLabelRef.current = resolveLabel;
|
|
4027
4135
|
}, [resolveLabel]);
|
|
4136
|
+
React11.useEffect(() => {
|
|
4137
|
+
onResolvedLabelRef.current = onResolvedLabel;
|
|
4138
|
+
}, [onResolvedLabel]);
|
|
4028
4139
|
React11.useEffect(() => {
|
|
4029
4140
|
const t = window.setTimeout(() => setDebouncedSearch(search), debounceMs);
|
|
4030
4141
|
return () => window.clearTimeout(t);
|
|
@@ -4120,6 +4231,7 @@ function SearchableSelect({
|
|
|
4120
4231
|
setLabelById(
|
|
4121
4232
|
(prev) => prev[value] ? prev : { ...prev, [value]: label }
|
|
4122
4233
|
);
|
|
4234
|
+
onResolvedLabelRef.current?.(value, label);
|
|
4123
4235
|
return;
|
|
4124
4236
|
}
|
|
4125
4237
|
const { items: list } = await loadItemsRef.current({
|
|
@@ -4133,6 +4245,7 @@ function SearchableSelect({
|
|
|
4133
4245
|
setLabelById(
|
|
4134
4246
|
(prev) => prev[value] ? prev : { ...prev, [value]: hit.label }
|
|
4135
4247
|
);
|
|
4248
|
+
onResolvedLabelRef.current?.(value, hit.label);
|
|
4136
4249
|
}
|
|
4137
4250
|
})();
|
|
4138
4251
|
return () => {
|
|
@@ -4157,7 +4270,7 @@ function SearchableSelect({
|
|
|
4157
4270
|
React11.useEffect(() => {
|
|
4158
4271
|
if (disabled) setOpen(false);
|
|
4159
4272
|
}, [disabled]);
|
|
4160
|
-
const isFiltered = value !== allValue && value.trim() !== "";
|
|
4273
|
+
const isFiltered = forceActive || value !== allValue && value.trim() !== "";
|
|
4161
4274
|
return /* @__PURE__ */ jsxs(
|
|
4162
4275
|
Popover,
|
|
4163
4276
|
{
|
|
@@ -4196,7 +4309,7 @@ function SearchableSelect({
|
|
|
4196
4309
|
"span",
|
|
4197
4310
|
{
|
|
4198
4311
|
className: cn("truncate", isFiltered && "text-foreground"),
|
|
4199
|
-
title:
|
|
4312
|
+
title: isFiltered ? triggerLabel : void 0,
|
|
4200
4313
|
children: triggerLabel
|
|
4201
4314
|
}
|
|
4202
4315
|
)
|
|
@@ -4254,11 +4367,14 @@ function SearchableSelect({
|
|
|
4254
4367
|
value === item.id && "bg-primary/45"
|
|
4255
4368
|
),
|
|
4256
4369
|
onSelect: () => {
|
|
4257
|
-
onChange(item.id);
|
|
4370
|
+
onChange(item.id, item);
|
|
4258
4371
|
setLabelById((prev) => ({
|
|
4259
4372
|
...prev,
|
|
4260
4373
|
[item.id]: item.label || item.id
|
|
4261
4374
|
}));
|
|
4375
|
+
if (item.label) {
|
|
4376
|
+
onResolvedLabelRef.current?.(item.id, item.label);
|
|
4377
|
+
}
|
|
4262
4378
|
setOpen(false);
|
|
4263
4379
|
},
|
|
4264
4380
|
children: [
|
|
@@ -4494,21 +4610,44 @@ var Toaster = ({ duration = 4e3, toastOptions, ...props }) => {
|
|
|
4494
4610
|
}
|
|
4495
4611
|
);
|
|
4496
4612
|
};
|
|
4497
|
-
var Switch = React11.forwardRef(({ className, thumbClassName, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4613
|
+
var Switch = React11.forwardRef(({ className, thumbClassName, loading = false, disabled, ...props }, ref) => /* @__PURE__ */ jsx(
|
|
4498
4614
|
SwitchPrimitives.Root,
|
|
4499
4615
|
{
|
|
4500
4616
|
className: cn(
|
|
4501
|
-
"peer inline-flex h-6 w-11 shrink-0
|
|
4617
|
+
"peer group inline-flex h-6 w-11 shrink-0 items-center rounded-full border-2 border-transparent transition-colors data-[state=checked]:bg-primary data-[state=unchecked]:bg-input focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 focus-visible:ring-offset-background",
|
|
4618
|
+
loading ? "cursor-wait disabled:cursor-wait disabled:opacity-100" : "cursor-pointer disabled:cursor-not-allowed disabled:opacity-50",
|
|
4502
4619
|
className
|
|
4503
4620
|
),
|
|
4504
4621
|
...props,
|
|
4622
|
+
disabled: disabled || loading,
|
|
4623
|
+
"aria-busy": loading || void 0,
|
|
4505
4624
|
ref,
|
|
4506
4625
|
children: /* @__PURE__ */ jsx(
|
|
4507
4626
|
SwitchPrimitives.Thumb,
|
|
4508
4627
|
{
|
|
4509
4628
|
className: cn(
|
|
4510
|
-
"pointer-events-none
|
|
4629
|
+
"pointer-events-none relative flex h-5 w-5 items-center justify-center rounded-full bg-background shadow-lg ring-0 transition-[transform,background-color,box-shadow] duration-300 ease-out data-[state=checked]:translate-x-5 data-[state=unchecked]:translate-x-0",
|
|
4630
|
+
loading && "bg-transparent shadow-none",
|
|
4511
4631
|
thumbClassName
|
|
4632
|
+
),
|
|
4633
|
+
children: /* @__PURE__ */ jsx(
|
|
4634
|
+
"span",
|
|
4635
|
+
{
|
|
4636
|
+
className: cn(
|
|
4637
|
+
"absolute inset-0 transition-[opacity,transform] duration-300 ease-out",
|
|
4638
|
+
loading ? "scale-100 opacity-100" : "scale-75 opacity-0"
|
|
4639
|
+
),
|
|
4640
|
+
"aria-hidden": true,
|
|
4641
|
+
children: /* @__PURE__ */ jsx(
|
|
4642
|
+
"span",
|
|
4643
|
+
{
|
|
4644
|
+
className: cn(
|
|
4645
|
+
"absolute inset-0 rounded-full border-2 border-primary border-t-transparent group-data-[state=checked]:border-background group-data-[state=checked]:border-t-transparent",
|
|
4646
|
+
loading && "animate-spin"
|
|
4647
|
+
)
|
|
4648
|
+
}
|
|
4649
|
+
)
|
|
4650
|
+
}
|
|
4512
4651
|
)
|
|
4513
4652
|
}
|
|
4514
4653
|
)
|
|
@@ -4809,6 +4948,6 @@ var ToggleGroupItem = React11.forwardRef(({ className, children, variant, size,
|
|
|
4809
4948
|
});
|
|
4810
4949
|
ToggleGroupItem.displayName = ToggleGroupPrimitive.Item.displayName;
|
|
4811
4950
|
|
|
4812
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppChromeBrand, AppChromeHeader, AppChromeSidebar, AspectRatio, Aurora, AuthBanner, AuthBrand, AuthCard, AuthCardDescription, AuthCardHeader, AuthCardTitle, AuthFieldError, AuthFooter, AuthFooterLink, AuthShell, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartCard, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent2 as CollapsibleContent, CollapsibleTrigger2 as 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, Dropdown, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailInput, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label3 as Label, ListingPagination, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, PageHeader, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PasswordInput, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup4 as RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchableSelect, 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 as SonnerToaster, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toast, ToastAction, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport, Toaster2 as Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, authBannerVariants, badgeVariants, buildRangeLabel, buildVisiblePages, buttonVariants, cn, inputVariants, navigationMenuTriggerStyle, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
|
|
4951
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppChromeBrand, AppChromeHeader, AppChromeSidebar, AspectRatio, Aurora, AuthBanner, AuthBrand, AuthCard, AuthCardDescription, AuthCardHeader, AuthCardTitle, AuthFieldError, AuthFooter, AuthFooterLink, AuthShell, Avatar, AvatarFallback, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartCard, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent2 as CollapsibleContent, CollapsibleTrigger2 as 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, DialogIcon, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, Dropdown, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailInput, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Label3 as Label, ListingPagination, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Note, NoteDescription, NoteIcon, NoteTitle, PageHeader, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PasswordInput, Popover, PopoverContent, PopoverTrigger, Progress, RadioGroup4 as RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SearchableSelect, 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 as SonnerToaster, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toast, ToastAction, ToastClose, ToastDescription, ToastProvider, ToastTitle, ToastViewport, Toaster2 as Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, authBannerVariants, badgeVariants, buildRangeLabel, buildVisiblePages, buttonVariants, cn, dialogIconVariants, inputVariants, navigationMenuTriggerStyle, noteIconVariants, noteVariants, toast, toggleVariants, useFormField, useIsMobile, useSidebar, useToast };
|
|
4813
4952
|
//# sourceMappingURL=index.js.map
|
|
4814
4953
|
//# sourceMappingURL=index.js.map
|