anentrypoint-design 0.0.386 → 0.0.388
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 +33 -0
- package/dist/247420.js +54 -52
- package/package.json +1 -1
- package/src/components/agent-chat/controls.js +143 -0
- package/src/components/agent-chat/empty-state.js +63 -0
- package/src/components/agent-chat/message-rows.js +141 -0
- package/src/components/agent-chat/surface.js +206 -0
- package/src/components/agent-chat/thread-behaviour.js +50 -0
- package/src/components/agent-chat.js +6 -546
- package/src/components/chat-message-parts/agent-nodes.js +103 -0
- package/src/components/chat-message-parts/inline.js +106 -0
- package/src/components/chat-message-parts/prose-nodes.js +133 -0
- package/src/components/chat-message-parts/renderers.js +89 -0
- package/src/components/chat-message-parts.js +12 -408
- package/src/components/chat-minimap/minimap.js +167 -0
- package/src/components/chat-minimap/paint.js +73 -0
- package/src/components/chat-minimap/preview.js +41 -0
- package/src/components/chat-minimap.js +7 -263
- package/src/components/community/chrome.js +63 -0
- package/src/components/community/navigation.js +167 -0
- package/src/components/community/presence.js +106 -0
- package/src/components/community/shell.js +17 -0
- package/src/components/community/views.js +131 -0
- package/src/components/community.js +18 -447
- package/src/components/files/chrome.js +140 -0
- package/src/components/files/entries.js +156 -0
- package/src/components/files/grid-controls.js +63 -0
- package/src/components/files/grid.js +177 -0
- package/src/components/files/types.js +69 -0
- package/src/components/files-modals/dialogs.js +118 -0
- package/src/components/files-modals/modal-shell.js +153 -0
- package/src/components/files-modals/preview-bodies.js +129 -0
- package/src/components/files-modals/preview-containers.js +96 -0
- package/src/components/files-modals.js +14 -475
- package/src/components/files.js +15 -564
- package/src/components/freddie/pages-config.js +3 -94
- package/src/components/freddie/pages-models.js +97 -0
- package/src/components/freddie.js +2 -1
- package/src/components/interaction-primitives/mobile.js +25 -0
- package/src/components/interaction-primitives/pointer.js +214 -0
- package/src/components/interaction-primitives/reorderable.js +47 -0
- package/src/components/interaction-primitives/shortcuts.js +119 -0
- package/src/components/interaction-primitives.js +16 -388
- package/src/components/sessions/conversation-list.js +230 -0
- package/src/components/sessions/dashboard.js +202 -0
- package/src/components/sessions/detail-bits.js +49 -0
- package/src/components/sessions/session-card.js +92 -0
- package/src/components/sessions.js +16 -579
- package/src/components/voice/audio-cue.js +39 -0
- package/src/components/voice/capture.js +90 -0
- package/src/components/voice/playback.js +75 -0
- package/src/components/voice/settings-modal.js +104 -0
- package/src/components/voice.js +16 -293
- package/src/css/app-shell/base.css +23 -0
- package/src/css/app-shell/states-interactions.css +10 -0
- package/src/kits/os/freddie/chat-protocol.js +32 -0
- package/src/kits/os/freddie/chat-transport.js +178 -0
- package/src/kits/os/freddie/pages-chat.js +10 -180
- package/src/kits/os/shell-chrome.js +163 -0
- package/src/kits/os/shell-geometry.js +59 -0
- package/src/kits/os/shell.js +178 -335
- package/src/page-html/client-script.js +151 -0
- package/src/page-html/head-tags.js +59 -0
- package/src/page-html/markdown.js +68 -0
- package/src/page-html/page-styles.js +44 -0
- package/src/page-html.js +14 -291
package/dist/247420.css
CHANGED
|
@@ -690,6 +690,15 @@
|
|
|
690
690
|
border-radius: var(--r-pill);
|
|
691
691
|
font-weight: 600;
|
|
692
692
|
font-size: var(--fs-sm);
|
|
693
|
+
/* The skip link is the first thing a keyboard or switch user reaches, so it
|
|
694
|
+
is the last control that should be hard to hit. Its padding alone rendered
|
|
695
|
+
it 39px tall -- measured live under coarse-pointer emulation on every kit.
|
|
696
|
+
Floored unconditionally rather than under a pointer:coarse query, because
|
|
697
|
+
switch and head-pointer users are not detected as coarse pointers and need
|
|
698
|
+
the larger target just as much. */
|
|
699
|
+
min-height: 44px;
|
|
700
|
+
display: inline-flex;
|
|
701
|
+
align-items: center;
|
|
693
702
|
}
|
|
694
703
|
.ds-247420 .skip-link:focus {
|
|
695
704
|
top: 10px;
|
|
@@ -749,6 +758,20 @@
|
|
|
749
758
|
}
|
|
750
759
|
.ds-247420 .app * { min-width: 0; }
|
|
751
760
|
|
|
761
|
+
/* Scrollbar treatment, applied once at the root rather than per-component.
|
|
762
|
+
chat.css already styled its own thread and code blocks this way, but every
|
|
763
|
+
other scroll container (.app-side-shell, .app-main, .ds-scroll-x,
|
|
764
|
+
.ds-table-wrap, .ds-live-log) fell back to the UA default -- measured live,
|
|
765
|
+
4 of 4 containers on dashboard and 7 of 7 on gm_inspector were unstyled while
|
|
766
|
+
chat's two were not. A default scrollbar reads as a bright seam against a
|
|
767
|
+
near-black panel in the ink and dark themes, and inconsistently between two
|
|
768
|
+
panels on the same page. Tokens mean the thumb follows the active theme.
|
|
769
|
+
Inheriting from the container also covers scrollers added later. */
|
|
770
|
+
.ds-247420 .app, .ds-247420 .ds-stage, .ds-247420 .app *, .ds-247420 .ds-stage * {
|
|
771
|
+
scrollbar-width: thin;
|
|
772
|
+
scrollbar-color: var(--bg-3) transparent;
|
|
773
|
+
}
|
|
774
|
+
|
|
752
775
|
/* ============================================================
|
|
753
776
|
Typography
|
|
754
777
|
============================================================ */
|
|
@@ -4212,6 +4235,16 @@
|
|
|
4212
4235
|
padding: var(--space-2) var(--space-1);
|
|
4213
4236
|
font: inherit; color: var(--fg);
|
|
4214
4237
|
}
|
|
4238
|
+
/* Touch floor for the BASE input. Several specific inputs already carried this
|
|
4239
|
+
(ds-file-filter-input, ds-modal-input, ds-term-input) but the primitive every
|
|
4240
|
+
form actually uses did not, so a plain field measured 34px under a coarse
|
|
4241
|
+
pointer -- measured live on the settings and gm_inspector kits. The 16px
|
|
4242
|
+
font-size is not cosmetic: below 16px iOS auto-zooms the viewport on focus,
|
|
4243
|
+
and max() keeps it from ever shrinking under a reduced typescale. */
|
|
4244
|
+
@media (pointer: coarse) {
|
|
4245
|
+
.ds-247420 .input { min-height: 44px; font-size: max(16px, var(--fs-body)); }
|
|
4246
|
+
.ds-247420 textarea.input { min-height: 88px; }
|
|
4247
|
+
}
|
|
4215
4248
|
.ds-247420 .input::placeholder { color: var(--fg-3); }
|
|
4216
4249
|
.ds-247420 .input:focus-visible {
|
|
4217
4250
|
outline: none;
|