@nextlyhq/ui 0.0.2-alpha.35 → 0.0.2-alpha.37

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
@@ -1,6 +1,6 @@
1
1
  import * as class_variance_authority_types from 'class-variance-authority/types';
2
2
  import * as react from 'react';
3
- import { ButtonHTMLAttributes, ComponentProps, TextareaHTMLAttributes, HTMLAttributes, ComponentPropsWithoutRef, ReactNode } from 'react';
3
+ import { ButtonHTMLAttributes, ComponentProps, TextareaHTMLAttributes, HTMLAttributes, ReactNode, ComponentPropsWithoutRef } from 'react';
4
4
  import * as class_variance_authority from 'class-variance-authority';
5
5
  import { VariantProps } from 'class-variance-authority';
6
6
  import * as react_jsx_runtime from 'react/jsx-runtime';
@@ -218,6 +218,33 @@ declare const CardContent: react.ForwardRefExoticComponent<CardContentProps & re
218
218
  type CardFooterProps = HTMLAttributes<HTMLDivElement>;
219
219
  declare const CardFooter: react.ForwardRefExoticComponent<CardFooterProps & react.RefAttributes<HTMLDivElement>>;
220
220
 
221
+ type Gap = 0 | 1 | 2 | 3 | 4 | 6 | 8;
222
+ type Cols = 1 | 2 | 3 | 4 | 6;
223
+ interface StackProps extends HTMLAttributes<HTMLDivElement> {
224
+ /** Main-axis direction. Default `col`. */
225
+ direction?: "col" | "row";
226
+ /** Gap between children (Tailwind spacing step). Default `4`. */
227
+ gap?: Gap;
228
+ }
229
+ /** Flex stack: vertical by default, horizontal with `direction="row"`. */
230
+ declare const Stack: react.ForwardRefExoticComponent<StackProps & react.RefAttributes<HTMLDivElement>>;
231
+ interface GridProps extends HTMLAttributes<HTMLDivElement> {
232
+ /** Column count. Default `2`. */
233
+ cols?: Cols;
234
+ /** Gap between cells. Default `4`. */
235
+ gap?: Gap;
236
+ }
237
+ /** Simple fixed-column grid. */
238
+ declare const Grid: react.ForwardRefExoticComponent<GridProps & react.RefAttributes<HTMLDivElement>>;
239
+ interface StatProps extends HTMLAttributes<HTMLDivElement> {
240
+ /** Muted label above the value. */
241
+ label: string;
242
+ /** The emphasized value (string or node). */
243
+ value: ReactNode;
244
+ }
245
+ /** Labelled metric block for dashboard-style plugin widgets. */
246
+ declare const Stat: react.ForwardRefExoticComponent<StatProps & react.RefAttributes<HTMLDivElement>>;
247
+
221
248
  /**
222
249
  * Alert Component - Design System Specification
223
250
  *
@@ -2126,21 +2153,6 @@ declare function usePortalContainer(): HTMLElement | undefined;
2126
2153
  */
2127
2154
  declare function cn(...inputs: ClassValue[]): string;
2128
2155
 
2129
- /**
2130
- * Tailwind CSS preset for @nextlyhq/ui components.
2131
- *
2132
- * Defines the CSS custom property contract that all UI components expect.
2133
- * Consumers must provide the actual CSS variable values in their stylesheets.
2134
- *
2135
- * Usage (Tailwind v3):
2136
- * // tailwind.config.ts
2137
- * import uiPreset from "@nextlyhq/ui/tailwind-preset";
2138
- * export default { presets: [uiPreset], ... };
2139
- *
2140
- * Usage (Tailwind v4 with @config):
2141
- * Consumers define the equivalent @theme tokens in their CSS.
2142
- * This file serves as the reference contract.
2143
- */
2144
2156
  declare const uiPreset: {
2145
2157
  theme: {
2146
2158
  extend: {
@@ -2160,10 +2172,12 @@ declare const uiPreset: {
2160
2172
  };
2161
2173
  destructive: {
2162
2174
  DEFAULT: string;
2175
+ solid: string;
2163
2176
  foreground: string;
2164
2177
  };
2165
2178
  success: {
2166
2179
  DEFAULT: string;
2180
+ solid: string;
2167
2181
  foreground: string;
2168
2182
  };
2169
2183
  warning: {
@@ -2218,4 +2232,4 @@ declare const uiPreset: {
2218
2232
  };
2219
2233
  };
2220
2234
 
2221
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActionCallbacks, 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, 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, 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, Input, type InputProps, Label, type ListResponse, type PaginationConfig, type PaginationMeta, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, type ProgressProps, RadioGroup, RadioGroupItem, 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, Skeleton, type SkeletonProps, type SortInfo, Spinner, type SpinnerProps, 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, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, dialogContentVariants, inputVariants, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, uiPreset, usePortalContainer };
2235
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActionCallbacks, 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, 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, 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, Label, type ListResponse, type PaginationConfig, type PaginationMeta, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, type ProgressProps, RadioGroup, RadioGroupItem, 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, Skeleton, type SkeletonProps, 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, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, dialogContentVariants, inputVariants, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, uiPreset, usePortalContainer };
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as class_variance_authority_types from 'class-variance-authority/types';
2
2
  import * as react from 'react';
3
- import { ButtonHTMLAttributes, ComponentProps, TextareaHTMLAttributes, HTMLAttributes, ComponentPropsWithoutRef, ReactNode } from 'react';
3
+ import { ButtonHTMLAttributes, ComponentProps, TextareaHTMLAttributes, HTMLAttributes, ReactNode, ComponentPropsWithoutRef } from 'react';
4
4
  import * as class_variance_authority from 'class-variance-authority';
5
5
  import { VariantProps } from 'class-variance-authority';
6
6
  import * as react_jsx_runtime from 'react/jsx-runtime';
@@ -218,6 +218,33 @@ declare const CardContent: react.ForwardRefExoticComponent<CardContentProps & re
218
218
  type CardFooterProps = HTMLAttributes<HTMLDivElement>;
219
219
  declare const CardFooter: react.ForwardRefExoticComponent<CardFooterProps & react.RefAttributes<HTMLDivElement>>;
220
220
 
221
+ type Gap = 0 | 1 | 2 | 3 | 4 | 6 | 8;
222
+ type Cols = 1 | 2 | 3 | 4 | 6;
223
+ interface StackProps extends HTMLAttributes<HTMLDivElement> {
224
+ /** Main-axis direction. Default `col`. */
225
+ direction?: "col" | "row";
226
+ /** Gap between children (Tailwind spacing step). Default `4`. */
227
+ gap?: Gap;
228
+ }
229
+ /** Flex stack: vertical by default, horizontal with `direction="row"`. */
230
+ declare const Stack: react.ForwardRefExoticComponent<StackProps & react.RefAttributes<HTMLDivElement>>;
231
+ interface GridProps extends HTMLAttributes<HTMLDivElement> {
232
+ /** Column count. Default `2`. */
233
+ cols?: Cols;
234
+ /** Gap between cells. Default `4`. */
235
+ gap?: Gap;
236
+ }
237
+ /** Simple fixed-column grid. */
238
+ declare const Grid: react.ForwardRefExoticComponent<GridProps & react.RefAttributes<HTMLDivElement>>;
239
+ interface StatProps extends HTMLAttributes<HTMLDivElement> {
240
+ /** Muted label above the value. */
241
+ label: string;
242
+ /** The emphasized value (string or node). */
243
+ value: ReactNode;
244
+ }
245
+ /** Labelled metric block for dashboard-style plugin widgets. */
246
+ declare const Stat: react.ForwardRefExoticComponent<StatProps & react.RefAttributes<HTMLDivElement>>;
247
+
221
248
  /**
222
249
  * Alert Component - Design System Specification
223
250
  *
@@ -2126,21 +2153,6 @@ declare function usePortalContainer(): HTMLElement | undefined;
2126
2153
  */
2127
2154
  declare function cn(...inputs: ClassValue[]): string;
2128
2155
 
2129
- /**
2130
- * Tailwind CSS preset for @nextlyhq/ui components.
2131
- *
2132
- * Defines the CSS custom property contract that all UI components expect.
2133
- * Consumers must provide the actual CSS variable values in their stylesheets.
2134
- *
2135
- * Usage (Tailwind v3):
2136
- * // tailwind.config.ts
2137
- * import uiPreset from "@nextlyhq/ui/tailwind-preset";
2138
- * export default { presets: [uiPreset], ... };
2139
- *
2140
- * Usage (Tailwind v4 with @config):
2141
- * Consumers define the equivalent @theme tokens in their CSS.
2142
- * This file serves as the reference contract.
2143
- */
2144
2156
  declare const uiPreset: {
2145
2157
  theme: {
2146
2158
  extend: {
@@ -2160,10 +2172,12 @@ declare const uiPreset: {
2160
2172
  };
2161
2173
  destructive: {
2162
2174
  DEFAULT: string;
2175
+ solid: string;
2163
2176
  foreground: string;
2164
2177
  };
2165
2178
  success: {
2166
2179
  DEFAULT: string;
2180
+ solid: string;
2167
2181
  foreground: string;
2168
2182
  };
2169
2183
  warning: {
@@ -2218,4 +2232,4 @@ declare const uiPreset: {
2218
2232
  };
2219
2233
  };
2220
2234
 
2221
- export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActionCallbacks, 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, 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, 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, Input, type InputProps, Label, type ListResponse, type PaginationConfig, type PaginationMeta, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, type ProgressProps, RadioGroup, RadioGroupItem, 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, Skeleton, type SkeletonProps, type SortInfo, Spinner, type SpinnerProps, 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, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, dialogContentVariants, inputVariants, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, uiPreset, usePortalContainer };
2235
+ export { Accordion, AccordionContent, type AccordionContentProps, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, type ActionCallbacks, 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, 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, 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, Label, type ListResponse, type PaginationConfig, type PaginationMeta, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, type ProgressProps, RadioGroup, RadioGroupItem, 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, Skeleton, type SkeletonProps, 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, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, dialogContentVariants, inputVariants, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, uiPreset, usePortalContainer };
package/dist/index.mjs CHANGED
@@ -36,9 +36,15 @@ var buttonVariants = cva(
36
36
  variant: {
37
37
  default: "bg-primary text-primary-foreground border border-transparent hover:opacity-90",
38
38
  primary: "bg-primary text-primary-foreground border border-transparent hover:opacity-90",
39
- destructive: "bg-destructive text-destructive-foreground border border-transparent hover:opacity-90",
40
- outline: "border border-primary/10 text-foreground hover-unified bg-background",
41
- secondary: "bg-background border border-primary/10 text-foreground hover:bg-primary/5",
39
+ // Solid fill uses the emphasis token so white on-color text stays AA in
40
+ // dark mode (the base token is the readable text color, too light here).
41
+ // Hover darkens to a deeper shade instead of opacity-90, which would
42
+ // composite the fill toward the page and drop white text under 4.5:1.
43
+ destructive: "bg-destructive-solid text-destructive-foreground border border-transparent hover:bg-destructive-700",
44
+ // border-border (not a faint primary alpha) so the outline is a visible
45
+ // boundary at the 3:1 UI minimum.
46
+ outline: "border border-border text-foreground hover-unified bg-background",
47
+ secondary: "bg-background border border-border text-foreground hover:bg-primary/5",
42
48
  ghost: "text-foreground border border-transparent hover-unified",
43
49
  link: "text-primary border border-transparent underline-offset-4 hover:underline"
44
50
  },
@@ -121,7 +127,9 @@ var Textarea = forwardRef(({ className, ...props }, ref) => {
121
127
  {
122
128
  "data-slot": "textarea",
123
129
  className: cn(
124
- "flex min-h-[80px] w-full rounded-none border border-input bg-background px-3 py-2 text-sm text-foreground placeholder:text-muted-foreground placeholder:opacity-50 transition-all duration-200 focus:border-primary! focus-visible:border-primary! focus:outline-none hover:border-primary/30 disabled:cursor-not-allowed disabled:opacity-50 disabled:bg-primary/5 resize-y",
130
+ // hover:border-primary (full strength) keeps the hover boundary more
131
+ // visible than the resting border-input, not a fainter alpha of it.
132
+ "flex min-h-[80px] w-full rounded-none border border-input bg-background px-3 py-2 text-sm text-foreground placeholder:text-muted-foreground placeholder:opacity-50 transition-all duration-200 focus:border-primary! focus-visible:border-primary! focus:outline-none hover:border-primary disabled:cursor-not-allowed disabled:opacity-50 disabled:bg-primary/5 resize-y",
125
133
  "aria-invalid:border-destructive aria-invalid:focus:border-destructive!",
126
134
  className
127
135
  ),
@@ -374,15 +382,71 @@ var CardFooter = forwardRef(
374
382
  }
375
383
  );
376
384
  CardFooter.displayName = "CardFooter";
385
+ var GAP = {
386
+ 0: "gap-0",
387
+ 1: "gap-1",
388
+ 2: "gap-2",
389
+ 3: "gap-3",
390
+ 4: "gap-4",
391
+ 6: "gap-6",
392
+ 8: "gap-8"
393
+ };
394
+ var COLS = {
395
+ 1: "grid-cols-1",
396
+ 2: "grid-cols-2",
397
+ 3: "grid-cols-3",
398
+ 4: "grid-cols-4",
399
+ 6: "grid-cols-6"
400
+ };
401
+ var Stack = forwardRef(
402
+ ({ direction = "col", gap = 4, className, ...props }, ref) => /* @__PURE__ */ jsx(
403
+ "div",
404
+ {
405
+ ref,
406
+ className: cn(
407
+ "flex",
408
+ direction === "col" ? "flex-col" : "flex-row",
409
+ GAP[gap],
410
+ className
411
+ ),
412
+ ...props
413
+ }
414
+ )
415
+ );
416
+ Stack.displayName = "Stack";
417
+ var Grid = forwardRef(
418
+ ({ cols = 2, gap = 4, className, ...props }, ref) => /* @__PURE__ */ jsx(
419
+ "div",
420
+ {
421
+ ref,
422
+ className: cn("grid", COLS[cols], GAP[gap], className),
423
+ ...props
424
+ }
425
+ )
426
+ );
427
+ Grid.displayName = "Grid";
428
+ var Stat = forwardRef(
429
+ ({ label, value, className, ...props }, ref) => /* @__PURE__ */ jsxs("div", { ref, className: cn("flex flex-col gap-1", className), ...props, children: [
430
+ /* @__PURE__ */ jsx("span", { className: "text-sm text-muted-foreground", children: label }),
431
+ /* @__PURE__ */ jsx("span", { className: "text-2xl font-semibold text-foreground", children: value })
432
+ ] })
433
+ );
434
+ Stat.displayName = "Stat";
377
435
  var alertVariants = cva(
378
436
  "relative flex items-start gap-3 rounded-none border border-border p-4 text-sm transition-colors duration-150",
379
437
  {
380
438
  variants: {
381
439
  variant: {
382
- info: "border-border bg-primary/5 text-primary dark:border-primary/30 dark:bg-primary/5 dark:text-primary-foreground/90",
383
- success: "border-success-200 bg-success-50 text-success-900 border-l-4 border-l-success dark:border-success-900 dark:bg-success-950 dark:text-success-100",
384
- warning: "border-warning-200 bg-warning-50 text-warning-900 border-l-4 border-l-warning dark:border-warning-900 dark:bg-warning-950 dark:text-warning-100",
385
- destructive: "border-destructive-200 bg-destructive-50 text-destructive-900 border-l-4 border-l-destructive dark:border-destructive-900 dark:bg-destructive-950 dark:text-destructive-100"
440
+ // text-primary is mode-correct (dark ink on light in light mode, light
441
+ // ink on dark in dark mode); the previous dark text override rendered
442
+ // dark slate on the dark tint at about 1:1.
443
+ info: "bg-primary/5 text-primary",
444
+ // dark:border-l-* re-asserts the strong base accent on the left after
445
+ // the dark:border-*-900 all-sides rule, so the meaningful accent stays
446
+ // visible in dark mode instead of collapsing to the faint -900 shade.
447
+ success: "border-success-200 bg-success-50 text-success-900 border-l-4 border-l-success dark:border-success-900 dark:border-l-success dark:bg-success-950 dark:text-success-100",
448
+ warning: "border-warning-200 bg-warning-50 text-warning-900 border-l-4 border-l-warning dark:border-warning-900 dark:border-l-warning dark:bg-warning-950 dark:text-warning-100",
449
+ destructive: "border-destructive-200 bg-destructive-50 text-destructive-900 border-l-4 border-l-destructive dark:border-destructive-900 dark:border-l-destructive dark:bg-destructive-950 dark:text-destructive-100"
386
450
  }
387
451
  },
388
452
  defaultVariants: {
@@ -532,22 +596,9 @@ var Checkbox = forwardRef(({ className, indeterminate, ...props }, ref) => /* @_
532
596
  ref,
533
597
  "data-slot": "checkbox",
534
598
  className: cn(
535
- // Unchecked outline uses primary/50: measured 3.95:1 on the light row and
536
- // 5.32:1 on the dark one. WCAG 1.4.11 asks 3:1 of a control's boundary and
537
- // the earlier values did not reach it primary/40 came out at 2.85, close
538
- // enough to look deliberate and still short. Callers must not override the
539
- // border: passing `border-border` puts the divider token here, which
540
- // measured 1.35:1 and 1.14:1, and a divider is meant to go unnoticed.
541
- // Checked and indeterminate share the filled appearance; declaring both
542
- // here keeps the control self-sufficient without host overrides.
543
- //
544
- // The box stays 16px and the target does not: `before` stretches an
545
- // invisible 24px square from the centre, which is WCAG 2.5.8's floor.
546
- // The exemption for a bare browser checkbox does not cover a styled one,
547
- // and this is styled. Growing the box instead would make every dense
548
- // table heavier for a rule about pointers, so the box and the thing you
549
- // can hit are allowed to differ.
550
- "peer relative h-4 w-4 shrink-0 rounded-none border border-primary/50 ring-offset-background before:absolute before:left-1/2 before:top-1/2 before:h-6 before:w-6 before:-translate-x-1/2 before:-translate-y-1/2 before:content-[''] focus:border-primary! focus-visible:border-primary! focus:outline-none focus-visible:outline-none aria-invalid:border-destructive aria-invalid:focus:border-destructive! aria-invalid:focus-visible:border-destructive! disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground data-[state=checked]:border-primary data-[state=indeterminate]:bg-primary data-[state=indeterminate]:text-primary-foreground data-[state=indeterminate]:border-primary transition-all duration-200",
599
+ // Resting border uses border-input (a visible 3:1 boundary); the checked
600
+ // state switches to border-primary below, keeping the two states distinct.
601
+ "peer relative h-4 w-4 shrink-0 rounded-none border border-input ring-offset-background before:absolute before:left-1/2 before:top-1/2 before:h-6 before:w-6 before:-translate-x-1/2 before:-translate-y-1/2 before:content-[''] focus:border-primary! focus-visible:border-primary! focus:outline-none focus-visible:outline-none aria-invalid:border-destructive aria-invalid:focus:border-destructive! aria-invalid:focus-visible:border-destructive! disabled:cursor-not-allowed disabled:opacity-50 data-[state=checked]:bg-primary data-[state=checked]:text-primary-foreground data-[state=checked]:border-primary data-[state=indeterminate]:bg-primary data-[state=indeterminate]:text-primary-foreground data-[state=indeterminate]:border-primary transition-all duration-200",
551
602
  className
552
603
  ),
553
604
  ...props,
@@ -582,7 +633,9 @@ var RadioGroupItem = forwardRef(({ className, ...props }, ref) => {
582
633
  className: cn(
583
634
  // Unchecked outline uses primary/40 (clearly visible) instead of primary/5
584
635
  // (~5% opacity, effectively invisible); hover strengthens above the resting state.
585
- "peer h-4 w-4 shrink-0 rounded-none border border-primary/40 bg-background cursor-pointer transition-all duration-150 focus:border-primary! focus-visible:border-primary! focus:outline-none focus-visible:outline-none aria-invalid:border-destructive aria-invalid:focus:border-destructive! aria-invalid:focus-visible:border-destructive! disabled:cursor-not-allowed disabled:opacity-50 hover:border-primary/70 data-[state=checked]:border-primary data-[state=checked]:border-[5px]",
636
+ // Resting border uses border-input (a visible 3:1 boundary); the checked
637
+ // state switches to border-primary below, keeping the two states distinct.
638
+ "peer h-4 w-4 shrink-0 rounded-none border border-input bg-background cursor-pointer transition-all duration-150 focus:border-primary! focus-visible:border-primary! focus:outline-none focus-visible:outline-none aria-invalid:border-destructive aria-invalid:focus:border-destructive! aria-invalid:focus-visible:border-destructive! disabled:cursor-not-allowed disabled:opacity-50 hover:border-primary/70 data-[state=checked]:border-primary data-[state=checked]:border-[5px]",
586
639
  className
587
640
  ),
588
641
  ...props,
@@ -765,7 +818,7 @@ var TabsTrigger = forwardRef(
765
818
  ref,
766
819
  "data-slot": "tabs-trigger",
767
820
  className: cn(
768
- "inline-flex items-center justify-center whitespace-nowrap rounded-none bg-transparent px-4 py-2 text-sm font-medium cursor-pointer transition-all duration-200 border-b-2 relative -mb-0.5 data-[state=active]:border-b-primary! data-[state=active]:text-primary data-[state=inactive]:border-transparent data-[state=inactive]:text-muted-foreground hover:text-primary hover:border-primary focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/20 focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 disabled:cursor-not-allowed",
821
+ "inline-flex items-center justify-center whitespace-nowrap rounded-none bg-transparent px-4 py-2 text-sm font-medium cursor-pointer transition-all duration-200 border-b-2 relative -mb-0.5 data-[state=active]:border-b-primary! data-[state=active]:text-primary data-[state=inactive]:border-transparent data-[state=inactive]:text-muted-foreground hover:text-primary hover:border-primary focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:pointer-events-none disabled:opacity-50 disabled:cursor-not-allowed",
769
822
  className
770
823
  ),
771
824
  ...props
@@ -780,7 +833,7 @@ var TabsContent = forwardRef(
780
833
  ref,
781
834
  "data-slot": "tabs-content",
782
835
  className: cn(
783
- "mt-2 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring/20 focus-visible:ring-offset-2",
836
+ "mt-2 focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2",
784
837
  className
785
838
  ),
786
839
  ...props
@@ -1178,7 +1231,9 @@ function SelectValue({
1178
1231
  return /* @__PURE__ */ jsx(SelectPrimitive.Value, { "data-slot": "select-value", ...props });
1179
1232
  }
1180
1233
  var selectTriggerVariants = cva(
1181
- "flex w-full items-center justify-between gap-2 rounded-none border border-input bg-background px-3 text-sm text-foreground cursor-pointer transition-all duration-150 focus:border-primary! focus-visible:border-primary! focus:outline-none hover:border-primary/30 disabled:cursor-not-allowed disabled:opacity-50 disabled:bg-primary/5 data-[placeholder]:text-muted-foreground aria-[invalid=true]:border-destructive aria-[invalid=true]:focus:border-destructive! [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg]:size-4",
1234
+ // hover:border-primary (full strength) keeps the hover boundary more visible
1235
+ // than the resting border-input, not a fainter alpha of it.
1236
+ "flex w-full items-center justify-between gap-2 rounded-none border border-input bg-background px-3 text-sm text-foreground cursor-pointer transition-all duration-150 focus:border-primary! focus-visible:border-primary! focus:outline-none hover:border-primary disabled:cursor-not-allowed disabled:opacity-50 disabled:bg-primary/5 data-[placeholder]:text-muted-foreground aria-[invalid=true]:border-destructive aria-[invalid=true]:focus:border-destructive! [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg]:size-4",
1182
1237
  {
1183
1238
  variants: {
1184
1239
  size: {
@@ -1789,7 +1844,7 @@ function TableSearch({
1789
1844
  {
1790
1845
  type: "button",
1791
1846
  onClick: onClear,
1792
- className: "text-muted-foreground/60 hover:text-foreground transition-colors p-0.5 rounded-none hover:bg-primary/5",
1847
+ className: "text-muted-foreground hover:text-foreground transition-colors p-0.5 rounded-none hover:bg-primary/5",
1793
1848
  "aria-label": "Clear search",
1794
1849
  children: /* @__PURE__ */ jsx(X, { className: "w-3.5 h-3.5" })
1795
1850
  }
@@ -1861,6 +1916,19 @@ var TableSkeleton = ({
1861
1916
  TableSkeleton.displayName = "TableSkeleton";
1862
1917
 
1863
1918
  // src/tailwind-preset.ts
1919
+ var statusScale = (base) => ({
1920
+ 50: `color-mix(in srgb, var(${base}), white 95%)`,
1921
+ 100: `color-mix(in srgb, var(${base}), white 90%)`,
1922
+ 200: `color-mix(in srgb, var(${base}), white 70%)`,
1923
+ 300: `color-mix(in srgb, var(${base}), white 50%)`,
1924
+ 400: `color-mix(in srgb, var(${base}), white 30%)`,
1925
+ 500: `var(${base})`,
1926
+ 600: `color-mix(in srgb, var(${base}), black 10%)`,
1927
+ 700: `color-mix(in srgb, var(${base}), black 30%)`,
1928
+ 800: `color-mix(in srgb, var(${base}), black 50%)`,
1929
+ 900: `color-mix(in srgb, var(${base}), black 70%)`,
1930
+ 950: `color-mix(in srgb, var(${base}), black 85%)`
1931
+ });
1864
1932
  var uiPreset = {
1865
1933
  theme: {
1866
1934
  extend: {
@@ -1880,15 +1948,21 @@ var uiPreset = {
1880
1948
  },
1881
1949
  destructive: {
1882
1950
  DEFAULT: "var(--nx-destructive)",
1883
- foreground: "var(--nx-destructive-foreground)"
1951
+ // Saturated fill for solid buttons, distinct from the text-tuned base.
1952
+ solid: "var(--nx-destructive-solid)",
1953
+ foreground: "var(--nx-destructive-foreground)",
1954
+ ...statusScale("--nx-destructive")
1884
1955
  },
1885
1956
  success: {
1886
1957
  DEFAULT: "var(--nx-success)",
1887
- foreground: "var(--nx-success-foreground)"
1958
+ solid: "var(--nx-success-solid)",
1959
+ foreground: "var(--nx-success-foreground)",
1960
+ ...statusScale("--nx-success")
1888
1961
  },
1889
1962
  warning: {
1890
1963
  DEFAULT: "var(--nx-warning)",
1891
- foreground: "var(--nx-warning-foreground)"
1964
+ foreground: "var(--nx-warning-foreground)",
1965
+ ...statusScale("--nx-warning")
1892
1966
  },
1893
1967
  muted: {
1894
1968
  DEFAULT: "var(--nx-muted)",
@@ -1931,6 +2005,6 @@ var uiPreset = {
1931
2005
  };
1932
2006
  var tailwind_preset_default = uiPreset;
1933
2007
 
1934
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Collapsible, CollapsibleContent2 as CollapsibleContent, CollapsibleTrigger2 as CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FormLabelWithTooltip, Input, Label, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, RadioGroup, RadioGroupItem, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Spinner, Switch, Table, TableBody, TableCaption, TableCell, TableEmpty, TableError, TableFooter, TableHead, TableHeader, TableLoading, TableRow, TableSearch, TableSkeleton, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, dialogContentVariants, inputVariants, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, tailwind_preset_default as uiPreset, usePortalContainer };
2008
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, Avatar, AvatarFallback, AvatarImage, Badge, Button, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, Collapsible, CollapsibleContent2 as CollapsibleContent, CollapsibleTrigger2 as CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, FormLabelWithTooltip, Grid, Input, Label, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalProvider, Progress, RadioGroup, RadioGroupItem, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, Spinner, Stack, Stat, Switch, Table, TableBody, TableCaption, TableCell, TableEmpty, TableError, TableFooter, TableHead, TableHeader, TableLoading, TableRow, TableSearch, TableSkeleton, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, alertVariants, avatarVariants, badgeVariants, buttonVariants, cardVariants, cn, dialogContentVariants, inputVariants, progressVariants, selectTriggerVariants, sheetVariants, spinnerVariants, tailwind_preset_default as uiPreset, usePortalContainer };
1935
2009
  //# sourceMappingURL=index.mjs.map
1936
2010
  //# sourceMappingURL=index.mjs.map