@ckeditor/ckeditor5-font 37.0.0-alpha.2 → 37.0.0-alpha.3

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-font",
3
- "version": "37.0.0-alpha.2",
3
+ "version": "37.0.0-alpha.3",
4
4
  "description": "Font feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -12,19 +12,19 @@
12
12
  ],
13
13
  "main": "src/index.js",
14
14
  "dependencies": {
15
- "ckeditor5": "^37.0.0-alpha.2"
15
+ "ckeditor5": "^37.0.0-alpha.3"
16
16
  },
17
17
  "devDependencies": {
18
- "@ckeditor/ckeditor5-core": "^37.0.0-alpha.2",
18
+ "@ckeditor/ckeditor5-core": "^37.0.0-alpha.3",
19
19
  "@ckeditor/ckeditor5-dev-utils": "^35.0.0",
20
- "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.2",
21
- "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.2",
22
- "@ckeditor/ckeditor5-highlight": "^37.0.0-alpha.2",
23
- "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2",
24
- "@ckeditor/ckeditor5-table": "^37.0.0-alpha.2",
25
- "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.2",
26
- "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.2",
27
- "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.2",
20
+ "@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3",
21
+ "@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3",
22
+ "@ckeditor/ckeditor5-highlight": "^37.0.0-alpha.3",
23
+ "@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3",
24
+ "@ckeditor/ckeditor5-table": "^37.0.0-alpha.3",
25
+ "@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3",
26
+ "@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3",
27
+ "@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3",
28
28
  "typescript": "^4.8.4",
29
29
  "webpack": "^5.58.1",
30
30
  "webpack-cli": "^4.9.0"
package/src/font.d.ts CHANGED
@@ -5,7 +5,11 @@
5
5
  /**
6
6
  * @module font/font
7
7
  */
8
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import FontFamily from './fontfamily';
10
+ import FontSize from './fontsize';
11
+ import FontColor from './fontcolor';
12
+ import FontBackgroundColor from './fontbackgroundcolor';
9
13
  /**
10
14
  * A plugin that enables a set of text styling features:
11
15
  *
@@ -21,7 +25,7 @@ export default class Font extends Plugin {
21
25
  /**
22
26
  * @inheritDoc
23
27
  */
24
- static get requires(): PluginDependencies;
28
+ static get requires(): readonly [typeof FontFamily, typeof FontSize, typeof FontColor, typeof FontBackgroundColor];
25
29
  /**
26
30
  * @inheritDoc
27
31
  */
@@ -5,7 +5,9 @@
5
5
  /**
6
6
  * @module font/fontbackgroundcolor
7
7
  */
8
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import FontBackgroundColorEditing from './fontbackgroundcolor/fontbackgroundcolorediting';
10
+ import FontBackgroundColorUI from './fontbackgroundcolor/fontbackgroundcolorui';
9
11
  /**
10
12
  * The font background color plugin.
11
13
  *
@@ -20,7 +22,7 @@ export default class FontBackgroundColor extends Plugin {
20
22
  /**
21
23
  * @inheritDoc
22
24
  */
23
- static get requires(): PluginDependencies;
25
+ static get requires(): readonly [typeof FontBackgroundColorEditing, typeof FontBackgroundColorUI];
24
26
  /**
25
27
  * @inheritDoc
26
28
  */
@@ -2,7 +2,12 @@
2
2
  * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
4
  */
5
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
5
+ /**
6
+ * @module font/fontcolor
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import FontColorEditing from './fontcolor/fontcolorediting';
10
+ import FontColorUI from './fontcolor/fontcolorui';
6
11
  /**
7
12
  * The font color plugin.
8
13
  *
@@ -16,7 +21,7 @@ export default class FontColor extends Plugin {
16
21
  /**
17
22
  * @inheritDoc
18
23
  */
19
- static get requires(): PluginDependencies;
24
+ static get requires(): readonly [typeof FontColorEditing, typeof FontColorUI];
20
25
  /**
21
26
  * @inheritDoc
22
27
  */
package/src/fontcolor.js CHANGED
@@ -2,6 +2,9 @@
2
2
  * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
4
  */
5
+ /**
6
+ * @module font/fontcolor
7
+ */
5
8
  import { Plugin } from 'ckeditor5/src/core';
6
9
  import FontColorEditing from './fontcolor/fontcolorediting';
7
10
  import FontColorUI from './fontcolor/fontcolorui';
@@ -2,7 +2,12 @@
2
2
  * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
4
  */
5
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
5
+ /**
6
+ * @module font/fontfamily
7
+ */
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import FontFamilyEditing from './fontfamily/fontfamilyediting';
10
+ import FontFamilyUI from './fontfamily/fontfamilyui';
6
11
  /**
7
12
  * The font family plugin.
8
13
  *
@@ -16,7 +21,7 @@ export default class FontFamily extends Plugin {
16
21
  /**
17
22
  * @inheritDoc
18
23
  */
19
- static get requires(): PluginDependencies;
24
+ static get requires(): readonly [typeof FontFamilyEditing, typeof FontFamilyUI];
20
25
  /**
21
26
  * @inheritDoc
22
27
  */
package/src/fontfamily.js CHANGED
@@ -2,6 +2,9 @@
2
2
  * @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved.
3
3
  * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
4
  */
5
+ /**
6
+ * @module font/fontfamily
7
+ */
5
8
  import { Plugin } from 'ckeditor5/src/core';
6
9
  import FontFamilyEditing from './fontfamily/fontfamilyediting';
7
10
  import FontFamilyUI from './fontfamily/fontfamilyui';
package/src/fontsize.d.ts CHANGED
@@ -5,7 +5,9 @@
5
5
  /**
6
6
  * @module font/fontsize
7
7
  */
8
- import { Plugin, type PluginDependencies } from 'ckeditor5/src/core';
8
+ import { Plugin } from 'ckeditor5/src/core';
9
+ import FontSizeEditing from './fontsize/fontsizeediting';
10
+ import FontSizeUI from './fontsize/fontsizeui';
9
11
  import type { FontSizeOption } from './fontconfig';
10
12
  /**
11
13
  * The font size plugin.
@@ -20,7 +22,7 @@ export default class FontSize extends Plugin {
20
22
  /**
21
23
  * @inheritDoc
22
24
  */
23
- static get requires(): PluginDependencies;
25
+ static get requires(): readonly [typeof FontSizeEditing, typeof FontSizeUI];
24
26
  /**
25
27
  * @inheritDoc
26
28
  */