@xenosystem/agent-interface-ui 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/agent.css +9 -2
- package/package.json +6 -6
package/dist/agent.css
CHANGED
|
@@ -7625,6 +7625,10 @@ a.xeno-source-card:focus-visible {
|
|
|
7625
7625
|
.xa-line .xa-chev { flex: none; color: var(--xa-t6); opacity: 0; transition: transform 160ms var(--xa-ease), opacity 160ms linear; }
|
|
7626
7626
|
.xa-turn:not(.xa-live) .xa-line .xa-chev { opacity: 1; }
|
|
7627
7627
|
.xa-turn.xa-open .xa-line .xa-chev { transform: rotate(90deg); }
|
|
7628
|
+
/* a bare receipt (clock `always`, no steps): the line rests — nothing under it to open */
|
|
7629
|
+
.xa-turn.xa-bare .xa-line { cursor: default; }
|
|
7630
|
+
.xa-turn.xa-bare .xa-line:hover .xa-read { color: var(--xa-t4); }
|
|
7631
|
+
.xa-turn.xa-bare .xa-line .xa-chev { display: none; }
|
|
7628
7632
|
/* collapsed steps: while it works the rail stays folded and the clock line carries the current step —
|
|
7629
7633
|
"Working for 4s | Clicked Message @Lil Bro" — the text fading out on the right when it is long */
|
|
7630
7634
|
.xa-line .xa-vr { display: none; flex: none; width: 1px; height: 10px; background: rgba(var(--xa-ink), 0.12); }
|
|
@@ -7967,9 +7971,12 @@ a.xeno-source-card:focus-visible {
|
|
|
7967
7971
|
|
|
7968
7972
|
.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
7973
|
.xa-dock .xa-notice.xa-center { align-items: center; }
|
|
7970
|
-
|
|
7974
|
+
/* `.xa-txt` is ALSO the dock's text-button class (below), whose `height: 24px; white-space: nowrap;
|
|
7975
|
+
line-height: 1` reached this column by specificity and clipped the notice to one unwrapped line
|
|
7976
|
+
at panel widths (Canvas, 420 px, 2026-09-17). The notice's column is a column of prose. */
|
|
7977
|
+
.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
7978
|
.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); }
|
|
7979
|
+
.xa-dock .xa-notice .xa-sub { font-size: 11px; line-height: 1.45; color: var(--xa-t4); overflow-wrap: anywhere; }
|
|
7973
7980
|
.xa-dock .xa-notice .xa-grow { flex: 1; }
|
|
7974
7981
|
.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
7982
|
.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.
|
|
3
|
+
"version": "0.1.39",
|
|
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.
|
|
46
|
-
"@xenosystem/agent-interface-
|
|
47
|
-
"@xenosystem/agent-interface-
|
|
48
|
-
"@xenosystem/agent-interface-
|
|
49
|
-
"@xenosystem/agent-interface-
|
|
45
|
+
"@xenosystem/agent-conversation": "0.1.39",
|
|
46
|
+
"@xenosystem/agent-interface-contract": "0.1.39",
|
|
47
|
+
"@xenosystem/agent-interface-hub-adapter": "0.1.39",
|
|
48
|
+
"@xenosystem/agent-interface-core": "0.1.39",
|
|
49
|
+
"@xenosystem/agent-interface-client": "0.1.39"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
52
|
"react": "^19.0.0",
|