Releases: DevExpress/devextreme-quill
Releases · DevExpress/devextreme-quill
1.4.0
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
1.1.5
1.3.0
1.2.2
1.1.14
1.2.1
1.1.2
1.1.1: Mark th and thead tags as acceptable values (#8)
Tune rendering of tables with headers
1.1.0: Add multiline module (#7)
- 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
}
});