@xenosystem/agent-interface-ui 0.1.47 → 0.1.49

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 -1
  2. package/package.json +6 -6
package/dist/agent.css CHANGED
@@ -7595,7 +7595,11 @@ a.xeno-source-card:focus-visible {
7595
7595
  /* the receipt row: the clock line, then — settled, with sources — a divider and the sources control,
7596
7596
  each its own toggle; the line keeps its own width so the divider sits right after the chevron */
7597
7597
  .xa-linerow { display: flex; align-items: center; gap: 10px; min-height: 22px; }
7598
- .xa-linerow > .xa-line { flex: none; }
7598
+ /* live, the line fills the row so its ticker (`flex: 1 1 0`) has width — `flex: none` here shrank the
7599
+ ticker to its glyph and the words vanished (2026-09-18); settled, beside a sources control, the line
7600
+ hugs its reading so the divider sits right after "1 step" */
7601
+ .xa-linerow > .xa-line { flex: 1 1 auto; min-width: 0; }
7602
+ .xa-linerow > .xa-line.xa-with-sources { flex: none; }
7599
7603
  .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; }
7600
7604
  .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; }
7601
7605
  .xa-srcline:hover { color: var(--xa-t2); }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xenosystem/agent-interface-ui",
3
- "version": "0.1.47",
3
+ "version": "0.1.49",
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.47",
46
- "@xenosystem/agent-interface-hub-adapter": "0.1.47",
47
- "@xenosystem/agent-interface-contract": "0.1.47",
48
- "@xenosystem/agent-interface-client": "0.1.47",
49
- "@xenosystem/agent-interface-core": "0.1.47"
45
+ "@xenosystem/agent-conversation": "0.1.49",
46
+ "@xenosystem/agent-interface-core": "0.1.49",
47
+ "@xenosystem/agent-interface-client": "0.1.49",
48
+ "@xenosystem/agent-interface-contract": "0.1.49",
49
+ "@xenosystem/agent-interface-hub-adapter": "0.1.49"
50
50
  },
51
51
  "peerDependencies": {
52
52
  "react": "^19.0.0",