@ckeditor/ckeditor5-typing
Advanced tools
Comparing version 32.0.0 to 33.0.0
{ | ||
"name": "@ckeditor/ckeditor5-typing", | ||
"version": "32.0.0", | ||
"version": "33.0.0", | ||
"description": "Typing feature for CKEditor 5.", | ||
@@ -15,20 +15,20 @@ "keywords": [ | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-core": "^32.0.0", | ||
"@ckeditor/ckeditor5-engine": "^32.0.0", | ||
"@ckeditor/ckeditor5-utils": "^32.0.0", | ||
"@ckeditor/ckeditor5-core": "^33.0.0", | ||
"@ckeditor/ckeditor5-engine": "^33.0.0", | ||
"@ckeditor/ckeditor5-utils": "^33.0.0", | ||
"lodash-es": "^4.17.15" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-basic-styles": "^32.0.0", | ||
"@ckeditor/ckeditor5-block-quote": "^32.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^32.0.0", | ||
"@ckeditor/ckeditor5-enter": "^32.0.0", | ||
"@ckeditor/ckeditor5-essentials": "^32.0.0", | ||
"@ckeditor/ckeditor5-heading": "^32.0.0", | ||
"@ckeditor/ckeditor5-image": "^32.0.0", | ||
"@ckeditor/ckeditor5-link": "^32.0.0", | ||
"@ckeditor/ckeditor5-list": "^32.0.0", | ||
"@ckeditor/ckeditor5-paragraph": "^32.0.0", | ||
"@ckeditor/ckeditor5-undo": "^32.0.0", | ||
"@ckeditor/ckeditor5-code-block": "^32.0.0" | ||
"@ckeditor/ckeditor5-basic-styles": "^33.0.0", | ||
"@ckeditor/ckeditor5-block-quote": "^33.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^33.0.0", | ||
"@ckeditor/ckeditor5-enter": "^33.0.0", | ||
"@ckeditor/ckeditor5-essentials": "^33.0.0", | ||
"@ckeditor/ckeditor5-heading": "^33.0.0", | ||
"@ckeditor/ckeditor5-image": "^33.0.0", | ||
"@ckeditor/ckeditor5-link": "^33.0.0", | ||
"@ckeditor/ckeditor5-list": "^33.0.0", | ||
"@ckeditor/ckeditor5-paragraph": "^33.0.0", | ||
"@ckeditor/ckeditor5-undo": "^33.0.0", | ||
"@ckeditor/ckeditor5-code-block": "^33.0.0" | ||
}, | ||
@@ -35,0 +35,0 @@ "engines": { |
@@ -66,3 +66,4 @@ /** | ||
* @param {Object} [options] The command options. | ||
* @param {'character'} [options.unit='character'] See {@link module:engine/model/utils/modifyselection~modifySelection}'s options. | ||
* @param {'character'|'codePoint'|'word'} [options.unit='character'] | ||
* See {@link module:engine/model/utils/modifyselection~modifySelection}'s options. | ||
* @param {Number} [options.sequence=1] A number describing which subsequent delete event it is without the key being released. | ||
@@ -92,3 +93,7 @@ * See the {@link module:engine/view/document~Document#event:delete} event data. | ||
if ( selection.isCollapsed ) { | ||
model.modifySelection( selection, { direction: this.direction, unit: options.unit } ); | ||
model.modifySelection( selection, { | ||
direction: this.direction, | ||
unit: options.unit, | ||
treatEmojiAsSingleUnit: true | ||
} ); | ||
} | ||
@@ -95,0 +100,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
101683
2489
+ Added@ckeditor/ckeditor5-core@33.0.0(transitive)
+ Added@ckeditor/ckeditor5-engine@33.0.0(transitive)
+ Added@ckeditor/ckeditor5-ui@33.0.0(transitive)
+ Added@ckeditor/ckeditor5-utils@33.0.0(transitive)
- Removed@ckeditor/ckeditor5-core@32.0.0(transitive)
- Removed@ckeditor/ckeditor5-engine@32.0.0(transitive)
- Removed@ckeditor/ckeditor5-ui@32.0.0(transitive)
- Removed@ckeditor/ckeditor5-utils@32.0.0(transitive)