@tutti-os/agent-gui 0.0.221 → 0.0.223
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 +1 -1
- package/dist/agent-gui.js +2 -2
- package/dist/app/renderer/agentactivity.css +61 -6
- package/dist/{chunk-RA4DVAMT.js → chunk-BJSTRLSI.js} +3 -3
- package/dist/{chunk-RA4DVAMT.js.map → chunk-BJSTRLSI.js.map} +1 -1
- package/dist/{chunk-MSCWLTYZ.js → chunk-LZW5S3XJ.js} +214 -150
- package/dist/{chunk-MSCWLTYZ.js.map → chunk-LZW5S3XJ.js.map} +1 -1
- package/dist/index.js +2 -2
- package/package.json +14 -14
|
@@ -7,7 +7,7 @@ import {
|
|
|
7
7
|
reconcileProjectedAgentConversationVM,
|
|
8
8
|
serializeAgentConversationForClipboard,
|
|
9
9
|
useProjectedAgentConversation
|
|
10
|
-
} from "../chunk-
|
|
10
|
+
} from "../chunk-BJSTRLSI.js";
|
|
11
11
|
import "../chunk-F6J3LJXK.js";
|
|
12
12
|
import "../chunk-Z35E22WS.js";
|
|
13
13
|
import "../chunk-LQMIEH4C.js";
|
package/dist/agent-gui.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import {
|
|
2
2
|
AgentGUI
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-LZW5S3XJ.js";
|
|
4
4
|
import "./chunk-LB4AGT7B.js";
|
|
5
5
|
import "./chunk-A4WCTHWS.js";
|
|
6
6
|
import "./chunk-7V5XYXKB.js";
|
|
@@ -11,7 +11,7 @@ import "./chunk-MGSRWYRN.js";
|
|
|
11
11
|
import "./chunk-CBMWHQ7P.js";
|
|
12
12
|
import "./chunk-KZIW5CCW.js";
|
|
13
13
|
import "./chunk-EVQ4JY3N.js";
|
|
14
|
-
import "./chunk-
|
|
14
|
+
import "./chunk-BJSTRLSI.js";
|
|
15
15
|
import "./chunk-F6J3LJXK.js";
|
|
16
16
|
import "./chunk-Z35E22WS.js";
|
|
17
17
|
import "./chunk-LQMIEH4C.js";
|
|
@@ -5647,8 +5647,6 @@ aside.workspace-agents-status-panel
|
|
|
5647
5647
|
align-items: center;
|
|
5648
5648
|
gap: 10px;
|
|
5649
5649
|
min-width: 0;
|
|
5650
|
-
/* Right inset mirrors the conversation list's 4px padding + 8px native
|
|
5651
|
-
scrollbar gutter so the toolbar controls end flush with the row edges. */
|
|
5652
5650
|
padding: 2px 12px 16px 12px;
|
|
5653
5651
|
}
|
|
5654
5652
|
|
|
@@ -5989,10 +5987,9 @@ aside.workspace-agents-status-panel
|
|
|
5989
5987
|
min-height: 0;
|
|
5990
5988
|
overflow-x: hidden;
|
|
5991
5989
|
overflow-y: auto;
|
|
5992
|
-
/*
|
|
5993
|
-
|
|
5994
|
-
|
|
5995
|
-
padding: 0 4px 18px 12px;
|
|
5990
|
+
/* The native overlay scrollbar does not reserve a gutter on macOS, so the
|
|
5991
|
+
right inset must match the left side explicitly. */
|
|
5992
|
+
padding: 0 12px 18px 12px;
|
|
5996
5993
|
}
|
|
5997
5994
|
|
|
5998
5995
|
.agent-gui-node__conversation-section {
|
|
@@ -8911,6 +8908,64 @@ html[data-theme="light"] [data-message-center-item-id].agent-gui-edge-glow {
|
|
|
8911
8908
|
opacity: 1;
|
|
8912
8909
|
}
|
|
8913
8910
|
|
|
8911
|
+
.agent-gui-node__composer-tutti-mode-icon {
|
|
8912
|
+
position: relative;
|
|
8913
|
+
display: inline-flex;
|
|
8914
|
+
width: 16px;
|
|
8915
|
+
height: 16px;
|
|
8916
|
+
flex: 0 0 16px;
|
|
8917
|
+
align-items: center;
|
|
8918
|
+
justify-content: center;
|
|
8919
|
+
/* Inherit color from the chip label so the mark tracks every state:
|
|
8920
|
+
text-secondary at rest, text-primary on hover, tutti-purple when armed. */
|
|
8921
|
+
contain: layout paint;
|
|
8922
|
+
}
|
|
8923
|
+
|
|
8924
|
+
.agent-gui-node__composer-tutti-mode-icon-static,
|
|
8925
|
+
.agent-gui-node__composer-tutti-mode-icon-animated {
|
|
8926
|
+
width: 16px;
|
|
8927
|
+
height: 16px;
|
|
8928
|
+
display: block;
|
|
8929
|
+
}
|
|
8930
|
+
|
|
8931
|
+
.agent-gui-node__composer-tutti-mode-icon-static {
|
|
8932
|
+
background-color: currentColor;
|
|
8933
|
+
opacity: 1;
|
|
8934
|
+
}
|
|
8935
|
+
|
|
8936
|
+
.agent-gui-node__composer-tutti-mode-icon:has(
|
|
8937
|
+
.agent-gui-node__composer-tutti-mode-icon-animated[data-active="true"]
|
|
8938
|
+
)
|
|
8939
|
+
.agent-gui-node__composer-tutti-mode-icon-static {
|
|
8940
|
+
opacity: 0;
|
|
8941
|
+
}
|
|
8942
|
+
|
|
8943
|
+
.agent-gui-node__composer-tutti-mode-icon-animated {
|
|
8944
|
+
position: absolute;
|
|
8945
|
+
inset: 0;
|
|
8946
|
+
/* Match the 16px static mark exactly; the APNG canvas already pads the
|
|
8947
|
+
snapping hand and bursting stars, so no enlargement is applied. */
|
|
8948
|
+
transform: translateZ(0);
|
|
8949
|
+
opacity: 0;
|
|
8950
|
+
pointer-events: none;
|
|
8951
|
+
backface-visibility: hidden;
|
|
8952
|
+
will-change: opacity, transform;
|
|
8953
|
+
}
|
|
8954
|
+
|
|
8955
|
+
.agent-gui-node__composer-tutti-mode-icon-animated[data-active="true"] {
|
|
8956
|
+
opacity: 1;
|
|
8957
|
+
}
|
|
8958
|
+
|
|
8959
|
+
@media (prefers-reduced-motion: reduce) {
|
|
8960
|
+
.agent-gui-node__composer-tutti-mode-icon-animated {
|
|
8961
|
+
display: none;
|
|
8962
|
+
}
|
|
8963
|
+
|
|
8964
|
+
.agent-gui-node__composer-tutti-mode-icon-static {
|
|
8965
|
+
opacity: 1 !important;
|
|
8966
|
+
}
|
|
8967
|
+
}
|
|
8968
|
+
|
|
8914
8969
|
.agent-gui-node__composer-handoff-icon[data-disabled="true"]
|
|
8915
8970
|
.agent-gui-node__composer-handoff-icon-animated {
|
|
8916
8971
|
opacity: 0;
|
|
@@ -12251,7 +12251,7 @@ function AgentVisibleErrorMessage({
|
|
|
12251
12251
|
{
|
|
12252
12252
|
role: isPlanOrQuotaLimit ? "status" : "alert",
|
|
12253
12253
|
className: `box-border w-full min-w-0 rounded-[8px] border p-3 text-[13px] leading-5 text-[var(--text-primary)] ${ERROR_BANNER_CLASS_NAME}`,
|
|
12254
|
-
children: /* @__PURE__ */ jsxs42("div", { className: "flex min-w-0 items-
|
|
12254
|
+
children: /* @__PURE__ */ jsxs42("div", { className: "flex min-w-0 items-center gap-3", children: [
|
|
12255
12255
|
/* @__PURE__ */ jsxs42("div", { className: "min-w-0 flex-1", children: [
|
|
12256
12256
|
/* @__PURE__ */ jsx58("div", { className: "font-medium text-[var(--text-primary)]", children: headline }),
|
|
12257
12257
|
hint ? /* @__PURE__ */ jsx58("div", { className: "mt-1 text-[11px] text-[var(--text-secondary)]", children: hint }) : null
|
|
@@ -12262,7 +12262,7 @@ function AgentVisibleErrorMessage({
|
|
|
12262
12262
|
type: "button",
|
|
12263
12263
|
variant: "ghost",
|
|
12264
12264
|
size: "sm",
|
|
12265
|
-
className: "
|
|
12265
|
+
className: "shrink-0",
|
|
12266
12266
|
onClick: () => {
|
|
12267
12267
|
if (externalAction?.url) {
|
|
12268
12268
|
onExternalLink?.(externalAction.url);
|
|
@@ -15983,4 +15983,4 @@ export {
|
|
|
15983
15983
|
AgentConversationFlow,
|
|
15984
15984
|
useProjectedAgentConversation
|
|
15985
15985
|
};
|
|
15986
|
-
//# sourceMappingURL=chunk-
|
|
15986
|
+
//# sourceMappingURL=chunk-BJSTRLSI.js.map
|