@ensembleapp/client-sdk 0.0.12 → 0.0.14
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.js +109 -65
- package/dist/index.js.map +1 -1
- package/dist/widget/widget.global.js +32 -32
- package/dist/widget/widget.global.js.map +1 -1
- package/lib/components/ChatWidget.css +5 -0
- package/package.json +3 -1
|
@@ -93,11 +93,16 @@
|
|
|
93
93
|
}
|
|
94
94
|
|
|
95
95
|
.chat-widget__bubble--assistant {
|
|
96
|
+
width: 90%;
|
|
96
97
|
background: var(--chat-assistant-bg);
|
|
97
98
|
color: var(--chat-assistant-text);
|
|
98
99
|
border-bottom-left-radius: 0.35rem;
|
|
99
100
|
}
|
|
100
101
|
|
|
102
|
+
.chat-widget__widget {
|
|
103
|
+
width: 100%;
|
|
104
|
+
}
|
|
105
|
+
|
|
101
106
|
/* customizing markdown styles */
|
|
102
107
|
.chat-widget__markdown {
|
|
103
108
|
/* reset to normal otherwise text will be funky */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ensembleapp/client-sdk",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"description": "React client SDK for chat functionality",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -53,6 +53,8 @@
|
|
|
53
53
|
"tailwind-merge": "^2.5.4"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
|
+
"@repo/agent-sdk": "*",
|
|
57
|
+
"ai": "^6.0.39",
|
|
56
58
|
"@types/minimatch": "^6.0.0",
|
|
57
59
|
"@types/react": "^19.1.0",
|
|
58
60
|
"@types/react-dom": "^19.1.1",
|