@ckeditor/ckeditor5-source-editing 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-source-editing",
3
- "version": "37.0.0-alpha.1",
3
+ "version": "37.0.0-alpha.3",
4
4
  "description": "Source editing feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,21 +12,21 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1",
16
- "ckeditor5": "^37.0.0-alpha.1"
15
+ "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
16
+ "ckeditor5": "^37.0.0-alpha.3"
17
17
  },
18
18
  "devDependencies": {
19
- "@ckeditor/ckeditor5-core": "^37.0.0-alpha.1",
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-essentials": "^37.0.0-alpha.1",
24
- "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.1",
25
- "@ckeditor/ckeditor5-markdown-gfm": "^37.0.0-alpha.1",
26
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
27
- "@ckeditor/ckeditor5-table": "^37.0.0-alpha.1",
28
- "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.1",
29
- "@ckeditor/ckeditor5-utils": "^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-essentials": "^37.0.0-alpha.3",
24
+ "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.3",
25
+ "@ckeditor/ckeditor5-markdown-gfm": "^37.0.0-alpha.3",
26
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
27
+ "@ckeditor/ckeditor5-table": "^37.0.0-alpha.3",
28
+ "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3",
29
+ "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3",
30
30
  "typescript": "^4.8.4",
31
31
  "webpack": "^5.58.1",
32
32
  "webpack-cli": "^4.9.0"
@@ -5,7 +5,7 @@
5
5
  /**
6
6
  * @module source-editing/sourceediting
7
7
  */
8
- import { type Editor, Plugin, type PluginDependencies } from 'ckeditor5/src/core';
8
+ import { type Editor, Plugin, PendingActions } from 'ckeditor5/src/core';
9
9
  import '../theme/sourceediting.css';
10
10
  /**
11
11
  * The source editing feature.
@@ -23,7 +23,7 @@ export default class SourceEditing extends Plugin {
23
23
  /**
24
24
  * @inheritDoc
25
25
  */
26
- static get requires(): PluginDependencies;
26
+ static get requires(): readonly [typeof PendingActions];
27
27
  /**
28
28
  * Flag indicating whether the document source mode is active.
29
29
  *