@ckeditor/ckeditor5-html-support 45.1.0 → 45.2.0-alpha.0
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/build/html-support.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +11 -11
- package/src/integrations/customelement.js +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-html-support",
|
|
3
|
-
"version": "45.
|
|
3
|
+
"version": "45.2.0-alpha.0",
|
|
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": "45.
|
|
21
|
-
"@ckeditor/ckeditor5-engine": "45.
|
|
22
|
-
"@ckeditor/ckeditor5-enter": "45.
|
|
23
|
-
"@ckeditor/ckeditor5-heading": "45.
|
|
24
|
-
"@ckeditor/ckeditor5-image": "45.
|
|
25
|
-
"@ckeditor/ckeditor5-list": "45.
|
|
26
|
-
"@ckeditor/ckeditor5-table": "45.
|
|
27
|
-
"@ckeditor/ckeditor5-utils": "45.
|
|
28
|
-
"@ckeditor/ckeditor5-widget": "45.
|
|
29
|
-
"ckeditor5": "45.
|
|
20
|
+
"@ckeditor/ckeditor5-core": "45.2.0-alpha.0",
|
|
21
|
+
"@ckeditor/ckeditor5-engine": "45.2.0-alpha.0",
|
|
22
|
+
"@ckeditor/ckeditor5-enter": "45.2.0-alpha.0",
|
|
23
|
+
"@ckeditor/ckeditor5-heading": "45.2.0-alpha.0",
|
|
24
|
+
"@ckeditor/ckeditor5-image": "45.2.0-alpha.0",
|
|
25
|
+
"@ckeditor/ckeditor5-list": "45.2.0-alpha.0",
|
|
26
|
+
"@ckeditor/ckeditor5-table": "45.2.0-alpha.0",
|
|
27
|
+
"@ckeditor/ckeditor5-utils": "45.2.0-alpha.0",
|
|
28
|
+
"@ckeditor/ckeditor5-widget": "45.2.0-alpha.0",
|
|
29
|
+
"ckeditor5": "45.2.0-alpha.0",
|
|
30
30
|
"es-toolkit": "1.32.0"
|
|
31
31
|
},
|
|
32
32
|
"author": "CKSource (http://cksource.com/)",
|
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
/**
|
|
6
6
|
* @module html-support/integrations/customelement
|
|
7
7
|
*/
|
|
8
|
-
/* globals document */
|
|
9
8
|
import { Plugin } from 'ckeditor5/src/core.js';
|
|
10
9
|
import { UpcastWriter } from 'ckeditor5/src/engine.js';
|
|
11
10
|
import DataSchema from '../dataschema.js';
|
|
@@ -155,7 +154,7 @@ function isValidElementName(name) {
|
|
|
155
154
|
try {
|
|
156
155
|
document.createElement(name);
|
|
157
156
|
}
|
|
158
|
-
catch
|
|
157
|
+
catch {
|
|
159
158
|
return false;
|
|
160
159
|
}
|
|
161
160
|
return true;
|