@xenosystem/agent-conversation 0.1.37 → 0.1.39
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/components/agent/composer/Tip.d.ts.map +1 -1
- package/dist/components/agent/composer/Tip.js +8 -0
- package/dist/components/agent/composer/Tip.js.map +1 -1
- package/dist/components/agent/transcript/Transcript.d.ts +11 -1
- package/dist/components/agent/transcript/Transcript.d.ts.map +1 -1
- package/dist/components/agent/transcript/Transcript.js +7 -4
- package/dist/components/agent/transcript/Transcript.js.map +1 -1
- package/dist/stores/agentChatStore.d.ts.map +1 -1
- package/dist/stores/agentChatStore.js +26 -17
- package/dist/stores/agentChatStore.js.map +1 -1
- package/package.json +5 -5
- package/src/composer.css +5 -2
- package/src/transcript.css +4 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xenosystem/agent-conversation",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.39",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"description": "The XENO Agent conversation surface: the transcript, the composer, and the logic behind them.",
|
|
6
6
|
"type": "module",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"react-markdown": "^10.1.0",
|
|
44
44
|
"remark-gfm": "^4.0.1",
|
|
45
45
|
"zustand": "^5.0.2",
|
|
46
|
-
"@xenosystem/agent-interface-
|
|
47
|
-
"@xenosystem/agent-interface-
|
|
48
|
-
"@xenosystem/agent-interface-
|
|
49
|
-
"@xenosystem/agent-interface-hub-adapter": "0.1.
|
|
46
|
+
"@xenosystem/agent-interface-client": "0.1.39",
|
|
47
|
+
"@xenosystem/agent-interface-core": "0.1.39",
|
|
48
|
+
"@xenosystem/agent-interface-contract": "0.1.39",
|
|
49
|
+
"@xenosystem/agent-interface-hub-adapter": "0.1.39"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": "^19.0.0",
|
package/src/composer.css
CHANGED
|
@@ -22,9 +22,12 @@
|
|
|
22
22
|
|
|
23
23
|
.xa-dock .xa-notice { display: flex; align-items: flex-start; gap: 10px; padding: 11px 12px; background: var(--xa-plate); border: 1px solid var(--xa-line); border-radius: 6px; }
|
|
24
24
|
.xa-dock .xa-notice.xa-center { align-items: center; }
|
|
25
|
-
|
|
25
|
+
/* `.xa-txt` is ALSO the dock's text-button class (below), whose `height: 24px; white-space: nowrap;
|
|
26
|
+
line-height: 1` reached this column by specificity and clipped the notice to one unwrapped line
|
|
27
|
+
at panel widths (Canvas, 420 px, 2026-09-17). The notice's column is a column of prose. */
|
|
28
|
+
.xa-dock .xa-notice .xa-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; height: auto; padding: 0; border-radius: 0; line-height: normal; font-weight: 400; color: inherit; white-space: normal; }
|
|
26
29
|
.xa-dock .xa-notice .xa-ttl { font-size: 12px; line-height: 1.3; font-weight: 600; color: var(--xa-t1); }
|
|
27
|
-
.xa-dock .xa-notice .xa-sub { font-size: 11px; line-height: 1.45; color: var(--xa-t4); }
|
|
30
|
+
.xa-dock .xa-notice .xa-sub { font-size: 11px; line-height: 1.45; color: var(--xa-t4); overflow-wrap: anywhere; }
|
|
28
31
|
.xa-dock .xa-notice .xa-grow { flex: 1; }
|
|
29
32
|
.xa-dock .xa-notice .xa-act { height: 24px; padding: 0 10px; background: var(--xa-send); border-radius: 4px; font-size: 11px; font-weight: 500; color: var(--xa-ground); flex: none; }
|
|
30
33
|
.xa-dock .xa-notice .xa-act:hover { background: var(--xa-send-hover); }
|
package/src/transcript.css
CHANGED
|
@@ -264,6 +264,10 @@
|
|
|
264
264
|
.xa-line .xa-chev { flex: none; color: var(--xa-t6); opacity: 0; transition: transform 160ms var(--xa-ease), opacity 160ms linear; }
|
|
265
265
|
.xa-turn:not(.xa-live) .xa-line .xa-chev { opacity: 1; }
|
|
266
266
|
.xa-turn.xa-open .xa-line .xa-chev { transform: rotate(90deg); }
|
|
267
|
+
/* a bare receipt (clock `always`, no steps): the line rests — nothing under it to open */
|
|
268
|
+
.xa-turn.xa-bare .xa-line { cursor: default; }
|
|
269
|
+
.xa-turn.xa-bare .xa-line:hover .xa-read { color: var(--xa-t4); }
|
|
270
|
+
.xa-turn.xa-bare .xa-line .xa-chev { display: none; }
|
|
267
271
|
/* collapsed steps: while it works the rail stays folded and the clock line carries the current step —
|
|
268
272
|
"Working for 4s | Clicked Message @Lil Bro" — the text fading out on the right when it is long */
|
|
269
273
|
.xa-line .xa-vr { display: none; flex: none; width: 1px; height: 10px; background: rgba(var(--xa-ink), 0.12); }
|