@lessly/ui 1.2.0 → 1.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +40 -3
- package/dist/index.d.ts +57 -1
- package/dist/index.js +405 -380
- package/dist/styles.css +6 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,9 +42,46 @@ import { Button, useTheme } from '@lessly/ui';
|
|
|
42
42
|
import '@lessly/ui/styles.css';
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
45
|
+
Tailwind is what turns the kit's class names into CSS. The package ships **no
|
|
46
|
+
compiled utility CSS** — every consumer runs its own Tailwind over the token
|
|
47
|
+
preset (`tailwindcss >= 3.4`, an optional peer dependency, required only if you
|
|
48
|
+
consume the preset).
|
|
49
|
+
|
|
50
|
+
### Tailwind v4 (CSS-first)
|
|
51
|
+
|
|
52
|
+
Everything is declared in your CSS entry:
|
|
53
|
+
|
|
54
|
+
```css
|
|
55
|
+
@import 'tailwindcss';
|
|
56
|
+
/* The token preset. v4 has no `presets:` key of its own, so the preset is
|
|
57
|
+
loaded from a JS/TS config file — without this, `bg-bg-surface`,
|
|
58
|
+
`text-text-primary` and `gap-gutter` emit nothing at all. */
|
|
59
|
+
@config './tailwind.config.ts';
|
|
60
|
+
/* Token variables, `.light` overrides, fonts, base layer. */
|
|
61
|
+
@import '@lessly/ui/styles.css';
|
|
62
|
+
/* Scan the library. v4 does not scan `node_modules` on its own, and the kit's
|
|
63
|
+
components (Grid, Col, …) carry literal utilities (`md:col-span-5`,
|
|
64
|
+
`gap-gutter`) as strings inside `dist/index.js`. The glob matters: a bare
|
|
65
|
+
directory path is skipped, because Tailwind honours your `.gitignore` and
|
|
66
|
+
`node_modules/` is in it. */
|
|
67
|
+
@source './node_modules/@lessly/ui/dist/**/*.js';
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
with the config file next to it holding nothing but the preset:
|
|
71
|
+
|
|
72
|
+
```ts
|
|
73
|
+
import type { Config } from 'tailwindcss';
|
|
74
|
+
import { lesslyPreset } from '@lessly/ui/tailwind-preset';
|
|
75
|
+
export default { presets: [lesslyPreset] } satisfies Config;
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
Paths in `@source` and `@config` are relative to the CSS file. If your CSS entry
|
|
79
|
+
sits in `src/`, they read `'../tailwind.config.ts'` and
|
|
80
|
+
`'../node_modules/@lessly/ui/dist/**/*.js'`.
|
|
81
|
+
|
|
82
|
+
### Tailwind v3
|
|
83
|
+
|
|
84
|
+
The preset and the library scan both go in the JS config:
|
|
48
85
|
|
|
49
86
|
```ts
|
|
50
87
|
import { lesslyPreset } from '@lessly/ui/tailwind-preset';
|
package/dist/index.d.ts
CHANGED
|
@@ -128,6 +128,11 @@ interface CardProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title'
|
|
|
128
128
|
* action no bar is drawn at all, so a list starts at the top of the card.
|
|
129
129
|
*/
|
|
130
130
|
title?: React$1.ReactNode;
|
|
131
|
+
/**
|
|
132
|
+
* The native HTML tooltip on the card's box, shown by the browser on hover. `title` is the
|
|
133
|
+
* visible heading here, so this is the only way to set the attribute.
|
|
134
|
+
*/
|
|
135
|
+
tooltip?: string;
|
|
131
136
|
action?: React$1.ReactNode;
|
|
132
137
|
/**
|
|
133
138
|
* `list` clips to the card's radius and hairlines between children.
|
|
@@ -2596,6 +2601,57 @@ declare function AppShell({ sidebar, topBar, children, className }: AppShellProp
|
|
|
2596
2601
|
/** Alias of AppShell — reads better in app router files. */
|
|
2597
2602
|
declare const AuthenticatedLayout: typeof AppShell;
|
|
2598
2603
|
|
|
2604
|
+
interface TopBarProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2605
|
+
/** The leading content — the page's trail. */
|
|
2606
|
+
left?: React$1.ReactNode;
|
|
2607
|
+
/** What rests at the right edge. `TopBarUtilities` is what normally goes here. */
|
|
2608
|
+
right?: React$1.ReactNode;
|
|
2609
|
+
}
|
|
2610
|
+
/**
|
|
2611
|
+
* The band across the top of a page: what you are looking at on the left, the utilities on the right.
|
|
2612
|
+
* Goes in `AppShell`'s `topBar` slot.
|
|
2613
|
+
*
|
|
2614
|
+
* It writes no horizontal inset, because `AppShell` spells that once for this row and for `main`
|
|
2615
|
+
* together — so the trail starts on the content's left edge because the shell puts them both there,
|
|
2616
|
+
* not because two files agreed on the same number. It draws no bottom border either: the band already
|
|
2617
|
+
* aligns with the sidebar header, and the rail's divider is the line for both.
|
|
2618
|
+
*
|
|
2619
|
+
* `w-full` is load-bearing. The row carries no `justify-end`, so this node has to fill the slot for
|
|
2620
|
+
* the right group's `ml-auto` to reach the edge.
|
|
2621
|
+
*
|
|
2622
|
+
* The right group spaces its children, so a `right` holding more than one thing — a bell beside a
|
|
2623
|
+
* user menu — does not have to spell that itself. `TopBarUtilities` arrives as one child and brings
|
|
2624
|
+
* its own tighter spacing between marks, so the two never fight.
|
|
2625
|
+
*/
|
|
2626
|
+
declare const TopBar: React$1.ForwardRefExoticComponent<TopBarProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2627
|
+
|
|
2628
|
+
/** One utility mark. `name` is both the tooltip and the accessible name, so the two cannot drift. */
|
|
2629
|
+
interface TopBarUtility {
|
|
2630
|
+
/** What the control is called. Rendered as its tooltip and set as its accessible name. */
|
|
2631
|
+
name: string;
|
|
2632
|
+
/** The glyph. The row sizes it; pass the bare icon element. */
|
|
2633
|
+
icon: React$1.ReactNode;
|
|
2634
|
+
onClick?: () => void;
|
|
2635
|
+
}
|
|
2636
|
+
interface TopBarUtilitiesProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
2637
|
+
items: TopBarUtility[];
|
|
2638
|
+
}
|
|
2639
|
+
/**
|
|
2640
|
+
* The utility marks resting at the top bar's right edge — docs, MCP, feedback, notifications.
|
|
2641
|
+
*
|
|
2642
|
+
* The row is one set of marks, and that is the whole component: same form, same weight, name carried
|
|
2643
|
+
* by the tooltip. A visible label on one of them makes it read as a button standing among glyphs, and
|
|
2644
|
+
* a frame on one makes it read as a different kind of control — so the row spells neither, and a call
|
|
2645
|
+
* site cannot ask for them. Which marks a product picks, and in what order, is the `items` array; how
|
|
2646
|
+
* they rest is not negotiable, which is why this is a component and not four `Button`s in a `div`.
|
|
2647
|
+
*
|
|
2648
|
+
* Every mark is a button. A mark that navigates has no arm here yet — `Button`'s icon-only form takes
|
|
2649
|
+
* no `asChild`, so an anchor cannot wear it — and until it does, a destination is an `onClick`.
|
|
2650
|
+
*
|
|
2651
|
+
* Needs a `TooltipProvider` above it. `AppShell` mounts one, so a top bar inside the shell has it.
|
|
2652
|
+
*/
|
|
2653
|
+
declare const TopBarUtilities: React$1.ForwardRefExoticComponent<TopBarUtilitiesProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2654
|
+
|
|
2599
2655
|
/**
|
|
2600
2656
|
* Grid — the adaptive 4 / 8 / 12 column container. Column count switches at the
|
|
2601
2657
|
* token breakpoints (4 below md, 8 at md/768, 12 at xl/1280). Gutter, side
|
|
@@ -3384,4 +3440,4 @@ interface SecretRevealProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>,
|
|
|
3384
3440
|
}
|
|
3385
3441
|
declare const SecretReveal: React$1.ForwardRefExoticComponent<SecretRevealProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3386
3442
|
|
|
3387
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AddPicker, type AddPickerItem, type AddPickerProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppShell, type AppShellProps, AppSidebar, type AppSidebarProps, AspectRatio, AttachmentChip, type AttachmentChipProps, type AttachmentState, AuthenticatedLayout, AutoHeight, type AutoHeightProps, Avatar, AvatarFallback, AvatarImage, BackLink, type BackLinkProps, Badge, type BadgeProps, type BeneficialOwnerPayload, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, COUNTRY_OPTIONS, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardNote, type CardNoteProps, type CardProps, CardTitle, type CardTitleProps, Carousel, type CarouselApi, CarouselContent, type CarouselContextProps, CarouselItem, CarouselNext, type CarouselOptions, type CarouselPlugin, CarouselPrevious, type CarouselProps, Checkbox, Code, CodeBlock, type CodeBlockProps, type CodeLang, type CodeProps, type CodeVariant, Col, type ColProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, type CommandItemProps, CommandList, CommandSeparator, CommandShortcut, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogStepUp, ConnectorCard, type ConnectorCardProps, type ConnectorOrigin, type ConnectorStatus, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CopyButtonProps, DatePicker, type DatePickerProps, DecorativeIcon, type DecorativeIconProps, type DeltaDirection, type DeltaTone, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DocsLink, type DocsLinkProps, 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, EmptyState, type EmptyStateProps, EntityRow, type EntityRowOpens, type EntityRowOpensProps, type EntityRowProps, EntityTile, type EntityTileProps, ExtensionIcon, type ExtensionIconProps, ExtensionLink, type ExtensionLinkProps, type ExtensionLinkUiMode, FeedbackButton, type FeedbackButtonLabels, type FeedbackButtonProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GlyphAvatar, type GlyphAvatarProps, type GrantRole, type GrantRoleNotes, GrantRolePicker, type GrantRolePickerProps, GrantRow, type GrantRowProps, Grid, GridOverlay, type GridOverlayProps, type GridProps, HoverCard, HoverCardContent, HoverCardTrigger, IconHint, type IconHintProps, ImageCropDialog, type ImageCropDialogProps, type ImageCropShape, type ImageCropType, ImageCropper, type ImageCropperProps, ImageUpload, type ImageUploadProps, type ImageUploadSize, InlineError, type InlineErrorProps, Input, InputAddon, type InputAddonProps, InputGroup, InputGroupInput, type InputGroupInputProps, type InputGroupProps, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, ListCells, type ListCellsProps, type ListColumn, type ListColumnWidth, ListHeader, type ListHeaderProps, MISSING_TONE, Medallion, type MedallionProps, MenuDivider, MenuPopup, type MenuPopupProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, type NavItem, type NavLinkComponent, NavRow, type NavRowProps, type NavRowVariant, NavSectionLabel, type NavSectionLabelProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type NotifClass, type NotificationAction, NotificationBell, type NotificationBellProps, NotificationCenter, type NotificationCenterProps, type NotificationClass, type NotificationDeepLink, type NotificationItem, type NotificationMute, type NotificationPreferences, type NotificationProduct, NotificationRow, type NotificationRowProps, NotificationSettings, type NotificationSettingsProps, type NotificationSeverity, type NotificationSubscription, type NotificationThreshold, NotificationToast, type NotificationToastDwell, type NotificationToastProps, NotificationToaster, type NotificationToasterPosition, type NotificationToasterProps, OptionCard, type OptionCardProps, OrgProductSwitcher, type OrgProductSwitcherAction, type OrgProductSwitcherItem, type OrgProductSwitcherProps, type OrganizationOnboardingDefaults, OrganizationOnboardingForm, type OrganizationOnboardingFormProps, type OrganizationOnboardingPayload, PageHeader, type PageHeaderProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationNext, PaginationPrevious, PersonAvatar, type PersonAvatarProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, RemovableChip, type RemovableChipProps, RemoveButton, type RemoveButtonProps, RequestRow, type RequestRowProps, type RequestState, type RequestSurface, type ResolvedTheme, type Responsive, ScrollArea, ScrollBar, SecretReveal, type SecretRevealProps, SectionIntro, type SectionIntroProps, Select, type SelectOption, type SelectProps, Separator, SettingRow, type SettingRowProps, type Severity, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarBackHeader, type SidebarBackHeaderProps, SidebarNav, SidebarNavLink, type SidebarNavLinkProps, type SidebarNavProps, SidebarProductHeader, type SidebarProductHeaderProps, Skeleton, Slider, StatCard, type StatCardProps, StatusDot, type StatusDotProps, StepUpChallenge, type StepUpChallengeProps, type StepUpMethod, type StepUpProof, Switch, type SwitchProps, TOAST_DWELL, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, type Theme, ThemePicker, type ThemePickerProps, ThemeToggle, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UseSidebarOptions, type UseSidebarResult, UserMenu, type UserMenuItem, type UserMenuProps, type UserMenuUser, WEIGHT_TONE, alertVariants, attachmentChipVariants, badgeVariants, buttonVariants, cn, formatRelativeAge, grantRemoveLabel, isKnownExtensionIcon, isNotificationSettled, navigationMenuTriggerStyle, severityBadgeVariant, severityLabels, statusDotVariants, toggleVariants, useCarousel, useFormField, useIsMobile, useSidebar, useTheme };
|
|
3443
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AddPicker, type AddPickerItem, type AddPickerProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppShell, type AppShellProps, AppSidebar, type AppSidebarProps, AspectRatio, AttachmentChip, type AttachmentChipProps, type AttachmentState, AuthenticatedLayout, AutoHeight, type AutoHeightProps, Avatar, AvatarFallback, AvatarImage, BackLink, type BackLinkProps, Badge, type BadgeProps, type BeneficialOwnerPayload, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, COUNTRY_OPTIONS, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardNote, type CardNoteProps, type CardProps, CardTitle, type CardTitleProps, Carousel, type CarouselApi, CarouselContent, type CarouselContextProps, CarouselItem, CarouselNext, type CarouselOptions, type CarouselPlugin, CarouselPrevious, type CarouselProps, Checkbox, Code, CodeBlock, type CodeBlockProps, type CodeLang, type CodeProps, type CodeVariant, Col, type ColProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, type CommandItemProps, CommandList, CommandSeparator, CommandShortcut, ConfirmDialog, type ConfirmDialogProps, type ConfirmDialogStepUp, ConnectorCard, type ConnectorCardProps, type ConnectorOrigin, type ConnectorStatus, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CopyButtonProps, DatePicker, type DatePickerProps, DecorativeIcon, type DecorativeIconProps, type DeltaDirection, type DeltaTone, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DocsLink, type DocsLinkProps, 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, EmptyState, type EmptyStateProps, EntityRow, type EntityRowOpens, type EntityRowOpensProps, type EntityRowProps, EntityTile, type EntityTileProps, ExtensionIcon, type ExtensionIconProps, ExtensionLink, type ExtensionLinkProps, type ExtensionLinkUiMode, FeedbackButton, type FeedbackButtonLabels, type FeedbackButtonProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GlyphAvatar, type GlyphAvatarProps, type GrantRole, type GrantRoleNotes, GrantRolePicker, type GrantRolePickerProps, GrantRow, type GrantRowProps, Grid, GridOverlay, type GridOverlayProps, type GridProps, HoverCard, HoverCardContent, HoverCardTrigger, IconHint, type IconHintProps, ImageCropDialog, type ImageCropDialogProps, type ImageCropShape, type ImageCropType, ImageCropper, type ImageCropperProps, ImageUpload, type ImageUploadProps, type ImageUploadSize, InlineError, type InlineErrorProps, Input, InputAddon, type InputAddonProps, InputGroup, InputGroupInput, type InputGroupInputProps, type InputGroupProps, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, ListCells, type ListCellsProps, type ListColumn, type ListColumnWidth, ListHeader, type ListHeaderProps, MISSING_TONE, Medallion, type MedallionProps, MenuDivider, MenuPopup, type MenuPopupProps, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, type NavItem, type NavLinkComponent, NavRow, type NavRowProps, type NavRowVariant, NavSectionLabel, type NavSectionLabelProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type NotifClass, type NotificationAction, NotificationBell, type NotificationBellProps, NotificationCenter, type NotificationCenterProps, type NotificationClass, type NotificationDeepLink, type NotificationItem, type NotificationMute, type NotificationPreferences, type NotificationProduct, NotificationRow, type NotificationRowProps, NotificationSettings, type NotificationSettingsProps, type NotificationSeverity, type NotificationSubscription, type NotificationThreshold, NotificationToast, type NotificationToastDwell, type NotificationToastProps, NotificationToaster, type NotificationToasterPosition, type NotificationToasterProps, OptionCard, type OptionCardProps, OrgProductSwitcher, type OrgProductSwitcherAction, type OrgProductSwitcherItem, type OrgProductSwitcherProps, type OrganizationOnboardingDefaults, OrganizationOnboardingForm, type OrganizationOnboardingFormProps, type OrganizationOnboardingPayload, PageHeader, type PageHeaderProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationNext, PaginationPrevious, PersonAvatar, type PersonAvatarProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, Progress, RadioGroup, RadioGroupItem, RemovableChip, type RemovableChipProps, RemoveButton, type RemoveButtonProps, RequestRow, type RequestRowProps, type RequestState, type RequestSurface, type ResolvedTheme, type Responsive, ScrollArea, ScrollBar, SecretReveal, type SecretRevealProps, SectionIntro, type SectionIntroProps, Select, type SelectOption, type SelectProps, Separator, SettingRow, type SettingRowProps, type Severity, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarBackHeader, type SidebarBackHeaderProps, SidebarNav, SidebarNavLink, type SidebarNavLinkProps, type SidebarNavProps, SidebarProductHeader, type SidebarProductHeaderProps, Skeleton, Slider, StatCard, type StatCardProps, StatusDot, type StatusDotProps, StepUpChallenge, type StepUpChallengeProps, type StepUpMethod, type StepUpProof, Switch, type SwitchProps, TOAST_DWELL, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableProps, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, type Theme, ThemePicker, type ThemePickerProps, ThemeToggle, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TopBar, type TopBarProps, TopBarUtilities, type TopBarUtilitiesProps, type TopBarUtility, type UseSidebarOptions, type UseSidebarResult, UserMenu, type UserMenuItem, type UserMenuProps, type UserMenuUser, WEIGHT_TONE, alertVariants, attachmentChipVariants, badgeVariants, buttonVariants, cn, formatRelativeAge, grantRemoveLabel, isKnownExtensionIcon, isNotificationSettled, navigationMenuTriggerStyle, severityBadgeVariant, severityLabels, statusDotVariants, toggleVariants, useCarousel, useFormField, useIsMobile, useSidebar, useTheme };
|