diff --git a/README.md b/README.md index 6f45a887..1fe2253f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ ## Vue Twemoji Picker -This component is meant to be a developer friendly, easy integrable and performatic emoji picker (with some batteries) using the Twitter emoji arts (Twemojis). Emoji Unicode 12 (latest emoji spec, from 2019, which includes skins) is used as the base dataset. +This component is meant to be a developer friendly, easy integrable and performatic emoji picker (with some batteries) using the Twitter emoji arts (Twemojis). Emoji Unicode 13.0 (latest emoji spec, from 2020) is used as the base dataset. ![Vue Twemoji Picker Preview](https://i.imgur.com/5uQc4EC.png) diff --git a/babel.config.js b/babel.config.js index 078c0056..757ff9b1 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,3 +1,5 @@ module.exports = { - presets: ['@vue/cli-plugin-babel/preset'], + presets: [ + '@vue/cli-plugin-babel/preset', + ], }; diff --git a/docs/docs/changelog/index.md b/docs/docs/changelog/index.md index 672706d0..b315fe51 100644 --- a/docs/docs/changelog/index.md +++ b/docs/docs/changelog/index.md @@ -4,6 +4,10 @@ title: 'Changelog' # Changelog +## 5.7.0 +- Emoji Dataset updated for the 13.0 spec from 2020 🚀 +- Minor bug for emoji search bar fixed + ## 5.6.5 - 'pickerPaddingOffset' has been reworked and now accepts a Number that represents pixels. diff --git a/docs/docs/emoji-datasets/index.md b/docs/docs/emoji-datasets/index.md index c2c792ef..37dbe648 100644 --- a/docs/docs/emoji-datasets/index.md +++ b/docs/docs/emoji-datasets/index.md @@ -4,7 +4,7 @@ title: 'Emoji Datasets' # Emoji Datasets -The dataset distributed with this library is based on the Unicode standard: [http://cldr.unicode.org/index/downloads/cldr-35](http://cldr.unicode.org/index/downloads/cldr-35) This means that the tags used for search and filtering; the shortcodes used for shortcode usage; and some other data are based on a standard; therefore these datasets will not be fattened by this library, which will strictly follow the standard. +The dataset distributed with this library is based on the Unicode standard: [http://www.unicode.org/emoji/charts-13.0/](http://www.unicode.org/emoji/charts-13.0/) This means that the tags used for search and filtering, the shortcodes, and some other data are based on a standard. Therefore these datasets will not be fattened by this library, which will strictly follow the standard. This library bundles optimized emoji datasets for ease of use. Below you have info regarding each emoji dataset as well as its import paths (where {LANG} is your preferred language, see [localization](/docs/localization)): @@ -20,6 +20,7 @@ This library bundles optimized emoji datasets for ease of use. Below you have in | 'emoji-data/{LANG}/emoji-group-food-drink.json' | 6,4KB | 1,6KB | | 'emoji-data/{LANG}/emoji-group-objects.json' | 12,4KB | 2,6KB | | 'emoji-data/{LANG}/emoji-group-people-body.json' | 58KB | 8,2KB | +| 'emoji-data/{LANG}/emoji-group-component.json' | 1KB | 500B | | 'emoji-data/{LANG}/emoji-group-smileys-emotion.json' | 13KB | 2,9KB | | 'emoji-data/{LANG}/emoji-group-symbols.json' | 8,3KB | 2KB | | 'emoji-data/{LANG}/emoji-group-travel-places.json' | 11KB | 2,4KB | \ No newline at end of file diff --git a/docs/docs/index.md b/docs/docs/index.md index c73a5f32..8797ee5b 100644 --- a/docs/docs/index.md +++ b/docs/docs/index.md @@ -7,7 +7,7 @@ title: 'Introduction' Vue Twemoji Picker was born when, in a project, I've faced a challenge: I couldn't find a performatic enough emoji picker. So I did what every developer does when he doesn't find a library ready: wrote my own. -This library is meant to be a developer friendly, easy integrable and performatic emoji picker (with some batteries) using the Twitter emoji arts (Twemojis). Emoji Unicode 12 (latest emoji spec, from 2019, which includes skins) is used as the base dataset. +This library is meant to be a developer friendly, easy integrable and performatic emoji picker (with some batteries) using the Twitter emoji arts (Twemojis). Emoji Unicode 13 (latest emoji spec, from 2020) is used as the base dataset. Updates to the emoji list of this library depends on two factors: release of the new standard of emojis released yearly and release of official Twitter emoji arts for the new released standard. diff --git a/docs/index.md b/docs/index.md index b8a4df1f..599a361c 100644 --- a/docs/index.md +++ b/docs/index.md @@ -10,6 +10,9 @@ footer: 'MIT Licensed | Copyright © 2020-present @kevinfaguiar | Twemoji graphi