You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
search now takes an object of options as the second param:
Before: (value, emojisToShowFilter = () => true, maxResults = 75)
After: (value, { emojisToShowFilter, maxResults, include, exclude } = {})
New
Picker
Added include and exclude props. When defined, include will also determine the categories order except recent, which is always first. Excluded (or not included) categories will be filtered out from the search results. Examples:include: ['recent', 'flags', 'people'], exclude: ['recent'].
Added autoFocus props.
Added notfound to i18n. Default: No Emoji Found.
Enhancement
Removed a few loops and function calls introduced in v0.4.4 when not necessary. [4a9497d, 6a3b05d]