Browse Source

Move Indent* plugins to indent/Indent.

Maciej Gołaszewski 6 years ago
parent
commit
ce7d54dc62

+ 1 - 1
packages/ckeditor5-indent/src/indentblock.js

@@ -18,7 +18,7 @@ import IndentUsingClasses from './indentcommandbehavior/indentusingclasses';
  *
  * It registers the `'indentBlock'` and `'outdentBlock'` commands.
  *
- * If the plugin {@link module:core/indent~Indent} is defined it also attaches the `'indentBlock'` and `'outdentBlock'` commands to
+ * If the plugin {@link module:core/indent/indent~Indent} is defined it also attaches the `'indentBlock'` and `'outdentBlock'` commands to
  * `'indent'` and `'outdent'` commands.
  *
  * @extends module:core/plugin~Plugin

+ 1 - 1
packages/ckeditor5-indent/tests/indentblock-integration.js

@@ -7,7 +7,7 @@ import VirtualTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/virtualtest
 import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
 import { getData as getViewData } from '@ckeditor/ckeditor5-engine/src/dev-utils/view';
 import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
-import IndentEditing from '@ckeditor/ckeditor5-core/src/indentediting';
+import IndentEditing from '@ckeditor/ckeditor5-core/src/indent/indentediting';
 import HeadingEditing from '@ckeditor/ckeditor5-heading/src/headingediting';
 
 import IndentBlock from '../src/indentblock';

+ 1 - 1
packages/ckeditor5-indent/tests/indentblock.js

@@ -8,7 +8,7 @@ import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
 import { getData as getViewData } from '@ckeditor/ckeditor5-engine/src/dev-utils/view';
 import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
 import HeadingEditing from '@ckeditor/ckeditor5-heading/src/headingediting';
-import IndentEditing from '@ckeditor/ckeditor5-core/src/indentediting';
+import IndentEditing from '@ckeditor/ckeditor5-core/src/indent/indentediting';
 import { getCode } from '@ckeditor/ckeditor5-utils/src/keyboard';
 
 import IndentBlock from '../src/indentblock';