@ckeditor/ckeditor5-html-support 45.1.0 → 45.2.0-alpha.1

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": "45.1.0",
3
+ "version": "45.2.0-alpha.1",
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.1.0",
21
- "@ckeditor/ckeditor5-engine": "45.1.0",
22
- "@ckeditor/ckeditor5-enter": "45.1.0",
23
- "@ckeditor/ckeditor5-heading": "45.1.0",
24
- "@ckeditor/ckeditor5-image": "45.1.0",
25
- "@ckeditor/ckeditor5-list": "45.1.0",
26
- "@ckeditor/ckeditor5-table": "45.1.0",
27
- "@ckeditor/ckeditor5-utils": "45.1.0",
28
- "@ckeditor/ckeditor5-widget": "45.1.0",
29
- "ckeditor5": "45.1.0",
20
+ "@ckeditor/ckeditor5-core": "45.2.0-alpha.1",
21
+ "@ckeditor/ckeditor5-engine": "45.2.0-alpha.1",
22
+ "@ckeditor/ckeditor5-enter": "45.2.0-alpha.1",
23
+ "@ckeditor/ckeditor5-heading": "45.2.0-alpha.1",
24
+ "@ckeditor/ckeditor5-image": "45.2.0-alpha.1",
25
+ "@ckeditor/ckeditor5-list": "45.2.0-alpha.1",
26
+ "@ckeditor/ckeditor5-table": "45.2.0-alpha.1",
27
+ "@ckeditor/ckeditor5-utils": "45.2.0-alpha.1",
28
+ "@ckeditor/ckeditor5-widget": "45.2.0-alpha.1",
29
+ "ckeditor5": "45.2.0-alpha.1",
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 (error) {
157
+ catch {
159
158
  return false;
160
159
  }
161
160
  return true;