@ckeditor/ckeditor5-code-block 47.7.1 → 47.7.2-alpha.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-code-block",
3
- "version": "47.7.1",
3
+ "version": "47.7.2-alpha.0",
4
4
  "description": "Code block feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,14 +13,14 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-core": "47.7.1",
17
- "@ckeditor/ckeditor5-clipboard": "47.7.1",
18
- "@ckeditor/ckeditor5-engine": "47.7.1",
19
- "@ckeditor/ckeditor5-enter": "47.7.1",
20
- "@ckeditor/ckeditor5-icons": "47.7.1",
21
- "@ckeditor/ckeditor5-ui": "47.7.1",
22
- "@ckeditor/ckeditor5-utils": "47.7.1",
23
- "ckeditor5": "47.7.1"
16
+ "@ckeditor/ckeditor5-core": "47.7.2-alpha.0",
17
+ "@ckeditor/ckeditor5-clipboard": "47.7.2-alpha.0",
18
+ "@ckeditor/ckeditor5-engine": "47.7.2-alpha.0",
19
+ "@ckeditor/ckeditor5-enter": "47.7.2-alpha.0",
20
+ "@ckeditor/ckeditor5-icons": "47.7.2-alpha.0",
21
+ "@ckeditor/ckeditor5-ui": "47.7.2-alpha.0",
22
+ "@ckeditor/ckeditor5-utils": "47.7.2-alpha.0",
23
+ "ckeditor5": "47.7.2-alpha.0"
24
24
  },
25
25
  "author": "CKSource (http://cksource.com/)",
26
26
  "license": "SEE LICENSE IN LICENSE.md",
@@ -94,7 +94,7 @@ export class CodeBlockCommand extends Command {
94
94
  writer.rename(block, 'codeBlock');
95
95
  writer.setAttribute('language', language, block);
96
96
  schema.removeDisallowedAttributes([block], writer);
97
- // Remove children of the `codeBlock` element that are not allowed. See #9567.
97
+ // Remove children of the `codeBlock` element that are not allowed. See https://github.com/ckeditor/ckeditor5/issues/9567.
98
98
  Array.from(block.getChildren())
99
99
  .filter(child => !schema.checkChild(block, child))
100
100
  .forEach(child => writer.remove(child));