llmasaservice-ui 0.4.2 → 0.4.4
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.css +4 -2
- package/package.json +1 -1
- package/src/ChatPanel.css +4 -2
- package/src/ChatPanel.tsx +1 -0
package/dist/index.css
CHANGED
|
@@ -171,7 +171,8 @@
|
|
|
171
171
|
border: none;
|
|
172
172
|
border-radius: 8px;
|
|
173
173
|
cursor: pointer;
|
|
174
|
-
padding: 10px;
|
|
174
|
+
padding: 5px 10px;
|
|
175
|
+
font-size: 0.8em;
|
|
175
176
|
margin-top: 5px;
|
|
176
177
|
}
|
|
177
178
|
.suggestions-container {
|
|
@@ -378,7 +379,8 @@
|
|
|
378
379
|
border: none;
|
|
379
380
|
border-radius: 8px;
|
|
380
381
|
cursor: pointer;
|
|
381
|
-
padding: 10px;
|
|
382
|
+
padding: 5px 10px;
|
|
383
|
+
font-size: 0.8em;
|
|
382
384
|
margin-top: 5px;
|
|
383
385
|
}
|
|
384
386
|
.powered-by {
|
package/package.json
CHANGED
package/src/ChatPanel.css
CHANGED
|
@@ -188,7 +188,8 @@
|
|
|
188
188
|
border: none;
|
|
189
189
|
border-radius: 8px;
|
|
190
190
|
cursor: pointer;
|
|
191
|
-
padding: 10px;
|
|
191
|
+
padding: 5px 10px;
|
|
192
|
+
font-size: 0.8em;
|
|
192
193
|
margin-top: 5px;
|
|
193
194
|
}
|
|
194
195
|
|
|
@@ -407,7 +408,8 @@
|
|
|
407
408
|
border: none;
|
|
408
409
|
border-radius: 8px;
|
|
409
410
|
cursor: pointer;
|
|
410
|
-
padding: 10px;
|
|
411
|
+
padding: 5px 10px;
|
|
412
|
+
font-size: 0.8em;
|
|
411
413
|
margin-top: 5px;
|
|
412
414
|
}
|
|
413
415
|
|
package/src/ChatPanel.tsx
CHANGED
|
@@ -537,6 +537,7 @@ const ChatPanel: React.FC<ChatPanelProps & ExtraProps> = ({
|
|
|
537
537
|
</div>
|
|
538
538
|
</div>
|
|
539
539
|
) : null}
|
|
540
|
+
|
|
540
541
|
{Object.entries(history).map(([prompt, response], index) => (
|
|
541
542
|
<div className="history-entry" key={index}>
|
|
542
543
|
{hideInitialPrompt && index === 0 ? null : (
|