@ckeditor/ckeditor5-html-embed 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.
Files changed (2) hide show
  1. package/package.json +13 -13
  2. package/src/htmlembed.d.ts +5 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-html-embed",
3
- "version": "37.0.0-alpha.2",
3
+ "version": "37.0.0-alpha.3",
4
4
  "description": "HTML embed 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
- "ckeditor5": "^37.0.0-alpha.2"
15
+ "ckeditor5": "^37.0.0-alpha.3"
16
16
  },
17
17
  "devDependencies": {
18
- "@ckeditor/ckeditor5-basic-styles": "^37.0.0-alpha.2",
19
- "@ckeditor/ckeditor5-core": "^37.0.0-alpha.2",
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-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-media-embed": "^37.0.0-alpha.2",
25
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2",
26
- "@ckeditor/ckeditor5-table": "^37.0.0-alpha.2",
27
- "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.2",
28
- "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.2",
29
- "@ckeditor/ckeditor5-widget": "^37.0.0-alpha.2",
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-media-embed": "^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-ui": "^37.0.0-alpha.3",
28
+ "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
29
+ "@ckeditor/ckeditor5-widget": "^37.0.0-alpha.3",
30
30
  "lodash-es": "^4.17.15",
31
31
  "sanitize-html": "^2.1.0",
32
32
  "typescript": "^4.8.4",
@@ -5,7 +5,10 @@
5
5
  /**
6
6
  * @module html-embed/htmlembed
7
7
  */
8
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import { Widget } from 'ckeditor5/src/widget';
10
+ import HtmlEmbedEditing from './htmlembedediting';
11
+ import HtmlEmbedUI from './htmlembedui';
9
12
  /**
10
13
  * The HTML embed feature.
11
14
  *
@@ -17,7 +20,7 @@ export default class HtmlEmbed extends Plugin {
17
20
  /**
18
21
  * @inheritDoc
19
22
  */
20
- static get requires(): PluginDependencies;
23
+ static get requires(): readonly [typeof HtmlEmbedEditing, typeof HtmlEmbedUI, typeof Widget];
21
24
  /**
22
25
  * @inheritDoc
23
26
  */