@tutti-os/agent-gui 0.0.51 → 0.0.53
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/agent-conversation/index.js +3 -3
- package/dist/agent-message-center/index.js +20 -2
- package/dist/agent-message-center/index.js.map +1 -1
- package/dist/app/renderer/agentactivity.css +40 -19
- package/dist/{chunk-BQVYICR7.js → chunk-2OLYX32K.js} +2 -2
- package/dist/{chunk-23YM25SG.js → chunk-3ZVVFQH5.js} +128 -40
- package/dist/chunk-3ZVVFQH5.js.map +1 -0
- package/dist/{chunk-M7GNA2WD.js → chunk-BFIYBPFD.js} +2 -2
- package/dist/{chunk-ARCM7YB2.js → chunk-GWHPTB4L.js} +12 -2
- package/dist/{chunk-ARCM7YB2.js.map → chunk-GWHPTB4L.js.map} +1 -1
- package/dist/{chunk-RKZMETSQ.js → chunk-PIKG746A.js} +3 -1
- package/dist/chunk-PIKG746A.js.map +1 -0
- package/dist/{chunk-UUY5VEK4.js → chunk-UKDC63WG.js} +2 -2
- package/dist/{chunk-UUY5VEK4.js.map → chunk-UKDC63WG.js.map} +1 -1
- package/dist/context-mention-palette/index.js +3 -3
- package/dist/index.d.ts +2 -0
- package/dist/index.js +113 -58
- package/dist/index.js.map +1 -1
- package/dist/workspace-agent-generated-files.js +1 -1
- package/package.json +15 -15
- package/dist/chunk-23YM25SG.js.map +0 -1
- package/dist/chunk-RKZMETSQ.js.map +0 -1
- /package/dist/{chunk-BQVYICR7.js.map → chunk-2OLYX32K.js.map} +0 -0
- /package/dist/{chunk-M7GNA2WD.js.map → chunk-BFIYBPFD.js.map} +0 -0
|
@@ -6,9 +6,9 @@ import {
|
|
|
6
6
|
projectAgentConversationVM,
|
|
7
7
|
reconcileProjectedAgentConversationVM,
|
|
8
8
|
useProjectedAgentConversation
|
|
9
|
-
} from "../chunk-
|
|
10
|
-
import "../chunk-
|
|
11
|
-
import "../chunk-
|
|
9
|
+
} from "../chunk-3ZVVFQH5.js";
|
|
10
|
+
import "../chunk-PIKG746A.js";
|
|
11
|
+
import "../chunk-UKDC63WG.js";
|
|
12
12
|
import "../chunk-Y35GDLP2.js";
|
|
13
13
|
import "../chunk-LUGELG5V.js";
|
|
14
14
|
import "../chunk-66EQ6EQO.js";
|
|
@@ -6,7 +6,7 @@ import {
|
|
|
6
6
|
approvalOptionDisplayLabel,
|
|
7
7
|
getPromptToolDetails,
|
|
8
8
|
isPromptRequestIdTitle
|
|
9
|
-
} from "../chunk-
|
|
9
|
+
} from "../chunk-BFIYBPFD.js";
|
|
10
10
|
import {
|
|
11
11
|
PLAN_IMPLEMENTATION_ACTION_IMPLEMENT,
|
|
12
12
|
PLAN_IMPLEMENTATION_PROMPT,
|
|
@@ -25,7 +25,7 @@ import {
|
|
|
25
25
|
extractExitPlanModeOptions,
|
|
26
26
|
isExitPlanSwitchModeInput,
|
|
27
27
|
normalizeAskUserQuestions
|
|
28
|
-
} from "../chunk-
|
|
28
|
+
} from "../chunk-PIKG746A.js";
|
|
29
29
|
import {
|
|
30
30
|
managedAgentRoundedIconUrl,
|
|
31
31
|
userAvatarPlaceholderUrl,
|
|
@@ -2560,6 +2560,12 @@ function MessageCenterViewMenu({
|
|
|
2560
2560
|
"relative size-8 shrink-0 rounded-md border bg-[var(--background-fronted)] shadow-none",
|
|
2561
2561
|
filtersActive ? "border-[var(--border-focus)] text-[var(--accent)]" : "border-[var(--line-2)] text-[var(--text-secondary)] hover:text-[var(--text-primary)]"
|
|
2562
2562
|
),
|
|
2563
|
+
onClick: (event) => {
|
|
2564
|
+
event.stopPropagation();
|
|
2565
|
+
},
|
|
2566
|
+
onPointerDown: (event) => {
|
|
2567
|
+
event.stopPropagation();
|
|
2568
|
+
},
|
|
2563
2569
|
children: [
|
|
2564
2570
|
/* @__PURE__ */ jsx4(ListFilter, { className: "size-4", strokeWidth: 2.1, "aria-hidden": "true" }),
|
|
2565
2571
|
filtersActive ? /* @__PURE__ */ jsx4(
|
|
@@ -2581,6 +2587,18 @@ function MessageCenterViewMenu({
|
|
|
2581
2587
|
sideOffset: 8,
|
|
2582
2588
|
className: "min-w-[240px] p-1.5",
|
|
2583
2589
|
style: { zIndex: "var(--z-dialog-popover)" },
|
|
2590
|
+
onClick: (event) => {
|
|
2591
|
+
event.stopPropagation();
|
|
2592
|
+
},
|
|
2593
|
+
onCloseAutoFocus: (event) => {
|
|
2594
|
+
event.preventDefault();
|
|
2595
|
+
},
|
|
2596
|
+
onKeyDown: (event) => {
|
|
2597
|
+
event.stopPropagation();
|
|
2598
|
+
},
|
|
2599
|
+
onPointerDown: (event) => {
|
|
2600
|
+
event.stopPropagation();
|
|
2601
|
+
},
|
|
2584
2602
|
children: [
|
|
2585
2603
|
/* @__PURE__ */ jsx4(DropdownMenuLabel, { children: t("agentHost.workspaceAgentMessageCenterGroupBy") }),
|
|
2586
2604
|
/* @__PURE__ */ jsx4(
|