TweemojiRegex: Update to v16.0.0 (#5856)

This commit is contained in:
Alexander Zinchuk 2025-04-23 18:59:33 +02:00
parent 76ee31229e
commit cefc17915f
4 changed files with 10 additions and 9 deletions

9
package-lock.json generated
View File

@ -14,7 +14,7 @@
"async-mutex": "^0.5.0",
"big-integer": "github:painor/BigInteger.js",
"croppie": "^2.6.5",
"emoji-data-ios": "git+https://github.com/korenskoy/emoji-data-ios#de1a69aff2c8eb7548df4e6bcf50c7d2304792fc",
"emoji-data-ios": "git+https://github.com/korenskoy/emoji-data-ios#443f1c9d7b16a82e7ee53f7f226d7d9a9920a105",
"idb-keyval": "^6.2.1",
"lowlight": "^2.9.0",
"mp4box": "^0.5.2",
@ -10296,9 +10296,10 @@
}
},
"node_modules/emoji-data-ios": {
"version": "0.5.1",
"resolved": "git+ssh://git@github.com/korenskoy/emoji-data-ios.git#de1a69aff2c8eb7548df4e6bcf50c7d2304792fc",
"integrity": "sha512-OratqM2QSCQBRETWAjlzSo5eMaIRY6g03k2/2MkuWSlWesXuDV4sc0QH3MI8SKlTW/x0EHOY1/2TEb5bVbbRhg=="
"version": "0.5.2",
"resolved": "git+ssh://git@github.com/korenskoy/emoji-data-ios.git#443f1c9d7b16a82e7ee53f7f226d7d9a9920a105",
"integrity": "sha512-StmyrYjmVqpzP5OxQa1DMDUCnwBLV8gTyJkDjkYLmYe6t7s06d61T10wcRWoIuLE3LpSGbFj56lGhdLEHp2w5g==",
"license": "MIT"
},
"node_modules/emoji-regex": {
"version": "9.2.2",

View File

@ -138,7 +138,7 @@
"async-mutex": "^0.5.0",
"big-integer": "github:painor/BigInteger.js",
"croppie": "^2.6.5",
"emoji-data-ios": "git+https://github.com/korenskoy/emoji-data-ios#de1a69aff2c8eb7548df4e6bcf50c7d2304792fc",
"emoji-data-ios": "git+https://github.com/korenskoy/emoji-data-ios#443f1c9d7b16a82e7ee53f7f226d7d9a9920a105",
"idb-keyval": "^6.2.1",
"lowlight": "^2.9.0",
"mp4box": "^0.5.2",

File diff suppressed because one or more lines are too long

View File

@ -135,7 +135,7 @@ function isLastEmojiVersionSupported() {
inlineEl.classList.add('emoji-test-element');
document.body.appendChild(inlineEl);
inlineEl.innerText = '🐦‍🔥'; // Emoji from 15.1 version
inlineEl.innerText = '🫆'; // Emoji from 16.0 version
const newEmojiWidth = inlineEl.offsetWidth;
inlineEl.innerText = '❤️'; // Emoji from 1.0 version
const legacyEmojiWidth = inlineEl.offsetWidth;