@ckeditor/ckeditor5-emoji 45.0.0-alpha.5 → 45.0.0-alpha.7

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-emoji",
3
- "version": "45.0.0-alpha.5",
3
+ "version": "45.0.0-alpha.7",
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": "45.0.0-alpha.5",
17
- "@ckeditor/ckeditor5-icons": "45.0.0-alpha.5",
18
- "@ckeditor/ckeditor5-mention": "45.0.0-alpha.5",
19
- "@ckeditor/ckeditor5-typing": "45.0.0-alpha.5",
20
- "@ckeditor/ckeditor5-ui": "45.0.0-alpha.5",
21
- "@ckeditor/ckeditor5-utils": "45.0.0-alpha.5",
22
- "ckeditor5": "45.0.0-alpha.5",
16
+ "@ckeditor/ckeditor5-core": "45.0.0-alpha.7",
17
+ "@ckeditor/ckeditor5-icons": "45.0.0-alpha.7",
18
+ "@ckeditor/ckeditor5-mention": "45.0.0-alpha.7",
19
+ "@ckeditor/ckeditor5-typing": "45.0.0-alpha.7",
20
+ "@ckeditor/ckeditor5-ui": "45.0.0-alpha.7",
21
+ "@ckeditor/ckeditor5-utils": "45.0.0-alpha.7",
22
+ "ckeditor5": "45.0.0-alpha.7",
23
23
  "fuzzysort": "3.1.0",
24
24
  "es-toolkit": "1.32.0"
25
25
  },
@@ -128,6 +128,7 @@ export default class EmojiPicker extends Plugin {
128
128
  isToggleable: true
129
129
  });
130
130
  buttonView.on('execute', () => {
131
+ this.editor.editing.view.scrollToTheSelection();
131
132
  this.showUI();
132
133
  });
133
134
  return buttonView;