@ensembleapp/client-sdk 0.0.42 → 0.0.44

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.
@@ -14,12 +14,15 @@
14
14
  /* Borders */
15
15
  --chat-border: #e5e7eb;
16
16
  --chat-border-light: #f3f4f6;
17
+ --chat-widget-border-width: 1px;
17
18
 
18
19
  /* Text colors */
19
20
  --chat-text: #111827;
20
21
  --chat-text-secondary: #4b5563;
21
22
  --chat-text-muted: #6b7280;
22
23
  --chat-text-disabled: #9ca3af;
24
+ --chat-link: #2563eb;
25
+ --chat-link-hover: #1d4ed8;
23
26
 
24
27
  /* Semantic colors */
25
28
  --chat-success: #22c55e;
@@ -57,7 +60,7 @@
57
60
  height: 100%;
58
61
  min-height: 24rem;
59
62
  background: var(--chat-background);
60
- border: 1px solid var(--chat-border);
63
+ border: var(--chat-widget-border-width) solid var(--chat-border);
61
64
  border-radius: 0;
62
65
  box-shadow: var(--chat-shadow);
63
66
  overflow: hidden;
@@ -126,6 +129,8 @@
126
129
  background: var(--chat-primary);
127
130
  color: var(--chat-user-text);
128
131
  border-bottom-right-radius: 0.35rem;
132
+ padding-left: 0.375rem;
133
+ padding-right: 0.375rem;
129
134
  }
130
135
 
131
136
  .chat-widget__bubble--assistant {
@@ -220,12 +225,12 @@
220
225
  }
221
226
 
222
227
  .chat-widget__markdown a {
223
- color: var(--chat-primary);
228
+ color: var(--chat-link);
224
229
  text-decoration: underline;
225
230
  }
226
231
 
227
232
  .chat-widget__markdown a:hover {
228
- color: var(--chat-primary-hover);
233
+ color: var(--chat-link-hover);
229
234
  }
230
235
 
231
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.42",
3
+ "version": "0.0.44",
4
4
  "description": "React client SDK for chat functionality",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",