Jelajahi Sumber

Fix JSDoc links after moving utility methods.

Maciej Gołaszewski 5 tahun lalu
induk
melakukan
d74e4e41c9

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

@@ -69,7 +69,7 @@ export default class TableCellProperties extends Plugin {
  * allowing users to pick colors in a more convenient way.
  * allowing users to pick colors in a more convenient way.
  *
  *
  * The default color palettes for the cell background and the cell border are the same
  * The default color palettes for the cell background and the cell border are the same
- * ({@link module:table/ui/utils~defaultColors check out their content}).
+ * ({@link module:table/utils/ui/table-properties~defaultColors check out their content}).
  *
  *
  * Both color palette configurations must follow the
  * Both color palette configurations must follow the
  * {@link module:table/table~TableColorConfig table color configuration format}.
  * {@link module:table/table~TableColorConfig table color configuration format}.

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

@@ -70,7 +70,7 @@ export default class TableProperties extends Plugin {
  * allowing users to pick colors in a more convenient way.
  * allowing users to pick colors in a more convenient way.
  *
  *
  * The default color palettes for the table background and the table border are the same
  * The default color palettes for the table background and the table border are the same
- * ({@link module:table/ui/utils~defaultColors check out their content}).
+ * ({@link module:table/utils/ui/table-properties~defaultColors check out their content}).
  *
  *
  * Both color palette configurations must follow the
  * Both color palette configurations must follow the
  * {@link module:table/table~TableColorConfig table color configuration format}.
  * {@link module:table/table~TableColorConfig table color configuration format}.

+ 4 - 4
packages/ckeditor5-table/src/utils/selection.js

@@ -15,7 +15,7 @@ import { findAncestor } from './common';
  * within the provided model selection's ranges.
  * within the provided model selection's ranges.
  *
  *
  * To obtain the cells selected from the inside, use
  * To obtain the cells selected from the inside, use
- * {@link module:table/utils~getTableCellsContainingSelection}.
+ * {@link module:table/utils/selection~getTableCellsContainingSelection}.
  *
  *
  * @param {module:engine/model/selection~Selection} selection
  * @param {module:engine/model/selection~Selection} selection
  * @returns {Array.<module:engine/model/element~Element>}
  * @returns {Array.<module:engine/model/element~Element>}
@@ -39,7 +39,7 @@ export function getSelectedTableCells( selection ) {
  * {@link module:engine/model/range~Range#start} inside.
  * {@link module:engine/model/range~Range#start} inside.
  *
  *
  * To obtain the cells selected from the outside, use
  * To obtain the cells selected from the outside, use
- * {@link module:table/utils~getSelectedTableCells}.
+ * {@link module:table/utils/selection~getSelectedTableCells}.
  *
  *
  * @param {module:engine/model/selection~Selection} selection
  * @param {module:engine/model/selection~Selection} selection
  * @returns {Array.<module:engine/model/element~Element>}
  * @returns {Array.<module:engine/model/element~Element>}
@@ -63,8 +63,8 @@ export function getTableCellsContainingSelection( selection ) {
  * by selection ranges or host selection range
  * by selection ranges or host selection range
  * {@link module:engine/model/range~Range#start start positions} inside them.
  * {@link module:engine/model/range~Range#start start positions} inside them.
  *
  *
- * Combines {@link module:table/utils~getTableCellsContainingSelection} and
- * {@link module:table/utils~getSelectedTableCells}.
+ * Combines {@link module:table/utils/selection~getTableCellsContainingSelection} and
+ * {@link module:table/utils/selection~getSelectedTableCells}.
  *
  *
  * @param {module:engine/model/selection~Selection} selection
  * @param {module:engine/model/selection~Selection} selection
  * @returns {Array.<module:engine/model/element~Element>}
  * @returns {Array.<module:engine/model/element~Element>}