Skip to content

Commit f1915b2

Browse files
fix: inline code styling (#668)
1 parent 9d546e5 commit f1915b2

File tree

17 files changed

+82
-79
lines changed

17 files changed

+82
-79
lines changed

packages/ragbits-chat/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
- Added custom styling for multiline and inline-code (#668)
6+
- Changed toggling darkmode for tailwind class selector (#668)
57
- Loading indicator, delayed message buttons, integrated abort controller (#641)
68
- Added Eslint, Prettier & CI/CD for Ragbits API Clients (#604)
79
- Excluded API connection logic to 2 modules: ragbits-api-client and ragbits-api-client-react which implements hooks for ragbits-api-client (#582)

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/FeedbackForm-DMnDoAZy.js renamed to packages/ragbits-chat/src/ragbits/chat/ui-build/assets/FeedbackForm-B2jE9w2w.js

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-BNuA3Pl6.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-BPwdy74I.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-Sq7Wkmt7.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-cNuF2g19.js renamed to packages/ragbits-chat/src/ragbits/chat/ui-build/assets/index-uZ3FrnOp.js

Lines changed: 32 additions & 32 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import{aE as a,aF as e,aG as t}from"./index-uZ3FrnOp.js";const n={renderer:t,...e,...a};var o=n;export{o as default};

packages/ragbits-chat/src/ragbits/chat/ui-build/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<!doctype html>
2-
<html lang="en" class="h-full light">
2+
<html lang="en" class="h-full">
33
<head>
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/assets/ragbits-9U4hpuUb.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Ragbits</title>
8-
<script type="module" crossorigin src="/assets/index-cNuF2g19.js"></script>
9-
<link rel="stylesheet" crossorigin href="/assets/index-BPwdy74I.css">
8+
<script type="module" crossorigin src="/assets/index-uZ3FrnOp.js"></script>
9+
<link rel="stylesheet" crossorigin href="/assets/index-Sq7Wkmt7.css">
1010
</head>
1111

1212
<body class="h-full">

typescript/ui/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!doctype html>
2-
<html lang="en" class="h-full light">
2+
<html lang="en" class="h-full">
33
<head>
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="assets/ragbits.svg" />

typescript/ui/src/App.tsx

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import ChatMessage from "./core/components/ChatMessage";
44
import { useState, useRef, useEffect, useMemo, useCallback } from "react";
55
import PromptInput from "./core/components/PromptInput/PromptInput";
66
import { useHistoryContext } from "./core/contexts/HistoryContext/useHistoryContext";
7-
import { useThemeContext } from "./core/contexts/ThemeContext/useThemeContext";
87
import Markdown from "react-markdown";
98
import remarkGfm from "remark-gfm";
109
import { Icon } from "@iconify/react";
@@ -22,7 +21,6 @@ export default function App() {
2221
sendMessage,
2322
stopAnswering,
2423
} = useHistoryContext();
25-
const { theme } = useThemeContext();
2624
const [showScrollDownButton, setShowScrollDownButton] = useState(false);
2725
const [shouldAutoScroll, setShouldAutoScroll] = useState(true);
2826

@@ -136,7 +134,6 @@ export default function App() {
136134
<div
137135
className={cn(
138136
"flex h-screen w-screen items-start justify-center bg-background",
139-
theme,
140137
)}
141138
>
142139
<div className="h-full w-full max-w-full">

0 commit comments

Comments
 (0)