anentrypoint-design 0.0.318 → 0.0.320
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/app-shell.css +16 -0
- package/chat.css +6 -0
- package/dist/247420.css +22 -0
- package/dist/247420.js +13 -13
- 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/app-shell.css
CHANGED
|
@@ -399,6 +399,22 @@ body.canvas-host { background: transparent !important; }
|
|
|
399
399
|
.app-main > .ds-files-stack,
|
|
400
400
|
.app-main > .grow { flex: 1 1 auto; min-height: 0; }
|
|
401
401
|
.app-main.narrow { max-width: var(--measure-narrow); margin: 0 auto; }
|
|
402
|
+
/* Article-body heading rhythm and lede spacing, consumed by flatspace-rendered
|
|
403
|
+
long-form pages (docs, papers) that drop headings/panels directly into .app-main. */
|
|
404
|
+
.app-main > h1,
|
|
405
|
+
.app-main > h2,
|
|
406
|
+
.app-main > h3 { margin-top: 36px; margin-bottom: 12px; }
|
|
407
|
+
.app-main > h1:first-child { margin-top: 8px; }
|
|
408
|
+
.app-main > .panel,
|
|
409
|
+
.app-main > .work-detail-chips,
|
|
410
|
+
.app-main > .cli { margin-top: 18px; margin-bottom: 18px; }
|
|
411
|
+
.app-main .ds-lede { margin-top: 4px; margin-bottom: 18px; max-width: 64ch; line-height: 1.6; }
|
|
412
|
+
.work-detail-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; row-gap: 10px; }
|
|
413
|
+
@media (max-width: 720px) {
|
|
414
|
+
.app-main > h1,
|
|
415
|
+
.app-main > h2,
|
|
416
|
+
.app-main > h3 { margin-top: 28px; }
|
|
417
|
+
}
|
|
402
418
|
|
|
403
419
|
@media (min-width: 1400px) {
|
|
404
420
|
/* Fluid ceiling, not a hard stop: scales from 1400px up to 1920px across the
|
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
|
@@ -951,6 +951,22 @@
|
|
|
951
951
|
.ds-247420 .app-main > .ds-files-stack,
|
|
952
952
|
.ds-247420 .app-main > .grow { flex: 1 1 auto; min-height: 0; }
|
|
953
953
|
.ds-247420 .app-main.narrow { max-width: var(--measure-narrow); margin: 0 auto; }
|
|
954
|
+
/* Article-body heading rhythm and lede spacing, consumed by flatspace-rendered
|
|
955
|
+
long-form pages (docs, papers) that drop headings/panels directly into .app-main. */
|
|
956
|
+
.ds-247420 .app-main > h1,
|
|
957
|
+
.ds-247420 .app-main > h2,
|
|
958
|
+
.ds-247420 .app-main > h3 { margin-top: 36px; margin-bottom: 12px; }
|
|
959
|
+
.ds-247420 .app-main > h1:first-child { margin-top: 8px; }
|
|
960
|
+
.ds-247420 .app-main > .panel,
|
|
961
|
+
.ds-247420 .app-main > .work-detail-chips,
|
|
962
|
+
.ds-247420 .app-main > .cli { margin-top: 18px; margin-bottom: 18px; }
|
|
963
|
+
.ds-247420 .app-main .ds-lede { margin-top: 4px; margin-bottom: 18px; max-width: 64ch; line-height: 1.6; }
|
|
964
|
+
.ds-247420 .work-detail-chips { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; row-gap: 10px; }
|
|
965
|
+
@media (max-width: 720px) {
|
|
966
|
+
.ds-247420 .app-main > h1,
|
|
967
|
+
.ds-247420 .app-main > h2,
|
|
968
|
+
.ds-247420 .app-main > h3 { margin-top: 28px; }
|
|
969
|
+
}
|
|
954
970
|
|
|
955
971
|
@media (min-width: 1400px) {
|
|
956
972
|
/* Fluid ceiling, not a hard stop: scales from 1400px up to 1920px across the
|
|
@@ -7130,6 +7146,7 @@
|
|
|
7130
7146
|
.ds-247420 .chat-msg-action-label { font-size: var(--fs-tiny); }
|
|
7131
7147
|
.ds-247420 .chat-msg-action:hover { background: var(--bg-2); color: var(--fg); }
|
|
7132
7148
|
.ds-247420 .chat-msg-action:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: 1px; opacity: 1; }
|
|
7149
|
+
.ds-247420 .chat-msg-action.is-copied { color: var(--accent-ink); opacity: 1; }
|
|
7133
7150
|
|
|
7134
7151
|
/* Empty state: a fresh thread is an invitation, not a void. */
|
|
7135
7152
|
.ds-247420 .agentchat-empty {
|
|
@@ -7164,6 +7181,11 @@
|
|
|
7164
7181
|
}
|
|
7165
7182
|
.ds-247420 .agentchat-empty-suggestion:hover, .ds-247420 .chat-empty-suggestion:hover { background: color-mix(in srgb, var(--accent, var(--fg)) 12%, transparent); }
|
|
7166
7183
|
.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); }
|
|
7184
|
+
/* Follow-up chips (contextual, based on the last turn) vs empty-state seed
|
|
7185
|
+
chips (generic starter ideas) previously shared identical DOM shape with no
|
|
7186
|
+
visual signal distinguishing them - a dashed border reads as "derived from
|
|
7187
|
+
context" without introducing a new color/shape language. */
|
|
7188
|
+
.ds-247420 .agentchat-followup { border-style: dashed; }
|
|
7167
7189
|
|
|
7168
7190
|
/* Guided install path in the empty state: copy line + monospaced command rows
|
|
7169
7191
|
(each with its own copy button) + a recheck button. No animation. */
|