@cntyclub/ui-react 0.1.1 → 0.3.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/form.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import * as React$1 from 'react';
2
2
  import * as _tanstack_react_form from '@tanstack/react-form';
3
3
  import { StandardSchemaV1Issue } from '@tanstack/react-form';
4
- import { B as Button, I as Input } from './input-CZvh825j.js';
4
+ import { B as Button, I as Input } from './input-JCZs61MO.js';
5
5
  import 'class-variance-authority/types';
6
6
  import '@base-ui/react/use-render';
7
7
  import 'class-variance-authority';
package/dist/index.d.ts CHANGED
@@ -8,8 +8,8 @@ import { AlertDialog as AlertDialog$1 } from '@base-ui/react/alert-dialog';
8
8
  import { useRender } from '@base-ui/react/use-render';
9
9
  import { Autocomplete as Autocomplete$1 } from '@base-ui/react/autocomplete';
10
10
  import { Avatar as Avatar$1 } from '@base-ui/react/avatar';
11
- import { B as Button, a as InputProps, I as Input } from './input-CZvh825j.js';
12
- export { b as ButtonProps, c as buttonVariants } from './input-CZvh825j.js';
11
+ import { B as Button, a as ButtonProps, b as InputProps, I as Input } from './input-JCZs61MO.js';
12
+ export { c as buttonVariants } from './input-JCZs61MO.js';
13
13
  import { DayPicker } from 'react-day-picker';
14
14
  import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
15
15
  import * as RechartsPrimitive from 'recharts';
@@ -372,6 +372,91 @@ declare function ChartLegendContent({ className, hideIcon, payload, verticalAlig
372
372
  nameKey?: string;
373
373
  }): React$1.JSX.Element | null;
374
374
 
375
+ /**
376
+ * Chat primitives for AI-assistant experiences: a column layout, an
377
+ * auto-scrolling message viewport, role-styled message bubbles, header chrome,
378
+ * an empty-state hero with suggestion prompts, tool activity chips/cards,
379
+ * a typing indicator, and a submit-on-Enter composer. Purely presentational —
380
+ * bring your own state.
381
+ */
382
+ declare function Chat({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
383
+ /**
384
+ * Header chrome for a chat panel: avatar + title on the left, icon actions on
385
+ * the right. Compose `ChatHeaderAvatar`, `ChatHeaderTitle` and
386
+ * `ChatHeaderActions` inside.
387
+ */
388
+ declare function ChatHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
389
+ declare function ChatHeaderAvatar({ className, children, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
390
+ declare function ChatHeaderTitle({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
391
+ declare function ChatHeaderActions({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
392
+ declare function ChatMessages({ autoScroll, className, children, ...props }: React$1.ComponentProps<"div"> & {
393
+ /** Keep the viewport pinned to the bottom while new messages stream in. */
394
+ autoScroll?: boolean;
395
+ }): React$1.JSX.Element;
396
+ /**
397
+ * Centered hero shown when the conversation is empty. Compose
398
+ * `ChatEmptyStateIcon`, `ChatEmptyStateTitle`, `ChatEmptyStateDescription`
399
+ * and `ChatSuggestions` inside.
400
+ */
401
+ declare function ChatEmptyState({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
402
+ declare function ChatEmptyStateIcon({ className, children, ...props }: React$1.ComponentProps<"span">): React$1.JSX.Element;
403
+ declare function ChatEmptyStateTitle({ className, ...props }: React$1.ComponentProps<"p">): React$1.JSX.Element;
404
+ declare function ChatEmptyStateDescription({ className, ...props }: React$1.ComponentProps<"p">): React$1.JSX.Element;
405
+ /** Vertical stack of `ChatSuggestion` prompts. */
406
+ declare function ChatSuggestions({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
407
+ interface ChatSuggestionProps extends React$1.ComponentProps<"button"> {
408
+ /** Leading icon; defaults to a sparkle. */
409
+ icon?: React$1.ReactNode;
410
+ /** Position in the list — staggers the entrance animation. */
411
+ index?: number;
412
+ }
413
+ /**
414
+ * One tappable suggested prompt: icon chip + label, with an arrow that slides
415
+ * in on hover and a staggered fade-in entrance (via `index`).
416
+ */
417
+ declare function ChatSuggestion({ className, children, icon, index, style, ...props }: ChatSuggestionProps): React$1.JSX.Element;
418
+ declare const chatMessageVariants: (props?: ({
419
+ from?: "user" | "assistant" | null | undefined;
420
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
421
+ interface ChatMessageProps extends React$1.ComponentProps<"div">, VariantProps<typeof chatMessageVariants> {
422
+ }
423
+ declare function ChatMessage({ className, from, ...props }: ChatMessageProps): React$1.JSX.Element;
424
+ declare const chatMessageBubbleVariants: (props?: ({
425
+ from?: "user" | "assistant" | null | undefined;
426
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
427
+ interface ChatMessageBubbleProps extends React$1.ComponentProps<"div">, VariantProps<typeof chatMessageBubbleVariants> {
428
+ }
429
+ declare function ChatMessageBubble({ className, from, ...props }: ChatMessageBubbleProps): React$1.JSX.Element;
430
+ /**
431
+ * Small inline pill for tool activity ("Using X…", "X finished"). Pass the
432
+ * status icon (wrench, spinner, check) as `icon`.
433
+ */
434
+ declare function ChatToolChip({ className, children, icon, ...props }: React$1.ComponentProps<"div"> & {
435
+ icon?: React$1.ReactNode;
436
+ }): React$1.JSX.Element;
437
+ /**
438
+ * Framed card for tool activity inside a conversation: running/finished tool
439
+ * calls, results, and write-action approval prompts. Compose with `Button`s
440
+ * in the `actions` area for approve/decline flows.
441
+ */
442
+ declare function ChatToolCard({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
443
+ declare function ChatToolCardHeader({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
444
+ declare function ChatToolCardActions({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
445
+ declare function ChatTypingIndicator({ className, ...props }: React$1.ComponentProps<"div">): React$1.JSX.Element;
446
+ interface ChatInputProps extends Omit<React$1.ComponentProps<"textarea">, "onSubmit" | "value" | "onChange"> {
447
+ value: string;
448
+ onValueChange: (value: string) => void;
449
+ /** Called with the trimmed message when the user submits (Enter or button). */
450
+ onSubmit: (value: string) => void;
451
+ /** Disables both the textarea and the send button (e.g. while sending). */
452
+ disabled?: boolean;
453
+ }
454
+ /**
455
+ * Composer: a rounded card wrapping an auto-growing textarea and a round send
456
+ * button. Enter submits, Shift+Enter inserts a newline.
457
+ */
458
+ declare function ChatInput({ className, disabled, onSubmit, onValueChange, placeholder, value, ...props }: ChatInputProps): React$1.JSX.Element;
459
+
375
460
  declare const checkboxSizes: {
376
461
  readonly sm: {
377
462
  readonly box: "size-4.5 sm:size-4";
@@ -452,6 +537,34 @@ interface CreditCardProps extends React$1.ComponentProps<"div"> {
452
537
  }
453
538
  declare function CreditCard({ className, style, type, company, cardNumber, cardHolder, cardExpiration, width, ...props }: CreditCardProps): React$1.JSX.Element;
454
539
 
540
+ interface DataTablePagedColumn {
541
+ key: string;
542
+ label?: string;
543
+ }
544
+ interface DataTablePagedProps {
545
+ /** Columns to render. Pass `label` to override the header text. */
546
+ columns: DataTablePagedColumn[];
547
+ /** Row objects; values are rendered with `String(...)` unless a ReactNode. */
548
+ rows: Record<string, unknown>[];
549
+ pageSize?: number;
550
+ /** Show the client-side search box (filters across all columns). */
551
+ searchable?: boolean;
552
+ searchPlaceholder?: string;
553
+ emptyLabel?: string;
554
+ /**
555
+ * Total row count when `rows` is only one page of a larger server-side set —
556
+ * shown as "n of total" in the footer.
557
+ */
558
+ totalCount?: number;
559
+ className?: string;
560
+ }
561
+ /**
562
+ * Client-side paginated (and optionally searchable) data table. Designed for
563
+ * result sets a chat agent or API returns: pass plain row objects and column
564
+ * keys, get a themed table with pagination that never renders huge lists.
565
+ */
566
+ declare function DataTablePaged({ className, columns, emptyLabel, pageSize, rows, searchable, searchPlaceholder, totalCount, }: DataTablePagedProps): React$1.JSX.Element;
567
+
455
568
  declare function Drawer(props: React$1.ComponentProps<typeof Drawer$1.Root>): React$1.JSX.Element;
456
569
  declare function DrawerTrigger(props: React$1.ComponentProps<typeof Drawer$1.Trigger>): React$1.JSX.Element;
457
570
  declare function DrawerPortal(props: React$1.ComponentProps<typeof Drawer$1.Portal>): React$1.JSX.Element;
@@ -521,6 +634,18 @@ declare function EmptyTitle({ className, ...props }: React.ComponentProps<"div">
521
634
  declare function EmptyDescription({ className, ...props }: React.ComponentProps<"p">): React$1.JSX.Element;
522
635
  declare function EmptyContent({ className, ...props }: React.ComponentProps<"div">): React$1.JSX.Element;
523
636
 
637
+ declare const fabVariants: (props?: ({
638
+ position?: "bottom-right" | "bottom-left" | "top-right" | "top-left" | null | undefined;
639
+ } & class_variance_authority_types.ClassProp) | undefined) => string;
640
+ interface FabProps extends ButtonProps {
641
+ position?: VariantProps<typeof fabVariants>["position"];
642
+ }
643
+ /**
644
+ * Floating action button — a fixed, round icon button used to summon overlays
645
+ * such as chat widgets. Composes `Button`, so all button variants/sizes apply.
646
+ */
647
+ declare function Fab({ className, position, size, ...props }: FabProps): React$1.JSX.Element;
648
+
524
649
  declare const featuredIconVariants: (props?: ({
525
650
  color?: "error" | "success" | "warning" | "gray" | "brand" | null | undefined;
526
651
  size?: "lg" | "sm" | "xl" | "md" | null | undefined;
@@ -662,6 +787,18 @@ declare function KbdGroup({ className, ...props }: React$1.ComponentProps<"kbd">
662
787
 
663
788
  declare function Label({ className, render, ...props }: useRender.ComponentProps<"label">): React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>>;
664
789
 
790
+ interface MarkdownProps {
791
+ /** The markdown source to render. */
792
+ children: string;
793
+ className?: string;
794
+ }
795
+ /**
796
+ * Markdown renderer for assistant/chat content (GitHub-flavored markdown).
797
+ * Raw HTML in the source is NOT rendered — output is limited to markdown
798
+ * elements, which keeps untrusted model output safe to display.
799
+ */
800
+ declare function Markdown({ children, className }: MarkdownProps): React$1.JSX.Element;
801
+
665
802
  declare const MenuCreateHandle: typeof Menu$1.createHandle;
666
803
  declare const Menu: typeof Menu$1.Root;
667
804
  declare const MenuPortal: React$1.ForwardRefExoticComponent<Omit<_base_ui_react.ContextMenuPortalProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
@@ -1459,4 +1596,4 @@ declare function useIsLg({ ssr, defaultSSRValue, }?: UseMediaQueryOptions): bool
1459
1596
  declare function useIsXl({ ssr, defaultSSRValue, }?: UseMediaQueryOptions): boolean;
1460
1597
  declare function useIs2xl({ ssr, defaultSSRValue, }?: UseMediaQueryOptions): boolean;
1461
1598
 
1462
- export { Accordion, AccordionPanel as AccordionContent, AccordionItem, AccordionPanel, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogBackdrop, AlertDialogClose, AlertDialogPopup as AlertDialogContent, AlertDialogCreateHandle, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogBackdrop as AlertDialogOverlay, AlertDialogPopup, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertDialogViewport, AlertTitle, AnchoredToastProvider, AnimatedThemeToggler, AppGalleryLogoIcon, AppStoreButton, type AppStoreButtonStore, AppleLogoIcon, type AsChildProps, AspectRatio, type Attribute, Autocomplete, AutocompleteClear, AutocompleteCollection, AutocompleteEmpty, AutocompleteGroup, AutocompleteGroupLabel, AutocompleteInput, AutocompleteItem, AutocompleteList, AutocompletePopup, AutocompleteRow, AutocompleteSeparator, AutocompleteStatus, AutocompleteTrigger, AutocompleteValue, Avatar, AvatarAddButton, AvatarCompanyIcon, AvatarFallback, AvatarGroup, AvatarImage, AvatarLabelGroup, AvatarProfilePhoto, AvatarUploadBase, type AvatarUploadBaseProps, Badge, BadgeAvatar, BadgeCloseButton, BadgeDot, BadgeFlag, BadgeGroup, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Group as ButtonGroup, GroupSeparator as ButtonGroupSeparator, GroupText as ButtonGroupText, Calendar, Card, CardAction, CardPanel as CardContent, CardDescription, CardFooter, CardFrame, CardFrameDescription, CardFrameFooter, CardFrameHeader, CardFrameTitle, CardHeader, CardPanel, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, CheckboxGroup, Collapsible, CollapsiblePanel as CollapsibleContent, CollapsiblePanel, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxClear, ComboboxCollection, ComboboxEmpty, ComboboxGroup, ComboboxGroupLabel, ComboboxInput, ComboboxItem, ComboboxList, ComboboxPopup, ComboboxRow, ComboboxSeparator, ComboboxStatus, ComboboxTrigger, ComboboxValue, Command, CommandCollection, CommandCreateHandle, CommandDialog, CommandDialogPopup, CommandDialogTrigger, CommandEmpty, CommandFooter, CommandGroup, CommandGroupLabel, CommandInput, CommandItem, CommandList, CommandPanel, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CreditCard, type CreditCardProps, type CreditCardType, DashboardHeader, DashboardPanel, Dialog, DialogBackdrop, DialogClose, DialogPopup as DialogContent, DialogCreateHandle, DialogDescription, DialogFooter, DialogHeader, DialogBackdrop as DialogOverlay, DialogPanel, DialogPopup, DialogPortal, DialogTitle, DialogTrigger, DialogViewport, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DribbbleLogoIcon, Menu as DropdownMenu, MenuCheckboxItem as DropdownMenuCheckboxItem, MenuPopup as DropdownMenuContent, MenuCreateHandle as DropdownMenuCreateHandle, MenuGroup as DropdownMenuGroup, MenuItem as DropdownMenuItem, MenuGroupLabel as DropdownMenuLabel, MenuPortal as DropdownMenuPortal, MenuRadioGroup as DropdownMenuRadioGroup, MenuRadioItem as DropdownMenuRadioItem, MenuSeparator as DropdownMenuSeparator, MenuShortcut as DropdownMenuShortcut, MenuSub as DropdownMenuSub, MenuSubPopup as DropdownMenuSubContent, MenuSubTrigger as DropdownMenuSubTrigger, MenuTrigger as DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, ErrorOrEmptyState, FacebookLogoIcon, FeaturedIcon, Field, FieldControl, FieldDescription, FieldError, FieldGroup, FieldItem, FieldLabel, FieldValidity, Fieldset, FieldsetLegend, FigmaLogoIcon, ForbiddenErrorState, Form, Frame, FrameDescription, FrameFooter, FrameHeader, FramePanel, FrameTitle, GalaxyStoreLogoIcon, GeneralErrorState, GoogleLogoIcon, GooglePlayLogoIcon, Group, GroupSeparator, GroupText, HorizontalScrollFader, HorizontalScrollFaderContent, HorizontalScrollFaderLeftScroller, HorizontalScrollFaderRightScroller, PreviewCard as HoverCard, PreviewCardPopup as HoverCardContent, PreviewCardTrigger as HoverCardTrigger, ImageUploadBase, type ImageUploadBaseProps, Input, InputGroup, InputGroupAddon, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputProps, InternalServerErrorState, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, LeftScroller, Menu, MenuCheckboxItem, MenuCreateHandle, MenuGroup, MenuGroupLabel, MenuItem, MenuPopup, MenuPortal, MenuRadioGroup, MenuRadioItem, MenuSeparator, MenuShortcut, MenuSub, MenuSubPopup, MenuSubTrigger, MenuTrigger, Menubar, MenuCheckboxItem as MenubarCheckboxItem, MenubarContent, MenuGroup as MenubarGroup, MenuItem as MenubarItem, MenuGroupLabel as MenubarLabel, MenubarMenu, MenuPortal as MenubarPortal, MenuRadioGroup as MenubarRadioGroup, MenuRadioItem as MenubarRadioItem, MenuSeparator as MenubarSeparator, MenuShortcut as MenubarShortcut, MenuSub as MenubarSub, MenuSubPopup as MenubarSubContent, MenuSubTrigger as MenubarSubTrigger, MenubarTrigger, Meter, MeterIndicator, MeterLabel, MeterTrack, MeterValue, MultiSelect, type MultiSelectItem, type MultiSelectProps, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NotFoundErrorState, type NotNullValues, NumberField, NumberFieldDecrement, NumberFieldGroup, NumberFieldIncrement, NumberFieldInput, NumberFieldScrubArea, OfflineErrorState, type OmitUnknown, Pagination, PaginationContent, PaginationControls, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationNext, PaginationPrevious, Popover, PopoverClose, PopoverPopup as PopoverContent, PopoverCreateHandle, PopoverDescription, PopoverPopup, PopoverTitle, PopoverTrigger, PreviewCard, PreviewCardPopup, PreviewCardTrigger, Progress, ProgressCircle, ProgressFloatingValue, ProgressHalfCircle, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, QRCode, QRCodeGradientScan, Radio, RadioGroup, Radio as RadioGroupItem, type RequiredSubset, ResizableHandle, ResizablePanel, ResizablePanelGroup, RightScroller, ScrollArea, ScrollBar, SectionHeader, Select, SelectPopup as SelectContent, SelectGroup, SelectGroupLabel, SelectItem, SelectPopup, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetBackdrop, SheetClose, SheetPopup as SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetBackdrop as SheetOverlay, SheetPanel, SheetPopup, SheetPortal, SheetTitle, SheetTrigger, SheetViewport, 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, SliderValue, SmoothScroll, type SmoothScrollProps, type SmoothWheelOptions, SocialButton, type SocialButtonProvider, Spinner, SpinnerOnDemand, Stat, StatDescription, StatGroup, StatLabel, StatTrend, StatValue, Stepper, StepperDescription, StepperIndicator, StepperItem, StepperSeparator, StepperTitle, StepperTrigger, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsPanel as TabsContent, TabsList, TabsPanel, TabsTab, TabsTab as TabsTrigger, Tag, TagGroup, type TagGroupProps, type TagProps, type TagSelectionMode, type TagSize, type Tail, type TailOptional, TargetCountdown, TextEditor, type TextEditorProps, Textarea, type TextareaProps, ThemeContextOverride, ThemeProvider, type ThemeProviderProps, type ThemeTogglerVariant, Timeline, TimelineContent, TimelineDescription, TimelineDot, TimelineItem, TimelineTime, TimelineTitle, type ToastPosition, ToastProvider, Toggle$1 as Toggle, ToggleGroup, Toggle as ToggleGroupItem, ToggleGroupSeparator, Toolbar, ToolbarButton, ToolbarGroup, ToolbarInput, ToolbarLink, ToolbarSeparator, Tooltip, TooltipPopup as TooltipContent, TooltipCreateHandle, TooltipDescription, TooltipPopup, TooltipProvider, TooltipTitle, TooltipTrigger, UnauthorizedErrorState, type UseThemeProps, VerticalScrollFader, VerticalScrollFaderBottomScroller, VerticalScrollFaderContent, VerticalScrollFaderTopScroller, VideoPlayer, XLogoIcon, anchoredToastManager, appStoreButtonVariants, avatarGroupVariants, avatarVariants, badgeGroupVariants, badgeVariants, cn, featuredIconVariants, groupVariants, itemVariants, navigationMenuTriggerStyle, qrCodeVariants, script, sectionHeaderDescriptionVariants, sectionHeaderTitleVariants, sheetPopupVariants, sheetViewportVariants, socialButtonVariants, statTrendVariants, statVariants, toastManager, toggleVariants, useAutocompleteFilter, useCallbackRef, useCarousel, useComboboxFilter, useFirstRender, useHover, useIs2xl, useIsLg, useIsMd, useIsSm, useIsTabActive, useIsXl, useMediaQuery, useSidebar, useSmoothWheel, useSubscribeBreakpoints, useTheme, videoPlayerVariants };
1599
+ export { Accordion, AccordionPanel as AccordionContent, AccordionItem, AccordionPanel, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogBackdrop, AlertDialogClose, AlertDialogPopup as AlertDialogContent, AlertDialogCreateHandle, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogBackdrop as AlertDialogOverlay, AlertDialogPopup, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertDialogViewport, AlertTitle, AnchoredToastProvider, AnimatedThemeToggler, AppGalleryLogoIcon, AppStoreButton, type AppStoreButtonStore, AppleLogoIcon, type AsChildProps, AspectRatio, type Attribute, Autocomplete, AutocompleteClear, AutocompleteCollection, AutocompleteEmpty, AutocompleteGroup, AutocompleteGroupLabel, AutocompleteInput, AutocompleteItem, AutocompleteList, AutocompletePopup, AutocompleteRow, AutocompleteSeparator, AutocompleteStatus, AutocompleteTrigger, AutocompleteValue, Avatar, AvatarAddButton, AvatarCompanyIcon, AvatarFallback, AvatarGroup, AvatarImage, AvatarLabelGroup, AvatarProfilePhoto, AvatarUploadBase, type AvatarUploadBaseProps, Badge, BadgeAvatar, BadgeCloseButton, BadgeDot, BadgeFlag, BadgeGroup, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Group as ButtonGroup, GroupSeparator as ButtonGroupSeparator, GroupText as ButtonGroupText, ButtonProps, Calendar, Card, CardAction, CardPanel as CardContent, CardDescription, CardFooter, CardFrame, CardFrameDescription, CardFrameFooter, CardFrameHeader, CardFrameTitle, CardHeader, CardPanel, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Chat, ChatEmptyState, ChatEmptyStateDescription, ChatEmptyStateIcon, ChatEmptyStateTitle, ChatHeader, ChatHeaderActions, ChatHeaderAvatar, ChatHeaderTitle, ChatInput, type ChatInputProps, ChatMessage, ChatMessageBubble, type ChatMessageBubbleProps, type ChatMessageProps, ChatMessages, ChatSuggestion, type ChatSuggestionProps, ChatSuggestions, ChatToolCard, ChatToolCardActions, ChatToolCardHeader, ChatToolChip, ChatTypingIndicator, Checkbox, CheckboxGroup, Collapsible, CollapsiblePanel as CollapsibleContent, CollapsiblePanel, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxClear, ComboboxCollection, ComboboxEmpty, ComboboxGroup, ComboboxGroupLabel, ComboboxInput, ComboboxItem, ComboboxList, ComboboxPopup, ComboboxRow, ComboboxSeparator, ComboboxStatus, ComboboxTrigger, ComboboxValue, Command, CommandCollection, CommandCreateHandle, CommandDialog, CommandDialogPopup, CommandDialogTrigger, CommandEmpty, CommandFooter, CommandGroup, CommandGroupLabel, CommandInput, CommandItem, CommandList, CommandPanel, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CreditCard, type CreditCardProps, type CreditCardType, DashboardHeader, DashboardPanel, DataTablePaged, type DataTablePagedColumn, type DataTablePagedProps, Dialog, DialogBackdrop, DialogClose, DialogPopup as DialogContent, DialogCreateHandle, DialogDescription, DialogFooter, DialogHeader, DialogBackdrop as DialogOverlay, DialogPanel, DialogPopup, DialogPortal, DialogTitle, DialogTrigger, DialogViewport, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DribbbleLogoIcon, Menu as DropdownMenu, MenuCheckboxItem as DropdownMenuCheckboxItem, MenuPopup as DropdownMenuContent, MenuCreateHandle as DropdownMenuCreateHandle, MenuGroup as DropdownMenuGroup, MenuItem as DropdownMenuItem, MenuGroupLabel as DropdownMenuLabel, MenuPortal as DropdownMenuPortal, MenuRadioGroup as DropdownMenuRadioGroup, MenuRadioItem as DropdownMenuRadioItem, MenuSeparator as DropdownMenuSeparator, MenuShortcut as DropdownMenuShortcut, MenuSub as DropdownMenuSub, MenuSubPopup as DropdownMenuSubContent, MenuSubTrigger as DropdownMenuSubTrigger, MenuTrigger as DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, ErrorOrEmptyState, Fab, type FabProps, FacebookLogoIcon, FeaturedIcon, Field, FieldControl, FieldDescription, FieldError, FieldGroup, FieldItem, FieldLabel, FieldValidity, Fieldset, FieldsetLegend, FigmaLogoIcon, ForbiddenErrorState, Form, Frame, FrameDescription, FrameFooter, FrameHeader, FramePanel, FrameTitle, GalaxyStoreLogoIcon, GeneralErrorState, GoogleLogoIcon, GooglePlayLogoIcon, Group, GroupSeparator, GroupText, HorizontalScrollFader, HorizontalScrollFaderContent, HorizontalScrollFaderLeftScroller, HorizontalScrollFaderRightScroller, PreviewCard as HoverCard, PreviewCardPopup as HoverCardContent, PreviewCardTrigger as HoverCardTrigger, ImageUploadBase, type ImageUploadBaseProps, Input, InputGroup, InputGroupAddon, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputProps, InternalServerErrorState, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, LeftScroller, Markdown, type MarkdownProps, Menu, MenuCheckboxItem, MenuCreateHandle, MenuGroup, MenuGroupLabel, MenuItem, MenuPopup, MenuPortal, MenuRadioGroup, MenuRadioItem, MenuSeparator, MenuShortcut, MenuSub, MenuSubPopup, MenuSubTrigger, MenuTrigger, Menubar, MenuCheckboxItem as MenubarCheckboxItem, MenubarContent, MenuGroup as MenubarGroup, MenuItem as MenubarItem, MenuGroupLabel as MenubarLabel, MenubarMenu, MenuPortal as MenubarPortal, MenuRadioGroup as MenubarRadioGroup, MenuRadioItem as MenubarRadioItem, MenuSeparator as MenubarSeparator, MenuShortcut as MenubarShortcut, MenuSub as MenubarSub, MenuSubPopup as MenubarSubContent, MenuSubTrigger as MenubarSubTrigger, MenubarTrigger, Meter, MeterIndicator, MeterLabel, MeterTrack, MeterValue, MultiSelect, type MultiSelectItem, type MultiSelectProps, NavigationMenu, NavigationMenuContent, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NotFoundErrorState, type NotNullValues, NumberField, NumberFieldDecrement, NumberFieldGroup, NumberFieldIncrement, NumberFieldInput, NumberFieldScrubArea, OfflineErrorState, type OmitUnknown, Pagination, PaginationContent, PaginationControls, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationNext, PaginationPrevious, Popover, PopoverClose, PopoverPopup as PopoverContent, PopoverCreateHandle, PopoverDescription, PopoverPopup, PopoverTitle, PopoverTrigger, PreviewCard, PreviewCardPopup, PreviewCardTrigger, Progress, ProgressCircle, ProgressFloatingValue, ProgressHalfCircle, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, QRCode, QRCodeGradientScan, Radio, RadioGroup, Radio as RadioGroupItem, type RequiredSubset, ResizableHandle, ResizablePanel, ResizablePanelGroup, RightScroller, ScrollArea, ScrollBar, SectionHeader, Select, SelectPopup as SelectContent, SelectGroup, SelectGroupLabel, SelectItem, SelectPopup, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetBackdrop, SheetClose, SheetPopup as SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetBackdrop as SheetOverlay, SheetPanel, SheetPopup, SheetPortal, SheetTitle, SheetTrigger, SheetViewport, 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, SliderValue, SmoothScroll, type SmoothScrollProps, type SmoothWheelOptions, SocialButton, type SocialButtonProvider, Spinner, SpinnerOnDemand, Stat, StatDescription, StatGroup, StatLabel, StatTrend, StatValue, Stepper, StepperDescription, StepperIndicator, StepperItem, StepperSeparator, StepperTitle, StepperTrigger, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsPanel as TabsContent, TabsList, TabsPanel, TabsTab, TabsTab as TabsTrigger, Tag, TagGroup, type TagGroupProps, type TagProps, type TagSelectionMode, type TagSize, type Tail, type TailOptional, TargetCountdown, TextEditor, type TextEditorProps, Textarea, type TextareaProps, ThemeContextOverride, ThemeProvider, type ThemeProviderProps, type ThemeTogglerVariant, Timeline, TimelineContent, TimelineDescription, TimelineDot, TimelineItem, TimelineTime, TimelineTitle, type ToastPosition, ToastProvider, Toggle$1 as Toggle, ToggleGroup, Toggle as ToggleGroupItem, ToggleGroupSeparator, Toolbar, ToolbarButton, ToolbarGroup, ToolbarInput, ToolbarLink, ToolbarSeparator, Tooltip, TooltipPopup as TooltipContent, TooltipCreateHandle, TooltipDescription, TooltipPopup, TooltipProvider, TooltipTitle, TooltipTrigger, UnauthorizedErrorState, type UseThemeProps, VerticalScrollFader, VerticalScrollFaderBottomScroller, VerticalScrollFaderContent, VerticalScrollFaderTopScroller, VideoPlayer, XLogoIcon, anchoredToastManager, appStoreButtonVariants, avatarGroupVariants, avatarVariants, badgeGroupVariants, badgeVariants, chatMessageBubbleVariants, chatMessageVariants, cn, fabVariants, featuredIconVariants, groupVariants, itemVariants, navigationMenuTriggerStyle, qrCodeVariants, script, sectionHeaderDescriptionVariants, sectionHeaderTitleVariants, sheetPopupVariants, sheetViewportVariants, socialButtonVariants, statTrendVariants, statVariants, toastManager, toggleVariants, useAutocompleteFilter, useCallbackRef, useCarousel, useComboboxFilter, useFirstRender, useHover, useIs2xl, useIsLg, useIsMd, useIsSm, useIsTabActive, useIsXl, useMediaQuery, useSidebar, useSmoothWheel, useSubscribeBreakpoints, useTheme, videoPlayerVariants };