@assure-one/design-system 0.11.0 → 0.12.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 CHANGED
@@ -116,6 +116,14 @@ interface BlockquoteProps extends React.BlockquoteHTMLAttributes<HTMLQuoteElemen
116
116
  }
117
117
  declare const Blockquote: React$1.ForwardRefExoticComponent<BlockquoteProps & React$1.RefAttributes<HTMLQuoteElement>>;
118
118
 
119
+ interface BrandIconProps extends React.SVGAttributes<SVGElement> {
120
+ size?: number;
121
+ }
122
+ declare function AssureProBrandIcon({ size, ...props }: BrandIconProps): react_jsx_runtime.JSX.Element;
123
+ declare function AssureAuditBrandIcon({ size, ...props }: BrandIconProps): react_jsx_runtime.JSX.Element;
124
+ declare function AssureBooksBrandIcon({ size, ...props }: BrandIconProps): react_jsx_runtime.JSX.Element;
125
+ declare function AssureTaxBrandIcon({ size, ...props }: BrandIconProps): react_jsx_runtime.JSX.Element;
126
+
119
127
  /**
120
128
  * Breadcrumb — semantic navigation primitive. Uses the catalog `ChevronRightIcon` as the
121
129
  * default separator. Current page (BreadcrumbPage) leans on Pro purple to
@@ -158,7 +166,7 @@ declare const BreadcrumbSeparator: React$1.ForwardRefExoticComponent<BreadcrumbS
158
166
  * Use `asChild` to render as a different element (e.g. an anchor / next/link).
159
167
  */
160
168
  declare const buttonVariants: (props?: ({
161
- variant?: "link" | "success" | "destructive" | "secondary" | "outline" | "primary" | "ghost" | "accent" | "dashed" | null | undefined;
169
+ variant?: "link" | "success" | "destructive" | "secondary" | "outline" | "accent" | "primary" | "ghost" | "dashed" | null | undefined;
162
170
  size?: "sm" | "md" | "lg" | "icon" | "icon-xs" | "icon-sm" | null | undefined;
163
171
  } & class_variance_authority_types.ClassProp) | undefined) => string;
164
172
  interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
@@ -1740,6 +1748,93 @@ interface SidebarUserProps extends React$1.HTMLAttributes<HTMLDivElement> {
1740
1748
  }
1741
1749
  declare const SidebarUser: React$1.ForwardRefExoticComponent<SidebarUserProps & React$1.RefAttributes<HTMLDivElement>>;
1742
1750
 
1751
+ interface SidebarBrandSwitcherItem {
1752
+ /** Stable id used as React key and for `data-item` on each row. */
1753
+ id: string;
1754
+ /** Primary display name, e.g. "Assure Audit". */
1755
+ name: string;
1756
+ /** Sub-line under the name, e.g. "Audit fieldwork". */
1757
+ tagline?: string;
1758
+ /**
1759
+ * Short label rendered inside the default tile glyph (first character
1760
+ * is used, à la "A" for "Audit"). Ignored when `glyph` is supplied.
1761
+ */
1762
+ short?: string;
1763
+ /**
1764
+ * Accent for the default tile background. A Tailwind class string
1765
+ * (e.g. `"bg-[#5b3bc4]"`) — the consumer owns brand color values, the
1766
+ * DS just composes them. Ignored when `glyph` is supplied.
1767
+ */
1768
+ tone?: string;
1769
+ /**
1770
+ * Pre-rendered tile glyph. When provided, replaces the default
1771
+ * "first letter on `tone` swatch" tile entirely. Use for items that
1772
+ * have a real mark instead of a letter.
1773
+ */
1774
+ glyph?: React$1.ReactNode;
1775
+ /**
1776
+ * False marks the item as not-yet-available; rendered disabled with
1777
+ * a "Soon" badge by default (override via `unavailableBadge`).
1778
+ */
1779
+ available?: boolean;
1780
+ /** Pass-through onto the row's `data-item` for analytics / e2e hooks. */
1781
+ dataAttr?: string;
1782
+ }
1783
+ interface SidebarBrandSwitcherProps {
1784
+ /**
1785
+ * Brand glyph rendered at the left edge of the trigger (e.g. an
1786
+ * `<img>` of the product mark). Consumer-supplied so the DS does
1787
+ * not bind to a framework-specific image element.
1788
+ */
1789
+ brand?: React$1.ReactNode;
1790
+ /** Wordmark / label rendered next to the brand glyph in the trigger. */
1791
+ label: React$1.ReactNode;
1792
+ /**
1793
+ * The currently-active item. Pinned at the top of the menu and
1794
+ * excluded from the "Switch to" list automatically.
1795
+ */
1796
+ current: SidebarBrandSwitcherItem;
1797
+ /**
1798
+ * Full item list including `current`. Order is preserved in the
1799
+ * "Switch to" section; the current entry is filtered out.
1800
+ */
1801
+ items: SidebarBrandSwitcherItem[];
1802
+ /**
1803
+ * Called when a non-current, available item is selected. Receives the
1804
+ * full item so consumers can route, open a new window, or trigger an
1805
+ * SSO handoff — the DS holds no opinion on what "switch" means.
1806
+ */
1807
+ onLaunch?: (item: SidebarBrandSwitcherItem) => void | Promise<void>;
1808
+ /** Label above the current row. Defaults to "Currently using". */
1809
+ currentSectionLabel?: React$1.ReactNode;
1810
+ /** Label above the others list. Defaults to "Switch to". */
1811
+ switchSectionLabel?: React$1.ReactNode;
1812
+ /** Label at the very top of the menu. Defaults to "Suite". */
1813
+ menuLabel?: React$1.ReactNode;
1814
+ /** Badge text next to the current item. Defaults to "Current". */
1815
+ currentBadge?: React$1.ReactNode;
1816
+ /** Badge text on unavailable items. Defaults to "Soon". */
1817
+ unavailableBadge?: React$1.ReactNode;
1818
+ /** Accessible label on the trigger button. Defaults to "Switch product". */
1819
+ triggerLabel?: string;
1820
+ /** Extra classes applied to the outer brand-row wrapper. */
1821
+ className?: string;
1822
+ /** Extra classes applied to the trigger button. */
1823
+ triggerClassName?: string;
1824
+ /** Extra classes applied to the dropdown content panel. */
1825
+ contentClassName?: string;
1826
+ /**
1827
+ * Slot rendered to the right of the trigger inside the brand row.
1828
+ * Typical use: drop a `<SidebarPinButton/>` here.
1829
+ */
1830
+ trailing?: React$1.ReactNode;
1831
+ }
1832
+ declare const SidebarBrandSwitcher: React$1.ForwardRefExoticComponent<SidebarBrandSwitcherProps & React$1.RefAttributes<HTMLDivElement>>;
1833
+ interface SidebarBrandSwitcherTileProps {
1834
+ item: SidebarBrandSwitcherItem;
1835
+ }
1836
+ declare function SidebarBrandSwitcherTile({ item }: SidebarBrandSwitcherTileProps): react_jsx_runtime.JSX.Element;
1837
+
1743
1838
  /**
1744
1839
  * AppHeader — sticky 56px-tall top bar mounted inside `<Main>`, above
1745
1840
  * `<Content>`.
@@ -2111,9 +2206,20 @@ declare const DetailMain: React$1.ForwardRefExoticComponent<DetailMainProps & Re
2111
2206
  /**
2112
2207
  * ActivityList — vertical feed of activity rows.
2113
2208
  *
2209
+ * Two row variants ship from this file:
2210
+ *
2114
2211
  * <ActivityList>
2212
+ * {/* "Anna filed 1120S — 2h ago" — actor-led, used for audit feeds *}
2115
2213
  * <ActivityItem dot="success" actor="Anna" text="filed" target="1120S" time="2h ago" />
2214
+ *
2215
+ * {/* "Stage advanced to Review — by Anna · 3m ago" — title-led, used
2216
+ * for in-thread event rows where the title carries the verb already *}
2217
+ * <ActivityEventItem title="Stage advanced to Review" description="by Anna" time="3m ago" />
2116
2218
  * </ActivityList>
2219
+ *
2220
+ * Picking the right one: actor-led when the actor is the news ("who did
2221
+ * this thing"), title-led when the event itself is the news ("what
2222
+ * changed; the actor is parenthetical").
2117
2223
  */
2118
2224
  type ActivityListProps = React.HTMLAttributes<HTMLUListElement>;
2119
2225
  declare const ActivityList: React$1.ForwardRefExoticComponent<ActivityListProps & React$1.RefAttributes<HTMLUListElement>>;
@@ -2126,6 +2232,18 @@ interface ActivityItemProps extends Omit<React.LiHTMLAttributes<HTMLLIElement>,
2126
2232
  time: string;
2127
2233
  }
2128
2234
  declare const ActivityItem: React$1.ForwardRefExoticComponent<ActivityItemProps & React$1.RefAttributes<HTMLLIElement>>;
2235
+ interface ActivityEventItemProps extends Omit<React.LiHTMLAttributes<HTMLLIElement>, "children" | "title"> {
2236
+ dot?: ActivityDotVariant;
2237
+ /** Primary event label — carries the verb ("Stage advanced to Review"). */
2238
+ title: ReactNode;
2239
+ /** Optional secondary qualifier ("by Anna", "auto-assigned", etc.). */
2240
+ description?: ReactNode;
2241
+ /** Pre-formatted relative time, right-aligned. */
2242
+ time: ReactNode;
2243
+ /** Inset the row to align with avatar-led message rows above it. */
2244
+ inset?: boolean;
2245
+ }
2246
+ declare const ActivityEventItem: React$1.ForwardRefExoticComponent<ActivityEventItemProps & React$1.RefAttributes<HTMLLIElement>>;
2129
2247
 
2130
2248
  /**
2131
2249
  * Kanban — flex container for board columns.
@@ -2160,6 +2278,123 @@ interface KanbanCardProps extends React.HTMLAttributes<HTMLDivElement> {
2160
2278
  }
2161
2279
  declare const KanbanCard: React$1.ForwardRefExoticComponent<KanbanCardProps & React$1.RefAttributes<HTMLDivElement>>;
2162
2280
 
2281
+ /**
2282
+ * MessageBubble — presentational comment row for a chat / discussion thread.
2283
+ *
2284
+ * Visual anatomy:
2285
+ *
2286
+ * [Avatar] [Name (you)] [3m ago] [hover actions]
2287
+ * ┌──────────────────────────────────────┐
2288
+ * │ message body slot │
2289
+ * └──────────────────────────────────────┘
2290
+ *
2291
+ * The component is presentational only — it owns layout, hover-reveal of
2292
+ * actions, and the bubble chrome. The author avatar, sanitization of HTML
2293
+ * content, and any "(you)" suffix logic stay with the consumer.
2294
+ *
2295
+ * <MessageBubble
2296
+ * avatar={<Avatar name="Anna" size="sm" />}
2297
+ * name={<>Anna {isOwn && <span className="…">(you)</span>}</>}
2298
+ * timestamp="3m ago"
2299
+ * actions={canDelete && <MessageBubbleAction onClick={…}>Delete</MessageBubbleAction>}
2300
+ * >
2301
+ * <div dangerouslySetInnerHTML={{ __html: sanitized }} />
2302
+ * </MessageBubble>
2303
+ *
2304
+ * For soft-deleted rows, use `<MessageBubble.Tombstone>` — same vertical
2305
+ * rhythm, quieter chrome, no bubble body.
2306
+ */
2307
+ interface MessageBubbleProps extends Omit<React.LiHTMLAttributes<HTMLLIElement>, "children"> {
2308
+ /** Author avatar — pass an `<Avatar size="sm" />` from the package. */
2309
+ avatar?: ReactNode;
2310
+ /** Author display name. Pass a node so callers can append "(you)" affixes
2311
+ * or other inline decorations. */
2312
+ name: ReactNode;
2313
+ /** Pre-formatted relative time string (e.g. "3m ago"). The bubble renders
2314
+ * it with `tabular-nums` so the column doesn't jitter as time advances. */
2315
+ timestamp: ReactNode;
2316
+ /** Optional right-aligned action affordance. Revealed on row hover and on
2317
+ * keyboard focus — pass `<MessageBubbleAction>` for the canonical look,
2318
+ * or any node if you need a menu. */
2319
+ actions?: ReactNode;
2320
+ /** Message body — typically a `<div dangerouslySetInnerHTML={...} />` of
2321
+ * pre-sanitized HTML, but plain ReactNode works too. */
2322
+ children: ReactNode;
2323
+ }
2324
+ declare const MessageBubble: MessageBubbleComponent;
2325
+ interface MessageBubbleTombstoneProps extends Omit<React.LiHTMLAttributes<HTMLLIElement>, "children"> {
2326
+ /** Leading icon — pass a 12px `<Trash2Icon />` or any glyph that signals
2327
+ * "removed". The DS deliberately doesn't hard-code the trash icon so
2328
+ * surfaces with different tombstone vocabularies (archived, redacted,
2329
+ * withdrawn) can reuse this shell. */
2330
+ icon?: ReactNode;
2331
+ /** Tombstone message — typically a sentence assembled by the consumer
2332
+ * with the right grammar ("Anna deleted her comment" vs. "Anna's comment
2333
+ * was deleted by Lead"). Italics + muted color come from the shell. */
2334
+ children: ReactNode;
2335
+ /** Pre-formatted relative time (e.g. "3m ago"). */
2336
+ timestamp?: ReactNode;
2337
+ }
2338
+ declare const MessageBubbleTombstone: React$1.ForwardRefExoticComponent<MessageBubbleTombstoneProps & React$1.RefAttributes<HTMLLIElement>>;
2339
+ interface MessageBubbleActionProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
2340
+ /** Render with the destructive color (e.g. "Delete"). */
2341
+ destructive?: boolean;
2342
+ }
2343
+ declare const MessageBubbleAction: React$1.ForwardRefExoticComponent<MessageBubbleActionProps & React$1.RefAttributes<HTMLButtonElement>>;
2344
+ type MessageBubbleComponent = React.ForwardRefExoticComponent<MessageBubbleProps & React.RefAttributes<HTMLLIElement>> & {
2345
+ Tombstone: typeof MessageBubbleTombstone;
2346
+ Action: typeof MessageBubbleAction;
2347
+ };
2348
+
2349
+ /**
2350
+ * ThreadComposer — pinned-to-bottom message-composer shell for any
2351
+ * thread surface (discussion rails, portal threads, notification replies,
2352
+ * AI draft panels).
2353
+ *
2354
+ * Wraps an optional accessory strip (quick-reply chips, attachment list),
2355
+ * an input slot (textarea / mention-input / rich editor), and a footer
2356
+ * row (left-aligned settings, right-aligned send button) into ONE
2357
+ * visually unified card. This is the fix for the common "chatbox feels
2358
+ * split into two parts" failure mode where chips, input, and actions
2359
+ * each render with their own chrome and the user sees three stacked
2360
+ * elements instead of one composer.
2361
+ *
2362
+ * <ThreadComposer>
2363
+ * <ThreadComposer.Accessory>
2364
+ * <QuickReplyChips … />
2365
+ * </ThreadComposer.Accessory>
2366
+ * <ThreadComposer.Input>
2367
+ * <MentionInput … />
2368
+ * </ThreadComposer.Input>
2369
+ * <ThreadComposer.Footer
2370
+ * start={<Switch size="sm" … /> Show activity}
2371
+ * end={<Button size="sm">Send</Button>}
2372
+ * />
2373
+ * </ThreadComposer>
2374
+ *
2375
+ * The composer owns the rounded card chrome, hairline border, and the
2376
+ * subtle focus-within shadow lift. The input slot's child should be
2377
+ * borderless — the card chrome is the input's chrome.
2378
+ */
2379
+ type ThreadComposerProps = React.HTMLAttributes<HTMLDivElement>;
2380
+ declare const ThreadComposer: ThreadComposerComponent;
2381
+ type ThreadComposerAccessoryProps = React.HTMLAttributes<HTMLDivElement>;
2382
+ declare const ThreadComposerAccessory: React$1.ForwardRefExoticComponent<ThreadComposerAccessoryProps & React$1.RefAttributes<HTMLDivElement>>;
2383
+ type ThreadComposerInputProps = React.HTMLAttributes<HTMLDivElement>;
2384
+ declare const ThreadComposerInput: React$1.ForwardRefExoticComponent<ThreadComposerInputProps & React$1.RefAttributes<HTMLDivElement>>;
2385
+ interface ThreadComposerFooterProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
2386
+ /** Left-aligned slot — toggles, presence indicators, format buttons. */
2387
+ start?: ReactNode;
2388
+ /** Right-aligned slot — primary action button (Send), discard, etc. */
2389
+ end?: ReactNode;
2390
+ }
2391
+ declare const ThreadComposerFooter: React$1.ForwardRefExoticComponent<ThreadComposerFooterProps & React$1.RefAttributes<HTMLDivElement>>;
2392
+ type ThreadComposerComponent = React.ForwardRefExoticComponent<ThreadComposerProps & React.RefAttributes<HTMLDivElement>> & {
2393
+ Accessory: typeof ThreadComposerAccessory;
2394
+ Input: typeof ThreadComposerInput;
2395
+ Footer: typeof ThreadComposerFooter;
2396
+ };
2397
+
2163
2398
  /**
2164
2399
  * NotificationPanel — presentational in-app notification list (the bell
2165
2400
  * dropdown body). Avatar-led: people-driven rows (mentions, messages) show
@@ -2311,4 +2546,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
2311
2546
 
2312
2547
  declare function cn(...inputs: ClassValue[]): string;
2313
2548
 
2314
- 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, 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 };
2549
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, 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, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, type BrandIconProps, 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, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, 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, ThreadComposer, ThreadComposerAccessory, type ThreadComposerAccessoryProps, ThreadComposerFooter, type ThreadComposerFooterProps, ThreadComposerInput, type ThreadComposerInputProps, type ThreadComposerProps, 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 };