@nextlyhq/ui 0.0.2-alpha.58 → 0.0.2-alpha.60

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
@@ -267,8 +267,13 @@ interface GridProps extends HTMLAttributes<HTMLDivElement> {
267
267
  cols?: Cols;
268
268
  /** Gap between cells. Default `4`. */
269
269
  gap?: Gap;
270
+ /**
271
+ * Collapse to one column in a narrow container. Off by default so existing
272
+ * callers keep the fixed column count they were written against.
273
+ */
274
+ responsive?: boolean;
270
275
  }
271
- /** Simple fixed-column grid.
276
+ /** Simple fixed-column grid, or a container-responsive one via `responsive`.
272
277
  * @experimental
273
278
  */
274
279
  declare const Grid: react.ForwardRefExoticComponent<GridProps & react.RefAttributes<HTMLDivElement>>;
@@ -1132,8 +1137,8 @@ declare const TabsList: react.ForwardRefExoticComponent<Omit<_radix_ui_react_tab
1132
1137
  * - Padding: 6px 16px (px-4 py-2)
1133
1138
  * - Font: text-sm (14px), font-medium (500)
1134
1139
  * - Transition: 150ms (design system standard)
1135
- * - Active state: blue text with blue bottom border border-border (2px)
1136
- * - Hover: blue text with blue bottom border border-border
1140
+ * - Active state: the accent colour on the text and on the 2px trailing border
1141
+ * - Hover: the same accent, so the target reads before it is chosen
1137
1142
  * - Gmail-inspired clean underline style
1138
1143
  *
1139
1144
  * Accessibility:
@@ -1661,6 +1666,72 @@ declare function SelectScrollUpButton({ className, ...props }: ComponentProps<ty
1661
1666
  /** @experimental */
1662
1667
  declare function SelectScrollDownButton({ className, ...props }: ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime.JSX.Element;
1663
1668
 
1669
+ /**
1670
+ * Sheet Component Types
1671
+ *
1672
+ * TypeScript type definitions for the Sheet component (Dialog variant).
1673
+ */
1674
+
1675
+ /**
1676
+ * Sheet root component props
1677
+ * Extends Radix UI Dialog.Root props
1678
+ * @public
1679
+ */
1680
+ type SheetProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Root>;
1681
+ /**
1682
+ * Sheet trigger component props
1683
+ * Extends Radix UI Dialog.Trigger props
1684
+ * @experimental
1685
+ */
1686
+ type SheetTriggerProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Trigger>;
1687
+ /**
1688
+ * Sheet close component props
1689
+ * Extends Radix UI Dialog.Close props
1690
+ * @experimental
1691
+ */
1692
+ type SheetCloseProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Close>;
1693
+ /**
1694
+ * Sheet overlay component props
1695
+ * Extends Radix UI Dialog.Overlay props
1696
+ * @experimental
1697
+ */
1698
+ type SheetOverlayProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>;
1699
+ /**
1700
+ * Sheet header component props
1701
+ * Standard div props
1702
+ * @public
1703
+ */
1704
+ type SheetHeaderProps = React.HTMLAttributes<HTMLDivElement>;
1705
+ /**
1706
+ * Sheet footer component props
1707
+ * Standard div props
1708
+ * @experimental
1709
+ */
1710
+ type SheetFooterProps = React.HTMLAttributes<HTMLDivElement>;
1711
+ /**
1712
+ * Sheet title component props
1713
+ * Extends Radix UI Dialog.Title props
1714
+ * @public
1715
+ */
1716
+ type SheetTitleProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>;
1717
+ /**
1718
+ * Sheet description component props
1719
+ * Extends Radix UI Dialog.Description props
1720
+ * @public
1721
+ */
1722
+ type SheetDescriptionProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description>;
1723
+ /**
1724
+ * Sheet component refs
1725
+ * @experimental
1726
+ */
1727
+ type SheetOverlayRef = React.ElementRef<typeof DialogPrimitive.Overlay>;
1728
+ /** @experimental */
1729
+ type SheetContentRef = React.ElementRef<typeof DialogPrimitive.Content>;
1730
+ /** @experimental */
1731
+ type SheetTitleRef = React.ElementRef<typeof DialogPrimitive.Title>;
1732
+ /** @experimental */
1733
+ type SheetDescriptionRef = React.ElementRef<typeof DialogPrimitive.Description>;
1734
+
1664
1735
  /**
1665
1736
  * Sheet Component
1666
1737
  *
@@ -1715,7 +1786,10 @@ declare function SelectScrollDownButton({ className, ...props }: ComponentProps<
1715
1786
  * @see https://www.radix-ui.com/primitives/docs/components/dialog
1716
1787
  * @public
1717
1788
  */
1718
- declare const Sheet: react.FC<DialogPrimitive.DialogProps>;
1789
+ declare const Sheet: {
1790
+ ({ modal, children, ...props }: SheetProps): react_jsx_runtime.JSX.Element;
1791
+ displayName: string;
1792
+ };
1719
1793
  /** @experimental */
1720
1794
  declare const SheetTrigger: react.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
1721
1795
  /** @experimental */
@@ -1809,72 +1883,6 @@ declare const SheetTitle: react.ForwardRefExoticComponent<Omit<DialogPrimitive.D
1809
1883
  */
1810
1884
  declare const SheetDescription: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & react.RefAttributes<HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
1811
1885
 
1812
- /**
1813
- * Sheet Component Types
1814
- *
1815
- * TypeScript type definitions for the Sheet component (Dialog variant).
1816
- */
1817
-
1818
- /**
1819
- * Sheet root component props
1820
- * Extends Radix UI Dialog.Root props
1821
- * @public
1822
- */
1823
- type SheetProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Root>;
1824
- /**
1825
- * Sheet trigger component props
1826
- * Extends Radix UI Dialog.Trigger props
1827
- * @experimental
1828
- */
1829
- type SheetTriggerProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Trigger>;
1830
- /**
1831
- * Sheet close component props
1832
- * Extends Radix UI Dialog.Close props
1833
- * @experimental
1834
- */
1835
- type SheetCloseProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Close>;
1836
- /**
1837
- * Sheet overlay component props
1838
- * Extends Radix UI Dialog.Overlay props
1839
- * @experimental
1840
- */
1841
- type SheetOverlayProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>;
1842
- /**
1843
- * Sheet header component props
1844
- * Standard div props
1845
- * @public
1846
- */
1847
- type SheetHeaderProps = React.HTMLAttributes<HTMLDivElement>;
1848
- /**
1849
- * Sheet footer component props
1850
- * Standard div props
1851
- * @experimental
1852
- */
1853
- type SheetFooterProps = React.HTMLAttributes<HTMLDivElement>;
1854
- /**
1855
- * Sheet title component props
1856
- * Extends Radix UI Dialog.Title props
1857
- * @public
1858
- */
1859
- type SheetTitleProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>;
1860
- /**
1861
- * Sheet description component props
1862
- * Extends Radix UI Dialog.Description props
1863
- * @public
1864
- */
1865
- type SheetDescriptionProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description>;
1866
- /**
1867
- * Sheet component refs
1868
- * @experimental
1869
- */
1870
- type SheetOverlayRef = React.ElementRef<typeof DialogPrimitive.Overlay>;
1871
- /** @experimental */
1872
- type SheetContentRef = React.ElementRef<typeof DialogPrimitive.Content>;
1873
- /** @experimental */
1874
- type SheetTitleRef = React.ElementRef<typeof DialogPrimitive.Title>;
1875
- /** @experimental */
1876
- type SheetDescriptionRef = React.ElementRef<typeof DialogPrimitive.Description>;
1877
-
1878
1886
  /**
1879
1887
  * Command Component
1880
1888
  *
@@ -3087,4 +3095,130 @@ type KeySequence = readonly KeyChord[];
3087
3095
  */
3088
3096
  declare function parseKeys(spec: string): KeySequence;
3089
3097
 
3090
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActionCallbacks, type ActiveShortcut, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, Button, type ButtonProps, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorPicker, type ColorPickerProps, type ColorSwatch, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type DataFetcher, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type FilterInfo, FormLabelWithTooltip, type FormLabelWithTooltipProps, Grid, type GridProps, Input, type InputProps, type KeyChord, type KeySequence, Label, type ListResponse, type PaginationConfig, type PaginationMeta, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, type ProgressProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentRef, SheetDescription, type SheetDescriptionProps, type SheetDescriptionRef, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, type SheetOverlayProps, type SheetOverlayRef, SheetPortal, type SheetProps, SheetTitle, type SheetTitleProps, type SheetTitleRef, SheetTrigger, type SheetTriggerProps, type ShortcutBinding, type ShortcutLayerOptions, type ShortcutManager, type ShortcutManagerOptions, ShortcutProvider, type ShortcutProviderProps, type ShortcutRegistration, ShortcutScope, Skeleton, type SkeletonProps, Slider, type SliderProps, type SliderThumbProps, type SortInfo, Spinner, type SpinnerProps, Stack, type StackProps, Stat, type StatProps, Switch, Table, TableBody, TableCaption, TableCell, TableEmpty, type TableEmptyProps, TableError, type TableErrorProps, TableFooter, TableHead, TableHeader, TableLoading, type TableParams, TableRow, TableSearch, type TableSearchProps, TableSkeleton, type TableSkeletonProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TreeNode, TreeView, type TreeViewProps, type UseShortcutsOptions, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, commandDefaultFilter, createShortcutManager, dialogContentVariants, inputVariants, parseKeys, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, useActiveShortcuts, usePortalContainer, useShortcutManager, useShortcuts };
3098
+ /**
3099
+ * How wide a field's CONTROL may grow.
3100
+ *
3101
+ * Named rather than measured so a page cannot invent a one-off width, which is
3102
+ * how the eight admin forms diverged. The caps read from custom properties with
3103
+ * literal fallbacks, so a theme can retune them centrally without this file
3104
+ * changing and without a page overriding them locally.
3105
+ * @experimental
3106
+ */
3107
+ type FieldWidth = "half" | "full" | "fill";
3108
+ /**
3109
+ * The wiring `FieldShell` computes for its control: the id to attach, the
3110
+ * composed `aria-describedby` (`undefined` when nothing is rendered to point
3111
+ * at), and whether a rendered `error` forces the control invalid (`undefined`
3112
+ * when there is no error to force one way or the other).
3113
+ *
3114
+ * A render-function `children` (see `FieldShellProps`) receives exactly this
3115
+ * object — the SAME computation the element-clone path derives its
3116
+ * `cloneElement` overrides from — so a caller wiring a compound control (a
3117
+ * Radix `Select`'s trigger, for example) gets precisely the values the
3118
+ * simple, single-element case would have applied.
3119
+ * @experimental
3120
+ */
3121
+ interface FieldShellRenderProps {
3122
+ id: string;
3123
+ describedBy: string | undefined;
3124
+ invalid: boolean | undefined;
3125
+ }
3126
+ /** @experimental */
3127
+ interface FieldShellProps {
3128
+ label?: React.ReactNode;
3129
+ /** Helper text under the control. Rendered only when present. */
3130
+ description?: React.ReactNode;
3131
+ /** Validation message under the control. Rendered only when present. */
3132
+ error?: React.ReactNode;
3133
+ /** Defaults to "half": most admin inputs are short values. */
3134
+ width?: FieldWidth;
3135
+ htmlFor?: string;
3136
+ className?: string;
3137
+ /**
3138
+ * Either a single element to clone, or a function that receives the
3139
+ * computed wiring and applies it itself.
3140
+ *
3141
+ * The element form is `FieldShell` cloning it with `cloneElement` to
3142
+ * attach the id, `aria-describedby` and `aria-invalid` it computes —
3143
+ * unchanged from before, and still the right choice for an atomic control
3144
+ * (`Input`, `Textarea`, `Switch`) that spreads its own props onto a real
3145
+ * DOM node. Typing this branch as `ReactNode` would let a composite field
3146
+ * (two inputs with a unit between them, for example) compile and then
3147
+ * crash on mount, so it stays a single `ReactElement` — wrap several
3148
+ * elements in one real element, a `<div>`, not a `<Fragment>`: a Fragment
3149
+ * forwards none of those props to what is inside it.
3150
+ *
3151
+ * The function form exists for a compound control built on a Radix `Root`
3152
+ * (`Select`, and by the same shape `RadioGroup`): `Root` destructures a
3153
+ * fixed, named prop list and never spreads the remainder, so `id` handed
3154
+ * to it via `cloneElement` is silently dropped rather than reaching the
3155
+ * actual focusable element two levels down (`Select` > `SelectTrigger` >
3156
+ * `SelectValue`). A render function is called with `FieldShellRenderProps`
3157
+ * and applies `id`/`describedBy`/`invalid` to whichever nested element is
3158
+ * the real control, instead of relying on a single top-level clone that
3159
+ * can never reach it.
3160
+ */
3161
+ children: React.ReactElement | ((field: FieldShellRenderProps) => React.ReactNode);
3162
+ }
3163
+ /**
3164
+ * The page measure. "form" suits most pages; "wide" is opt-in for dense ones.
3165
+ * @experimental
3166
+ */
3167
+ type FormMeasure = "form" | "wide";
3168
+ /** @experimental */
3169
+ interface FormLayoutProps {
3170
+ width?: FormMeasure;
3171
+ className?: string;
3172
+ children: React.ReactNode;
3173
+ }
3174
+ /** @experimental */
3175
+ interface FormActionsProps {
3176
+ /**
3177
+ * Whether the form has unsaved changes. Supplied by the page from the form
3178
+ * state that already tracks it; never computed here.
3179
+ */
3180
+ dirty?: boolean;
3181
+ className?: string;
3182
+ children: React.ReactNode;
3183
+ }
3184
+
3185
+ /** @experimental */
3186
+ declare function FieldShell({ label, description, error, width, htmlFor, className, children, }: FieldShellProps): react_jsx_runtime.JSX.Element;
3187
+
3188
+ /** @experimental */
3189
+ interface FormSectionProps {
3190
+ /** Short label above the card, rendered uppercase. */
3191
+ label: string;
3192
+ /** Optional sentence under the label. */
3193
+ description?: react.ReactNode;
3194
+ className?: string;
3195
+ children: react.ReactNode;
3196
+ }
3197
+ /**
3198
+ * A labelled card holding a group of fields.
3199
+ *
3200
+ * Composes `Card` rather than hand-rolling its own border and background, so
3201
+ * a section carries the CONTAINER radius tier `Card` already defines instead
3202
+ * of a second, drifting copy of the same chrome. There is deliberately no
3203
+ * footer slot. A form commits as one document, so its action belongs to the
3204
+ * page rather than to a section.
3205
+ * @experimental
3206
+ */
3207
+ declare function FormSection({ label, description, className, children, }: FormSectionProps): react_jsx_runtime.JSX.Element;
3208
+
3209
+ /**
3210
+ * @experimental
3211
+ */
3212
+ declare function FormLayout({ width, className, children, }: FormLayoutProps): react_jsx_runtime.JSX.Element;
3213
+ /**
3214
+ * One action bar per form, at the end of the measure.
3215
+ *
3216
+ * A form commits as a single document, so there is one place to commit it. The
3217
+ * dirty flag arrives from the page because the form state already answers that
3218
+ * question, and a second implementation of it here would disagree with the
3219
+ * first as soon as either changed.
3220
+ * @experimental
3221
+ */
3222
+ declare function FormActions({ dirty, className, children }: FormActionsProps): react_jsx_runtime.JSX.Element;
3223
+
3224
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActionCallbacks, type ActiveShortcut, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, Button, type ButtonProps, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorPicker, type ColorPickerProps, type ColorSwatch, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type DataFetcher, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, FieldShell, type FieldShellProps, type FieldShellRenderProps, type FieldWidth, type FilterInfo, FormActions, type FormActionsProps, FormLabelWithTooltip, type FormLabelWithTooltipProps, FormLayout, type FormLayoutProps, type FormMeasure, FormSection, type FormSectionProps, Grid, type GridProps, Input, type InputProps, type KeyChord, type KeySequence, Label, type ListResponse, type PaginationConfig, type PaginationMeta, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, type ProgressProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentRef, SheetDescription, type SheetDescriptionProps, type SheetDescriptionRef, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, type SheetOverlayProps, type SheetOverlayRef, SheetPortal, type SheetProps, SheetTitle, type SheetTitleProps, type SheetTitleRef, SheetTrigger, type SheetTriggerProps, type ShortcutBinding, type ShortcutLayerOptions, type ShortcutManager, type ShortcutManagerOptions, ShortcutProvider, type ShortcutProviderProps, type ShortcutRegistration, ShortcutScope, Skeleton, type SkeletonProps, Slider, type SliderProps, type SliderThumbProps, type SortInfo, Spinner, type SpinnerProps, Stack, type StackProps, Stat, type StatProps, Switch, Table, TableBody, TableCaption, TableCell, TableEmpty, type TableEmptyProps, TableError, type TableErrorProps, TableFooter, TableHead, TableHeader, TableLoading, type TableParams, TableRow, TableSearch, type TableSearchProps, TableSkeleton, type TableSkeletonProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TreeNode, TreeView, type TreeViewProps, type UseShortcutsOptions, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, commandDefaultFilter, createShortcutManager, dialogContentVariants, inputVariants, parseKeys, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, useActiveShortcuts, usePortalContainer, useShortcutManager, useShortcuts };
package/dist/index.d.ts CHANGED
@@ -267,8 +267,13 @@ interface GridProps extends HTMLAttributes<HTMLDivElement> {
267
267
  cols?: Cols;
268
268
  /** Gap between cells. Default `4`. */
269
269
  gap?: Gap;
270
+ /**
271
+ * Collapse to one column in a narrow container. Off by default so existing
272
+ * callers keep the fixed column count they were written against.
273
+ */
274
+ responsive?: boolean;
270
275
  }
271
- /** Simple fixed-column grid.
276
+ /** Simple fixed-column grid, or a container-responsive one via `responsive`.
272
277
  * @experimental
273
278
  */
274
279
  declare const Grid: react.ForwardRefExoticComponent<GridProps & react.RefAttributes<HTMLDivElement>>;
@@ -1132,8 +1137,8 @@ declare const TabsList: react.ForwardRefExoticComponent<Omit<_radix_ui_react_tab
1132
1137
  * - Padding: 6px 16px (px-4 py-2)
1133
1138
  * - Font: text-sm (14px), font-medium (500)
1134
1139
  * - Transition: 150ms (design system standard)
1135
- * - Active state: blue text with blue bottom border border-border (2px)
1136
- * - Hover: blue text with blue bottom border border-border
1140
+ * - Active state: the accent colour on the text and on the 2px trailing border
1141
+ * - Hover: the same accent, so the target reads before it is chosen
1137
1142
  * - Gmail-inspired clean underline style
1138
1143
  *
1139
1144
  * Accessibility:
@@ -1661,6 +1666,72 @@ declare function SelectScrollUpButton({ className, ...props }: ComponentProps<ty
1661
1666
  /** @experimental */
1662
1667
  declare function SelectScrollDownButton({ className, ...props }: ComponentProps<typeof SelectPrimitive.ScrollDownButton>): react_jsx_runtime.JSX.Element;
1663
1668
 
1669
+ /**
1670
+ * Sheet Component Types
1671
+ *
1672
+ * TypeScript type definitions for the Sheet component (Dialog variant).
1673
+ */
1674
+
1675
+ /**
1676
+ * Sheet root component props
1677
+ * Extends Radix UI Dialog.Root props
1678
+ * @public
1679
+ */
1680
+ type SheetProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Root>;
1681
+ /**
1682
+ * Sheet trigger component props
1683
+ * Extends Radix UI Dialog.Trigger props
1684
+ * @experimental
1685
+ */
1686
+ type SheetTriggerProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Trigger>;
1687
+ /**
1688
+ * Sheet close component props
1689
+ * Extends Radix UI Dialog.Close props
1690
+ * @experimental
1691
+ */
1692
+ type SheetCloseProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Close>;
1693
+ /**
1694
+ * Sheet overlay component props
1695
+ * Extends Radix UI Dialog.Overlay props
1696
+ * @experimental
1697
+ */
1698
+ type SheetOverlayProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>;
1699
+ /**
1700
+ * Sheet header component props
1701
+ * Standard div props
1702
+ * @public
1703
+ */
1704
+ type SheetHeaderProps = React.HTMLAttributes<HTMLDivElement>;
1705
+ /**
1706
+ * Sheet footer component props
1707
+ * Standard div props
1708
+ * @experimental
1709
+ */
1710
+ type SheetFooterProps = React.HTMLAttributes<HTMLDivElement>;
1711
+ /**
1712
+ * Sheet title component props
1713
+ * Extends Radix UI Dialog.Title props
1714
+ * @public
1715
+ */
1716
+ type SheetTitleProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>;
1717
+ /**
1718
+ * Sheet description component props
1719
+ * Extends Radix UI Dialog.Description props
1720
+ * @public
1721
+ */
1722
+ type SheetDescriptionProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description>;
1723
+ /**
1724
+ * Sheet component refs
1725
+ * @experimental
1726
+ */
1727
+ type SheetOverlayRef = React.ElementRef<typeof DialogPrimitive.Overlay>;
1728
+ /** @experimental */
1729
+ type SheetContentRef = React.ElementRef<typeof DialogPrimitive.Content>;
1730
+ /** @experimental */
1731
+ type SheetTitleRef = React.ElementRef<typeof DialogPrimitive.Title>;
1732
+ /** @experimental */
1733
+ type SheetDescriptionRef = React.ElementRef<typeof DialogPrimitive.Description>;
1734
+
1664
1735
  /**
1665
1736
  * Sheet Component
1666
1737
  *
@@ -1715,7 +1786,10 @@ declare function SelectScrollDownButton({ className, ...props }: ComponentProps<
1715
1786
  * @see https://www.radix-ui.com/primitives/docs/components/dialog
1716
1787
  * @public
1717
1788
  */
1718
- declare const Sheet: react.FC<DialogPrimitive.DialogProps>;
1789
+ declare const Sheet: {
1790
+ ({ modal, children, ...props }: SheetProps): react_jsx_runtime.JSX.Element;
1791
+ displayName: string;
1792
+ };
1719
1793
  /** @experimental */
1720
1794
  declare const SheetTrigger: react.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & react.RefAttributes<HTMLButtonElement>>;
1721
1795
  /** @experimental */
@@ -1809,72 +1883,6 @@ declare const SheetTitle: react.ForwardRefExoticComponent<Omit<DialogPrimitive.D
1809
1883
  */
1810
1884
  declare const SheetDescription: react.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & react.RefAttributes<HTMLParagraphElement>, "ref"> & react.RefAttributes<HTMLParagraphElement>>;
1811
1885
 
1812
- /**
1813
- * Sheet Component Types
1814
- *
1815
- * TypeScript type definitions for the Sheet component (Dialog variant).
1816
- */
1817
-
1818
- /**
1819
- * Sheet root component props
1820
- * Extends Radix UI Dialog.Root props
1821
- * @public
1822
- */
1823
- type SheetProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Root>;
1824
- /**
1825
- * Sheet trigger component props
1826
- * Extends Radix UI Dialog.Trigger props
1827
- * @experimental
1828
- */
1829
- type SheetTriggerProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Trigger>;
1830
- /**
1831
- * Sheet close component props
1832
- * Extends Radix UI Dialog.Close props
1833
- * @experimental
1834
- */
1835
- type SheetCloseProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Close>;
1836
- /**
1837
- * Sheet overlay component props
1838
- * Extends Radix UI Dialog.Overlay props
1839
- * @experimental
1840
- */
1841
- type SheetOverlayProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Overlay>;
1842
- /**
1843
- * Sheet header component props
1844
- * Standard div props
1845
- * @public
1846
- */
1847
- type SheetHeaderProps = React.HTMLAttributes<HTMLDivElement>;
1848
- /**
1849
- * Sheet footer component props
1850
- * Standard div props
1851
- * @experimental
1852
- */
1853
- type SheetFooterProps = React.HTMLAttributes<HTMLDivElement>;
1854
- /**
1855
- * Sheet title component props
1856
- * Extends Radix UI Dialog.Title props
1857
- * @public
1858
- */
1859
- type SheetTitleProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Title>;
1860
- /**
1861
- * Sheet description component props
1862
- * Extends Radix UI Dialog.Description props
1863
- * @public
1864
- */
1865
- type SheetDescriptionProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Description>;
1866
- /**
1867
- * Sheet component refs
1868
- * @experimental
1869
- */
1870
- type SheetOverlayRef = React.ElementRef<typeof DialogPrimitive.Overlay>;
1871
- /** @experimental */
1872
- type SheetContentRef = React.ElementRef<typeof DialogPrimitive.Content>;
1873
- /** @experimental */
1874
- type SheetTitleRef = React.ElementRef<typeof DialogPrimitive.Title>;
1875
- /** @experimental */
1876
- type SheetDescriptionRef = React.ElementRef<typeof DialogPrimitive.Description>;
1877
-
1878
1886
  /**
1879
1887
  * Command Component
1880
1888
  *
@@ -3087,4 +3095,130 @@ type KeySequence = readonly KeyChord[];
3087
3095
  */
3088
3096
  declare function parseKeys(spec: string): KeySequence;
3089
3097
 
3090
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActionCallbacks, type ActiveShortcut, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, Button, type ButtonProps, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorPicker, type ColorPickerProps, type ColorSwatch, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type DataFetcher, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, type FilterInfo, FormLabelWithTooltip, type FormLabelWithTooltipProps, Grid, type GridProps, Input, type InputProps, type KeyChord, type KeySequence, Label, type ListResponse, type PaginationConfig, type PaginationMeta, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, type ProgressProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentRef, SheetDescription, type SheetDescriptionProps, type SheetDescriptionRef, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, type SheetOverlayProps, type SheetOverlayRef, SheetPortal, type SheetProps, SheetTitle, type SheetTitleProps, type SheetTitleRef, SheetTrigger, type SheetTriggerProps, type ShortcutBinding, type ShortcutLayerOptions, type ShortcutManager, type ShortcutManagerOptions, ShortcutProvider, type ShortcutProviderProps, type ShortcutRegistration, ShortcutScope, Skeleton, type SkeletonProps, Slider, type SliderProps, type SliderThumbProps, type SortInfo, Spinner, type SpinnerProps, Stack, type StackProps, Stat, type StatProps, Switch, Table, TableBody, TableCaption, TableCell, TableEmpty, type TableEmptyProps, TableError, type TableErrorProps, TableFooter, TableHead, TableHeader, TableLoading, type TableParams, TableRow, TableSearch, type TableSearchProps, TableSkeleton, type TableSkeletonProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TreeNode, TreeView, type TreeViewProps, type UseShortcutsOptions, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, commandDefaultFilter, createShortcutManager, dialogContentVariants, inputVariants, parseKeys, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, useActiveShortcuts, usePortalContainer, useShortcutManager, useShortcuts };
3098
+ /**
3099
+ * How wide a field's CONTROL may grow.
3100
+ *
3101
+ * Named rather than measured so a page cannot invent a one-off width, which is
3102
+ * how the eight admin forms diverged. The caps read from custom properties with
3103
+ * literal fallbacks, so a theme can retune them centrally without this file
3104
+ * changing and without a page overriding them locally.
3105
+ * @experimental
3106
+ */
3107
+ type FieldWidth = "half" | "full" | "fill";
3108
+ /**
3109
+ * The wiring `FieldShell` computes for its control: the id to attach, the
3110
+ * composed `aria-describedby` (`undefined` when nothing is rendered to point
3111
+ * at), and whether a rendered `error` forces the control invalid (`undefined`
3112
+ * when there is no error to force one way or the other).
3113
+ *
3114
+ * A render-function `children` (see `FieldShellProps`) receives exactly this
3115
+ * object — the SAME computation the element-clone path derives its
3116
+ * `cloneElement` overrides from — so a caller wiring a compound control (a
3117
+ * Radix `Select`'s trigger, for example) gets precisely the values the
3118
+ * simple, single-element case would have applied.
3119
+ * @experimental
3120
+ */
3121
+ interface FieldShellRenderProps {
3122
+ id: string;
3123
+ describedBy: string | undefined;
3124
+ invalid: boolean | undefined;
3125
+ }
3126
+ /** @experimental */
3127
+ interface FieldShellProps {
3128
+ label?: React.ReactNode;
3129
+ /** Helper text under the control. Rendered only when present. */
3130
+ description?: React.ReactNode;
3131
+ /** Validation message under the control. Rendered only when present. */
3132
+ error?: React.ReactNode;
3133
+ /** Defaults to "half": most admin inputs are short values. */
3134
+ width?: FieldWidth;
3135
+ htmlFor?: string;
3136
+ className?: string;
3137
+ /**
3138
+ * Either a single element to clone, or a function that receives the
3139
+ * computed wiring and applies it itself.
3140
+ *
3141
+ * The element form is `FieldShell` cloning it with `cloneElement` to
3142
+ * attach the id, `aria-describedby` and `aria-invalid` it computes —
3143
+ * unchanged from before, and still the right choice for an atomic control
3144
+ * (`Input`, `Textarea`, `Switch`) that spreads its own props onto a real
3145
+ * DOM node. Typing this branch as `ReactNode` would let a composite field
3146
+ * (two inputs with a unit between them, for example) compile and then
3147
+ * crash on mount, so it stays a single `ReactElement` — wrap several
3148
+ * elements in one real element, a `<div>`, not a `<Fragment>`: a Fragment
3149
+ * forwards none of those props to what is inside it.
3150
+ *
3151
+ * The function form exists for a compound control built on a Radix `Root`
3152
+ * (`Select`, and by the same shape `RadioGroup`): `Root` destructures a
3153
+ * fixed, named prop list and never spreads the remainder, so `id` handed
3154
+ * to it via `cloneElement` is silently dropped rather than reaching the
3155
+ * actual focusable element two levels down (`Select` > `SelectTrigger` >
3156
+ * `SelectValue`). A render function is called with `FieldShellRenderProps`
3157
+ * and applies `id`/`describedBy`/`invalid` to whichever nested element is
3158
+ * the real control, instead of relying on a single top-level clone that
3159
+ * can never reach it.
3160
+ */
3161
+ children: React.ReactElement | ((field: FieldShellRenderProps) => React.ReactNode);
3162
+ }
3163
+ /**
3164
+ * The page measure. "form" suits most pages; "wide" is opt-in for dense ones.
3165
+ * @experimental
3166
+ */
3167
+ type FormMeasure = "form" | "wide";
3168
+ /** @experimental */
3169
+ interface FormLayoutProps {
3170
+ width?: FormMeasure;
3171
+ className?: string;
3172
+ children: React.ReactNode;
3173
+ }
3174
+ /** @experimental */
3175
+ interface FormActionsProps {
3176
+ /**
3177
+ * Whether the form has unsaved changes. Supplied by the page from the form
3178
+ * state that already tracks it; never computed here.
3179
+ */
3180
+ dirty?: boolean;
3181
+ className?: string;
3182
+ children: React.ReactNode;
3183
+ }
3184
+
3185
+ /** @experimental */
3186
+ declare function FieldShell({ label, description, error, width, htmlFor, className, children, }: FieldShellProps): react_jsx_runtime.JSX.Element;
3187
+
3188
+ /** @experimental */
3189
+ interface FormSectionProps {
3190
+ /** Short label above the card, rendered uppercase. */
3191
+ label: string;
3192
+ /** Optional sentence under the label. */
3193
+ description?: react.ReactNode;
3194
+ className?: string;
3195
+ children: react.ReactNode;
3196
+ }
3197
+ /**
3198
+ * A labelled card holding a group of fields.
3199
+ *
3200
+ * Composes `Card` rather than hand-rolling its own border and background, so
3201
+ * a section carries the CONTAINER radius tier `Card` already defines instead
3202
+ * of a second, drifting copy of the same chrome. There is deliberately no
3203
+ * footer slot. A form commits as one document, so its action belongs to the
3204
+ * page rather than to a section.
3205
+ * @experimental
3206
+ */
3207
+ declare function FormSection({ label, description, className, children, }: FormSectionProps): react_jsx_runtime.JSX.Element;
3208
+
3209
+ /**
3210
+ * @experimental
3211
+ */
3212
+ declare function FormLayout({ width, className, children, }: FormLayoutProps): react_jsx_runtime.JSX.Element;
3213
+ /**
3214
+ * One action bar per form, at the end of the measure.
3215
+ *
3216
+ * A form commits as a single document, so there is one place to commit it. The
3217
+ * dirty flag arrives from the page because the form state already answers that
3218
+ * question, and a second implementation of it here would disagree with the
3219
+ * first as soon as either changed.
3220
+ * @experimental
3221
+ */
3222
+ declare function FormActions({ dirty, className, children }: FormActionsProps): react_jsx_runtime.JSX.Element;
3223
+
3224
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActionCallbacks, type ActiveShortcut, Alert, AlertDescription, type AlertDescriptionProps, AlertDialog, AlertDialogAction, type AlertDialogActionProps, AlertDialogCancel, type AlertDialogCancelProps, AlertDialogContent, type AlertDialogContentProps, AlertDialogDescription, type AlertDialogDescriptionProps, AlertDialogFooter, type AlertDialogFooterProps, AlertDialogHeader, type AlertDialogHeaderProps, AlertDialogOverlay, type AlertDialogOverlayProps, AlertDialogPortal, AlertDialogTitle, type AlertDialogTitleProps, AlertDialogTrigger, type AlertProps, AlertTitle, type AlertTitleProps, Avatar, AvatarFallback, type AvatarFallbackProps, AvatarImage, type AvatarImageProps, type AvatarProps, Badge, type BadgeProps, Button, type ButtonProps, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorPicker, type ColorPickerProps, type ColorSwatch, Command, CommandDialog, type CommandDialogProps, CommandEmpty, type CommandEmptyProps, CommandGroup, type CommandGroupProps, CommandInput, type CommandInputProps, CommandItem, type CommandItemProps, CommandList, type CommandListProps, type CommandProps, CommandSeparator, type CommandSeparatorProps, CommandShortcut, type CommandShortcutProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type DataFetcher, Dialog, DialogClose, DialogContent, type DialogContentProps, DialogDescription, type DialogDescriptionProps, DialogFooter, type DialogFooterProps, DialogHeader, type DialogHeaderProps, DialogOverlay, type DialogOverlayProps, DialogPortal, DialogTitle, type DialogTitleProps, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, type DropdownMenuCheckboxItemProps, DropdownMenuContent, type DropdownMenuContentProps, DropdownMenuGroup, DropdownMenuItem, type DropdownMenuItemProps, DropdownMenuLabel, type DropdownMenuLabelProps, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, type DropdownMenuRadioItemProps, DropdownMenuSeparator, type DropdownMenuSeparatorProps, DropdownMenuShortcut, type DropdownMenuShortcutProps, DropdownMenuSub, DropdownMenuSubContent, type DropdownMenuSubContentProps, DropdownMenuSubTrigger, type DropdownMenuSubTriggerProps, DropdownMenuTrigger, FieldShell, type FieldShellProps, type FieldShellRenderProps, type FieldWidth, type FilterInfo, FormActions, type FormActionsProps, FormLabelWithTooltip, type FormLabelWithTooltipProps, FormLayout, type FormLayoutProps, type FormMeasure, FormSection, type FormSectionProps, Grid, type GridProps, Input, type InputProps, type KeyChord, type KeySequence, Label, type ListResponse, type PaginationConfig, type PaginationMeta, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, type ProgressProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, type SelectTriggerProps, SelectValue, Separator, Sheet, SheetClose, type SheetCloseProps, SheetContent, type SheetContentProps, type SheetContentRef, SheetDescription, type SheetDescriptionProps, type SheetDescriptionRef, SheetFooter, type SheetFooterProps, SheetHeader, type SheetHeaderProps, SheetOverlay, type SheetOverlayProps, type SheetOverlayRef, SheetPortal, type SheetProps, SheetTitle, type SheetTitleProps, type SheetTitleRef, SheetTrigger, type SheetTriggerProps, type ShortcutBinding, type ShortcutLayerOptions, type ShortcutManager, type ShortcutManagerOptions, ShortcutProvider, type ShortcutProviderProps, type ShortcutRegistration, ShortcutScope, Skeleton, type SkeletonProps, Slider, type SliderProps, type SliderThumbProps, type SortInfo, Spinner, type SpinnerProps, Stack, type StackProps, Stat, type StatProps, Switch, Table, TableBody, TableCaption, TableCell, TableEmpty, type TableEmptyProps, TableError, type TableErrorProps, TableFooter, TableHead, TableHeader, TableLoading, type TableParams, TableRow, TableSearch, type TableSearchProps, TableSkeleton, type TableSkeletonProps, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, Textarea, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type TreeNode, TreeView, type TreeViewProps, type UseShortcutsOptions, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, commandDefaultFilter, createShortcutManager, dialogContentVariants, inputVariants, parseKeys, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, useActiveShortcuts, usePortalContainer, useShortcutManager, useShortcuts };