@ckeditor/ckeditor5-paragraph
Advanced tools
Comparing version 37.0.0-alpha.2 to 37.0.0-alpha.3
{ | ||
"name": "@ckeditor/ckeditor5-paragraph", | ||
"version": "37.0.0-alpha.2", | ||
"version": "37.0.0-alpha.3", | ||
"description": "Paragraph feature for CKEditor 5.", | ||
@@ -15,16 +15,16 @@ "keywords": [ | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.2" | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-heading": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-link": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-heading": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-link": "^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", | ||
@@ -31,0 +31,0 @@ "webpack": "^5.58.1", |
@@ -8,3 +8,4 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from '@ckeditor/ckeditor5-core'; | ||
import { Plugin } from '@ckeditor/ckeditor5-core'; | ||
import Paragraph from './paragraph'; | ||
/** | ||
@@ -31,3 +32,3 @@ * This plugin defines the `'paragraph'` button. It can be used together with | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof Paragraph]; | ||
/** | ||
@@ -34,0 +35,0 @@ * @inheritDoc |
28728
506