anentrypoint-design 0.0.232 → 0.0.234
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 +14 -1
- package/chat.css +25 -0
- package/dist/247420.css +39 -1
- package/dist/247420.js +10 -10
- package/package.json +1 -1
- package/src/community-app.js +17 -8
- package/src/components/files.js +6 -1
package/app-shell.css
CHANGED
|
@@ -2297,6 +2297,12 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
|
|
|
2297
2297
|
leaving the primary input near-invisible at rest - use the strong rule. */
|
|
2298
2298
|
border: var(--bw-hair) solid var(--rule-strong);
|
|
2299
2299
|
border-radius: var(--r-2);
|
|
2300
|
+
/* A flat hairline box on a flat background is the single most-repeated
|
|
2301
|
+
"looks unfinished" tell in the chat surface - the one control the user
|
|
2302
|
+
types into every turn had no more visual weight than a settings card.
|
|
2303
|
+
--shadow-1 (already defined kit-wide, just unused here) lifts it a hair
|
|
2304
|
+
off the page at rest; the existing focus-within box-shadow overrides it. */
|
|
2305
|
+
box-shadow: var(--shadow-1);
|
|
2300
2306
|
flex-shrink: 0;
|
|
2301
2307
|
transition: border-color var(--dur-snap) var(--ease), box-shadow var(--dur-snap) var(--ease);
|
|
2302
2308
|
}
|
|
@@ -3348,7 +3354,14 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
|
|
|
3348
3354
|
.ws-sessions {
|
|
3349
3355
|
grid-area: sessions;
|
|
3350
3356
|
min-height: 0; display: flex; flex-direction: column;
|
|
3351
|
-
|
|
3357
|
+
/* Rail and pane both sit on --bg-2 (a recessed plane framing the elevated
|
|
3358
|
+
--bg content column); sessions used flat --bg instead, so the
|
|
3359
|
+
conversation list and the chat thread read as the SAME surface with only
|
|
3360
|
+
a 1px hairline between them - the flattest, most "one big beige box"
|
|
3361
|
+
tell in the shell. --bg-2 restores the three-plane depth (rail/sessions
|
|
3362
|
+
recessed either side, content elevated in the middle) the design
|
|
3363
|
+
already establishes everywhere else. */
|
|
3364
|
+
background: var(--bg-2); border-right: var(--bw-hair) solid var(--bg-3);
|
|
3352
3365
|
overflow: hidden;
|
|
3353
3366
|
}
|
|
3354
3367
|
.ws-no-sessions .ws-sessions { display: none; }
|
package/chat.css
CHANGED
|
@@ -8,6 +8,14 @@
|
|
|
8
8
|
min-height: 0;
|
|
9
9
|
flex: 1;
|
|
10
10
|
gap: var(--space-2, 8px);
|
|
11
|
+
/* The chat tab opts out of .ws-main's padding (mainFlush) so the thread can
|
|
12
|
+
manage its own --measure centering, but that left every direct child -
|
|
13
|
+
controls row, heading, empty-state, composer - flush against the column
|
|
14
|
+
edge with zero gutter (the crumb bar above keeps its own padding, so the
|
|
15
|
+
content below visibly touched the edge the crumb text did not). A
|
|
16
|
+
uniform inline gutter here restores breathing room for every row without
|
|
17
|
+
disturbing --measure centering (it centers within this padded box). */
|
|
18
|
+
padding-inline: var(--space-5);
|
|
11
19
|
}
|
|
12
20
|
|
|
13
21
|
/* agent + model picker, new/stop, status — wraps on narrow widths */
|
|
@@ -502,6 +510,23 @@
|
|
|
502
510
|
padding: var(--space-3); background: color-mix(in oklab, var(--fg) 4%, transparent);
|
|
503
511
|
}
|
|
504
512
|
|
|
513
|
+
/* --- reply-preview banner shown above the composer while replying to a message. --- */
|
|
514
|
+
.cm-composer-wrap { display: flex; flex-direction: column; width: 100%; }
|
|
515
|
+
.cm-reply-preview {
|
|
516
|
+
display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
|
|
517
|
+
padding: var(--space-1) var(--space-3); border-bottom: var(--bw-hair) solid var(--rule);
|
|
518
|
+
background: color-mix(in oklab, var(--accent) 6%, transparent);
|
|
519
|
+
font-family: var(--ff-mono); font-size: var(--fs-tiny); color: var(--fg-2);
|
|
520
|
+
}
|
|
521
|
+
.cm-reply-preview-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
522
|
+
.cm-reply-preview-close {
|
|
523
|
+
display: inline-flex; align-items: center; justify-content: center;
|
|
524
|
+
background: none; border: none; color: var(--fg-3); cursor: pointer; padding: var(--space-1);
|
|
525
|
+
border-radius: var(--r-1); flex: 0 0 auto;
|
|
526
|
+
}
|
|
527
|
+
.cm-reply-preview-close:hover { color: var(--fg); background: color-mix(in oklab, var(--fg) 8%, transparent); }
|
|
528
|
+
.cm-reply-preview-close:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
|
|
529
|
+
|
|
505
530
|
/* --- A5: composer context line (agent / model / cwd at point of typing). --- */
|
|
506
531
|
.chat-composer-context {
|
|
507
532
|
display: block; width: 100%; text-align: left; padding: 4px var(--space-3) 0;
|
package/dist/247420.css
CHANGED
|
@@ -2797,6 +2797,12 @@
|
|
|
2797
2797
|
leaving the primary input near-invisible at rest - use the strong rule. */
|
|
2798
2798
|
border: var(--bw-hair) solid var(--rule-strong);
|
|
2799
2799
|
border-radius: var(--r-2);
|
|
2800
|
+
/* A flat hairline box on a flat background is the single most-repeated
|
|
2801
|
+
"looks unfinished" tell in the chat surface - the one control the user
|
|
2802
|
+
types into every turn had no more visual weight than a settings card.
|
|
2803
|
+
--shadow-1 (already defined kit-wide, just unused here) lifts it a hair
|
|
2804
|
+
off the page at rest; the existing focus-within box-shadow overrides it. */
|
|
2805
|
+
box-shadow: var(--shadow-1);
|
|
2800
2806
|
flex-shrink: 0;
|
|
2801
2807
|
transition: border-color var(--dur-snap) var(--ease), box-shadow var(--dur-snap) var(--ease);
|
|
2802
2808
|
}
|
|
@@ -3839,7 +3845,14 @@
|
|
|
3839
3845
|
.ds-247420 .ws-sessions {
|
|
3840
3846
|
grid-area: sessions;
|
|
3841
3847
|
min-height: 0; display: flex; flex-direction: column;
|
|
3842
|
-
|
|
3848
|
+
/* Rail and pane both sit on --bg-2 (a recessed plane framing the elevated
|
|
3849
|
+
--bg content column); sessions used flat --bg instead, so the
|
|
3850
|
+
conversation list and the chat thread read as the SAME surface with only
|
|
3851
|
+
a 1px hairline between them - the flattest, most "one big beige box"
|
|
3852
|
+
tell in the shell. --bg-2 restores the three-plane depth (rail/sessions
|
|
3853
|
+
recessed either side, content elevated in the middle) the design
|
|
3854
|
+
already establishes everywhere else. */
|
|
3855
|
+
background: var(--bg-2); border-right: var(--bw-hair) solid var(--bg-3);
|
|
3843
3856
|
overflow: hidden;
|
|
3844
3857
|
}
|
|
3845
3858
|
.ds-247420 .ws-no-sessions .ws-sessions { display: none; }
|
|
@@ -5615,6 +5628,14 @@
|
|
|
5615
5628
|
min-height: 0;
|
|
5616
5629
|
flex: 1;
|
|
5617
5630
|
gap: var(--space-2, 8px);
|
|
5631
|
+
/* The chat tab opts out of .ws-main's padding (mainFlush) so the thread can
|
|
5632
|
+
manage its own --measure centering, but that left every direct child -
|
|
5633
|
+
controls row, heading, empty-state, composer - flush against the column
|
|
5634
|
+
edge with zero gutter (the crumb bar above keeps its own padding, so the
|
|
5635
|
+
content below visibly touched the edge the crumb text did not). A
|
|
5636
|
+
uniform inline gutter here restores breathing room for every row without
|
|
5637
|
+
disturbing --measure centering (it centers within this padded box). */
|
|
5638
|
+
padding-inline: var(--space-5);
|
|
5618
5639
|
}
|
|
5619
5640
|
|
|
5620
5641
|
/* agent + model picker, new/stop, status — wraps on narrow widths */
|
|
@@ -6108,6 +6129,23 @@
|
|
|
6108
6129
|
padding: var(--space-3); background: color-mix(in oklab, var(--fg) 4%, transparent);
|
|
6109
6130
|
}
|
|
6110
6131
|
|
|
6132
|
+
/* --- reply-preview banner shown above the composer while replying to a message. --- */
|
|
6133
|
+
.ds-247420 .cm-composer-wrap { display: flex; flex-direction: column; width: 100%; }
|
|
6134
|
+
.ds-247420 .cm-reply-preview {
|
|
6135
|
+
display: flex; align-items: center; justify-content: space-between; gap: var(--space-2);
|
|
6136
|
+
padding: var(--space-1) var(--space-3); border-bottom: var(--bw-hair) solid var(--rule);
|
|
6137
|
+
background: color-mix(in oklab, var(--accent) 6%, transparent);
|
|
6138
|
+
font-family: var(--ff-mono); font-size: var(--fs-tiny); color: var(--fg-2);
|
|
6139
|
+
}
|
|
6140
|
+
.ds-247420 .cm-reply-preview-label { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
|
|
6141
|
+
.ds-247420 .cm-reply-preview-close {
|
|
6142
|
+
display: inline-flex; align-items: center; justify-content: center;
|
|
6143
|
+
background: none; border: none; color: var(--fg-3); cursor: pointer; padding: var(--space-1);
|
|
6144
|
+
border-radius: var(--r-1); flex: 0 0 auto;
|
|
6145
|
+
}
|
|
6146
|
+
.ds-247420 .cm-reply-preview-close:hover { color: var(--fg); background: color-mix(in oklab, var(--fg) 8%, transparent); }
|
|
6147
|
+
.ds-247420 .cm-reply-preview-close:focus-visible { outline: var(--focus-w) solid var(--focus-color); outline-offset: var(--focus-offset); }
|
|
6148
|
+
|
|
6111
6149
|
/* --- A5: composer context line (agent / model / cwd at point of typing). --- */
|
|
6112
6150
|
.ds-247420 .chat-composer-context {
|
|
6113
6151
|
display: block; width: 100%; text-align: left; padding: 4px var(--space-3) 0;
|