@ckeditor/ckeditor5-typing
Advanced tools
Comparing version 37.0.0-alpha.2 to 37.0.0-alpha.3
{ | ||
"name": "@ckeditor/ckeditor5-typing", | ||
"version": "37.0.0-alpha.2", | ||
"version": "37.0.0-alpha.3", | ||
"description": "Typing feature for CKEditor 5.", | ||
@@ -15,25 +15,25 @@ "keywords": [ | ||
"dependencies": { | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3", | ||
"lodash-es": "^4.17.15" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-autoformat": "^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-code-block": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-essentials": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-heading": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-indent": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-link": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-list": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-media-embed": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-mention": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-autoformat": "^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-code-block": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-enter": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-essentials": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-heading": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-image": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-indent": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-link": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-list": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-media-embed": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-mention": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-undo": "^37.0.0-alpha.3", | ||
"typescript": "^4.8.4", | ||
@@ -40,0 +40,0 @@ "webpack": "^5.58.1", |
@@ -8,3 +8,3 @@ /** | ||
*/ | ||
import { Plugin, type Editor, type PluginDependencies } from '@ckeditor/ckeditor5-core'; | ||
import { Plugin, type Editor } from '@ckeditor/ckeditor5-core'; | ||
/** | ||
@@ -17,3 +17,3 @@ * The text transformation plugin. | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly ["Delete", "Input"]; | ||
/** | ||
@@ -20,0 +20,0 @@ * @inheritDoc |
@@ -8,3 +8,5 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from '@ckeditor/ckeditor5-core'; | ||
import { Plugin } from '@ckeditor/ckeditor5-core'; | ||
import Input from './input'; | ||
import Delete from './delete'; | ||
/** | ||
@@ -17,3 +19,3 @@ * The typing feature. It handles typing. | ||
export default class Typing extends Plugin { | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof Input, typeof Delete]; | ||
/** | ||
@@ -20,0 +22,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
139638
3089