@athenaintel/react 0.7.3 → 0.9.0
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/index.cjs +61 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +40 -8
- package/dist/index.js +61 -14
- package/dist/index.js.map +1 -1
- package/dist/styles.css +10 -0
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
parent so it doesn't break layout when theme is applied. */
|
|
15
15
|
.athena-themed {
|
|
16
16
|
display: contents;
|
|
17
|
+
font-family: var(--font-family, inherit);
|
|
17
18
|
}
|
|
18
19
|
|
|
19
20
|
/* ── Extended SDK variables → component overrides ────────────────── */
|
|
@@ -23,10 +24,12 @@
|
|
|
23
24
|
.aui-user-message-content {
|
|
24
25
|
background: var(--user-bubble, var(--muted));
|
|
25
26
|
color: var(--user-bubble-foreground, var(--foreground));
|
|
27
|
+
border-radius: var(--user-bubble-radius, 1rem);
|
|
26
28
|
}
|
|
27
29
|
|
|
28
30
|
.aui-assistant-message-content {
|
|
29
31
|
color: var(--assistant-foreground, var(--foreground));
|
|
32
|
+
background: var(--assistant-bubble, transparent);
|
|
30
33
|
}
|
|
31
34
|
|
|
32
35
|
.aui-composer-root {
|
|
@@ -34,6 +37,13 @@
|
|
|
34
37
|
border-radius: var(--composer-radius, 1rem);
|
|
35
38
|
}
|
|
36
39
|
|
|
40
|
+
/* Apply font family to all SDK components */
|
|
41
|
+
.aui-root,
|
|
42
|
+
.aui-thread-root,
|
|
43
|
+
.aui-composer-root {
|
|
44
|
+
font-family: var(--font-family, inherit);
|
|
45
|
+
}
|
|
46
|
+
|
|
37
47
|
/* ── Prose typography for chat messages ──────────────────────────── */
|
|
38
48
|
.prose.prose-sm {
|
|
39
49
|
font-size: 0.875rem;
|