@siena-ai/design-system 0.0.17 → 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/globals.css CHANGED
@@ -453,6 +453,76 @@
453
453
  @apply outline-none ring-2 ring-offset-2 ring-offset-background ring-primary/50;
454
454
  }
455
455
 
456
+ /* ============================================================
457
+ * STATE BORDER UTILITIES
458
+ * Semantic classes for interactive element states.
459
+ * Use these instead of raw border-primary for consistency.
460
+ *
461
+ * Change the design here → updates everywhere automatically.
462
+ * ============================================================ */
463
+
464
+ /* SELECTED — User actively chose this option (OptionCard, template picker) */
465
+ .state-selected {
466
+ @apply border-primary bg-primary/5;
467
+ }
468
+
469
+ /* ACTIVE FILTER — A filter/toggle is currently applied (softer than selected) */
470
+ .state-active-filter {
471
+ @apply border-primary/50 bg-primary/5;
472
+ }
473
+
474
+ /* EXPANDED — Collapsible content is open (NOT an action, just state) */
475
+ .state-expanded {
476
+ @apply border-muted-foreground/30;
477
+ }
478
+
479
+ /* ─────────────────────────────────────────────────────────────
480
+ * CARD HOVER UTILITY
481
+ *
482
+ * ONE pattern for clickable cards: subtle purple border + shadow lift.
483
+ * Use `state-hover-card` on any card that triggers an action (opens
484
+ * sheet, navigates, expands content).
485
+ *
486
+ * ONE RULE: Interactive card = state-hover-card
487
+ * "Interactive" = clicking the card triggers something (expand, modal, navigate)
488
+ *
489
+ * DO NOT USE when:
490
+ * - Card is display-only (info card with interactive buttons INSIDE)
491
+ * - Card border communicates status (green = pass, red = error)
492
+ * ───────────────────────────────────────────────────────────── */
493
+
494
+ /* CARD HOVER — Purple border + shadow lift + cursor for interactive cards */
495
+ .state-hover-card {
496
+ @apply hover:border-primary/50 transition-all cursor-pointer;
497
+ }
498
+ .state-hover-card:hover {
499
+ box-shadow:
500
+ 0 1px 2px hsl(var(--shadow-color) / 0.04),
501
+ 0 2px 4px hsl(var(--shadow-color) / 0.04),
502
+ 0 4px 8px hsl(var(--shadow-color) / 0.04);
503
+ }
504
+
505
+ /* Aliases for backward compatibility — all resolve to same effect */
506
+ .state-hover-card-subtle {
507
+ @apply hover:border-primary/50 transition-all;
508
+ }
509
+ .state-hover-card-subtle:hover {
510
+ box-shadow:
511
+ 0 1px 2px hsl(var(--shadow-color) / 0.04),
512
+ 0 2px 4px hsl(var(--shadow-color) / 0.04),
513
+ 0 4px 8px hsl(var(--shadow-color) / 0.04);
514
+ }
515
+
516
+ .state-hover-interactive {
517
+ @apply hover:border-primary/50 transition-all;
518
+ }
519
+ .state-hover-interactive:hover {
520
+ box-shadow:
521
+ 0 1px 2px hsl(var(--shadow-color) / 0.04),
522
+ 0 2px 4px hsl(var(--shadow-color) / 0.04),
523
+ 0 4px 8px hsl(var(--shadow-color) / 0.04);
524
+ }
525
+
456
526
  /* ─────────────────────────────────────────────────────────────
457
527
  CHAT UTILITIES
458
528
  ───────────────────────────────────────────────────────────── */
@@ -552,31 +622,127 @@
552
622
  }
553
623
 
554
624
  /* ═══════════════════════════════════════════════════════════════
555
- SIENA ENGAGED INDICATOR
556
- - Text shimmer: .siena-shimmer (for Siena name in conversation)
557
- - Avatar ring: .siena-engaged-ring (simple border for left menu)
625
+ PRESENTATION ANIMATIONS
626
+ Understated, elegant transitions - no aggressive movement
627
+ Inspired by Apple Keynote's refined approach
558
628
  ═══════════════════════════════════════════════════════════════ */
559
629
 
560
- @keyframes siena-shimmer {
561
- 0% { background-position: -200% 0; }
562
- 100% { background-position: 200% 0; }
630
+ /* Simple fade in - the primary transition */
631
+ @keyframes slide-fade-in {
632
+ from {
633
+ opacity: 0;
634
+ }
635
+ to {
636
+ opacity: 1;
637
+ }
638
+ }
639
+
640
+ @keyframes slide-fade-in-reverse {
641
+ from {
642
+ opacity: 0;
643
+ }
644
+ to {
645
+ opacity: 1;
646
+ }
563
647
  }
564
648
 
565
- /* Siena text shimmer - terracotta with elegant shine (for main conversation) */
649
+ /* Subtle upward fade for content elements */
650
+ @keyframes slide-fade-up {
651
+ from {
652
+ opacity: 0;
653
+ transform: translateY(8px);
654
+ }
655
+ to {
656
+ opacity: 1;
657
+ transform: translateY(0);
658
+ }
659
+ }
660
+
661
+ /* Very gentle scale for cards */
662
+ @keyframes slide-scale-in {
663
+ from {
664
+ opacity: 0;
665
+ transform: scale(0.98);
666
+ }
667
+ to {
668
+ opacity: 1;
669
+ transform: scale(1);
670
+ }
671
+ }
672
+
673
+ /* Stat counter animation - subtle rise */
674
+ @keyframes stat-enter {
675
+ from {
676
+ opacity: 0;
677
+ transform: translateY(12px);
678
+ }
679
+ to {
680
+ opacity: 1;
681
+ transform: translateY(0);
682
+ }
683
+ }
684
+
685
+ /* Legacy classes for backward compatibility */
686
+ @keyframes slide-enter {
687
+ from {
688
+ opacity: 0;
689
+ }
690
+ to {
691
+ opacity: 1;
692
+ }
693
+ }
694
+
695
+ @keyframes slide-enter-reverse {
696
+ from {
697
+ opacity: 0;
698
+ }
699
+ to {
700
+ opacity: 1;
701
+ }
702
+ }
703
+
704
+ @layer utilities {
705
+ /* Primary slide transitions - DISABLED (instant) */
706
+ .animate-slide-fade-in {
707
+ opacity: 1;
708
+ }
709
+
710
+ .animate-slide-fade-in-reverse {
711
+ opacity: 1;
712
+ }
713
+
714
+ /* Content element animations - DISABLED (instant) */
715
+ .animate-slide-fade-up {
716
+ opacity: 1;
717
+ }
718
+
719
+ .animate-slide-scale-in {
720
+ opacity: 1;
721
+ }
722
+
723
+ .animate-stat-enter {
724
+ opacity: 1;
725
+ }
726
+
727
+ /* Legacy support - DISABLED (instant) */
728
+ .animate-slide-enter {
729
+ opacity: 1;
730
+ }
731
+
732
+ .animate-slide-enter-reverse {
733
+ opacity: 1;
734
+ }
735
+ }
736
+
737
+ /* ═══════════════════════════════════════════════════════════════
738
+ SIENA ENGAGED INDICATOR
739
+ - Text color: .siena-shimmer (solid terracotta for Siena name)
740
+ - Avatar ring: .siena-engaged-ring (simple border for left menu)
741
+ ═══════════════════════════════════════════════════════════════ */
742
+
743
+ /* Siena text - solid terracotta (for main conversation) */
566
744
  .siena-shimmer {
567
- background: linear-gradient(
568
- 90deg,
569
- var(--siena-terracotta) 0%,
570
- color-mix(in srgb, var(--siena-terracotta) 50%, white) 25%,
571
- var(--siena-terracotta) 50%,
572
- color-mix(in srgb, var(--siena-terracotta) 50%, white) 75%,
573
- var(--siena-terracotta) 100%
574
- );
575
- background-size: 200% 100%;
576
- -webkit-background-clip: text;
577
- -webkit-text-fill-color: transparent;
578
- background-clip: text;
579
- animation: siena-shimmer 4s ease-in-out infinite;
745
+ color: var(--siena-terracotta);
580
746
  }
581
747
 
582
748
  /* Siena engaged avatar ring - simple 1px terracotta border (for left menu) */
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;
@@ -2639,6 +2698,6 @@ declare function PortalContainerProvider({ container, children, }: {
2639
2698
  }): react_jsx_runtime.JSX.Element;
2640
2699
  declare function usePortalContainer(): HTMLElement | null;
2641
2700
 
2642
- declare const VERSION = "6.0.0";
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 };