@lessly/ui 4.2.0 → 5.0.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/dist/{chunk-OMJRQ4JY.js → chunk-OTYVKDP2.js} +4 -3
- package/dist/index.d.ts +79 -6
- package/dist/index.js +318 -187
- package/dist/router.js +1 -1
- package/dist/styles-federated.css +13 -5
- package/dist/styles.css +14 -42
- package/package.json +1 -1
|
@@ -81,8 +81,9 @@ var buttonVariants = cva(
|
|
|
81
81
|
* of framed ✕ buttons would shout. */
|
|
82
82
|
"destructive-ghost": "text-text-tertiary focus-visible:ring-border-focus hover:bg-bg-danger-subtle hover:text-text-danger",
|
|
83
83
|
/** @deprecated A resting red fill. It belongs on a confirm inside a window that has already
|
|
84
|
-
* stated the stakes, and
|
|
85
|
-
* `StepUpChallenge destructive` one. Use `destructive` for any
|
|
84
|
+
* stated the stakes, and nowhere else; `ConfirmDialog`'s confirm and a
|
|
85
|
+
* `StepUpChallenge destructive` one are where the kit draws it. Use `destructive` for any
|
|
86
|
+
* trigger that sits on a page. */
|
|
86
87
|
"destructive-solid": "bg-bg-danger text-text-on-danger focus-visible:ring-border-focus hover:bg-bg-danger-a90",
|
|
87
88
|
outline: "border border-border-default bg-transparent text-text-primary focus-visible:ring-border-focus hover:bg-bg-secondary",
|
|
88
89
|
secondary: "border border-border-default bg-bg-secondary text-text-primary focus-visible:ring-border-focus hover:bg-bg-secondary-a80",
|
|
@@ -232,7 +233,7 @@ var TooltipContent = React2.forwardRef(({ className, sideOffset = 4, dir, ...pro
|
|
|
232
233
|
dir: dir ?? directionOf(trigger),
|
|
233
234
|
sideOffset,
|
|
234
235
|
className: cn(
|
|
235
|
-
"z-50 max-w-[min(var(--layout-80),var(--radix-popper-available-width))] overflow-hidden break-words rounded-md border border-border-subtle bg-bg-
|
|
236
|
+
"z-50 max-w-[min(var(--layout-80),var(--radix-popper-available-width))] overflow-hidden break-words rounded-md border border-border-subtle bg-bg-overlay px-3 py-1.5 text-xs text-text-primary shadow-md data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2",
|
|
236
237
|
className
|
|
237
238
|
),
|
|
238
239
|
...props
|
package/dist/index.d.ts
CHANGED
|
@@ -993,7 +993,12 @@ interface CommandDialogProps extends DialogProps {
|
|
|
993
993
|
* empty line and key hints; supply `children` instead and it draws whatever you put in it.
|
|
994
994
|
*/
|
|
995
995
|
groups?: CommandDialogGroup[];
|
|
996
|
-
/**
|
|
996
|
+
/**
|
|
997
|
+
* The palette's accessible name, on both paths: cmdk computes the field's name from the root, so
|
|
998
|
+
* this is written there whatever the dialog draws inside it. Alongside `groups` it is also the
|
|
999
|
+
* placeholder of the input the dialog draws, because what a field says is what it is called;
|
|
1000
|
+
* alongside `children` it names whatever field you put in.
|
|
1001
|
+
*/
|
|
997
1002
|
placeholder?: string;
|
|
998
1003
|
/** What the list says when nothing matches. Read only alongside `groups`. */
|
|
999
1004
|
empty?: React$1.ReactNode;
|
|
@@ -1481,8 +1486,31 @@ interface ConfirmDialogProps {
|
|
|
1481
1486
|
title: React$1.ReactNode;
|
|
1482
1487
|
description?: React$1.ReactNode;
|
|
1483
1488
|
confirmLabel?: string;
|
|
1489
|
+
/**
|
|
1490
|
+
* The word on the press that steps forward to a `stepUp` challenge, where the word on the press
|
|
1491
|
+
* that acts would be wrong there: `Continue`, then `Regenerate codes`. Defaults to `confirmLabel`,
|
|
1492
|
+
* so a caller that names one word writes it in both places as it always did.
|
|
1493
|
+
*
|
|
1494
|
+
* Read only where a panel is held before the challenge — a `confirmPhrase` or `confirmFirst`.
|
|
1495
|
+
* With a `stepUp` and neither, the challenge is the whole window, no press steps forward, and
|
|
1496
|
+
* this is ignored.
|
|
1497
|
+
*/
|
|
1498
|
+
continueLabel?: string;
|
|
1484
1499
|
cancelLabel?: string;
|
|
1500
|
+
/**
|
|
1501
|
+
* The act this dialog performs takes something away. The resting red goes on the one press that
|
|
1502
|
+
* performs it (Guidelines/Destructive actions) — the challenge's confirm where a `stepUp` follows,
|
|
1503
|
+
* the footer's where nothing does. A press that only steps forward never wears it.
|
|
1504
|
+
*/
|
|
1485
1505
|
destructive?: boolean;
|
|
1506
|
+
/**
|
|
1507
|
+
* Hold a panel before the challenge with nothing to type on it, for a consequence the person has
|
|
1508
|
+
* to accept before being asked who they are. Without it a `stepUp` and no `confirmPhrase` makes
|
|
1509
|
+
* the challenge the whole window, and a warning has nowhere to go but the challenge's own words.
|
|
1510
|
+
*
|
|
1511
|
+
* There is no challenge to hold a panel before without a `stepUp`, so on its own it does nothing.
|
|
1512
|
+
*/
|
|
1513
|
+
confirmFirst?: boolean;
|
|
1486
1514
|
/**
|
|
1487
1515
|
* The words the user has to type before the confirm will fire — a product's name, `DELETE`. For an
|
|
1488
1516
|
* action whose cost is that it cannot be taken back by the person taking it.
|
|
@@ -1503,7 +1531,7 @@ interface ConfirmDialogProps {
|
|
|
1503
1531
|
*/
|
|
1504
1532
|
onError?: (error: unknown) => string;
|
|
1505
1533
|
}
|
|
1506
|
-
declare function ConfirmDialog({ open, onOpenChange, trigger, title, description, confirmLabel, cancelLabel, destructive, confirmPhrase, stepUp, onConfirm, onError, }: ConfirmDialogProps): React$1.JSX.Element;
|
|
1534
|
+
declare function ConfirmDialog({ open, onOpenChange, trigger, title, description, confirmLabel, continueLabel, cancelLabel, destructive, confirmFirst, confirmPhrase, stepUp, onConfirm, onError, }: ConfirmDialogProps): React$1.JSX.Element;
|
|
1507
1535
|
|
|
1508
1536
|
interface UserMenuUser {
|
|
1509
1537
|
name: string;
|
|
@@ -3375,6 +3403,7 @@ interface NotificationCenterProps {
|
|
|
3375
3403
|
}
|
|
3376
3404
|
declare const NotificationCenter: React$1.ForwardRefExoticComponent<NotificationCenterProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3377
3405
|
|
|
3406
|
+
type Density = 'compact' | 'comfortable';
|
|
3378
3407
|
interface NotificationRowProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
3379
3408
|
item: NotificationItem;
|
|
3380
3409
|
onItemClick?(item: NotificationItem): void;
|
|
@@ -3387,9 +3416,21 @@ interface NotificationRowProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
|
3387
3416
|
/** Override the default relative-age label. */
|
|
3388
3417
|
formatAge?(createdAt: Date): string;
|
|
3389
3418
|
/**
|
|
3390
|
-
*
|
|
3391
|
-
*
|
|
3392
|
-
*
|
|
3419
|
+
* How roomy the row is drawn. Default `compact`, which is the row the bell's panel
|
|
3420
|
+
* needs: a body clamped to two lines, small type on the deep link, and the receipt
|
|
3421
|
+
* as a clause on the source eyebrow.
|
|
3422
|
+
*
|
|
3423
|
+
* `comfortable` is the drawing the Notification Center uses for its own rows, for a
|
|
3424
|
+
* row given the width of a page: `px-4 py-3`, the body a step up and unclamped, the
|
|
3425
|
+
* receipt on a line of its own under a check, and the whole bottom row a step up with
|
|
3426
|
+
* it, so the deep link and the one-time actions stay the same size as each other.
|
|
3427
|
+
* Nothing else moves, and neither density paints a severity badge.
|
|
3428
|
+
*/
|
|
3429
|
+
density?: Density;
|
|
3430
|
+
/**
|
|
3431
|
+
* The card rests on `bg-bg-overlay` behind a hairline. `bg-bg-overlay` is the one
|
|
3432
|
+
* fill above every ground in both themes, and the panel that holds the row is
|
|
3433
|
+
* already on it, so there the edge is the whole step — pass nothing anywhere.
|
|
3393
3434
|
*/
|
|
3394
3435
|
className?: string;
|
|
3395
3436
|
}
|
|
@@ -3475,6 +3516,38 @@ interface NotificationToasterProps {
|
|
|
3475
3516
|
}
|
|
3476
3517
|
declare const NotificationToaster: React$1.ForwardRefExoticComponent<NotificationToasterProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3477
3518
|
|
|
3519
|
+
/**
|
|
3520
|
+
* The window an account is opened in: a full-viewport glow ground with a single centered card
|
|
3521
|
+
* holding everything — logo, header copy and the screen's form — so a beta gate, a sign-up, an
|
|
3522
|
+
* organization and a first product all read as one screen a person is moving through rather than
|
|
3523
|
+
* four products. The only thing outside the card is the theme toggle, parked top-right.
|
|
3524
|
+
*
|
|
3525
|
+
* It is the frame `OrganizationOnboardingForm` was drawn inside. The ground and the card's edge
|
|
3526
|
+
* read `--auth-*` variables that ship in the stylesheet but are not exported as names, so a
|
|
3527
|
+
* consumer who adopted the form alone had to rebuild this window out of constants they could not
|
|
3528
|
+
* import.
|
|
3529
|
+
*
|
|
3530
|
+
* Unlike a sign-in gate the card carries no signature line unless a `footer` is passed.
|
|
3531
|
+
*/
|
|
3532
|
+
interface OnboardingScreenShellProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title'> {
|
|
3533
|
+
/** Brand mark above the headline. Consumers pass their own wordmark. */
|
|
3534
|
+
logo?: React$1.ReactNode;
|
|
3535
|
+
/** Rendered in the top-right corner. Defaults to the kit's own `ThemeToggle`, so a screen
|
|
3536
|
+
* gets the control without wiring; pass your own node to replace it, or `null` to drop
|
|
3537
|
+
* it. */
|
|
3538
|
+
themeToggle?: React$1.ReactNode;
|
|
3539
|
+
/** `null` renders no `h1` at all — for a screen whose body carries its own headings. */
|
|
3540
|
+
title: React$1.ReactNode;
|
|
3541
|
+
description?: React$1.ReactNode;
|
|
3542
|
+
/** Muted footer signature. Absent by default — the onboarding window carries no
|
|
3543
|
+
* signature; pass a node to render one. */
|
|
3544
|
+
footer?: React$1.ReactNode;
|
|
3545
|
+
/** Card width. Org creation needs a wider card than product creation. */
|
|
3546
|
+
width?: 'md' | 'lg';
|
|
3547
|
+
children: React$1.ReactNode;
|
|
3548
|
+
}
|
|
3549
|
+
declare const OnboardingScreenShell: React$1.ForwardRefExoticComponent<OnboardingScreenShellProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3550
|
+
|
|
3478
3551
|
/**
|
|
3479
3552
|
* ISO 3166-1 alpha-2 countries, English names, sorted by name. Platform APIs that take a country
|
|
3480
3553
|
* on an organization validate it as an alpha-2 code and upper-case it, so this list is the
|
|
@@ -3824,4 +3897,4 @@ interface RatingScaleProps extends Omit<React$1.ComponentPropsWithoutRef<typeof
|
|
|
3824
3897
|
}
|
|
3825
3898
|
declare const RatingScale: React$1.ForwardRefExoticComponent<RatingScaleProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
3826
3899
|
|
|
3827
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AddPicker, type AddPickerItem, type AddPickerProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, AttachmentChip, type AttachmentChipProps, type AttachmentState, 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, type CommandDialogGroup, type CommandDialogItem, type CommandDialogProps, 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, 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, NavRow, type NavRowMark, 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 OrgProductSwitcherProduct, type OrgProductSwitcherProps, type OrganizationOnboardingDefaults, OrganizationOnboardingForm, type OrganizationOnboardingFormProps, type OrganizationOnboardingPayload, PageColumn, type PageColumnProps, PageHeader, type PageHeaderProps, type PageHeaderSize, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationNext, PaginationPrevious, PersonAvatar, type PersonAvatarProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type ProductStatus, Progress, QuickSearchRow, type QuickSearchRowProps, RadioGroup, RadioGroupItem, RailToggle, type RailToggleProps, RatingScale, type RatingScaleProps, type RatingScaleSize, 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, SidebarDrawer, SidebarProductHeader, type SidebarProductHeaderProps, Skeleton, Slider, StarRating, type StarRatingProps, type StarRatingSize, 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 UseFreshHighlightResult, type UseSidebarOptions, type UseSidebarResult, UserMenu, type UserMenuItem, type UserMenuProps, type UserMenuUser, WEIGHT_TONE, alertVariants, attachmentChipVariants, badgeVariants, buttonVariants, cn, formatRelativeAge, grantRemoveLabel, isKnownExtensionIcon, isNotificationSettled, navigationMenuTriggerStyle, productStatusBadge, railToggleLabel, severityBadgeVariant, severityLabels, statusDotVariants, toggleVariants, useCarousel, useFormField, useFreshHighlight, useIsMobile, useSidebar, useSidebarDismiss, useTheme };
|
|
3900
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AddPicker, type AddPickerItem, type AddPickerProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AspectRatio, AttachmentChip, type AttachmentChipProps, type AttachmentState, 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, type CommandDialogGroup, type CommandDialogItem, type CommandDialogProps, 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, 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, NavRow, type NavRowMark, 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, OnboardingScreenShell, type OnboardingScreenShellProps, OptionCard, type OptionCardProps, OrgProductSwitcher, type OrgProductSwitcherAction, type OrgProductSwitcherItem, type OrgProductSwitcherProduct, type OrgProductSwitcherProps, type OrganizationOnboardingDefaults, OrganizationOnboardingForm, type OrganizationOnboardingFormProps, type OrganizationOnboardingPayload, PageColumn, type PageColumnProps, PageHeader, type PageHeaderProps, type PageHeaderSize, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationNext, PaginationPrevious, PersonAvatar, type PersonAvatarProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, type ProductStatus, Progress, QuickSearchRow, type QuickSearchRowProps, RadioGroup, RadioGroupItem, RailToggle, type RailToggleProps, RatingScale, type RatingScaleProps, type RatingScaleSize, 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, SidebarDrawer, SidebarProductHeader, type SidebarProductHeaderProps, Skeleton, Slider, StarRating, type StarRatingProps, type StarRatingSize, 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 UseFreshHighlightResult, type UseSidebarOptions, type UseSidebarResult, UserMenu, type UserMenuItem, type UserMenuProps, type UserMenuUser, WEIGHT_TONE, alertVariants, attachmentChipVariants, badgeVariants, buttonVariants, cn, formatRelativeAge, grantRemoveLabel, isKnownExtensionIcon, isNotificationSettled, navigationMenuTriggerStyle, productStatusBadge, railToggleLabel, severityBadgeVariant, severityLabels, statusDotVariants, toggleVariants, useCarousel, useFormField, useFreshHighlight, useIsMobile, useSidebar, useSidebarDismiss, useTheme };
|