@assure-one/design-system 0.5.0 → 0.7.1
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 +131 -2
- package/dist/index.js +400 -47
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +2 -1
package/dist/index.d.ts
CHANGED
|
@@ -967,6 +967,35 @@ declare const SearchInput: React$1.ForwardRefExoticComponent<SearchInputProps &
|
|
|
967
967
|
interface SearchSelectOption {
|
|
968
968
|
id: string;
|
|
969
969
|
label: string;
|
|
970
|
+
/**
|
|
971
|
+
* Optional section name. When any option carries a `group`, the dropdown
|
|
972
|
+
* renders quiet sentence-case section labels, preserving the order in which
|
|
973
|
+
* groups first appear in `options`. Omit on every option to keep the flat
|
|
974
|
+
* (single-list) rendering.
|
|
975
|
+
*/
|
|
976
|
+
group?: string;
|
|
977
|
+
/**
|
|
978
|
+
* Optional CSS color (hex or token) rendered as a small leading dot — handy
|
|
979
|
+
* for category accents (e.g. one hue per service line). Treated as data, so
|
|
980
|
+
* the consumer owns the palette.
|
|
981
|
+
*/
|
|
982
|
+
color?: string;
|
|
983
|
+
/**
|
|
984
|
+
* Optional leading icon node. When present the row becomes a rich two-line
|
|
985
|
+
* row with the icon in a circular tile. Pair with `iconClassName` for the
|
|
986
|
+
* tile tint. Takes precedence over `color`.
|
|
987
|
+
*/
|
|
988
|
+
icon?: React$1.ReactNode;
|
|
989
|
+
/**
|
|
990
|
+
* Tailwind classes for the icon tile (background + text), e.g.
|
|
991
|
+
* "bg-info/10 text-info". Consumer owns the palette.
|
|
992
|
+
*/
|
|
993
|
+
iconClassName?: string;
|
|
994
|
+
/**
|
|
995
|
+
* Optional secondary line shown muted beneath the label (e.g. an email or
|
|
996
|
+
* reference). Promotes the row to the two-line rich layout.
|
|
997
|
+
*/
|
|
998
|
+
description?: string;
|
|
970
999
|
}
|
|
971
1000
|
interface SearchSelectProps {
|
|
972
1001
|
options: SearchSelectOption[];
|
|
@@ -977,8 +1006,36 @@ interface SearchSelectProps {
|
|
|
977
1006
|
placeholder?: string;
|
|
978
1007
|
className?: string;
|
|
979
1008
|
disabled?: boolean;
|
|
1009
|
+
/**
|
|
1010
|
+
* When true (and options carry `group`), renders a row of exclusive filter
|
|
1011
|
+
* chips ("All" + each non-pinned group) that scope the list to one category.
|
|
1012
|
+
*/
|
|
1013
|
+
groupFilter?: boolean;
|
|
1014
|
+
/**
|
|
1015
|
+
* Group names pinned to the top of the list. Pinned groups are excluded from
|
|
1016
|
+
* the filter chips and only shown when the "All" chip is active — the
|
|
1017
|
+
* standard "favorites/suggested on top" treatment.
|
|
1018
|
+
*/
|
|
1019
|
+
pinnedGroups?: string[];
|
|
1020
|
+
/**
|
|
1021
|
+
* Close the dropdown after a selection. Off by default (multi-select keeps
|
|
1022
|
+
* the list open to pick more); turn on when used as a single-select.
|
|
1023
|
+
*/
|
|
1024
|
+
closeOnSelect?: boolean;
|
|
1025
|
+
/**
|
|
1026
|
+
* Append a count to each group heading (e.g. "Individuals · 5"). Only has an
|
|
1027
|
+
* effect when options carry `group`.
|
|
1028
|
+
*/
|
|
1029
|
+
showGroupCounts?: boolean;
|
|
1030
|
+
/**
|
|
1031
|
+
* Persistent footer action pinned below the list, distinct from the
|
|
1032
|
+
* query-based `onCreate` affordance. Always visible while open — use for a
|
|
1033
|
+
* full "Create new client" entry point. `createNewLabel` sets its label.
|
|
1034
|
+
*/
|
|
1035
|
+
onCreateNew?: () => void;
|
|
1036
|
+
createNewLabel?: string;
|
|
980
1037
|
}
|
|
981
|
-
declare function SearchSelect({ options, selected, onSelect, onRemove, onCreate, placeholder, className, disabled, }: SearchSelectProps): react_jsx_runtime.JSX.Element;
|
|
1038
|
+
declare function SearchSelect({ options, selected, onSelect, onRemove, onCreate, placeholder, className, disabled, groupFilter, pinnedGroups, closeOnSelect, showGroupCounts, onCreateNew, createNewLabel, }: SearchSelectProps): react_jsx_runtime.JSX.Element;
|
|
982
1039
|
declare namespace SearchSelect {
|
|
983
1040
|
var displayName: string;
|
|
984
1041
|
}
|
|
@@ -1955,6 +2012,78 @@ interface KanbanCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
1955
2012
|
}
|
|
1956
2013
|
declare const KanbanCard: React$1.ForwardRefExoticComponent<KanbanCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1957
2014
|
|
|
2015
|
+
/**
|
|
2016
|
+
* NotificationPanel — presentational in-app notification list (the bell
|
|
2017
|
+
* dropdown body). Avatar-led: people-driven rows (mentions, messages) show
|
|
2018
|
+
* the sender's avatar, system rows show a neutral type icon. Icons are
|
|
2019
|
+
* neutral on purpose — colour is spent only on the unread signal.
|
|
2020
|
+
*
|
|
2021
|
+
* This is the visual layer only. The app owns data, realtime (SSE),
|
|
2022
|
+
* pagination, and navigation, and composes these pieces:
|
|
2023
|
+
*
|
|
2024
|
+
* <NotificationPanel>
|
|
2025
|
+
* <NotificationPanelHeader unreadCount={3} onMarkAllRead={...} onSettings={...} />
|
|
2026
|
+
* <NotificationFilter value={filter} onValueChange={setFilter} actions={<TypeDropdown />} />
|
|
2027
|
+
* <NotificationList>
|
|
2028
|
+
* {items.map((n) => (
|
|
2029
|
+
* <NotificationItem
|
|
2030
|
+
* key={n.id}
|
|
2031
|
+
* title={n.title}
|
|
2032
|
+
* body={n.body}
|
|
2033
|
+
* typeLabel={n.typeLabel}
|
|
2034
|
+
* client={n.client}
|
|
2035
|
+
* time={n.time}
|
|
2036
|
+
* sender={n.sender} // omit for system rows
|
|
2037
|
+
* icon={<DocumentIcon />} // used when there's no sender
|
|
2038
|
+
* unread={!n.isRead}
|
|
2039
|
+
* onClick={() => open(n)}
|
|
2040
|
+
* />
|
|
2041
|
+
* ))}
|
|
2042
|
+
* </NotificationList>
|
|
2043
|
+
* </NotificationPanel>
|
|
2044
|
+
*
|
|
2045
|
+
* Empty / loading states are the consumer's call (use `EmptyState` and
|
|
2046
|
+
* `Skeleton` from the package).
|
|
2047
|
+
*/
|
|
2048
|
+
type NotificationPanelProps = React.HTMLAttributes<HTMLDivElement>;
|
|
2049
|
+
declare const NotificationPanel: React$1.ForwardRefExoticComponent<NotificationPanelProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2050
|
+
interface NotificationPanelHeaderProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "title"> {
|
|
2051
|
+
title?: React.ReactNode;
|
|
2052
|
+
/** Unread count — drives the pill and whether "Mark all read" shows. */
|
|
2053
|
+
unreadCount?: number;
|
|
2054
|
+
onMarkAllRead?: () => void;
|
|
2055
|
+
onSettings?: () => void;
|
|
2056
|
+
}
|
|
2057
|
+
declare const NotificationPanelHeader: React$1.ForwardRefExoticComponent<NotificationPanelHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2058
|
+
type NotificationFilterValue = "all" | "unread";
|
|
2059
|
+
interface NotificationFilterProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
2060
|
+
value: NotificationFilterValue;
|
|
2061
|
+
onValueChange: (value: NotificationFilterValue) => void;
|
|
2062
|
+
/** Right-aligned slot, e.g. a type-filter dropdown trigger. */
|
|
2063
|
+
actions?: React.ReactNode;
|
|
2064
|
+
}
|
|
2065
|
+
declare const NotificationFilter: React$1.ForwardRefExoticComponent<NotificationFilterProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2066
|
+
type NotificationListProps = React.HTMLAttributes<HTMLDivElement>;
|
|
2067
|
+
declare const NotificationList: React$1.ForwardRefExoticComponent<NotificationListProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2068
|
+
interface NotificationItemProps extends Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, "title"> {
|
|
2069
|
+
title: React.ReactNode;
|
|
2070
|
+
body?: React.ReactNode;
|
|
2071
|
+
/** Small caption, joined with `client` and `time` on the meta line. */
|
|
2072
|
+
typeLabel?: React.ReactNode;
|
|
2073
|
+
client?: React.ReactNode;
|
|
2074
|
+
/** Preformatted relative time, e.g. "5m". */
|
|
2075
|
+
time?: React.ReactNode;
|
|
2076
|
+
/** People-driven rows: shows the sender avatar instead of the icon tile. */
|
|
2077
|
+
sender?: {
|
|
2078
|
+
name: string;
|
|
2079
|
+
src?: string | null;
|
|
2080
|
+
};
|
|
2081
|
+
/** System rows: icon rendered inside a neutral tile. Ignored when `sender` is set. */
|
|
2082
|
+
icon?: React.ReactNode;
|
|
2083
|
+
unread?: boolean;
|
|
2084
|
+
}
|
|
2085
|
+
declare const NotificationItem: React$1.ForwardRefExoticComponent<NotificationItemProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
2086
|
+
|
|
1958
2087
|
/**
|
|
1959
2088
|
* Toolbar — horizontal row of controls used above lists, dashboards, etc.
|
|
1960
2089
|
* FilterChip is a simpler atom than `MultiFilterPill` — single filter,
|
|
@@ -2022,4 +2151,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
|
|
|
2022
2151
|
|
|
2023
2152
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2024
2153
|
|
|
2025
|
-
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, AlertTriangleSolidIcon, 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, CheckCircleSolidIcon, 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, DataItem, 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, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputVariants, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, Label, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MenuIcon, MessageCircleIcon, MessageCircleWarningIcon, MetadataGrid, 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, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, ZoomInIcon, ZoomOutIcon, alertVariants, badgeVariants, buttonVariants, cardVariants, cn, displayToIso, filterChipVariants, inputVariants, isoToDisplay, labelVariants, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, starRatingVariants, textareaVariants, useSidebarState, useToast };
|
|
2154
|
+
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, AlertTriangleSolidIcon, 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, CheckCircleSolidIcon, 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, DataItem, 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, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputVariants, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, Label, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MenuIcon, MessageCircleIcon, MessageCircleWarningIcon, MetadataGrid, MicrosoftBrandIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelHeader, type NotificationPanelHeaderProps, type NotificationPanelProps, 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, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, ZoomInIcon, ZoomOutIcon, alertVariants, badgeVariants, buttonVariants, cardVariants, cn, displayToIso, filterChipVariants, inputVariants, isoToDisplay, labelVariants, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, starRatingVariants, textareaVariants, useSidebarState, useToast };
|