8
0
Просмотр исходного кода

Internal: The ckeditor5-presets became ckeditor5-essentials. See ckeditor/ckeditor5-essentials#1.

Piotrek Koszuliński 8 лет назад
Родитель
Сommit
6f5b9f49c3
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      packages/ckeditor5-image/tests/manual/autohoist.js

+ 2 - 2
packages/ckeditor5-image/tests/manual/autohoist.js

@@ -6,7 +6,7 @@
 /* global document, console, window */
 
 import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
-import EssentialsPreset from '@ckeditor/ckeditor5-presets/src/essentials';
+import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials';
 import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
 import Heading from '@ckeditor/ckeditor5-heading/src/heading';
 import Image from '../../src/image';
@@ -20,7 +20,7 @@ import List from '@ckeditor/ckeditor5-list/src/list';
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {
 		plugins: [
-			EssentialsPreset,
+			Essentials,
 			Paragraph, Heading, Image, ImageToolbar,
 			ImageCaption, ImageStyle, Bold, Italic, Heading, List
 		],