@ckeditor/ckeditor5-heading
Advanced tools
Comparing version 37.0.0-alpha.2 to 37.0.0-alpha.3
{ | ||
"name": "@ckeditor/ckeditor5-heading", | ||
"version": "37.0.0-alpha.2", | ||
"version": "37.0.0-alpha.3", | ||
"description": "Headings feature for CKEditor 5.", | ||
@@ -15,22 +15,22 @@ "keywords": [ | ||
"dependencies": { | ||
"ckeditor5": "^37.0.0-alpha.2" | ||
"ckeditor5": "^37.0.0-alpha.3" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-alignment": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-alignment": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-dev-utils": "^35.0.0", | ||
"@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-image": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-upload": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.2", | ||
"@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-image": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-typing": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-upload": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3", | ||
"typescript": "^4.8.4", | ||
@@ -37,0 +37,0 @@ "webpack": "^5.58.1", |
@@ -8,3 +8,5 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import HeadingEditing from './headingediting'; | ||
import HeadingUI from './headingui'; | ||
import '../theme/heading.css'; | ||
@@ -26,3 +28,3 @@ /** | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof HeadingEditing, typeof HeadingUI]; | ||
/** | ||
@@ -29,0 +31,0 @@ * @inheritDoc |
@@ -8,3 +8,4 @@ /** | ||
*/ | ||
import { Plugin, type Editor, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin, type Editor } from 'ckeditor5/src/core'; | ||
import { Paragraph } from 'ckeditor5/src/paragraph'; | ||
/** | ||
@@ -27,3 +28,3 @@ * The headings engine feature. It handles switching between block formats – headings and paragraph. | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof Paragraph]; | ||
/** | ||
@@ -30,0 +31,0 @@ * @inheritDoc |
@@ -8,3 +8,3 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
/** | ||
@@ -28,3 +28,3 @@ * The Title plugin. | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly ["Paragraph"]; | ||
/** | ||
@@ -31,0 +31,0 @@ * @inheritDoc |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
249792
1436
Updatedckeditor5@^37.0.0-alpha.3