@ckeditor/ckeditor5-core
Advanced tools
Comparing version 1.0.0-beta.1 to 1.0.0-beta.2
Changelog | ||
========= | ||
## [1.0.0-beta.2](https://github.com/ckeditor/ckeditor5-core/compare/v1.0.0-beta.1...v1.0.0-beta.2) (2018-04-10) | ||
### Other changes | ||
* Made the check and cancel icons thicker and fill-friendly (see [ckeditor/ckeditor5#810](https://github.com/ckeditor/ckeditor5/issues/810)). ([6584541](https://github.com/ckeditor/ckeditor5-core/commit/6584541)) | ||
## [1.0.0-beta.1](https://github.com/ckeditor/ckeditor5-core/compare/v1.0.0-alpha.2...v1.0.0-beta.1) (2018-03-15) | ||
@@ -5,0 +12,0 @@ |
{ | ||
"name": "@ckeditor/ckeditor5-core", | ||
"version": "1.0.0-beta.1", | ||
"version": "1.0.0-beta.2", | ||
"description": "CKEditor 5 core editor architecture.", | ||
@@ -10,21 +10,21 @@ "keywords": [ | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-engine": "^1.0.0-beta.1", | ||
"@ckeditor/ckeditor5-utils": "^1.0.0-beta.1" | ||
"@ckeditor/ckeditor5-engine": "^1.0.0-beta.2", | ||
"@ckeditor/ckeditor5-utils": "^1.0.0-beta.2" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-autoformat": "^1.0.0-beta.1", | ||
"@ckeditor/ckeditor5-basic-styles": "^1.0.0-beta.1", | ||
"@ckeditor/ckeditor5-block-quote": "^1.0.0-beta.1", | ||
"@ckeditor/ckeditor5-editor-classic": "^1.0.0-beta.1", | ||
"@ckeditor/ckeditor5-essentials": "^1.0.0-beta.1", | ||
"@ckeditor/ckeditor5-heading": "^1.0.0-beta.1", | ||
"@ckeditor/ckeditor5-image": "^1.0.0-beta.1", | ||
"@ckeditor/ckeditor5-link": "^1.0.0-beta.1", | ||
"@ckeditor/ckeditor5-list": "^1.0.0-beta.1", | ||
"@ckeditor/ckeditor5-paragraph": "^1.0.0-beta.1", | ||
"@ckeditor/ckeditor5-ui": "^1.0.0-beta.1", | ||
"@ckeditor/ckeditor5-autoformat": "^1.0.0-beta.2", | ||
"@ckeditor/ckeditor5-basic-styles": "^1.0.0-beta.2", | ||
"@ckeditor/ckeditor5-block-quote": "^1.0.0-beta.2", | ||
"@ckeditor/ckeditor5-editor-classic": "^1.0.0-beta.2", | ||
"@ckeditor/ckeditor5-essentials": "^1.0.0-beta.2", | ||
"@ckeditor/ckeditor5-heading": "^1.0.0-beta.2", | ||
"@ckeditor/ckeditor5-image": "^1.0.0-beta.2", | ||
"@ckeditor/ckeditor5-link": "^1.0.0-beta.2", | ||
"@ckeditor/ckeditor5-list": "^1.0.0-beta.2", | ||
"@ckeditor/ckeditor5-paragraph": "^1.0.0-beta.2", | ||
"@ckeditor/ckeditor5-ui": "^1.0.0-beta.2", | ||
"eslint": "^4.15.0", | ||
"eslint-config-ckeditor5": "^1.0.7", | ||
"husky": "^0.14.3", | ||
"lint-staged": "^6.0.0" | ||
"lint-staged": "^7.0.0" | ||
}, | ||
@@ -37,3 +37,3 @@ "engines": { | ||
"license": "(GPL-2.0 OR LGPL-2.1 OR MPL-1.1)", | ||
"homepage": "https://ckeditor5.github.io", | ||
"homepage": "https://ckeditor.com", | ||
"bugs": "https://github.com/ckeditor/ckeditor5-core/issues", | ||
@@ -40,0 +40,0 @@ "repository": { |
@@ -17,3 +17,3 @@ CKEditor 5 core editor architecture | ||
See the [`@ckeditor/ckeditor5-core` package](https://ckeditor5.github.io/docs/nightly/ckeditor5/latest/api/core.html) page in [CKEditor 5 documentation](https://ckeditor5.github.io/docs/nightly/ckeditor5/latest/). | ||
See the [`@ckeditor/ckeditor5-core` package](https://docs.ckeditor.com/ckeditor5/latest/api/core.html) page in [CKEditor 5 documentation](https://docs.ckeditor.com/ckeditor5/latest/). | ||
@@ -20,0 +20,0 @@ ## License |
@@ -24,10 +24,19 @@ /** | ||
/** | ||
* Class representing the base of the editor. It is the API all plugins can expect to get when using `editor` property. | ||
* It should be enough to implement editing part of feature (schema definition, conversion, commands, keystrokes, etc.). | ||
* However it does not define editor UI, which is defined in {@link module:core/editor/editorwithui~EditorWithUI}. | ||
* Class representing a basic, generic editor. | ||
* | ||
* All editors implementation (like {@link module:editor-classic/classiceditor~ClassicEditor} or | ||
* Check out the list of its subclasses to learn about specific editor implementations. | ||
* | ||
* All editor implementations (like {@link module:editor-classic/classiceditor~ClassicEditor} or | ||
* {@link module:editor-inline/inlineeditor~InlineEditor}) should extend this class. They can add their | ||
* own methods and properties. | ||
* | ||
* When you are implementing a plugin, then this editor represents the API | ||
* which your plugin can expect to get when using its {@link module:core/plugin~Plugin#editor} property. | ||
* | ||
* This API should be sufficient in order to implement the "editing" part of your feature | ||
* (schema definition, conversion, commands, keystrokes, etc.). | ||
* It does not define the editor UI, which is available only if the | ||
* the specific editor implements also the {@link module:core/editor/editorwithui~EditorWithUI} interface | ||
* (as most editor implementations do). | ||
* | ||
* @mixes module:utils/observablemixin~ObservableMixin | ||
@@ -39,2 +48,4 @@ */ | ||
* | ||
* Usually, not to be used directly. See the static {@link module:core/editor/editor~Editor.create `create()`} method. | ||
* | ||
* @param {Object} config The editor config. | ||
@@ -126,6 +137,5 @@ */ | ||
/** | ||
* Conversion manager to which conversion dispatchers are registered. Used to add converters to the editor. | ||
* Conversion manager through which you can register model to view and view to model converters. | ||
* | ||
* See {@link module:engine/conversion/conversion~Conversion#for} to learn how to use conversion helpers in order to | ||
* add converters to the editor. | ||
* See {@link module:engine/conversion/conversion~Conversion}'s documentation to learn how to add converters. | ||
* | ||
@@ -224,3 +234,3 @@ * @readonly | ||
/** | ||
* Creates a basic editor instance. | ||
* Creates and initializes a new editor instance. | ||
* | ||
@@ -227,0 +237,0 @@ * @param {Object} config The editor config. You can find the list of config options in |
Sorry, the diff of this file is not supported yet
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
80981
69
1104