8
0
Aleksander Nowodzinski 6 лет назад
Родитель
Сommit
e20dfb1ed2

+ 1 - 1
packages/ckeditor5-table/src/tablecellproperties.js

@@ -8,7 +8,7 @@
  */
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
-import TableCellPropertiesUI from './tablecellpropertiesui';
+import TableCellPropertiesUI from './tablecellproperties/tablecellpropertiesui';
 import TableCellPropertiesEditing from './tablecellproperties/tablecellpropertiesediting';
 
 /**

+ 4 - 4
packages/ckeditor5-table/src/tablecellpropertiesui.js → packages/ckeditor5-table/src/tablecellproperties/tablecellpropertiesui.js

@@ -9,13 +9,13 @@
 
 import Plugin from '@ckeditor/ckeditor5-core/src/plugin';
 import ButtonView from '@ckeditor/ckeditor5-ui/src/button/buttonview';
-import { getTableWidgetAncestor } from './utils';
+import { getTableWidgetAncestor } from '../utils';
 import clickOutsideHandler from '@ckeditor/ckeditor5-ui/src/bindings/clickoutsidehandler';
 import ContextualBalloon from '@ckeditor/ckeditor5-ui/src/panel/balloon/contextualballoon';
 import TableCellPropertiesView from './ui/tablecellpropertiesview';
-import tableCellProperties from './../theme/icons/table-cell-properties.svg';
-import { repositionContextualBalloon, getBalloonCellPositionData } from './ui/utils';
-import { findAncestor } from './commands/utils';
+import tableCellProperties from './../../theme/icons/table-cell-properties.svg';
+import { repositionContextualBalloon, getBalloonCellPositionData } from '../ui/utils';
+import { findAncestor } from '../commands/utils';
 
 const DEFAULT_BORDER_STYLE = 'none';
 const DEFAULT_HORIZONTAL_ALIGNMENT = 'left';

+ 3 - 3
packages/ckeditor5-table/src/ui/tablecellpropertiesview.js → packages/ckeditor5-table/src/tablecellproperties/ui/tablecellpropertiesview.js

@@ -34,9 +34,9 @@ import alignTopIcon from '@ckeditor/ckeditor5-core/theme/icons/align-top.svg';
 import alignMiddleIcon from '@ckeditor/ckeditor5-core/theme/icons/align-middle.svg';
 import alignBottomIcon from '@ckeditor/ckeditor5-core/theme/icons/align-bottom.svg';
 
-import '../../theme/form.css';
-import '../../theme/tablecellproperties.css';
-import FormRowView from './formrowview';
+import '../../../theme/form.css';
+import '../../../theme/tablecellproperties.css';
+import FormRowView from '../../ui/formrowview';
 
 const ALIGNMENT_ICONS = {
 	left: alignLeftIcon,