@ckeditor/ckeditor5-paragraph 37.0.0-alpha.2 → 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-paragraph",
3
- "version": "37.0.0-alpha.2",
3
+ "version": "37.0.0-alpha.3",
4
4
  "description": "Paragraph feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,20 +12,20 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "@ckeditor/ckeditor5-core": "^37.0.0-alpha.2",
16
- "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.2",
17
- "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.2"
15
+ "@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
16
+ "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3",
17
+ "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3"
18
18
  },
19
19
  "devDependencies": {
20
- "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.2",
21
- "@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.2",
22
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.2",
23
- "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.2",
24
- "@ckeditor/ckeditor5-enter": "^37.0.0-alpha.2",
25
- "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.2",
26
- "@ckeditor/ckeditor5-link": "^37.0.0-alpha.2",
27
- "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.2",
28
- "@ckeditor/ckeditor5-undo": "^37.0.0-alpha.2",
20
+ "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.3",
21
+ "@ckeditor/ckeditor5-clipboard": "^37.0.0-alpha.3",
22
+ "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
23
+ "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3",
24
+ "@ckeditor/ckeditor5-enter": "^37.0.0-alpha.3",
25
+ "@ckeditor/ckeditor5-heading": "^37.0.0-alpha.3",
26
+ "@ckeditor/ckeditor5-link": "^37.0.0-alpha.3",
27
+ "@ckeditor/ckeditor5-typing": "^37.0.0-alpha.3",
28
+ "@ckeditor/ckeditor5-undo": "^37.0.0-alpha.3",
29
29
  "typescript": "^4.8.4",
30
30
  "webpack": "^5.58.1",
31
31
  "webpack-cli": "^4.9.0"
@@ -5,7 +5,8 @@
5
5
  /**
6
6
  * @module paragraph/paragraphbuttonui
7
7
  */
8
- import { Plugin, type PluginDependencies } from '@ckeditor/ckeditor5-core';
8
+ import { Plugin } from '@ckeditor/ckeditor5-core';
9
+ import Paragraph from './paragraph';
9
10
  /**
10
11
  * This plugin defines the `'paragraph'` button. It can be used together with
11
12
  * {@link module:heading/headingbuttonsui~HeadingButtonsUI} to replace the standard heading dropdown.
@@ -27,7 +28,7 @@ export default class ParagraphButtonUI extends Plugin {
27
28
  /**
28
29
  * @inheritDoc
29
30
  */
30
- static get requires(): PluginDependencies;
31
+ static get requires(): readonly [typeof Paragraph];
31
32
  /**
32
33
  * @inheritDoc
33
34
  */