Socket
Socket
Sign inDemoInstall

@ckeditor/ckeditor5-engine

Package Overview
Dependencies
Maintainers
1
Versions
584
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ckeditor/ckeditor5-engine - npm Package Compare versions

Comparing version 34.1.0 to 34.2.0

44

package.json
{
"name": "@ckeditor/ckeditor5-engine",
"version": "34.1.0",
"version": "34.2.0",
"description": "The editing engine of CKEditor 5 – the best browser-based rich text editor.",

@@ -26,26 +26,26 @@ "keywords": [

"dependencies": {
"@ckeditor/ckeditor5-utils": "^34.1.0",
"@ckeditor/ckeditor5-utils": "^34.2.0",
"lodash-es": "^4.17.15"
},
"devDependencies": {
"@ckeditor/ckeditor5-basic-styles": "^34.1.0",
"@ckeditor/ckeditor5-block-quote": "^34.1.0",
"@ckeditor/ckeditor5-clipboard": "^34.1.0",
"@ckeditor/ckeditor5-cloud-services": "^34.1.0",
"@ckeditor/ckeditor5-core": "^34.1.0",
"@ckeditor/ckeditor5-editor-classic": "^34.1.0",
"@ckeditor/ckeditor5-enter": "^34.1.0",
"@ckeditor/ckeditor5-essentials": "^34.1.0",
"@ckeditor/ckeditor5-heading": "^34.1.0",
"@ckeditor/ckeditor5-image": "^34.1.0",
"@ckeditor/ckeditor5-link": "^34.1.0",
"@ckeditor/ckeditor5-list": "^34.1.0",
"@ckeditor/ckeditor5-mention": "^34.1.0",
"@ckeditor/ckeditor5-paragraph": "^34.1.0",
"@ckeditor/ckeditor5-table": "^34.1.0",
"@ckeditor/ckeditor5-theme-lark": "^34.1.0",
"@ckeditor/ckeditor5-typing": "^34.1.0",
"@ckeditor/ckeditor5-ui": "^34.1.0",
"@ckeditor/ckeditor5-undo": "^34.1.0",
"@ckeditor/ckeditor5-widget": "^34.1.0",
"@ckeditor/ckeditor5-basic-styles": "^34.2.0",
"@ckeditor/ckeditor5-block-quote": "^34.2.0",
"@ckeditor/ckeditor5-clipboard": "^34.2.0",
"@ckeditor/ckeditor5-cloud-services": "^34.2.0",
"@ckeditor/ckeditor5-core": "^34.2.0",
"@ckeditor/ckeditor5-editor-classic": "^34.2.0",
"@ckeditor/ckeditor5-enter": "^34.2.0",
"@ckeditor/ckeditor5-essentials": "^34.2.0",
"@ckeditor/ckeditor5-heading": "^34.2.0",
"@ckeditor/ckeditor5-image": "^34.2.0",
"@ckeditor/ckeditor5-link": "^34.2.0",
"@ckeditor/ckeditor5-list": "^34.2.0",
"@ckeditor/ckeditor5-mention": "^34.2.0",
"@ckeditor/ckeditor5-paragraph": "^34.2.0",
"@ckeditor/ckeditor5-table": "^34.2.0",
"@ckeditor/ckeditor5-theme-lark": "^34.2.0",
"@ckeditor/ckeditor5-typing": "^34.2.0",
"@ckeditor/ckeditor5-ui": "^34.2.0",
"@ckeditor/ckeditor5-undo": "^34.2.0",
"@ckeditor/ckeditor5-widget": "^34.2.0",
"webpack": "^5.58.1",

@@ -52,0 +52,0 @@ "webpack-cli": "^4.9.0"

@@ -468,2 +468,7 @@ /**

// Do not auto-paragraph whitespaces.
if ( data.viewItem.data.trim().length == 0 ) {
return;
}
position = wrapInParagraph( position, writer );

@@ -470,0 +475,0 @@ }

@@ -611,2 +611,5 @@ /**

// Clone unsafe attributes list.
cloned._unsafeAttributesToRender = this._unsafeAttributesToRender;
return cloned;

@@ -613,0 +616,0 @@ }

@@ -59,3 +59,3 @@ /**

span.dataset.ckeFiller = true;
span.innerHTML = '\u00A0';
span.innerText = '\u00A0';

@@ -62,0 +62,0 @@ return span;

@@ -237,2 +237,6 @@ /**

inlineFillerPosition = this.domConverter.domPositionToView( this._inlineFiller );
if ( inlineFillerPosition.parent.is( '$text' ) ) {
inlineFillerPosition = ViewPosition._createBefore( inlineFillerPosition.parent );
}
}

@@ -239,0 +243,0 @@

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc