advanced-chat-kai 1.1.1 → 1.1.3
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.
|
@@ -2150,6 +2150,7 @@ class _ extends m {
|
|
|
2150
2150
|
padding: var(--chat-spacing-2) var(--chat-spacing-3);
|
|
2151
2151
|
font-size: var(--chat-text-sm);
|
|
2152
2152
|
color: var(--chat-foreground);
|
|
2153
|
+
overflow-wrap: anywhere;
|
|
2153
2154
|
background-color: var(--chat-secondary);
|
|
2154
2155
|
border-radius: var(--chat-radius-lg);
|
|
2155
2156
|
}
|
|
@@ -3139,7 +3140,7 @@ class A extends m {
|
|
|
3139
3140
|
);
|
|
3140
3141
|
}
|
|
3141
3142
|
_onSelectEmoji(t) {
|
|
3142
|
-
this._textareaValue += t.detail.emoji, this._textarea.value = this._textareaValue, this._showEmojiPicker = !1;
|
|
3143
|
+
t.stopPropagation(), this._textareaValue += t.detail.emoji, this._textarea.value = this._textareaValue, this._showEmojiPicker = !1;
|
|
3143
3144
|
}
|
|
3144
3145
|
_toggleEmojiPicker() {
|
|
3145
3146
|
this._showEmojiPicker = !this._showEmojiPicker;
|