anentrypoint-design 0.0.262 → 0.0.264
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 +1 -0
- package/app-shell.css +5 -1
- package/dist/247420.css +5 -1
- package/dist/247420.js +13 -13
- package/package.json +1 -1
- package/src/components/files.js +16 -16
package/README.md
CHANGED
|
@@ -52,6 +52,7 @@ mount(document.getElementById('app'), () => C.AppShell({
|
|
|
52
52
|
- **chrome** — `Topbar`, `Crumb`, `Side`, `Status`, `AppShell`, `Brand`, `Chip`, `Btn`, `Glyph`, `Heading`, `Lede`
|
|
53
53
|
- **content** — `Panel`, `Row`, `RowLink`, `Hero`, `Install`, `Receipt`, `Changelog`, `WorksList`, `WritingList`, `Manifesto`, `Section`, `Kpi`, `Table`, `HomeView`, `ProjectView`
|
|
54
54
|
- **chat** — `Chat`, `ChatMessage`, `ChatComposer`, `AICat`, `AICatPortrait`
|
|
55
|
+
- **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; the canonical real-world wiring ships at [`agentgui`](https://github.com/AnEntrypoint/agentgui).
|
|
55
56
|
- **file browser** — `FileRow`, `FileGrid`, `FileToolbar`, `FileIcon`, `DropZone`, `UploadProgress`, `EmptyState`, `BreadcrumbPath`, plus modal pieces `FileViewer`, `FilePreviewMedia`, `FilePreviewCode`, `FilePreviewText`, `ConfirmDialog`, `PromptDialog`
|
|
56
57
|
- **ui_kits** — `homepage`, `project_page`, `docs`, `blog`, `chat`, `aicat`, `file_browser`. Each is a fully-working buildless example loading the SDK from this repo.
|
|
57
58
|
|
package/app-shell.css
CHANGED
|
@@ -1578,8 +1578,12 @@ table tr.clickable:focus-visible td { background: var(--bg-2); }
|
|
|
1578
1578
|
.ds-file-cell.is-locked { opacity: 0.6; }
|
|
1579
1579
|
.ds-file-row.is-locked { opacity: 0.6; }
|
|
1580
1580
|
.ds-file-row.is-restricted .title { color: var(--fg-2); }
|
|
1581
|
+
/* A fourth, deliberately bordered/mono tag variant for file-permission tags
|
|
1582
|
+
specifically (distinct from .ds-badge for numeric counts and .chip for
|
|
1583
|
+
status/label words) - is-noaccess reuses the shared --flame tone token
|
|
1584
|
+
so 'no access' reads the same red as chip.tone-error/miss elsewhere. */
|
|
1581
1585
|
.ds-file-perm-tag { font-family: var(--ff-mono); font-size: var(--fs-micro); color: var(--fg-3); padding: 1px 6px; border: var(--bw-hair) solid var(--rule); border-radius: var(--r-1); white-space: nowrap; }
|
|
1582
|
-
.ds-file-perm-tag.is-noaccess { color: var(--flame); border-color:
|
|
1586
|
+
.ds-file-perm-tag.is-noaccess { color: var(--flame); border-color: var(--flame); }
|
|
1583
1587
|
.ds-file-cell-open {
|
|
1584
1588
|
display: flex; flex-direction: column; align-items: stretch; gap: var(--space-1);
|
|
1585
1589
|
width: 100%; padding: var(--space-1); margin: 0;
|
package/dist/247420.css
CHANGED
|
@@ -2084,8 +2084,12 @@
|
|
|
2084
2084
|
.ds-247420 .ds-file-cell.is-locked { opacity: 0.6; }
|
|
2085
2085
|
.ds-247420 .ds-file-row.is-locked { opacity: 0.6; }
|
|
2086
2086
|
.ds-247420 .ds-file-row.is-restricted .title { color: var(--fg-2); }
|
|
2087
|
+
/* A fourth, deliberately bordered/mono tag variant for file-permission tags
|
|
2088
|
+
specifically (distinct from .ds-badge for numeric counts and .chip for
|
|
2089
|
+
status/label words) - is-noaccess reuses the shared --flame tone token
|
|
2090
|
+
so 'no access' reads the same red as chip.tone-error/miss elsewhere. */
|
|
2087
2091
|
.ds-247420 .ds-file-perm-tag { font-family: var(--ff-mono); font-size: var(--fs-micro); color: var(--fg-3); padding: 1px 6px; border: var(--bw-hair) solid var(--rule); border-radius: var(--r-1); white-space: nowrap; }
|
|
2088
|
-
.ds-247420 .ds-file-perm-tag.is-noaccess { color: var(--flame); border-color:
|
|
2092
|
+
.ds-247420 .ds-file-perm-tag.is-noaccess { color: var(--flame); border-color: var(--flame); }
|
|
2089
2093
|
.ds-247420 .ds-file-cell-open {
|
|
2090
2094
|
display: flex; flex-direction: column; align-items: stretch; gap: var(--space-1);
|
|
2091
2095
|
width: 100%; padding: var(--space-1); margin: 0;
|