stream-chat-react 12.11.0 → 12.12.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.d.ts +1 -1
- package/dist/components/Channel/Channel.js +41 -26
- package/dist/components/Channel/channelState.d.ts +1 -1
- package/dist/components/Channel/channelState.js +2 -1
- package/dist/components/ChannelList/ChannelList.js +15 -9
- package/dist/components/ChannelList/hooks/useChannelListShape.js +4 -3
- package/dist/components/ChannelPreview/ChannelPreview.d.ts +2 -2
- package/dist/components/ChannelPreview/ChannelPreview.js +3 -4
- package/dist/components/ChannelPreview/ChannelPreviewMessenger.d.ts +1 -1
- package/dist/components/ChannelSearch/SearchBar.js +7 -8
- package/dist/components/ChannelSearch/SearchResults.js +8 -7
- package/dist/components/Chat/Chat.d.ts +5 -2
- package/dist/components/Chat/Chat.js +12 -2
- package/dist/components/Chat/hooks/useChat.js +1 -1
- package/dist/components/Chat/hooks/useCreateChatContext.js +3 -1
- package/dist/components/InfiniteScrollPaginator/InfiniteScroll.d.ts +1 -1
- package/dist/components/InfiniteScrollPaginator/InfiniteScroll.js +1 -1
- package/dist/components/InfiniteScrollPaginator/InfiniteScrollPaginator.d.ts +1 -0
- package/dist/components/InfiniteScrollPaginator/InfiniteScrollPaginator.js +8 -2
- package/dist/components/MediaRecorder/classes/MediaRecorderController.d.ts +6 -1
- package/dist/components/MediaRecorder/classes/MediaRecorderController.js +6 -8
- package/dist/components/Message/renderText/renderText.d.ts +3 -3
- package/dist/components/Message/renderText/renderText.js +3 -3
- package/dist/context/ChatContext.d.ts +3 -1
- package/dist/context/ComponentContext.d.ts +23 -0
- package/dist/experimental/Search/Search.d.ts +12 -0
- package/dist/experimental/Search/Search.js +25 -0
- package/dist/experimental/Search/SearchBar/SearchBar.d.ts +2 -0
- package/dist/experimental/Search/SearchBar/SearchBar.js +56 -0
- package/dist/experimental/Search/SearchBar/index.d.ts +1 -0
- package/dist/experimental/Search/SearchBar/index.js +1 -0
- package/dist/experimental/Search/SearchContext.d.ts +23 -0
- package/dist/experimental/Search/SearchContext.js +10 -0
- package/dist/experimental/Search/SearchResults/SearchResultItem.d.ts +19 -0
- package/dist/experimental/Search/SearchResults/SearchResultItem.js +62 -0
- package/dist/experimental/Search/SearchResults/SearchResults.d.ts +3 -0
- package/dist/experimental/Search/SearchResults/SearchResults.js +21 -0
- package/dist/experimental/Search/SearchResults/SearchResultsHeader.d.ts +3 -0
- package/dist/experimental/Search/SearchResults/SearchResultsHeader.js +31 -0
- package/dist/experimental/Search/SearchResults/SearchResultsPresearch.d.ts +6 -0
- package/dist/experimental/Search/SearchResults/SearchResultsPresearch.js +6 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultList.d.ts +9 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultList.js +22 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultListFooter.d.ts +3 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultListFooter.js +16 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResults.d.ts +7 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResults.js +21 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultsEmpty.d.ts +2 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultsEmpty.js +6 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultsHeader.d.ts +1 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultsHeader.js +1 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultsLoadingIndicator.d.ts +2 -0
- package/dist/experimental/Search/SearchResults/SearchSourceResultsLoadingIndicator.js +8 -0
- package/dist/experimental/Search/SearchResults/index.d.ts +9 -0
- package/dist/experimental/Search/SearchResults/index.js +9 -0
- package/dist/experimental/Search/SearchSourceResultsContext.d.ts +13 -0
- package/dist/experimental/Search/SearchSourceResultsContext.js +10 -0
- package/dist/experimental/Search/hooks/index.d.ts +2 -0
- package/dist/experimental/Search/hooks/index.js +2 -0
- package/dist/experimental/Search/hooks/useSearchFocusedMessage.d.ts +2 -0
- package/dist/experimental/Search/hooks/useSearchFocusedMessage.js +8 -0
- package/dist/experimental/Search/hooks/useSearchQueriesInProgress.d.ts +6 -0
- package/dist/experimental/Search/hooks/useSearchQueriesInProgress.js +22 -0
- package/dist/experimental/Search/index.d.ts +5 -0
- package/dist/experimental/Search/index.js +5 -0
- package/dist/experimental/index.browser.cjs +11286 -301
- package/dist/experimental/index.browser.cjs.map +4 -4
- package/dist/experimental/index.d.ts +1 -0
- package/dist/experimental/index.js +1 -0
- package/dist/experimental/index.node.cjs +13176 -301
- package/dist/experimental/index.node.cjs.map +4 -4
- package/dist/i18n/Streami18n.d.ts +7 -0
- package/dist/i18n/de.json +7 -0
- package/dist/i18n/en.json +7 -0
- package/dist/i18n/es.json +7 -0
- package/dist/i18n/fr.json +8 -1
- package/dist/i18n/hi.json +7 -0
- package/dist/i18n/it.json +7 -0
- package/dist/i18n/ja.json +7 -0
- package/dist/i18n/ko.json +7 -0
- package/dist/i18n/nl.json +7 -0
- package/dist/i18n/pt.json +8 -1
- package/dist/i18n/ru.json +7 -0
- package/dist/i18n/tr.json +7 -0
- package/dist/index.browser.cjs +15820 -14850
- package/dist/index.browser.cjs.map +4 -4
- package/dist/index.node.cjs +17734 -16886
- package/dist/index.node.cjs.map +4 -4
- package/package.json +6 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "stream-chat-react",
|
|
3
|
-
"version": "12.
|
|
3
|
+
"version": "12.12.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/",
|
|
@@ -122,15 +122,15 @@
|
|
|
122
122
|
"react-dropzone": "^14.2.3",
|
|
123
123
|
"react-fast-compare": "^3.2.2",
|
|
124
124
|
"react-image-gallery": "1.2.12",
|
|
125
|
-
"react-markdown": "^
|
|
125
|
+
"react-markdown": "^9.0.3",
|
|
126
126
|
"react-player": "2.10.1",
|
|
127
127
|
"react-popper": "^2.3.0",
|
|
128
128
|
"react-textarea-autosize": "^8.3.0",
|
|
129
129
|
"react-virtuoso": "^2.16.5",
|
|
130
|
-
"remark-gfm": "^
|
|
130
|
+
"remark-gfm": "^4.0.1",
|
|
131
131
|
"textarea-caret": "^3.1.0",
|
|
132
132
|
"tslib": "^2.6.2",
|
|
133
|
-
"unist-builder": "^
|
|
133
|
+
"unist-builder": "^4.0.0",
|
|
134
134
|
"unist-util-visit": "^5.0.0",
|
|
135
135
|
"use-sync-external-store": "^1.4.0"
|
|
136
136
|
},
|
|
@@ -145,7 +145,7 @@
|
|
|
145
145
|
"emoji-mart": "^5.4.0",
|
|
146
146
|
"react": "^19.0.0 || ^18.0.0 || ^17.0.0 || ^16.8.0",
|
|
147
147
|
"react-dom": "^19.0.0 || ^18.0.0 || ^17.0.0 || ^16.8.0",
|
|
148
|
-
"stream-chat": "^8.
|
|
148
|
+
"stream-chat": "^8.55.0"
|
|
149
149
|
},
|
|
150
150
|
"peerDependenciesMeta": {
|
|
151
151
|
"@breezystack/lamejs": {
|
|
@@ -187,7 +187,6 @@
|
|
|
187
187
|
"@semantic-release/changelog": "^6.0.2",
|
|
188
188
|
"@semantic-release/exec": "^6.0.3",
|
|
189
189
|
"@semantic-release/git": "^10.0.1",
|
|
190
|
-
"@stream-io/rollup-plugin-node-builtins": "^2.1.5",
|
|
191
190
|
"@stream-io/stream-chat-css": "^5.7.0",
|
|
192
191
|
"@testing-library/dom": "^10.4.0",
|
|
193
192
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -242,7 +241,7 @@
|
|
|
242
241
|
"react": "^19.0.0",
|
|
243
242
|
"react-dom": "^19.0.0",
|
|
244
243
|
"semantic-release": "^19.0.5",
|
|
245
|
-
"stream-chat": "^8.
|
|
244
|
+
"stream-chat": "^8.55.0",
|
|
246
245
|
"ts-jest": "^29.2.5",
|
|
247
246
|
"typescript": "^5.4.5",
|
|
248
247
|
"typescript-eslint": "^8.17.0"
|