Skip to content

Commit

Permalink
Merge pull request ckeditor#34 from ckeditor/i/6304
Browse files Browse the repository at this point in the history
Feature: Added the [Automatic text transformation](https://ckeditor.com/docs/ckeditor5/latest/features/text-transformation.html) feature to the build. See ckeditor/ckeditor5#6304.
  • Loading branch information
oleq committed Mar 11, 2020
2 parents 25b4461 + 0b9818b commit 21ca070
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"@ckeditor/ckeditor5-paragraph": "^17.0.0",
"@ckeditor/ckeditor5-paste-from-office": "^17.0.0",
"@ckeditor/ckeditor5-table": "^17.0.0",
"@ckeditor/ckeditor5-typing": "^17.0.0",
"@ckeditor/ckeditor5-theme-lark": "^17.0.0",
"eslint": "^5.5.0",
"eslint-config-ckeditor5": "^2.0.0",
Expand Down
4 changes: 3 additions & 1 deletion src/ckeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
import PasteFromOffice from '@ckeditor/ckeditor5-paste-from-office/src/pastefromoffice';
import Table from '@ckeditor/ckeditor5-table/src/table';
import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar';
import TextTransformation from '@ckeditor/ckeditor5-typing/src/texttransformation';

export default class DecoupledEditor extends DecoupledEditorBase {}

Expand Down Expand Up @@ -70,7 +71,8 @@ DecoupledEditor.builtinPlugins = [
Paragraph,
PasteFromOffice,
Table,
TableToolbar
TableToolbar,
TextTransformation
];

// Editor configuration.
Expand Down

0 comments on commit 21ca070

Please sign in to comment.