anentrypoint-design 0.0.229 → 0.0.230
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 +18 -0
- package/chat.css +3 -0
- package/dist/247420.css +21 -0
- package/dist/247420.js +13 -13
- package/package.json +1 -1
- package/src/components/agent-chat.js +14 -3
- package/src/components/chat.js +31 -14
- package/src/components/context-pane.js +23 -8
- package/src/components/files-modals.js +21 -10
- package/src/components/files.js +3 -6
- package/src/components/overlay-primitives.js +47 -9
- package/src/components/sessions.js +15 -6
- package/src/components/shell.js +38 -16
- package/src/kits/os/theme.css +4 -0
package/app-shell.css
CHANGED
|
@@ -3331,6 +3331,8 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
|
|
|
3331
3331
|
.ws-rail-item.active { background: var(--accent-tint); color: var(--fg); box-shadow: inset 2px 0 0 var(--accent); }
|
|
3332
3332
|
.ws-rail-item-label { flex: 1; overflow: hidden; text-overflow: ellipsis; }
|
|
3333
3333
|
.ws-rail-item-count { font-family: var(--ff-mono); font-size: var(--fs-tiny); color: var(--fg-3); }
|
|
3334
|
+
.ws-rail-item-flag { width: 6px; height: 6px; border-radius: 50%; flex: none; }
|
|
3335
|
+
.ws-rail-item-flag.tone-flame { background: var(--flame); box-shadow: 0 0 0 2px color-mix(in oklab, var(--flame) 38%, transparent); }
|
|
3334
3336
|
.ws-rail-foot { margin-top: auto; padding-top: var(--space-2); border-top: var(--bw-hair) solid var(--bg-3); }
|
|
3335
3337
|
|
|
3336
3338
|
/* Collapsed rail: icon-only — hide text labels, center icons, drop toggle's far-right pin */
|
|
@@ -3551,3 +3553,19 @@ input[type="password"]:not(:placeholder-shown) + .input-clear {
|
|
|
3551
3553
|
/* Disabled file actions (read-only row / in-flight mutation) stay visible but inert. */
|
|
3552
3554
|
.ds-file-act:disabled { opacity: .45; cursor: default; }
|
|
3553
3555
|
.ds-file-act:disabled:hover { background: transparent; color: var(--fg-3); }
|
|
3556
|
+
|
|
3557
|
+
/* ============================================================
|
|
3558
|
+
Print — linearize WorkspaceShell so main content prints in full.
|
|
3559
|
+
The multi-column CSS grid with overflow:auto regions clips at
|
|
3560
|
+
the on-screen height in print/PDF; drop all chrome and let
|
|
3561
|
+
.ws-main expand to its natural document height.
|
|
3562
|
+
============================================================ */
|
|
3563
|
+
@media print {
|
|
3564
|
+
.ws-shell { display: block; }
|
|
3565
|
+
.ws-rail,
|
|
3566
|
+
.ws-sessions,
|
|
3567
|
+
.ws-pane,
|
|
3568
|
+
.ws-crumb,
|
|
3569
|
+
.app-status { display: none; }
|
|
3570
|
+
.ws-main { overflow: visible; height: auto; }
|
|
3571
|
+
}
|
package/chat.css
CHANGED
|
@@ -548,6 +548,7 @@ button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(-
|
|
|
548
548
|
width: auto; border-radius: var(--r-1);
|
|
549
549
|
}
|
|
550
550
|
.ds-dash-stream { font-size: var(--fs-tiny); color: var(--fg-3); }
|
|
551
|
+
.ds-dash-stream.is-connected { color: var(--accent); }
|
|
551
552
|
.ds-dash-stream.is-lost { color: var(--flame); }
|
|
552
553
|
.ds-dash-stream.is-connecting { color: var(--amber); }
|
|
553
554
|
.ds-dash-header .spread { flex: 1; }
|
|
@@ -576,6 +577,8 @@ button.chat-composer-context:focus-visible { outline: var(--focus-w) solid var(-
|
|
|
576
577
|
agent is flagged in a dense grid, not merely faded near-invisibly. The word
|
|
577
578
|
'idle' co-carries state, so this stays colour-blind safe. */
|
|
578
579
|
.ds-dash-card.is-stale { box-shadow: inset 2px 0 0 var(--stale); }
|
|
580
|
+
/* Active identity always wins over stale amber when both classes are present. */
|
|
581
|
+
.ds-dash-card.is-active.is-stale { box-shadow: inset 2px 0 0 var(--accent); }
|
|
579
582
|
|
|
580
583
|
/* --- H3: dashboard live disc pulses; stale/error do not (handled by H1). --- */
|
|
581
584
|
|
package/dist/247420.css
CHANGED
|
@@ -3822,6 +3822,8 @@
|
|
|
3822
3822
|
.ds-247420 .ws-rail-item.active { background: var(--accent-tint); color: var(--fg); box-shadow: inset 2px 0 0 var(--accent); }
|
|
3823
3823
|
.ds-247420 .ws-rail-item-label { flex: 1; overflow: hidden; text-overflow: ellipsis; }
|
|
3824
3824
|
.ds-247420 .ws-rail-item-count { font-family: var(--ff-mono); font-size: var(--fs-tiny); color: var(--fg-3); }
|
|
3825
|
+
.ds-247420 .ws-rail-item-flag { width: 6px; height: 6px; border-radius: 50%; flex: none; }
|
|
3826
|
+
.ds-247420 .ws-rail-item-flag.tone-flame { background: var(--flame); box-shadow: 0 0 0 2px color-mix(in oklab, var(--flame) 38%, transparent); }
|
|
3825
3827
|
.ds-247420 .ws-rail-foot { margin-top: auto; padding-top: var(--space-2); border-top: var(--bw-hair) solid var(--bg-3); }
|
|
3826
3828
|
|
|
3827
3829
|
/* Collapsed rail: icon-only — hide text labels, center icons, drop toggle's far-right pin */
|
|
@@ -4043,6 +4045,22 @@
|
|
|
4043
4045
|
.ds-247420 .ds-file-act:disabled { opacity: .45; cursor: default; }
|
|
4044
4046
|
.ds-247420 .ds-file-act:disabled:hover { background: transparent; color: var(--fg-3); }
|
|
4045
4047
|
|
|
4048
|
+
/* ============================================================
|
|
4049
|
+
Print — linearize WorkspaceShell so main content prints in full.
|
|
4050
|
+
The multi-column CSS grid with overflow:auto regions clips at
|
|
4051
|
+
the on-screen height in print/PDF; drop all chrome and let
|
|
4052
|
+
.ws-main expand to its natural document height.
|
|
4053
|
+
============================================================ */
|
|
4054
|
+
@media print {
|
|
4055
|
+
.ds-247420 .ws-shell { display: block; }
|
|
4056
|
+
.ds-247420 .ws-rail,
|
|
4057
|
+
.ds-247420 .ws-sessions,
|
|
4058
|
+
.ds-247420 .ws-pane,
|
|
4059
|
+
.ds-247420 .ws-crumb,
|
|
4060
|
+
.ds-247420 .app-status { display: none; }
|
|
4061
|
+
.ds-247420 .ws-main { overflow: visible; height: auto; }
|
|
4062
|
+
}
|
|
4063
|
+
|
|
4046
4064
|
/* community.css */
|
|
4047
4065
|
/* ============================================================
|
|
4048
4066
|
247420 design system — community surface (Discord-style chat)
|
|
@@ -6135,6 +6153,7 @@
|
|
|
6135
6153
|
width: auto; border-radius: var(--r-1);
|
|
6136
6154
|
}
|
|
6137
6155
|
.ds-247420 .ds-dash-stream { font-size: var(--fs-tiny); color: var(--fg-3); }
|
|
6156
|
+
.ds-247420 .ds-dash-stream.is-connected { color: var(--accent); }
|
|
6138
6157
|
.ds-247420 .ds-dash-stream.is-lost { color: var(--flame); }
|
|
6139
6158
|
.ds-247420 .ds-dash-stream.is-connecting { color: var(--amber); }
|
|
6140
6159
|
.ds-247420 .ds-dash-header .spread { flex: 1; }
|
|
@@ -6163,6 +6182,8 @@
|
|
|
6163
6182
|
agent is flagged in a dense grid, not merely faded near-invisibly. The word
|
|
6164
6183
|
'idle' co-carries state, so this stays colour-blind safe. */
|
|
6165
6184
|
.ds-247420 .ds-dash-card.is-stale { box-shadow: inset 2px 0 0 var(--stale); }
|
|
6185
|
+
/* Active identity always wins over stale amber when both classes are present. */
|
|
6186
|
+
.ds-247420 .ds-dash-card.is-active.is-stale { box-shadow: inset 2px 0 0 var(--accent); }
|
|
6166
6187
|
|
|
6167
6188
|
/* --- H3: dashboard live disc pulses; stale/error do not (handled by H1). --- */
|
|
6168
6189
|
|