stream-chat-react 13.0.0 → 13.0.1
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/components/Chat/hooks/useChat.js +1 -1
- package/dist/components/MessageInput/hooks/useSubmitHandler.js +31 -1
- package/dist/components/Poll/PollActions/PollResults/PollResults.js +1 -1
- package/dist/components/Poll/PollCreationDialog/MultipleAnswersField.js +9 -2
- package/dist/components/TextareaComposer/TextareaComposer.js +3 -6
- package/dist/css/v2/index.css +1 -1
- package/dist/css/v2/index.layout.css +1 -1
- package/dist/i18n/Streami18n.d.ts +1 -0
- package/dist/i18n/de.json +1 -0
- package/dist/i18n/en.json +1 -0
- package/dist/i18n/es.json +1 -0
- package/dist/i18n/fr.json +1 -0
- package/dist/i18n/hi.json +1 -0
- package/dist/i18n/it.json +1 -0
- package/dist/i18n/ja.json +1 -0
- package/dist/i18n/ko.json +2 -1
- package/dist/i18n/nl.json +2 -1
- package/dist/i18n/pt.json +1 -0
- package/dist/i18n/ru.json +1 -0
- package/dist/i18n/tr.json +1 -0
- package/dist/index.browser.cjs +85 -42
- package/dist/index.browser.cjs.map +3 -3
- package/dist/index.node.cjs +85 -42
- package/dist/index.node.cjs.map +3 -3
- package/dist/scss/v2/MessageInput/MessageInput-layout.scss +5 -0
- package/package.json +3 -3
|
@@ -166,6 +166,11 @@
|
|
|
166
166
|
|
|
167
167
|
.str-chat__quoted-message-preview {
|
|
168
168
|
padding: var(--str-chat__spacing-2);
|
|
169
|
+
|
|
170
|
+
.str-chat__quoted-poll-preview__name {
|
|
171
|
+
@include utils.ellipsis-text();
|
|
172
|
+
overflow-x: hidden; // force ellipsis to show
|
|
173
|
+
}
|
|
169
174
|
}
|
|
170
175
|
|
|
171
176
|
.str-chat__recording-permission-denied-notification {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stream-chat-react",
|
|
3
|
-
"version": "13.0.
|
|
3
|
+
"version": "13.0.1",
|
|
4
4
|
"description": "React components to create chat conversations or livestream style chat",
|
|
5
5
|
"author": "GetStream",
|
|
6
6
|
"homepage": "https://getstream.io/chat/",
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
"@playwright/test": "^1.42.1",
|
|
187
187
|
"@semantic-release/changelog": "^6.0.3",
|
|
188
188
|
"@semantic-release/git": "^10.0.1",
|
|
189
|
-
"@stream-io/stream-chat-css": "^5.9.
|
|
189
|
+
"@stream-io/stream-chat-css": "^5.9.1",
|
|
190
190
|
"@testing-library/dom": "^10.4.0",
|
|
191
191
|
"@testing-library/jest-dom": "^6.6.3",
|
|
192
192
|
"@testing-library/react": "^16.2.0",
|
|
@@ -239,7 +239,7 @@
|
|
|
239
239
|
"react": "^19.0.0",
|
|
240
240
|
"react-dom": "^19.0.0",
|
|
241
241
|
"semantic-release": "^24.2.3",
|
|
242
|
-
"stream-chat": "
|
|
242
|
+
"stream-chat": "9.1.1",
|
|
243
243
|
"ts-jest": "^29.2.5",
|
|
244
244
|
"typescript": "^5.4.5",
|
|
245
245
|
"typescript-eslint": "^8.17.0"
|