anentrypoint-design 0.0.98 → 0.0.100
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.app.js +4 -4
- package/dist/247420.js +6 -6
- package/package.json +1 -1
- package/src/components/content.js +11 -16
- package/src/desktop/freddie/helpers.js +59 -0
- package/src/desktop/freddie/pages-chat.js +143 -0
- package/src/desktop/freddie/pages-core.js +101 -0
- package/src/desktop/freddie/pages-os.js +51 -0
- package/src/desktop/freddie/pages-tools.js +183 -0
- package/src/desktop/freddie/routes.js +24 -0
- package/src/desktop/freddie-dashboard.css +38 -3
- package/src/desktop/freddie-dashboard.js +19 -572
|
@@ -1,7 +1,10 @@
|
|
|
1
|
-
/* freddie-dashboard.css —
|
|
2
|
-
|
|
1
|
+
/* freddie-dashboard.css — supplemental rules for the freddie dashboard surfaces.
|
|
2
|
+
Most of the dashboard renders through bible components (AppShell/Panel/Kpi/
|
|
3
3
|
Table/Receipt/Hero/Row/EmptyState/Chip) that ship their own classes via
|
|
4
|
-
247420.css.
|
|
4
|
+
247420.css. This file holds the freddie-specific chrome that AGENTS.md's
|
|
5
|
+
inline-styles ban pushed out of freddie-dashboard.js and the freddie/* page
|
|
6
|
+
modules. */
|
|
7
|
+
|
|
5
8
|
.app-fd .fd-pre {
|
|
6
9
|
font-family: var(--ff-mono, JetBrains Mono, monospace);
|
|
7
10
|
font-size: 12px;
|
|
@@ -14,3 +17,35 @@
|
|
|
14
17
|
padding: 8px 10px;
|
|
15
18
|
border-radius: var(--r-1, 6px);
|
|
16
19
|
}
|
|
20
|
+
|
|
21
|
+
.fd-root { height: 100%; overflow: hidden; display: flex; flex-direction: column; }
|
|
22
|
+
|
|
23
|
+
.fd-btn-mini { padding: 2px 10px; font-size: 0.8em; }
|
|
24
|
+
|
|
25
|
+
/* chat composer fields */
|
|
26
|
+
.fd-chat-form { display: flex; flex-direction: column; gap: var(--tool-gutter, 16px); }
|
|
27
|
+
.fd-chat-row { display: flex; gap: var(--tool-gutter, 16px); flex-wrap: wrap; }
|
|
28
|
+
.fd-chat-field { display: flex; flex-direction: column; gap: 4px; min-width: 120px; }
|
|
29
|
+
.fd-chat-field-grow { flex: 2; min-width: 140px; }
|
|
30
|
+
.fd-chat-field > label { font-size: 0.75em; opacity: 0.7; letter-spacing: 0.05em; }
|
|
31
|
+
.fd-chat-field > input { width: 100%; box-sizing: border-box; }
|
|
32
|
+
.fd-chat-submit { display: flex; gap: var(--tool-gutter, 16px); align-items: flex-end; }
|
|
33
|
+
.fd-chat-submit textarea { flex: 1; resize: none; min-height: 80px; }
|
|
34
|
+
.fd-chat-submit > button { align-self: flex-end; }
|
|
35
|
+
|
|
36
|
+
/* chatlog (legacy fd-chat-msgs container) */
|
|
37
|
+
.fd-chatlog {
|
|
38
|
+
max-height: 420px; overflow-y: auto;
|
|
39
|
+
background: rgba(0,0,0,0.12);
|
|
40
|
+
border-radius: 4px; padding: 4px; margin-top: 8px;
|
|
41
|
+
}
|
|
42
|
+
.fd-chatlog-msg { padding: 6px 10px; border-bottom: 1px solid rgba(128,128,128,0.15); white-space: pre-wrap; word-break: break-word; }
|
|
43
|
+
.fd-chatlog-assistant { color: var(--color-accent, #7c9); }
|
|
44
|
+
.fd-chatlog-tool { margin: 4px 0; padding: 4px 8px; background: rgba(0,0,0,0.18); border-radius: 4px; font-family: monospace; font-size: 0.85em; }
|
|
45
|
+
.fd-chatlog-tool-sum { cursor: pointer; color: var(--color-warn, #fc9); padding: 2px 0; }
|
|
46
|
+
.fd-chatlog-tool-body { margin: 4px 0 0; white-space: pre-wrap; word-break: break-all; max-height: 200px; overflow-y: auto; }
|
|
47
|
+
|
|
48
|
+
/* chip wraps (providers, env) */
|
|
49
|
+
.fd-chip-wrap { display: flex; flex-wrap: wrap; gap: 6px; }
|
|
50
|
+
.fd-chip-wrap-padded { padding: 8px 4px; }
|
|
51
|
+
.fd-env-chip { cursor: pointer; }
|