@tutti-os/agent-gui 0.0.184 → 0.0.185
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/app/renderer/agentactivity.css +21 -7
- package/package.json +14 -14
|
@@ -8436,22 +8436,36 @@ html[data-theme="light"] [data-message-center-item-id].agent-gui-edge-glow {
|
|
|
8436
8436
|
width: max-content;
|
|
8437
8437
|
max-width: min(100%, var(--agent-mention-max-width, 16rem));
|
|
8438
8438
|
color: inherit;
|
|
8439
|
-
vertical-align:
|
|
8439
|
+
vertical-align: middle;
|
|
8440
8440
|
}
|
|
8441
8441
|
|
|
8442
|
+
/* Entity mentions wrap the shared MentionPill in an interactive link. Keep
|
|
8443
|
+
that link layout-only so the pill remains the single owner of its visual
|
|
8444
|
+
box; otherwise the wrapper's padding and offset create a second pill around
|
|
8445
|
+
it and push adjacent queued mentions apart. */
|
|
8442
8446
|
.agent-gui-node__composer-queued-prompt-markdown
|
|
8443
8447
|
[data-agent-file-mention="true"].tsh-agent-object-token--entity {
|
|
8444
8448
|
color: inherit;
|
|
8445
|
-
top:
|
|
8449
|
+
top: 0;
|
|
8450
|
+
gap: 0;
|
|
8446
8451
|
max-width: min(100%, var(--agent-mention-max-width, 16rem));
|
|
8447
|
-
min-height:
|
|
8448
|
-
padding:
|
|
8449
|
-
border:
|
|
8450
|
-
border-radius:
|
|
8451
|
-
line-height:
|
|
8452
|
+
min-height: 0;
|
|
8453
|
+
padding: 0;
|
|
8454
|
+
border: 0;
|
|
8455
|
+
border-radius: 0;
|
|
8456
|
+
line-height: inherit;
|
|
8452
8457
|
transition: none;
|
|
8453
8458
|
}
|
|
8454
8459
|
|
|
8460
|
+
.agent-gui-node__composer-queued-prompt-markdown
|
|
8461
|
+
[data-agent-file-mention="true"].tsh-agent-object-token--file,
|
|
8462
|
+
.agent-gui-node__composer-queued-prompt-markdown
|
|
8463
|
+
[data-agent-file-mention="true"].tsh-agent-object-token--entity
|
|
8464
|
+
> [data-slot="mention-pill"] {
|
|
8465
|
+
top: 0;
|
|
8466
|
+
vertical-align: middle;
|
|
8467
|
+
}
|
|
8468
|
+
|
|
8455
8469
|
.agent-gui-node__composer-queued-prompt-markdown
|
|
8456
8470
|
[data-agent-file-mention="true"].tsh-agent-object-token:hover {
|
|
8457
8471
|
border-color: transparent;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tutti-os/agent-gui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.185",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -143,19 +143,19 @@
|
|
|
143
143
|
"dependencies": {
|
|
144
144
|
"@monaco-editor/react": "^4.7.0",
|
|
145
145
|
"@tanstack/react-virtual": "^3.13.12",
|
|
146
|
-
"@tutti-os/agent-activity-core": "0.0.
|
|
147
|
-
"@tutti-os/browser-node": "0.0.
|
|
148
|
-
"@tutti-os/ui-i18n-runtime": "0.0.
|
|
149
|
-
"@tutti-os/ui-react-hooks": "0.0.
|
|
150
|
-
"@tutti-os/ui-rich-text": "0.0.
|
|
151
|
-
"@tutti-os/ui-system": "0.0.
|
|
152
|
-
"@tutti-os/workbench-surface": "0.0.
|
|
153
|
-
"@tutti-os/workspace-external-core": "0.0.
|
|
154
|
-
"@tutti-os/workspace-file-manager": "0.0.
|
|
155
|
-
"@tutti-os/workspace-file-preview": "0.0.
|
|
156
|
-
"@tutti-os/workspace-file-reference": "0.0.
|
|
157
|
-
"@tutti-os/workspace-issue-manager": "0.0.
|
|
158
|
-
"@tutti-os/workspace-user-project": "0.0.
|
|
146
|
+
"@tutti-os/agent-activity-core": "0.0.185",
|
|
147
|
+
"@tutti-os/browser-node": "0.0.185",
|
|
148
|
+
"@tutti-os/ui-i18n-runtime": "0.0.185",
|
|
149
|
+
"@tutti-os/ui-react-hooks": "0.0.185",
|
|
150
|
+
"@tutti-os/ui-rich-text": "0.0.185",
|
|
151
|
+
"@tutti-os/ui-system": "0.0.185",
|
|
152
|
+
"@tutti-os/workbench-surface": "0.0.185",
|
|
153
|
+
"@tutti-os/workspace-external-core": "0.0.185",
|
|
154
|
+
"@tutti-os/workspace-file-manager": "0.0.185",
|
|
155
|
+
"@tutti-os/workspace-file-preview": "0.0.185",
|
|
156
|
+
"@tutti-os/workspace-file-reference": "0.0.185",
|
|
157
|
+
"@tutti-os/workspace-issue-manager": "0.0.185",
|
|
158
|
+
"@tutti-os/workspace-user-project": "0.0.185",
|
|
159
159
|
"clsx": "^2.1.1",
|
|
160
160
|
"framer-motion": "^12.40.0",
|
|
161
161
|
"lodash": "^4.17.21",
|