@ckeditor/ckeditor5-restricted-editing 37.0.0-alpha.1 → 37.0.0-alpha.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-restricted-editing",
3
- "version": "37.0.0-alpha.1",
3
+ "version": "37.0.0-alpha.3",
4
4
  "description": "Restricted editing feature for CKEditor 5 editors.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -11,24 +11,24 @@
11
11
  ],
12
12
  "main": "src/index.js",
13
13
  "dependencies": {
14
- "ckeditor5": "^37.0.0-alpha.1"
14
+ "ckeditor5": "^37.0.0-alpha.3"
15
15
  },
16
16
  "devDependencies": {
17
- "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.1",
18
- "@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.1",
19
- "@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.1",
20
- "@ckeditor/ckeditor5-core": "^37.0.0-alpha.1",
17
+ "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.3",
18
+ "@ckeditor/ckeditor5-block-quote": "^37.0.0-alpha.3",
19
+ "@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.3",
20
+ "@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
21
21
  "@ckeditor/ckeditor5-dev-utils": "^35.0.0",
22
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.1",
23
- "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.1",
24
- "@ckeditor/ckeditor5-link": "^37.0.0-alpha.1",
25
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.1",
26
- "@ckeditor/ckeditor5-table": "^37.0.0-alpha.1",
27
- "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.1",
28
- "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.1",
29
- "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.1",
30
- "@ckeditor/ckeditor5-undo": "^37.0.0-alpha.1",
31
- "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.1",
22
+ "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
23
+ "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3",
24
+ "@ckeditor/ckeditor5-link": "^37.0.0-alpha.3",
25
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
26
+ "@ckeditor/ckeditor5-table": "^37.0.0-alpha.3",
27
+ "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
28
+ "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.3",
29
+ "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3",
30
+ "@ckeditor/ckeditor5-undo": "^37.0.0-alpha.3",
31
+ "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3",
32
32
  "typescript": "^4.8.4",
33
33
  "webpack": "^5.58.1",
34
34
  "webpack-cli": "^4.9.0"
@@ -5,7 +5,9 @@
5
5
  /**
6
6
  * @module restricted-editing/restrictededitingmode
7
7
  */
8
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import RestrictedEditingModeEditing from './restrictededitingmodeediting';
10
+ import RestrictedEditingModeUI from './restrictededitingmodeui';
9
11
  import '../theme/restrictedediting.css';
10
12
  /**
11
13
  * The restricted editing mode plugin.
@@ -23,5 +25,5 @@ export default class RestrictedEditingMode extends Plugin {
23
25
  /**
24
26
  * @inheritDoc
25
27
  */
26
- static get requires(): PluginDependencies;
28
+ static get requires(): readonly [typeof RestrictedEditingModeEditing, typeof RestrictedEditingModeUI];
27
29
  }
@@ -5,7 +5,9 @@
5
5
  /**
6
6
  * @module restricted-editing/standardeditingmode
7
7
  */
8
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import StandardEditingModeEditing from './standardeditingmodeediting';
10
+ import StandardEditingModeUI from './standardeditingmodeui';
9
11
  import '../theme/restrictedediting.css';
10
12
  /**
11
13
  * The standard editing mode plugin.
@@ -20,5 +22,5 @@ export default class StandardEditingMode extends Plugin {
20
22
  * @inheritDoc
21
23
  */
22
24
  static get pluginName(): 'StandardEditingMode';
23
- static get requires(): PluginDependencies;
25
+ static get requires(): readonly [typeof StandardEditingModeEditing, typeof StandardEditingModeUI];
24
26
  }