anentrypoint-design 0.0.289 → 0.0.291
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 +8 -7
- package/dist/247420.css +8 -7
- package/dist/247420.js +13 -13
- package/package.json +1 -1
- package/src/components/context-pane.js +6 -2
package/chat.css
CHANGED
|
@@ -88,6 +88,7 @@
|
|
|
88
88
|
flex-wrap: wrap;
|
|
89
89
|
}
|
|
90
90
|
.agentchat-cwd-text {
|
|
91
|
+
font-family: var(--ff-mono);
|
|
91
92
|
overflow: hidden;
|
|
92
93
|
text-overflow: ellipsis;
|
|
93
94
|
white-space: nowrap;
|
|
@@ -414,7 +415,7 @@
|
|
|
414
415
|
.ds-session-title { font-size: var(--fs-sm); color: var(--fg); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
415
416
|
.ds-session-sub { font-size: var(--fs-tiny); color: var(--fg-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
416
417
|
.ds-session-meta { display: flex; align-items: center; gap: var(--space-2); flex: 0 0 auto; }
|
|
417
|
-
.ds-session-agent { font-
|
|
418
|
+
.ds-session-agent { font-size: var(--fs-tiny); color: var(--fg-3); }
|
|
418
419
|
/* New-activity cue is a hollow accent RING so it stays shape-distinct from the
|
|
419
420
|
running live disc (a solid pulsing accent dot) for colour-blind / reduced-motion users. */
|
|
420
421
|
.ds-session-unread { width: 8px; height: 8px; border-radius: 50%; background: transparent; box-shadow: inset 0 0 0 2px var(--accent); display: inline-block; }
|
|
@@ -446,7 +447,7 @@
|
|
|
446
447
|
.ds-dash-card { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-3); background: var(--bg-2); border: var(--bw-hair) solid var(--bg-3); border-radius: var(--r-2); }
|
|
447
448
|
.ds-dash-card.is-error { border-color: var(--flame); }
|
|
448
449
|
.ds-dash-card-head { display: flex; align-items: center; gap: var(--space-2); }
|
|
449
|
-
.ds-dash-status { font-size: var(--fs-tiny); font-weight: 600; text-transform: uppercase; letter-spacing:
|
|
450
|
+
.ds-dash-status { font-size: var(--fs-tiny); font-weight: 600; text-transform: uppercase; letter-spacing: var(--tr-caps); }
|
|
450
451
|
/* running tone unified on --accent (the later is-running rule + the live disc all
|
|
451
452
|
use --accent); the dead var(--green) duplicate that lived here was removed. */
|
|
452
453
|
.ds-dash-status.is-error { color: var(--flame); }
|
|
@@ -774,7 +775,7 @@ button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(-
|
|
|
774
775
|
/* External (observed, not owned) session card: no stop control exists. */
|
|
775
776
|
.ds-dash-external {
|
|
776
777
|
padding: 1px 6px; border: var(--bw-hair) solid var(--bg-3); border-radius: var(--r-pill);
|
|
777
|
-
font-size: var(--fs-micro); color: var(--fg-3); text-transform: uppercase; letter-spacing:
|
|
778
|
+
font-size: var(--fs-micro); color: var(--fg-3); text-transform: uppercase; letter-spacing: var(--tr-caps);
|
|
778
779
|
}
|
|
779
780
|
.ds-dash-card.is-external { border-style: dashed; }
|
|
780
781
|
|
|
@@ -810,8 +811,8 @@ button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(-
|
|
|
810
811
|
paragraph and the .them tint hugged text flush. Restore reading rhythm + give
|
|
811
812
|
the tinted assistant row inner breathing room so it reads as a card. */
|
|
812
813
|
.chat-msg-flat .chat-role { margin-bottom: var(--space-2); }
|
|
813
|
-
.chat-msg-flat .chat-md { line-height:
|
|
814
|
-
.chat-msg-flat .chat-md p { margin:
|
|
814
|
+
.chat-msg-flat .chat-md { line-height: var(--lh-long); }
|
|
815
|
+
.chat-msg-flat .chat-md p { margin: var(--space-2) 0; }
|
|
815
816
|
.chat-msg-flat.them { padding-block: calc(var(--space-3) * var(--density, 1) + 2px); }
|
|
816
817
|
/* Inline backtick code (renderInline tags <code class=chat-tick>) - was a dead
|
|
817
818
|
class relying on the generic .chat-bubble code rule, so notices / non-bubble
|
|
@@ -866,7 +867,7 @@ button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(-
|
|
|
866
867
|
.chat-tool-label { color: var(--fg-3); font-size: var(--fs-tiny); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
|
|
867
868
|
.chat-tool-status {
|
|
868
869
|
margin-left: auto; flex: 0 0 auto;
|
|
869
|
-
font-size: var(--fs-micro); font-weight: 700; text-transform: uppercase; letter-spacing:
|
|
870
|
+
font-size: var(--fs-micro); font-weight: 700; text-transform: uppercase; letter-spacing: var(--tr-caps);
|
|
870
871
|
color: var(--fg-3);
|
|
871
872
|
padding: 2px var(--space-2); border-radius: var(--r-pill);
|
|
872
873
|
background: color-mix(in oklab, var(--fg) 6%, transparent);
|
|
@@ -898,7 +899,7 @@ button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(-
|
|
|
898
899
|
.chat-code-lang {
|
|
899
900
|
position: absolute; top: 0; left: 0; z-index: 2;
|
|
900
901
|
padding: 2px var(--space-2); border-bottom-right-radius: var(--r-1);
|
|
901
|
-
font-family: var(--ff-mono); font-size: var(--fs-micro); text-transform: uppercase; letter-spacing:
|
|
902
|
+
font-family: var(--ff-mono); font-size: var(--fs-micro); text-transform: uppercase; letter-spacing: var(--tr-caps);
|
|
902
903
|
color: var(--fg-3); background: color-mix(in oklab, var(--fg) 6%, transparent);
|
|
903
904
|
pointer-events: none;
|
|
904
905
|
}
|
package/dist/247420.css
CHANGED
|
@@ -6802,6 +6802,7 @@
|
|
|
6802
6802
|
flex-wrap: wrap;
|
|
6803
6803
|
}
|
|
6804
6804
|
.ds-247420 .agentchat-cwd-text {
|
|
6805
|
+
font-family: var(--ff-mono);
|
|
6805
6806
|
overflow: hidden;
|
|
6806
6807
|
text-overflow: ellipsis;
|
|
6807
6808
|
white-space: nowrap;
|
|
@@ -7127,7 +7128,7 @@
|
|
|
7127
7128
|
.ds-247420 .ds-session-title { font-size: var(--fs-sm); color: var(--fg); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
7128
7129
|
.ds-247420 .ds-session-sub { font-size: var(--fs-tiny); color: var(--fg-3); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
|
|
7129
7130
|
.ds-247420 .ds-session-meta { display: flex; align-items: center; gap: var(--space-2); flex: 0 0 auto; }
|
|
7130
|
-
.ds-247420 .ds-session-agent { font-
|
|
7131
|
+
.ds-247420 .ds-session-agent { font-size: var(--fs-tiny); color: var(--fg-3); }
|
|
7131
7132
|
/* New-activity cue is a hollow accent RING so it stays shape-distinct from the
|
|
7132
7133
|
running live disc (a solid pulsing accent dot) for colour-blind / reduced-motion users. */
|
|
7133
7134
|
.ds-247420 .ds-session-unread { width: 8px; height: 8px; border-radius: 50%; background: transparent; box-shadow: inset 0 0 0 2px var(--accent); display: inline-block; }
|
|
@@ -7159,7 +7160,7 @@
|
|
|
7159
7160
|
.ds-247420 .ds-dash-card { display: flex; flex-direction: column; gap: var(--space-2); padding: var(--space-3); background: var(--bg-2); border: var(--bw-hair) solid var(--bg-3); border-radius: var(--r-2); }
|
|
7160
7161
|
.ds-247420 .ds-dash-card.is-error { border-color: var(--flame); }
|
|
7161
7162
|
.ds-247420 .ds-dash-card-head { display: flex; align-items: center; gap: var(--space-2); }
|
|
7162
|
-
.ds-247420 .ds-dash-status { font-size: var(--fs-tiny); font-weight: 600; text-transform: uppercase; letter-spacing:
|
|
7163
|
+
.ds-247420 .ds-dash-status { font-size: var(--fs-tiny); font-weight: 600; text-transform: uppercase; letter-spacing: var(--tr-caps); }
|
|
7163
7164
|
/* running tone unified on --accent (the later is-running rule + the live disc all
|
|
7164
7165
|
use --accent); the dead var(--green) duplicate that lived here was removed. */
|
|
7165
7166
|
.ds-247420 .ds-dash-status.is-error { color: var(--flame); }
|
|
@@ -7487,7 +7488,7 @@
|
|
|
7487
7488
|
/* External (observed, not owned) session card: no stop control exists. */
|
|
7488
7489
|
.ds-247420 .ds-dash-external {
|
|
7489
7490
|
padding: 1px 6px; border: var(--bw-hair) solid var(--bg-3); border-radius: var(--r-pill);
|
|
7490
|
-
font-size: var(--fs-micro); color: var(--fg-3); text-transform: uppercase; letter-spacing:
|
|
7491
|
+
font-size: var(--fs-micro); color: var(--fg-3); text-transform: uppercase; letter-spacing: var(--tr-caps);
|
|
7491
7492
|
}
|
|
7492
7493
|
.ds-247420 .ds-dash-card.is-external { border-style: dashed; }
|
|
7493
7494
|
|
|
@@ -7523,8 +7524,8 @@
|
|
|
7523
7524
|
paragraph and the .them tint hugged text flush. Restore reading rhythm + give
|
|
7524
7525
|
the tinted assistant row inner breathing room so it reads as a card. */
|
|
7525
7526
|
.ds-247420 .chat-msg-flat .chat-role { margin-bottom: var(--space-2); }
|
|
7526
|
-
.ds-247420 .chat-msg-flat .chat-md { line-height:
|
|
7527
|
-
.ds-247420 .chat-msg-flat .chat-md p { margin:
|
|
7527
|
+
.ds-247420 .chat-msg-flat .chat-md { line-height: var(--lh-long); }
|
|
7528
|
+
.ds-247420 .chat-msg-flat .chat-md p { margin: var(--space-2) 0; }
|
|
7528
7529
|
.ds-247420 .chat-msg-flat.them { padding-block: calc(var(--space-3) * var(--density, 1) + 2px); }
|
|
7529
7530
|
/* Inline backtick code (renderInline tags <code class=chat-tick>) - was a dead
|
|
7530
7531
|
class relying on the generic .chat-bubble code rule, so notices / non-bubble
|
|
@@ -7579,7 +7580,7 @@
|
|
|
7579
7580
|
.ds-247420 .chat-tool-label { color: var(--fg-3); font-size: var(--fs-tiny); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
|
|
7580
7581
|
.ds-247420 .chat-tool-status {
|
|
7581
7582
|
margin-left: auto; flex: 0 0 auto;
|
|
7582
|
-
font-size: var(--fs-micro); font-weight: 700; text-transform: uppercase; letter-spacing:
|
|
7583
|
+
font-size: var(--fs-micro); font-weight: 700; text-transform: uppercase; letter-spacing: var(--tr-caps);
|
|
7583
7584
|
color: var(--fg-3);
|
|
7584
7585
|
padding: 2px var(--space-2); border-radius: var(--r-pill);
|
|
7585
7586
|
background: color-mix(in oklab, var(--fg) 6%, transparent);
|
|
@@ -7611,7 +7612,7 @@
|
|
|
7611
7612
|
.ds-247420 .chat-code-lang {
|
|
7612
7613
|
position: absolute; top: 0; left: 0; z-index: 2;
|
|
7613
7614
|
padding: 2px var(--space-2); border-bottom-right-radius: var(--r-1);
|
|
7614
|
-
font-family: var(--ff-mono); font-size: var(--fs-micro); text-transform: uppercase; letter-spacing:
|
|
7615
|
+
font-family: var(--ff-mono); font-size: var(--fs-micro); text-transform: uppercase; letter-spacing: var(--tr-caps);
|
|
7615
7616
|
color: var(--fg-3); background: color-mix(in oklab, var(--fg) 6%, transparent);
|
|
7616
7617
|
pointer-events: none;
|
|
7617
7618
|
}
|