@ckeditor/ckeditor5-essentials
Advanced tools
Comparing version 37.0.0-alpha.2 to 37.0.0-alpha.3
{ | ||
"name": "@ckeditor/ckeditor5-essentials", | ||
"version": "37.0.0-alpha.2", | ||
"version": "37.0.0-alpha.3", | ||
"description": "Essential editing features for CKEditor 5.", | ||
@@ -15,15 +15,15 @@ "keywords": [ | ||
"dependencies": { | ||
"ckeditor5": "^37.0.0-alpha.2" | ||
"ckeditor5": "^37.0.0-alpha.3" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-dev-utils": "^35.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-select-all": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-select-all": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.3", | ||
"typescript": "^4.8.4", | ||
@@ -30,0 +30,0 @@ "webpack": "^5.58.1", |
@@ -8,3 +8,8 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import { Clipboard } from 'ckeditor5/src/clipboard'; | ||
import { Enter, ShiftEnter } from 'ckeditor5/src/enter'; | ||
import { SelectAll } from 'ckeditor5/src/select-all'; | ||
import { Typing } from 'ckeditor5/src/typing'; | ||
import { Undo } from 'ckeditor5/src/undo'; | ||
/** | ||
@@ -30,3 +35,3 @@ * A plugin including all essential editing features. It represents a set of features that enables similar functionalities | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof Clipboard, typeof Enter, typeof SelectAll, typeof ShiftEnter, typeof Typing, typeof Undo]; | ||
/** | ||
@@ -33,0 +38,0 @@ * @inheritDoc |
17182
145
Updatedckeditor5@^37.0.0-alpha.3