Alex Krolick

Results 158 comments of Alex Krolick
trafficstars

The examples linked in the README show how to use an expanding-height text box using CSS. You can also do fixed height the same way. `.ql-editor { height: 150px }`,...

Quill's `text-change` API distinguishes between programmatic and user-initiated changes, and React-Quill sends that information with the new HTML content in the onChange callback. Have you looked into the `source` parameter...

`Arguments[2]` would be `'user'` if the change was [user-initiated](https://quilljs.com/docs/api/#editor-change) [](https://quilljs.com/docs/api/#editor-change) > Finally, the onChange() method does not comply with the ReactJS event model where the method should have only one...

OK, if you do discover some unusual behavior related to onBlur, please file a bug. Thanks for reporting your concerns with the API. We do want to accommodate integrations with...

You need to use useMemo or useCallback to memoize the plugin function and object creations, if these plugins are _defined inline_ in a function component. The ReactQuill wrapper will rebuild...

Have you tried adding `matchVisual: false` to the configration?

https://github.com/quilljs/quill/blob/ee827ffb605ba491246f201d497ce0e7d9e193a0/docs/guides/upgrading-to-2-0.md#configuration It looks like it was removed in Quill 2. Note that ReactQuill installs v1 of Quill; Quill 2 is in beta.

@mtycholaz > Quill will keep adding an empty `` before my lists. I tried adding the `clipboard: { matchVisual: false }` into my config, but it didn't fix anything (maybe...

> Where should I add it? as a prop to component? @jithinktom to the clipboard plugin, passed as part of the modules prop.

Can you raise this upstream in Quill? We don't actually control very much of the DOM the editor outputs.