@codapet/design-system 0.8.7 → 0.8.8
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/AGENTS.md +8 -3
- package/dist/index.d.mts +53 -6
- package/dist/index.mjs +1133 -1012
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +52 -0
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -103,8 +103,11 @@ These are the foot-guns. Knowing them prevents most "why does my Button look wro
|
|
|
103
103
|
### Accordion
|
|
104
104
|
|
|
105
105
|
- Adds a `variant` prop on `<Accordion>`: `default` (shadcn-equivalent, bottom-stripe items) or `outlined` (each item is its own bordered card with taller trigger and roomier padding). Reach for `variant="outlined"` on FAQ sections, settings panels, or any "stacked cards" pattern.
|
|
106
|
-
- Variant propagates to children via context — set it once on the root, not on every `AccordionItem`/`
|
|
107
|
-
-
|
|
106
|
+
- Variant propagates to children via context — set it once on the root, not on every `AccordionItem`/`AccordionTrigger`/`AccordionContent`.
|
|
107
|
+
- `outlined` cards warm their border to `primary-stroke-default` on pointer hover, and their `AccordionContent` fades while it grows (250ms, soft ease). The `default` variant keeps the shadcn height-only motion. Both respect `prefers-reduced-motion`.
|
|
108
|
+
- `staggerReveal` on `<Accordion>` fades-and-rises every item in on mount, 80ms apart. Items only stagger if you pass `revealIndex={i}` to each `AccordionItem` — without it they all arrive together.
|
|
109
|
+
- Icons on `AccordionTrigger`: the default is a rotating `ChevronDown`; `icon="plus-minus"` switches to a two-bar + that morphs into a −; `iconClassName` resizes or recolours either built-in icon. `collapsedIcon`/`expandedIcon` still take any React node and win over `icon`. In the `outlined` variant a collapsed/expanded pair cross-rotates instead of hard-swapping.
|
|
110
|
+
- For a plain question/answer list, don't assemble these by hand — use `FaqAccordion` (see the components table).
|
|
108
111
|
|
|
109
112
|
### Dialog vs SmartDialog
|
|
110
113
|
|
|
@@ -152,6 +155,7 @@ These don't exist in shadcn — reach for them instead of building your own:
|
|
|
152
155
|
| `AutoResizeTextarea` | Textarea that grows with content; `maxHeight` enables scroll. Handles RHF `setValue`/`reset` correctly. |
|
|
153
156
|
| `ProgressBar` | Step-based bar; pass `currentStep` + `totalSteps`, or `value` (0–100) directly. |
|
|
154
157
|
| `SmartDialog*` | Responsive Dialog↔Drawer (see above). |
|
|
158
|
+
| `FaqAccordion` | Data-driven FAQ list: pass `faqs` (`{ question, answer }[]`) and get the outlined Accordion with one item open at a time, a +/− morph icon, fade-while-growing answers and optional `staggerReveal`. `defaultOpenQuestion` opens a question on mount and re-opens whenever it changes. `questionClassName` / `answerClassName` / `itemClassName` restyle each slot. A string `answer` renders as a paragraph; pass a node for rich text. Prefer it over hand-assembling `Accordion*` for any question/answer array. |
|
|
155
159
|
| `Typography`: `DisplayHeading`, `HeadingXL` … `HeadingXXS` (+ `*Medium` variants), `Body` | Use these instead of raw `<h1>`/`<p>` to inherit the right tokens (`font-serif italic` for display, `text-vibrant-text-heading` for headings, `text-vibrant-text-body` for body). Sizes are responsive (md: breakpoint baked in). |
|
|
156
160
|
| `ThemeToggle` | Drop-in light/dark toggle. |
|
|
157
161
|
|
|
@@ -344,7 +348,8 @@ rather than reimplementing the classes: `buttonVariants`, `badgeVariants`,
|
|
|
344
348
|
`progressBarVariants`, `tabsTriggerVariants`, `toggleVariants`,
|
|
345
349
|
`bodyTextVariants`, `displayTextVariants`, `navigationMenuTriggerStyle`.
|
|
346
350
|
|
|
347
|
-
**Exported types** — import with `import type`: `
|
|
351
|
+
**Exported types** — import with `import type`: `AccordionProps`, `AccordionItemProps`,
|
|
352
|
+
`AccordionTriggerProps`, `FaqAccordionProps`, `FaqItem`, `InputProps`, `TextareaProps`,
|
|
348
353
|
`SearchInputProps`, `SearchSuggestion`, `AlertBannerProps`,
|
|
349
354
|
`BadgeActionableProps`, `BadgeInformativeProps`, `BadgeNumberProps`,
|
|
350
355
|
`OptionCardProps`, `ProgressBarProps`, `TabsTriggerProps`, `TooltipContentProps`,
|
package/dist/index.d.mts
CHANGED
|
@@ -45,14 +45,34 @@ import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
|
45
45
|
import { ClassValue } from 'clsx';
|
|
46
46
|
|
|
47
47
|
type AccordionVariant = 'default' | 'outlined';
|
|
48
|
-
|
|
48
|
+
type AccordionProps = React$1.ComponentProps<typeof AccordionPrimitive.Root> & {
|
|
49
49
|
variant?: AccordionVariant;
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
/**
|
|
51
|
+
* Fade-and-rise every item in on mount. Give each `AccordionItem` a
|
|
52
|
+
* `revealIndex` so they land 80ms apart; without it they arrive together.
|
|
53
|
+
* Skipped entirely under `prefers-reduced-motion`.
|
|
54
|
+
*/
|
|
55
|
+
staggerReveal?: boolean;
|
|
56
|
+
};
|
|
57
|
+
declare function Accordion({ variant, staggerReveal, className, ...props }: AccordionProps): react_jsx_runtime.JSX.Element;
|
|
58
|
+
type AccordionItemProps = React$1.ComponentProps<typeof AccordionPrimitive.Item> & {
|
|
59
|
+
/** Position in the list; sets this item's delay when the root has `staggerReveal`. */
|
|
60
|
+
revealIndex?: number;
|
|
61
|
+
};
|
|
62
|
+
declare function AccordionItem({ className, style, revealIndex, ...props }: AccordionItemProps): react_jsx_runtime.JSX.Element;
|
|
63
|
+
type AccordionTriggerIcon = 'chevron' | 'plus-minus';
|
|
64
|
+
type AccordionTriggerProps = React$1.ComponentProps<typeof AccordionPrimitive.Trigger> & {
|
|
53
65
|
expandedIcon?: React$1.ReactNode;
|
|
54
66
|
collapsedIcon?: React$1.ReactNode;
|
|
55
|
-
|
|
67
|
+
/**
|
|
68
|
+
* Built-in indicator, used when no custom icons are given. `chevron`
|
|
69
|
+
* rotates; `plus-minus` morphs a + into a − as the item opens.
|
|
70
|
+
*/
|
|
71
|
+
icon?: AccordionTriggerIcon;
|
|
72
|
+
/** Merged onto the built-in indicator to resize or recolour it. */
|
|
73
|
+
iconClassName?: string;
|
|
74
|
+
};
|
|
75
|
+
declare function AccordionTrigger({ className, children, expandedIcon, collapsedIcon, icon, iconClassName, ...props }: AccordionTriggerProps): react_jsx_runtime.JSX.Element;
|
|
56
76
|
declare function AccordionContent({ className, children, ...props }: React$1.ComponentProps<typeof AccordionPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
57
77
|
|
|
58
78
|
declare const alertVariants: (props?: ({
|
|
@@ -671,6 +691,33 @@ interface DropdownSelectOptionProps extends React$1.ComponentProps<'div'> {
|
|
|
671
691
|
}
|
|
672
692
|
declare function DropdownSelectOption({ className, value: optionValue, label, disabled: optionDisabled, children, ...props }: DropdownSelectOptionProps): react_jsx_runtime.JSX.Element;
|
|
673
693
|
|
|
694
|
+
interface FaqItem {
|
|
695
|
+
question: string;
|
|
696
|
+
/** A plain string renders as one paragraph; pass a node for rich text. */
|
|
697
|
+
answer: React$1.ReactNode;
|
|
698
|
+
}
|
|
699
|
+
interface FaqAccordionProps {
|
|
700
|
+
faqs: FaqItem[];
|
|
701
|
+
className?: string;
|
|
702
|
+
/** Fade-and-rise the questions in on mount, 80ms apart. */
|
|
703
|
+
staggerReveal?: boolean;
|
|
704
|
+
/** Question text to open on mount, and again whenever this value changes. */
|
|
705
|
+
defaultOpenQuestion?: string;
|
|
706
|
+
/** Merged onto every question label. */
|
|
707
|
+
questionClassName?: string;
|
|
708
|
+
/** Merged onto every answer body. */
|
|
709
|
+
answerClassName?: string;
|
|
710
|
+
/** Merged onto every item card. */
|
|
711
|
+
itemClassName?: string;
|
|
712
|
+
}
|
|
713
|
+
/**
|
|
714
|
+
* Data-driven FAQ list on the outlined Accordion: one question open at a
|
|
715
|
+
* time, a + that morphs into a −, and a fade-while-growing answer. Reach for
|
|
716
|
+
* this over hand-assembling `Accordion*` whenever the content is a plain
|
|
717
|
+
* question/answer array.
|
|
718
|
+
*/
|
|
719
|
+
declare function FaqAccordion({ faqs, className, staggerReveal, defaultOpenQuestion, questionClassName, answerClassName, itemClassName }: FaqAccordionProps): react_jsx_runtime.JSX.Element;
|
|
720
|
+
|
|
674
721
|
declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: react_hook_form.FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React$1.JSX.Element;
|
|
675
722
|
declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => react_jsx_runtime.JSX.Element;
|
|
676
723
|
declare const useFormField: () => {
|
|
@@ -1178,4 +1225,4 @@ declare function cn(...inputs: ClassValue[]): string;
|
|
|
1178
1225
|
|
|
1179
1226
|
declare function useIsMobile(): boolean;
|
|
1180
1227
|
|
|
1181
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertBanner, type AlertBannerProps, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, AsyncAutocomplete, type AsyncAutocompleteClassNames, type AsyncAutocompleteInputProps, type AsyncAutocompleteOption, type AsyncAutocompleteOptionState, type AsyncAutocompleteProps, AutoResizeTextarea, Avatar, AvatarFallback, AvatarImage, Badge, BadgeActionable, type BadgeActionableProps, BadgeInformative, BadgeInformativeGroup, BadgeInformativeItem, type BadgeInformativeProps, BadgeNumber, type BadgeNumberProps, Body, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type DateFormat, DateInput, type DateInputProps, DateRangeInput, type DateRangeInputProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisplayHeading, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, DropdownSelect, DropdownSelectContent, type DropdownSelectContentProps, DropdownSelectLabel, type DropdownSelectLabelProps, DropdownSelectOption, type DropdownSelectOptionProps, type DropdownSelectProps, DropdownSelectTrigger, type DropdownSelectTriggerProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HeadingL, HeadingLMedium, HeadingM, HeadingMMedium, HeadingS, HeadingSMedium, HeadingXL, HeadingXLMedium, HeadingXS, HeadingXSMedium, HeadingXXS, HeadingXXSMedium, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MultiSelectFreeText, type MultiSelectFreeTextOption, type MultiSelectFreeTextProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, OptionCard, type OptionCardProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, ProgressBar, type ProgressBarProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, RichTooltipContent, type RichTooltipContentProps, type RichTooltipVariant, ScrollArea, ScrollBar, SearchInput, type SearchInputProps, type SearchSuggestion, SearchableSelect, SearchableSelectContent, SearchableSelectEmpty, SearchableSelectGroup, SearchableSelectItem, type SearchableSelectOption, type SearchableSelectProps, SearchableSelectTrigger, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, SmartDialog, SmartDialogClose, SmartDialogContent, SmartDialogDescription, SmartDialogFooter, SmartDialogHeader, SmartDialogTitle, SmartDialogTrigger, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, type TimeFormat, TimeInput, type TimeInputProps, type TimeValue, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, alertBannerVariants, badgeActionableVariants, badgeInformativeVariants, badgeNumberVariants, badgeVariants, bodyTextVariants, buttonVariants, cn, displayTextVariants, inputVariants, labelTextVariants, navigationMenuTriggerStyle, optionCardVariants, progressBarVariants, tabsTriggerVariants, toggleVariants, useFormField, useIsMobile, useSidebar };
|
|
1228
|
+
export { Accordion, AccordionContent, AccordionItem, type AccordionItemProps, type AccordionProps, AccordionTrigger, type AccordionTriggerProps, Alert, AlertBanner, type AlertBannerProps, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, AsyncAutocomplete, type AsyncAutocompleteClassNames, type AsyncAutocompleteInputProps, type AsyncAutocompleteOption, type AsyncAutocompleteOptionState, type AsyncAutocompleteProps, AutoResizeTextarea, Avatar, AvatarFallback, AvatarImage, Badge, BadgeActionable, type BadgeActionableProps, BadgeInformative, BadgeInformativeGroup, BadgeInformativeItem, type BadgeInformativeProps, BadgeNumber, type BadgeNumberProps, Body, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type DateFormat, DateInput, type DateInputProps, DateRangeInput, type DateRangeInputProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DisplayHeading, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, DropdownSelect, DropdownSelectContent, type DropdownSelectContentProps, DropdownSelectLabel, type DropdownSelectLabelProps, DropdownSelectOption, type DropdownSelectOptionProps, type DropdownSelectProps, DropdownSelectTrigger, type DropdownSelectTriggerProps, FaqAccordion, type FaqAccordionProps, type FaqItem, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, HeadingL, HeadingLMedium, HeadingM, HeadingMMedium, HeadingS, HeadingSMedium, HeadingXL, HeadingXLMedium, HeadingXS, HeadingXSMedium, HeadingXXS, HeadingXXSMedium, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, MultiSelectFreeText, type MultiSelectFreeTextOption, type MultiSelectFreeTextProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, OptionCard, type OptionCardProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, ProgressBar, type ProgressBarProps, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, RichTooltipContent, type RichTooltipContentProps, type RichTooltipVariant, ScrollArea, ScrollBar, SearchInput, type SearchInputProps, type SearchSuggestion, SearchableSelect, SearchableSelectContent, SearchableSelectEmpty, SearchableSelectGroup, SearchableSelectItem, type SearchableSelectOption, type SearchableSelectProps, SearchableSelectTrigger, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, SmartDialog, SmartDialogClose, SmartDialogContent, SmartDialogDescription, SmartDialogFooter, SmartDialogHeader, SmartDialogTitle, SmartDialogTrigger, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TabsTriggerProps, Textarea, type TextareaProps, ThemeProvider, ThemeToggle, type TimeFormat, TimeInput, type TimeInputProps, type TimeValue, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, type TooltipContentProps, TooltipProvider, TooltipTrigger, alertBannerVariants, badgeActionableVariants, badgeInformativeVariants, badgeNumberVariants, badgeVariants, bodyTextVariants, buttonVariants, cn, displayTextVariants, inputVariants, labelTextVariants, navigationMenuTriggerStyle, optionCardVariants, progressBarVariants, tabsTriggerVariants, toggleVariants, useFormField, useIsMobile, useSidebar };
|