We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed the colorful squares from Emoji 12 don't show up in the picker:
despite being listed in the data files as large_purple_square and similar.
large_purple_square
After a bit of debugging it seems the code that detects the emoji version supported (https://github.com/missive/emoji-mart/blob/main/packages/emoji-mart/src/helpers/native-support.ts#L17) thinks the browser only supports up to version 11 (while it actually supports up to version 15.1)
The text was updated successfully, but these errors were encountered:
Specifically it's this check that fails: https://github.com/missive/emoji-mart/blob/main/packages/emoji-mart/src/helpers/native-support.ts#L99
which compares the first non-zero pixel to the equivalent pixel in the repeated image. Perhaps that check is not stable due to antialiasing?
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I noticed the colorful squares from Emoji 12 don't show up in the picker:
despite being listed in the data files as
large_purple_square
and similar.After a bit of debugging it seems the code that detects the emoji version supported (https://github.com/missive/emoji-mart/blob/main/packages/emoji-mart/src/helpers/native-support.ts#L17) thinks the browser only supports up to version 11 (while it actually supports up to version 15.1)
The text was updated successfully, but these errors were encountered: