@ckeditor/ckeditor5-paragraph
Advanced tools
Comparing version 10.0.2 to 10.0.3
Changelog | ||
========= | ||
## [10.0.3](https://github.com/ckeditor/ckeditor5-paragraph/compare/v10.0.2...v10.0.3) (2018-10-08) | ||
Internal changes only (updated dependencies, documentation, etc.). | ||
## [10.0.2](https://github.com/ckeditor/ckeditor5-paragraph/compare/v10.0.1...v10.0.2) (2018-07-18) | ||
@@ -5,0 +10,0 @@ |
{ | ||
"name": "@ckeditor/ckeditor5-paragraph", | ||
"version": "10.0.2", | ||
"version": "10.0.3", | ||
"description": "Paragraph feature for CKEditor 5.", | ||
@@ -9,20 +9,21 @@ "keywords": [ | ||
"ckeditor 5", | ||
"ckeditor5-feature" | ||
"ckeditor5-feature", | ||
"ckeditor5-plugin" | ||
], | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-core": "^11.0.0", | ||
"@ckeditor/ckeditor5-engine": "^10.2.0", | ||
"@ckeditor/ckeditor5-ui": "^11.0.0", | ||
"@ckeditor/ckeditor5-utils": "^10.2.0" | ||
"@ckeditor/ckeditor5-core": "^11.0.1", | ||
"@ckeditor/ckeditor5-engine": "^11.0.0", | ||
"@ckeditor/ckeditor5-ui": "^11.1.0", | ||
"@ckeditor/ckeditor5-utils": "^11.0.0" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-basic-styles": "^10.0.2", | ||
"@ckeditor/ckeditor5-clipboard": "^10.0.2", | ||
"@ckeditor/ckeditor5-editor-classic": "^11.0.0", | ||
"@ckeditor/ckeditor5-enter": "^10.1.1", | ||
"@ckeditor/ckeditor5-heading": "^10.0.2", | ||
"@ckeditor/ckeditor5-link": "^10.0.3", | ||
"@ckeditor/ckeditor5-typing": "^11.0.0", | ||
"@ckeditor/ckeditor5-undo": "^10.0.2", | ||
"eslint": "^4.15.0", | ||
"@ckeditor/ckeditor5-basic-styles": "^10.0.3", | ||
"@ckeditor/ckeditor5-clipboard": "^10.0.3", | ||
"@ckeditor/ckeditor5-editor-classic": "^11.0.1", | ||
"@ckeditor/ckeditor5-enter": "^10.1.2", | ||
"@ckeditor/ckeditor5-heading": "^10.1.0", | ||
"@ckeditor/ckeditor5-link": "^10.0.4", | ||
"@ckeditor/ckeditor5-typing": "^11.0.1", | ||
"@ckeditor/ckeditor5-undo": "^10.0.3", | ||
"eslint": "^5.5.0", | ||
"eslint-config-ckeditor5": "^1.0.7", | ||
@@ -29,0 +30,0 @@ "husky": "^0.14.3", |
@@ -17,3 +17,3 @@ CKEditor 5 paragraph feature | ||
See the [`@ckeditor/ckeditor5-paragraph` package](https://docs.ckeditor.com/ckeditor5/latest/api/paragraph.html) page in [CKEditor 5 documentation](https://docs.ckeditor.com/ckeditor5/latest/). | ||
See the [`@ckeditor/ckeditor5-paragraph` package](https://ckeditor.com/docs/ckeditor5/latest/api/paragraph.html) page in [CKEditor 5 documentation](https://ckeditor.com/docs/ckeditor5/latest/). | ||
@@ -20,0 +20,0 @@ ## License |
@@ -19,2 +19,3 @@ /** | ||
* The paragraph feature for the editor. | ||
* | ||
* It introduces the `<paragraph>` element in the model which renders as a `<p>` element in the DOM and data. | ||
@@ -21,0 +22,0 @@ * |
@@ -15,7 +15,7 @@ /** | ||
/** | ||
* Class creates UI component representing paragraph button. It can be used together with | ||
* {@link module:heading/headingbuttonsui~HeadingButtonsUI} to replace heading dropdown used in toolbars. | ||
* This plugin defines the `'paragraphs'` button. It can be used together with | ||
* {@link module:heading/headingbuttonsui~HeadingButtonsUI} to replace the standard heading dropdown. | ||
* | ||
* This plugin is not loaded automatically with {@link module:paragraph/paragraph~Paragraph paragraph plugin}. It must | ||
* be added manually in order to use `paragraph` component. | ||
* This plugin is not loaded automatically by the {@link module:paragraph/paragraph~Paragraph} plugin. It must | ||
* be added manually. | ||
* | ||
@@ -25,3 +25,3 @@ * ClassicEditor | ||
* plugins: [ ..., Heading, Paragraph, HeadingButtonsUI, ParagraphButtonUI ] | ||
* toolbar: [ 'paragraph', 'heading1', 'heading2', 'heading3' ] | ||
* toolbar: [ 'paragraph', 'heading1', 'heading2', 'heading3' ] | ||
* } ) | ||
@@ -31,2 +31,3 @@ * .then( ... ) | ||
* | ||
* @extends module:core/plugin~Plugin | ||
*/ | ||
@@ -33,0 +34,0 @@ export default class ParagraphButtonUI extends Plugin { |
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
20072
285
+ Added@ckeditor/ckeditor5-engine@11.0.0(transitive)
- Removed@ckeditor/ckeditor5-engine@10.2.0(transitive)
- Removed@ckeditor/ckeditor5-utils@10.2.1(transitive)