@ckeditor/ckeditor5-emoji 47.7.1-alpha.0 → 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/dist/index.js
CHANGED
|
@@ -738,7 +738,8 @@ const EMOJI_HINT_OPTION_ID = ':__EMOJI_HINT:';
|
|
|
738
738
|
if (searchQuery.startsWith(EMOJI_MENTION_MARKER)) {
|
|
739
739
|
return [];
|
|
740
740
|
}
|
|
741
|
-
// If the repository plugin is not available, return an empty feed to avoid confusion.
|
|
741
|
+
// If the repository plugin is not available, return an empty feed to avoid confusion.
|
|
742
|
+
// See: https://github.com/ckeditor/ckeditor5/issues/17842.
|
|
742
743
|
if (!this._isEmojiRepositoryAvailable) {
|
|
743
744
|
return [];
|
|
744
745
|
}
|
|
@@ -1653,7 +1654,7 @@ const VISUAL_SELECTION_MARKER_NAME = 'emoji-picker';
|
|
|
1653
1654
|
* @param [searchValue=''] A default query used to filer the grid when opening the UI.
|
|
1654
1655
|
*/ showUI(searchValue = '') {
|
|
1655
1656
|
// Show visual selection on a text when the contextual balloon is displayed.
|
|
1656
|
-
// See
|
|
1657
|
+
// See https://github.com/ckeditor/ckeditor5/issues/17654.
|
|
1657
1658
|
this._showFakeVisualSelection();
|
|
1658
1659
|
if (!this.emojiPickerView) {
|
|
1659
1660
|
this.emojiPickerView = this._createEmojiPickerView();
|