@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.
@@ -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-primary);
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-primary-hover);
233
+ color: var(--chat-link-hover);
230
234
  }
231
235
 
232
236
  .chat-widget__markdown table {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ensembleapp/client-sdk",
3
- "version": "0.0.43",
3
+ "version": "0.0.45",
4
4
  "description": "React client SDK for chat functionality",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",