@ckeditor/ckeditor5-html-support 44.3.0-alpha.0 → 44.3.0-alpha.2

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-html-support",
3
- "version": "44.3.0-alpha.0",
3
+ "version": "44.3.0-alpha.2",
4
4
  "description": "HTML Support feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -17,16 +17,16 @@
17
17
  "type": "module",
18
18
  "main": "src/index.js",
19
19
  "dependencies": {
20
- "@ckeditor/ckeditor5-core": "44.3.0-alpha.0",
21
- "@ckeditor/ckeditor5-engine": "44.3.0-alpha.0",
22
- "@ckeditor/ckeditor5-enter": "44.3.0-alpha.0",
23
- "@ckeditor/ckeditor5-heading": "44.3.0-alpha.0",
24
- "@ckeditor/ckeditor5-image": "44.3.0-alpha.0",
25
- "@ckeditor/ckeditor5-list": "44.3.0-alpha.0",
26
- "@ckeditor/ckeditor5-table": "44.3.0-alpha.0",
27
- "@ckeditor/ckeditor5-utils": "44.3.0-alpha.0",
28
- "@ckeditor/ckeditor5-widget": "44.3.0-alpha.0",
29
- "ckeditor5": "44.3.0-alpha.0",
20
+ "@ckeditor/ckeditor5-core": "44.3.0-alpha.2",
21
+ "@ckeditor/ckeditor5-engine": "44.3.0-alpha.2",
22
+ "@ckeditor/ckeditor5-enter": "44.3.0-alpha.2",
23
+ "@ckeditor/ckeditor5-heading": "44.3.0-alpha.2",
24
+ "@ckeditor/ckeditor5-image": "44.3.0-alpha.2",
25
+ "@ckeditor/ckeditor5-list": "44.3.0-alpha.2",
26
+ "@ckeditor/ckeditor5-table": "44.3.0-alpha.2",
27
+ "@ckeditor/ckeditor5-utils": "44.3.0-alpha.2",
28
+ "@ckeditor/ckeditor5-widget": "44.3.0-alpha.2",
29
+ "ckeditor5": "44.3.0-alpha.2",
30
30
  "lodash-es": "4.17.21"
31
31
  },
32
32
  "author": "CKSource (http://cksource.com/)",
@@ -4,8 +4,8 @@
4
4
  */
5
5
  import { Plugin } from 'ckeditor5/src/core.js';
6
6
  /**
7
- * This is experimental plugin that allows for preserving empty block elements
8
- * in the editor content instead of automatically filling them with block fillers (` `).
7
+ * This plugin allows for preserving empty block elements in the editor content
8
+ * instead of automatically filling them with block fillers (` `).
9
9
  *
10
10
  * This is useful when you want to:
11
11
  *
@@ -33,8 +33,6 @@ import { Plugin } from 'ckeditor5/src/core.js';
33
33
  * <p class="spacer">&nbsp;</p>
34
34
  * <td>&nbsp;</td>
35
35
  * ```
36
- *
37
- * **Warning**: This is an experimental plugin. It may have bugs and breaking changes may be introduced without prior notice.
38
36
  */
39
37
  export default class EmptyBlock extends Plugin {
40
38
  /**
package/src/emptyblock.js CHANGED
@@ -5,8 +5,8 @@
5
5
  import { Plugin } from 'ckeditor5/src/core.js';
6
6
  const EMPTY_BLOCK_MODEL_ATTRIBUTE = 'htmlEmptyBlock';
7
7
  /**
8
- * This is experimental plugin that allows for preserving empty block elements
9
- * in the editor content instead of automatically filling them with block fillers (`&nbsp;`).
8
+ * This plugin allows for preserving empty block elements in the editor content
9
+ * instead of automatically filling them with block fillers (`&nbsp;`).
10
10
  *
11
11
  * This is useful when you want to:
12
12
  *
@@ -34,8 +34,6 @@ const EMPTY_BLOCK_MODEL_ATTRIBUTE = 'htmlEmptyBlock';
34
34
  * <p class="spacer">&nbsp;</p>
35
35
  * <td>&nbsp;</td>
36
36
  * ```
37
- *
38
- * **Warning**: This is an experimental plugin. It may have bugs and breaking changes may be introduced without prior notice.
39
37
  */
40
38
  export default class EmptyBlock extends Plugin {
41
39
  /**