Skip to content

Releases: DevExpress/devextreme-quill

1.4.0

22 Sep 15:27
Compare
Choose a tag to compare

Added support for paragraphs in the table module.
The new table module is registered as tableModules/main.
The original table module is registered as tableModules/lite
The original module is used by default to maintain backward compatibility.

const TableModule = Quill.import('tableModules/main');

Quill.register('modules/table', TableModule, true);
new Quill(element, { modules: { table: true } });

1.3.1

03 Aug 08:41
Compare
Choose a tag to compare
  • Fix keyboard navigation for Embeds

1.1.5

03 Aug 08:32
Compare
Choose a tag to compare
  • Fix keyboard navigation for Embeds

1.3.0

14 Jul 14:13
Compare
Choose a tag to compare
  • Tables: Added thead support
  • Tables: Added initial rendering normalization

1.2.2

24 Jun 15:46
Compare
Choose a tag to compare

Fix plain text convertation

1.1.14

24 Jun 15:43
Compare
Choose a tag to compare

Fix plain text convertation

1.2.1

18 Jun 11:50
Compare
Choose a tag to compare

Added dimension attributors

1.1.2

08 Jun 17:44
Compare
Choose a tag to compare

Fix placeholder hiding for modern Android devices (T1001941)

1.1.1: Mark th and thead tags as acceptable values (#8)

02 Jun 07:01
65dcb0e
Compare
Choose a tag to compare

Tune rendering of tables with headers

1.1.0: Add multiline module (#7)

25 May 15:22
ce925cf
Compare
Choose a tag to compare
  • Added multiline module

To insert soft break use the Shift + Enter keyboard shortcut.
This functionality is experimental and is disabled by default.
To enable a module, add it to the module list when you initialize the component

new DevExpress.Quill('#editor', {
  modules: {
    multiline: true
  }
});