@ckeditor/ckeditor5-list 46.0.1-alpha.5 → 46.0.1-alpha.6

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-list",
3
- "version": "46.0.1-alpha.5",
3
+ "version": "46.0.1-alpha.6",
4
4
  "description": "Ordered and unordered lists feature to CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -13,16 +13,16 @@
13
13
  "type": "module",
14
14
  "main": "src/index.js",
15
15
  "dependencies": {
16
- "@ckeditor/ckeditor5-clipboard": "46.0.1-alpha.5",
17
- "@ckeditor/ckeditor5-core": "46.0.1-alpha.5",
18
- "@ckeditor/ckeditor5-engine": "46.0.1-alpha.5",
19
- "@ckeditor/ckeditor5-enter": "46.0.1-alpha.5",
20
- "@ckeditor/ckeditor5-font": "46.0.1-alpha.5",
21
- "@ckeditor/ckeditor5-icons": "46.0.1-alpha.5",
22
- "@ckeditor/ckeditor5-typing": "46.0.1-alpha.5",
23
- "@ckeditor/ckeditor5-ui": "46.0.1-alpha.5",
24
- "@ckeditor/ckeditor5-utils": "46.0.1-alpha.5",
25
- "ckeditor5": "46.0.1-alpha.5"
16
+ "@ckeditor/ckeditor5-clipboard": "46.0.1-alpha.6",
17
+ "@ckeditor/ckeditor5-core": "46.0.1-alpha.6",
18
+ "@ckeditor/ckeditor5-engine": "46.0.1-alpha.6",
19
+ "@ckeditor/ckeditor5-enter": "46.0.1-alpha.6",
20
+ "@ckeditor/ckeditor5-font": "46.0.1-alpha.6",
21
+ "@ckeditor/ckeditor5-icons": "46.0.1-alpha.6",
22
+ "@ckeditor/ckeditor5-typing": "46.0.1-alpha.6",
23
+ "@ckeditor/ckeditor5-ui": "46.0.1-alpha.6",
24
+ "@ckeditor/ckeditor5-utils": "46.0.1-alpha.6",
25
+ "ckeditor5": "46.0.1-alpha.6"
26
26
  },
27
27
  "author": "CKSource (http://cksource.com/)",
28
28
  "license": "SEE LICENSE IN LICENSE.md",
@@ -261,7 +261,7 @@ export function listItemDowncastRemoveConverter(schema) {
261
261
  const { writer, mapper } = conversionApi;
262
262
  const elementName = evt.name.split(':')[1];
263
263
  // Do not remove marker if the deleted element is some inline object inside paragraph.
264
- // See https://github.com/cksource/ckeditor5-internal/issues/3680.
264
+ // See https://github.com/ckeditor/ckeditor5-internal/issues/3680.
265
265
  if (!schema.checkAttribute(elementName, 'listItemId')) {
266
266
  return;
267
267
  }