@lessly/ui 0.21.0 → 0.23.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/index.d.ts +111 -2
- package/dist/index.js +1085 -783
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import * as DialogPrimitive from '@radix-ui/react-dialog';
|
|
|
8
8
|
import { DialogProps } from '@radix-ui/react-dialog';
|
|
9
9
|
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
10
10
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
11
|
+
import { LucideIcon, LucideProps } from 'lucide-react';
|
|
11
12
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
12
13
|
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
|
|
13
14
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
@@ -37,7 +38,6 @@ import { DayPicker } from 'react-day-picker';
|
|
|
37
38
|
import useEmblaCarousel, { UseEmblaCarouselType } from 'embla-carousel-react';
|
|
38
39
|
import * as react_hook_form from 'react-hook-form';
|
|
39
40
|
import { FieldValues, FieldPath, ControllerProps } from 'react-hook-form';
|
|
40
|
-
import { LucideIcon, LucideProps } from 'lucide-react';
|
|
41
41
|
|
|
42
42
|
declare function cn(...inputs: ClassValue[]): string;
|
|
43
43
|
|
|
@@ -105,6 +105,31 @@ declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefA
|
|
|
105
105
|
|
|
106
106
|
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_types.ClassProp | undefined) => string> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
107
107
|
|
|
108
|
+
interface PageHeaderProps {
|
|
109
|
+
/** The page title. Rendered as an `<h2>`. */
|
|
110
|
+
title: React$1.ReactNode;
|
|
111
|
+
/** A subtitle. Earns the section medallion — a subtitle that states a mechanic, count, or
|
|
112
|
+
* constraint the title omits (see Guidelines/Page headers). Omit it and the medallion is dropped. */
|
|
113
|
+
subtitle?: React$1.ReactNode;
|
|
114
|
+
/** A category glyph for the section medallion. Only renders alongside a `subtitle`. */
|
|
115
|
+
icon?: LucideIcon;
|
|
116
|
+
/** An entity glyph (a product logo, a person's avatar) — identity, not decoration. Always
|
|
117
|
+
* renders, subtitle or not, in the medallion's place. Prefer this over `icon` for a named thing. */
|
|
118
|
+
media?: React$1.ReactNode;
|
|
119
|
+
/** A status element (e.g. a `Badge`) shown inline after the title. */
|
|
120
|
+
badge?: React$1.ReactNode;
|
|
121
|
+
/** A trailing slot (e.g. a `+ Add` button), right-aligned. */
|
|
122
|
+
actions?: React$1.ReactNode;
|
|
123
|
+
id?: string;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* The standard page header for Organization and Product screens. Encodes the medallion↔subtitle
|
|
127
|
+
* pair rule (Guidelines/Page headers): a decorative section medallion earns its place only beside a
|
|
128
|
+
* subtitle, so keep both or drop both — you cannot render a lone medallion. An entity glyph (`media`)
|
|
129
|
+
* is identity and always stays.
|
|
130
|
+
*/
|
|
131
|
+
declare function PageHeader({ title, subtitle, icon: Icon, media, badge, actions, id }: PageHeaderProps): React$1.JSX.Element;
|
|
132
|
+
|
|
108
133
|
interface SectionIntroProps {
|
|
109
134
|
what: React.ReactNode;
|
|
110
135
|
when: React.ReactNode;
|
|
@@ -1448,6 +1473,90 @@ declare const NotificationToaster: React$1.ForwardRefExoticComponent<Notificatio
|
|
|
1448
1473
|
*/
|
|
1449
1474
|
declare const COUNTRY_OPTIONS: SelectOption[];
|
|
1450
1475
|
|
|
1476
|
+
interface BetaGateScreenProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title' | 'onSubmit'> {
|
|
1477
|
+
/** Fires with the trimmed code. The screen never checks it — the caller does. */
|
|
1478
|
+
onSubmit: (code: string) => void;
|
|
1479
|
+
defaultCode?: string;
|
|
1480
|
+
/** Disables the submit button and swaps its label while the caller's check is in flight. */
|
|
1481
|
+
submitting?: boolean;
|
|
1482
|
+
/** Rendered as an alert above the field — typically a rejected code. */
|
|
1483
|
+
error?: string | null;
|
|
1484
|
+
/** Social sign-in buttons, rendered above an "or" divider. Without it there is no divider. */
|
|
1485
|
+
socialAuth?: React$1.ReactNode;
|
|
1486
|
+
/** Target of the waitlist link in the default description. */
|
|
1487
|
+
waitlistHref?: string;
|
|
1488
|
+
/** Renders "Already have an account? Sign in" as a link. */
|
|
1489
|
+
signInHref?: string;
|
|
1490
|
+
/** Renders the same affordance as a button. Ignored when `signInHref` is given. */
|
|
1491
|
+
onSignIn?: () => void;
|
|
1492
|
+
submitLabel?: React$1.ReactNode;
|
|
1493
|
+
/** Brand mark above the headline. */
|
|
1494
|
+
logo?: React$1.ReactNode;
|
|
1495
|
+
/** Rendered top-right. Defaults to the kit's own `ThemeToggle`; pass your own node to
|
|
1496
|
+
* replace it, or `null` to drop it. */
|
|
1497
|
+
themeToggle?: React$1.ReactNode;
|
|
1498
|
+
title?: React$1.ReactNode;
|
|
1499
|
+
description?: React$1.ReactNode;
|
|
1500
|
+
/** Muted footer signature. Absent by default; pass a node to render one. */
|
|
1501
|
+
footer?: React$1.ReactNode;
|
|
1502
|
+
}
|
|
1503
|
+
/**
|
|
1504
|
+
* The gate in front of registration while the product is in closed beta: a single access
|
|
1505
|
+
* code, optionally preceded by social sign-in. Presentational and self-contained — it never
|
|
1506
|
+
* validates the code, never calls an API and never navigates; the caller handles the
|
|
1507
|
+
* outcome of `onSubmit`.
|
|
1508
|
+
*/
|
|
1509
|
+
declare function BetaGateScreen({ onSubmit, defaultCode, submitting, error, socialAuth, waitlistHref, signInHref, onSignIn, submitLabel, logo, themeToggle, title, description, footer, ...props }: BetaGateScreenProps): React$1.JSX.Element;
|
|
1510
|
+
|
|
1511
|
+
/** The submit payload — what a registration endpoint takes, minus anything the caller owns
|
|
1512
|
+
* (the beta code, the invite, the return URL). */
|
|
1513
|
+
interface SignupScreenSubmit {
|
|
1514
|
+
name: string;
|
|
1515
|
+
email: string;
|
|
1516
|
+
password: string;
|
|
1517
|
+
}
|
|
1518
|
+
interface SignupScreenProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, 'title' | 'onSubmit'> {
|
|
1519
|
+
onSubmit: (payload: SignupScreenSubmit) => void;
|
|
1520
|
+
defaultValues?: Partial<SignupScreenSubmit>;
|
|
1521
|
+
/** Disables the submit button and swaps its label while the caller's request is in flight. */
|
|
1522
|
+
submitting?: boolean;
|
|
1523
|
+
serverError?: string | null;
|
|
1524
|
+
/** Field-level messages returned alongside a server error. */
|
|
1525
|
+
violations?: string[];
|
|
1526
|
+
/** Social sign-in buttons, rendered above an "or continue with email" divider. Not shown
|
|
1527
|
+
* when `children` take over the body. */
|
|
1528
|
+
socialAuth?: React$1.ReactNode;
|
|
1529
|
+
/** Renders "Use a different code" under the form — the way back to the beta gate. */
|
|
1530
|
+
onEditCode?: () => void;
|
|
1531
|
+
/** Renders "Already have an account? Sign in" as a link. */
|
|
1532
|
+
signInHref?: string;
|
|
1533
|
+
/** Renders the same affordance as a button. Ignored when `signInHref` is given. */
|
|
1534
|
+
onSignIn?: () => void;
|
|
1535
|
+
submitLabel?: React$1.ReactNode;
|
|
1536
|
+
/**
|
|
1537
|
+
* Replaces the whole body — social auth, divider, register form and all. This is the seam
|
|
1538
|
+
* the consumer uses to host steps the kit deliberately does not know about (MFA challenge,
|
|
1539
|
+
* TOTP enrolment) inside the same window.
|
|
1540
|
+
*/
|
|
1541
|
+
children?: React$1.ReactNode;
|
|
1542
|
+
/** Brand mark above the headline. */
|
|
1543
|
+
logo?: React$1.ReactNode;
|
|
1544
|
+
/** Rendered top-right. Defaults to the kit's own `ThemeToggle`; pass your own node to
|
|
1545
|
+
* replace it, or `null` to drop it. */
|
|
1546
|
+
themeToggle?: React$1.ReactNode;
|
|
1547
|
+
title?: React$1.ReactNode;
|
|
1548
|
+
description?: React$1.ReactNode;
|
|
1549
|
+
/** Muted footer signature. Absent by default; pass a node to render one. */
|
|
1550
|
+
footer?: React$1.ReactNode;
|
|
1551
|
+
}
|
|
1552
|
+
/**
|
|
1553
|
+
* The registration window: social sign-in, then name / email / password. Presentational and
|
|
1554
|
+
* self-contained — it never calls an API and never navigates; the caller handles the outcome
|
|
1555
|
+
* of `onSubmit`. Password rules are checked here because they are the same rules the
|
|
1556
|
+
* registration endpoint enforces, and failing them client-side saves a round trip.
|
|
1557
|
+
*/
|
|
1558
|
+
declare function SignupScreen({ onSubmit, defaultValues, submitting, serverError, violations, socialAuth, onEditCode, signInHref, onSignIn, submitLabel, children, logo, themeToggle, title, description, footer, ...props }: SignupScreenProps): React$1.JSX.Element;
|
|
1559
|
+
|
|
1451
1560
|
/** One beneficial owner, in the shape the organization API takes it. */
|
|
1452
1561
|
interface BeneficialOwnerPayload {
|
|
1453
1562
|
name: string;
|
|
@@ -1597,4 +1706,4 @@ interface ProductCreateScreenProps extends Omit<React$1.HTMLAttributes<HTMLDivEl
|
|
|
1597
1706
|
*/
|
|
1598
1707
|
declare function ProductCreateScreen({ organizationName: _organizationName, organizations, selectedOrganizationId, onOrganizationChange, productsLoading, onSubmit, defaultName, submitting, serverError, existingProducts, onOpenProduct, existingProductsLabel, submitLabel, onCancel, logo, themeToggle, title, description, footer, ...props }: ProductCreateScreenProps): React$1.JSX.Element;
|
|
1599
1708
|
|
|
1600
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppShell, type AppShellProps, AppSidebar, type AppSidebarProps, AspectRatio, AuthenticatedLayout, Avatar, AvatarFallback, AvatarImage, 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, CardTitle, Carousel, type CarouselApi, CarouselContent, type CarouselContextProps, CarouselItem, CarouselNext, type CarouselOptions, type CarouselPlugin, CarouselPrevious, type CarouselProps, Checkbox, Code, CodeBlock, type CodeBlockProps, type CodeLang, type CodeProps, Col, type ColProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfirmDialog, type ConfirmDialogProps, type ConnectionAuth, ConnectionCard, type ConnectionCardProps, type ConnectionScope, type ConnectionStatus, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CopyButtonProps, type CreateProductSubmit, CreateProductWindow, type CreateProductWindowOrganization, type CreateProductWindowProduct, type CreateProductWindowProps, DatePicker, type DatePickerProps, 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, ExtensionIcon, type ExtensionIconProps, ExtensionLink, type ExtensionLinkProps, type ExtensionLinkUiMode, FeedbackButton, type FeedbackButtonLabels, type FeedbackButtonProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Grid, GridOverlay, type GridOverlayProps, type GridProps, HoverCard, HoverCardContent, HoverCardTrigger, InlineError, type InlineErrorProps, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, 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, NotificationSettings, type NotificationSettingsProps, type NotificationSeverity, type NotificationSubscription, type NotificationThreshold, NotificationToast, type NotificationToastDwell, type NotificationToastProps, NotificationToaster, type NotificationToasterPosition, type NotificationToasterProps, OrgProductSwitcher, type OrgProductSwitcherAction, type OrgProductSwitcherItem, type OrgProductSwitcherProps, OrganizationCreateScreen, type OrganizationCreateScreenProps, type OrganizationOnboardingDefaults, OrganizationOnboardingForm, type OrganizationOnboardingFormProps, type OrganizationOnboardingPayload, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, ProductCreateScreen, type ProductCreateScreenOrganization, type ProductCreateScreenProduct, type ProductCreateScreenProps, type ProductCreateScreenSubmit, Progress, RadioGroup, RadioGroupItem, RequestRow, type RequestRowProps, type RequestState, type RequestSurface, type ResolvedTheme, type Responsive, ScrollArea, ScrollBar, SectionIntro, type SectionIntroProps, SegmentChip, type SegmentChipProps, Select, type SelectOption, type SelectProps, Separator, 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, Switch, type SwitchProps, TOAST_DWELL, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, type Theme, ThemeToggle, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UseSidebarOptions, type UseSidebarResult, UserMenu, type UserMenuItem, type UserMenuProps, type UserMenuUser, alertVariants, badgeVariants, buttonVariants, cn, formatRelativeAge, isKnownExtensionIcon, isNotificationSettled, navigationMenuTriggerStyle, segmentChipVariants, severityBadgeVariant, severityLabels, statusDotVariants, toggleVariants, useCarousel, useFormField, useIsMobile, useSidebar, useTheme };
|
|
1709
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AppShell, type AppShellProps, AppSidebar, type AppSidebarProps, AspectRatio, AuthenticatedLayout, Avatar, AvatarFallback, AvatarImage, Badge, type BadgeProps, type BeneficialOwnerPayload, BetaGateScreen, type BetaGateScreenProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, COUNTRY_OPTIONS, Calendar, type CalendarProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, type CarouselContextProps, CarouselItem, CarouselNext, type CarouselOptions, type CarouselPlugin, CarouselPrevious, type CarouselProps, Checkbox, Code, CodeBlock, type CodeBlockProps, type CodeLang, type CodeProps, Col, type ColProps, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ConfirmDialog, type ConfirmDialogProps, type ConnectionAuth, ConnectionCard, type ConnectionCardProps, type ConnectionScope, type ConnectionStatus, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, type CopyButtonProps, type CreateProductSubmit, CreateProductWindow, type CreateProductWindowOrganization, type CreateProductWindowProduct, type CreateProductWindowProps, DatePicker, type DatePickerProps, 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, ExtensionIcon, type ExtensionIconProps, ExtensionLink, type ExtensionLinkProps, type ExtensionLinkUiMode, FeedbackButton, type FeedbackButtonLabels, type FeedbackButtonProps, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, Grid, GridOverlay, type GridOverlayProps, type GridProps, HoverCard, HoverCardContent, HoverCardTrigger, InlineError, type InlineErrorProps, Input, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, type InputProps, Label, 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, NotificationSettings, type NotificationSettingsProps, type NotificationSeverity, type NotificationSubscription, type NotificationThreshold, NotificationToast, type NotificationToastDwell, type NotificationToastProps, NotificationToaster, type NotificationToasterPosition, type NotificationToasterProps, OrgProductSwitcher, type OrgProductSwitcherAction, type OrgProductSwitcherItem, type OrgProductSwitcherProps, OrganizationCreateScreen, type OrganizationCreateScreenProps, type OrganizationOnboardingDefaults, OrganizationOnboardingForm, type OrganizationOnboardingFormProps, type OrganizationOnboardingPayload, PageHeader, type PageHeaderProps, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, type PaginationLinkProps, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, ProductCreateScreen, type ProductCreateScreenOrganization, type ProductCreateScreenProduct, type ProductCreateScreenProps, type ProductCreateScreenSubmit, Progress, RadioGroup, RadioGroupItem, RequestRow, type RequestRowProps, type RequestState, type RequestSurface, type ResolvedTheme, type Responsive, ScrollArea, ScrollBar, SectionIntro, type SectionIntroProps, SegmentChip, type SegmentChipProps, Select, type SelectOption, type SelectProps, Separator, type Severity, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, SidebarBackHeader, type SidebarBackHeaderProps, SidebarNav, SidebarNavLink, type SidebarNavLinkProps, type SidebarNavProps, SidebarProductHeader, type SidebarProductHeaderProps, SignupScreen, type SignupScreenProps, type SignupScreenSubmit, Skeleton, Slider, StatCard, type StatCardProps, StatusDot, type StatusDotProps, Switch, type SwitchProps, TOAST_DWELL, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, type TextareaProps, type Theme, ThemeToggle, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UseSidebarOptions, type UseSidebarResult, UserMenu, type UserMenuItem, type UserMenuProps, type UserMenuUser, alertVariants, badgeVariants, buttonVariants, cn, formatRelativeAge, isKnownExtensionIcon, isNotificationSettled, navigationMenuTriggerStyle, segmentChipVariants, severityBadgeVariant, severityLabels, statusDotVariants, toggleVariants, useCarousel, useFormField, useIsMobile, useSidebar, useTheme };
|