Skip to content

Commit 49ae921

Browse files
Merge pull request #1832 from GetStream/develop
Next Release
2 parents 2141741 + 1b159d9 commit 49ae921

File tree

14 files changed

+19
-15
lines changed

14 files changed

+19
-15
lines changed

docusaurus/docs/reactnative/basics/upgrade_helper.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This guide highlights the changes introduced from v4 to v5.
1010

1111
## Prop or Context Changes
1212

13-
The following values in [`ImageGalleryContext`](https://getstream.io/chat/docs/sdk/reactnative/v5/contexts/image-gallery-context/#value) have been renamed:
13+
The following values in [`ImageGalleryContext`](../../contexts/image-gallery-context/#value) have been renamed:
1414

1515
- `image` -> `selectedMessage`
1616
- `setImage` -> `setSelectedMessage`

docusaurus/docs/reactnative/common-content/core-components/chat/props/image_component.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Drop in replacement of all the underlying [`Image`](https://reactnative.dev/docs/next/image) components within SDK.
2-
This is useful for the purpose of offline caching of images. Please check the [Offline Support Guide](../basics/offline_support.mdx) for usage.
2+
This is useful for the purpose of offline caching of images. Please check the [Offline Support Guide](https://getstream.io/chat/docs/sdk/reactnative/basics/offline-support/) for usage.
33

44
| Type | Default |
55
| --------- | -------------------------------------------------- |

docusaurus/docs/reactnative/guides/livestream_messagelist.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ import { Chat, Channel, MessageList } from 'stream-chat-react-native';
4343
const theme = {
4444
messageList: {
4545
container: {
46-
backgroundColor: 'transperant',
46+
backgroundColor: 'transparent',
4747
},
4848
},
4949
messageSimple: {

docusaurus/reactnative_versioned_docs/version-3.x.x/common-content/core-components/channel/props/thread.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
A message object that when set indicates a thread is open.
2-
When used with the [`Thread`](../../../../ui-components/thread.mdx) component this will display the thread.
3-
When used with the standard [`MessageList`](../../../../ui-components/message_list.mdx) component this will prevent any singleton components in the [`OverlayProvider`](../../../../core-components/overlay-provider) form getting out of sync.
2+
When used with the [`Thread`](/reactnative/ui-components/thread) component this will display the thread.
3+
When used with the standard [`MessageList`](/reactnative/ui-components/message-list) component this will prevent any singleton components in the [`OverlayProvider`](/reactnative/core-components/overlay-provider) form getting out of sync.
44

55
:::note
66

docusaurus/reactnative_versioned_docs/version-3.x.x/common-content/core-components/overlay-provider/props/attachment_picker_error_button_text.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Text for the button within [`AttachmentPickerError`](../../../../core-components/overlay-provider#attachmentpickererror) that opens the apps OS level settings.
1+
Text for the button within [`AttachmentPickerError`](/reactnative/core-components/overlay-provider#attachmentpickererror) that opens the apps OS level settings.
22

33
| Type | Default |
44
| ------ | ------------------------------ |

docusaurus/reactnative_versioned_docs/version-3.x.x/common-content/core-components/overlay-provider/props/attachment_picker_error_image.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Image component within [`AttachmentPickerError`](../../../../core-components/overlay-provider#attachmentpickererror).
1+
Image component within [`AttachmentPickerError`](/reactnative/core-components/overlay-provider#attachmentpickererror).
22

33
| Type | Default |
44
| --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |

docusaurus/reactnative_versioned_docs/version-3.x.x/common-content/core-components/overlay-provider/props/attachment_picker_error_text.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Error text for [`AttachmentPickerError`](../../../../core-components/overlay-provider#attachmentpickererror).
1+
Error text for [`AttachmentPickerError`](/reactnative/core-components/overlay-provider#attachmentpickererror).
22

33
| Type | Default |
44
| ------ | ----------------------------------------------------------------------- |

docusaurus/reactnative_versioned_docs/version-3.x.x/contexts/translation_context.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: TranslationContext
44
---
55

66
`TranslationContext` is provided by [`OverlayProvider`](../core-components/overlay_provider.mdx) and [`Chat`](../core-components/chat.mdx) components.
7-
Read the [translations section](../basics/translations/) for more information on how to customize your translations.
7+
Read the [translations section](../../basics/translations/) for more information on how to customize your translations.
88
If you are not familiar with React Context API, please read about it on [React docs](https://reactjs.org/docs/context.html).
99

1010
## Basic Usage

docusaurus/reactnative_versioned_docs/version-3.x.x/guides/message_actions_customization.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ type MessageAction = {
4343

4444
You can customize each one of the default actions using props on Channel component (as shown further on this page). Channel component makes these props available to enclosed components via context `MessagesContext`.
4545

46-
[`Channel`](../) component accepts a prop called - `messageActions`. You can use this prop as a callback function to render message actions selectively.
46+
[`Channel`](../../core-components/channel/) component accepts a prop called - `messageActions`. You can use this prop as a callback function to render message actions selectively.
4747
This parameters to this function includes all the default message actions as [`MessageAction`](../object-types/message_action.mdx) object, and some more relevant properties. Array of `MessageAction`'s returned by this function, will be rendered in message overlay (on long press).
4848

4949
```tsx

docusaurus/reactnative_versioned_docs/version-3.x.x/guides/upgrade_helper.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ const FooterWithSenderName = () => {
197197
</TabItem>
198198
</Tabs>
199199

200-
Let's check a similar example for [`ChannelList`](../core-component/channel_list.mdx) component. To customize avatar component of channel, within `ChannelList`, you had to
200+
Let's check a similar example for [`ChannelList`](../core-components/channel_list.mdx) component. To customize avatar component of channel, within `ChannelList`, you had to
201201
first customize `Preview` component which renders list item, and then provide avatar component on it. In v3, you can simply pass the `PreviewAvatar`
202202
component on `ChannelList` without having to go through prop drilling. Additionally you have access to [`ChannelsContext`](../contexts/channels_context.mdx)
203203
which provides access to all the necessary values and methods which `ChannelList` relies on.
@@ -262,7 +262,7 @@ Rendering of reactions on message and reaction picker has changed as part of v3.
262262
- Reactions were rendered as simple text emojis in v2, while reactions get rendered as SVG icons in v3.
263263
- Reaction picker used to show up as popup right above message in v2, on the other hand reaction picker will show up in overlay in v3.
264264

265-
Please check the guide on [Message with custom reactions](../guides/message-customization/#message-with-custom-reactions) for details.
265+
Please check the guide on [Message with custom reactions](./message-customizations/#message-with-custom-reactions) for details.
266266

267267
Additionally please take a look at following props to customize reactions related components:
268268

0 commit comments

Comments
 (0)