anentrypoint-design 0.0.487 → 0.0.489
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/README.md +2 -1
- package/chat.css +1 -1
- package/colors_and_type.css +22 -1
- package/community.css +3 -0
- package/dist/247420.css +477 -72
- package/dist/247420.js +21 -21
- package/package.json +1 -1
- package/src/components/content/fields.js +3 -1
- package/src/components/content/panel.js +1 -1
- package/src/components/files/chrome.js +5 -3
- package/src/components/overlay-primitives/floating.js +1 -0
- package/src/components/shell/workspace-columns.js +2 -0
- package/src/css/app-shell/base.css +22 -0
- package/src/css/app-shell/chat-polish.css +165 -0
- package/src/css/app-shell/files.css +39 -0
- package/src/css/app-shell/hero-content.css +16 -4
- package/src/css/app-shell/kits-appended.css +45 -7
- package/src/css/app-shell/loading-alerts.css +3 -1
- package/src/css/app-shell/panel-row.css +11 -1
- package/src/css/app-shell/primitives.css +48 -2
- package/src/css/app-shell/responsive2-workspace.css +24 -5
- package/src/css/app-shell/states-interactions.css +20 -34
- package/src/css/app-shell/topbar.css +47 -13
- package/src/kits/os/launcher.css +7 -0
- package/src/kits/os/shell-chrome.js +6 -1
- package/src/kits/os/theme.css +25 -1
- package/src/kits/os/validate.css +7 -0
- package/src/kits/os/wm.css +7 -0
- package/types/components.d.ts +1 -0
package/README.md
CHANGED
|
@@ -132,7 +132,8 @@ onMounted(() => {
|
|
|
132
132
|
- **chat** — `Chat`, `ChatMessage`, `ChatComposer`, `AICat`, `AICatPortrait`
|
|
133
133
|
- **multi-agent chat shell** — `WorkspaceShell`, `WorkspaceRail`, `ConversationList`, `AgentChat`, `SessionDashboard` — the flagship desktop-class chat-agent product surface (persistent rail + resizable columns + full turn/tool-call thread + live multi-session dashboard). See `COMPONENT_API.md` for the full prop contract; a runnable mock-data demo lives at `ui_kits/workspace/`; the canonical real-world wiring ships at [`agentgui`](https://github.com/AnEntrypoint/agentgui).
|
|
134
134
|
- **file browser** — `FileRow`, `FileGrid`, `FileToolbar`, `FileIcon`, `DropZone`, `UploadProgress`, `EmptyState`, `BreadcrumbPath`, plus modal pieces `FileViewer`, `FilePreviewMedia`, `FilePreviewCode`, `FilePreviewText`, `ConfirmDialog`, `PromptDialog`
|
|
135
|
-
- **
|
|
135
|
+
- **desktop-shell (os kit)** — `createDesktopShell`, `renderWindow`, `renderDock`, plus paint surfaces `renderAboutApp`, `renderBrowserPane`, `renderFilesApp`, `renderMonitorApp`, `renderTerminal`, `createFreddieDashboard` (`src/kits/os/`, package export `ds/kits/os/index.js`). Pure visual/DOM-rendering layer — window-manager state (z-order, focus stack, drag/resize math) and app lifecycle are owned by the consumer. A runnable demo (self-contained window manager + 2 apps) lives at `ui_kits/os/`; the canonical real-world wiring — the full multi-instance web OS (per-instance filesystem/worker/POSIX-shell, the complete app catalog) — ships at [`thebird`](https://github.com/AnEntrypoint/thebird), which vendors this kit via `scripts/refresh-design.mjs`.
|
|
136
|
+
- **ui_kits** — 21 fully-working buildless examples loading the SDK from this repo: `homepage`, `project_page`, `docs`, `blog`, `chat`, `aicat`, `file_browser`, `dashboard`, `settings`, `search`, `terminal`, `gm_inspector`, `workspace`, `community`, `community-app`, `gallery`, `signin`, `error_404`, `slide_deck`, `system_primer`, `os`. (`_template` is the scaffold source, not a kit: it holds `index.html.tmpl` — a build input full of `{{VAR}}` placeholders — and deliberately serves no page.) Each kit's stylesheet `<link>` set is declared in `ui_kits/kits.config.mjs` and emitted by the scaffold generator (`npm run generate:ui-kits`) — never hand-edit a kit's generated `index.html`; `npm run lint:ui-kits` checks them against generated output.
|
|
136
137
|
|
|
137
138
|
The file-browser surface (rails by file type, drop-zone upload, modal preview) ships its canonical real-world wiring at [`fsbrowse`](https://github.com/AnEntrypoint/fsbrowse) — Express + busboy backend, the SDK frontend.
|
|
138
139
|
|
package/chat.css
CHANGED
|
@@ -530,7 +530,7 @@
|
|
|
530
530
|
.ds-session-agent { font-size: var(--fs-tiny); color: var(--fg-3); }
|
|
531
531
|
/* New-activity cue is a hollow accent RING so it stays shape-distinct from the
|
|
532
532
|
running live disc (a solid pulsing accent dot) for colour-blind / reduced-motion users. */
|
|
533
|
-
.ds-session-unread { width: 8px; height: 8px; border-radius: 50%; background: var(--
|
|
533
|
+
.ds-session-unread { width: 8px; height: 8px; border-radius: 50%; background: transparent; box-shadow: inset 0 0 0 1.5px var(--accent); display: inline-block; flex: none; }
|
|
534
534
|
.ds-session-state { padding: var(--space-5) var(--space-3); text-align: center; color: var(--fg-3); font-size: var(--fs-sm); }
|
|
535
535
|
.ds-session-state-error { color: var(--flame); }
|
|
536
536
|
|
package/colors_and_type.css
CHANGED
|
@@ -202,7 +202,7 @@
|
|
|
202
202
|
--fs-lg: 18px;
|
|
203
203
|
--fs-xl: 21px;
|
|
204
204
|
--fs-h4: clamp(24px, 2cqi, 28px);
|
|
205
|
-
--fs-h3: clamp(
|
|
205
|
+
--fs-h3: clamp(26px, 2.6cqi, 34px);
|
|
206
206
|
--fs-h2: clamp(28px, 3.6cqi, 44px);
|
|
207
207
|
--fs-h1: clamp(34px, 5cqi, 64px);
|
|
208
208
|
--fs-hero: clamp(42px, 7cqi, 96px);
|
|
@@ -546,6 +546,27 @@ select:focus-visible {
|
|
|
546
546
|
--code-num: var(--sun);
|
|
547
547
|
}
|
|
548
548
|
|
|
549
|
+
/* [data-accent="X"] overrides (below) hardcode LIGHT-tuned fills (--acid,
|
|
550
|
+
--purple, --green) with no dark-theme companion, so data-theme=dark +
|
|
551
|
+
data-accent=acid/purple/green produced a near-invisible fill against the
|
|
552
|
+
dark page bg (measured: acid 1.15:1, purple 1.04:1, green 2.98:1 on --ink
|
|
553
|
+
-- all under the 3:1 non-text UI-fill floor). Same convention as the base
|
|
554
|
+
--accent retune above: restate the fill as its dark-tuned equivalent so
|
|
555
|
+
the swatch stays visible, using tones already verified elsewhere in this
|
|
556
|
+
file (green retune 7.48:1 on --ink, purple-2 retune 6.11:1 on --ink). */
|
|
557
|
+
[data-theme="ink"][data-accent="acid"],
|
|
558
|
+
[data-theme="dark"][data-accent="acid"] {
|
|
559
|
+
--accent: #BFBFBF; --accent-bright: #BFBFBF; --accent-fg: var(--ink); --accent-ink: var(--paper); --panel-accent: #BFBFBF;
|
|
560
|
+
}
|
|
561
|
+
[data-theme="ink"][data-accent="purple"],
|
|
562
|
+
[data-theme="dark"][data-accent="purple"] {
|
|
563
|
+
--accent: #C277FF; --accent-bright: #C277FF; --accent-fg: var(--ink); --accent-ink: #C277FF; --panel-accent: #C277FF;
|
|
564
|
+
}
|
|
565
|
+
[data-theme="ink"][data-accent="green"],
|
|
566
|
+
[data-theme="dark"][data-accent="green"] {
|
|
567
|
+
--accent: #5CBF52; --accent-bright: #5CBF52; --accent-fg: var(--ink); --accent-ink: #5CBF52; --panel-accent: #5CBF52;
|
|
568
|
+
}
|
|
569
|
+
|
|
549
570
|
/* Restores the pre-existing (weaker) dark-theme selection tint after the
|
|
550
571
|
light-theme-only bump in app-shell.css's base ::selection rule. */
|
|
551
572
|
[data-theme="ink"] ::selection,
|
package/community.css
CHANGED
|
@@ -1493,6 +1493,9 @@
|
|
|
1493
1493
|
font-size: var(--fs-sm);
|
|
1494
1494
|
}
|
|
1495
1495
|
.vx-toggle { accent-color: var(--accent); width: 18px; height: 18px; cursor: pointer; }
|
|
1496
|
+
@media (pointer: coarse) {
|
|
1497
|
+
.vx-toggle { width: 24px; height: 24px; }
|
|
1498
|
+
}
|
|
1496
1499
|
|
|
1497
1500
|
.vx-queue {
|
|
1498
1501
|
display: flex; align-items: center; gap: var(--space-2);
|