You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ATM there's no way to show or hide ContextualToolbar when the seleciton is collapsed. To implement a decent keystroke support in editor-balloon-toolbar, ContextualToolbar must get a public show/hide API.
The API must be independent of editingView.isFocused and editingView.selection.isCollapsed , which means the current behavior of the toolbar will be moved to _selectionChangeDebounced event listener.
Additionally, enableToolbarKeyboardFocus() helper must get beforeShow and afterShow options to make sure the toolbar is shown and hidden on Alt+10 and Esc.
The text was updated successfully, but these errors were encountered:
Without #5355, there's no way to write proper enableToolbarKeyboardFocus() tests because the content of beforeEach is asynchronous at this moment and the EmitterMixin does not support async on() events.
#It's a follow–up of https://github.com/ckeditor/ckeditor5-editor-balloon-toolbar/issues/3.
ATM there's no way to show or hide
ContextualToolbar
when the seleciton is collapsed. To implement a decent keystroke support in editor-balloon-toolbar,ContextualToolbar
must get a public show/hide API.The API must be independent of
editingView.isFocused
andeditingView.selection.isCollapsed
, which means the current behavior of the toolbar will be moved to_selectionChangeDebounced
event listener.Additionally,
enableToolbarKeyboardFocus()
helper must getbeforeShow
andafterShow
options to make sure the toolbar is shown and hidden on Alt+10 and Esc.The text was updated successfully, but these errors were encountered: