@ckeditor/ckeditor5-editor-inline
Advanced tools
Comparing version 12.1.0 to 12.1.1
Changelog | ||
========= | ||
## [12.1.1](https://github.com/ckeditor/ckeditor5-editor-inline/compare/v12.1.0...v12.1.1) (2019-06-05) | ||
Internal changes only (updated dependencies, documentation, etc.). | ||
## [12.1.0](https://github.com/ckeditor/ckeditor5-editor-inline/compare/v12.0.0...v12.1.0) (2019-04-10) | ||
@@ -5,0 +10,0 @@ |
{ | ||
"name": "@ckeditor/ckeditor5-editor-inline", | ||
"version": "12.1.0", | ||
"version": "12.1.1", | ||
"description": "Inline editor implementation for CKEditor 5.", | ||
@@ -12,15 +12,15 @@ "keywords": [ | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-core": "^12.1.0", | ||
"@ckeditor/ckeditor5-engine": "^13.1.0", | ||
"@ckeditor/ckeditor5-ui": "^12.1.0", | ||
"@ckeditor/ckeditor5-utils": "^12.1.0", | ||
"@ckeditor/ckeditor5-core": "^12.1.1", | ||
"@ckeditor/ckeditor5-engine": "^13.1.1", | ||
"@ckeditor/ckeditor5-ui": "^13.0.0", | ||
"@ckeditor/ckeditor5-utils": "^12.1.1", | ||
"lodash-es": "^4.17.10" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-basic-styles": "^11.1.0", | ||
"@ckeditor/ckeditor5-enter": "^11.0.1", | ||
"@ckeditor/ckeditor5-heading": "^11.0.1", | ||
"@ckeditor/ckeditor5-paragraph": "^11.0.1", | ||
"@ckeditor/ckeditor5-typing": "^12.0.1", | ||
"@ckeditor/ckeditor5-undo": "^11.0.1", | ||
"@ckeditor/ckeditor5-basic-styles": "^11.1.1", | ||
"@ckeditor/ckeditor5-enter": "^11.0.2", | ||
"@ckeditor/ckeditor5-heading": "^11.0.2", | ||
"@ckeditor/ckeditor5-paragraph": "^11.0.2", | ||
"@ckeditor/ckeditor5-typing": "^12.0.2", | ||
"@ckeditor/ckeditor5-undo": "^11.0.2", | ||
"eslint": "^5.5.0", | ||
@@ -27,0 +27,0 @@ "eslint-config-ckeditor5": "^1.0.11", |
@@ -25,2 +25,2 @@ CKEditor 5 inline editor creator | ||
Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). For full details about the license, please check the `LICENSE.md` file. | ||
Licensed under the terms of [GNU General Public License Version 2 or later](http://www.gnu.org/licenses/gpl.html). For full details about the license, please check the `LICENSE.md` file or [https://ckeditor.com/legal/ckeditor-oss-license](https://ckeditor.com/legal/ckeditor-oss-license). |
/** | ||
* @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
*/ | ||
@@ -140,7 +140,7 @@ | ||
* This lets you dynamically append the editor to your web page whenever it is convenient for you. You may use this method if your | ||
* web page content is generated on the client-side and the DOM structure is not ready at the moment when you initialize the editor. | ||
* web page content is generated on the client side and the DOM structure is not ready at the moment when you initialize the editor. | ||
* | ||
* # Using an existing DOM element (and data provided in `config.initialData`) | ||
* | ||
* You can also mix those two ways by providing a DOM element to be used and passing the initial data through the config: | ||
* You can also mix these two ways by providing a DOM element to be used and passing the initial data through the configuration: | ||
* | ||
@@ -158,6 +158,6 @@ * InlineEditor | ||
* | ||
* This method can be used to initialize the editor on an existing element with specified content in case if your integration | ||
* This method can be used to initialize the editor on an existing element with the specified content in case if your integration | ||
* makes it difficult to set the content of the source element. | ||
* | ||
* Note that an error will be thrown if you pass initial data both as the first parameter and also in the config. | ||
* Note that an error will be thrown if you pass the initial data both as the first parameter and also in the configuration. | ||
* | ||
@@ -167,3 +167,3 @@ * # Configuring the editor | ||
* See the {@link module:core/editor/editorconfig~EditorConfig editor configuration documentation} to learn more about | ||
* customizing plugins, toolbar and other. | ||
* customizing plugins, toolbar and more. | ||
* | ||
@@ -176,3 +176,3 @@ * # Using the editor from source | ||
* If you want to use the inline editor from source (`@ckeditor/ckeditor5-editor-inline/src/inlineeditor`), | ||
* then you need to define the list of | ||
* you need to define the list of | ||
* {@link module:core/editor/editorconfig~EditorConfig#plugins plugins to be initialized} and | ||
@@ -189,3 +189,3 @@ * {@link module:core/editor/editorconfig~EditorConfig#toolbar toolbar items}. Read more about using the editor from | ||
* If the initial data is passed, a detached editor will be created. In this case you need to insert it into the DOM manually. | ||
* It is available under {@link module:editor-inline/inlineeditorui~InlineEditorUI#element `editor.ui.element`} property. | ||
* It is available under the {@link module:editor-inline/inlineeditorui~InlineEditorUI#element `editor.ui.element`} property. | ||
* | ||
@@ -192,0 +192,0 @@ * @param {module:core/editor/editorconfig~EditorConfig} [config] The editor configuration. |
/** | ||
* @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
*/ | ||
@@ -5,0 +5,0 @@ |
/** | ||
* @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.md. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
*/ | ||
@@ -5,0 +5,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
33309
+ Added@ckeditor/ckeditor5-ui@13.0.2(transitive)
- Removed@ckeditor/ckeditor5-ui@12.1.0(transitive)