@ckeditor/ckeditor5-html-support 46.1.1 → 47.0.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": "46.1.1",
3
+ "version": "47.0.0-alpha.1",
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.1.1",
21
- "@ckeditor/ckeditor5-engine": "46.1.1",
22
- "@ckeditor/ckeditor5-enter": "46.1.1",
23
- "@ckeditor/ckeditor5-heading": "46.1.1",
24
- "@ckeditor/ckeditor5-image": "46.1.1",
25
- "@ckeditor/ckeditor5-list": "46.1.1",
26
- "@ckeditor/ckeditor5-remove-format": "46.1.1",
27
- "@ckeditor/ckeditor5-table": "46.1.1",
28
- "@ckeditor/ckeditor5-utils": "46.1.1",
29
- "@ckeditor/ckeditor5-widget": "46.1.1",
30
- "ckeditor5": "46.1.1",
20
+ "@ckeditor/ckeditor5-core": "47.0.0-alpha.1",
21
+ "@ckeditor/ckeditor5-engine": "47.0.0-alpha.1",
22
+ "@ckeditor/ckeditor5-enter": "47.0.0-alpha.1",
23
+ "@ckeditor/ckeditor5-heading": "47.0.0-alpha.1",
24
+ "@ckeditor/ckeditor5-image": "47.0.0-alpha.1",
25
+ "@ckeditor/ckeditor5-list": "47.0.0-alpha.1",
26
+ "@ckeditor/ckeditor5-remove-format": "47.0.0-alpha.1",
27
+ "@ckeditor/ckeditor5-table": "47.0.0-alpha.1",
28
+ "@ckeditor/ckeditor5-utils": "47.0.0-alpha.1",
29
+ "@ckeditor/ckeditor5-widget": "47.0.0-alpha.1",
30
+ "ckeditor5": "47.0.0-alpha.1",
31
31
  "es-toolkit": "1.39.5"
32
32
  },
33
33
  "author": "CKSource (http://cksource.com/)",
package/src/fullpage.d.ts CHANGED
@@ -14,10 +14,19 @@ export declare class FullPage extends Plugin {
14
14
  * @inheritDoc
15
15
  */
16
16
  static get pluginName(): "FullPage";
17
+ /**
18
+ * @inheritDoc
19
+ * @internal
20
+ */
21
+ static get licenseFeatureCode(): string;
17
22
  /**
18
23
  * @inheritDoc
19
24
  */
20
25
  static get isOfficialPlugin(): true;
26
+ /**
27
+ * @inheritDoc
28
+ */
29
+ static get isPremiumPlugin(): true;
21
30
  /**
22
31
  * @inheritDoc
23
32
  */
package/src/fullpage.js CHANGED
@@ -19,12 +19,25 @@ export class FullPage extends Plugin {
19
19
  static get pluginName() {
20
20
  return 'FullPage';
21
21
  }
22
+ /**
23
+ * @inheritDoc
24
+ * @internal
25
+ */
26
+ static get licenseFeatureCode() {
27
+ return 'FPH';
28
+ }
22
29
  /**
23
30
  * @inheritDoc
24
31
  */
25
32
  static get isOfficialPlugin() {
26
33
  return true;
27
34
  }
35
+ /**
36
+ * @inheritDoc
37
+ */
38
+ static get isPremiumPlugin() {
39
+ return true;
40
+ }
28
41
  /**
29
42
  * @inheritDoc
30
43
  */