@ckeditor/ckeditor5-block-quote 37.0.0-alpha.1 → 37.0.0-alpha.3

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-block-quote",
3
- "version": "37.0.0-alpha.1",
3
+ "version": "37.0.0-alpha.3",
4
4
  "description": "Block quote feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,22 +12,22 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "ckeditor5": "^37.0.0-alpha.1"
15
+ "ckeditor5": "^37.0.0-alpha.3"
16
16
  },
17
17
  "devDependencies": {
18
- "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.1",
19
- "@ckeditor/ckeditor5-core": "^37.0.0-alpha.1",
18
+ "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.3",
19
+ "@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
20
20
  "@ckeditor/ckeditor5-dev-utils": "^35.0.0",
21
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1",
22
- "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.1",
23
- "@ckeditor/ckeditor5-enter": "^37.0.0-alpha.1",
24
- "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.1",
25
- "@ckeditor/ckeditor5-image": "^37.0.0-alpha.1",
26
- "@ckeditor/ckeditor5-list": "^37.0.0-alpha.1",
27
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
28
- "@ckeditor/ckeditor5-table": "^37.0.0-alpha.1",
29
- "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1",
30
- "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.1",
21
+ "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
22
+ "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3",
23
+ "@ckeditor/ckeditor5-enter": "^37.0.0-alpha.3",
24
+ "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.3",
25
+ "@ckeditor/ckeditor5-image": "^37.0.0-alpha.3",
26
+ "@ckeditor/ckeditor5-list": "^37.0.0-alpha.3",
27
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
28
+ "@ckeditor/ckeditor5-table": "^37.0.0-alpha.3",
29
+ "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
30
+ "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.3",
31
31
  "typescript": "^4.8.4",
32
32
  "webpack": "^5.58.1",
33
33
  "webpack-cli": "^4.9.0"
@@ -5,7 +5,9 @@
5
5
  /**
6
6
  * @module block-quote/blockquote
7
7
  */
8
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import BlockQuoteEditing from './blockquoteediting';
10
+ import BlockQuoteUI from './blockquoteui';
9
11
  /**
10
12
  * The block quote plugin.
11
13
  *
@@ -20,7 +22,7 @@ export default class BlockQuote extends Plugin {
20
22
  /**
21
23
  * @inheritDoc
22
24
  */
23
- static get requires(): PluginDependencies;
25
+ static get requires(): readonly [typeof BlockQuoteEditing, typeof BlockQuoteUI];
24
26
  /**
25
27
  * @inheritDoc
26
28
  */
@@ -5,7 +5,9 @@
5
5
  /**
6
6
  * @module block-quote/blockquoteediting
7
7
  */
8
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import { Enter } from 'ckeditor5/src/enter';
10
+ import { Delete } from 'ckeditor5/src/typing';
9
11
  /**
10
12
  * The block quote editing.
11
13
  *
@@ -21,7 +23,7 @@ export default class BlockQuoteEditing extends Plugin {
21
23
  /**
22
24
  * @inheritDoc
23
25
  */
24
- static get requires(): PluginDependencies;
26
+ static get requires(): readonly [typeof Enter, typeof Delete];
25
27
  /**
26
28
  * @inheritDoc
27
29
  */