I'm working on creating a CKEditor 5 based Preact Custom component. I'm using a oj-text-area, as the base element to create my CKEditor Instance. I need to implement a focus mechanism for the editor instance.
Followed this documentation and used the focus method on the view.
editor.editing.view.focus();
The above code works fine for a div element, but not working for the oj-text-area component.