@xenosystem/agent-conversation 0.1.47 → 0.1.48
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/package.json +5 -5
- package/src/transcript.css +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xenosystem/agent-conversation",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.48",
|
|
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-
|
|
46
|
+
"@xenosystem/agent-interface-contract": "0.1.48",
|
|
47
|
+
"@xenosystem/agent-interface-client": "0.1.48",
|
|
48
|
+
"@xenosystem/agent-interface-core": "0.1.48",
|
|
49
|
+
"@xenosystem/agent-interface-hub-adapter": "0.1.48"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": "^19.0.0",
|
package/src/transcript.css
CHANGED
|
@@ -234,7 +234,11 @@
|
|
|
234
234
|
/* the receipt row: the clock line, then — settled, with sources — a divider and the sources control,
|
|
235
235
|
each its own toggle; the line keeps its own width so the divider sits right after the chevron */
|
|
236
236
|
.xa-linerow { display: flex; align-items: center; gap: 10px; min-height: 22px; }
|
|
237
|
-
|
|
237
|
+
/* live, the line fills the row so its ticker (`flex: 1 1 0`) has width — `flex: none` here shrank the
|
|
238
|
+
ticker to its glyph and the words vanished (2026-09-18); settled, beside a sources control, the line
|
|
239
|
+
hugs its reading so the divider sits right after "1 step" */
|
|
240
|
+
.xa-linerow > .xa-line { flex: 1 1 auto; min-width: 0; }
|
|
241
|
+
.xa-linerow > .xa-line.xa-with-sources { flex: none; }
|
|
238
242
|
.xa-linerow > .xa-vr-src { display: block; flex: none; width: 1px; height: 10px; background: rgba(var(--xa-ink), 0.12); animation: xa-rise 280ms var(--xa-ease) both; animation-delay: 160ms; }
|
|
239
243
|
.xa-srcline { display: flex; align-items: center; gap: 8px; height: 22px; cursor: pointer; font-size: 11px; color: var(--xa-t4); animation: xa-rise 280ms var(--xa-ease) both; animation-delay: 160ms; }
|
|
240
244
|
.xa-srcline:hover { color: var(--xa-t2); }
|