@assure-one/design-system 0.3.0 → 0.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/dist/index.d.ts +121 -18
- package/dist/index.js +717 -190
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/dist/tokens/index.d.ts +1 -0
- package/dist/tokens/index.js +1 -0
- package/dist/tokens/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -386,6 +386,15 @@ declare const DialogFooter: {
|
|
|
386
386
|
declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
387
387
|
declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
388
388
|
|
|
389
|
+
declare const chipVariants: (props?: ({
|
|
390
|
+
variant?: "primary" | "neutral" | null | undefined;
|
|
391
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
392
|
+
interface DismissibleChipProps extends Omit<React$1.ButtonHTMLAttributes<HTMLButtonElement>, "onClick" | "children">, VariantProps<typeof chipVariants> {
|
|
393
|
+
label: React$1.ReactNode;
|
|
394
|
+
onDismiss: () => void;
|
|
395
|
+
}
|
|
396
|
+
declare const DismissibleChip: React$1.ForwardRefExoticComponent<DismissibleChipProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
397
|
+
|
|
389
398
|
declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
390
399
|
declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
391
400
|
declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -600,6 +609,13 @@ declare function GoogleBrandIcon({ size, ...props }: IconProps): react_jsx_runti
|
|
|
600
609
|
* with 2u gaps).
|
|
601
610
|
*/
|
|
602
611
|
declare function MicrosoftBrandIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
612
|
+
/**
|
|
613
|
+
* FilterIcon — funnel mark used for filter popover triggers across list
|
|
614
|
+
* pages (clients, workflow, billing, organizers…). Renders the same
|
|
615
|
+
* lucide-style polygon at any size; pair with a corner notification dot
|
|
616
|
+
* to surface active filter count.
|
|
617
|
+
*/
|
|
618
|
+
declare function FilterIcon({ size, ...props }: IconProps): react_jsx_runtime.JSX.Element;
|
|
603
619
|
|
|
604
620
|
/**
|
|
605
621
|
* Input variants. Mirrors the raw HTML `<input>` styled per Assure Pro tokens
|
|
@@ -1273,51 +1289,138 @@ interface ContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
1273
1289
|
}
|
|
1274
1290
|
declare const Content: React$1.ForwardRefExoticComponent<ContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1275
1291
|
|
|
1276
|
-
type
|
|
1292
|
+
type SidebarState = "expanded" | "rail";
|
|
1293
|
+
interface SidebarContextValue {
|
|
1294
|
+
state: SidebarState;
|
|
1295
|
+
setState: (next: SidebarState) => void;
|
|
1296
|
+
toggle: () => void;
|
|
1297
|
+
collapsible: boolean;
|
|
1298
|
+
}
|
|
1299
|
+
declare function useSidebarState(): SidebarContextValue;
|
|
1300
|
+
interface SidebarProviderProps {
|
|
1301
|
+
children?: React$1.ReactNode;
|
|
1302
|
+
state?: SidebarState;
|
|
1303
|
+
defaultState?: SidebarState;
|
|
1304
|
+
onStateChange?: (next: SidebarState) => void;
|
|
1305
|
+
/** Persist the user's intent across reloads under this localStorage key. */
|
|
1306
|
+
storageKey?: string;
|
|
1307
|
+
/** Global toggle shortcut. Pass `null` to disable. Defaults to `Mod+\`. */
|
|
1308
|
+
shortcut?: string | null;
|
|
1309
|
+
}
|
|
1310
|
+
declare function SidebarProvider({ children, state: controlled, defaultState, onStateChange, storageKey, shortcut, }: SidebarProviderProps): react_jsx_runtime.JSX.Element;
|
|
1311
|
+
declare namespace SidebarProvider {
|
|
1312
|
+
var displayName: string;
|
|
1313
|
+
}
|
|
1314
|
+
interface SidebarProps extends React$1.HTMLAttributes<HTMLElement> {
|
|
1315
|
+
/**
|
|
1316
|
+
* Opt into the rail / hover-peek behavior. When false (default), the
|
|
1317
|
+
* sidebar always renders expanded — the legacy behavior. When true,
|
|
1318
|
+
* the sidebar reads pinned state from <SidebarProvider>; if no
|
|
1319
|
+
* provider is mounted it still renders expanded, so dropping
|
|
1320
|
+
* `collapsible` alone is a no-op.
|
|
1321
|
+
*/
|
|
1322
|
+
collapsible?: boolean;
|
|
1323
|
+
}
|
|
1277
1324
|
declare const Sidebar: React$1.ForwardRefExoticComponent<SidebarProps & React$1.RefAttributes<HTMLElement>>;
|
|
1278
|
-
|
|
1325
|
+
interface SidebarTriggerProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
1326
|
+
expandLabel?: string;
|
|
1327
|
+
collapseLabel?: string;
|
|
1328
|
+
}
|
|
1329
|
+
declare const SidebarTrigger: React$1.ForwardRefExoticComponent<SidebarTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1330
|
+
type SidebarBrandProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
1279
1331
|
declare const SidebarBrand: React$1.ForwardRefExoticComponent<SidebarBrandProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1280
|
-
|
|
1281
|
-
|
|
1332
|
+
/**
|
|
1333
|
+
* Text portion of the brand row. Hides itself when the sidebar
|
|
1334
|
+
* collapses to a rail. Use to wrap product names / wordmarks so the
|
|
1335
|
+
* logo glyph alone remains visible at 64px.
|
|
1336
|
+
*/
|
|
1337
|
+
type SidebarBrandTextProps = React$1.HTMLAttributes<HTMLSpanElement>;
|
|
1338
|
+
declare const SidebarBrandText: React$1.ForwardRefExoticComponent<SidebarBrandTextProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1339
|
+
interface SidebarSectionProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1340
|
+
label?: React$1.ReactNode;
|
|
1282
1341
|
/**
|
|
1283
1342
|
* Label color tone. Encodes the *meaning* of the section's
|
|
1284
1343
|
* priority in the scan path:
|
|
1285
|
-
* - `"pro"` (default) — Pro-purple, for primary day-to-day work
|
|
1286
|
-
* (numbered sections like "01 — Today", "02 — Work").
|
|
1344
|
+
* - `"pro"` (default) — Pro-purple, for primary day-to-day work.
|
|
1287
1345
|
* - `"muted"` — `text-fg-3`, for system-level or settings groups
|
|
1288
|
-
*
|
|
1346
|
+
* that should sit lower in the visual hierarchy.
|
|
1289
1347
|
*
|
|
1290
1348
|
* Mirrors the `tone` API on `<SidebarLinkBadge>`.
|
|
1291
1349
|
*/
|
|
1292
1350
|
tone?: "pro" | "muted";
|
|
1293
1351
|
}
|
|
1294
1352
|
declare const SidebarSection: React$1.ForwardRefExoticComponent<SidebarSectionProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1295
|
-
interface SidebarLinkProps extends React.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
1353
|
+
interface SidebarLinkProps extends React$1.AnchorHTMLAttributes<HTMLAnchorElement> {
|
|
1296
1354
|
/** Required when rendered as `<a>`; ignored when `asChild` is true. */
|
|
1297
1355
|
href?: string;
|
|
1298
|
-
icon?: React.ReactNode;
|
|
1356
|
+
icon?: React$1.ReactNode;
|
|
1299
1357
|
active?: boolean;
|
|
1300
1358
|
/**
|
|
1301
1359
|
* Render via Radix `<Slot>` so the consumer can wrap a router-aware
|
|
1302
|
-
* component (e.g. Next.js `<Link>`, React Router `<NavLink>`) that
|
|
1303
|
-
* `href` and prefetch behavior. Without this, sidebar clicks
|
|
1304
|
-
* client-side routing and trigger full page loads.
|
|
1360
|
+
* component (e.g. Next.js `<Link>`, React Router `<NavLink>`) that
|
|
1361
|
+
* owns `href` and prefetch behavior. Without this, sidebar clicks
|
|
1362
|
+
* bypass client-side routing and trigger full page loads.
|
|
1305
1363
|
*/
|
|
1306
1364
|
asChild?: boolean;
|
|
1307
1365
|
}
|
|
1308
1366
|
declare const SidebarLink: React$1.ForwardRefExoticComponent<SidebarLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
1367
|
+
/**
|
|
1368
|
+
* Label slot for `<SidebarLink asChild>` consumers.
|
|
1369
|
+
*
|
|
1370
|
+
* The default (non-`asChild`) `SidebarLink` already hides its label in rail
|
|
1371
|
+
* mode. When consumers opt into `asChild` to wrap a router-aware element,
|
|
1372
|
+
* the design system can't reach inside to apply that rule — so consumers
|
|
1373
|
+
* compose this atom around their label text. Removes the leaky requirement
|
|
1374
|
+
* that every consumer re-stamp `group-data-[labels=hide]/sidebar:hidden`
|
|
1375
|
+
* on their inner spans.
|
|
1376
|
+
*/
|
|
1377
|
+
type SidebarLinkLabelProps = React$1.HTMLAttributes<HTMLSpanElement>;
|
|
1378
|
+
declare const SidebarLinkLabel: React$1.ForwardRefExoticComponent<SidebarLinkLabelProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1379
|
+
/**
|
|
1380
|
+
* Optional trailing action inside a `<SidebarLink asChild>` (e.g. an
|
|
1381
|
+
* expand/collapse chevron for a nested section). Hides in rail because the
|
|
1382
|
+
* action is not meaningful when labels themselves are hidden.
|
|
1383
|
+
*/
|
|
1384
|
+
type SidebarLinkActionProps = React$1.HTMLAttributes<HTMLSpanElement>;
|
|
1385
|
+
declare const SidebarLinkAction: React$1.ForwardRefExoticComponent<SidebarLinkActionProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1309
1386
|
declare const sidebarLinkBadgeVariants: (props?: ({
|
|
1310
|
-
tone?: "warning" | "default" | "
|
|
1387
|
+
tone?: "warning" | "default" | "neutral" | "danger" | null | undefined;
|
|
1311
1388
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1312
1389
|
type SidebarLinkBadgeVariants = VariantProps<typeof sidebarLinkBadgeVariants>;
|
|
1313
|
-
interface SidebarLinkBadgeProps extends React.HTMLAttributes<HTMLSpanElement>, SidebarLinkBadgeVariants {
|
|
1390
|
+
interface SidebarLinkBadgeProps extends React$1.HTMLAttributes<HTMLSpanElement>, SidebarLinkBadgeVariants {
|
|
1314
1391
|
}
|
|
1315
1392
|
declare const SidebarLinkBadge: React$1.ForwardRefExoticComponent<SidebarLinkBadgeProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
1316
|
-
|
|
1393
|
+
interface SidebarLinkGroupProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "onClick"> {
|
|
1394
|
+
/**
|
|
1395
|
+
* Stable id used for exclusive-mode coordination. Defaults to a
|
|
1396
|
+
* generated React id, which is stable across renders within a
|
|
1397
|
+
* single tree.
|
|
1398
|
+
*/
|
|
1399
|
+
id?: string;
|
|
1400
|
+
icon?: React$1.ReactNode;
|
|
1401
|
+
label: React$1.ReactNode;
|
|
1402
|
+
/** Body href — the body row renders as `<a href>`. */
|
|
1403
|
+
href?: string;
|
|
1404
|
+
/** Highlights the body row. Independent of the open state. */
|
|
1405
|
+
active?: boolean;
|
|
1406
|
+
defaultOpen?: boolean;
|
|
1407
|
+
open?: boolean;
|
|
1408
|
+
onOpenChange?: (open: boolean) => void;
|
|
1409
|
+
/**
|
|
1410
|
+
* Called when the body row is clicked, before the open state is
|
|
1411
|
+
* updated and before the section's exclusive lock is claimed. Call
|
|
1412
|
+
* `e.preventDefault()` to opt out of both. Use for navigation that
|
|
1413
|
+
* needs to run *before* the accordion behavior (rare).
|
|
1414
|
+
*/
|
|
1415
|
+
onActivate?: (e: React$1.MouseEvent<HTMLAnchorElement>) => void;
|
|
1416
|
+
children?: React$1.ReactNode;
|
|
1417
|
+
}
|
|
1418
|
+
declare const SidebarLinkGroup: React$1.ForwardRefExoticComponent<SidebarLinkGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1419
|
+
type SidebarFooterProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
1317
1420
|
declare const SidebarFooter: React$1.ForwardRefExoticComponent<SidebarFooterProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1318
|
-
interface SidebarUserProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
1421
|
+
interface SidebarUserProps extends React$1.HTMLAttributes<HTMLDivElement> {
|
|
1319
1422
|
name: string;
|
|
1320
|
-
subtitle?: React.ReactNode;
|
|
1423
|
+
subtitle?: React$1.ReactNode;
|
|
1321
1424
|
avatarSrc?: string | null;
|
|
1322
1425
|
}
|
|
1323
1426
|
declare const SidebarUser: React$1.ForwardRefExoticComponent<SidebarUserProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -1686,4 +1789,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
|
|
|
1686
1789
|
|
|
1687
1790
|
declare function cn(...inputs: ClassValue[]): string;
|
|
1688
1791
|
|
|
1689
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, AtSignIcon, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, Button, type ButtonProps, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, ChatBubbleIcon, CheckCircle2Icon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DatePicker, DetailGrid, type DetailGridProps, DetailMain, type DetailMainProps, DetailSpine, DetailSpineHeader, type DetailSpineHeaderProps, type DetailSpineProps, DetailSpineSection, type DetailSpineSectionProps, DetailSpineStats, type DetailSpineStatsProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DocumentIcon, DollarSignIcon, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileIcon, FileReturnIcon, FileTextIcon, FileUpload, FilterChip, type FilterChipProps, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, FormError, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, InboxIcon, InfoIcon, Input, type InputVariants, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, KeyboardShortcutsDialog, Label, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MenuIcon, MessageCircleIcon, MessageCircleWarningIcon, MicrosoftBrandIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PenSignIcon, PencilIcon, PhoneIcon, PhoneInput, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, type PrimaryActionProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, RadioGroup, RadioGroupItem, ReceiptIcon, ReplyIcon, RotateCcwIcon, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SendIcon, Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, type ShellProps, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, type SidebarLinkProps, type SidebarProps, SidebarSection, type SidebarSectionProps, SidebarUser, type SidebarUserProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, StarIcon, StarRating, type StarRatingProps, Stat, type Step, Stepper, type StepperProps, StrikethroughIcon, SubmitButton, SunIcon, Switch, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TeamIcon, TeamMemberSelect, Textarea, type TextareaVariants, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XIcon, ZoomInIcon, ZoomOutIcon, alertVariants, badgeVariants, buttonVariants, cardVariants, cn, displayToIso, filterChipVariants, inputVariants, isoToDisplay, kanbanCardVariants, labelVariants, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, starRatingVariants, textareaVariants, useToast };
|
|
1792
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, AtSignIcon, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, Button, type ButtonProps, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, ChatBubbleIcon, CheckCircle2Icon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DatePicker, DetailGrid, type DetailGridProps, DetailMain, type DetailMainProps, DetailSpine, DetailSpineHeader, type DetailSpineHeaderProps, type DetailSpineProps, DetailSpineSection, type DetailSpineSectionProps, DetailSpineStats, type DetailSpineStatsProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleChip, DocumentIcon, DollarSignIcon, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileIcon, FileReturnIcon, FileTextIcon, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, FormError, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, InboxIcon, InfoIcon, Input, type InputVariants, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, KeyboardShortcutsDialog, Label, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MenuIcon, MessageCircleIcon, MessageCircleWarningIcon, MicrosoftBrandIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PenSignIcon, PencilIcon, PhoneIcon, PhoneInput, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, type PrimaryActionProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, RadioGroup, RadioGroupItem, ReceiptIcon, ReplyIcon, RotateCcwIcon, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SendIcon, Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, type ShellProps, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSection, type SidebarSectionProps, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SidebarUser, type SidebarUserProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, StarIcon, StarRating, type StarRatingProps, Stat, type Step, Stepper, type StepperProps, StrikethroughIcon, SubmitButton, SunIcon, Switch, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TeamIcon, TeamMemberSelect, Textarea, type TextareaVariants, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XIcon, ZoomInIcon, ZoomOutIcon, alertVariants, badgeVariants, buttonVariants, cardVariants, cn, displayToIso, filterChipVariants, inputVariants, isoToDisplay, kanbanCardVariants, labelVariants, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, starRatingVariants, textareaVariants, useSidebarState, useToast };
|