Skip to content

Commit

Permalink
FIX: Update docs for version 5.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinfaveri committed May 9, 2020
1 parent 8e03e51 commit bb2b7b9
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
4 changes: 3 additions & 1 deletion babel.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
module.exports = {
presets: ['@vue/cli-plugin-babel/preset'],
presets: [
'@vue/cli-plugin-babel/preset',
],
};
4 changes: 4 additions & 0 deletions docs/docs/changelog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
3 changes: 2 additions & 1 deletion docs/docs/emoji-datasets/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)):

Expand All @@ -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 |
2 changes: 1 addition & 1 deletion docs/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
6 changes: 3 additions & 3 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ footer: 'MIT Licensed | Copyright © 2020-present @kevinfaguiar | Twemoji graphi

<ParentRowWrapping>
<template v-slot:default>
<ChildBlock
title="Evergreen 🌲"
content="Continuous support which guarantees updates to latest released Unicode Standard emoji specs (currently v. 13.0, 2020)." />
<ChildBlock
title="Highly Configurable ⚙️"
content="A lot of props available which makes customization a breeze." />
Expand All @@ -19,9 +22,6 @@ footer: 'MIT Licensed | Copyright © 2020-present @kevinfaguiar | Twemoji graphi
<ChildBlock
title="Advanced Features 🔎"
content="Search, recently used, and optional textarea component for easily integration into apps." />
<ChildBlock
title="Evergreen 🌲"
content="Continuous support which guarantees updates to latest released Unicode Standard emoji specs (currently v. 12.0, 2019)." />
<ChildBlock
title="Inclusive 💕"
content="Support emoji variations: skin tones, hair color and diversity." />
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kevinfaguiar/vue-twemoji-picker",
"version": "5.6.5",
"version": "5.7.0",
"main": "dist/vue-twemoji-picker.umd.min.js",
"module": "dist/vue-twemoji-picker.esm.min.js",
"unpkg": "dist/vue-twemoji-picker.min.js",
Expand Down

0 comments on commit bb2b7b9

Please sign in to comment.