anentrypoint-design 0.0.367 → 0.0.369
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/dist/247420.css +50 -0
- package/dist/247420.js +20 -20
- package/package.json +2 -8
package/dist/247420.css
CHANGED
|
@@ -10478,6 +10478,32 @@
|
|
|
10478
10478
|
.ds-247420 .agentgui-main-chat { display: flex; flex-direction: column; flex: 1; }
|
|
10479
10479
|
.ds-247420 .agentgui-main .ds-section { margin: 0 0 var(--space-4, 16px); }
|
|
10480
10480
|
|
|
10481
|
+
/* Tab-switch entrance: navTo() sets a per-tab modifier class
|
|
10482
|
+
(agentgui-main-<tab>) on the SAME #agentgui-main DOM node every switch
|
|
10483
|
+
(webjsx patches props on the existing element rather than replacing it).
|
|
10484
|
+
A single shared animation-name bound to the constant .agentgui-main base
|
|
10485
|
+
class would only ever fire once (on first mount) since a CSS animation
|
|
10486
|
+
restarts only when the animation-name value itself changes or the
|
|
10487
|
+
element is detached/reattached - the base class never changes. Each tab
|
|
10488
|
+
gets its OWN animation-name (functionally identical keyframes, distinct
|
|
10489
|
+
names) so switching from e.g. agentgui-main-chat to agentgui-main-history
|
|
10490
|
+
genuinely changes which animation-name applies, which is what makes the
|
|
10491
|
+
browser replay the entrance on every switch. Matches the existing motion
|
|
10492
|
+
craft level of ds-alert-in/ds-card-in/agentchat-jump.show instead of every
|
|
10493
|
+
full-page tab swap happening with zero transition. */
|
|
10494
|
+
@media (prefers-reduced-motion: no-preference) {
|
|
10495
|
+
.ds-247420 .agentgui-main-chat { animation: ds-main-in-chat var(--dur-base) var(--ease); }
|
|
10496
|
+
.ds-247420 .agentgui-main-history { animation: ds-main-in-history var(--dur-base) var(--ease); }
|
|
10497
|
+
.ds-247420 .agentgui-main-files { animation: ds-main-in-files var(--dur-base) var(--ease); }
|
|
10498
|
+
.ds-247420 .agentgui-main-live { animation: ds-main-in-live var(--dur-base) var(--ease); }
|
|
10499
|
+
.ds-247420 .agentgui-main-settings { animation: ds-main-in-settings var(--dur-base) var(--ease); }
|
|
10500
|
+
}
|
|
10501
|
+
@keyframes ds-main-in-chat { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
|
|
10502
|
+
@keyframes ds-main-in-history { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
|
|
10503
|
+
@keyframes ds-main-in-files { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
|
|
10504
|
+
@keyframes ds-main-in-live { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
|
|
10505
|
+
@keyframes ds-main-in-settings { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
|
|
10506
|
+
|
|
10481
10507
|
/* Readable backend health summary (replaces raw JSON dump). */
|
|
10482
10508
|
.ds-247420 .health-summary { display: flex; flex-wrap: wrap; gap: .4em; margin: .6em 0; }
|
|
10483
10509
|
.ds-247420 .health-chip {
|
|
@@ -10493,6 +10519,30 @@
|
|
|
10493
10519
|
border-color: color-mix(in srgb, var(--accent) 40%, transparent);
|
|
10494
10520
|
}
|
|
10495
10521
|
|
|
10522
|
+
/* Standalone connection-status chip — same visual vocabulary as
|
|
10523
|
+
.health-chip so a form's own connecting/connected/failed feedback reads
|
|
10524
|
+
consistently with the healthSummary row beneath it, instead of one being
|
|
10525
|
+
a colored chip and the other bare <p class="t-meta"> text. */
|
|
10526
|
+
.ds-247420 .ds-status-chip {
|
|
10527
|
+
display: inline-flex; align-items: center; gap: .35em;
|
|
10528
|
+
font-family: var(--ff-mono, ui-monospace, monospace);
|
|
10529
|
+
font-size: .8rem; padding: .15em .55em; border-radius: var(--r-1, 6px);
|
|
10530
|
+
background: color-mix(in srgb, var(--fg) 8%, transparent);
|
|
10531
|
+
color: var(--fg-2);
|
|
10532
|
+
border: var(--bw-hair, 1px) solid color-mix(in srgb, var(--fg) 12%, transparent);
|
|
10533
|
+
margin: .4em 0;
|
|
10534
|
+
}
|
|
10535
|
+
.ds-247420 .ds-status-chip-ok {
|
|
10536
|
+
color: var(--accent-ink);
|
|
10537
|
+
background: color-mix(in srgb, var(--accent) 16%, transparent);
|
|
10538
|
+
border-color: color-mix(in srgb, var(--accent) 40%, transparent);
|
|
10539
|
+
}
|
|
10540
|
+
.ds-247420 .ds-status-chip-error {
|
|
10541
|
+
color: var(--danger);
|
|
10542
|
+
background: color-mix(in srgb, var(--danger) 12%, transparent);
|
|
10543
|
+
border-color: color-mix(in srgb, var(--danger) 35%, transparent);
|
|
10544
|
+
}
|
|
10545
|
+
|
|
10496
10546
|
/* Compact working-directory bar. */
|
|
10497
10547
|
.ds-247420 .cwd-bar {
|
|
10498
10548
|
display: flex; align-items: center; gap: .5em; flex-wrap: wrap;
|