@siena-ai/design-system 0.0.18 → 0.0.19

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
@@ -587,7 +587,7 @@ declare function DrawerFooter({ className, ...props }: React$1.ComponentProps<"d
587
587
  declare function DrawerTitle({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Title>): react_jsx_runtime.JSX.Element;
588
588
  declare function DrawerDescription({ className, ...props }: React$1.ComponentProps<typeof Drawer$1.Description>): react_jsx_runtime.JSX.Element;
589
589
 
590
- declare function DropdownMenu({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
590
+ declare function DropdownMenu({ modal, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
591
591
  declare function DropdownMenuPortal({ container, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element;
592
592
  declare function DropdownMenuTrigger({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
593
593
  declare function DropdownMenuContent({ className, sideOffset, container, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Content> & {
@@ -616,7 +616,7 @@ declare function HoverCard({ ...props }: React$1.ComponentProps<typeof HoverCard
616
616
  declare function HoverCardTrigger({ ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
617
617
  declare function HoverCardContent({ className, align, sideOffset, ...props }: React$1.ComponentProps<typeof HoverCardPrimitive.Content>): react_jsx_runtime.JSX.Element;
618
618
 
619
- declare function Popover({ ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime.JSX.Element;
619
+ declare function Popover({ modal, ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Root>): react_jsx_runtime.JSX.Element;
620
620
  declare function PopoverTrigger({ ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
621
621
  declare function PopoverContent({ className, align, sideOffset, container, ...props }: React$1.ComponentProps<typeof PopoverPrimitive.Content> & {
622
622
  container?: HTMLElement | null;
@@ -1331,7 +1331,7 @@ interface ChatInputProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "o
1331
1331
  }
1332
1332
  declare function ChatInput({ value, onChange, onSend, onAttach, placeholder, disabled, loading, maxLength, showCount, attachments, onRemoveAttachment, onVoiceTranscript, showVoice, voiceSlot, isTranscripting, submitShortcut, maxRows, minRows, showAttachButton, onAttachClick, showSendButton, footerContent, leftSlot, rightSlot, enableDragDrop, context, className, ...props }: ChatInputProps): react_jsx_runtime.JSX.Element;
1333
1333
 
1334
- type Channel$1 = "dm" | "comment" | "email" | "sms" | "phone";
1334
+ type Channel$2 = "dm" | "comment" | "email" | "sms" | "phone";
1335
1335
  type Platform$1 = "instagram" | "facebook" | "tiktok" | "twitter" | "email" | "sms";
1336
1336
 
1337
1337
  /** The mode of the input - determines context bar styling and behavior */
@@ -1346,7 +1346,7 @@ type InputContext = {
1346
1346
  platform: Platform$1;
1347
1347
  } | {
1348
1348
  type: "channel";
1349
- channel: Channel$1;
1349
+ channel: Channel$2;
1350
1350
  platform: Platform$1;
1351
1351
  customerName: string;
1352
1352
  } | {
@@ -1412,7 +1412,7 @@ interface Persona {
1412
1412
  avatar?: string;
1413
1413
  description?: string;
1414
1414
  }
1415
- interface Channel {
1415
+ interface Channel$1 {
1416
1416
  id: string;
1417
1417
  name: string;
1418
1418
  icon?: React$1.ReactNode;
@@ -1443,7 +1443,7 @@ interface PlaygroundInputProps extends Omit<React$1.HTMLAttributes<HTMLDivElemen
1443
1443
  /** Persona change callback */
1444
1444
  onPersonaChange?: (personaId: string) => void;
1445
1445
  /** Available channels */
1446
- channels?: Channel[];
1446
+ channels?: Channel$1[];
1447
1447
  /** Selected channel ID */
1448
1448
  selectedChannel?: string;
1449
1449
  /** Channel change callback */
@@ -2395,11 +2395,38 @@ interface PersonSheetProps {
2395
2395
  declare function PersonSheet({ personName, open, onOpenChange, deelData, onPriorityClick, }: PersonSheetProps): react_jsx_runtime.JSX.Element | null;
2396
2396
 
2397
2397
  type CustomerSegment = "enterprise" | "commercial" | "smb";
2398
- type Product = "support" | "intelligence" | "shopping" | "voice";
2398
+ type Product = "support" | "intelligence" | "shopping" | "voice" | "white_glove" | "shipping_protection";
2399
+ type Channel = "email" | "live-chat-3p" | "siena-live-chat" | "social-comments" | "social-dms" | "sms" | "slack";
2399
2400
  type HealthStatus = "healthy" | "at-risk" | "critical";
2400
2401
  type VitallyPulse = "Healthy" | "Concerning" | "Poor";
2401
2402
  type BillingFrequency = "Monthly" | "Quarterly" | "Bi-Annually" | "Annually" | "Free";
2402
2403
  type EngagementType = "self-service" | "csm-assisted" | "white-glove";
2404
+ type Vertical = "fashion-apparel" | "beauty-personal-care" | "health-supplements" | "food-beverage" | "home-living" | "baby-family" | "pet" | "tech-electronics" | "sports-outdoors";
2405
+ type WorkModel = "remote" | "hybrid" | "office";
2406
+ interface Headquarters {
2407
+ city?: string;
2408
+ state?: string;
2409
+ country: string;
2410
+ }
2411
+ type MeetingType = "on-site" | "virtual" | "qbr" | "exec-review";
2412
+ interface Visit {
2413
+ date: string;
2414
+ attendees: string[];
2415
+ location: string;
2416
+ notes?: string;
2417
+ meetingType: MeetingType;
2418
+ }
2419
+ interface Storefront {
2420
+ name: string;
2421
+ domain: string;
2422
+ region?: string;
2423
+ }
2424
+ type CompetitorCategory = "qa" | "voc" | "helpdesk" | "chat" | "social" | "analytics";
2425
+ interface CompetitorProduct {
2426
+ category: CompetitorCategory;
2427
+ name: string;
2428
+ notes?: string;
2429
+ }
2403
2430
  interface Customer {
2404
2431
  id: string;
2405
2432
  hubspotId: string;
@@ -2407,6 +2434,15 @@ interface Customer {
2407
2434
  domain: string;
2408
2435
  logo?: string;
2409
2436
  segment: CustomerSegment | null;
2437
+ vertical: Vertical | null;
2438
+ employeeCount: number | null;
2439
+ annualRevenue: number | null;
2440
+ headquarters: Headquarters | null;
2441
+ workModel: WorkModel | null;
2442
+ parentOrg: string | null;
2443
+ isParentOrg?: boolean;
2444
+ childBrands?: string[];
2445
+ storefronts?: Storefront[];
2410
2446
  arr: number;
2411
2447
  contractStart: string;
2412
2448
  contractEnd: string;
@@ -2420,9 +2456,14 @@ interface Customer {
2420
2456
  healthStatus: HealthStatus | null;
2421
2457
  products: Product[];
2422
2458
  productsUnderConsideration?: Product[];
2459
+ channels: Channel[];
2423
2460
  engagementType: EngagementType | null;
2424
2461
  csmEmail: string | null;
2425
2462
  pmBuddy: string | null;
2463
+ forwardDeployedPM: string | null;
2464
+ forwardDeployedEngineer: string | null;
2465
+ executiveSponsor: string | null;
2466
+ visits: Visit[];
2426
2467
  automationRate: number | null;
2427
2468
  usagePercent: number | null;
2428
2469
  hasSienaChat: boolean;
@@ -2432,6 +2473,23 @@ interface Customer {
2432
2473
  bpoName: string | null;
2433
2474
  cxTeamSize: number | null;
2434
2475
  conversations30d: number | null;
2476
+ yearlyConversations: number | null;
2477
+ yearlyVoiceCalls: number | null;
2478
+ yearlyWebsiteVisits: number | null;
2479
+ yearOverYearGrowth: number | null;
2480
+ foundedYear: number | null;
2481
+ orbPurchased: number | null;
2482
+ orbUsed: number | null;
2483
+ orbRemaining: number | null;
2484
+ orbUsagePercent: number | null;
2485
+ automatedLast30d: number | null;
2486
+ qaAgentCount: number | null;
2487
+ qaVolumeMonthly: number | null;
2488
+ qaTools: string[];
2489
+ qaCompetitor: string | null;
2490
+ vocTools: string[];
2491
+ vocCompetitor: string | null;
2492
+ competitorProducts?: CompetitorProduct[];
2435
2493
  linkedPriorityIds: string[];
2436
2494
  expansionOpportunities?: ExpansionOpportunity[];
2437
2495
  }
@@ -2465,8 +2523,9 @@ interface CustomerSheetProps {
2465
2523
  customer: Customer | null;
2466
2524
  open: boolean;
2467
2525
  onOpenChange: (open: boolean) => void;
2526
+ allCustomers?: Customer[];
2468
2527
  }
2469
- declare function CustomerSheet({ customer, open, onOpenChange }: CustomerSheetProps): react_jsx_runtime.JSX.Element | null;
2528
+ declare function CustomerSheet({ customer, open, onOpenChange, allCustomers }: CustomerSheetProps): react_jsx_runtime.JSX.Element | null;
2470
2529
 
2471
2530
  interface PriorityChangelogSheetProps {
2472
2531
  open: boolean;
@@ -2641,4 +2700,4 @@ declare function usePortalContainer(): HTMLElement | null;
2641
2700
 
2642
2701
  declare const VERSION = "6.3.0";
2643
2702
 
2644
- export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type Account, AccountPicker, type AccountPickerProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ApiKeyDisplay, AppLayout, AppSidebar, AspectRatio, type Attachment$1 as Attachment, AttachmentLightbox, type AttachmentLightboxProps, AttachmentMenu, type AttachmentMenuProps, AttachmentPreview, type AttachmentPreviewProps, Avatar, type AvatarColor, AvatarFallback, AvatarImage, Badge, type BadgeProps, type BrandIdentity, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, CTASection, Calendar, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryFilterChips, type ChangeItem, ChangelogSheet, type Channel, ChannelIcons, ChartCard, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, ChatAvatar, type ChatAvatarProps, ChatHeader, type ChatHeaderProps, ChatInput, type ChatInputContext, type ChatInputProps, ChatMessageList, type ChatMessageListProps, ChatPanel, type ChatPanelProps, ChatSidebar, type ChatSidebarProps, ChatWidget, type ChatWidgetProps, ChatWindow, type ChatWindowProps, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextCard, ContextCardGrid, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type Conversation, type ConversationActions, type ConversationChannel, type ConversationStatus, type CurrentUser, CustomerSheet, DataTable, DataTableColumnHeader, type DatePreset, DateRangePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DocumentHeader, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailIcon, EmojiPicker, EmptyState, type ExternalLinkItem, FacebookIcon, FeatureGrid, FilterBar, type FilterChip, FilterDropdown, type FilterOption, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GorgiasIcon, HelpMenu, type HelpMenuItem, Hero, HoverCard, HoverCardContent, HoverCardTrigger, IconSelect, Input, type InputContext, type InputMode, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputPlusMenu, type InputProps, InsightReport, type InsightReportData, InstagramIcon, IntegrationCard, type IntegrationType, IntercomIcon, Kbd, Label, LinkButton, LinkedInIcon, LiveChatIcon, LogoCloud, MarkdownRenderer, type MarkdownRendererProps, type MemberRole, type MemberStatus, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, type Message, MessageActions, type MessageActionsProps, MessageBubble, type MessageBubbleProps, type MessageChannel, MessengerIcon, type Model, ModelSelector, type ModelSelectorProps, type NavItem, NavMain, type NavSection, type NavSubItem, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type PageBreadcrumbItem, PageHeader, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PasswordInput, PersonSheet, type Persona, PhoneIcon, PlaceholderLogo, type Platform, type Playbook, PlaygroundInput, type PlaygroundInputProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalContainerProvider, PriorityBadge, PriorityChangelogBanner, PriorityChangelogSheet, type PriorityLevel, ProductBadge, ProductCard, type ProductTag, Progress, RadioGroup, RadioGroupItem, type Recommendation, RelatedLinks, type Release, type ReleaseHighlight, type Report, ReportCard, ResizableHandle, ResizablePanel, ResizablePanelGroup, ReviewsIcon, ScrollArea, ScrollBar, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectOption, type SearchableSelectProps, SectionHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, ShareDialog, type ShareDialogProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, ShopifyIcon, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, SlackIcon, Slider, SmsIcon, Spinner, StatCard, StreamingText, type StreamingTextProps, SuggestionChips, type SuggestionChipsProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TeamMember, TeamMemberList, Textarea, type TextareaProps, ThemeToggle, TikTokIcon, Toaster, Toggle, ToggleGroup, ToggleGroupItem, type Tool, type ToolCall, ToolCallBlock, type ToolCallBlockProps, type ToolProvider, ToolsPanelContent, type ToolsPanelContentProps, ToolsPopover, type ToolsPopoverProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TrendBadge, type TrendData, type TrendSection, TwitterIcon, TypingIndicator, type TypingIndicatorProps, UnifiedInput, UnsavedChangesBar, type UserData, UserMenu, type UserMenuItem, VERSION, VoiceInput, type VoiceInputProps, WhatsAppIcon, type Workspace, WorkspaceSelector, YouTubeIcon, ZendeskIcon, badgeVariants, buttonVariants, cn, defaultModels, defaultPlaybooks, formatShortDate, getChannelIcon, getReleaseTitle, inputVariants, navigationMenuTriggerStyle, productConfig, sampleReleases, textareaVariants, toggleVariants, useFormField, useIsMobile, usePortalContainer, useSidebar };
2703
+ export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, type Account, AccountPicker, type AccountPickerProps, Alert, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, ApiKeyDisplay, AppLayout, AppSidebar, AspectRatio, type Attachment$1 as Attachment, AttachmentLightbox, type AttachmentLightboxProps, AttachmentMenu, type AttachmentMenuProps, AttachmentPreview, type AttachmentPreviewProps, Avatar, type AvatarColor, AvatarFallback, AvatarImage, Badge, type BadgeProps, type BrandIdentity, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, CTASection, Calendar, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, CategoryFilterChips, type ChangeItem, ChangelogSheet, type Channel$1 as Channel, ChannelIcons, ChartCard, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, ChatAvatar, type ChatAvatarProps, ChatHeader, type ChatHeaderProps, ChatInput, type ChatInputContext, type ChatInputProps, ChatMessageList, type ChatMessageListProps, ChatPanel, type ChatPanelProps, ChatSidebar, type ChatSidebarProps, ChatWidget, type ChatWidgetProps, ChatWindow, type ChatWindowProps, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextCard, ContextCardGrid, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type Conversation, type ConversationActions, type ConversationChannel, type ConversationStatus, type CurrentUser, CustomerSheet, DataTable, DataTableColumnHeader, type DatePreset, DateRangePicker, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DocumentHeader, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EmailIcon, EmojiPicker, EmptyState, type ExternalLinkItem, FacebookIcon, FeatureGrid, FilterBar, type FilterChip, FilterDropdown, type FilterOption, Form, FormControl, FormDescription, FormField, FormItem, FormLabel, FormMessage, GorgiasIcon, HelpMenu, type HelpMenuItem, Hero, HoverCard, HoverCardContent, HoverCardTrigger, IconSelect, Input, type InputContext, type InputMode, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, InputPlusMenu, type InputProps, InsightReport, type InsightReportData, InstagramIcon, IntegrationCard, type IntegrationType, IntercomIcon, Kbd, Label, LinkButton, LinkedInIcon, LiveChatIcon, LogoCloud, MarkdownRenderer, type MarkdownRendererProps, type MemberRole, type MemberStatus, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, type Message, MessageActions, type MessageActionsProps, MessageBubble, type MessageBubbleProps, type MessageChannel, MessengerIcon, type Model, ModelSelector, type ModelSelectorProps, type NavItem, NavMain, type NavSection, type NavSubItem, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, type PageBreadcrumbItem, PageHeader, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, PasswordInput, PersonSheet, type Persona, PhoneIcon, PlaceholderLogo, type Platform, type Playbook, PlaygroundInput, type PlaygroundInputProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PortalContainerProvider, PriorityBadge, PriorityChangelogBanner, PriorityChangelogSheet, type PriorityLevel, ProductBadge, ProductCard, type ProductTag, Progress, RadioGroup, RadioGroupItem, type Recommendation, RelatedLinks, type Release, type ReleaseHighlight, type Report, ReportCard, ResizableHandle, ResizablePanel, ResizablePanelGroup, ReviewsIcon, ScrollArea, ScrollBar, SearchInput, type SearchInputProps, SearchableSelect, type SearchableSelectOption, type SearchableSelectProps, SectionHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, ShareDialog, type ShareDialogProps, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, ShopifyIcon, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, SlackIcon, Slider, SmsIcon, Spinner, StatCard, StreamingText, type StreamingTextProps, SuggestionChips, type SuggestionChipsProps, Switch, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TeamMember, TeamMemberList, Textarea, type TextareaProps, ThemeToggle, TikTokIcon, Toaster, Toggle, ToggleGroup, ToggleGroupItem, type Tool, type ToolCall, ToolCallBlock, type ToolCallBlockProps, type ToolProvider, ToolsPanelContent, type ToolsPanelContentProps, ToolsPopover, type ToolsPopoverProps, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TrendBadge, type TrendData, type TrendSection, TwitterIcon, TypingIndicator, type TypingIndicatorProps, UnifiedInput, UnsavedChangesBar, type UserData, UserMenu, type UserMenuItem, VERSION, VoiceInput, type VoiceInputProps, WhatsAppIcon, type Workspace, WorkspaceSelector, YouTubeIcon, ZendeskIcon, badgeVariants, buttonVariants, cn, defaultModels, defaultPlaybooks, formatShortDate, getChannelIcon, getReleaseTitle, inputVariants, navigationMenuTriggerStyle, productConfig, sampleReleases, textareaVariants, toggleVariants, useFormField, useIsMobile, usePortalContainer, useSidebar };