@assure-one/design-system 0.11.2 → 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 +150 -2
- package/dist/index.js +217 -7
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
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" | "
|
|
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> {
|
|
@@ -2198,9 +2206,20 @@ declare const DetailMain: React$1.ForwardRefExoticComponent<DetailMainProps & Re
|
|
|
2198
2206
|
/**
|
|
2199
2207
|
* ActivityList — vertical feed of activity rows.
|
|
2200
2208
|
*
|
|
2209
|
+
* Two row variants ship from this file:
|
|
2210
|
+
*
|
|
2201
2211
|
* <ActivityList>
|
|
2212
|
+
* {/* "Anna filed 1120S — 2h ago" — actor-led, used for audit feeds *}
|
|
2202
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" />
|
|
2203
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").
|
|
2204
2223
|
*/
|
|
2205
2224
|
type ActivityListProps = React.HTMLAttributes<HTMLUListElement>;
|
|
2206
2225
|
declare const ActivityList: React$1.ForwardRefExoticComponent<ActivityListProps & React$1.RefAttributes<HTMLUListElement>>;
|
|
@@ -2213,6 +2232,18 @@ interface ActivityItemProps extends Omit<React.LiHTMLAttributes<HTMLLIElement>,
|
|
|
2213
2232
|
time: string;
|
|
2214
2233
|
}
|
|
2215
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>>;
|
|
2216
2247
|
|
|
2217
2248
|
/**
|
|
2218
2249
|
* Kanban — flex container for board columns.
|
|
@@ -2247,6 +2278,123 @@ interface KanbanCardProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
2247
2278
|
}
|
|
2248
2279
|
declare const KanbanCard: React$1.ForwardRefExoticComponent<KanbanCardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
2249
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
|
+
|
|
2250
2398
|
/**
|
|
2251
2399
|
* NotificationPanel — presentational in-app notification list (the bell
|
|
2252
2400
|
* dropdown body). Avatar-led: people-driven rows (mentions, messages) show
|
|
@@ -2398,4 +2546,4 @@ declare const KbdHint: React$1.ForwardRefExoticComponent<KbdHintProps & React$1.
|
|
|
2398
2546
|
|
|
2399
2547
|
declare function cn(...inputs: ClassValue[]): string;
|
|
2400
2548
|
|
|
2401
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type ActivityDotVariant, ActivityItem, type ActivityItemProps, ActivityList, type ActivityListProps, Alert, AlertCircleIcon, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, type AlertProps, AlertTitle, AlertTriangleIcon, AlertTriangleSolidIcon, AppHeader, AppHeaderActions, type AppHeaderActionsProps, AppHeaderBreadcrumb, type AppHeaderBreadcrumbProps, type AppHeaderProps, AppHeaderSearch, type AppHeaderSearchProps, AppHeaderTitle, type AppHeaderTitleProps, ArrowDownIcon, ArrowLeftIcon, ArrowRightIcon, ArrowRightSmallIcon, ArrowUpIcon, AspectRatio, AtSignIcon, Avatar, Badge, type BadgeProps, BarChartIcon, BellIcon, Blockquote, BoldIcon, Breadcrumb, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, BriefcaseIcon, Building2Icon, BuildingIcon, Button, type ButtonProps, Calendar, type CalendarHighlight, type CalendarHighlightColor, CalendarIcon, type CalendarProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, type CardVariants, ChatBubbleIcon, CheckCircle2Icon, CheckCircleSolidIcon, CheckIcon, Checkbox, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsUpDownIcon, CircleDotIcon, CircleIcon, ClientSelect, type ClientSelectOption, ClipboardCheckIcon, ClockIcon, CloseIcon, Collapsible, CollapsibleContent, CollapsibleTrigger, ComingSoon, type ComingSoonProps, CommandIcon, type CommandItem, CommandPalette, ConfirmActionButton, type ConfirmActionButtonProps, Content, type ContentProps, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, CopyButton, CopyIcon, CornerDownLeftIcon, CreditCardIcon, DATE_DISPLAY_PLACEHOLDER, DangerAction, type DangerActionProps, DataItem, DataTable, DataTableBody, type DataTableBodyProps, DataTableCell, DataTableCellDue, type DataTableCellDueProps, DataTableCellId, DataTableCellMono, DataTableCellName, type DataTableCellProps, DataTableCheckbox, type DataTableCheckboxProps, DataTableHead, type DataTableHeadProps, DataTableHeader, type DataTableHeaderProps, DataTablePagination, type DataTablePaginationProps, type DataTableProps, DataTableResultsCount, type DataTableResultsCountProps, DataTableRow, type DataTableRowProps, DataTableSearch, type DataTableSearchProps, DataTableSpacer, type DataTableSpacerProps, DataTableToolbar, type DataTableToolbarProps, DatePicker, DateRangePicker, type DateRangeValue, DetailGrid, type DetailGridProps, DetailMain, type DetailMainProps, DetailSpine, DetailSpineHeader, type DetailSpineHeaderProps, type DetailSpineProps, DetailSpineSection, type DetailSpineSectionProps, DetailSpineStats, type DetailSpineStatsProps, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DismissibleChip, DocumentIcon, DollarSignIcon, DownloadIcon, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmptyState, type EmptyStateProps, EyeIcon, EyeOffIcon, Eyebrow, type EyebrowProps, FileIcon, FileReturnIcon, FileTextIcon, FileUpload, FilterChip, type FilterChipProps, FilterIcon, FlagIcon, FolderClosedIcon, FolderOpenIcon, FolderPlusIcon, FormError, FormSection, FormSuccess, GlobeIcon, GoogleBrandIcon, HelpCircleIcon, HistoryIcon, HomeIcon, HoverCard, HoverCardContent, HoverCardPortal, HoverCardTrigger, IconAction, type IconActionProps, InboxIcon, InfoCircleSolidIcon, InfoIcon, Input, type InputVariants, ItalicIcon, Kanban, KanbanCard, type KanbanCardProps, KanbanColumn, type KanbanColumnProps, KanbanIcon, type KanbanProps, KbdHint, type KbdHintProps, KeyIcon, type KeyboardShortcut, type KeyboardShortcutSection, KeyboardShortcutsDialog, type KeyboardShortcutsDialogProps, KpiCard, Label, LayoutDashboardIcon, LayoutGridIcon, LayoutListIcon, LightningIcon, Link2Icon, LinkAction, type LinkActionProps, LinkButton, LinkIcon, ListChecksIcon, ListIcon, ListOrderedIcon, LoaderIcon, LoadingRows, LockIcon, LockKeyholeIcon, LockOpenIcon, LogOutIcon, Logo, MailIcon, Main, type MainProps, MapPinIcon, MenuIcon, MessageCircleIcon, MessageCircleWarningIcon, MetadataGrid, MicrosoftBrandIcon, MinusIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoveIcon, MultiFilterPill, MultiSelectField, MutedSpec, type MutedSpecProps, NotificationFilter, type NotificationFilterProps, type NotificationFilterValue, NotificationItem, type NotificationItemProps, NotificationList, type NotificationListProps, NotificationPanel, NotificationPanelHeader, type NotificationPanelHeaderProps, type NotificationPanelProps, Numeric, type NumericProps, OTPInput, PageHeader, type PageHeaderProps, PageHeaderSep, type PageHeaderSepProps, PageHeaderSpec, type PageHeaderSpecProps, Pagination, type PaginationProps, PaletteIcon, PanelLeftCloseIcon, PanelLeftIcon, PaperclipIcon, PenSignIcon, PencilIcon, PhoneIcon, PhoneInput, PlusIcon, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverPortal, PopoverTrigger, PrimaryAction, type PrimaryActionProps, type Priority, PriorityIcon, type PriorityIconProps, ProgressBar, type ProgressBarProps, ProgressRing, type ProgressRingProps, RadioGroup, RadioGroupItem, ReceiptIcon, ReplyIcon, RotateCcwIcon, SaveIcon, ScrollArea, ScrollBar, SearchIcon, SearchInput, type SearchInputVariants, SearchSelect, type SearchSelectOption, SecondaryAction, type SecondaryActionProps, Section, SectionHead, SectionHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, type SelectOption, type SelectProps, SelectRoot, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, SendIcon, Separator, SettingsIcon, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Shell, type ShellProps, ShieldIcon, SideDrawer, Sidebar, SidebarBrand, type SidebarBrandProps, SidebarBrandSwitcher, type SidebarBrandSwitcherItem, type SidebarBrandSwitcherProps, SidebarBrandSwitcherTile, SidebarBrandText, type SidebarBrandTextProps, SidebarFooter, type SidebarFooterProps, SidebarLink, SidebarLinkAction, type SidebarLinkActionProps, SidebarLinkBadge, type SidebarLinkBadgeProps, type SidebarLinkBadgeVariants, SidebarLinkGroup, type SidebarLinkGroupProps, SidebarLinkLabel, type SidebarLinkLabelProps, type SidebarLinkProps, SidebarPinButton, type SidebarPinButtonProps, type SidebarProps, SidebarProvider, type SidebarProviderProps, SidebarSection, type SidebarSectionProps, type SidebarState, SidebarTrigger, type SidebarTriggerProps, SidebarUser, type SidebarUserProps, Skeleton, SkeletonCircle, SkeletonText, SlashIcon, Slider, SmartphoneIcon, type SortDirection, SparkleIcon, SparklesIcon, StarIcon, StarRating, type StarRatingProps, Stat, StatusIcon, type StatusIconProps, type StatusState, type Step, Stepper, type StepperProps, StrikethroughIcon, SubmitButton, SunIcon, Switch, Table, TableBody, type TableBodyProps, TableCaption, type TableCaptionProps, TableCell, type TableCellProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, TableHeader, type TableHeaderProps, TableIcon, type TableProps, TableRow, type TableRowProps, Tabs, TabsContent, TabsList, TabsTrigger, TagIcon, TeamIcon, TeamMemberSelect, Textarea, type TextareaVariants, ToastProvider, ToggleGroup, ToggleGroupItem, Toolbar, type ToolbarProps, Tooltip, TooltipContent, TooltipPortal, TooltipProvider, TooltipTrigger, Trash2Icon, TrashIcon, TrendingDownIcon, TrendingUpIcon, UnderlineIcon, UploadIcon, UserCircleIcon, UserIcon, UsersIcon, VisuallyHidden, WorkflowIcon, XCircleSolidIcon, XIcon, YEAR_DISPLAY_PLACEHOLDER, ZoomInIcon, ZoomOutIcon, alertVariants, applyMask, applyYearMask, badgeVariants, buttonVariants, cardVariants, cn, dateToIso, displayToIso, filterChipVariants, inputVariants, isoToDate, isoToDisplay, isoToYear, labelVariants, progressBarVariants, progressRingVariants, searchInputVariants, sidebarLinkBadgeVariants, starRatingVariants, textareaVariants, useSidebarPeekLock, useSidebarState, useToast, yearToIso };
|
|
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 };
|
package/dist/index.js
CHANGED
|
@@ -2597,6 +2597,47 @@ var Blockquote = forwardRef(function Blockquote2({ children, author, role: autho
|
|
|
2597
2597
|
] });
|
|
2598
2598
|
});
|
|
2599
2599
|
Blockquote.displayName = "Blockquote";
|
|
2600
|
+
var BRAND_BASE_FILL = "#070707";
|
|
2601
|
+
var BRAND_BASE_PATH = "M43.8298 23.829C46.9635 23.7428 50.7456 23.9675 54.0114 23.9437L91.3493 23.8048C97.6806 23.7927 101.727 24.9883 106.302 29.5107C107.671 30.864 108.443 32.0751 109.418 33.7063C112.332 38.5806 112.037 42.6442 112.003 48.0679L112.02 56.4922C108.427 57.4911 101.053 57.2229 96.9953 57.2944C87.0232 57.47 76.9072 57.2055 66.9345 57.4014C66.7192 66.474 66.9079 75.8103 66.8438 84.9327C66.7469 92.0668 67.2878 101.738 66.6431 108.599C60.7359 108.871 54.5467 108.479 48.6135 108.641C40.5834 108.86 34.2651 108.559 28.1575 102.692C20.618 95.4486 21.8015 86.9701 21.8025 77.474L21.8166 59.8481L21.8312 49.597C21.8372 47.075 21.7515 43.5009 22.2502 41.142C22.9069 38.0359 25.4258 33.4304 27.6724 31.1548C32.4002 26.3658 37.1772 24.0905 43.8298 23.829Z";
|
|
2602
|
+
var BRAND_ACCENT_PATH = "M83.7555 72.8376C85.3789 72.6548 90.5991 72.7708 92.4304 72.7692L100.779 72.7802C102.529 72.7903 104.546 72.7296 106.26 73.0259C108.43 73.422 111.61 75.5699 111.737 77.9539C112.107 84.8649 111.986 91.8555 111.974 98.7715C111.969 101.35 111.928 103.109 110.232 105.149C108.61 107.101 107.07 108.323 104.518 108.621C99.7602 108.503 95.0005 108.467 90.2413 108.513C87.5612 108.531 84.6034 108.799 81.9937 108.434C78.4024 107.933 76.1145 105.214 76.0317 101.618C75.9281 97.1186 75.8903 92.669 75.9646 88.174C76.0209 84.7695 75.8279 81.2851 76.3134 77.921C76.3993 77.3266 77.1785 76.1903 77.6286 75.7193C79.6145 73.6412 80.9496 73.0158 83.7555 72.8376Z";
|
|
2603
|
+
function BrandIcon({
|
|
2604
|
+
size = 24,
|
|
2605
|
+
accent,
|
|
2606
|
+
title,
|
|
2607
|
+
className,
|
|
2608
|
+
...props
|
|
2609
|
+
}) {
|
|
2610
|
+
return /* @__PURE__ */ jsxs(
|
|
2611
|
+
"svg",
|
|
2612
|
+
{
|
|
2613
|
+
width: size,
|
|
2614
|
+
height: size,
|
|
2615
|
+
viewBox: "0 0 136 137",
|
|
2616
|
+
fill: "none",
|
|
2617
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
2618
|
+
className: cn("shrink-0", className),
|
|
2619
|
+
role: "img",
|
|
2620
|
+
"aria-label": title,
|
|
2621
|
+
...props,
|
|
2622
|
+
children: [
|
|
2623
|
+
/* @__PURE__ */ jsx("path", { d: BRAND_BASE_PATH, fill: BRAND_BASE_FILL }),
|
|
2624
|
+
/* @__PURE__ */ jsx("path", { d: BRAND_ACCENT_PATH, fill: accent })
|
|
2625
|
+
]
|
|
2626
|
+
}
|
|
2627
|
+
);
|
|
2628
|
+
}
|
|
2629
|
+
function AssureProBrandIcon({ size = 24, ...props }) {
|
|
2630
|
+
return /* @__PURE__ */ jsx(BrandIcon, { size, accent: "#6C42F8", title: "Assure Pro", ...props });
|
|
2631
|
+
}
|
|
2632
|
+
function AssureAuditBrandIcon({ size = 24, ...props }) {
|
|
2633
|
+
return /* @__PURE__ */ jsx(BrandIcon, { size, accent: "#0066ff", title: "Assure Audit", ...props });
|
|
2634
|
+
}
|
|
2635
|
+
function AssureBooksBrandIcon({ size = 24, ...props }) {
|
|
2636
|
+
return /* @__PURE__ */ jsx(BrandIcon, { size, accent: "#2da85a", title: "Assure Books", ...props });
|
|
2637
|
+
}
|
|
2638
|
+
function AssureTaxBrandIcon({ size = 24, ...props }) {
|
|
2639
|
+
return /* @__PURE__ */ jsx(BrandIcon, { size, accent: "#e0793b", title: "Assure Tax", ...props });
|
|
2640
|
+
}
|
|
2600
2641
|
var Breadcrumb = forwardRef(function Breadcrumb2({ className, ...props }, ref) {
|
|
2601
2642
|
return /* @__PURE__ */ jsx("nav", { ref, "aria-label": "Breadcrumb", className: cn(className), ...props });
|
|
2602
2643
|
});
|
|
@@ -8039,7 +8080,7 @@ var SidebarBrand = React36.forwardRef(
|
|
|
8039
8080
|
{
|
|
8040
8081
|
ref,
|
|
8041
8082
|
className: cn(
|
|
8042
|
-
"flex min-w-0 items-center gap-2 px-2 pt-1 pb-4",
|
|
8083
|
+
"flex min-w-0 items-center gap-2 px-2.5 pt-1 pb-4",
|
|
8043
8084
|
className
|
|
8044
8085
|
),
|
|
8045
8086
|
...props
|
|
@@ -8448,16 +8489,16 @@ var SidebarBrandSwitcher = React36.forwardRef(
|
|
|
8448
8489
|
useSidebarPeekLock(open);
|
|
8449
8490
|
const others = items.filter((p) => p.id !== current.id);
|
|
8450
8491
|
return (
|
|
8451
|
-
// Geometry mirrors <SidebarBrand>: `px-2 pt-1 pb-4 gap-2`. This is
|
|
8492
|
+
// Geometry mirrors <SidebarBrand>: `px-2.5 pt-1 pb-4 gap-2`. This is
|
|
8452
8493
|
// deliberate — the switcher replaces SidebarBrand, so the brand
|
|
8453
8494
|
// glyph must land at the same column x-position that direct children
|
|
8454
|
-
// of <SidebarBrand> sit at,
|
|
8455
|
-
//
|
|
8495
|
+
// of <SidebarBrand> sit at, which in turn matches the 10px left
|
|
8496
|
+
// padding of <SidebarLink> icons below.
|
|
8456
8497
|
/* @__PURE__ */ jsxs(
|
|
8457
8498
|
"div",
|
|
8458
8499
|
{
|
|
8459
8500
|
ref,
|
|
8460
|
-
className: cn("flex min-w-0 items-center gap-2 px-2 pt-1 pb-4", className),
|
|
8501
|
+
className: cn("flex min-w-0 items-center gap-2 px-2.5 pt-1 pb-4", className),
|
|
8461
8502
|
children: [
|
|
8462
8503
|
/* @__PURE__ */ jsxs(DropdownMenu, { open, onOpenChange: setOpen, children: [
|
|
8463
8504
|
/* @__PURE__ */ jsxs(
|
|
@@ -8469,7 +8510,7 @@ var SidebarBrandSwitcher = React36.forwardRef(
|
|
|
8469
8510
|
// the column edge while the inner padding holds the brand
|
|
8470
8511
|
// glyph at the same x-position as direct <SidebarBrand>
|
|
8471
8512
|
// children — same hover affordance, no glyph drift.
|
|
8472
|
-
"group/brand-trigger -ml-
|
|
8513
|
+
"group/brand-trigger -ml-2 flex min-w-0 flex-1 items-center gap-2 rounded-md py-1.5 pr-1.5 pl-2",
|
|
8473
8514
|
"text-fg transition-colors duration-[var(--duration-fast)] ease-[var(--ease-out-quart)] motion-reduce:transition-none",
|
|
8474
8515
|
"hover:bg-bg-3 data-[state=open]:bg-bg-3",
|
|
8475
8516
|
"focus-visible:outline-none focus-visible:[box-shadow:var(--shadow-focus-ring)]",
|
|
@@ -9318,6 +9359,40 @@ var ActivityItem = forwardRef(function ActivityItem2({ dot = "default", actor, t
|
|
|
9318
9359
|
);
|
|
9319
9360
|
});
|
|
9320
9361
|
ActivityItem.displayName = "ActivityItem";
|
|
9362
|
+
var ActivityEventItem = forwardRef(
|
|
9363
|
+
function ActivityEventItem2({ dot = "default", title, description, time, inset, className, ...props }, ref) {
|
|
9364
|
+
return /* @__PURE__ */ jsxs(
|
|
9365
|
+
"li",
|
|
9366
|
+
{
|
|
9367
|
+
ref,
|
|
9368
|
+
className: cn(
|
|
9369
|
+
"text-fg-3 flex items-center gap-2 text-[11px]",
|
|
9370
|
+
inset && "pl-9",
|
|
9371
|
+
className
|
|
9372
|
+
),
|
|
9373
|
+
...props,
|
|
9374
|
+
children: [
|
|
9375
|
+
/* @__PURE__ */ jsx(
|
|
9376
|
+
"span",
|
|
9377
|
+
{
|
|
9378
|
+
"aria-hidden": "true",
|
|
9379
|
+
className: cn("size-1 shrink-0 rounded-full", dotClass[dot])
|
|
9380
|
+
}
|
|
9381
|
+
),
|
|
9382
|
+
/* @__PURE__ */ jsxs("span", { className: "truncate", children: [
|
|
9383
|
+
/* @__PURE__ */ jsx("span", { className: "text-fg-2 font-medium", children: title }),
|
|
9384
|
+
description && /* @__PURE__ */ jsxs("span", { className: "text-fg-4 ml-1", children: [
|
|
9385
|
+
"\u2014 ",
|
|
9386
|
+
description
|
|
9387
|
+
] })
|
|
9388
|
+
] }),
|
|
9389
|
+
/* @__PURE__ */ jsx("span", { className: "text-fg-4 ml-auto shrink-0 text-[10px] tabular-nums", children: time })
|
|
9390
|
+
]
|
|
9391
|
+
}
|
|
9392
|
+
);
|
|
9393
|
+
}
|
|
9394
|
+
);
|
|
9395
|
+
ActivityEventItem.displayName = "ActivityEventItem";
|
|
9321
9396
|
var Kanban = forwardRef(function Kanban2({ className, children, ...props }, ref) {
|
|
9322
9397
|
return /* @__PURE__ */ jsx("div", { ref, className: cn("flex items-start gap-4 overflow-x-auto", className), ...props, children });
|
|
9323
9398
|
});
|
|
@@ -9387,6 +9462,141 @@ var KanbanCard = forwardRef(function KanbanCard2({ className, label, title, clie
|
|
|
9387
9462
|
] }) : children });
|
|
9388
9463
|
});
|
|
9389
9464
|
KanbanCard.displayName = "KanbanCard";
|
|
9465
|
+
var MessageBubble = forwardRef(function MessageBubble2({ avatar, name, timestamp, actions, children, className, ...props }, ref) {
|
|
9466
|
+
return /* @__PURE__ */ jsxs("li", { ref, className: cn("group/bubble flex gap-2.5", className), ...props, children: [
|
|
9467
|
+
avatar,
|
|
9468
|
+
/* @__PURE__ */ jsxs("div", { className: "min-w-0 flex-1", children: [
|
|
9469
|
+
/* @__PURE__ */ jsxs("div", { className: "mb-0.5 flex items-baseline gap-2", children: [
|
|
9470
|
+
/* @__PURE__ */ jsx("span", { className: "text-fg truncate text-xs font-semibold", children: name }),
|
|
9471
|
+
/* @__PURE__ */ jsx("span", { className: "text-fg-4 text-[10px] tabular-nums", children: timestamp }),
|
|
9472
|
+
actions && /* @__PURE__ */ jsx(
|
|
9473
|
+
"span",
|
|
9474
|
+
{
|
|
9475
|
+
className: cn(
|
|
9476
|
+
"ml-auto opacity-0 transition-opacity",
|
|
9477
|
+
"group-hover/bubble:opacity-100 group-focus-within/bubble:opacity-100"
|
|
9478
|
+
),
|
|
9479
|
+
children: actions
|
|
9480
|
+
}
|
|
9481
|
+
)
|
|
9482
|
+
] }),
|
|
9483
|
+
/* @__PURE__ */ jsx("div", { className: "bg-bg-2 text-fg break-words rounded-lg px-2.5 py-1.5 text-sm leading-relaxed", children })
|
|
9484
|
+
] })
|
|
9485
|
+
] });
|
|
9486
|
+
});
|
|
9487
|
+
MessageBubble.displayName = "MessageBubble";
|
|
9488
|
+
var MessageBubbleTombstone = forwardRef(
|
|
9489
|
+
function MessageBubbleTombstone2({ icon, children, timestamp, className, ...props }, ref) {
|
|
9490
|
+
return /* @__PURE__ */ jsxs(
|
|
9491
|
+
"li",
|
|
9492
|
+
{
|
|
9493
|
+
ref,
|
|
9494
|
+
className: cn(
|
|
9495
|
+
"text-fg-3 flex items-center gap-2.5 pl-1 text-[11px] italic",
|
|
9496
|
+
className
|
|
9497
|
+
),
|
|
9498
|
+
...props,
|
|
9499
|
+
children: [
|
|
9500
|
+
icon && /* @__PURE__ */ jsx("span", { className: "shrink-0 opacity-70 [&>svg]:size-3", children: icon }),
|
|
9501
|
+
/* @__PURE__ */ jsxs("span", { className: "truncate", children: [
|
|
9502
|
+
children,
|
|
9503
|
+
timestamp && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
9504
|
+
" \xB7 ",
|
|
9505
|
+
/* @__PURE__ */ jsx("span", { className: "tabular-nums", children: timestamp })
|
|
9506
|
+
] })
|
|
9507
|
+
] })
|
|
9508
|
+
]
|
|
9509
|
+
}
|
|
9510
|
+
);
|
|
9511
|
+
}
|
|
9512
|
+
);
|
|
9513
|
+
MessageBubbleTombstone.displayName = "MessageBubble.Tombstone";
|
|
9514
|
+
var MessageBubbleAction = forwardRef(
|
|
9515
|
+
function MessageBubbleAction2({ destructive, className, type = "button", ...props }, ref) {
|
|
9516
|
+
return /* @__PURE__ */ jsx(
|
|
9517
|
+
"button",
|
|
9518
|
+
{
|
|
9519
|
+
ref,
|
|
9520
|
+
type,
|
|
9521
|
+
className: cn(
|
|
9522
|
+
"text-fg-4 text-[10px] focus-visible:outline-none",
|
|
9523
|
+
destructive ? "hover:text-danger-fg" : "hover:text-fg",
|
|
9524
|
+
className
|
|
9525
|
+
),
|
|
9526
|
+
...props
|
|
9527
|
+
}
|
|
9528
|
+
);
|
|
9529
|
+
}
|
|
9530
|
+
);
|
|
9531
|
+
MessageBubbleAction.displayName = "MessageBubble.Action";
|
|
9532
|
+
MessageBubble.Tombstone = MessageBubbleTombstone;
|
|
9533
|
+
MessageBubble.Action = MessageBubbleAction;
|
|
9534
|
+
var ThreadComposer = forwardRef(
|
|
9535
|
+
function ThreadComposer2({ className, children, ...props }, ref) {
|
|
9536
|
+
return /* @__PURE__ */ jsx(
|
|
9537
|
+
"div",
|
|
9538
|
+
{
|
|
9539
|
+
ref,
|
|
9540
|
+
className: cn(
|
|
9541
|
+
"relative flex flex-col",
|
|
9542
|
+
"border-rule bg-input-background rounded-xl border",
|
|
9543
|
+
"transition-shadow duration-150",
|
|
9544
|
+
"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",
|
|
9585
|
+
className
|
|
9586
|
+
),
|
|
9587
|
+
...props,
|
|
9588
|
+
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 })
|
|
9591
|
+
]
|
|
9592
|
+
}
|
|
9593
|
+
);
|
|
9594
|
+
}
|
|
9595
|
+
);
|
|
9596
|
+
ThreadComposerFooter.displayName = "ThreadComposer.Footer";
|
|
9597
|
+
ThreadComposer.Accessory = ThreadComposerAccessory;
|
|
9598
|
+
ThreadComposer.Input = ThreadComposerInput;
|
|
9599
|
+
ThreadComposer.Footer = ThreadComposerFooter;
|
|
9390
9600
|
var NotificationPanel = forwardRef(
|
|
9391
9601
|
function NotificationPanel2({ className, children, ...props }, ref) {
|
|
9392
9602
|
return /* @__PURE__ */ jsx("div", { ref, className: cn("bg-surface text-fg flex w-full flex-col", className), ...props, children });
|
|
@@ -9671,6 +9881,6 @@ var KbdHint = forwardRef(function KbdHint2({ className, children, ...props }, re
|
|
|
9671
9881
|
});
|
|
9672
9882
|
KbdHint.displayName = "KbdHint";
|
|
9673
9883
|
|
|
9674
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, 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, 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, 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, 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 };
|
|
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 };
|
|
9675
9885
|
//# sourceMappingURL=index.js.map
|
|
9676
9886
|
//# sourceMappingURL=index.js.map
|