Eduardo Ludi
Eduardo Ludi
I have solve this focus issue by handling element's focus with a local state and using `useEditable`'s `disable` option: ```jsx function EditableText({ as, text, onChange }) { const editorRef =...
This feature can help a lot to improve the editor. For example, I'm working with React and a custom renderer will allow to add the markup to edit **link tags...
I solved this in my custom [`editor.cursorDidChange`](http://bustle.github.io/mobiledoc-kit/demo/docs/Editor.html#cursorDidChange): ```js const { head, tail, isCollapsed } = editor.range if (!isCollapsed) { const selectedText = head.section.markers // - converts markers from `LinkedList` to...
Just a tip: There is a feature to up-vote issues in Github, on the top right corner of the original comment:  Voting results...
I'm facing this issue too: We integrating a rich text editor ([tiptap](https://tiptap.dev/)) as a Craf.js block. A Tiptap document has a `type` attribute in every node, causing this issue to...
I'm getting the same issue in my iOS 13 device. The errors says: ``` Vibration.vibrate was called with 0 arguments but expects 1 arguments. If you haven't changed this method...
Same error here, except I'm not using DaisyUI. Just started a new solid-start project with tailwindcss (using javascript). I added a `?`operator after assets in `node_modules/@solidjs/start/dist/server/StartServer.jsx`, line 57: ```js useAssets(()...