stream-chat-react 13.3.0 → 13.5.0
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/Channel/Channel.js +5 -0
- package/dist/components/ChannelPreview/ChannelPreview.js +7 -2
- package/dist/components/Chat/hooks/useChat.js +1 -1
- package/dist/components/Message/renderText/renderText.d.ts +1 -1
- package/dist/components/Message/renderText/renderText.js +1 -1
- package/dist/components/MessageInput/AttachmentPreviewList/index.d.ts +1 -0
- package/dist/components/MessageInput/index.d.ts +1 -1
- package/dist/components/Modal/Modal.d.ts +8 -3
- package/dist/components/Modal/Modal.js +19 -8
- package/dist/components/Poll/PollCreationDialog/PollCreationDialogControls.js +4 -1
- package/dist/experimental/index.browser.cjs +6 -2
- package/dist/experimental/index.browser.cjs.map +2 -2
- package/dist/experimental/index.node.cjs +6 -2
- package/dist/experimental/index.node.cjs.map +2 -2
- package/dist/i18n/Streami18n.d.ts +1 -0
- package/dist/i18n/TranslationBuilder/notifications/NotificationTranslationTopic.js +2 -0
- package/dist/i18n/TranslationBuilder/notifications/pollVoteCountTrespass.d.ts +3 -0
- package/dist/i18n/TranslationBuilder/notifications/pollVoteCountTrespass.js +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 +1 -0
- package/dist/i18n/nl.json +1 -0
- 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 +1168 -1128
- package/dist/index.browser.cjs.map +3 -3
- package/dist/index.node.cjs +1168 -1128
- package/dist/index.node.cjs.map +3 -3
- package/dist/types/types.d.ts +3 -0
- package/package.json +5 -5
package/dist/types/types.d.ts
CHANGED
|
@@ -52,3 +52,6 @@ export type PartialSelected<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T,
|
|
|
52
52
|
export type DeepRequired<T> = {
|
|
53
53
|
[K in keyof T]-?: T[K] extends object ? DeepRequired<T[K]> : T[K];
|
|
54
54
|
};
|
|
55
|
+
export type DeepPartial<T> = {
|
|
56
|
+
[P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P];
|
|
57
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stream-chat-react",
|
|
3
|
-
"version": "13.
|
|
3
|
+
"version": "13.5.0",
|
|
4
4
|
"description": "React components to create chat conversations or livestream style chat",
|
|
5
5
|
"author": "GetStream",
|
|
6
6
|
"homepage": "https://getstream.io/chat/",
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
"fix-webm-duration": "^1.0.5",
|
|
112
112
|
"hast-util-find-and-replace": "^5.0.1",
|
|
113
113
|
"i18next": "^25.2.1",
|
|
114
|
-
"linkifyjs": "^4.
|
|
114
|
+
"linkifyjs": "^4.3.2",
|
|
115
115
|
"lodash.debounce": "^4.0.8",
|
|
116
116
|
"lodash.defaultsdeep": "^4.6.1",
|
|
117
117
|
"lodash.mergewith": "^4.6.2",
|
|
@@ -142,7 +142,7 @@
|
|
|
142
142
|
"emoji-mart": "^5.4.0",
|
|
143
143
|
"react": "^19.0.0 || ^18.0.0 || ^17.0.0 || ^16.14.0",
|
|
144
144
|
"react-dom": "^19.0.0 || ^18.0.0 || ^17.0.0 || ^16.14.0",
|
|
145
|
-
"stream-chat": "^9.
|
|
145
|
+
"stream-chat": "^9.17.0"
|
|
146
146
|
},
|
|
147
147
|
"peerDependenciesMeta": {
|
|
148
148
|
"@breezystack/lamejs": {
|
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
"@types/hast": "^2.3.4",
|
|
193
193
|
"@types/jest": "^29.5.14",
|
|
194
194
|
"@types/jsdom": "^21.1.5",
|
|
195
|
-
"@types/linkifyjs": "^2.1.
|
|
195
|
+
"@types/linkifyjs": "^2.1.7",
|
|
196
196
|
"@types/lodash.debounce": "^4.0.7",
|
|
197
197
|
"@types/lodash.defaultsdeep": "^4.6.9",
|
|
198
198
|
"@types/lodash.mergewith": "^4.6.9",
|
|
@@ -236,7 +236,7 @@
|
|
|
236
236
|
"react": "^19.0.0",
|
|
237
237
|
"react-dom": "^19.0.0",
|
|
238
238
|
"semantic-release": "^24.2.3",
|
|
239
|
-
"stream-chat": "^9.
|
|
239
|
+
"stream-chat": "^9.17.0",
|
|
240
240
|
"ts-jest": "^29.2.5",
|
|
241
241
|
"typescript": "^5.4.5",
|
|
242
242
|
"typescript-eslint": "^8.17.0"
|