@agent-native/core 0.12.22 → 0.12.23

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.
Files changed (66) hide show
  1. package/dist/agent/engine/ai-sdk-engine.d.ts +2 -0
  2. package/dist/agent/engine/ai-sdk-engine.d.ts.map +1 -1
  3. package/dist/agent/engine/ai-sdk-engine.js +4 -2
  4. package/dist/agent/engine/ai-sdk-engine.js.map +1 -1
  5. package/dist/agent/engine/anthropic-engine.d.ts.map +1 -1
  6. package/dist/agent/engine/anthropic-engine.js +2 -1
  7. package/dist/agent/engine/anthropic-engine.js.map +1 -1
  8. package/dist/agent/engine/builder-engine.d.ts.map +1 -1
  9. package/dist/agent/engine/builder-engine.js +117 -8
  10. package/dist/agent/engine/builder-engine.js.map +1 -1
  11. package/dist/agent/engine/registry.d.ts.map +1 -1
  12. package/dist/agent/engine/registry.js +24 -13
  13. package/dist/agent/engine/registry.js.map +1 -1
  14. package/dist/agent/production-agent.d.ts +1 -0
  15. package/dist/agent/production-agent.d.ts.map +1 -1
  16. package/dist/agent/production-agent.js +20 -10
  17. package/dist/agent/production-agent.js.map +1 -1
  18. package/dist/client/AgentPanel.js +1 -1
  19. package/dist/client/AgentPanel.js.map +1 -1
  20. package/dist/client/AssistantChat.d.ts.map +1 -1
  21. package/dist/client/AssistantChat.js +120 -5
  22. package/dist/client/AssistantChat.js.map +1 -1
  23. package/dist/client/FeedbackButton.js +1 -1
  24. package/dist/client/FeedbackButton.js.map +1 -1
  25. package/dist/client/analytics.d.ts.map +1 -1
  26. package/dist/client/analytics.js +26 -0
  27. package/dist/client/analytics.js.map +1 -1
  28. package/dist/client/components/ui/tooltip.js +1 -1
  29. package/dist/client/components/ui/tooltip.js.map +1 -1
  30. package/dist/client/composer/TiptapComposer.d.ts.map +1 -1
  31. package/dist/client/composer/TiptapComposer.js +2 -6
  32. package/dist/client/composer/TiptapComposer.js.map +1 -1
  33. package/dist/client/resources/ResourcesPanel.js +1 -1
  34. package/dist/client/resources/ResourcesPanel.js.map +1 -1
  35. package/dist/client/sse-event-processor.d.ts.map +1 -1
  36. package/dist/client/sse-event-processor.js +3 -0
  37. package/dist/client/sse-event-processor.js.map +1 -1
  38. package/dist/extensions/html-shell.d.ts.map +1 -1
  39. package/dist/extensions/html-shell.js +12 -0
  40. package/dist/extensions/html-shell.js.map +1 -1
  41. package/dist/mcp-client/errors.d.ts +2 -0
  42. package/dist/mcp-client/errors.d.ts.map +1 -0
  43. package/dist/mcp-client/errors.js +47 -0
  44. package/dist/mcp-client/errors.js.map +1 -0
  45. package/dist/mcp-client/manager.d.ts.map +1 -1
  46. package/dist/mcp-client/manager.js +44 -15
  47. package/dist/mcp-client/manager.js.map +1 -1
  48. package/dist/mcp-client/routes.d.ts +1 -2
  49. package/dist/mcp-client/routes.d.ts.map +1 -1
  50. package/dist/mcp-client/routes.js +2 -27
  51. package/dist/mcp-client/routes.js.map +1 -1
  52. package/dist/progress/store.d.ts +2 -0
  53. package/dist/progress/store.d.ts.map +1 -1
  54. package/dist/progress/store.js +44 -0
  55. package/dist/progress/store.js.map +1 -1
  56. package/dist/server/core-routes-plugin.d.ts.map +1 -1
  57. package/dist/server/core-routes-plugin.js +31 -9
  58. package/dist/server/core-routes-plugin.js.map +1 -1
  59. package/dist/server/credential-provider.d.ts +8 -0
  60. package/dist/server/credential-provider.d.ts.map +1 -1
  61. package/dist/server/credential-provider.js +29 -3
  62. package/dist/server/credential-provider.js.map +1 -1
  63. package/dist/terminal/terminal-plugin.d.ts.map +1 -1
  64. package/dist/terminal/terminal-plugin.js +4 -3
  65. package/dist/terminal/terminal-plugin.js.map +1 -1
  66. package/package.json +1 -1
@@ -123,7 +123,7 @@ function useCliSelection(keyPrefix) {
123
123
  const IS_DEV = import.meta.env?.DEV === true;
124
124
  // ─── Settings panel components moved to ./settings/ ────────────────────────
125
125
  function IconTooltip({ content, children, }) {
126
- return (_jsx(TooltipPrimitive.Provider, { delayDuration: 250, children: _jsxs(TooltipPrimitive.Root, { children: [_jsx(TooltipPrimitive.Trigger, { asChild: true, children: children }), _jsx(TooltipPrimitive.Portal, { children: _jsxs(TooltipPrimitive.Content, { side: "bottom", sideOffset: 8, className: "z-[230] overflow-hidden rounded-md border border-border bg-popover px-2 py-1 text-[11px] text-foreground shadow-md", children: [normalizeTooltipText(content), _jsx(TooltipPrimitive.Arrow, { className: "fill-popover" })] }) })] }) }));
126
+ return (_jsx(TooltipPrimitive.Provider, { delayDuration: 250, children: _jsxs(TooltipPrimitive.Root, { children: [_jsx(TooltipPrimitive.Trigger, { asChild: true, children: children }), _jsx(TooltipPrimitive.Portal, { children: _jsxs(TooltipPrimitive.Content, { side: "bottom", sideOffset: 8, className: "z-[300] overflow-hidden rounded-md border border-border bg-popover px-2 py-1 text-[11px] text-foreground shadow-md", children: [normalizeTooltipText(content), _jsx(TooltipPrimitive.Arrow, { className: "fill-popover" })] }) })] }) }));
127
127
  }
128
128
  function useBuilderConnectUrl() {
129
129
  const [connectUrl, setConnectUrl] = useState(null);