@ckeditor/ckeditor5-paste-from-office
Advanced tools
Comparing version 24.0.0 to 25.0.0
@@ -5,3 +5,3 @@ Software License Agreement | ||
**CKEditor 5 Paste from Office Feature** – https://github.com/ckeditor/ckeditor5-paste-from-office <br> | ||
Copyright (c) 2003-2020, [CKSource](http://cksource.com) Frederico Knabben. All rights reserved. | ||
Copyright (c) 2003-2021, [CKSource](http://cksource.com) Frederico Knabben. All rights reserved. | ||
@@ -8,0 +8,0 @@ Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). |
{ | ||
"name": "@ckeditor/ckeditor5-paste-from-office", | ||
"version": "24.0.0", | ||
"version": "25.0.0", | ||
"description": "Paste from Office feature for CKEditor 5.", | ||
@@ -13,21 +13,21 @@ "keywords": [ | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-clipboard": "^24.0.0", | ||
"@ckeditor/ckeditor5-core": "^24.0.0", | ||
"@ckeditor/ckeditor5-engine": "^24.0.0" | ||
"@ckeditor/ckeditor5-clipboard": "^25.0.0", | ||
"@ckeditor/ckeditor5-core": "^25.0.0", | ||
"@ckeditor/ckeditor5-engine": "^25.0.0" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-basic-styles": "^24.0.0", | ||
"@ckeditor/ckeditor5-cloud-services": "^24.0.0", | ||
"@ckeditor/ckeditor5-easy-image": "^24.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^24.0.0", | ||
"@ckeditor/ckeditor5-enter": "^24.0.0", | ||
"@ckeditor/ckeditor5-font": "^24.0.0", | ||
"@ckeditor/ckeditor5-heading": "^24.0.0", | ||
"@ckeditor/ckeditor5-image": "^24.0.0", | ||
"@ckeditor/ckeditor5-link": "^24.0.0", | ||
"@ckeditor/ckeditor5-list": "^24.0.0", | ||
"@ckeditor/ckeditor5-paragraph": "^24.0.0", | ||
"@ckeditor/ckeditor5-page-break": "^24.0.0", | ||
"@ckeditor/ckeditor5-table": "^24.0.0", | ||
"@ckeditor/ckeditor5-utils": "^24.0.0" | ||
"@ckeditor/ckeditor5-basic-styles": "^25.0.0", | ||
"@ckeditor/ckeditor5-cloud-services": "^25.0.0", | ||
"@ckeditor/ckeditor5-easy-image": "^25.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^25.0.0", | ||
"@ckeditor/ckeditor5-enter": "^25.0.0", | ||
"@ckeditor/ckeditor5-font": "^25.0.0", | ||
"@ckeditor/ckeditor5-heading": "^25.0.0", | ||
"@ckeditor/ckeditor5-image": "^25.0.0", | ||
"@ckeditor/ckeditor5-link": "^25.0.0", | ||
"@ckeditor/ckeditor5-list": "^25.0.0", | ||
"@ckeditor/ckeditor5-paragraph": "^25.0.0", | ||
"@ckeditor/ckeditor5-page-break": "^25.0.0", | ||
"@ckeditor/ckeditor5-table": "^25.0.0", | ||
"@ckeditor/ckeditor5-utils": "^25.0.0" | ||
}, | ||
@@ -34,0 +34,0 @@ "engines": { |
/** | ||
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. | ||
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
@@ -4,0 +4,0 @@ */ |
/** | ||
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. | ||
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
@@ -143,3 +143,3 @@ */ | ||
// | ||
// List item style is extracted from CSS stylesheet. Each list with its specific style attribute | ||
// List item style is extracted from the CSS stylesheet. Each list with its specific style attribute | ||
// value (`mso-list:l1 level1 lfo1`) has its dedicated properties in a CSS stylesheet defined with a selector like: | ||
@@ -180,6 +180,6 @@ // | ||
// Styles for the numbered lists are always defined in Word CSS stylesheet. | ||
// Styles for the numbered lists are always defined in the Word CSS stylesheet. | ||
// Unordered lists MAY contain a value for the Word CSS definition `mso-level-text` but sometimes | ||
// the tag is missing. And because of that, we cannot depend on that. We need to predict the list style value based on | ||
// the list style marker element. | ||
// this tag is missing. And because of that, we cannot depend on that. We need to predict the list style value | ||
// based on the list style marker element. | ||
if ( listStyleType === 'bullet' ) { | ||
@@ -200,3 +200,3 @@ const bulletedStyle = findBulletedListStyle( listLikeItem.element ); | ||
// Tries extract the `list-style-type` value based on the marker element for bulleted list. | ||
// Tries to extract the `list-style-type` value based on the marker element for bulleted list. | ||
// | ||
@@ -286,3 +286,3 @@ // @param {module:engine/view/element~Element} element | ||
// We do not support modifying the marker for particular list item. | ||
// We do not support modifying the marker for a particular list item. | ||
// Set the value for the `list-style-type` property directly to the list container. | ||
@@ -296,6 +296,6 @@ if ( listStyle.style ) { | ||
// Transforms given element into a semantic list item. As the function operates on a provided | ||
// Transforms a given element into a semantic list item. As the function operates on a provided | ||
// {module:engine/src/view/element~Element element} it will modify the view structure to which this element belongs. | ||
// | ||
// @param {module:engine/view/element~Element} element Element which will be transformed into list item. | ||
// @param {module:engine/view/element~Element} element Element which will be transformed into a list item. | ||
// @param {module:engine/view/upcastwriter~UpcastWriter} writer | ||
@@ -366,8 +366,8 @@ // @returns {module:engine/view/element~Element} New element to which the given one was transformed. It is | ||
// Whether previous and current item belongs to the same list. It is determined based on `item.id` | ||
// (extracted from `mso-list` style, see #getListItemData) and previous sibling of the current item. | ||
// Whether the previous and current items belong to the same list. It is determined based on `item.id` | ||
// (extracted from `mso-list` style, see #getListItemData) and a previous sibling of the current item. | ||
// | ||
// However, it's quite easy to change the `id` attribute for nested lists in Word. It will break the list feature while pasting. | ||
// Let's check also the `indent` attribute. If between those two elements, the difference is equal to 1, we can assume that | ||
// the `currentItem` is a beginning of the nested list because lists in CKEditor 5 always starts with the `indent=0` attribute. | ||
// Let's check also the `indent` attribute. If the difference between those two elements is equal to 1, we can assume that | ||
// the `currentItem` is a beginning of the nested list because lists in CKEditor 5 always start with the `indent=0` attribute. | ||
// See: https://github.com/ckeditor/ckeditor5/issues/7805. | ||
@@ -409,4 +409,4 @@ // | ||
// Calculates the indentation difference between two given list items (based on indent attribute | ||
// extracted from `mso-list` style, see #getListItemData). | ||
// Calculates the indentation difference between two given list items (based on the indent attribute | ||
// extracted from the `mso-list` style, see #getListItemData). | ||
// | ||
@@ -420,3 +420,3 @@ // @param {Object} previousItem | ||
// Finds parent list element (ul/ol) of a given list element with indentation level lower by a given value. | ||
// Finds the parent list element (ul/ol) of a given list element with indentation level lower by a given value. | ||
// | ||
@@ -423,0 +423,0 @@ // @param {module:engine/view/element~Element} listElement List element from which to start looking for a parent list. |
/** | ||
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. | ||
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
@@ -4,0 +4,0 @@ */ |
/** | ||
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. | ||
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
@@ -4,0 +4,0 @@ */ |
/** | ||
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. | ||
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
@@ -4,0 +4,0 @@ */ |
/** | ||
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. | ||
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
@@ -4,0 +4,0 @@ */ |
/** | ||
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. | ||
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
@@ -4,0 +4,0 @@ */ |
/** | ||
* @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved. | ||
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
@@ -4,0 +4,0 @@ */ |
Sorry, the diff of this file is not supported yet
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
47183
+ Added@ckeditor/ckeditor5-clipboard@25.0.0(transitive)
+ Added@ckeditor/ckeditor5-core@25.0.0(transitive)
+ Added@ckeditor/ckeditor5-engine@25.0.0(transitive)
+ Added@ckeditor/ckeditor5-ui@25.0.0(transitive)
+ Added@ckeditor/ckeditor5-utils@25.0.0(transitive)
- Removed@ckeditor/ckeditor5-clipboard@24.0.0(transitive)
- Removed@ckeditor/ckeditor5-core@24.0.0(transitive)
- Removed@ckeditor/ckeditor5-engine@24.0.0(transitive)
- Removed@ckeditor/ckeditor5-utils@24.0.0(transitive)