Skip to content
This repository was archived by the owner on Aug 30, 2022. It is now read-only.

Commit

Permalink
[2.2.0](Mar 19 2021) (#34)
Browse files Browse the repository at this point in the history
- Features:
  * <MessageSearch /> - standalone message search component with props:
    channelUrl: string;
    searchString?: string;
    messageSearchQuery?: SendbirdUIKit.MessageSearchQueryType;
    renderSearchItem?({ message, onResultClick }: {
      message: ClientSentMessages,
      onResultClick?: (message: ClientSentMessages) => void,
    }): JSX.Element;
    onResultLoaded?(messages?: Array<ClientSentMessages>, error?: SendbirdError): void;
    onResultClick?(message: ClientSentMessages): void;
  * <App /> can enable or disable search using prop: `showSearchIcon`
  * <Channel /> Add prop to highlight and navigate betweeen messages
    highlightedMessage?: string | number;
    startingPoint: number;

- Bugfixes:
  * Stability fixes

Co-authored-by: Sravan S <sravan@sendbird.com>
  • Loading branch information
sravan-s and Sravan S authored Mar 19, 2021
1 parent e3144c2 commit 7ecbcd0
Show file tree
Hide file tree
Showing 102 changed files with 25,873 additions and 2,340 deletions.
171 changes: 162 additions & 9 deletions App.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion App.js.map

Large diffs are not rendered by default.

21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# Changelog

## [2.2.0](Mar 19 2021)

- Features:
* <MessageSearch /> - standalone message search component with props:
channelUrl: string;
searchString?: string;
messageSearchQuery?: SendbirdUIKit.MessageSearchQueryType;
renderSearchItem?({ message, onResultClick }: {
message: ClientSentMessages,
onResultClick?: (message: ClientSentMessages) => void,
}): JSX.Element;
onResultLoaded?(messages?: Array<ClientSentMessages>, error?: SendbirdError): void;
onResultClick?(message: ClientSentMessages): void;
* <App /> can enable or disable search using prop: `showSearchIcon`
* <Channel /> Add prop to highlight and navigate betweeen messages
highlightedMessage?: string | number;
startingPoint: number;

- Bugfixes:
* Stability fixes

## [2.1.0](Mar 04 2021)

- Features:
Expand Down
Loading

0 comments on commit 7ecbcd0

Please sign in to comment.