@tutti-os/agent-gui 0.0.40 → 0.0.41

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 (40) hide show
  1. package/dist/{AgentMessageMarkdown-GDgLA-im.d.ts → AgentMessageMarkdown-Cts0dAIm.d.ts} +1 -0
  2. package/dist/agent-conversation/index.d.ts +1 -1
  3. package/dist/agent-conversation/index.js +4 -4
  4. package/dist/agent-message-center/index.js +6 -6
  5. package/dist/agent-message-center/index.js.map +1 -1
  6. package/dist/app/renderer/agentactivity.css +298 -21
  7. package/dist/{chunk-UUM2GZXH.js → chunk-3PVSIL3H.js} +4 -4
  8. package/dist/{chunk-RE3AHBX6.js → chunk-3WZWZHAJ.js} +2 -2
  9. package/dist/{chunk-Y2DQJPTL.js → chunk-42WP3P5C.js} +2 -2
  10. package/dist/{chunk-Y5SE2XMU.js → chunk-5LVFYNIP.js} +5 -2
  11. package/dist/{chunk-Y5SE2XMU.js.map → chunk-5LVFYNIP.js.map} +1 -1
  12. package/dist/{chunk-EQ4RSPQE.js → chunk-5U4SXENC.js} +4 -4
  13. package/dist/{chunk-WJPEKD3F.js → chunk-LKOPLDPM.js} +5 -1
  14. package/dist/chunk-LKOPLDPM.js.map +1 -0
  15. package/dist/{chunk-DO7D7OOL.js → chunk-MUJYJDZH.js} +11 -10
  16. package/dist/chunk-MUJYJDZH.js.map +1 -0
  17. package/dist/{chunk-WC34LVH6.js → chunk-OLZP2EFK.js} +230 -45
  18. package/dist/chunk-OLZP2EFK.js.map +1 -0
  19. package/dist/{chunk-R7XH3C4Y.js → chunk-QIPMH6XO.js} +135 -35
  20. package/dist/chunk-QIPMH6XO.js.map +1 -0
  21. package/dist/context-mention-palette/index.js +5 -5
  22. package/dist/i18n/index.d.ts +4 -0
  23. package/dist/i18n/index.js +1 -1
  24. package/dist/index.d.ts +12 -2
  25. package/dist/index.js +136 -102
  26. package/dist/index.js.map +1 -1
  27. package/dist/workbench/contribution.d.ts +4 -0
  28. package/dist/workbench/contribution.js +1 -1
  29. package/dist/workbench/index.d.ts +10 -3
  30. package/dist/workbench/index.js +1 -1
  31. package/dist/workspace-agent-generated-files.js +2 -2
  32. package/package.json +12 -12
  33. package/dist/chunk-DO7D7OOL.js.map +0 -1
  34. package/dist/chunk-R7XH3C4Y.js.map +0 -1
  35. package/dist/chunk-WC34LVH6.js.map +0 -1
  36. package/dist/chunk-WJPEKD3F.js.map +0 -1
  37. /package/dist/{chunk-UUM2GZXH.js.map → chunk-3PVSIL3H.js.map} +0 -0
  38. /package/dist/{chunk-RE3AHBX6.js.map → chunk-3WZWZHAJ.js.map} +0 -0
  39. /package/dist/{chunk-Y2DQJPTL.js.map → chunk-42WP3P5C.js.map} +0 -0
  40. /package/dist/{chunk-EQ4RSPQE.js.map → chunk-5U4SXENC.js.map} +0 -0
@@ -1,7 +1,6 @@
1
1
  import {
2
2
  AgentGUIConversation_styles_default,
3
3
  AgentMessageMarkdown,
4
- ConversationImageContextMenu,
5
4
  CustomScrollArea,
6
5
  MessageSquareMoreIcon,
7
6
  ZoomableImage,
@@ -11,14 +10,14 @@ import {
11
10
  resolveWorkspaceFileLinkAction,
12
11
  resolveWorkspaceFilePathCandidate,
13
12
  resolveWorkspaceLinkAction
14
- } from "./chunk-WC34LVH6.js";
13
+ } from "./chunk-OLZP2EFK.js";
15
14
  import {
16
15
  attrsToMentionItem,
17
16
  createAgentFileMentionExtension,
18
17
  formatAgentMentionMarkdown,
19
18
  mentionItemToAttrs,
20
19
  parseAgentMentionMarkdown
21
- } from "./chunk-RE3AHBX6.js";
20
+ } from "./chunk-3WZWZHAJ.js";
22
21
  import {
23
22
  fileChangeCountFromChanges,
24
23
  fileChangeEntriesFromChanges,
@@ -34,7 +33,7 @@ import {
34
33
  } from "./chunk-TYGL25EL.js";
35
34
  import {
36
35
  translate
37
- } from "./chunk-WJPEKD3F.js";
36
+ } from "./chunk-LKOPLDPM.js";
38
37
 
39
38
  // shared/imageGenerationTool.ts
40
39
  var KNOWN_IMAGE_GENERATION_TOOL_NAMES = /* @__PURE__ */ new Set([
@@ -3242,10 +3241,11 @@ function projectAgentProcessingRow(detail, rows) {
3242
3241
  if (hasSpecificProgressRow(rows)) {
3243
3242
  return null;
3244
3243
  }
3244
+ const turnId = detail.turns.at(-1)?.id ?? null;
3245
3245
  return {
3246
3246
  kind: "processing",
3247
- id: "processing",
3248
- turnId: detail.turns.at(-1)?.id ?? null,
3247
+ id: `processing:${turnId ?? "session"}`,
3248
+ turnId,
3249
3249
  occurredAtUnixMs: detail.session.updatedAtUnixMs ?? detail.session.createdAtUnixMs ?? null
3250
3250
  };
3251
3251
  }
@@ -6892,15 +6892,16 @@ function AgentUserImageGrid({
6892
6892
  "div",
6893
6893
  {
6894
6894
  className: "max-h-20 min-w-0 overflow-hidden rounded-[6px]",
6895
- children: src ? /* @__PURE__ */ jsx12(ConversationImageContextMenu, { src, children: /* @__PURE__ */ jsx12(
6895
+ children: src ? /* @__PURE__ */ jsx12(
6896
6896
  ZoomableImage,
6897
6897
  {
6898
6898
  src,
6899
6899
  alt: image.name?.trim() || "image",
6900
6900
  className: "block max-h-20 w-full rounded-[6px] object-contain",
6901
- draggable: false
6901
+ draggable: false,
6902
+ downloadName: image.name?.trim() || "image.png"
6902
6903
  }
6903
- ) }) : loading ? /* @__PURE__ */ jsx12(
6904
+ ) : loading ? /* @__PURE__ */ jsx12(
6904
6905
  "div",
6905
6906
  {
6906
6907
  className: "flex h-20 w-full items-center justify-center bg-[color-mix(in_srgb,var(--text-primary)_6%,transparent)]",
@@ -12732,4 +12733,4 @@ export {
12732
12733
  AgentConversationFlow,
12733
12734
  useProjectedAgentConversation
12734
12735
  };
12735
- //# sourceMappingURL=chunk-DO7D7OOL.js.map
12736
+ //# sourceMappingURL=chunk-MUJYJDZH.js.map