@agent-native/core 0.11.2 → 0.11.3

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.
@@ -25,7 +25,7 @@ import React, { useState, useEffect, useRef, useCallback, useMemo, lazy, Suspens
25
25
  import * as TooltipPrimitive from "@radix-ui/react-tooltip";
26
26
  import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, normalizeTooltipText, } from "./components/ui/tooltip.js";
27
27
  import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuShortcut, DropdownMenuTrigger, } from "./components/ui/dropdown-menu.js";
28
- import { IconMessageCircle, IconMessageChatbot, IconTerminal2, IconSettings, IconLayoutSidebarRightCollapse, IconLayoutGrid, IconCheck, IconPlus, IconX, IconDotsVertical, IconHistory, IconArrowsMaximize, IconArrowsMinimize, } from "@tabler/icons-react";
28
+ import { IconMessageCircle, IconMessageDots, IconTerminal2, IconSettings, IconLayoutSidebarRightCollapse, IconLayoutGrid, IconCheck, IconPlus, IconX, IconDotsVertical, IconHistory, IconArrowsMaximize, IconArrowsMinimize, } from "@tabler/icons-react";
29
29
  import { FeedbackButton } from "./FeedbackButton.js";
30
30
  import { MultiTabAssistantChat, } from "./MultiTabAssistantChat.js";
31
31
  import { useDevMode } from "./use-dev-mode.js";
@@ -947,6 +947,6 @@ export function focusAgentChat() {
947
947
  * Dispatches a custom event that AgentSidebar listens for.
948
948
  */
949
949
  export function AgentToggleButton({ className }) {
950
- return (_jsx(TooltipProvider, { delayDuration: 200, children: _jsxs(Tooltip, { children: [_jsx(TooltipTrigger, { asChild: true, children: _jsx("button", { onClick: () => window.dispatchEvent(new Event("agent-panel:toggle")), className: cn("ml-1.5 flex h-5 w-5 items-center justify-center rounded text-muted-foreground hover:text-foreground hover:bg-accent/50", className), children: _jsx(IconMessageChatbot, { size: 16 }) }) }), _jsx(TooltipContent, { children: "Toggle agent" })] }) }));
950
+ return (_jsx(TooltipProvider, { delayDuration: 200, children: _jsxs(Tooltip, { children: [_jsx(TooltipTrigger, { asChild: true, children: _jsx("button", { onClick: () => window.dispatchEvent(new Event("agent-panel:toggle")), className: cn("ml-1.5 flex h-5 w-5 items-center justify-center rounded text-muted-foreground hover:text-foreground hover:bg-accent/50", className), children: _jsx(IconMessageDots, { size: 16 }) }) }), _jsx(TooltipContent, { children: "Toggle agent" })] }) }));
951
951
  }
952
952
  //# sourceMappingURL=AgentPanel.js.map