Sfoglia il codice sorgente

Merge branch 'master' into t/ckeditor5-editor-classic/41

Szymon Kupś 8 anni fa
parent
commit
c5f42ae22a

+ 1 - 3
packages/ckeditor5-typing/.gitignore

@@ -1,7 +1,5 @@
 # These files will be ignored by Git and by our linting tools:
 #	gulp lint
 #	gulp lint-staged
-#
-# Be sure to append /** to folders to have everything inside them ignored.
 
-node_modules/**
+node_modules/

+ 1 - 1
packages/ckeditor5-typing/package.json

@@ -9,7 +9,7 @@
     "@ckeditor/ckeditor5-utils": "^0.9.1"
   },
   "devDependencies": {
-    "@ckeditor/ckeditor5-dev-lint": "^3.0.0",
+    "@ckeditor/ckeditor5-dev-lint": "^3.1.0",
     "@ckeditor/ckeditor5-basic-styles": "^0.8.1",
     "@ckeditor/ckeditor5-editor-classic": "^0.7.3",
     "@ckeditor/ckeditor5-enter": "^0.9.1",

+ 1 - 1
packages/ckeditor5-typing/src/deletecommand.js

@@ -16,7 +16,7 @@ import count from '@ckeditor/ckeditor5-utils/src/count';
  * The delete command. Used by the {@link module:typing/delete~Delete delete feature} to handle the <kbd>Delete</kbd> and
  * <kbd>Backspace</kbd> keys.
  *
- * @extends core.command.Command
+ * @extends module:core/command~Command
  */
 export default class DeleteCommand extends Command {
 	/**

+ 3 - 2
packages/ckeditor5-typing/src/input.js

@@ -86,7 +86,8 @@ export default class Input extends Plugin {
 	 * Handles DOM mutations.
 	 *
 	 * @private
-	 * @param {Array.<module:engine/view/document~MutatatedText|module:engine/view/document~MutatatedChildren>} mutations
+	 * @param {Array.<module:engine/view/observer/mutationobserver~MutatedText|
+	 * module:engine/view/observer/mutationobserver~MutatedChildren>} mutations
 	 * @param {module:engine/view/selection~Selection|null} viewSelection
 	 */
 	_handleMutations( mutations, viewSelection ) {
@@ -127,7 +128,7 @@ class MutationHandler {
 	 * Handles given mutations.
 	 *
 	 * @param {Array.<module:engine/view/observer/mutationobserver~MutatedText|
-	 * module:engine/view/observer/mutationobserver~MutatatedChildren>} mutations
+	 * module:engine/view/observer/mutationobserver~MutatedChildren>} mutations
 	 * @param {module:engine/view/selection~Selection|null} viewSelection
 	 */
 	handle( mutations, viewSelection ) {