@xenosystem/agent-interface-ui 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.
Files changed (2) hide show
  1. package/dist/agent.css +5 -2
  2. package/package.json +6 -6
package/dist/agent.css CHANGED
@@ -7967,9 +7967,12 @@ a.xeno-source-card:focus-visible {
7967
7967
 
7968
7968
  .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; }
7969
7969
  .xa-dock .xa-notice.xa-center { align-items: center; }
7970
- .xa-dock .xa-notice .xa-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
7970
+ /* `.xa-txt` is ALSO the dock's text-button class (below), whose `height: 24px; white-space: nowrap;
7971
+ line-height: 1` reached this column by specificity and clipped the notice to one unwrapped line
7972
+ at panel widths (Canvas, 420 px, 2026-09-17). The notice's column is a column of prose. */
7973
+ .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; }
7971
7974
  .xa-dock .xa-notice .xa-ttl { font-size: 12px; line-height: 1.3; font-weight: 600; color: var(--xa-t1); }
7972
- .xa-dock .xa-notice .xa-sub { font-size: 11px; line-height: 1.45; color: var(--xa-t4); }
7975
+ .xa-dock .xa-notice .xa-sub { font-size: 11px; line-height: 1.45; color: var(--xa-t4); overflow-wrap: anywhere; }
7973
7976
  .xa-dock .xa-notice .xa-grow { flex: 1; }
7974
7977
  .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; }
7975
7978
  .xa-dock .xa-notice .xa-act:hover { background: var(--xa-send-hover); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xenosystem/agent-interface-ui",
3
- "version": "0.1.37",
3
+ "version": "0.1.38",
4
4
  "license": "UNLICENSED",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -42,11 +42,11 @@
42
42
  "react-markdown": "^10.1.0",
43
43
  "remark-gfm": "^4.0.1",
44
44
  "zustand": "^5.0.2",
45
- "@xenosystem/agent-conversation": "0.1.37",
46
- "@xenosystem/agent-interface-core": "0.1.37",
47
- "@xenosystem/agent-interface-client": "0.1.37",
48
- "@xenosystem/agent-interface-contract": "0.1.37",
49
- "@xenosystem/agent-interface-hub-adapter": "0.1.37"
45
+ "@xenosystem/agent-interface-client": "0.1.38",
46
+ "@xenosystem/agent-interface-contract": "0.1.38",
47
+ "@xenosystem/agent-interface-core": "0.1.38",
48
+ "@xenosystem/agent-conversation": "0.1.38",
49
+ "@xenosystem/agent-interface-hub-adapter": "0.1.38"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "react": "^19.0.0",