@athenaintel/react 0.8.0 → 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 +6 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +10 -0
- package/dist/index.js +6 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +10 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -24375,14 +24375,19 @@ const THEME_TO_CSS = {
|
|
|
24375
24375
|
input: "--input",
|
|
24376
24376
|
ring: "--ring",
|
|
24377
24377
|
radius: "--radius",
|
|
24378
|
+
fontFamily: "--font-family",
|
|
24378
24379
|
// Extended SDK-specific variables
|
|
24379
24380
|
sidebarBackground: "--sidebar-background",
|
|
24380
24381
|
sidebarBorder: "--sidebar-border",
|
|
24382
|
+
sidebarWidth: "--sidebar-width",
|
|
24381
24383
|
userBubble: "--user-bubble",
|
|
24382
24384
|
userBubbleForeground: "--user-bubble-foreground",
|
|
24385
|
+
userBubbleRadius: "--user-bubble-radius",
|
|
24383
24386
|
assistantForeground: "--assistant-foreground",
|
|
24387
|
+
assistantBubble: "--assistant-bubble",
|
|
24384
24388
|
composerBorder: "--composer-border",
|
|
24385
|
-
composerRadius: "--composer-radius"
|
|
24389
|
+
composerRadius: "--composer-radius",
|
|
24390
|
+
threadMaxWidth: "--thread-max-width"
|
|
24386
24391
|
};
|
|
24387
24392
|
function themeToStyleVars(theme) {
|
|
24388
24393
|
const vars = {};
|