anentrypoint-design 0.0.318 → 0.0.319
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 +12 -12
- package/package.json +1 -1
- package/src/components/chat.js +34 -4
- package/src/components/content.js +7 -3
- package/src/components/sessions.js +9 -1
package/chat.css
CHANGED
|
@@ -174,6 +174,7 @@
|
|
|
174
174
|
.chat-msg-action-label { font-size: var(--fs-tiny); }
|
|
175
175
|
.chat-msg-action:hover { background: var(--bg-2); color: var(--fg); }
|
|
176
176
|
.chat-msg-action:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: 1px; opacity: 1; }
|
|
177
|
+
.chat-msg-action.is-copied { color: var(--accent-ink); opacity: 1; }
|
|
177
178
|
|
|
178
179
|
/* Empty state: a fresh thread is an invitation, not a void. */
|
|
179
180
|
.agentchat-empty {
|
|
@@ -208,6 +209,11 @@
|
|
|
208
209
|
}
|
|
209
210
|
.agentchat-empty-suggestion:hover, .chat-empty-suggestion:hover { background: color-mix(in srgb, var(--accent, var(--fg)) 12%, transparent); }
|
|
210
211
|
.agentchat-empty-suggestion:focus-visible, .chat-empty-suggestion:focus-visible { outline: 2px solid var(--accent, var(--fg)); outline-offset: var(--focus-offset); }
|
|
212
|
+
/* Follow-up chips (contextual, based on the last turn) vs empty-state seed
|
|
213
|
+
chips (generic starter ideas) previously shared identical DOM shape with no
|
|
214
|
+
visual signal distinguishing them - a dashed border reads as "derived from
|
|
215
|
+
context" without introducing a new color/shape language. */
|
|
216
|
+
.agentchat-followup { border-style: dashed; }
|
|
211
217
|
|
|
212
218
|
/* Guided install path in the empty state: copy line + monospaced command rows
|
|
213
219
|
(each with its own copy button) + a recheck button. No animation. */
|
package/dist/247420.css
CHANGED
|
@@ -7130,6 +7130,7 @@
|
|
|
7130
7130
|
.ds-247420 .chat-msg-action-label { font-size: var(--fs-tiny); }
|
|
7131
7131
|
.ds-247420 .chat-msg-action:hover { background: var(--bg-2); color: var(--fg); }
|
|
7132
7132
|
.ds-247420 .chat-msg-action:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: 1px; opacity: 1; }
|
|
7133
|
+
.ds-247420 .chat-msg-action.is-copied { color: var(--accent-ink); opacity: 1; }
|
|
7133
7134
|
|
|
7134
7135
|
/* Empty state: a fresh thread is an invitation, not a void. */
|
|
7135
7136
|
.ds-247420 .agentchat-empty {
|
|
@@ -7164,6 +7165,11 @@
|
|
|
7164
7165
|
}
|
|
7165
7166
|
.ds-247420 .agentchat-empty-suggestion:hover, .ds-247420 .chat-empty-suggestion:hover { background: color-mix(in srgb, var(--accent, var(--fg)) 12%, transparent); }
|
|
7166
7167
|
.ds-247420 .agentchat-empty-suggestion:focus-visible, .ds-247420 .chat-empty-suggestion:focus-visible { outline: 2px solid var(--accent, var(--fg)); outline-offset: var(--focus-offset); }
|
|
7168
|
+
/* Follow-up chips (contextual, based on the last turn) vs empty-state seed
|
|
7169
|
+
chips (generic starter ideas) previously shared identical DOM shape with no
|
|
7170
|
+
visual signal distinguishing them - a dashed border reads as "derived from
|
|
7171
|
+
context" without introducing a new color/shape language. */
|
|
7172
|
+
.ds-247420 .agentchat-followup { border-style: dashed; }
|
|
7167
7173
|
|
|
7168
7174
|
/* Guided install path in the empty state: copy line + monospaced command rows
|
|
7169
7175
|
(each with its own copy button) + a recheck button. No animation. */
|