@ckeditor/ckeditor5-emoji 47.7.1 → 47.7.2-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
- package/src/emojimention.js +2 -1
- package/src/emojipicker.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-emoji",
|
|
3
|
-
"version": "47.7.
|
|
3
|
+
"version": "47.7.2-alpha.0",
|
|
4
4
|
"description": "Emoji feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,13 +13,13 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"main": "src/index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@ckeditor/ckeditor5-core": "47.7.
|
|
17
|
-
"@ckeditor/ckeditor5-icons": "47.7.
|
|
18
|
-
"@ckeditor/ckeditor5-mention": "47.7.
|
|
19
|
-
"@ckeditor/ckeditor5-typing": "47.7.
|
|
20
|
-
"@ckeditor/ckeditor5-ui": "47.7.
|
|
21
|
-
"@ckeditor/ckeditor5-utils": "47.7.
|
|
22
|
-
"ckeditor5": "47.7.
|
|
16
|
+
"@ckeditor/ckeditor5-core": "47.7.2-alpha.0",
|
|
17
|
+
"@ckeditor/ckeditor5-icons": "47.7.2-alpha.0",
|
|
18
|
+
"@ckeditor/ckeditor5-mention": "47.7.2-alpha.0",
|
|
19
|
+
"@ckeditor/ckeditor5-typing": "47.7.2-alpha.0",
|
|
20
|
+
"@ckeditor/ckeditor5-ui": "47.7.2-alpha.0",
|
|
21
|
+
"@ckeditor/ckeditor5-utils": "47.7.2-alpha.0",
|
|
22
|
+
"ckeditor5": "47.7.2-alpha.0",
|
|
23
23
|
"fuzzysort": "3.1.0",
|
|
24
24
|
"es-toolkit": "1.39.5"
|
|
25
25
|
},
|
package/src/emojimention.js
CHANGED
|
@@ -190,7 +190,8 @@ export class EmojiMention extends Plugin {
|
|
|
190
190
|
if (searchQuery.startsWith(EMOJI_MENTION_MARKER)) {
|
|
191
191
|
return [];
|
|
192
192
|
}
|
|
193
|
-
// If the repository plugin is not available, return an empty feed to avoid confusion.
|
|
193
|
+
// If the repository plugin is not available, return an empty feed to avoid confusion.
|
|
194
|
+
// See: https://github.com/ckeditor/ckeditor5/issues/17842.
|
|
194
195
|
if (!this._isEmojiRepositoryAvailable) {
|
|
195
196
|
return [];
|
|
196
197
|
}
|
package/src/emojipicker.js
CHANGED
|
@@ -92,7 +92,7 @@ export class EmojiPicker extends Plugin {
|
|
|
92
92
|
*/
|
|
93
93
|
showUI(searchValue = '') {
|
|
94
94
|
// Show visual selection on a text when the contextual balloon is displayed.
|
|
95
|
-
// See
|
|
95
|
+
// See https://github.com/ckeditor/ckeditor5/issues/17654.
|
|
96
96
|
this._showFakeVisualSelection();
|
|
97
97
|
if (!this.emojiPickerView) {
|
|
98
98
|
this.emojiPickerView = this._createEmojiPickerView();
|