@smart-cloud/ai-kit-ui 1.1.12 → 1.1.13
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/ai-kit-ui.css +3 -0
- package/dist/index.cjs +9 -9
- package/dist/index.js +9 -9
- package/package.json +3 -1
- package/src/ShadowBoundary.tsx +1 -44
- package/src/ai-chatbot/AiChatbot.tsx +22 -4
- package/src/styles/ai-kit-ui.css +3 -0
- package/src/withAiKitShell.tsx +52 -4
package/dist/ai-kit-ui.css
CHANGED
|
@@ -609,6 +609,7 @@
|
|
|
609
609
|
|
|
610
610
|
/* Header / status */
|
|
611
611
|
.ai-chat-header-bar {
|
|
612
|
+
background: var(--ai-kit-chat-surface);
|
|
612
613
|
display: flex;
|
|
613
614
|
align-items: center;
|
|
614
615
|
justify-content: space-between;
|
|
@@ -704,6 +705,8 @@
|
|
|
704
705
|
word-break: break-word;
|
|
705
706
|
hyphens: auto;
|
|
706
707
|
line-height: var(--ai-kit-line-height);
|
|
708
|
+
width: fit-content;
|
|
709
|
+
max-width: 80%;
|
|
707
710
|
}
|
|
708
711
|
|
|
709
712
|
.ai-chat-row.user .ai-chat-bubble {
|