llmasaservice-ui 0.1.5 → 0.1.7

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 CHANGED
@@ -33,6 +33,7 @@
33
33
  border-radius: 4px;
34
34
  height: 50px;
35
35
  resize: none;
36
+ color: #000;
36
37
  }
37
38
  .side-panel .send-button {
38
39
  background-color: #007bff;
@@ -145,6 +146,7 @@
145
146
  border-radius: 4px;
146
147
  height: 50px;
147
148
  resize: none;
149
+ color: #000;
148
150
  }
149
151
  .side-panel-dark .send-button {
150
152
  background-color: #007bff;
package/dist/index.js CHANGED
@@ -199,7 +199,7 @@ var ChatPanel = ({
199
199
  {
200
200
  xmlns: "http://www.w3.org/2000/svg",
201
201
  viewBox: "0 0 24 24",
202
- "stroke-width": "2",
202
+ strokeWidth: "2",
203
203
  stroke: "currentColor",
204
204
  fill: "none",
205
205
  strokeLinecap: "round",
@@ -214,7 +214,7 @@ var ChatPanel = ({
214
214
  {
215
215
  xmlns: "http://www.w3.org/2000/svg",
216
216
  viewBox: "0 0 24 24",
217
- "stroke-width": "1",
217
+ strokeWidth: "1",
218
218
  stroke: "currentColor",
219
219
  fill: "currentColor",
220
220
  className: "icon-svg-large"
package/dist/index.mjs CHANGED
@@ -166,7 +166,7 @@ var ChatPanel = ({
166
166
  {
167
167
  xmlns: "http://www.w3.org/2000/svg",
168
168
  viewBox: "0 0 24 24",
169
- "stroke-width": "2",
169
+ strokeWidth: "2",
170
170
  stroke: "currentColor",
171
171
  fill: "none",
172
172
  strokeLinecap: "round",
@@ -181,7 +181,7 @@ var ChatPanel = ({
181
181
  {
182
182
  xmlns: "http://www.w3.org/2000/svg",
183
183
  viewBox: "0 0 24 24",
184
- "stroke-width": "1",
184
+ strokeWidth: "1",
185
185
  stroke: "currentColor",
186
186
  fill: "currentColor",
187
187
  className: "icon-svg-large"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llmasaservice-ui",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "description": "Prebuilt UI components for LLMAsAService.io",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
package/src/ChatPanel.css CHANGED
@@ -16,7 +16,6 @@
16
16
  font-weight: bold;
17
17
  margin-bottom: 10px;
18
18
  text-align: center;
19
-
20
19
  }
21
20
  .side-panel .input-container {
22
21
  display: flex;
@@ -32,6 +31,7 @@
32
31
  border-radius: 4px;
33
32
  height: 50px;
34
33
  resize: none;
34
+ color: #000;
35
35
  }
36
36
 
37
37
  .side-panel .send-button {
@@ -103,13 +103,11 @@
103
103
  height: 24px;
104
104
  }
105
105
 
106
-
107
106
  .side-panel .copy-button:hover {
108
107
  border: 1px solid #007bff;
109
108
  border-radius: 3px;
110
109
  }
111
110
 
112
-
113
111
  .side-panel .thumbs-button {
114
112
  font-size: 10px;
115
113
  border: 0px solid #007bff;
@@ -158,6 +156,7 @@
158
156
  border-radius: 4px;
159
157
  height: 50px;
160
158
  resize: none;
159
+ color: #000;
161
160
  }
162
161
 
163
162
  .side-panel-dark .send-button {
@@ -229,7 +228,6 @@
229
228
  height: 24px;
230
229
  }
231
230
 
232
-
233
231
  .side-panel-dark .copy-button:hover {
234
232
  border: 1px solid #aaa;
235
233
  border-radius: 3px;
package/src/ChatPanel.tsx CHANGED
@@ -205,7 +205,7 @@ const ChatPanel: React.FC<ChatPanelProps> = ({
205
205
  <svg
206
206
  xmlns="http://www.w3.org/2000/svg"
207
207
  viewBox="0 0 24 24"
208
- stroke-width="2"
208
+ strokeWidth="2"
209
209
  stroke="currentColor"
210
210
  fill="none"
211
211
  strokeLinecap="round"
@@ -220,7 +220,7 @@ const ChatPanel: React.FC<ChatPanelProps> = ({
220
220
  <svg
221
221
  xmlns="http://www.w3.org/2000/svg"
222
222
  viewBox="0 0 24 24"
223
- stroke-width="1"
223
+ strokeWidth="1"
224
224
  stroke="currentColor"
225
225
  fill="currentColor"
226
226
  className="icon-svg-large"