@assure-one/design-system 0.10.0 → 0.11.2

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 CHANGED
@@ -332,6 +332,27 @@ interface CopyButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>
332
332
  */
333
333
  declare const CopyButton: React$1.ForwardRefExoticComponent<CopyButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
334
334
 
335
+ /** Default placeholder for day-mode inputs (`MM/DD/YYYY`). */
336
+ declare const DATE_DISPLAY_PLACEHOLDER = "MM/DD/YYYY";
337
+ /** Default placeholder for year-mode inputs (`YYYY`). */
338
+ declare const YEAR_DISPLAY_PLACEHOLDER = "YYYY";
339
+ /** ISO `YYYY-MM-DD` → display `MM/DD/YYYY`. Returns `""` for empty/invalid. */
340
+ declare function isoToDisplay(iso: string | undefined | null): string;
341
+ /** Display `MM/DD/YYYY` → ISO `YYYY-MM-DD`. Returns `""` for invalid. */
342
+ declare function displayToIso(display: string): string;
343
+ /** Apply the `MM/DD/YYYY` mask while the user types. */
344
+ declare function applyMask(input: string): string;
345
+ /** ISO `YYYY-MM-DD` → JS Date (in local timezone). Returns `undefined` for invalid. */
346
+ declare function isoToDate(iso: string): Date | undefined;
347
+ /** JS Date → ISO `YYYY-MM-DD`. */
348
+ declare function dateToIso(d: Date): string;
349
+ /** ISO `YYYY-MM-DD` → year part `YYYY`. Returns `""` if no leading year. */
350
+ declare function isoToYear(iso: string | undefined | null): string;
351
+ /** Year `YYYY` → ISO `YYYY-01-01`. Returns `""` if not 4 digits. */
352
+ declare function yearToIso(year: string): string;
353
+ /** Apply the `YYYY` mask while the user types. */
354
+ declare function applyYearMask(input: string): string;
355
+
335
356
  interface DatePickerProps {
336
357
  value?: string;
337
358
  defaultValue?: string;
@@ -353,12 +374,56 @@ interface DatePickerProps {
353
374
  min?: string;
354
375
  max?: string;
355
376
  "aria-label"?: string;
377
+ /**
378
+ * Picker mode. `"day"` (default) opens the full month calendar. `"year"`
379
+ * opens a year-only grid and stores the picked year as `YYYY-01-01` in
380
+ * the ISO value (so the onChange contract stays a `YYYY-MM-DD` string).
381
+ */
382
+ picker?: "day" | "year";
383
+ /**
384
+ * Custom label formatter for year-mode cells AND the trigger input. Only
385
+ * read when `picker="year"`. Receives the numeric year and returns the
386
+ * string to display. Use this for fiscal-year labels (e.g. `(y) => `${y}-${String(y+1).slice(-2)}``
387
+ * for a "2024-25" rendering). The underlying `value`/`onChange` ISO
388
+ * contract stays `YYYY-01-01` regardless of label format — only the
389
+ * visible text changes.
390
+ */
391
+ formatLabel?: (year: number) => string;
392
+ /**
393
+ * Calendar glyph position inside the input. Default `"right"`. When
394
+ * `"left"`, the icon sits on the left edge and the popover aligns to
395
+ * start so the calendar opens beneath the visible glyph.
396
+ */
397
+ iconPosition?: "left" | "right";
356
398
  }
357
- declare const DATE_DISPLAY_PLACEHOLDER = "MM/DD/YYYY";
358
- declare function isoToDisplay(iso: string | undefined | null): string;
359
- declare function displayToIso(display: string): string;
399
+
360
400
  declare const DatePicker: React$1.ForwardRefExoticComponent<DatePickerProps & React$1.RefAttributes<HTMLInputElement>>;
361
401
 
402
+ interface DateRangeValue {
403
+ from?: string;
404
+ to?: string;
405
+ }
406
+ interface DateRangePickerProps {
407
+ value?: DateRangeValue;
408
+ defaultValue?: DateRangeValue;
409
+ onChange?: (value: DateRangeValue) => void;
410
+ name?: string;
411
+ id?: string;
412
+ label?: string;
413
+ error?: string;
414
+ disabled?: boolean;
415
+ required?: boolean;
416
+ /** Shown when both edges are empty. Defaults to "Select date range". */
417
+ placeholder?: string;
418
+ className?: string;
419
+ min?: string;
420
+ max?: string;
421
+ /** Calendar glyph position inside the trigger. Default `"right"`. */
422
+ iconPosition?: "left" | "right";
423
+ "aria-label"?: string;
424
+ }
425
+ declare const DateRangePicker: React$1.ForwardRefExoticComponent<DateRangePickerProps & React$1.RefAttributes<HTMLButtonElement>>;
426
+
362
427
  declare const Dialog: React$1.FC<DialogPrimitive.DialogProps>;
363
428
  declare const DialogTrigger: React$1.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
364
429
  declare const DialogPortal: React$1.FC<DialogPrimitive.DialogPortalProps>;
@@ -1025,9 +1090,26 @@ interface SearchSelectOption {
1025
1090
  }
1026
1091
  interface SearchSelectProps {
1027
1092
  options: SearchSelectOption[];
1028
- selected: SearchSelectOption[];
1029
- onSelect: (option: SearchSelectOption) => void;
1030
- onRemove: (option: SearchSelectOption) => void;
1093
+ /**
1094
+ * Multi-mode controlled selection. Required unless using the single-mode
1095
+ * `value`/`onValueChange` sugar (in which case omit both `selected` and
1096
+ * `onSelect`/`onRemove`).
1097
+ */
1098
+ selected?: SearchSelectOption[];
1099
+ onSelect?: (option: SearchSelectOption) => void;
1100
+ onRemove?: (option: SearchSelectOption) => void;
1101
+ /**
1102
+ * Single-mode controlled value: the picked option's `id` (or empty string
1103
+ * when nothing is selected). When set, the component renders as a
1104
+ * single-pick combobox and `closeOnSelect` is forced on. Mutually
1105
+ * exclusive with `selected` — provide one OR the other, not both.
1106
+ */
1107
+ value?: string;
1108
+ /**
1109
+ * Single-mode change handler. Called with the picked option's `id` on
1110
+ * select, or with an empty string when the user clears the selection.
1111
+ */
1112
+ onValueChange?: (value: string) => void;
1031
1113
  onCreate?: (name: string) => void;
1032
1114
  placeholder?: string;
1033
1115
  className?: string;
@@ -1061,7 +1143,7 @@ interface SearchSelectProps {
1061
1143
  onCreateNew?: () => void;
1062
1144
  createNewLabel?: string;
1063
1145
  }
1064
- declare function SearchSelect({ options, selected, onSelect, onRemove, onCreate, placeholder, className, disabled, groupFilter, pinnedGroups, closeOnSelect, showGroupCounts, onCreateNew, createNewLabel, }: SearchSelectProps): react_jsx_runtime.JSX.Element;
1146
+ declare function SearchSelect({ options, selected: selectedProp, onSelect: onSelectProp, onRemove: onRemoveProp, value, onValueChange, onCreate, placeholder, className, disabled, groupFilter, pinnedGroups, closeOnSelect: closeOnSelectProp, showGroupCounts, onCreateNew, createNewLabel, }: SearchSelectProps): react_jsx_runtime.JSX.Element;
1065
1147
  declare namespace SearchSelect {
1066
1148
  var displayName: string;
1067
1149
  }
@@ -1658,6 +1740,93 @@ interface SidebarUserProps extends React$1.HTMLAttributes<HTMLDivElement> {
1658
1740
  }
1659
1741
  declare const SidebarUser: React$1.ForwardRefExoticComponent<SidebarUserProps & React$1.RefAttributes<HTMLDivElement>>;
1660
1742
 
1743
+ interface SidebarBrandSwitcherItem {
1744
+ /** Stable id used as React key and for `data-item` on each row. */
1745
+ id: string;
1746
+ /** Primary display name, e.g. "Assure Audit". */
1747
+ name: string;
1748
+ /** Sub-line under the name, e.g. "Audit fieldwork". */
1749
+ tagline?: string;
1750
+ /**
1751
+ * Short label rendered inside the default tile glyph (first character
1752
+ * is used, à la "A" for "Audit"). Ignored when `glyph` is supplied.
1753
+ */
1754
+ short?: string;
1755
+ /**
1756
+ * Accent for the default tile background. A Tailwind class string
1757
+ * (e.g. `"bg-[#5b3bc4]"`) — the consumer owns brand color values, the
1758
+ * DS just composes them. Ignored when `glyph` is supplied.
1759
+ */
1760
+ tone?: string;
1761
+ /**
1762
+ * Pre-rendered tile glyph. When provided, replaces the default
1763
+ * "first letter on `tone` swatch" tile entirely. Use for items that
1764
+ * have a real mark instead of a letter.
1765
+ */
1766
+ glyph?: React$1.ReactNode;
1767
+ /**
1768
+ * False marks the item as not-yet-available; rendered disabled with
1769
+ * a "Soon" badge by default (override via `unavailableBadge`).
1770
+ */
1771
+ available?: boolean;
1772
+ /** Pass-through onto the row's `data-item` for analytics / e2e hooks. */
1773
+ dataAttr?: string;
1774
+ }
1775
+ interface SidebarBrandSwitcherProps {
1776
+ /**
1777
+ * Brand glyph rendered at the left edge of the trigger (e.g. an
1778
+ * `<img>` of the product mark). Consumer-supplied so the DS does
1779
+ * not bind to a framework-specific image element.
1780
+ */
1781
+ brand?: React$1.ReactNode;
1782
+ /** Wordmark / label rendered next to the brand glyph in the trigger. */
1783
+ label: React$1.ReactNode;
1784
+ /**
1785
+ * The currently-active item. Pinned at the top of the menu and
1786
+ * excluded from the "Switch to" list automatically.
1787
+ */
1788
+ current: SidebarBrandSwitcherItem;
1789
+ /**
1790
+ * Full item list including `current`. Order is preserved in the
1791
+ * "Switch to" section; the current entry is filtered out.
1792
+ */
1793
+ items: SidebarBrandSwitcherItem[];
1794
+ /**
1795
+ * Called when a non-current, available item is selected. Receives the
1796
+ * full item so consumers can route, open a new window, or trigger an
1797
+ * SSO handoff — the DS holds no opinion on what "switch" means.
1798
+ */
1799
+ onLaunch?: (item: SidebarBrandSwitcherItem) => void | Promise<void>;
1800
+ /** Label above the current row. Defaults to "Currently using". */
1801
+ currentSectionLabel?: React$1.ReactNode;
1802
+ /** Label above the others list. Defaults to "Switch to". */
1803
+ switchSectionLabel?: React$1.ReactNode;
1804
+ /** Label at the very top of the menu. Defaults to "Suite". */
1805
+ menuLabel?: React$1.ReactNode;
1806
+ /** Badge text next to the current item. Defaults to "Current". */
1807
+ currentBadge?: React$1.ReactNode;
1808
+ /** Badge text on unavailable items. Defaults to "Soon". */
1809
+ unavailableBadge?: React$1.ReactNode;
1810
+ /** Accessible label on the trigger button. Defaults to "Switch product". */
1811
+ triggerLabel?: string;
1812
+ /** Extra classes applied to the outer brand-row wrapper. */
1813
+ className?: string;
1814
+ /** Extra classes applied to the trigger button. */
1815
+ triggerClassName?: string;
1816
+ /** Extra classes applied to the dropdown content panel. */
1817
+ contentClassName?: string;
1818
+ /**
1819
+ * Slot rendered to the right of the trigger inside the brand row.
1820
+ * Typical use: drop a `<SidebarPinButton/>` here.
1821
+ */
1822
+ trailing?: React$1.ReactNode;
1823
+ }
1824
+ declare const SidebarBrandSwitcher: React$1.ForwardRefExoticComponent<SidebarBrandSwitcherProps & React$1.RefAttributes<HTMLDivElement>>;
1825
+ interface SidebarBrandSwitcherTileProps {
1826
+ item: SidebarBrandSwitcherItem;
1827
+ }
1828
+ declare function SidebarBrandSwitcherTile({ item }: SidebarBrandSwitcherTileProps): react_jsx_runtime.JSX.Element;
1829
+
1661
1830
  /**
1662
1831
  * AppHeader — sticky 56px-tall top bar mounted inside `<Main>`, above
1663
1832
  * `<Content>`.
@@ -2229,4 +2398,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
2229
2398
 
2230
2399
  declare function cn(...inputs: ClassValue[]): string;
2231
2400
 
2232
- 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, type Priority, PriorityIcon, type PriorityIconProps, 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, SidebarPinButton, type SidebarPinButtonProps, 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, StatusIcon, type StatusIconProps, type StatusState, 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, useSidebarPeekLock, useSidebarState, useToast };
2401
+ 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, DateRangePicker, type DateRangeValue, 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, type Priority, PriorityIcon, type PriorityIconProps, 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, SidebarBrandSwitcher, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, SidebarBrandSwitcherTile, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, SidebarPinButton, type SidebarPinButtonProps, 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, StatusIcon, type StatusIconProps, type StatusState, 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, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, badgeVariants, buttonVariants, cardVariants, cn, dateToIso, displayToIso, filterChipVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, starRatingVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useToast, yearToIso };