@ckeditor/ckeditor5-enter 37.1.0 → 38.0.0-rc.1
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 +11 -11
- package/src/index.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-enter",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "38.0.0-rc.1",
|
|
4
4
|
"description": "Enter feature for CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -12,18 +12,18 @@
|
|
|
12
12
|
],
|
|
13
13
|
"main": "src/index.js",
|
|
14
14
|
"dependencies": {
|
|
15
|
-
"@ckeditor/ckeditor5-core": "^
|
|
16
|
-
"@ckeditor/ckeditor5-engine": "^
|
|
17
|
-
"@ckeditor/ckeditor5-utils": "^
|
|
15
|
+
"@ckeditor/ckeditor5-core": "^38.0.0-rc.1",
|
|
16
|
+
"@ckeditor/ckeditor5-engine": "^38.0.0-rc.1",
|
|
17
|
+
"@ckeditor/ckeditor5-utils": "^38.0.0-rc.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@ckeditor/ckeditor5-basic-styles": "^
|
|
21
|
-
"@ckeditor/ckeditor5-editor-classic": "^
|
|
22
|
-
"@ckeditor/ckeditor5-heading": "^
|
|
23
|
-
"@ckeditor/ckeditor5-link": "^
|
|
24
|
-
"@ckeditor/ckeditor5-paragraph": "^
|
|
25
|
-
"@ckeditor/ckeditor5-typing": "^
|
|
26
|
-
"@ckeditor/ckeditor5-undo": "^
|
|
20
|
+
"@ckeditor/ckeditor5-basic-styles": "^38.0.0-rc.1",
|
|
21
|
+
"@ckeditor/ckeditor5-editor-classic": "^38.0.0-rc.1",
|
|
22
|
+
"@ckeditor/ckeditor5-heading": "^38.0.0-rc.1",
|
|
23
|
+
"@ckeditor/ckeditor5-link": "^38.0.0-rc.1",
|
|
24
|
+
"@ckeditor/ckeditor5-paragraph": "^38.0.0-rc.1",
|
|
25
|
+
"@ckeditor/ckeditor5-typing": "^38.0.0-rc.1",
|
|
26
|
+
"@ckeditor/ckeditor5-undo": "^38.0.0-rc.1",
|
|
27
27
|
"typescript": "^4.8.4",
|
|
28
28
|
"webpack": "^5.58.1",
|
|
29
29
|
"webpack-cli": "^4.9.0"
|
package/src/index.d.ts
CHANGED
|
@@ -8,6 +8,6 @@
|
|
|
8
8
|
export { default as Enter } from './enter';
|
|
9
9
|
export { default as ShiftEnter } from './shiftenter';
|
|
10
10
|
export type { ViewDocumentEnterEvent } from './enterobserver';
|
|
11
|
-
export type { default as EnterCommand } from './entercommand';
|
|
11
|
+
export type { default as EnterCommand, EnterCommandAfterExecuteEvent } from './entercommand';
|
|
12
12
|
export type { default as ShiftEnterCommand } from './shiftentercommand';
|
|
13
13
|
import './augmentation';
|