Alex Krolick
Alex Krolick
We'd just need to update the Quill dependency range once merged upstream
cc @jhchen (Quill maintainer) - http://quilljs.com/docs/api/#selection-change - https://github.com/quilljs/quill/issues/1680 Detecting null `selection-change` events is the recommended way to detect focus changes in Quill and this is the heuristic React-Quill uses to...
You have to enable the Quill formatters you need: https://quilljs.com/docs/formats/ You can register custom formatters using this API: https://quilljs.com/docs/api/#register - https://quilljs.com/docs/modules/ - https://github.com/zenoamaro/react-quill#custom-formats - https://www.npmjs.com/search?q=quill%20embed&page=1&ranking=optimal
The recommended approach to convert between editors is to use HTML as the intermediate format, unless you can figure out how to translate between the two JSON schemas.
This is probably due to the initialization using the paste method from Quill. Possibly a dupe of #323.
PR welcome to add a typecheck
We'll support it when it's stable; right now it is in beta
This might have to do with how focus events are handled
@markerikson we are using tabs in the Testing Library query docs on v1 (syntax below), but the V2 mdx option seems good too. - https://testing-library.com/docs/dom-testing-library/api-queries#bytitle - https://raw.githubusercontent.com/testing-library/testing-library-docs/master/docs/dom-testing-library/api-queries.md ```js import {...
> A toHaveRole matcher that uses a similar implementation to @testing-library's described here Yes, it seems like every query should have a corresponding jest-dom method off topic @connormeredith I think...