@ckeditor/ckeditor5-html-support 46.0.0-alpha.0 → 46.0.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": "46.0.0-alpha.0",
3
+ "version": "46.0.0-alpha.2",
4
4
  "description": "HTML Support feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -17,17 +17,17 @@
17
17
  "type": "module",
18
18
  "main": "src/index.js",
19
19
  "dependencies": {
20
- "@ckeditor/ckeditor5-core": "46.0.0-alpha.0",
21
- "@ckeditor/ckeditor5-engine": "46.0.0-alpha.0",
22
- "@ckeditor/ckeditor5-enter": "46.0.0-alpha.0",
23
- "@ckeditor/ckeditor5-heading": "46.0.0-alpha.0",
24
- "@ckeditor/ckeditor5-image": "46.0.0-alpha.0",
25
- "@ckeditor/ckeditor5-list": "46.0.0-alpha.0",
26
- "@ckeditor/ckeditor5-remove-format": "46.0.0-alpha.0",
27
- "@ckeditor/ckeditor5-table": "46.0.0-alpha.0",
28
- "@ckeditor/ckeditor5-utils": "46.0.0-alpha.0",
29
- "@ckeditor/ckeditor5-widget": "46.0.0-alpha.0",
30
- "ckeditor5": "46.0.0-alpha.0",
20
+ "@ckeditor/ckeditor5-core": "46.0.0-alpha.2",
21
+ "@ckeditor/ckeditor5-engine": "46.0.0-alpha.2",
22
+ "@ckeditor/ckeditor5-enter": "46.0.0-alpha.2",
23
+ "@ckeditor/ckeditor5-heading": "46.0.0-alpha.2",
24
+ "@ckeditor/ckeditor5-image": "46.0.0-alpha.2",
25
+ "@ckeditor/ckeditor5-list": "46.0.0-alpha.2",
26
+ "@ckeditor/ckeditor5-remove-format": "46.0.0-alpha.2",
27
+ "@ckeditor/ckeditor5-table": "46.0.0-alpha.2",
28
+ "@ckeditor/ckeditor5-utils": "46.0.0-alpha.2",
29
+ "@ckeditor/ckeditor5-widget": "46.0.0-alpha.2",
30
+ "ckeditor5": "46.0.0-alpha.2",
31
31
  "es-toolkit": "1.39.5"
32
32
  },
33
33
  "author": "CKSource (http://cksource.com/)",
@@ -6,6 +6,51 @@ import type { HtmlSupportDataSchemaBlockElementDefinition, HtmlSupportDataSchema
6
6
  /**
7
7
  * @module html-support/schemadefinitions
8
8
  */
9
+ /**
10
+ * Skipped elements due to HTML deprecation:
11
+ * * noframes (not sure if we should provide support for this element. CKE4 is not supporting frameset and frame,
12
+ * but it will unpack <frameset><noframes>foobar</noframes></frameset> to <noframes>foobar</noframes>, so there
13
+ * may be some content loss. Although using noframes as a standalone element seems invalid)
14
+ * * keygen (this one is also empty)
15
+ * * applet (support is limited mostly to old IE)
16
+ * * basefont (this one is also empty)
17
+ * * isindex (basically no support for modern browsers at all)
18
+ *
19
+ * Skipped elements due to lack empty element support:
20
+ * * hr
21
+ * * area
22
+ * * br
23
+ * * command
24
+ * * map
25
+ * * wbr
26
+ * * colgroup -> col
27
+ *
28
+ * Skipped elements due to complexity:
29
+ * * datalist with option elements used as a data source for input[list] element
30
+ *
31
+ * Skipped elements as they are handled as an object content:
32
+ * * track
33
+ * * source
34
+ * * option
35
+ * * param
36
+ * * optgroup
37
+ *
38
+ * Skipped full page HTML elements:
39
+ * * body
40
+ * * html
41
+ * * title
42
+ * * head
43
+ * * meta
44
+ * * link
45
+ * * etc...
46
+ *
47
+ * Skipped hidden elements:
48
+ * noscript
49
+ *
50
+ * When adding elements to this list, update the feature guide listing, too.
51
+ *
52
+ * @internal
53
+ */
9
54
  export declare const defaultConfig: {
10
55
  block: HtmlSupportDataSchemaBlockElementDefinition[];
11
56
  inline: HtmlSupportDataSchemaInlineElementDefinition[];
@@ -5,47 +5,51 @@
5
5
  /**
6
6
  * @module html-support/schemadefinitions
7
7
  */
8
- // Skipped elements due to HTML deprecation:
9
- // * noframes (not sure if we should provide support for this element. CKE4 is not supporting frameset and frame,
10
- // but it will unpack <frameset><noframes>foobar</noframes></frameset> to <noframes>foobar</noframes>, so there
11
- // may be some content loss. Although using noframes as a standalone element seems invalid)
12
- // * keygen (this one is also empty)
13
- // * applet (support is limited mostly to old IE)
14
- // * basefont (this one is also empty)
15
- // * isindex (basically no support for modern browsers at all)
16
- //
17
- // Skipped elements due to lack empty element support:
18
- // * hr
19
- // * area
20
- // * br
21
- // * command
22
- // * map
23
- // * wbr
24
- // * colgroup -> col
25
- //
26
- // Skipped elements due to complexity:
27
- // * datalist with option elements used as a data source for input[list] element
28
- //
29
- // Skipped elements as they are handled as an object content:
30
- // * track
31
- // * source
32
- // * option
33
- // * param
34
- // * optgroup
35
- //
36
- // Skipped full page HTML elements:
37
- // * body
38
- // * html
39
- // * title
40
- // * head
41
- // * meta
42
- // * link
43
- // * etc...
44
- //
45
- // Skipped hidden elements:
46
- // noscript
47
- //
48
- // When adding elements to this list, update the feature guide listing, too.
8
+ /**
9
+ * Skipped elements due to HTML deprecation:
10
+ * * noframes (not sure if we should provide support for this element. CKE4 is not supporting frameset and frame,
11
+ * but it will unpack <frameset><noframes>foobar</noframes></frameset> to <noframes>foobar</noframes>, so there
12
+ * may be some content loss. Although using noframes as a standalone element seems invalid)
13
+ * * keygen (this one is also empty)
14
+ * * applet (support is limited mostly to old IE)
15
+ * * basefont (this one is also empty)
16
+ * * isindex (basically no support for modern browsers at all)
17
+ *
18
+ * Skipped elements due to lack empty element support:
19
+ * * hr
20
+ * * area
21
+ * * br
22
+ * * command
23
+ * * map
24
+ * * wbr
25
+ * * colgroup -> col
26
+ *
27
+ * Skipped elements due to complexity:
28
+ * * datalist with option elements used as a data source for input[list] element
29
+ *
30
+ * Skipped elements as they are handled as an object content:
31
+ * * track
32
+ * * source
33
+ * * option
34
+ * * param
35
+ * * optgroup
36
+ *
37
+ * Skipped full page HTML elements:
38
+ * * body
39
+ * * html
40
+ * * title
41
+ * * head
42
+ * * meta
43
+ * * link
44
+ * * etc...
45
+ *
46
+ * Skipped hidden elements:
47
+ * noscript
48
+ *
49
+ * When adding elements to this list, update the feature guide listing, too.
50
+ *
51
+ * @internal
52
+ */
49
53
  export const defaultConfig = {
50
54
  block: [
51
55
  // Existing features.