@ckeditor/ckeditor5-core 37.0.1 → 37.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +17 -17
- package/src/editor/editor.js +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-core",
|
|
3
|
-
"version": "37.0
|
|
3
|
+
"version": "37.1.0",
|
|
4
4
|
"description": "The core architecture of CKEditor 5 – the best browser-based rich text editor.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"wysiwyg",
|
|
@@ -23,25 +23,25 @@
|
|
|
23
23
|
],
|
|
24
24
|
"main": "src/index.js",
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@ckeditor/ckeditor5-engine": "^37.0
|
|
27
|
-
"@ckeditor/ckeditor5-utils": "^37.0
|
|
26
|
+
"@ckeditor/ckeditor5-engine": "^37.1.0",
|
|
27
|
+
"@ckeditor/ckeditor5-utils": "^37.1.0",
|
|
28
28
|
"lodash-es": "^4.17.15"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@ckeditor/ckeditor5-autoformat": "^37.0
|
|
32
|
-
"@ckeditor/ckeditor5-basic-styles": "^37.0
|
|
33
|
-
"@ckeditor/ckeditor5-block-quote": "^37.0
|
|
34
|
-
"@ckeditor/ckeditor5-editor-classic": "^37.0
|
|
35
|
-
"@ckeditor/ckeditor5-essentials": "^37.0
|
|
36
|
-
"@ckeditor/ckeditor5-heading": "^37.0
|
|
37
|
-
"@ckeditor/ckeditor5-image": "^37.0
|
|
38
|
-
"@ckeditor/ckeditor5-indent": "^37.0
|
|
39
|
-
"@ckeditor/ckeditor5-link": "^37.0
|
|
40
|
-
"@ckeditor/ckeditor5-list": "^37.0
|
|
41
|
-
"@ckeditor/ckeditor5-media-embed": "^37.0
|
|
42
|
-
"@ckeditor/ckeditor5-paragraph": "^37.0
|
|
43
|
-
"@ckeditor/ckeditor5-table": "^37.0
|
|
44
|
-
"@ckeditor/ckeditor5-ui": "^37.0
|
|
31
|
+
"@ckeditor/ckeditor5-autoformat": "^37.1.0",
|
|
32
|
+
"@ckeditor/ckeditor5-basic-styles": "^37.1.0",
|
|
33
|
+
"@ckeditor/ckeditor5-block-quote": "^37.1.0",
|
|
34
|
+
"@ckeditor/ckeditor5-editor-classic": "^37.1.0",
|
|
35
|
+
"@ckeditor/ckeditor5-essentials": "^37.1.0",
|
|
36
|
+
"@ckeditor/ckeditor5-heading": "^37.1.0",
|
|
37
|
+
"@ckeditor/ckeditor5-image": "^37.1.0",
|
|
38
|
+
"@ckeditor/ckeditor5-indent": "^37.1.0",
|
|
39
|
+
"@ckeditor/ckeditor5-link": "^37.1.0",
|
|
40
|
+
"@ckeditor/ckeditor5-list": "^37.1.0",
|
|
41
|
+
"@ckeditor/ckeditor5-media-embed": "^37.1.0",
|
|
42
|
+
"@ckeditor/ckeditor5-paragraph": "^37.1.0",
|
|
43
|
+
"@ckeditor/ckeditor5-table": "^37.1.0",
|
|
44
|
+
"@ckeditor/ckeditor5-ui": "^37.1.0",
|
|
45
45
|
"typescript": "^4.8.4",
|
|
46
46
|
"webpack": "^5.58.1",
|
|
47
47
|
"webpack-cli": "^4.9.0"
|
package/src/editor/editor.js
CHANGED
|
@@ -262,7 +262,7 @@ export default class Editor extends ObservableMixin() {
|
|
|
262
262
|
}
|
|
263
263
|
catch (err) {
|
|
264
264
|
// @if CK_DEBUG // throw err;
|
|
265
|
-
/* istanbul ignore next */
|
|
265
|
+
/* istanbul ignore next -- @preserve */
|
|
266
266
|
CKEditorError.rethrowUnexpectedError(err, this);
|
|
267
267
|
}
|
|
268
268
|
}
|
|
@@ -278,7 +278,7 @@ export default class Editor extends ObservableMixin() {
|
|
|
278
278
|
focus() {
|
|
279
279
|
this.editing.view.focus();
|
|
280
280
|
}
|
|
281
|
-
/* istanbul ignore next */
|
|
281
|
+
/* istanbul ignore next -- @preserve */
|
|
282
282
|
/**
|
|
283
283
|
* Creates and initializes a new editor instance.
|
|
284
284
|
*
|