@ckeditor/ckeditor5-page-break
Advanced tools
Comparing version 27.0.0 to 27.1.0
{ | ||
"name": "@ckeditor/ckeditor5-page-break", | ||
"version": "27.0.0", | ||
"version": "27.1.0", | ||
"description": "Page break feature for CKEditor 5.", | ||
@@ -14,16 +14,16 @@ "keywords": [ | ||
"dependencies": { | ||
"ckeditor5": "^27.0.0" | ||
"ckeditor5": "^27.1.0" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-cloud-services": "^27.0.0", | ||
"@ckeditor/ckeditor5-core": "^27.0.0", | ||
"@ckeditor/ckeditor5-cloud-services": "^27.1.0", | ||
"@ckeditor/ckeditor5-core": "^27.1.0", | ||
"@ckeditor/ckeditor5-dev-utils": "^24.0.0", | ||
"@ckeditor/ckeditor5-easy-image": "^27.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^27.0.0", | ||
"@ckeditor/ckeditor5-engine": "^27.0.0", | ||
"@ckeditor/ckeditor5-image": "^27.0.0", | ||
"@ckeditor/ckeditor5-paragraph": "^27.0.0", | ||
"@ckeditor/ckeditor5-theme-lark": "^27.0.0", | ||
"@ckeditor/ckeditor5-ui": "^27.0.0", | ||
"@ckeditor/ckeditor5-widget": "^27.0.0", | ||
"@ckeditor/ckeditor5-easy-image": "^27.1.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^27.1.0", | ||
"@ckeditor/ckeditor5-engine": "^27.1.0", | ||
"@ckeditor/ckeditor5-image": "^27.1.0", | ||
"@ckeditor/ckeditor5-paragraph": "^27.1.0", | ||
"@ckeditor/ckeditor5-theme-lark": "^27.1.0", | ||
"@ckeditor/ckeditor5-ui": "^27.1.0", | ||
"@ckeditor/ckeditor5-widget": "^27.1.0", | ||
"webpack": "^4.43.0", | ||
@@ -30,0 +30,0 @@ "webpack-cli": "^3.3.11" |
@@ -102,12 +102,6 @@ /** | ||
// The child must be the "span" element that is not displayed and has a space inside. | ||
if ( !viewSpan.is( 'element', 'span' ) || viewSpan.getStyle( 'display' ) != 'none' || viewSpan.childCount != 1 ) { | ||
// The child must be the "span" element that is not displayed. | ||
if ( !viewSpan.is( 'element', 'span' ) || viewSpan.getStyle( 'display' ) != 'none' ) { | ||
return; | ||
} | ||
const text = viewSpan.getChild( 0 ); | ||
if ( !text.is( '$text' ) || text.data !== ' ' ) { | ||
return; | ||
} | ||
} else if ( element.childCount > 1 ) { | ||
@@ -114,0 +108,0 @@ return; |
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
82292
347
Updatedckeditor5@^27.1.0