@assure-one/design-system 0.12.0 → 0.14.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
@@ -2347,53 +2347,110 @@ type MessageBubbleComponent = React.ForwardRefExoticComponent<MessageBubbleProps
2347
2347
  };
2348
2348
 
2349
2349
  /**
2350
- * ThreadComposerpinned-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 slottoggles, 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
- };
2350
+ * MessageComposersingle-component chat input for thread surfaces.
2351
+ *
2352
+ * The polish-correct way to render a message composer in the Assure suite:
2353
+ * one card chrome, an optional quick-reply chip strip on top, an editor
2354
+ * slot in the middle, and a footer row with a built-in Send button.
2355
+ *
2356
+ * Replaces the compound `<ThreadComposer.Accessory|Input|Footer>` pattern,
2357
+ * which exposed too many slots to the consumer AND silently shipped broken
2358
+ * CSS in v0.13.0 its arbitrary-variant chrome reset
2359
+ * (`[&>*]:!rounded-none …`) didn't compile into `dist/styles.css`, so any
2360
+ * editor child that painted its own card (e.g. a `MentionInput` with
2361
+ * `rounded-xl border bg-input-background`) sat fully visible inside the
2362
+ * ThreadComposer's identical chrome — two stacked cards, the exact
2363
+ * "fragmented chatbox" failure mode this primitive exists to prevent.
2364
+ *
2365
+ * Usage:
2366
+ *
2367
+ * <MessageComposer
2368
+ * chips={[{ id, label, body }, …]}
2369
+ * onChipPick={(c) => editor.insertHTML(c.body)}
2370
+ * onSubmit={submit}
2371
+ * submitting={submitting}
2372
+ * loading={loading}
2373
+ * startSlot={<Switch …>Show activity</Switch>}
2374
+ * >
2375
+ * <MentionInput /> // or any editor: textarea, contenteditable, etc.
2376
+ * </MessageComposer>
2377
+ *
2378
+ * The editor goes as `children`. DS owns CHROME; the consumer owns the
2379
+ * editor implementation (Tiptap+mention in firm app, plain textarea in
2380
+ * client portal). Direct-child chrome — rounded card, border, bg, shadow —
2381
+ * is reset automatically by static rules on `[data-slot="message-composer-editor"] > *`
2382
+ * in the shipped CSS, so consumers don't neutralise anything class-by-class.
2383
+ *
2384
+ * Send is INTERNALISED. The composer owns the Send button (`primary` size
2385
+ * `sm`) and wires it to `onSubmit`. Consumers don't render a separate
2386
+ * Sendthat's the "single component" contract this primitive fulfils.
2387
+ *
2388
+ * Disabled / loading: pass `disabled` or `loading` on the root and the
2389
+ * whole card greys to 60% opacity with pointer events blocked,
2390
+ * `aria-disabled` is set, and `data-state="disabled"` is emitted for
2391
+ * analytics / CSS targeting.
2392
+ *
2393
+ * @since 0.14.0
2394
+ */
2395
+ interface QuickReplyChip {
2396
+ id: string;
2397
+ label: string;
2398
+ body: string;
2399
+ }
2400
+ interface MessageComposerProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onSubmit"> {
2401
+ /** Quick-reply chips above the editor. Auto-hides when empty/undefined. */
2402
+ chips?: QuickReplyChip[];
2403
+ /** Called when a chip is picked. Receives the full chip object. */
2404
+ onChipPick?: (chip: QuickReplyChip) => void;
2405
+ /** Render skeleton chips while templates fetch — keeps the strip from
2406
+ * popping in once data arrives. */
2407
+ chipsLoading?: boolean;
2408
+ /** Send action — wired to the built-in Send button. */
2409
+ onSubmit?: () => void;
2410
+ /** Send button label. Default: `"Send"`. */
2411
+ submitLabel?: string;
2412
+ /** Send button label while `submitting`. Default: `"Sending…"`. */
2413
+ submittingLabel?: string;
2414
+ /** Show `submittingLabel` and disable the Send button. */
2415
+ submitting?: boolean;
2416
+ /** Additional gating on the Send button (e.g. empty editor). */
2417
+ submitDisabled?: boolean;
2418
+ /** Disables the whole composer (60% opacity, blocked pointer events,
2419
+ * `aria-disabled`). Use while a fetch is in flight or the surface is
2420
+ * in a transitioning state. */
2421
+ disabled?: boolean;
2422
+ /** Alias for `disabled` — semantic for "still fetching, not yet ready
2423
+ * to edit". The two combine: composer is disabled if EITHER is true. */
2424
+ loading?: boolean;
2425
+ /** Left-of-Send slot in the footer — toggles, format buttons, presence
2426
+ * indicators, multi-action toolbars (channel dropdown + template picker
2427
+ * + attachments + AI sparkle). The communications variant fills this
2428
+ * with its full action toolbar; the rail variant typically leaves it
2429
+ * empty. */
2430
+ startSlot?: ReactNode;
2431
+ /** Optional region rendered ABOVE the chip strip and editor. Use for
2432
+ * recipient fields (email To/CC/BCC), subject lines, AI draft banners,
2433
+ * SMS phone selectors — anything the editor body responds to but isn't
2434
+ * a chip. The communications variant uses this for the recipient stack;
2435
+ * the rail variant leaves it empty.
2436
+ *
2437
+ * Header rows typically end with a hairline divider (`border-b border-rule`)
2438
+ * to separate them from each other and from the editor. The composer
2439
+ * doesn't impose this — pass your own divider styling. */
2440
+ header?: ReactNode;
2441
+ /** Optional region rendered BETWEEN the editor and the footer. Use for
2442
+ * SMS character counters, attachment chips, inline metadata. Different
2443
+ * from `startSlot` (footer-left) because this lives ABOVE the footer
2444
+ * row — it stays visible while the Send button anchors to the footer's
2445
+ * right edge. */
2446
+ belowEditor?: ReactNode;
2447
+ /** The editor — Tiptap mention input, plain textarea, contenteditable,
2448
+ * etc. Pass `showSubmitHint={false}` on any editor that surfaces its own
2449
+ * ⌘↩ hint to avoid the affordance reading duplicated alongside the
2450
+ * composer's Send button. */
2451
+ children: ReactNode;
2452
+ }
2453
+ declare const MessageComposer: React$1.ForwardRefExoticComponent<MessageComposerProps & React$1.RefAttributes<HTMLDivElement>>;
2397
2454
 
2398
2455
  /**
2399
2456
  * NotificationPanel — presentational in-app notification list (the bell
@@ -2546,4 +2603,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
2546
2603
 
2547
2604
  declare function cn(...inputs: ClassValue[]): string;
2548
2605
 
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 };
2606
+ 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, MessageComposer, type MessageComposerProps, 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, type QuickReplyChip, 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 };
package/dist/index.js CHANGED
@@ -2627,16 +2627,16 @@ function BrandIcon({
2627
2627
  );
2628
2628
  }
2629
2629
  function AssureProBrandIcon({ size = 24, ...props }) {
2630
- return /* @__PURE__ */ jsx(BrandIcon, { size, accent: "#6C42F8", title: "Assure Pro", ...props });
2630
+ return /* @__PURE__ */ jsx(BrandIcon, { size, accent: "var(--color-brand-pro)", title: "Assure Pro", ...props });
2631
2631
  }
2632
2632
  function AssureAuditBrandIcon({ size = 24, ...props }) {
2633
- return /* @__PURE__ */ jsx(BrandIcon, { size, accent: "#0066ff", title: "Assure Audit", ...props });
2633
+ return /* @__PURE__ */ jsx(BrandIcon, { size, accent: "var(--color-brand-audit)", title: "Assure Audit", ...props });
2634
2634
  }
2635
2635
  function AssureBooksBrandIcon({ size = 24, ...props }) {
2636
- return /* @__PURE__ */ jsx(BrandIcon, { size, accent: "#2da85a", title: "Assure Books", ...props });
2636
+ return /* @__PURE__ */ jsx(BrandIcon, { size, accent: "var(--color-brand-books)", title: "Assure Books", ...props });
2637
2637
  }
2638
2638
  function AssureTaxBrandIcon({ size = 24, ...props }) {
2639
- return /* @__PURE__ */ jsx(BrandIcon, { size, accent: "#e0793b", title: "Assure Tax", ...props });
2639
+ return /* @__PURE__ */ jsx(BrandIcon, { size, accent: "var(--color-brand-tax)", title: "Assure Tax", ...props });
2640
2640
  }
2641
2641
  var Breadcrumb = forwardRef(function Breadcrumb2({ className, ...props }, ref) {
2642
2642
  return /* @__PURE__ */ jsx("nav", { ref, "aria-label": "Breadcrumb", className: cn(className), ...props });
@@ -9531,72 +9531,129 @@ var MessageBubbleAction = forwardRef(
9531
9531
  MessageBubbleAction.displayName = "MessageBubble.Action";
9532
9532
  MessageBubble.Tombstone = MessageBubbleTombstone;
9533
9533
  MessageBubble.Action = MessageBubbleAction;
9534
- var ThreadComposer = forwardRef(
9535
- function ThreadComposer2({ className, children, ...props }, ref) {
9536
- return /* @__PURE__ */ jsx(
9534
+ var MessageComposer = forwardRef(
9535
+ function MessageComposer2({
9536
+ chips,
9537
+ onChipPick,
9538
+ chipsLoading = false,
9539
+ onSubmit,
9540
+ submitLabel = "Send",
9541
+ submittingLabel = "Sending\u2026",
9542
+ submitting = false,
9543
+ submitDisabled = false,
9544
+ disabled = false,
9545
+ loading = false,
9546
+ startSlot,
9547
+ header,
9548
+ belowEditor,
9549
+ className,
9550
+ children,
9551
+ ...props
9552
+ }, ref) {
9553
+ const isDisabled = disabled || loading;
9554
+ const isSubmitDisabled = isDisabled || submitting || submitDisabled;
9555
+ const showChipsRegion = chipsLoading || chips && chips.length > 0;
9556
+ const scrollerRef = useRef(null);
9557
+ const [overflow, setOverflow] = useState("none");
9558
+ useEffect(() => {
9559
+ const el = scrollerRef.current;
9560
+ if (!el || !showChipsRegion) return;
9561
+ const compute = () => {
9562
+ const canL = el.scrollLeft > 1;
9563
+ const canR = el.scrollLeft + el.clientWidth < el.scrollWidth - 1;
9564
+ setOverflow(canL && canR ? "both" : canR ? "right" : canL ? "left" : "none");
9565
+ };
9566
+ compute();
9567
+ const ro = new ResizeObserver(compute);
9568
+ ro.observe(el);
9569
+ el.addEventListener("scroll", compute, { passive: true });
9570
+ return () => {
9571
+ ro.disconnect();
9572
+ el.removeEventListener("scroll", compute);
9573
+ };
9574
+ }, [chips?.length, showChipsRegion]);
9575
+ const maskImage = overflow === "right" ? "linear-gradient(to right, black 0%, black calc(100% - 24px), transparent 100%)" : overflow === "left" ? "linear-gradient(to right, transparent 0%, black 24px, black 100%)" : overflow === "both" ? "linear-gradient(to right, transparent 0%, black 24px, black calc(100% - 24px), transparent 100%)" : "none";
9576
+ return /* @__PURE__ */ jsxs(
9537
9577
  "div",
9538
9578
  {
9539
9579
  ref,
9580
+ "data-slot": "message-composer",
9581
+ "data-state": isDisabled ? "disabled" : "idle",
9582
+ "aria-disabled": isDisabled || void 0,
9540
9583
  className: cn(
9541
9584
  "relative flex flex-col",
9542
9585
  "border-rule bg-input-background rounded-xl border",
9543
9586
  "transition-shadow duration-150",
9544
9587
  "focus-within:border-accent-ring focus-within:bg-surface focus-within:shadow-sm",
9545
- className
9546
- ),
9547
- ...props,
9548
- children
9549
- }
9550
- );
9551
- }
9552
- );
9553
- ThreadComposer.displayName = "ThreadComposer";
9554
- var ThreadComposerAccessory = forwardRef(
9555
- function ThreadComposerAccessory2({ className, children, ...props }, ref) {
9556
- return /* @__PURE__ */ jsx(
9557
- "div",
9558
- {
9559
- ref,
9560
- className: cn(
9561
- "flex shrink-0 items-center gap-1.5 overflow-x-auto px-3 pt-2",
9562
- className
9563
- ),
9564
- ...props,
9565
- children
9566
- }
9567
- );
9568
- }
9569
- );
9570
- ThreadComposerAccessory.displayName = "ThreadComposer.Accessory";
9571
- var ThreadComposerInput = forwardRef(
9572
- function ThreadComposerInput2({ className, children, ...props }, ref) {
9573
- return /* @__PURE__ */ jsx("div", { ref, className: cn("min-h-0 flex-1 px-1 pt-1", className), ...props, children });
9574
- }
9575
- );
9576
- ThreadComposerInput.displayName = "ThreadComposer.Input";
9577
- var ThreadComposerFooter = forwardRef(
9578
- function ThreadComposerFooter2({ start, end, className, ...props }, ref) {
9579
- return /* @__PURE__ */ jsxs(
9580
- "div",
9581
- {
9582
- ref,
9583
- className: cn(
9584
- "flex shrink-0 items-center justify-between gap-2 px-3 pb-2.5 pt-1.5",
9588
+ isDisabled && "pointer-events-none opacity-60",
9585
9589
  className
9586
9590
  ),
9587
9591
  ...props,
9588
9592
  children: [
9589
- /* @__PURE__ */ jsx("div", { className: "flex min-w-0 items-center gap-2", children: start }),
9590
- /* @__PURE__ */ jsx("div", { className: "flex shrink-0 items-center gap-1.5", children: end })
9593
+ header && /* @__PURE__ */ jsx("div", { "data-slot": "message-composer-header", className: "shrink-0", children: header }),
9594
+ showChipsRegion && /* @__PURE__ */ jsx("div", { className: "flex shrink-0 items-center px-2.5 pt-2 pb-1.5", children: /* @__PURE__ */ jsx(
9595
+ "div",
9596
+ {
9597
+ ref: scrollerRef,
9598
+ "data-slot": "message-composer-chips",
9599
+ className: "flex w-full gap-1.5 overflow-x-auto",
9600
+ style: { maskImage, WebkitMaskImage: maskImage },
9601
+ children: chipsLoading ? Array.from({ length: 3 }).map((_, i) => /* @__PURE__ */ jsx(
9602
+ "div",
9603
+ {
9604
+ "aria-hidden": "true",
9605
+ className: "bg-bg-3 h-6 w-20 shrink-0 animate-pulse rounded-full"
9606
+ },
9607
+ i
9608
+ )) : chips.map((chip) => /* @__PURE__ */ jsx(
9609
+ "button",
9610
+ {
9611
+ type: "button",
9612
+ onClick: () => onChipPick?.(chip),
9613
+ title: chip.label,
9614
+ className: cn(
9615
+ "inline-flex h-6 shrink-0 items-center rounded-full px-2.5",
9616
+ "text-[11px] font-medium text-fg-2",
9617
+ "bg-bg-2 transition-colors hover:bg-bg-3 hover:text-fg",
9618
+ "focus-visible:outline-none focus-visible:[box-shadow:var(--shadow-focus-ring)]"
9619
+ ),
9620
+ children: chip.label
9621
+ },
9622
+ chip.id
9623
+ ))
9624
+ }
9625
+ ) }),
9626
+ /* @__PURE__ */ jsx("div", { "data-slot": "message-composer-editor", className: "min-h-0 flex-1", children }),
9627
+ belowEditor && /* @__PURE__ */ jsx("div", { "data-slot": "message-composer-below-editor", className: "shrink-0", children: belowEditor }),
9628
+ /* @__PURE__ */ jsxs(
9629
+ "div",
9630
+ {
9631
+ "data-slot": "message-composer-footer",
9632
+ className: "flex shrink-0 items-center justify-between gap-2 px-2 pb-1.5 pt-1",
9633
+ children: [
9634
+ /* @__PURE__ */ jsx("div", { className: "flex min-w-0 items-center gap-2", children: startSlot }),
9635
+ /* @__PURE__ */ jsxs(
9636
+ Button,
9637
+ {
9638
+ size: "sm",
9639
+ disabled: isSubmitDisabled,
9640
+ onClick: onSubmit,
9641
+ className: "gap-1.5",
9642
+ children: [
9643
+ /* @__PURE__ */ jsx(SendIcon, { size: 14, "aria-hidden": "true" }),
9644
+ submitting ? submittingLabel : submitLabel
9645
+ ]
9646
+ }
9647
+ )
9648
+ ]
9649
+ }
9650
+ )
9591
9651
  ]
9592
9652
  }
9593
9653
  );
9594
9654
  }
9595
9655
  );
9596
- ThreadComposerFooter.displayName = "ThreadComposer.Footer";
9597
- ThreadComposer.Accessory = ThreadComposerAccessory;
9598
- ThreadComposer.Input = ThreadComposerInput;
9599
- ThreadComposer.Footer = ThreadComposerFooter;
9656
+ MessageComposer.displayName = "MessageComposer";
9600
9657
  var NotificationPanel = forwardRef(
9601
9658
  function NotificationPanel2({ className, children, ...props }, ref) {
9602
9659
  return /* @__PURE__ */ jsx("div", { ref, className: cn("bg-surface text-fg flex w-full flex-col", className), ...props, children });
@@ -9881,6 +9938,6 @@ var KbdHint = forwardRef(function KbdHint2({ className, children, ...props }, re
9881
9938
  });
9882
9939
  KbdHint.displayName = "KbdHint";
9883
9940
 
9884
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityEventItem, ActivityItem, ActivityList, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, AppHeaderBreadcrumb, AppHeaderSearch, AppHeaderTitle, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, Avatar, Badge, BarChartIcon, BellIcon, Blockquote, BoldIcon, Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BriefcaseIcon, Building2Icon, BuildingIcon, Button, Calendar, CalendarIcon, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientSelect, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, CommandIcon, CommandPalette, ConfirmActionButton, Content15 as Content, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, DataItem, DataTable, DataTableBody, DataTableCell, DataTableCellDue, DataTableCellId, DataTableCellMono, DataTableCellName, DataTableCheckbox, DataTableHead, DataTableHeader, DataTablePagination, DataTableResultsCount, DataTableRow, DataTableSearch, DataTableSpacer, DataTableToolbar, DatePicker, DateRangePicker, DetailGrid, DetailMain, DetailSpine, DetailSpineHeader, DetailSpineSection, DetailSpineStats, 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, EyeIcon, EyeOffIcon, Eyebrow, FileIcon, FileReturnIcon, FileTextIcon, FileUpload, FilterChip, FilterIcon, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, ItalicIcon, Kanban, KanbanCard, KanbanColumn, KanbanIcon, KbdHint, KeyIcon, KeyboardShortcutsDialog, KpiCard, Label4 as Label, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, MapPinIcon, MenuIcon, MessageBubble, MessageBubbleAction, MessageBubbleTombstone, MessageCircleIcon, MessageCircleWarningIcon, MetadataGrid, MicrosoftBrandIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, NotificationFilter, NotificationItem, NotificationList, NotificationPanel, NotificationPanelHeader, Numeric, OTPInput, PageHeader, PageHeaderSep, PageHeaderSpec, Pagination, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PenSignIcon, PencilIcon, PhoneIcon, PhoneInput, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, PriorityIcon, ProgressBar, ProgressRing, RadioGroup3 as RadioGroup, RadioGroupItem, ReceiptIcon, ReplyIcon, RotateCcwIcon, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, SearchSelect, SecondaryAction, Section, SectionHead, SectionHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SendIcon, Separator4 as Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, SidebarBrandSwitcher, SidebarBrandSwitcherTile, SidebarBrandText, SidebarFooter, SidebarLink, SidebarLinkAction, SidebarLinkBadge, SidebarLinkGroup, SidebarLinkLabel, SidebarPinButton, SidebarProvider, SidebarSection, SidebarTrigger, SidebarUser, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, SparkleIcon, SparklesIcon, StarIcon, StarRating, Stat, StatusIcon, Stepper, StrikethroughIcon, SubmitButton, SunIcon, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableIcon, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TeamIcon, TeamMemberSelect, Textarea, ThreadComposer, ThreadComposerAccessory, ThreadComposerFooter, ThreadComposerInput, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, 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, colors, dateToIso, displayToIso, filterChipVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, progressBarVariants, progressRingVariants, radii, reference, searchInputVariants, shadows, sidebarLinkBadgeVariants, spacing, starRatingVariants, surfaces, systemTokens, textareaVariants, typography, useSidebarPeekLock, useSidebarState, useToast, yearToIso };
9941
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, ActivityEventItem, ActivityItem, ActivityList, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, AppHeaderBreadcrumb, AppHeaderSearch, AppHeaderTitle, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, Avatar, Badge, BarChartIcon, BellIcon, Blockquote, BoldIcon, Breadcrumb, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, BriefcaseIcon, Building2Icon, BuildingIcon, Button, Calendar, CalendarIcon, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientSelect, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, CommandIcon, CommandPalette, ConfirmActionButton, Content15 as Content, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, DataItem, DataTable, DataTableBody, DataTableCell, DataTableCellDue, DataTableCellId, DataTableCellMono, DataTableCellName, DataTableCheckbox, DataTableHead, DataTableHeader, DataTablePagination, DataTableResultsCount, DataTableRow, DataTableSearch, DataTableSpacer, DataTableToolbar, DatePicker, DateRangePicker, DetailGrid, DetailMain, DetailSpine, DetailSpineHeader, DetailSpineSection, DetailSpineStats, 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, EyeIcon, EyeOffIcon, Eyebrow, FileIcon, FileReturnIcon, FileTextIcon, FileUpload, FilterChip, FilterIcon, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, ItalicIcon, Kanban, KanbanCard, KanbanColumn, KanbanIcon, KbdHint, KeyIcon, KeyboardShortcutsDialog, KpiCard, Label4 as Label, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, MapPinIcon, MenuIcon, MessageBubble, MessageBubbleAction, MessageBubbleTombstone, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, MetadataGrid, MicrosoftBrandIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, NotificationFilter, NotificationItem, NotificationList, NotificationPanel, NotificationPanelHeader, Numeric, OTPInput, PageHeader, PageHeaderSep, PageHeaderSpec, Pagination, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PenSignIcon, PencilIcon, PhoneIcon, PhoneInput, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, PriorityIcon, ProgressBar, ProgressRing, RadioGroup3 as RadioGroup, RadioGroupItem, ReceiptIcon, ReplyIcon, RotateCcwIcon, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, SearchSelect, SecondaryAction, Section, SectionHead, SectionHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SendIcon, Separator4 as Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, SidebarBrandSwitcher, SidebarBrandSwitcherTile, SidebarBrandText, SidebarFooter, SidebarLink, SidebarLinkAction, SidebarLinkBadge, SidebarLinkGroup, SidebarLinkLabel, SidebarPinButton, SidebarProvider, SidebarSection, SidebarTrigger, SidebarUser, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, SparkleIcon, SparklesIcon, StarIcon, StarRating, Stat, StatusIcon, Stepper, StrikethroughIcon, SubmitButton, SunIcon, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableIcon, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TeamIcon, TeamMemberSelect, Textarea, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, 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, colors, dateToIso, displayToIso, filterChipVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, progressBarVariants, progressRingVariants, radii, reference, searchInputVariants, shadows, sidebarLinkBadgeVariants, spacing, starRatingVariants, surfaces, systemTokens, textareaVariants, typography, useSidebarPeekLock, useSidebarState, useToast, yearToIso };
9885
9942
  //# sourceMappingURL=index.js.map
9886
9943
  //# sourceMappingURL=index.js.map