Skip to content

Commit 7b58502

Browse files
committed
chore: update changelog draft
1 parent 863f044 commit 7b58502

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

CHANGELOG_DRAFT.md

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
1-
## v3.4.0
1+
## v3.4.1
22

3-
- Implemented a zoomable image viewer into FileViewer.
4-
- Changed the horizontal and vertical padding of TextInput to padding with directions.
3+
- Added `channelListQueryParams` prop to `GroupChannelListFragment`. It allows you to set the query parameters for the channel list. (`collectionCreator` is deprecated and replaced by `channelListQueryParams`)
4+
- ```tsx
5+
<GroupChannelList
6+
channelListQueryParams={{
7+
includeEmpty: true,
8+
includeFrozen: true,
9+
}}
10+
/>
11+
```
12+
- Added `messageListQueryParams` prop to `GroupChannelFragment`. It allows you to set the query parameters for the message list. (`collectionCreator` is deprecated and replaced by `messageListQueryParams`)
13+
- ```tsx
14+
<GroupChannel
15+
channelUrl={channelUrl}
16+
messageListQueryParams={{
17+
prevResultLimit: 20,
18+
customTypesFilter: ['filter'],
19+
}}
20+
/>
21+
```
22+
- Fixed an issue where a type error occurred in the `CommonComponent`. It used `React.ComponentType` instead of the function structure.

0 commit comments

Comments
 (0)