Explorar o código

Docs: Fixed API references.

Marek Lewandowski %!s(int64=6) %!d(string=hai) anos
pai
achega
bc84aba685

+ 3 - 3
packages/ckeditor5-special-characters/src/ui/specialcharactersselectview.js

@@ -9,7 +9,7 @@
 
 import View from '@ckeditor/ckeditor5-ui/src/view';
 import LabelView from '@ckeditor/ckeditor5-ui/src/label/labelview';
-import SelectView from '@ckeditor/ckeditor5-ui/src/selectview/selectview';
+import SelectView from '@ckeditor/ckeditor5-ui/src/select/selectview';
 import uid from '@ckeditor/ckeditor5-utils/src/uid';
 
 /**
@@ -22,7 +22,7 @@ export default class SpecialCharactersSelectView extends View {
 	 * @param {module:utils/locale~Locale} [locale] The localization services instance.
 	 * @param {Object} options
 	 * @param {String} options.labelText A label for the select element.
-	 * @param {Array.<module:ui/selectview/selectview~SelectViewOption>} options.selectOptions Options to chose in the select view.
+	 * @param {Array.<module:ui/select/selectview~SelectViewOption>} options.selectOptions Options to chose in the select view.
 	 */
 	constructor( locale, options ) {
 		super( locale );
@@ -39,7 +39,7 @@ export default class SpecialCharactersSelectView extends View {
 		/**
 		 * Select view for changing a category of special characters.
 		 *
-		 * @member {module:ui/selectview/selectview~SelectView}
+		 * @member {module:ui/select/selectview~SelectView}
 		 */
 		this.selectView = new SelectView( this.locale, options.selectOptions );
 		this.selectView.delegate( 'input' ).to( this );

+ 3 - 3
packages/ckeditor5-special-characters/src/ui/symbolgridview.js

@@ -8,13 +8,13 @@
  */
 
 import SymbolTileView from './symboltileview';
-import GridView from '@ckeditor/ckeditor5-ui/src/gridview';
+import GridView from '@ckeditor/ckeditor5-ui/src/grid/gridview';
 import '../../theme/components/symbolgrid/symbolgrid.css';
 
 /**
  * A grid of {@link module:special-characters/ui/symboltileview~symbolTileView symbol tiles}.
  *
- * @extends module:ui/grid~Grid
+ * @extends module:ui/grid~GridView
  */
 export default class SymbolGridView extends GridView {
 	/**
@@ -53,7 +53,7 @@ export default class SymbolGridView extends GridView {
 	 * Creates a new tile for the grid.
 	 *
 	 * @param {String} character A character that will be displayed on the button.
-	 * @param {String} title A label that descrbied the character.
+	 * @param {String} title A label that described the character.
 	 * @returns {module:special-characters/ui/symboltileview~SymbolTileView}
 	 */
 	createSymbolTile( character, title ) {