anentrypoint-design 0.0.454 → 0.0.455
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/247420.css +18 -0
- package/dist/247420.js +24 -24
- package/package.json +1 -1
- package/src/components/agent-chat/controls.js +6 -2
- package/src/components/agent-chat/surface.js +2 -2
- package/src/components/git-status.js +6 -2
- package/src/components/sessions/dashboard.js +5 -1
- package/src/css/app-shell/data-density.css +18 -0
- package/types/components.d.ts +2 -0
package/dist/247420.css
CHANGED
|
@@ -5829,6 +5829,24 @@
|
|
|
5829
5829
|
static readouts). */
|
|
5830
5830
|
.ds-247420 .ds-session-row[role="button"], .ds-247420 a.ds-session-row { cursor: pointer; }
|
|
5831
5831
|
|
|
5832
|
+
/* ConversationList's title/meta layout had no dedicated rule anywhere (only a
|
|
5833
|
+
stray cross-reference comment in panel-row.css), so the title sat at flex's
|
|
5834
|
+
default 0-basis and lost the space race to its meta siblings (agent name,
|
|
5835
|
+
status dot) - titles truncated to a character or two ("d…") well before the
|
|
5836
|
+
row ran out of real width. .ds-session-main grows to fill the row; its
|
|
5837
|
+
title/sub children get the min-width:0 an ellipsis needs inside a flex
|
|
5838
|
+
item; the meta/actions siblings take only what their content needs. */
|
|
5839
|
+
.ds-247420 .ds-session-main { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 0; }
|
|
5840
|
+
.ds-247420 .ds-session-title {
|
|
5841
|
+
display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
|
|
5842
|
+
font-size: var(--fs-sm); font-weight: 500; color: var(--fg);
|
|
5843
|
+
}
|
|
5844
|
+
.ds-247420 .ds-session-sub {
|
|
5845
|
+
display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
|
|
5846
|
+
font-size: var(--fs-micro); color: var(--fg-3);
|
|
5847
|
+
}
|
|
5848
|
+
.ds-247420 .ds-session-meta, .ds-247420 .ds-session-row-actions { flex: 0 0 auto; display: flex; align-items: center; gap: var(--space-1); }
|
|
5849
|
+
|
|
5832
5850
|
/* Sub-parts that decorate the row above. */
|
|
5833
5851
|
.ds-247420 .ds-session-row-id {
|
|
5834
5852
|
font-family: var(--ff-mono); font-size: var(--fs-micro); color: var(--accent-ink);
|