Quill Cursors Versions Save

A multi cursor module for Quill text editor.

v2.0.3

5 years ago
  • Fixes for editor with a fixed height container

v2.0.2

5 years ago
  • Include bundled JavaScript in npm release

v2.0.0

5 years ago
  • Move to TypeScript
  • Breaking API changes
    • setCursor removed in favour of using createCursor and moveCursor
    • CSS is now in-lined in JavaScript
    • change to configuration options
    • this module will now emit extra selection-change events on text-change
  • Add tests and Travis config
  • Update Webpack

v1.0.3

6 years ago

Remove engines configuration from package.json.

v1.0.2

6 years ago

Fixes #4.

v1.0.1

6 years ago

Slightly improves the logging of issues when a cursor can't be updated, replacing an overly generic console log for a warning.

v1.0.0

6 years ago

Notes

Export the module as a UMD module and removes the behaviour of registering itself on Quill on import. It will need to be registered manually from now on. Improves it's export as a UMD module and stops relying on global/window RangeFix and imports it instead.

This release has breaking changes from the previous. Check how to migrate below.

Breaking Changes

This module stopped automatically registering itself, so make sure you register this module manually before using Quill like so:

Quill.register('modules/cursors', QuillCursors);

var editor = new Quill('#editor-container', {
  modules: {
    cursors: true,
  ...
});