@liip/liipgpt 0.0.18 → 0.0.22
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/chat/index.html +14 -15
- package/chat/liipgpt-chat.iife.js +215 -215
- package/lib/chat-message-types.d.ts +2 -0
- package/lib/liipgpt-client.d.ts +12 -11
- package/lib/liipgpt-client.js +239 -231
- package/lib/liipgpt-client.umd.cjs +23 -23
- package/package.json +1 -1
package/chat/index.html
CHANGED
|
@@ -163,14 +163,14 @@
|
|
|
163
163
|
<style>
|
|
164
164
|
html,
|
|
165
165
|
body {
|
|
166
|
-
margin: 0;
|
|
167
|
-
padding: 0;
|
|
168
166
|
width: 100%;
|
|
169
167
|
height: 100%;
|
|
168
|
+
margin: 0;
|
|
169
|
+
padding: 0;
|
|
170
|
+
background-color: #f5f5f5;
|
|
171
|
+
color: black;
|
|
170
172
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif,
|
|
171
173
|
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
|
|
172
|
-
color: black;
|
|
173
|
-
background-color: #f5f5f5;
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
#body {
|
|
@@ -180,16 +180,16 @@
|
|
|
180
180
|
}
|
|
181
181
|
|
|
182
182
|
#sidebar {
|
|
183
|
+
box-sizing: border-box;
|
|
183
184
|
display: flex;
|
|
184
185
|
flex-direction: column;
|
|
185
186
|
justify-content: space-between;
|
|
186
|
-
gap: 8px;
|
|
187
|
-
padding: 16px;
|
|
188
|
-
background-color: #f5f5f5;
|
|
189
|
-
border-right: 1px solid #ddd;
|
|
190
187
|
min-width: 180px;
|
|
191
188
|
height: 100vh;
|
|
192
|
-
|
|
189
|
+
padding: 16px;
|
|
190
|
+
gap: 8px;
|
|
191
|
+
border-right: 1px solid #ddd;
|
|
192
|
+
background-color: #f5f5f5;
|
|
193
193
|
font-size: 0.8rem;
|
|
194
194
|
}
|
|
195
195
|
|
|
@@ -212,10 +212,10 @@
|
|
|
212
212
|
border-radius: 4px;
|
|
213
213
|
background-color: white;
|
|
214
214
|
color: black;
|
|
215
|
-
cursor: pointer;
|
|
216
|
-
transition: background-color 0.2s;
|
|
217
215
|
font-size: inherit;
|
|
218
216
|
text-align: center;
|
|
217
|
+
cursor: pointer;
|
|
218
|
+
transition: background-color 0.2s;
|
|
219
219
|
}
|
|
220
220
|
#sidebar button:hover {
|
|
221
221
|
background-color: #eee;
|
|
@@ -227,14 +227,13 @@
|
|
|
227
227
|
}
|
|
228
228
|
|
|
229
229
|
#chat-wrapper.box-layout {
|
|
230
|
+
position: fixed;
|
|
231
|
+
right: 40px;
|
|
232
|
+
bottom: 40px;
|
|
230
233
|
width: 450px;
|
|
231
234
|
height: 650px;
|
|
232
235
|
overflow: hidden;
|
|
233
236
|
|
|
234
|
-
position: fixed;
|
|
235
|
-
bottom: 40px;
|
|
236
|
-
right: 40px;
|
|
237
|
-
|
|
238
237
|
border-radius: 10px;
|
|
239
238
|
box-shadow: 0 10px 20px 2px rgba(0, 0, 0, 0.2);
|
|
240
239
|
}
|