@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.
- package/dist/client/AgentPanel.js +2 -2
- package/dist/client/AgentPanel.js.map +1 -1
- package/dist/client/route-chunk-recovery.d.ts.map +1 -1
- package/dist/client/route-chunk-recovery.js +11 -0
- package/dist/client/route-chunk-recovery.js.map +1 -1
- package/dist/client/settings/useBuilderStatus.d.ts.map +1 -1
- package/dist/client/settings/useBuilderStatus.js +16 -1
- package/dist/client/settings/useBuilderStatus.js.map +1 -1
- package/dist/scripts/db/exec.d.ts.map +1 -1
- package/dist/scripts/db/exec.js +11 -3
- package/dist/scripts/db/exec.js.map +1 -1
- package/dist/scripts/db/scoping.d.ts +2 -1
- package/dist/scripts/db/scoping.d.ts.map +1 -1
- package/dist/scripts/db/scoping.js +12 -8
- package/dist/scripts/db/scoping.js.map +1 -1
- package/package.json +1 -1
|
@@ -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,
|
|
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(
|
|
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
|