浏览代码

Match RestrictedEditingException* file names.

Maciej Gołaszewski 6 年之前
父节点
当前提交
6e30c6251f

+ 3 - 3
packages/ckeditor5-restricted-editing/src/restricteddocument.js

@@ -4,13 +4,13 @@
  */
 
 /**
- * @module restricted-editing/restricteddocument
+ * @module restricted-editing/restrictededitingexception
  */
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
 
-import RestrictedEditingExceptionEditing from './restricteddocumentediting';
-import RestrictedEditingExceptionUI from './restricteddocumentui';
+import RestrictedEditingExceptionEditing from './restrictededitingexceptionediting';
+import RestrictedEditingExceptionUI from './restrictededitingexceptionui';
 
 /**
  * @extends module:core/plugin~Plugin

+ 1 - 1
packages/ckeditor5-restricted-editing/src/restricteddocumentcommand.js

@@ -4,7 +4,7 @@
  */
 
 /**
- * @module restricted-editing/restricteddocumentcommand
+ * @module restricted-editing/restrictededitingexceptioncommand
  */
 
 import Command from '@ckeditor/ckeditor5-core/src/command';

+ 2 - 2
packages/ckeditor5-restricted-editing/src/restricteddocumentediting.js

@@ -4,11 +4,11 @@
  */
 
 /**
- * @module restricted-editing/restricteddocumentediting
+ * @module restricted-editing/restrictededitingexceptionediting
  */
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
-import RestrictedEditingExceptionCommand from './restricteddocumentcommand';
+import RestrictedEditingExceptionCommand from './restrictededitingexceptioncommand';
 
 /**
  * @extends module:core/plugin~Plugin

+ 1 - 1
packages/ckeditor5-restricted-editing/src/restricteddocumentui.js

@@ -4,7 +4,7 @@
  */
 
 /**
- * @module restricted-editing/restricteddocumentui
+ * @module restricted-editing/restrictededitingexceptionui
  */
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';

+ 1 - 1
packages/ckeditor5-restricted-editing/tests/manual/restricteddocument.js

@@ -9,7 +9,7 @@ import ClassicEditor from '@ckeditor/ckeditor5-editor-classic/src/classiceditor'
 import ArticlePluginSet from '@ckeditor/ckeditor5-core/tests/_utils/articlepluginset';
 import Table from '@ckeditor/ckeditor5-table/src/table';
 
-import RestrictedEditingException from '../../src/restricteddocument';
+import RestrictedEditingException from '../../src/restrictededitingexception';
 
 ClassicEditor
 	.create( document.querySelector( '#editor' ), {

+ 3 - 3
packages/ckeditor5-restricted-editing/tests/restricteddocument.js

@@ -8,9 +8,9 @@
 import testUtils from '@ckeditor/ckeditor5-core/tests/_utils/utils';
 import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictesteditor';
 
-import RestrictedEditingException from './../src/restricteddocument';
-import RestrictedEditingExceptionUI from './../src/restricteddocumentui';
-import RestrictedEditingExceptionEditing from './../src/restricteddocumentediting';
+import RestrictedEditingException from './../src/restrictededitingexception';
+import RestrictedEditingExceptionUI from './../src/restrictededitingexceptionui';
+import RestrictedEditingExceptionEditing from './../src/restrictededitingexceptionediting';
 
 describe( 'RestrictedEditingException', () => {
 	let editor, element;

+ 1 - 1
packages/ckeditor5-restricted-editing/tests/restricteddocumentcommand.js

@@ -6,7 +6,7 @@
 import ModelTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/modeltesteditor';
 import { setData, getData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 
-import RestrictedEditingExceptionCommand from '../src/restricteddocumentcommand';
+import RestrictedEditingExceptionCommand from '../src/restrictededitingexceptioncommand';
 
 describe( 'RestrictedEditingExceptionCommand', () => {
 	let editor, command, model;

+ 2 - 2
packages/ckeditor5-restricted-editing/tests/restricteddocumentediting.js

@@ -9,8 +9,8 @@ import { getData as getViewData } from '@ckeditor/ckeditor5-engine/src/dev-utils
 import { getData as getModelData, setData as setModelData } from '@ckeditor/ckeditor5-engine/src/dev-utils/model';
 import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
 
-import RestrictedEditingExceptionEditing from '../src/restricteddocumentediting';
-import RestrictedEditingExceptionCommand from '../src/restricteddocumentcommand';
+import RestrictedEditingExceptionEditing from '../src/restrictededitingexceptionediting';
+import RestrictedEditingExceptionCommand from '../src/restrictededitingexceptioncommand';
 
 describe( 'RestrictedEditingExceptionEditing', () => {
 	let editor, model;

+ 2 - 2
packages/ckeditor5-restricted-editing/tests/restricteddocumentui.js

@@ -10,8 +10,8 @@ import ClassicTestEditor from '@ckeditor/ckeditor5-core/tests/_utils/classictest
 import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
 import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
 
-import RestrictedEditingExceptionUI from '../src/restricteddocumentui';
-import RestrictedEditingException from '../src/restricteddocument';
+import RestrictedEditingExceptionUI from '../src/restrictededitingexceptionui';
+import RestrictedEditingException from '../src/restrictededitingexception';
 
 describe( 'RestrictedEditingExceptionUI', () => {
 	let editor, buttonView;