File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 4.1.3] ( https://github.com/GetStream/stream-chat-react/releases/tag/v4.1.3 ) 2021-03-12
4+
5+ ### Chore
6+
7+ - Remove legacy example apps [ #766 ] ( https://github.com/GetStream/stream-chat-react/pull/766 )
8+ - Handle soft deleted messages in ` VirtualizedMessageList ` [ #773 ] ( https://github.com/GetStream/stream-chat-react/pull/773 )
9+
10+ ### Bug
11+
12+ - Add missing ChannelPreview helpers to exports [ #775 ] ( https://github.com/GetStream/stream-chat-react/pull/775 )
13+
314## [ 4.1.2] ( https://github.com/GetStream/stream-chat-react/releases/tag/v4.1.2 ) 2021-03-09
415
516### Feature
Original file line number Diff line number Diff line change @@ -1410,6 +1410,19 @@ export const LoadMorePaginator: React.FC<LoadMorePaginatorProps>;
14101410export const InfiniteScrollPaginator : React . FC < InfiniteScrollPaginatorProps > ;
14111411export const LoadingIndicator : React . FC < LoadingIndicatorProps > ;
14121412
1413+ export const getDisplayTitle : (
1414+ channel : Client . Channel ,
1415+ currentUser : Client . UserResponse ,
1416+ ) => string | undefined ;
1417+ export const getDisplayImage : (
1418+ channel : Client . Channel ,
1419+ currentUser : Client . UserResponse ,
1420+ ) => string | undefined ;
1421+ export const getLatestMessagePreview : (
1422+ channel : Client . Channel ,
1423+ t : i18next . TFunction ,
1424+ ) => string | undefined ;
1425+
14131426export interface MessageCommerceProps
14141427 extends Omit < MessageUIComponentProps , 'EditMessageForm' > { }
14151428export const MessageCommerce : React . FC < MessageCommerceProps > ;
You can’t perform that action at this time.
0 commit comments