Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

i/6304: Add TextTransformation plugin to the build config #21

Merged
merged 1 commit into from
Mar 11, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,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 @@ -28,6 +28,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 InlineEditor extends InlineEditorBase {}

Expand All @@ -54,7 +55,8 @@ InlineEditor.builtinPlugins = [
Paragraph,
PasteFromOffice,
Table,
TableToolbar
TableToolbar,
TextTransformation
];

// Editor configuration.
Expand Down