@ensembleapp/client-sdk 0.0.43 → 0.0.45
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.d.ts +4 -0
- package/dist/index.js +18 -4
- package/dist/index.js.map +1 -1
- package/dist/widget/widget.global.js +34 -34
- package/dist/widget/widget.global.js.map +1 -1
- package/lib/chat/ChatWidget.css +6 -2
- package/package.json +1 -1
package/lib/chat/ChatWidget.css
CHANGED
|
@@ -21,6 +21,8 @@
|
|
|
21
21
|
--chat-text-secondary: #4b5563;
|
|
22
22
|
--chat-text-muted: #6b7280;
|
|
23
23
|
--chat-text-disabled: #9ca3af;
|
|
24
|
+
--chat-link: #2563eb;
|
|
25
|
+
--chat-link-hover: #1d4ed8;
|
|
24
26
|
|
|
25
27
|
/* Semantic colors */
|
|
26
28
|
--chat-success: #22c55e;
|
|
@@ -127,6 +129,8 @@
|
|
|
127
129
|
background: var(--chat-primary);
|
|
128
130
|
color: var(--chat-user-text);
|
|
129
131
|
border-bottom-right-radius: 0.35rem;
|
|
132
|
+
padding-left: 0.375rem;
|
|
133
|
+
padding-right: 0.375rem;
|
|
130
134
|
}
|
|
131
135
|
|
|
132
136
|
.chat-widget__bubble--assistant {
|
|
@@ -221,12 +225,12 @@
|
|
|
221
225
|
}
|
|
222
226
|
|
|
223
227
|
.chat-widget__markdown a {
|
|
224
|
-
color: var(--chat-
|
|
228
|
+
color: var(--chat-link);
|
|
225
229
|
text-decoration: underline;
|
|
226
230
|
}
|
|
227
231
|
|
|
228
232
|
.chat-widget__markdown a:hover {
|
|
229
|
-
color: var(--chat-
|
|
233
|
+
color: var(--chat-link-hover);
|
|
230
234
|
}
|
|
231
235
|
|
|
232
236
|
.chat-widget__markdown table {
|