|
@@ -5,18 +5,18 @@
|
|
|
|
|
|
|
|
import InlineEditorBase from '@ckeditor/ckeditor5-editor-inline/src/inlineeditor';
|
|
import InlineEditorBase from '@ckeditor/ckeditor5-editor-inline/src/inlineeditor';
|
|
|
import EssentialsPlugin from '@ckeditor/ckeditor5-essentials/src/essentials';
|
|
import EssentialsPlugin from '@ckeditor/ckeditor5-essentials/src/essentials';
|
|
|
-import UploadadapterPlugin from '@ckeditor/ckeditor5-adapter-ckfinder/src/uploadadapter';
|
|
|
|
|
|
|
+import UploadAdapterPlugin from '@ckeditor/ckeditor5-adapter-ckfinder/src/uploadadapter';
|
|
|
import AutoformatPlugin from '@ckeditor/ckeditor5-autoformat/src/autoformat';
|
|
import AutoformatPlugin from '@ckeditor/ckeditor5-autoformat/src/autoformat';
|
|
|
import BoldPlugin from '@ckeditor/ckeditor5-basic-styles/src/bold';
|
|
import BoldPlugin from '@ckeditor/ckeditor5-basic-styles/src/bold';
|
|
|
import ItalicPlugin from '@ckeditor/ckeditor5-basic-styles/src/italic';
|
|
import ItalicPlugin from '@ckeditor/ckeditor5-basic-styles/src/italic';
|
|
|
-import BlockquotePlugin from '@ckeditor/ckeditor5-block-quote/src/blockquote';
|
|
|
|
|
-import EasyimagePlugin from '@ckeditor/ckeditor5-easy-image/src/easyimage';
|
|
|
|
|
|
|
+import BlockQuotePlugin from '@ckeditor/ckeditor5-block-quote/src/blockquote';
|
|
|
|
|
+import EasyImagePlugin from '@ckeditor/ckeditor5-easy-image/src/easyimage';
|
|
|
import HeadingPlugin from '@ckeditor/ckeditor5-heading/src/heading';
|
|
import HeadingPlugin from '@ckeditor/ckeditor5-heading/src/heading';
|
|
|
import ImagePlugin from '@ckeditor/ckeditor5-image/src/image';
|
|
import ImagePlugin from '@ckeditor/ckeditor5-image/src/image';
|
|
|
-import ImagecaptionPlugin from '@ckeditor/ckeditor5-image/src/imagecaption';
|
|
|
|
|
-import ImagestylePlugin from '@ckeditor/ckeditor5-image/src/imagestyle';
|
|
|
|
|
-import ImagetoolbarPlugin from '@ckeditor/ckeditor5-image/src/imagetoolbar';
|
|
|
|
|
-import ImageuploadPlugin from '@ckeditor/ckeditor5-image/src/imageupload';
|
|
|
|
|
|
|
+import ImageCaptionPlugin from '@ckeditor/ckeditor5-image/src/imagecaption';
|
|
|
|
|
+import ImageStylePlugin from '@ckeditor/ckeditor5-image/src/imagestyle';
|
|
|
|
|
+import ImageToolbarPlugin from '@ckeditor/ckeditor5-image/src/imagetoolbar';
|
|
|
|
|
+import ImageUploadPlugin from '@ckeditor/ckeditor5-image/src/imageupload';
|
|
|
import LinkPlugin from '@ckeditor/ckeditor5-link/src/link';
|
|
import LinkPlugin from '@ckeditor/ckeditor5-link/src/link';
|
|
|
import ListPlugin from '@ckeditor/ckeditor5-list/src/list';
|
|
import ListPlugin from '@ckeditor/ckeditor5-list/src/list';
|
|
|
import ParagraphPlugin from '@ckeditor/ckeditor5-paragraph/src/paragraph';
|
|
import ParagraphPlugin from '@ckeditor/ckeditor5-paragraph/src/paragraph';
|
|
@@ -25,18 +25,18 @@ export default class InlineEditor extends InlineEditorBase {}
|
|
|
|
|
|
|
|
InlineEditor.builtinPlugins = [
|
|
InlineEditor.builtinPlugins = [
|
|
|
EssentialsPlugin,
|
|
EssentialsPlugin,
|
|
|
- UploadadapterPlugin,
|
|
|
|
|
|
|
+ UploadAdapterPlugin,
|
|
|
AutoformatPlugin,
|
|
AutoformatPlugin,
|
|
|
BoldPlugin,
|
|
BoldPlugin,
|
|
|
ItalicPlugin,
|
|
ItalicPlugin,
|
|
|
- BlockquotePlugin,
|
|
|
|
|
- EasyimagePlugin,
|
|
|
|
|
|
|
+ BlockQuotePlugin,
|
|
|
|
|
+ EasyImagePlugin,
|
|
|
HeadingPlugin,
|
|
HeadingPlugin,
|
|
|
ImagePlugin,
|
|
ImagePlugin,
|
|
|
- ImagecaptionPlugin,
|
|
|
|
|
- ImagestylePlugin,
|
|
|
|
|
- ImagetoolbarPlugin,
|
|
|
|
|
- ImageuploadPlugin,
|
|
|
|
|
|
|
+ ImageCaptionPlugin,
|
|
|
|
|
+ ImageStylePlugin,
|
|
|
|
|
+ ImageToolbarPlugin,
|
|
|
|
|
+ ImageUploadPlugin,
|
|
|
LinkPlugin,
|
|
LinkPlugin,
|
|
|
ListPlugin,
|
|
ListPlugin,
|
|
|
ParagraphPlugin
|
|
ParagraphPlugin
|