anentrypoint-design 0.0.337 → 0.0.338
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/chat.css +6 -0
- package/dist/247420.css +6 -0
- package/dist/247420.js +19 -19
- package/package.json +1 -1
- package/src/components/content.js +8 -1
package/chat.css
CHANGED
|
@@ -401,6 +401,12 @@
|
|
|
401
401
|
ConversationList — left-rail "Chats" column.
|
|
402
402
|
---------------------------------------------------------------------------- */
|
|
403
403
|
.ds-sessions { display: flex; flex-direction: column; min-height: 0; height: 100%; }
|
|
404
|
+
/* agentgui's search-results export row sits as a sibling ABOVE ConversationList
|
|
405
|
+
(not threaded through any of its props) - the wrapper must replicate the
|
|
406
|
+
same flex-column layout .ds-sessions itself uses so ConversationList's own
|
|
407
|
+
internal scroll region isn't broken by an extra non-flex ancestor. */
|
|
408
|
+
.agentgui-search-rail-wrap { display: flex; flex-direction: column; min-height: 0; height: 100%; }
|
|
409
|
+
.agentgui-search-export-row { flex: 0 0 auto; padding: var(--space-2) var(--space-3) 0; }
|
|
404
410
|
/* One row: quiet icon new-chat beside the search. The list's new-chat must not
|
|
405
411
|
repeat the rail's primary CTA - two identical green buttons on screen at
|
|
406
412
|
once read as a layout mistake, and the rail action already owns 'new'. */
|
package/dist/247420.css
CHANGED
|
@@ -7448,6 +7448,12 @@
|
|
|
7448
7448
|
ConversationList — left-rail "Chats" column.
|
|
7449
7449
|
---------------------------------------------------------------------------- */
|
|
7450
7450
|
.ds-247420 .ds-sessions { display: flex; flex-direction: column; min-height: 0; height: 100%; }
|
|
7451
|
+
/* agentgui's search-results export row sits as a sibling ABOVE ConversationList
|
|
7452
|
+
(not threaded through any of its props) - the wrapper must replicate the
|
|
7453
|
+
same flex-column layout .ds-sessions itself uses so ConversationList's own
|
|
7454
|
+
internal scroll region isn't broken by an extra non-flex ancestor. */
|
|
7455
|
+
.ds-247420 .agentgui-search-rail-wrap { display: flex; flex-direction: column; min-height: 0; height: 100%; }
|
|
7456
|
+
.ds-247420 .agentgui-search-export-row { flex: 0 0 auto; padding: var(--space-2) var(--space-3) 0; }
|
|
7451
7457
|
/* One row: quiet icon new-chat beside the search. The list's new-chat must not
|
|
7452
7458
|
repeat the rail's primary CTA - two identical green buttons on screen at
|
|
7453
7459
|
once read as a layout mistake, and the rail action already owns 'new'. */
|