@assure-one/design-system 1.4.3 → 1.5.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
@@ -1,6 +1,6 @@
1
1
  export { ColorName, ReferenceTokens, SystemTokens, colors, radii, reference, shadows, spacing, surfaces, systemTokens, typography } from './tokens/index.js';
2
2
  import * as React$1 from 'react';
3
- import { CSSProperties, ReactNode } from 'react';
3
+ import { ReactNode, CSSProperties } from 'react';
4
4
  import * as AccordionPrimitive from '@radix-ui/react-accordion';
5
5
  import * as react_jsx_runtime from 'react/jsx-runtime';
6
6
  import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
@@ -2193,6 +2193,82 @@ interface VisuallyHiddenProps extends React.ComponentPropsWithoutRef<typeof Visu
2193
2193
  }
2194
2194
  declare const VisuallyHidden: React$1.ForwardRefExoticComponent<VisuallyHiddenProps & React$1.RefAttributes<HTMLSpanElement>>;
2195
2195
 
2196
+ /**
2197
+ * ChannelTabs — a controlled, pill-style tab strip for switching between
2198
+ * communication channels (Chat / Email / SMS / Internal) on a thread surface.
2199
+ *
2200
+ * Each tab carries a colored status dot (toned per channel) and an optional
2201
+ * unread count. The active tab gets the accent ring treatment; inactive tabs
2202
+ * are quiet until hovered. The component is presentational and fully
2203
+ * controlled — the consumer owns the active value and maps it to whatever
2204
+ * backend channel group / compose channel the tab represents.
2205
+ *
2206
+ * <ChannelTabs
2207
+ * value={tab}
2208
+ * onChange={setTab}
2209
+ * tabs={[
2210
+ * { value: "chat", label: "Chat", tone: "success", count: 2 },
2211
+ * { value: "email", label: "Email", tone: "info" },
2212
+ * { value: "sms", label: "SMS", tone: "accent" },
2213
+ * ]}
2214
+ * />
2215
+ *
2216
+ * @since 1.5.0
2217
+ */
2218
+ /** Status-dot tone for a channel tab. Maps to a semantic color token. */
2219
+ type ChannelTone = "brand" | "info" | "success" | "warning" | "muted" | "danger";
2220
+ interface ChannelTabItem {
2221
+ /** Stable identifier passed back to `onChange`. */
2222
+ value: string;
2223
+ /** Visible label. */
2224
+ label: string;
2225
+ /** Status-dot tone. Defaults to `muted`. */
2226
+ tone?: ChannelTone;
2227
+ /** Optional unread count — hidden when `0` or `undefined`. */
2228
+ count?: number;
2229
+ }
2230
+ interface ChannelTabsProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "onChange"> {
2231
+ /** The tabs to render. */
2232
+ tabs: ChannelTabItem[];
2233
+ /** Currently active tab `value`. */
2234
+ value: string;
2235
+ /** Fired with the picked tab's `value`. */
2236
+ onChange: (value: string) => void;
2237
+ }
2238
+ declare function ChannelTabs({ tabs, value, onChange, className, ...props }: ChannelTabsProps): react_jsx_runtime.JSX.Element;
2239
+ declare namespace ChannelTabs {
2240
+ var displayName: string;
2241
+ }
2242
+
2243
+ /**
2244
+ * IntentBadge — a small dashed-outline badge for an AI-classified intent
2245
+ * (Document, Question, Payment, Scheduling, Urgent, FYI, Follow-up…).
2246
+ *
2247
+ * The dashed border is the signature: it reads as "machine-suggested, not
2248
+ * yet confirmed", distinguishing it from the solid `StatusPill` used for
2249
+ * authoritative state. Presentational and generic — the consumer owns the
2250
+ * intent→tone→icon→label mapping in their own domain config and passes the
2251
+ * resolved pieces in.
2252
+ *
2253
+ * <IntentBadge tone="info" icon={<FileIcon size={12} />}>Document</IntentBadge>
2254
+ *
2255
+ * @since 1.5.0
2256
+ */
2257
+ /** Color tone for an intent badge. */
2258
+ type IntentTone = "brand" | "info" | "primary" | "success" | "warning" | "danger" | "muted";
2259
+ interface IntentBadgeProps extends Omit<React.HTMLAttributes<HTMLSpanElement>, "children"> {
2260
+ /** Color tone. Defaults to `muted`. */
2261
+ tone?: IntentTone;
2262
+ /** Optional leading glyph — pass a 12px icon. */
2263
+ icon?: ReactNode;
2264
+ /** Badge label. */
2265
+ children: ReactNode;
2266
+ }
2267
+ declare function IntentBadge({ tone, icon, children, className, ...props }: IntentBadgeProps): react_jsx_runtime.JSX.Element;
2268
+ declare namespace IntentBadge {
2269
+ var displayName: string;
2270
+ }
2271
+
2196
2272
  /**
2197
2273
  * AIReceiptPanel — the portal "attach a receipt, auto-fill with AI" panel.
2198
2274
  * Three states drive the whole surface:
@@ -3806,6 +3882,226 @@ declare const Eyebrow: React$1.ForwardRefExoticComponent<EyebrowProps & React$1.
3806
3882
  type KbdHintProps = React.HTMLAttributes<HTMLElement>;
3807
3883
  declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.RefAttributes<HTMLElement>>;
3808
3884
 
3885
+ /**
3886
+ * SuggestionPills — a horizontal strip of AI quick-reply pills, typically
3887
+ * floated above a message composer when the last inbound message warrants a
3888
+ * fast response.
3889
+ *
3890
+ * The pills materialise with a staggered "magic smoke" entrance (the bar
3891
+ * rises, the sparkle pulses, each pill puffs in) driven by the shipped
3892
+ * `.ds-suggestion-*` classes — motion is suppressed under
3893
+ * `prefers-reduced-motion`. Presentational and controlled: the consumer
3894
+ * supplies the suggestion strings and a pick handler.
3895
+ *
3896
+ * <SuggestionPills
3897
+ * suggestions={["Sounds good — thanks!", "Could you send the W-2?"]}
3898
+ * onPick={(text) => editor.insert(text)}
3899
+ * loading={generating}
3900
+ * />
3901
+ *
3902
+ * Returns `null` when not loading and there are no suggestions, so it can be
3903
+ * rendered unconditionally.
3904
+ *
3905
+ * @since 1.5.0
3906
+ */
3907
+ interface SuggestionPillsProps {
3908
+ /** Suggestion strings to render as pills. */
3909
+ suggestions: string[];
3910
+ /** Fired with the picked suggestion text. */
3911
+ onPick: (text: string) => void;
3912
+ /** Show skeleton pills while suggestions are being generated. */
3913
+ loading?: boolean;
3914
+ /** Strip label. Default: `"Smart replies"`. */
3915
+ label?: string;
3916
+ /** Extra classes on the bar. */
3917
+ className?: string;
3918
+ }
3919
+ declare function SuggestionPills({ suggestions, onPick, loading, label, className, }: SuggestionPillsProps): react_jsx_runtime.JSX.Element | null;
3920
+ declare namespace SuggestionPills {
3921
+ var displayName: string;
3922
+ }
3923
+
3924
+ /**
3925
+ * AiDraftCard — the "lit-from-within" slab that presents an AI-generated
3926
+ * message draft inside a composer.
3927
+ *
3928
+ * It owns four visual states behind one prop:
3929
+ * - `loading` / `refining` — a sparkle + shimmer skeleton over the flowing
3930
+ * neon `.ds-ai-surface`.
3931
+ * - `error` — a quiet destructive panel with an optional Retry and a
3932
+ * Dismiss.
3933
+ * - `ready` — the collapsible draft: header (sparkle, "AI Draft",
3934
+ * optional context line, collapse toggle), an optional subject line, the
3935
+ * draft `children`, and a footer `actions` slot.
3936
+ *
3937
+ * Presentational only — the consumer supplies the draft text as `children`
3938
+ * and the action buttons (Insert / Regenerate / Shorter / …) as `actions`.
3939
+ * The card re-expands automatically whenever fresh `children` arrive (keyed
3940
+ * off `resetCollapseKey`) so a refined draft is never hidden behind a stale
3941
+ * collapsed state.
3942
+ *
3943
+ * <AiDraftCard
3944
+ * state="ready"
3945
+ * contextLine="Replying to Jane"
3946
+ * subject="Re: Your 2024 return"
3947
+ * resetCollapseKey={draftText}
3948
+ * actions={<><Button size="sm">Insert</Button>…</>}
3949
+ * >
3950
+ * <p className="whitespace-pre-wrap">{draftText}</p>
3951
+ * </AiDraftCard>
3952
+ *
3953
+ * @since 1.5.0
3954
+ */
3955
+ type AiDraftState = "loading" | "refining" | "error" | "ready";
3956
+ interface AiDraftCardProps {
3957
+ /** Which visual state to render. */
3958
+ state: AiDraftState;
3959
+ /** Header title. Default: `"AI Draft"`. */
3960
+ title?: string;
3961
+ /** Optional muted context line in the header (e.g. "Replying to Jane"). */
3962
+ contextLine?: ReactNode;
3963
+ /** Optional bold subject line shown above the body (email drafts). */
3964
+ subject?: ReactNode;
3965
+ /** The draft body — typically a `<p className="whitespace-pre-wrap">`. */
3966
+ children?: ReactNode;
3967
+ /** Footer action buttons (Insert / Regenerate / Discard …). */
3968
+ actions?: ReactNode;
3969
+ /** Error message — shown when `state="error"`. */
3970
+ error?: ReactNode;
3971
+ /** Retry handler — adds a Retry button to the error panel. */
3972
+ onRetry?: () => void;
3973
+ /** Dismiss handler for the error panel. */
3974
+ onDismiss?: () => void;
3975
+ /** Re-expands the card whenever this value changes (pass the draft text so
3976
+ * a freshly generated/refined draft is always revealed). */
3977
+ resetCollapseKey?: unknown;
3978
+ className?: string;
3979
+ }
3980
+ declare function AiDraftCard({ state, title, contextLine, subject, children, actions, error, onRetry, onDismiss, resetCollapseKey, className, }: AiDraftCardProps): react_jsx_runtime.JSX.Element;
3981
+ declare namespace AiDraftCard {
3982
+ var displayName: string;
3983
+ }
3984
+
3985
+ /**
3986
+ * EmailMessageCard — renders an email message as an envelope-style card
3987
+ * (header strip / readable body / footer) inside a conversation thread,
3988
+ * replacing the "rich HTML stuffed into a chat bubble" anti-pattern.
3989
+ *
3990
+ * Anatomy:
3991
+ * - a meta line ("Name via Email · 3:42 PM") above the card,
3992
+ * - a tinted header strip with a mail glyph, the "EMAIL" eyebrow, the
3993
+ * subject, a "From …" / optional "Cc N" sub-line, and the time,
3994
+ * - a readable body (`children`) that auto-clamps past `clampHeight` with a
3995
+ * gradient fade and a "Show full email" toggle,
3996
+ * - an optional footer carrying `attachments`, a `status` slot, and
3997
+ * `actions` (e.g. a Reply button).
3998
+ *
3999
+ * Presentational only. The consumer sanitises and renders the email HTML as
4000
+ * `children`, supplies the avatar, and brings its own attachment chips /
4001
+ * status indicator / Reply control via slots. Direction flips the layout:
4002
+ * outbound aligns right with a brand-tinted border; inbound aligns left.
4003
+ *
4004
+ * <EmailMessageCard
4005
+ * direction="inbound"
4006
+ * senderName="Jane Cooper"
4007
+ * subject="Question about my W-2"
4008
+ * time="3:42 PM"
4009
+ * avatar={<Avatar name="Jane Cooper" size="xs" />}
4010
+ * ccCount={2}
4011
+ * attachments={<AttachmentChip … />}
4012
+ * actions={<Button size="sm" variant="outline">Reply</Button>}
4013
+ * >
4014
+ * <div dangerouslySetInnerHTML={{ __html: safeHtml }} />
4015
+ * </EmailMessageCard>
4016
+ *
4017
+ * @since 1.5.0
4018
+ */
4019
+ interface EmailMessageCardProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "children"> {
4020
+ /** Message direction — flips alignment and border treatment. */
4021
+ direction: "inbound" | "outbound";
4022
+ /** Sender display name. */
4023
+ senderName: string;
4024
+ /** Email subject — omitted for replies without one. */
4025
+ subject?: string;
4026
+ /** Pre-formatted send time (e.g. "3:42 PM"). */
4027
+ time: string;
4028
+ /** Channel label in the meta line. Default: `"Email"`. */
4029
+ via?: string;
4030
+ /** Avatar node — rendered for inbound messages only. */
4031
+ avatar?: ReactNode;
4032
+ /** Cc recipient count — shows a "Cc N" indicator when > 0. */
4033
+ ccCount?: number;
4034
+ /** Sanitised email body (HTML node or plain text). */
4035
+ children: ReactNode;
4036
+ /** Footer attachment chips. */
4037
+ attachments?: ReactNode;
4038
+ /** Footer status slot (delivery state). */
4039
+ status?: ReactNode;
4040
+ /** Footer actions (e.g. Reply). */
4041
+ actions?: ReactNode;
4042
+ /** Body height (px) above which the clamp/expand toggle appears. Default 240. */
4043
+ clampHeight?: number;
4044
+ }
4045
+ declare function EmailMessageCard({ direction, senderName, subject, time, via, avatar, ccCount, children, attachments, status, actions, clampHeight, className, ...props }: EmailMessageCardProps): react_jsx_runtime.JSX.Element;
4046
+ declare namespace EmailMessageCard {
4047
+ var displayName: string;
4048
+ }
4049
+
4050
+ /**
4051
+ * SignatureEditor — the panel chrome for editing a personal email signature
4052
+ * (rich text, links, and an inline banner image). Designed to live inside a
4053
+ * Popover anchored to a "Pen" affordance in the email composer, but it's just
4054
+ * a self-contained card so it works in a Dialog or settings page too.
4055
+ *
4056
+ * Like `MessageComposer`, DS owns the CHROME and the consumer owns the
4057
+ * EDITOR: pass your rich-text editor (Tiptap, contenteditable, etc.) as
4058
+ * `children`. The panel supplies the titled header with an "Add image"
4059
+ * action, a body region (with a loading skeleton), and a Save / Insert
4060
+ * footer. All actions are slots/handlers — persistence, image upload, and
4061
+ * insertion logic stay with the consumer.
4062
+ *
4063
+ * <Popover>
4064
+ * <PopoverContent className="w-96 p-0">
4065
+ * <SignatureEditor
4066
+ * loading={loading}
4067
+ * addingImage={uploading}
4068
+ * onAddImage={pickImage}
4069
+ * saving={saving}
4070
+ * onSave={save}
4071
+ * onInsert={insert}
4072
+ * >
4073
+ * <RichTextEditor ref={editorRef} />
4074
+ * </SignatureEditor>
4075
+ * </PopoverContent>
4076
+ * </Popover>
4077
+ *
4078
+ * @since 1.5.0
4079
+ */
4080
+ interface SignatureEditorProps {
4081
+ /** Panel title. Default: `"Email signature"`. */
4082
+ title?: string;
4083
+ /** The editor — a rich-text input the consumer owns. */
4084
+ children: ReactNode;
4085
+ /** Show a loading skeleton in place of the editor (while the saved
4086
+ * signature is being fetched). */
4087
+ loading?: boolean;
4088
+ /** "Add image" handler — hides the button when omitted. */
4089
+ onAddImage?: () => void;
4090
+ /** Spinner + disabled state on the "Add image" button while uploading. */
4091
+ addingImage?: boolean;
4092
+ /** Save handler — hides the Save button when omitted. */
4093
+ onSave?: () => void;
4094
+ /** Spinner + disabled state on Save. */
4095
+ saving?: boolean;
4096
+ /** Insert handler — hides the Insert button when omitted. */
4097
+ onInsert?: () => void;
4098
+ className?: string;
4099
+ }
4100
+ declare function SignatureEditor({ title, children, loading, onAddImage, addingImage, onSave, saving, onInsert, className, }: SignatureEditorProps): react_jsx_runtime.JSX.Element;
4101
+ declare namespace SignatureEditor {
4102
+ var displayName: string;
4103
+ }
4104
+
3809
4105
  declare function cn(...inputs: ClassValue[]): string;
3810
4106
 
3811
- export { AIReceiptPanel, type AIReceiptPanelProps, type AIReceiptResult, 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, AreaChart, type AreaChartProps, type AreaPoint, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, type AttachmentChipProps, AttentionItem, type AttentionItemProps, type AttentionUrgency, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, type BrandIconProps, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, type BulkActionBarActionProps, type BulkActionBarProps, BulkActionBarSeparator, type BulkActionBarVariant, Button, type ButtonProps, COUNTRY_CODES, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, CategoryDivider, type CategoryDividerProps, CategoryTag, type CategoryTagProps, type CategoryTone, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, type ClientRailGroupHeaderProps, ClientRailItem, type ClientRailItemProps, 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, type CountryCode, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, DashGrid, type DashGridProps, type DashWidget, 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, DocumentFileCard, type DocumentFileCardProps, DocumentFileRow, type DocumentFileRowProps, DocumentIcon, type DocumentItemState, DocumentRequestField, type DocumentRequestFieldProps, DocumentsWorkspaceLayout, type DocumentsWorkspaceLayoutProps, DollarSignIcon, DonutChart, type DonutChartProps, type DonutSegment, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, EngagementCard, type EngagementCardProps, EngagementTimeline, type EngagementTimelineProps, EngagementTimelineStep, type EngagementTimelineStepProps, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileChip, type FileChipProps, FileIcon, type FileKind, FileReturnIcon, FileTextIcon, FileTypeBadge, type FileTypeBadgeProps, type FileTypeTone, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, IconTile, type IconTileProps, 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, type KpiCardProps, type KpiDelta, Label, LandmarkIcon, 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, MasterDetailLayout, type MasterDetailLayoutProps, MenuIcon, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, type MessageComposerProps, MetadataGrid, MicrosoftBrandIcon, MinusIcon, type MissingDocumentItem, MissingDocumentsPanel, type MissingDocumentsPanelProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NewMenu, type NewMenuAction, type NewMenuGroup, type NewMenuProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelFooter, type NotificationPanelFooterProps, 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, PauseIcon, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, type PillStatus, PlayIcon, 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, type RankedBar, RankedBars, type RankedBarsProps, ReceiptIcon, ReplyIcon, ResponsiveDialog, type ResponsiveDialogProps, RotateCcwIcon, RouteTransition, type RouteTransitionProps, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, SegmentedProgress, type SegmentedProgressProps, type SegmentedTone, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, type ServiceTone, 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, Spinner, type SpinnerProps, StarIcon, StarRating, type StarRatingProps, Stat, StatusDot, type StatusDotProps, StatusIcon, type StatusIconProps, StatusPill, type StatusPillProps, type StatusState, type Step, Stepper, type StepperProps, StickyActionBar, type StickyActionBarProps, StopIcon, StrikethroughIcon, SubmitButton, SuiteProgress, type SuiteProgressProps, type SuiteProgressSize, type SuiteProgressTone, 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, TimeLogger, TimeLoggerActions, type TimeLoggerActionsProps, TimeLoggerBillable, type TimeLoggerBillableProps, TimeLoggerContextRow, type TimeLoggerContextRowProps, TimeLoggerEntry, TimeLoggerEntryList, type TimeLoggerEntryListProps, type TimeLoggerEntryProps, TimeLoggerField, type TimeLoggerFieldProps, TimeLoggerFooter, type TimeLoggerFooterProps, TimeLoggerHeader, type TimeLoggerHeaderProps, TimeLoggerNotes, type TimeLoggerNotesProps, type TimeLoggerPhase, type TimeLoggerProps, type TimeLoggerTier, TimeLoggerTimer, type TimeLoggerTimerProps, type TimelineState, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, type UseStopwatchReturn, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, attachmentChipVariants, badgeVariants, buttonVariants, cardVariants, cn, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, serviceToneLabel, serviceToneStyle, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };
4107
+ export { AIReceiptPanel, type AIReceiptPanelProps, type AIReceiptResult, Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityEventItem, type ActivityEventItemProps, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, AiDraftCard, type AiDraftCardProps, type AiDraftState, 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, AreaChart, type AreaChartProps, type AreaPoint, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, AssureAuditBrandIcon, AssureBooksBrandIcon, AssureProBrandIcon, AssureTaxBrandIcon, AtSignIcon, AttachmentChip, type AttachmentChipProps, AttentionItem, type AttentionItemProps, type AttentionUrgency, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, BottomNav, type BottomNavProps, type BottomNavTab, type BrandIconProps, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, BulkActionBar, BulkActionBarAction, type BulkActionBarActionProps, type BulkActionBarProps, BulkActionBarSeparator, type BulkActionBarVariant, Button, type ButtonProps, COUNTRY_CODES, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, CategoryDivider, type CategoryDividerProps, CategoryTag, type CategoryTagProps, type CategoryTone, type ChannelTabItem, ChannelTabs, type ChannelTabsProps, type ChannelTone, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientRailGroupHeader, type ClientRailGroupHeaderProps, ClientRailItem, type ClientRailItemProps, 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, type CountryCode, CountryFlag, CountrySelect, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, DashGrid, type DashGridProps, type DashWidget, 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, DocumentFileCard, type DocumentFileCardProps, DocumentFileRow, type DocumentFileRowProps, DocumentIcon, type DocumentItemState, DocumentRequestField, type DocumentRequestFieldProps, DocumentsWorkspaceLayout, type DocumentsWorkspaceLayoutProps, DollarSignIcon, DonutChart, type DonutChartProps, type DonutSegment, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailMessageCard, type EmailMessageCardProps, EmptyState, type EmptyStateProps, EngagementCard, type EngagementCardProps, EngagementTimeline, type EngagementTimelineProps, EngagementTimelineStep, type EngagementTimelineStepProps, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileChip, type FileChipProps, FileIcon, type FileKind, FileReturnIcon, FileTextIcon, FileTypeBadge, type FileTypeBadgeProps, type FileTypeTone, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, type FolderNode, FolderOpenIcon, FolderPlusIcon, FolderTree, type FolderTreeProps, FolderUpIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, IconTile, type IconTileProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputVariants, IntentBadge, type IntentBadgeProps, type IntentTone, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, type KpiCardProps, type KpiDelta, Label, LandmarkIcon, 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, MasterDetailLayout, type MasterDetailLayoutProps, MenuIcon, MessageBubble, MessageBubbleAction, type MessageBubbleActionProps, type MessageBubbleProps, MessageBubbleTombstone, type MessageBubbleTombstoneProps, MessageCircleIcon, MessageCircleWarningIcon, MessageComposer, type MessageComposerProps, MetadataGrid, MicrosoftBrandIcon, MinusIcon, type MissingDocumentItem, MissingDocumentsPanel, type MissingDocumentsPanelProps, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NewMenu, type NewMenuAction, type NewMenuGroup, type NewMenuProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelFooter, type NotificationPanelFooterProps, 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, PauseIcon, PenSignIcon, PenToolIcon, PencilIcon, PhoneCountryInput, PhoneIcon, PhoneInput, type PillStatus, PlayIcon, 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, type RankedBar, RankedBars, type RankedBarsProps, ReceiptIcon, ReplyIcon, ResponsiveDialog, type ResponsiveDialogProps, RotateCcwIcon, RouteTransition, type RouteTransitionProps, SERVICE_TONES, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, SegmentedProgress, type SegmentedProgressProps, type SegmentedTone, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SelectableKpiCard, type SelectableKpiCardProps, SendIcon, Separator, type ServiceTone, 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, SignatureEditor, type SignatureEditorProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, Spinner, type SpinnerProps, StarIcon, StarRating, type StarRatingProps, Stat, StatusDot, type StatusDotProps, StatusIcon, type StatusIconProps, StatusPill, type StatusPillProps, type StatusState, type Step, Stepper, type StepperProps, StickyActionBar, type StickyActionBarProps, StopIcon, StrikethroughIcon, SubmitButton, SuggestionPills, type SuggestionPillsProps, SuiteProgress, type SuiteProgressProps, type SuiteProgressSize, type SuiteProgressTone, 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, TimeLogger, TimeLoggerActions, type TimeLoggerActionsProps, TimeLoggerBillable, type TimeLoggerBillableProps, TimeLoggerContextRow, type TimeLoggerContextRowProps, TimeLoggerEntry, TimeLoggerEntryList, type TimeLoggerEntryListProps, type TimeLoggerEntryProps, TimeLoggerField, type TimeLoggerFieldProps, TimeLoggerFooter, type TimeLoggerFooterProps, TimeLoggerHeader, type TimeLoggerHeaderProps, TimeLoggerNotes, type TimeLoggerNotesProps, type TimeLoggerPhase, type TimeLoggerProps, type TimeLoggerTier, TimeLoggerTimer, type TimeLoggerTimerProps, type TimelineState, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, type UseStopwatchReturn, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, attachmentChipVariants, badgeVariants, buttonVariants, cardVariants, cn, dateToIso, displayToIso, fileTypeBadgeVariants, fileTypeFromName, filterChipVariants, formatClock, formatCurrency, formatDuration, getFlagEmoji, iconTileVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, parseDuration, parsePhoneForEditing, progressBarVariants, progressRingVariants, searchInputVariants, serviceToneLabel, serviceToneStyle, sidebarLinkBadgeVariants, spinnerVariants, starRatingVariants, statusDotVariants, suiteProgressFillVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useStopwatch, useToast, yearToIso };