Open Rockatweb opened 10 months ago
Will this be released ? Thanks!
I think this repo is dead, because nothing happened since two years. But you can put this line into your package.json instead of the old one. Its working with the fork of marperia.
"@phudak/ckeditor5-emoji": "marperia/ckeditor5-emoji",
I published an other package updated for ckeditor 41.4.2 : https://github.com/OTeam44/ckeditor5-emojis
Hi, your package is incompatible with the newest version of ckeditor 41.x because they renamed an export from Model to ViewModel. Have a look here: https://ckeditor.com/docs/ckeditor5/latest/updating/guides/update-to-41.html#exports-renamed
You need to change the following Lines in the emojicharactersnavigationview.js
Line2: import { Model, FormHeaderView, createDropdown, addListToDropdown } from '@ckeditor/ckeditor5-ui';
toLine 2: import { ViewModel, FormHeaderView, createDropdown, addListToDropdown } from '@ckeditor/ckeditor5-ui';
and
Line 75: model: new Model( {
toLine 75: model: new ViewModel( {
Edit: And there is an error with the focus of the plugin
ui-dropdown-panel-focus-child-missing-focus {childView: EmojiCharactersNavigationView, dropdownPanel: DropdownPanelView} Read more: https://ckeditor.com/docs/ckeditor5/latest/support/error-codes.html#error-ui-dropdown-panel-focus-child-missing-focus