@ckeditor/ckeditor5-list 41.4.2 → 42.0.0-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/README.md +6 -0
- package/dist/index.js +1059 -820
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
- package/src/legacytodolist/legacytodolistediting.js +1 -1
- package/src/todolist/todolistediting.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-list",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "42.0.0-alpha.0",
|
|
4
4
|
"description": "Ordered and unordered lists feature to CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"type": "module",
|
|
14
14
|
"main": "src/index.js",
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"ckeditor5": "
|
|
16
|
+
"ckeditor5": "42.0.0-alpha.0"
|
|
17
17
|
},
|
|
18
18
|
"author": "CKSource (http://cksource.com/)",
|
|
19
19
|
"license": "GPL-2.0-or-later",
|
|
@@ -8,7 +8,7 @@ import LegacyListCommand from '../legacylist/legacylistcommand.js';
|
|
|
8
8
|
import LegacyListEditing from '../legacylist/legacylistediting.js';
|
|
9
9
|
import LegacyCheckTodoListCommand from './legacychecktodolistcommand.js';
|
|
10
10
|
import { dataModelViewInsertion, dataViewModelCheckmarkInsertion, mapModelToViewPosition, modelViewChangeChecked, modelViewChangeType, modelViewInsertion } from './legacytodolistconverters.js';
|
|
11
|
-
const ITEM_TOGGLE_KEYSTROKE = parseKeystroke('Ctrl+Enter');
|
|
11
|
+
const ITEM_TOGGLE_KEYSTROKE = /* #__PURE__ */ parseKeystroke('Ctrl+Enter');
|
|
12
12
|
/**
|
|
13
13
|
* The engine of the to-do list feature. It handles creating, editing and removing to-do lists and their items.
|
|
14
14
|
*
|
|
@@ -13,7 +13,7 @@ import ListEditing from '../list/listediting.js';
|
|
|
13
13
|
import ListCommand from '../list/listcommand.js';
|
|
14
14
|
import CheckTodoListCommand from './checktodolistcommand.js';
|
|
15
15
|
import TodoCheckboxChangeObserver from './todocheckboxchangeobserver.js';
|
|
16
|
-
const ITEM_TOGGLE_KEYSTROKE = parseKeystroke('Ctrl+Enter');
|
|
16
|
+
const ITEM_TOGGLE_KEYSTROKE = /* #__PURE__ */ parseKeystroke('Ctrl+Enter');
|
|
17
17
|
/**
|
|
18
18
|
* The engine of the to-do list feature. It handles creating, editing and removing to-do lists and their items.
|
|
19
19
|
*
|