@xenosystem/agent-conversation 0.1.37 → 0.1.38

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xenosystem/agent-conversation",
3
- "version": "0.1.37",
3
+ "version": "0.1.38",
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-contract": "0.1.37",
47
- "@xenosystem/agent-interface-client": "0.1.37",
48
- "@xenosystem/agent-interface-core": "0.1.37",
49
- "@xenosystem/agent-interface-hub-adapter": "0.1.37"
46
+ "@xenosystem/agent-interface-client": "0.1.38",
47
+ "@xenosystem/agent-interface-contract": "0.1.38",
48
+ "@xenosystem/agent-interface-core": "0.1.38",
49
+ "@xenosystem/agent-interface-hub-adapter": "0.1.38"
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
- .xa-dock .xa-notice .xa-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
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); }