@refineui/react 0.0.6 → 0.0.7

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.cts CHANGED
@@ -383,6 +383,16 @@ declare const componentColorTokens: {
383
383
  type: "semantic";
384
384
  name: SemanticColorName;
385
385
  }>;
386
+ readonly menu: {
387
+ readonly background: Readonly<{
388
+ type: "semantic";
389
+ name: SemanticColorName;
390
+ }>;
391
+ readonly border: Readonly<{
392
+ type: "semantic";
393
+ name: SemanticColorName;
394
+ }>;
395
+ };
386
396
  readonly border: {
387
397
  readonly default: Readonly<{
388
398
  type: "semantic";
@@ -1401,7 +1411,7 @@ declare const componentColorTokens: {
1401
1411
  };
1402
1412
  readonly menu: {
1403
1413
  readonly panel: {
1404
- /** Matches Menu.style panel classes */
1414
+ /** Frosted glass `surfaceFrosted` fill + `surfaceFrost` blur in refineui.css */
1405
1415
  readonly background: Readonly<{
1406
1416
  type: "semantic";
1407
1417
  name: SemanticColorName;
@@ -2023,7 +2033,7 @@ declare const componentTypographyTokens: {
2023
2033
  name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2024
2034
  }>;
2025
2035
  };
2026
- /** App sidebar — group labels match menu sections; links match menu rows. */
2036
+ /** App sidebar — group labels share `captionLg` + tight py with Menu/Dropdown/Select/Command. */
2027
2037
  readonly sidebar: {
2028
2038
  readonly brand: Readonly<{
2029
2039
  type: "semantic-text";
@@ -2806,6 +2816,16 @@ declare const componentTokens: {
2806
2816
  type: "semantic";
2807
2817
  name: _refineui_tokens.SemanticColorName;
2808
2818
  }>;
2819
+ readonly menu: {
2820
+ readonly background: Readonly<{
2821
+ type: "semantic";
2822
+ name: _refineui_tokens.SemanticColorName;
2823
+ }>;
2824
+ readonly border: Readonly<{
2825
+ type: "semantic";
2826
+ name: _refineui_tokens.SemanticColorName;
2827
+ }>;
2828
+ };
2809
2829
  readonly border: {
2810
2830
  readonly default: Readonly<{
2811
2831
  type: "semantic";
@@ -4961,7 +4981,10 @@ declare const componentTokens: {
4961
4981
  readonly foundation: _refineui_tokens.SemanticShadowElevationPair;
4962
4982
  };
4963
4983
  readonly motion: {
4964
- /** Indicator slide after first layout */
4984
+ /**
4985
+ * Indicator slide after first layout.
4986
+ * CSS applies transform=`medium` / width=`slow` so edges arrive apart.
4987
+ */
4965
4988
  readonly indicator: {
4966
4989
  readonly duration: string;
4967
4990
  readonly easing: string;
@@ -5959,7 +5982,7 @@ interface InputOTPSlotProps extends Omit<InputHTMLAttributes<HTMLInputElement>,
5959
5982
  }
5960
5983
 
5961
5984
  declare function InputOTP({ value: valueProp, defaultValue, onValueChange, maxLength, size: sizeProp, disabled, pattern, autoFocus, name, id, inputMode, autoComplete, className, children, "aria-label": ariaLabel, ...props }: InputOTPProps): react.JSX.Element;
5962
- declare function InputOTPSlot({ index, className, onChange, onKeyDown, onPaste, onFocus, ...props }: InputOTPSlotProps): react.JSX.Element;
5985
+ declare function InputOTPSlot({ index, className, style, onChange, onKeyDown, onPaste, onFocus, ...props }: InputOTPSlotProps): react.JSX.Element;
5963
5986
 
5964
5987
  interface SearchFieldProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
5965
5988
  /** Controlled query */
@@ -6131,7 +6154,6 @@ type SelectPortalProps = {
6131
6154
  children?: ReactNode;
6132
6155
  container?: HTMLElement | null;
6133
6156
  };
6134
- type SelectSectionProps = HTMLAttributes<HTMLDivElement>;
6135
6157
 
6136
6158
  declare function Select({ value: ctrlValue, onValueChange, defaultValue, open: ctrlOpen, onOpenChange, children, placeholder, size: sizeProp, fullWidth, disabled, className, ...props }: SelectProps): react.JSX.Element;
6137
6159
  declare const SelectTrigger: react.ForwardRefExoticComponent<SelectTriggerProps & react.RefAttributes<HTMLButtonElement>>;
@@ -6142,7 +6164,6 @@ declare const SelectContent: react.ForwardRefExoticComponent<SelectContentProps
6142
6164
  declare const SelectViewport: react.ForwardRefExoticComponent<SelectViewportProps & react.RefAttributes<HTMLDivElement>>;
6143
6165
  declare function SelectGroup({ children, className, ...props }: SelectGroupProps): react.JSX.Element;
6144
6166
  declare function SelectLabel({ children, className, ...props }: SelectLabelProps): react.JSX.Element;
6145
- declare function SelectSection({ children, className, ...props }: SelectSectionProps): react.JSX.Element;
6146
6167
  declare function SelectSeparator({ className, ...props }: SelectSeparatorProps): react.JSX.Element;
6147
6168
  declare function SelectItem({ value: itemValue, children, disabled, textValue, className, onPointerDown, onPointerUp, onPointerLeave, onPointerCancel, onMouseDown, onMouseUp, onMouseLeave, ...props }: SelectItemProps): react.JSX.Element;
6148
6169
  declare function SelectItemText({ children, className, ...props }: SelectItemTextProps): react.JSX.Element;
@@ -6515,7 +6536,9 @@ declare const breadcrumbLinkClassName: string;
6515
6536
  declare function BreadcrumbLink({ className, children, ...props }: BreadcrumbLinkProps): react.JSX.Element;
6516
6537
  declare function BreadcrumbPage({ className, ...props }: BreadcrumbPageProps): react.JSX.Element;
6517
6538
  declare function BreadcrumbSeparator({ children, className, ...props }: BreadcrumbSeparatorProps): react.JSX.Element;
6539
+ /** Presentational collapsed marker (not interactive). Square chip matches icon Button sm. */
6518
6540
  declare function BreadcrumbEllipsis({ className, ...props }: BreadcrumbEllipsisProps): react.JSX.Element;
6541
+ /** Interactive collapsed control — Button icon sm, breadcrumb hover contract via `data-refineui`. */
6519
6542
  declare const BreadcrumbEllipsisTrigger: react.ForwardRefExoticComponent<BreadcrumbEllipsisTriggerProps & react.RefAttributes<HTMLButtonElement>>;
6520
6543
 
6521
6544
  type FooterProps = HTMLAttributes<HTMLElement>;
@@ -6815,7 +6838,7 @@ interface MenuPopoverProps extends HTMLAttributes<HTMLDivElement> {
6815
6838
  }
6816
6839
  interface MenuListProps extends HTMLAttributes<HTMLDivElement> {
6817
6840
  }
6818
- interface MenuSectionProps extends HTMLAttributes<HTMLDivElement> {
6841
+ interface MenuLabelProps extends HTMLAttributes<HTMLDivElement> {
6819
6842
  children: ReactNode;
6820
6843
  }
6821
6844
  interface MenuDividerProps extends HTMLAttributes<HTMLDivElement> {
@@ -6844,8 +6867,8 @@ type MenuTriggerProps = {
6844
6867
  declare function MenuTrigger({ children }: MenuTriggerProps): react.JSX.Element;
6845
6868
  declare function MenuPopover({ className, children, style, ...props }: MenuPopoverProps): react.ReactPortal | null;
6846
6869
  declare function MenuList({ className, ...props }: MenuListProps): react.JSX.Element;
6847
- /** Web Kit `Menu / Section` (`633:4258`) */
6848
- declare function MenuSection({ className, children, ...props }: MenuSectionProps): react.JSX.Element;
6870
+ /** Group heading same role as DropdownLabel / SelectLabel. */
6871
+ declare function MenuLabel({ className, children, ...props }: MenuLabelProps): react.JSX.Element;
6849
6872
  /** Web Kit `Menu / Section` Divider (`633:4263`) */
6850
6873
  declare function MenuDivider({ className, ...props }: MenuDividerProps): react.JSX.Element;
6851
6874
  declare function MenuItem({ children, description, shortcut, startIcon, endIcon, className, disabled, state, onClick, onKeyDown, ...props }: MenuItemProps): react.JSX.Element;
@@ -7356,39 +7379,39 @@ declare function ChartAxisLabels({ labels, align, className, ...props }: ChartAx
7356
7379
  declare function ChartLegend({ className, ...props }: ChartLegendProps): react.JSX.Element;
7357
7380
  declare function ChartLegendItem({ seriesColor, className, children, style, ...props }: ChartLegendItemProps): react.JSX.Element;
7358
7381
 
7359
- interface CollapsibleRootProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
7382
+ interface CollapsibleProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
7360
7383
  open?: boolean;
7361
7384
  defaultOpen?: boolean;
7362
7385
  onOpenChange?: (open: boolean) => void;
7363
7386
  asChild?: boolean;
7364
- children?: any;
7387
+ children?: ReactNode;
7365
7388
  }
7366
- declare const CollapsibleRoot: react.ForwardRefExoticComponent<CollapsibleRootProps & react.RefAttributes<HTMLDivElement>>;
7389
+ /** Root compound pattern aligned with Accordion (`Collapsible` + Trigger + Content). */
7390
+ declare const Collapsible: react.ForwardRefExoticComponent<CollapsibleProps & react.RefAttributes<HTMLDivElement>>;
7367
7391
  interface CollapsibleTriggerProps extends ButtonHTMLAttributes<HTMLButtonElement> {
7368
7392
  asChild?: boolean;
7369
7393
  }
7370
7394
  declare const CollapsibleTrigger: react.ForwardRefExoticComponent<CollapsibleTriggerProps & react.RefAttributes<HTMLButtonElement>>;
7371
7395
  interface CollapsibleContentProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
7372
- children?: any;
7396
+ children?: ReactNode;
7373
7397
  }
7398
+ /**
7399
+ * Height clip via `grid-template-rows` (same technique as AccordionContent) —
7400
+ * no scrollHeight / ResizeObserver.
7401
+ */
7374
7402
  declare const CollapsibleContent: react.ForwardRefExoticComponent<CollapsibleContentProps & react.RefAttributes<HTMLDivElement>>;
7375
- declare const Collapsible: react.ForwardRefExoticComponent<CollapsibleRootProps & react.RefAttributes<HTMLDivElement>> & {
7376
- Root: react.ForwardRefExoticComponent<CollapsibleRootProps & react.RefAttributes<HTMLDivElement>>;
7377
- Trigger: react.ForwardRefExoticComponent<CollapsibleTriggerProps & react.RefAttributes<HTMLButtonElement>>;
7378
- Content: react.ForwardRefExoticComponent<CollapsibleContentProps & react.RefAttributes<HTMLDivElement>>;
7379
- };
7380
7403
 
7381
7404
  type ContextMenuSelectEvent = {
7382
7405
  preventDefault: () => void;
7383
7406
  defaultPrevented: boolean;
7384
7407
  };
7385
- interface ContextMenuRootProps {
7408
+ interface ContextMenuProps {
7386
7409
  modal?: boolean;
7387
7410
  onOpenChange?: (open: boolean) => void;
7388
7411
  children?: ReactNode;
7389
7412
  className?: string;
7390
7413
  }
7391
- declare function ContextMenuRoot({ modal, onOpenChange, children }: ContextMenuRootProps): react.JSX.Element;
7414
+ declare function ContextMenu({ modal, onOpenChange, children }: ContextMenuProps): react.JSX.Element;
7392
7415
  interface ContextMenuTriggerProps extends HTMLAttributes<HTMLElement> {
7393
7416
  asChild?: boolean;
7394
7417
  }
@@ -7410,7 +7433,7 @@ interface ContextMenuItemProps extends HTMLAttributes<HTMLButtonElement> {
7410
7433
  }
7411
7434
  declare const ContextMenuItem: react.ForwardRefExoticComponent<ContextMenuItemProps & react.RefAttributes<HTMLButtonElement>>;
7412
7435
  declare const ContextMenuSeparator: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
7413
- declare function ContextMenuSection({ className, children, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
7436
+ declare function ContextMenuLabel({ className, children, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
7414
7437
  declare function ContextMenuSub({ children }: {
7415
7438
  children?: ReactNode;
7416
7439
  }): react.JSX.Element;
@@ -7423,17 +7446,5 @@ declare const ContextMenuSubTrigger: react.ForwardRefExoticComponent<ContextMenu
7423
7446
  interface ContextMenuSubContentProps extends HTMLAttributes<HTMLDivElement> {
7424
7447
  }
7425
7448
  declare const ContextMenuSubContent: react.ForwardRefExoticComponent<ContextMenuSubContentProps & react.RefAttributes<HTMLDivElement>>;
7426
- declare const ContextMenu: typeof ContextMenuRoot & {
7427
- Root: typeof ContextMenuRoot;
7428
- Trigger: react.ForwardRefExoticComponent<ContextMenuTriggerProps & react.RefAttributes<HTMLElement>>;
7429
- Portal: typeof ContextMenuPortal;
7430
- Content: react.ForwardRefExoticComponent<ContextMenuContentProps & react.RefAttributes<HTMLDivElement>>;
7431
- Item: react.ForwardRefExoticComponent<ContextMenuItemProps & react.RefAttributes<HTMLButtonElement>>;
7432
- Section: typeof ContextMenuSection;
7433
- Separator: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
7434
- Sub: typeof ContextMenuSub;
7435
- SubTrigger: react.ForwardRefExoticComponent<ContextMenuSubTriggerProps & react.RefAttributes<HTMLButtonElement>>;
7436
- SubContent: react.ForwardRefExoticComponent<ContextMenuSubContentProps & react.RefAttributes<HTMLDivElement>>;
7437
- };
7438
7449
 
7439
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemSlotProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionType, Alert, AlertAction, type AlertActionProps, AlertActions, type AlertActionsProps, AlertBody, type AlertBodyProps, AlertClose, type AlertCloseProps, AlertContent, type AlertContentProps, AlertDescription, type AlertDescriptionProps, AlertIcon, type AlertIconProps, type AlertProps, AlertRow, type AlertRowProps, AlertTitle, type AlertTitleProps, type AlertVariant, Avatar, AvatarBadge, type AvatarBadgeProps, type AvatarColor, type AvatarColorIcon, type AvatarColorImage, type AvatarColorInitials, AvatarFallback, type AvatarFallbackProps, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarItem, type AvatarLayout, type AvatarPresenceStatus, type AvatarProps, type AvatarSize, AvatarText, type AvatarTextProps, Avatars, type AvatarsLayout, type AvatarsProps, type AvatarsSize, Badge, type BadgeLayout, type BadgeProps, type BadgeVariant, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbEllipsisTrigger, type BreadcrumbEllipsisTriggerProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Bubble, type BubbleAlign, BubbleContent, type BubbleContentProps, BubbleGroup, type BubbleGroupProps, type BubbleProps, BubbleReactions, type BubbleReactionsProps, type BubbleReactionsSide, type BubbleVariant, Button, type ButtonLayout, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarMode, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardHeaderMain, type CardProps, CardTitle, Carousel, CarouselContent, type CarouselContentProps, CarouselControls, type CarouselControlsProps, CarouselIndicators, type CarouselIndicatorsProps, CarouselItem, type CarouselItemProps, CarouselNext, type CarouselNextProps, CarouselPrevious, type CarouselPreviousProps, type CarouselProps, Chart, ChartAxisLabels, type ChartAxisLabelsProps, ChartBars, type ChartBarsProps, ChartBody, type ChartBodyProps, ChartContent, type ChartContentProps, ChartGrid, type ChartGridProps, type ChartItemState, ChartLegend, ChartLegendItem, type ChartLegendItemProps, type ChartLegendProps, ChartLine, type ChartLineProps, ChartPlot, type ChartPlotProps, type ChartProps, type ChartSeriesColor, ChartTooltip, type ChartTooltipProps, ChartYAxisLabels, type ChartYAxisLabelsProps, Checkbox, type CheckboxProps, Chip, type ChipProps, type ChipSize, type ChipVariant, Collapsible, CollapsibleContent, type CollapsibleContentProps, CollapsibleRoot, type CollapsibleRootProps, CollapsibleTrigger, type CollapsibleTriggerProps, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, type CommandFilter, CommandGroup, CommandGroupHeading, type CommandGroupHeadingProps, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, Container, type ContainerProps, ContextMenu, ContextMenuContent, type ContextMenuContentProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuPortal, ContextMenuRoot, type ContextMenuRootProps, ContextMenuSection, type ContextMenuSelectEvent, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, type ContextMenuSubContentProps, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, type ControlSize, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Divider, type DividerProps, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, Dropdown, type MenuAlign as DropdownAlign, DropdownContent, type DropdownContentProps, DropdownGroup, DropdownItem, type DropdownItemProps, DropdownLabel, DropdownPortal, DropdownSeparator, DropdownShortcut, DropdownSub, DropdownSubContent, type DropdownSubContentProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, Field, FieldError, type FieldErrorProps, FieldHint, type FieldHintProps, FieldLabel, type FieldLabelProps, type FieldProps, FieldRequired, type FieldRequiredProps, Footer, FooterBottom, type FooterBottomProps, FooterBrand, FooterBrandDescription, type FooterBrandDescriptionProps, FooterBrandName, type FooterBrandNameProps, type FooterBrandProps, FooterContent, type FooterContentProps, FooterCopyright, type FooterCopyrightProps, FooterExplore, type FooterExploreProps, FooterGroup, FooterGroupLabel, type FooterGroupLabelProps, type FooterGroupProps, FooterLink, type FooterLinkProps, FooterLocale, type FooterLocaleProps, FooterLogo, type FooterLogoProps, FooterMeta, FooterMetaEnd, type FooterMetaEndProps, type FooterMetaProps, FooterNav, type FooterNavProps, type FooterProps, FooterSocial, type FooterSocialProps, Grid, GridItem, type GridItemProps, type GridProps, Input, InputOTP, type InputOTPProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputProps, Label, type LabelProps, LabelRequired, type LabelRequiredProps, type LayoutAlign, type LayoutAs, type LayoutBackground, type LayoutBorderColor, type LayoutDirection, type LayoutGap, type LayoutJustify, type LayoutRadius, type LayoutStroke, type LayoutWrap, Link, type LinkProps, Menu, MenuDivider, MenuItem, MenuList, MenuPopover, type MenuProps, MenuSection, MenuSub, MenuSubContent, type MenuSubContentProps, MenuSubTrigger, type MenuSubTriggerProps, MenuTrigger, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, type NavigationMenuIndicatorProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, type PaginationRootProps, PopOver, type PopOverAlign, type PopOverProps, Popover, type PopoverAlign, PopoverContent, type PopoverContentProps, type PopoverPlacement, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, ProgressStepper, ProgressStepperItem, type ProgressStepperItemProps, ProgressStepperLabel, type ProgressStepperLabelProps, ProgressStepperList, type ProgressStepperListProps, ProgressStepperMarker, type ProgressStepperMarkerProps, type ProgressStepperProps, type ProgressStepperState, Radio, RadioInput, type RadioInputProps, type RadioProps, ResizableHandle, type ResizableHandleProps, type ResizableOrientation, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, type ResizablePanelProps, ScrollArea, type ScrollAreaOrientation, type ScrollAreaProps, ScrollAreaScrollbar, type ScrollAreaScrollbarProps, ScrollAreaThumb, type ScrollAreaThumbProps, type ScrollAreaType, ScrollAreaViewport, type ScrollAreaViewportProps, SearchField, SearchFieldClear, type SearchFieldClearProps, SearchFieldIcon, type SearchFieldIconProps, SearchFieldInput, type SearchFieldInputProps, type SearchFieldProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectArrow, type SelectArrowProps, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectIcon, type SelectIconProps, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectLabel, type SelectLabelProps, SelectPortal, type SelectPortalProps, type SelectProps, SelectScrollDownButton, type SelectScrollDownButtonProps, SelectScrollUpButton, type SelectScrollUpButtonProps, SelectSection, type SelectSectionProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerAppearance, type SelectTriggerProps, SelectValue, type SelectValueProps, SelectViewport, type SelectViewportProps, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarLink, type SidebarLinkProps, SidebarNav, type SidebarNavProps, SidebarPeek, SidebarPeekEdge, type SidebarPeekEdgeProps, SidebarPeekInset, type SidebarPeekInsetProps, type SidebarPeekMode, SidebarPeekPanel, type SidebarPeekPanelProps, SidebarPeekPin, type SidebarPeekPinProps, type SidebarPeekProps, type SidebarProps, Skeleton, type SkeletonProps, Slider, type SliderProps, Spacer, type SpacerProps, SpinButton, type SpinButtonProps, Spinner, type SpinnerLabelPosition, type SpinnerProps, type SpinnerSize, Stack, type StackProps, Stepper, StepperContent, type StepperContentProps, StepperDescription, type StepperDescriptionProps, StepperIndicator, type StepperIndicatorProps, StepperItem, type StepperItemProps, StepperList, type StepperListProps, type StepperOrientation, type StepperProps, StepperSeparator, type StepperSeparatorProps, type StepperState, StepperTitle, type StepperTitleProps, Toggle as Switch, type ToggleProps as SwitchProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Chip as Tag, type ChipProps as TagProps, type ChipSize as TagSize, type ChipVariant as TagVariant, Text, type TextProps, Textarea, type TextareaProps, Toast, type ToastAction, type ToastOptions, type ToastProps, type ToastSwipeDirection, type ToastVariant, Toaster, type ToasterProps, Toggle, type ToggleProps, Tooltip, type TooltipAlign, type TooltipPosition, type TooltipProps, Tree, TreeItem, TreeItemContent, type TreeItemContentProps, type TreeItemProps, TreeItemTrigger, type TreeItemTriggerProps, type TreeProps, type TreeSize, WebIcon, type WebIconProps, breadcrumbLinkClassName, componentColorTokens, componentTextClass, componentTokens, componentTypographyTokens, defaultCommandFilter, dismissToast, footerLinkClassName, footerLocaleLinkClassName, footerLocaleTriggerClassName, footerSocialLinkClassName, semanticTextClass, sizedComponentTextClass, toast, useSidebarPeek };
7450
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemSlotProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionType, Alert, AlertAction, type AlertActionProps, AlertActions, type AlertActionsProps, AlertBody, type AlertBodyProps, AlertClose, type AlertCloseProps, AlertContent, type AlertContentProps, AlertDescription, type AlertDescriptionProps, AlertIcon, type AlertIconProps, type AlertProps, AlertRow, type AlertRowProps, AlertTitle, type AlertTitleProps, type AlertVariant, Avatar, AvatarBadge, type AvatarBadgeProps, type AvatarColor, type AvatarColorIcon, type AvatarColorImage, type AvatarColorInitials, AvatarFallback, type AvatarFallbackProps, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarItem, type AvatarLayout, type AvatarPresenceStatus, type AvatarProps, type AvatarSize, AvatarText, type AvatarTextProps, Avatars, type AvatarsLayout, type AvatarsProps, type AvatarsSize, Badge, type BadgeLayout, type BadgeProps, type BadgeVariant, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbEllipsisTrigger, type BreadcrumbEllipsisTriggerProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Bubble, type BubbleAlign, BubbleContent, type BubbleContentProps, BubbleGroup, type BubbleGroupProps, type BubbleProps, BubbleReactions, type BubbleReactionsProps, type BubbleReactionsSide, type BubbleVariant, Button, type ButtonLayout, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarMode, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardHeaderMain, type CardProps, CardTitle, Carousel, CarouselContent, type CarouselContentProps, CarouselControls, type CarouselControlsProps, CarouselIndicators, type CarouselIndicatorsProps, CarouselItem, type CarouselItemProps, CarouselNext, type CarouselNextProps, CarouselPrevious, type CarouselPreviousProps, type CarouselProps, Chart, ChartAxisLabels, type ChartAxisLabelsProps, ChartBars, type ChartBarsProps, ChartBody, type ChartBodyProps, ChartContent, type ChartContentProps, ChartGrid, type ChartGridProps, type ChartItemState, ChartLegend, ChartLegendItem, type ChartLegendItemProps, type ChartLegendProps, ChartLine, type ChartLineProps, ChartPlot, type ChartPlotProps, type ChartProps, type ChartSeriesColor, ChartTooltip, type ChartTooltipProps, ChartYAxisLabels, type ChartYAxisLabelsProps, Checkbox, type CheckboxProps, Chip, type ChipProps, type ChipSize, type ChipVariant, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, type CommandFilter, CommandGroup, CommandGroupHeading, type CommandGroupHeadingProps, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, Container, type ContainerProps, ContextMenu, ContextMenuContent, type ContextMenuContentProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuLabel, ContextMenuPortal, type ContextMenuProps, type ContextMenuSelectEvent, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, type ContextMenuSubContentProps, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, type ControlSize, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Divider, type DividerProps, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, Dropdown, type MenuAlign as DropdownAlign, DropdownContent, type DropdownContentProps, DropdownGroup, DropdownItem, type DropdownItemProps, DropdownLabel, DropdownPortal, DropdownSeparator, DropdownShortcut, DropdownSub, DropdownSubContent, type DropdownSubContentProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, Field, FieldError, type FieldErrorProps, FieldHint, type FieldHintProps, FieldLabel, type FieldLabelProps, type FieldProps, FieldRequired, type FieldRequiredProps, Footer, FooterBottom, type FooterBottomProps, FooterBrand, FooterBrandDescription, type FooterBrandDescriptionProps, FooterBrandName, type FooterBrandNameProps, type FooterBrandProps, FooterContent, type FooterContentProps, FooterCopyright, type FooterCopyrightProps, FooterExplore, type FooterExploreProps, FooterGroup, FooterGroupLabel, type FooterGroupLabelProps, type FooterGroupProps, FooterLink, type FooterLinkProps, FooterLocale, type FooterLocaleProps, FooterLogo, type FooterLogoProps, FooterMeta, FooterMetaEnd, type FooterMetaEndProps, type FooterMetaProps, FooterNav, type FooterNavProps, type FooterProps, FooterSocial, type FooterSocialProps, Grid, GridItem, type GridItemProps, type GridProps, Input, InputOTP, type InputOTPProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputProps, Label, type LabelProps, LabelRequired, type LabelRequiredProps, type LayoutAlign, type LayoutAs, type LayoutBackground, type LayoutBorderColor, type LayoutDirection, type LayoutGap, type LayoutJustify, type LayoutRadius, type LayoutStroke, type LayoutWrap, Link, type LinkProps, Menu, MenuDivider, MenuItem, MenuLabel, type MenuLabelProps, MenuList, MenuPopover, type MenuProps, MenuSub, MenuSubContent, type MenuSubContentProps, MenuSubTrigger, type MenuSubTriggerProps, MenuTrigger, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, type NavigationMenuIndicatorProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, type PaginationRootProps, PopOver, type PopOverAlign, type PopOverProps, Popover, type PopoverAlign, PopoverContent, type PopoverContentProps, type PopoverPlacement, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, ProgressStepper, ProgressStepperItem, type ProgressStepperItemProps, ProgressStepperLabel, type ProgressStepperLabelProps, ProgressStepperList, type ProgressStepperListProps, ProgressStepperMarker, type ProgressStepperMarkerProps, type ProgressStepperProps, type ProgressStepperState, Radio, RadioInput, type RadioInputProps, type RadioProps, ResizableHandle, type ResizableHandleProps, type ResizableOrientation, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, type ResizablePanelProps, ScrollArea, type ScrollAreaOrientation, type ScrollAreaProps, ScrollAreaScrollbar, type ScrollAreaScrollbarProps, ScrollAreaThumb, type ScrollAreaThumbProps, type ScrollAreaType, ScrollAreaViewport, type ScrollAreaViewportProps, SearchField, SearchFieldClear, type SearchFieldClearProps, SearchFieldIcon, type SearchFieldIconProps, SearchFieldInput, type SearchFieldInputProps, type SearchFieldProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectArrow, type SelectArrowProps, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectIcon, type SelectIconProps, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectLabel, type SelectLabelProps, SelectPortal, type SelectPortalProps, type SelectProps, SelectScrollDownButton, type SelectScrollDownButtonProps, SelectScrollUpButton, type SelectScrollUpButtonProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerAppearance, type SelectTriggerProps, SelectValue, type SelectValueProps, SelectViewport, type SelectViewportProps, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarLink, type SidebarLinkProps, SidebarNav, type SidebarNavProps, SidebarPeek, SidebarPeekEdge, type SidebarPeekEdgeProps, SidebarPeekInset, type SidebarPeekInsetProps, type SidebarPeekMode, SidebarPeekPanel, type SidebarPeekPanelProps, SidebarPeekPin, type SidebarPeekPinProps, type SidebarPeekProps, type SidebarProps, Skeleton, type SkeletonProps, Slider, type SliderProps, Spacer, type SpacerProps, SpinButton, type SpinButtonProps, Spinner, type SpinnerLabelPosition, type SpinnerProps, type SpinnerSize, Stack, type StackProps, Stepper, StepperContent, type StepperContentProps, StepperDescription, type StepperDescriptionProps, StepperIndicator, type StepperIndicatorProps, StepperItem, type StepperItemProps, StepperList, type StepperListProps, type StepperOrientation, type StepperProps, StepperSeparator, type StepperSeparatorProps, type StepperState, StepperTitle, type StepperTitleProps, Toggle as Switch, type ToggleProps as SwitchProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Chip as Tag, type ChipProps as TagProps, type ChipSize as TagSize, type ChipVariant as TagVariant, Text, type TextProps, Textarea, type TextareaProps, Toast, type ToastAction, type ToastOptions, type ToastProps, type ToastSwipeDirection, type ToastVariant, Toaster, type ToasterProps, Toggle, type ToggleProps, Tooltip, type TooltipAlign, type TooltipPosition, type TooltipProps, Tree, TreeItem, TreeItemContent, type TreeItemContentProps, type TreeItemProps, TreeItemTrigger, type TreeItemTriggerProps, type TreeProps, type TreeSize, WebIcon, type WebIconProps, breadcrumbLinkClassName, componentColorTokens, componentTextClass, componentTokens, componentTypographyTokens, defaultCommandFilter, dismissToast, footerLinkClassName, footerLocaleLinkClassName, footerLocaleTriggerClassName, footerSocialLinkClassName, semanticTextClass, sizedComponentTextClass, toast, useSidebarPeek };
package/dist/index.d.ts CHANGED
@@ -383,6 +383,16 @@ declare const componentColorTokens: {
383
383
  type: "semantic";
384
384
  name: SemanticColorName;
385
385
  }>;
386
+ readonly menu: {
387
+ readonly background: Readonly<{
388
+ type: "semantic";
389
+ name: SemanticColorName;
390
+ }>;
391
+ readonly border: Readonly<{
392
+ type: "semantic";
393
+ name: SemanticColorName;
394
+ }>;
395
+ };
386
396
  readonly border: {
387
397
  readonly default: Readonly<{
388
398
  type: "semantic";
@@ -1401,7 +1411,7 @@ declare const componentColorTokens: {
1401
1411
  };
1402
1412
  readonly menu: {
1403
1413
  readonly panel: {
1404
- /** Matches Menu.style panel classes */
1414
+ /** Frosted glass `surfaceFrosted` fill + `surfaceFrost` blur in refineui.css */
1405
1415
  readonly background: Readonly<{
1406
1416
  type: "semantic";
1407
1417
  name: SemanticColorName;
@@ -2023,7 +2033,7 @@ declare const componentTypographyTokens: {
2023
2033
  name: "displayLg" | "displayMd" | "displaySm" | "headingLg" | "headingMd" | "headingSm" | "titleLg" | "titleMd" | "titleSm" | "subtitleLg" | "subtitleMd" | "bodyLg" | "bodyMd" | "bodySm" | "bodyXs" | "labelLg" | "labelMd" | "labelSm" | "captionLg" | "captionMd" | "captionSm";
2024
2034
  }>;
2025
2035
  };
2026
- /** App sidebar — group labels match menu sections; links match menu rows. */
2036
+ /** App sidebar — group labels share `captionLg` + tight py with Menu/Dropdown/Select/Command. */
2027
2037
  readonly sidebar: {
2028
2038
  readonly brand: Readonly<{
2029
2039
  type: "semantic-text";
@@ -2806,6 +2816,16 @@ declare const componentTokens: {
2806
2816
  type: "semantic";
2807
2817
  name: _refineui_tokens.SemanticColorName;
2808
2818
  }>;
2819
+ readonly menu: {
2820
+ readonly background: Readonly<{
2821
+ type: "semantic";
2822
+ name: _refineui_tokens.SemanticColorName;
2823
+ }>;
2824
+ readonly border: Readonly<{
2825
+ type: "semantic";
2826
+ name: _refineui_tokens.SemanticColorName;
2827
+ }>;
2828
+ };
2809
2829
  readonly border: {
2810
2830
  readonly default: Readonly<{
2811
2831
  type: "semantic";
@@ -4961,7 +4981,10 @@ declare const componentTokens: {
4961
4981
  readonly foundation: _refineui_tokens.SemanticShadowElevationPair;
4962
4982
  };
4963
4983
  readonly motion: {
4964
- /** Indicator slide after first layout */
4984
+ /**
4985
+ * Indicator slide after first layout.
4986
+ * CSS applies transform=`medium` / width=`slow` so edges arrive apart.
4987
+ */
4965
4988
  readonly indicator: {
4966
4989
  readonly duration: string;
4967
4990
  readonly easing: string;
@@ -5959,7 +5982,7 @@ interface InputOTPSlotProps extends Omit<InputHTMLAttributes<HTMLInputElement>,
5959
5982
  }
5960
5983
 
5961
5984
  declare function InputOTP({ value: valueProp, defaultValue, onValueChange, maxLength, size: sizeProp, disabled, pattern, autoFocus, name, id, inputMode, autoComplete, className, children, "aria-label": ariaLabel, ...props }: InputOTPProps): react.JSX.Element;
5962
- declare function InputOTPSlot({ index, className, onChange, onKeyDown, onPaste, onFocus, ...props }: InputOTPSlotProps): react.JSX.Element;
5985
+ declare function InputOTPSlot({ index, className, style, onChange, onKeyDown, onPaste, onFocus, ...props }: InputOTPSlotProps): react.JSX.Element;
5963
5986
 
5964
5987
  interface SearchFieldProps extends Omit<HTMLAttributes<HTMLDivElement>, "onChange" | "defaultValue"> {
5965
5988
  /** Controlled query */
@@ -6131,7 +6154,6 @@ type SelectPortalProps = {
6131
6154
  children?: ReactNode;
6132
6155
  container?: HTMLElement | null;
6133
6156
  };
6134
- type SelectSectionProps = HTMLAttributes<HTMLDivElement>;
6135
6157
 
6136
6158
  declare function Select({ value: ctrlValue, onValueChange, defaultValue, open: ctrlOpen, onOpenChange, children, placeholder, size: sizeProp, fullWidth, disabled, className, ...props }: SelectProps): react.JSX.Element;
6137
6159
  declare const SelectTrigger: react.ForwardRefExoticComponent<SelectTriggerProps & react.RefAttributes<HTMLButtonElement>>;
@@ -6142,7 +6164,6 @@ declare const SelectContent: react.ForwardRefExoticComponent<SelectContentProps
6142
6164
  declare const SelectViewport: react.ForwardRefExoticComponent<SelectViewportProps & react.RefAttributes<HTMLDivElement>>;
6143
6165
  declare function SelectGroup({ children, className, ...props }: SelectGroupProps): react.JSX.Element;
6144
6166
  declare function SelectLabel({ children, className, ...props }: SelectLabelProps): react.JSX.Element;
6145
- declare function SelectSection({ children, className, ...props }: SelectSectionProps): react.JSX.Element;
6146
6167
  declare function SelectSeparator({ className, ...props }: SelectSeparatorProps): react.JSX.Element;
6147
6168
  declare function SelectItem({ value: itemValue, children, disabled, textValue, className, onPointerDown, onPointerUp, onPointerLeave, onPointerCancel, onMouseDown, onMouseUp, onMouseLeave, ...props }: SelectItemProps): react.JSX.Element;
6148
6169
  declare function SelectItemText({ children, className, ...props }: SelectItemTextProps): react.JSX.Element;
@@ -6515,7 +6536,9 @@ declare const breadcrumbLinkClassName: string;
6515
6536
  declare function BreadcrumbLink({ className, children, ...props }: BreadcrumbLinkProps): react.JSX.Element;
6516
6537
  declare function BreadcrumbPage({ className, ...props }: BreadcrumbPageProps): react.JSX.Element;
6517
6538
  declare function BreadcrumbSeparator({ children, className, ...props }: BreadcrumbSeparatorProps): react.JSX.Element;
6539
+ /** Presentational collapsed marker (not interactive). Square chip matches icon Button sm. */
6518
6540
  declare function BreadcrumbEllipsis({ className, ...props }: BreadcrumbEllipsisProps): react.JSX.Element;
6541
+ /** Interactive collapsed control — Button icon sm, breadcrumb hover contract via `data-refineui`. */
6519
6542
  declare const BreadcrumbEllipsisTrigger: react.ForwardRefExoticComponent<BreadcrumbEllipsisTriggerProps & react.RefAttributes<HTMLButtonElement>>;
6520
6543
 
6521
6544
  type FooterProps = HTMLAttributes<HTMLElement>;
@@ -6815,7 +6838,7 @@ interface MenuPopoverProps extends HTMLAttributes<HTMLDivElement> {
6815
6838
  }
6816
6839
  interface MenuListProps extends HTMLAttributes<HTMLDivElement> {
6817
6840
  }
6818
- interface MenuSectionProps extends HTMLAttributes<HTMLDivElement> {
6841
+ interface MenuLabelProps extends HTMLAttributes<HTMLDivElement> {
6819
6842
  children: ReactNode;
6820
6843
  }
6821
6844
  interface MenuDividerProps extends HTMLAttributes<HTMLDivElement> {
@@ -6844,8 +6867,8 @@ type MenuTriggerProps = {
6844
6867
  declare function MenuTrigger({ children }: MenuTriggerProps): react.JSX.Element;
6845
6868
  declare function MenuPopover({ className, children, style, ...props }: MenuPopoverProps): react.ReactPortal | null;
6846
6869
  declare function MenuList({ className, ...props }: MenuListProps): react.JSX.Element;
6847
- /** Web Kit `Menu / Section` (`633:4258`) */
6848
- declare function MenuSection({ className, children, ...props }: MenuSectionProps): react.JSX.Element;
6870
+ /** Group heading same role as DropdownLabel / SelectLabel. */
6871
+ declare function MenuLabel({ className, children, ...props }: MenuLabelProps): react.JSX.Element;
6849
6872
  /** Web Kit `Menu / Section` Divider (`633:4263`) */
6850
6873
  declare function MenuDivider({ className, ...props }: MenuDividerProps): react.JSX.Element;
6851
6874
  declare function MenuItem({ children, description, shortcut, startIcon, endIcon, className, disabled, state, onClick, onKeyDown, ...props }: MenuItemProps): react.JSX.Element;
@@ -7356,39 +7379,39 @@ declare function ChartAxisLabels({ labels, align, className, ...props }: ChartAx
7356
7379
  declare function ChartLegend({ className, ...props }: ChartLegendProps): react.JSX.Element;
7357
7380
  declare function ChartLegendItem({ seriesColor, className, children, style, ...props }: ChartLegendItemProps): react.JSX.Element;
7358
7381
 
7359
- interface CollapsibleRootProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
7382
+ interface CollapsibleProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
7360
7383
  open?: boolean;
7361
7384
  defaultOpen?: boolean;
7362
7385
  onOpenChange?: (open: boolean) => void;
7363
7386
  asChild?: boolean;
7364
- children?: any;
7387
+ children?: ReactNode;
7365
7388
  }
7366
- declare const CollapsibleRoot: react.ForwardRefExoticComponent<CollapsibleRootProps & react.RefAttributes<HTMLDivElement>>;
7389
+ /** Root compound pattern aligned with Accordion (`Collapsible` + Trigger + Content). */
7390
+ declare const Collapsible: react.ForwardRefExoticComponent<CollapsibleProps & react.RefAttributes<HTMLDivElement>>;
7367
7391
  interface CollapsibleTriggerProps extends ButtonHTMLAttributes<HTMLButtonElement> {
7368
7392
  asChild?: boolean;
7369
7393
  }
7370
7394
  declare const CollapsibleTrigger: react.ForwardRefExoticComponent<CollapsibleTriggerProps & react.RefAttributes<HTMLButtonElement>>;
7371
7395
  interface CollapsibleContentProps extends Omit<HTMLAttributes<HTMLDivElement>, "children"> {
7372
- children?: any;
7396
+ children?: ReactNode;
7373
7397
  }
7398
+ /**
7399
+ * Height clip via `grid-template-rows` (same technique as AccordionContent) —
7400
+ * no scrollHeight / ResizeObserver.
7401
+ */
7374
7402
  declare const CollapsibleContent: react.ForwardRefExoticComponent<CollapsibleContentProps & react.RefAttributes<HTMLDivElement>>;
7375
- declare const Collapsible: react.ForwardRefExoticComponent<CollapsibleRootProps & react.RefAttributes<HTMLDivElement>> & {
7376
- Root: react.ForwardRefExoticComponent<CollapsibleRootProps & react.RefAttributes<HTMLDivElement>>;
7377
- Trigger: react.ForwardRefExoticComponent<CollapsibleTriggerProps & react.RefAttributes<HTMLButtonElement>>;
7378
- Content: react.ForwardRefExoticComponent<CollapsibleContentProps & react.RefAttributes<HTMLDivElement>>;
7379
- };
7380
7403
 
7381
7404
  type ContextMenuSelectEvent = {
7382
7405
  preventDefault: () => void;
7383
7406
  defaultPrevented: boolean;
7384
7407
  };
7385
- interface ContextMenuRootProps {
7408
+ interface ContextMenuProps {
7386
7409
  modal?: boolean;
7387
7410
  onOpenChange?: (open: boolean) => void;
7388
7411
  children?: ReactNode;
7389
7412
  className?: string;
7390
7413
  }
7391
- declare function ContextMenuRoot({ modal, onOpenChange, children }: ContextMenuRootProps): react.JSX.Element;
7414
+ declare function ContextMenu({ modal, onOpenChange, children }: ContextMenuProps): react.JSX.Element;
7392
7415
  interface ContextMenuTriggerProps extends HTMLAttributes<HTMLElement> {
7393
7416
  asChild?: boolean;
7394
7417
  }
@@ -7410,7 +7433,7 @@ interface ContextMenuItemProps extends HTMLAttributes<HTMLButtonElement> {
7410
7433
  }
7411
7434
  declare const ContextMenuItem: react.ForwardRefExoticComponent<ContextMenuItemProps & react.RefAttributes<HTMLButtonElement>>;
7412
7435
  declare const ContextMenuSeparator: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
7413
- declare function ContextMenuSection({ className, children, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
7436
+ declare function ContextMenuLabel({ className, children, ...props }: HTMLAttributes<HTMLDivElement>): react.JSX.Element;
7414
7437
  declare function ContextMenuSub({ children }: {
7415
7438
  children?: ReactNode;
7416
7439
  }): react.JSX.Element;
@@ -7423,17 +7446,5 @@ declare const ContextMenuSubTrigger: react.ForwardRefExoticComponent<ContextMenu
7423
7446
  interface ContextMenuSubContentProps extends HTMLAttributes<HTMLDivElement> {
7424
7447
  }
7425
7448
  declare const ContextMenuSubContent: react.ForwardRefExoticComponent<ContextMenuSubContentProps & react.RefAttributes<HTMLDivElement>>;
7426
- declare const ContextMenu: typeof ContextMenuRoot & {
7427
- Root: typeof ContextMenuRoot;
7428
- Trigger: react.ForwardRefExoticComponent<ContextMenuTriggerProps & react.RefAttributes<HTMLElement>>;
7429
- Portal: typeof ContextMenuPortal;
7430
- Content: react.ForwardRefExoticComponent<ContextMenuContentProps & react.RefAttributes<HTMLDivElement>>;
7431
- Item: react.ForwardRefExoticComponent<ContextMenuItemProps & react.RefAttributes<HTMLButtonElement>>;
7432
- Section: typeof ContextMenuSection;
7433
- Separator: react.ForwardRefExoticComponent<HTMLAttributes<HTMLDivElement> & react.RefAttributes<HTMLDivElement>>;
7434
- Sub: typeof ContextMenuSub;
7435
- SubTrigger: react.ForwardRefExoticComponent<ContextMenuSubTriggerProps & react.RefAttributes<HTMLButtonElement>>;
7436
- SubContent: react.ForwardRefExoticComponent<ContextMenuSubContentProps & react.RefAttributes<HTMLDivElement>>;
7437
- };
7438
7449
 
7439
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemSlotProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionType, Alert, AlertAction, type AlertActionProps, AlertActions, type AlertActionsProps, AlertBody, type AlertBodyProps, AlertClose, type AlertCloseProps, AlertContent, type AlertContentProps, AlertDescription, type AlertDescriptionProps, AlertIcon, type AlertIconProps, type AlertProps, AlertRow, type AlertRowProps, AlertTitle, type AlertTitleProps, type AlertVariant, Avatar, AvatarBadge, type AvatarBadgeProps, type AvatarColor, type AvatarColorIcon, type AvatarColorImage, type AvatarColorInitials, AvatarFallback, type AvatarFallbackProps, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarItem, type AvatarLayout, type AvatarPresenceStatus, type AvatarProps, type AvatarSize, AvatarText, type AvatarTextProps, Avatars, type AvatarsLayout, type AvatarsProps, type AvatarsSize, Badge, type BadgeLayout, type BadgeProps, type BadgeVariant, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbEllipsisTrigger, type BreadcrumbEllipsisTriggerProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Bubble, type BubbleAlign, BubbleContent, type BubbleContentProps, BubbleGroup, type BubbleGroupProps, type BubbleProps, BubbleReactions, type BubbleReactionsProps, type BubbleReactionsSide, type BubbleVariant, Button, type ButtonLayout, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarMode, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardHeaderMain, type CardProps, CardTitle, Carousel, CarouselContent, type CarouselContentProps, CarouselControls, type CarouselControlsProps, CarouselIndicators, type CarouselIndicatorsProps, CarouselItem, type CarouselItemProps, CarouselNext, type CarouselNextProps, CarouselPrevious, type CarouselPreviousProps, type CarouselProps, Chart, ChartAxisLabels, type ChartAxisLabelsProps, ChartBars, type ChartBarsProps, ChartBody, type ChartBodyProps, ChartContent, type ChartContentProps, ChartGrid, type ChartGridProps, type ChartItemState, ChartLegend, ChartLegendItem, type ChartLegendItemProps, type ChartLegendProps, ChartLine, type ChartLineProps, ChartPlot, type ChartPlotProps, type ChartProps, type ChartSeriesColor, ChartTooltip, type ChartTooltipProps, ChartYAxisLabels, type ChartYAxisLabelsProps, Checkbox, type CheckboxProps, Chip, type ChipProps, type ChipSize, type ChipVariant, Collapsible, CollapsibleContent, type CollapsibleContentProps, CollapsibleRoot, type CollapsibleRootProps, CollapsibleTrigger, type CollapsibleTriggerProps, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, type CommandFilter, CommandGroup, CommandGroupHeading, type CommandGroupHeadingProps, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, Container, type ContainerProps, ContextMenu, ContextMenuContent, type ContextMenuContentProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuPortal, ContextMenuRoot, type ContextMenuRootProps, ContextMenuSection, type ContextMenuSelectEvent, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, type ContextMenuSubContentProps, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, type ControlSize, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Divider, type DividerProps, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, Dropdown, type MenuAlign as DropdownAlign, DropdownContent, type DropdownContentProps, DropdownGroup, DropdownItem, type DropdownItemProps, DropdownLabel, DropdownPortal, DropdownSeparator, DropdownShortcut, DropdownSub, DropdownSubContent, type DropdownSubContentProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, Field, FieldError, type FieldErrorProps, FieldHint, type FieldHintProps, FieldLabel, type FieldLabelProps, type FieldProps, FieldRequired, type FieldRequiredProps, Footer, FooterBottom, type FooterBottomProps, FooterBrand, FooterBrandDescription, type FooterBrandDescriptionProps, FooterBrandName, type FooterBrandNameProps, type FooterBrandProps, FooterContent, type FooterContentProps, FooterCopyright, type FooterCopyrightProps, FooterExplore, type FooterExploreProps, FooterGroup, FooterGroupLabel, type FooterGroupLabelProps, type FooterGroupProps, FooterLink, type FooterLinkProps, FooterLocale, type FooterLocaleProps, FooterLogo, type FooterLogoProps, FooterMeta, FooterMetaEnd, type FooterMetaEndProps, type FooterMetaProps, FooterNav, type FooterNavProps, type FooterProps, FooterSocial, type FooterSocialProps, Grid, GridItem, type GridItemProps, type GridProps, Input, InputOTP, type InputOTPProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputProps, Label, type LabelProps, LabelRequired, type LabelRequiredProps, type LayoutAlign, type LayoutAs, type LayoutBackground, type LayoutBorderColor, type LayoutDirection, type LayoutGap, type LayoutJustify, type LayoutRadius, type LayoutStroke, type LayoutWrap, Link, type LinkProps, Menu, MenuDivider, MenuItem, MenuList, MenuPopover, type MenuProps, MenuSection, MenuSub, MenuSubContent, type MenuSubContentProps, MenuSubTrigger, type MenuSubTriggerProps, MenuTrigger, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, type NavigationMenuIndicatorProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, type PaginationRootProps, PopOver, type PopOverAlign, type PopOverProps, Popover, type PopoverAlign, PopoverContent, type PopoverContentProps, type PopoverPlacement, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, ProgressStepper, ProgressStepperItem, type ProgressStepperItemProps, ProgressStepperLabel, type ProgressStepperLabelProps, ProgressStepperList, type ProgressStepperListProps, ProgressStepperMarker, type ProgressStepperMarkerProps, type ProgressStepperProps, type ProgressStepperState, Radio, RadioInput, type RadioInputProps, type RadioProps, ResizableHandle, type ResizableHandleProps, type ResizableOrientation, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, type ResizablePanelProps, ScrollArea, type ScrollAreaOrientation, type ScrollAreaProps, ScrollAreaScrollbar, type ScrollAreaScrollbarProps, ScrollAreaThumb, type ScrollAreaThumbProps, type ScrollAreaType, ScrollAreaViewport, type ScrollAreaViewportProps, SearchField, SearchFieldClear, type SearchFieldClearProps, SearchFieldIcon, type SearchFieldIconProps, SearchFieldInput, type SearchFieldInputProps, type SearchFieldProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectArrow, type SelectArrowProps, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectIcon, type SelectIconProps, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectLabel, type SelectLabelProps, SelectPortal, type SelectPortalProps, type SelectProps, SelectScrollDownButton, type SelectScrollDownButtonProps, SelectScrollUpButton, type SelectScrollUpButtonProps, SelectSection, type SelectSectionProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerAppearance, type SelectTriggerProps, SelectValue, type SelectValueProps, SelectViewport, type SelectViewportProps, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarLink, type SidebarLinkProps, SidebarNav, type SidebarNavProps, SidebarPeek, SidebarPeekEdge, type SidebarPeekEdgeProps, SidebarPeekInset, type SidebarPeekInsetProps, type SidebarPeekMode, SidebarPeekPanel, type SidebarPeekPanelProps, SidebarPeekPin, type SidebarPeekPinProps, type SidebarPeekProps, type SidebarProps, Skeleton, type SkeletonProps, Slider, type SliderProps, Spacer, type SpacerProps, SpinButton, type SpinButtonProps, Spinner, type SpinnerLabelPosition, type SpinnerProps, type SpinnerSize, Stack, type StackProps, Stepper, StepperContent, type StepperContentProps, StepperDescription, type StepperDescriptionProps, StepperIndicator, type StepperIndicatorProps, StepperItem, type StepperItemProps, StepperList, type StepperListProps, type StepperOrientation, type StepperProps, StepperSeparator, type StepperSeparatorProps, type StepperState, StepperTitle, type StepperTitleProps, Toggle as Switch, type ToggleProps as SwitchProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Chip as Tag, type ChipProps as TagProps, type ChipSize as TagSize, type ChipVariant as TagVariant, Text, type TextProps, Textarea, type TextareaProps, Toast, type ToastAction, type ToastOptions, type ToastProps, type ToastSwipeDirection, type ToastVariant, Toaster, type ToasterProps, Toggle, type ToggleProps, Tooltip, type TooltipAlign, type TooltipPosition, type TooltipProps, Tree, TreeItem, TreeItemContent, type TreeItemContentProps, type TreeItemProps, TreeItemTrigger, type TreeItemTriggerProps, type TreeProps, type TreeSize, WebIcon, type WebIconProps, breadcrumbLinkClassName, componentColorTokens, componentTextClass, componentTokens, componentTypographyTokens, defaultCommandFilter, dismissToast, footerLinkClassName, footerLocaleLinkClassName, footerLocaleTriggerClassName, footerSocialLinkClassName, semanticTextClass, sizedComponentTextClass, toast, useSidebarPeek };
7450
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemSlotProps, type AccordionProps, type AccordionSize, AccordionTrigger, type AccordionTriggerProps, type AccordionType, Alert, AlertAction, type AlertActionProps, AlertActions, type AlertActionsProps, AlertBody, type AlertBodyProps, AlertClose, type AlertCloseProps, AlertContent, type AlertContentProps, AlertDescription, type AlertDescriptionProps, AlertIcon, type AlertIconProps, type AlertProps, AlertRow, type AlertRowProps, AlertTitle, type AlertTitleProps, type AlertVariant, Avatar, AvatarBadge, type AvatarBadgeProps, type AvatarColor, type AvatarColorIcon, type AvatarColorImage, type AvatarColorInitials, AvatarFallback, type AvatarFallbackProps, AvatarGroup, AvatarGroupCount, type AvatarGroupCountProps, type AvatarGroupProps, AvatarIcon, type AvatarIconProps, AvatarImage, type AvatarImageProps, type AvatarItem, type AvatarLayout, type AvatarPresenceStatus, type AvatarProps, type AvatarSize, AvatarText, type AvatarTextProps, Avatars, type AvatarsLayout, type AvatarsProps, type AvatarsSize, Badge, type BadgeLayout, type BadgeProps, type BadgeVariant, Box, type BoxProps, Breadcrumb, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbEllipsisTrigger, type BreadcrumbEllipsisTriggerProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Bubble, type BubbleAlign, BubbleContent, type BubbleContentProps, BubbleGroup, type BubbleGroupProps, type BubbleProps, BubbleReactions, type BubbleReactionsProps, type BubbleReactionsSide, type BubbleVariant, Button, type ButtonLayout, type ButtonProps, type ButtonSize, type ButtonVariant, Calendar, type CalendarMode, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardHeaderMain, type CardProps, CardTitle, Carousel, CarouselContent, type CarouselContentProps, CarouselControls, type CarouselControlsProps, CarouselIndicators, type CarouselIndicatorsProps, CarouselItem, type CarouselItemProps, CarouselNext, type CarouselNextProps, CarouselPrevious, type CarouselPreviousProps, type CarouselProps, Chart, ChartAxisLabels, type ChartAxisLabelsProps, ChartBars, type ChartBarsProps, ChartBody, type ChartBodyProps, ChartContent, type ChartContentProps, ChartGrid, type ChartGridProps, type ChartItemState, ChartLegend, ChartLegendItem, type ChartLegendItemProps, type ChartLegendProps, ChartLine, type ChartLineProps, ChartPlot, type ChartPlotProps, type ChartProps, type ChartSeriesColor, ChartTooltip, type ChartTooltipProps, ChartYAxisLabels, type ChartYAxisLabelsProps, Checkbox, type CheckboxProps, Chip, type ChipProps, type ChipSize, type ChipVariant, Collapsible, CollapsibleContent, type CollapsibleContentProps, type CollapsibleProps, CollapsibleTrigger, type CollapsibleTriggerProps, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, type CommandFilter, CommandGroup, CommandGroupHeading, type CommandGroupHeadingProps, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, Container, type ContainerProps, ContextMenu, ContextMenuContent, type ContextMenuContentProps, ContextMenuItem, type ContextMenuItemProps, ContextMenuLabel, ContextMenuPortal, type ContextMenuProps, type ContextMenuSelectEvent, ContextMenuSeparator, ContextMenuSub, ContextMenuSubContent, type ContextMenuSubContentProps, ContextMenuSubTrigger, type ContextMenuSubTriggerProps, ContextMenuTrigger, type ContextMenuTriggerProps, type ControlSize, Dialog, DialogClose, type DialogCloseProps, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogHeader, type DialogHeaderProps, type DialogProps, DialogTitle, type DialogTitleProps, DialogTrigger, type DialogTriggerProps, Divider, type DividerProps, Drawer, DrawerBody, type DrawerBodyProps, DrawerClose, type DrawerCloseProps, DrawerContent, type DrawerContentProps, DrawerDescription, type DrawerDescriptionProps, DrawerFooter, type DrawerFooterProps, DrawerHeader, type DrawerHeaderProps, type DrawerProps, DrawerTitle, type DrawerTitleProps, DrawerTrigger, type DrawerTriggerProps, Dropdown, type MenuAlign as DropdownAlign, DropdownContent, type DropdownContentProps, DropdownGroup, DropdownItem, type DropdownItemProps, DropdownLabel, DropdownPortal, DropdownSeparator, DropdownShortcut, DropdownSub, DropdownSubContent, type DropdownSubContentProps, DropdownSubTrigger, type DropdownSubTriggerProps, DropdownTrigger, type DropdownTriggerProps, Field, FieldError, type FieldErrorProps, FieldHint, type FieldHintProps, FieldLabel, type FieldLabelProps, type FieldProps, FieldRequired, type FieldRequiredProps, Footer, FooterBottom, type FooterBottomProps, FooterBrand, FooterBrandDescription, type FooterBrandDescriptionProps, FooterBrandName, type FooterBrandNameProps, type FooterBrandProps, FooterContent, type FooterContentProps, FooterCopyright, type FooterCopyrightProps, FooterExplore, type FooterExploreProps, FooterGroup, FooterGroupLabel, type FooterGroupLabelProps, type FooterGroupProps, FooterLink, type FooterLinkProps, FooterLocale, type FooterLocaleProps, FooterLogo, type FooterLogoProps, FooterMeta, FooterMetaEnd, type FooterMetaEndProps, type FooterMetaProps, FooterNav, type FooterNavProps, type FooterProps, FooterSocial, type FooterSocialProps, Grid, GridItem, type GridItemProps, type GridProps, Input, InputOTP, type InputOTPProps, type InputOTPSize, InputOTPSlot, type InputOTPSlotProps, type InputProps, Label, type LabelProps, LabelRequired, type LabelRequiredProps, type LayoutAlign, type LayoutAs, type LayoutBackground, type LayoutBorderColor, type LayoutDirection, type LayoutGap, type LayoutJustify, type LayoutRadius, type LayoutStroke, type LayoutWrap, Link, type LinkProps, Menu, MenuDivider, MenuItem, MenuLabel, type MenuLabelProps, MenuList, MenuPopover, type MenuProps, MenuSub, MenuSubContent, type MenuSubContentProps, MenuSubTrigger, type MenuSubTriggerProps, MenuTrigger, NavigationMenu, NavigationMenuContent, type NavigationMenuContentProps, NavigationMenuIndicator, type NavigationMenuIndicatorProps, NavigationMenuItem, type NavigationMenuItemProps, NavigationMenuLink, type NavigationMenuLinkProps, NavigationMenuList, type NavigationMenuListProps, type NavigationMenuProps, NavigationMenuTrigger, type NavigationMenuTriggerProps, Pagination, PaginationContent, type PaginationContentProps, PaginationEllipsis, type PaginationEllipsisProps, PaginationItem, type PaginationItemProps, PaginationLink, type PaginationLinkProps, PaginationNext, type PaginationNextProps, PaginationPrevious, type PaginationPreviousProps, type PaginationProps, type PaginationRootProps, PopOver, type PopOverAlign, type PopOverProps, Popover, type PopoverAlign, PopoverContent, type PopoverContentProps, type PopoverPlacement, type PopoverProps, PopoverTrigger, type PopoverTriggerProps, Progress, type ProgressProps, ProgressStepper, ProgressStepperItem, type ProgressStepperItemProps, ProgressStepperLabel, type ProgressStepperLabelProps, ProgressStepperList, type ProgressStepperListProps, ProgressStepperMarker, type ProgressStepperMarkerProps, type ProgressStepperProps, type ProgressStepperState, Radio, RadioInput, type RadioInputProps, type RadioProps, ResizableHandle, type ResizableHandleProps, type ResizableOrientation, ResizablePanel, ResizablePanelGroup, type ResizablePanelGroupProps, type ResizablePanelProps, ScrollArea, type ScrollAreaOrientation, type ScrollAreaProps, ScrollAreaScrollbar, type ScrollAreaScrollbarProps, ScrollAreaThumb, type ScrollAreaThumbProps, type ScrollAreaType, ScrollAreaViewport, type ScrollAreaViewportProps, SearchField, SearchFieldClear, type SearchFieldClearProps, SearchFieldIcon, type SearchFieldIconProps, SearchFieldInput, type SearchFieldInputProps, type SearchFieldProps, SegmentedControl, SegmentedControlItem, type SegmentedControlItemProps, type SegmentedControlProps, Select, SelectArrow, type SelectArrowProps, SelectContent, type SelectContentProps, SelectGroup, type SelectGroupProps, SelectIcon, type SelectIconProps, SelectItem, SelectItemIndicator, type SelectItemIndicatorProps, type SelectItemProps, SelectItemText, type SelectItemTextProps, SelectLabel, type SelectLabelProps, SelectPortal, type SelectPortalProps, type SelectProps, SelectScrollDownButton, type SelectScrollDownButtonProps, SelectScrollUpButton, type SelectScrollUpButtonProps, SelectSeparator, type SelectSeparatorProps, SelectTrigger, type SelectTriggerAppearance, type SelectTriggerProps, SelectValue, type SelectValueProps, SelectViewport, type SelectViewportProps, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarContent, type SidebarContentProps, SidebarFooter, type SidebarFooterProps, SidebarGroup, SidebarGroupLabel, type SidebarGroupLabelProps, type SidebarGroupProps, SidebarHeader, type SidebarHeaderProps, SidebarLink, type SidebarLinkProps, SidebarNav, type SidebarNavProps, SidebarPeek, SidebarPeekEdge, type SidebarPeekEdgeProps, SidebarPeekInset, type SidebarPeekInsetProps, type SidebarPeekMode, SidebarPeekPanel, type SidebarPeekPanelProps, SidebarPeekPin, type SidebarPeekPinProps, type SidebarPeekProps, type SidebarProps, Skeleton, type SkeletonProps, Slider, type SliderProps, Spacer, type SpacerProps, SpinButton, type SpinButtonProps, Spinner, type SpinnerLabelPosition, type SpinnerProps, type SpinnerSize, Stack, type StackProps, Stepper, StepperContent, type StepperContentProps, StepperDescription, type StepperDescriptionProps, StepperIndicator, type StepperIndicatorProps, StepperItem, type StepperItemProps, StepperList, type StepperListProps, type StepperOrientation, type StepperProps, StepperSeparator, type StepperSeparatorProps, type StepperState, StepperTitle, type StepperTitleProps, Toggle as Switch, type ToggleProps as SwitchProps, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Chip as Tag, type ChipProps as TagProps, type ChipSize as TagSize, type ChipVariant as TagVariant, Text, type TextProps, Textarea, type TextareaProps, Toast, type ToastAction, type ToastOptions, type ToastProps, type ToastSwipeDirection, type ToastVariant, Toaster, type ToasterProps, Toggle, type ToggleProps, Tooltip, type TooltipAlign, type TooltipPosition, type TooltipProps, Tree, TreeItem, TreeItemContent, type TreeItemContentProps, type TreeItemProps, TreeItemTrigger, type TreeItemTriggerProps, type TreeProps, type TreeSize, WebIcon, type WebIconProps, breadcrumbLinkClassName, componentColorTokens, componentTextClass, componentTokens, componentTypographyTokens, defaultCommandFilter, dismissToast, footerLinkClassName, footerLocaleLinkClassName, footerLocaleTriggerClassName, footerSocialLinkClassName, semanticTextClass, sizedComponentTextClass, toast, useSidebarPeek };