@ckeditor/ckeditor5-font
Advanced tools
Comparing version 37.0.0-alpha.2 to 37.0.0-alpha.3
{ | ||
"name": "@ckeditor/ckeditor5-font", | ||
"version": "37.0.0-alpha.2", | ||
"version": "37.0.0-alpha.3", | ||
"description": "Font feature for CKEditor 5.", | ||
@@ -15,15 +15,15 @@ "keywords": [ | ||
"dependencies": { | ||
"ckeditor5": "^37.0.0-alpha.2" | ||
"ckeditor5": "^37.0.0-alpha.3" | ||
}, | ||
"devDependencies": { | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-core": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-dev-utils": "^35.0.0", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-highlight": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.2", | ||
"@ckeditor/ckeditor5-editor-classic": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-engine": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-highlight": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-paragraph": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-table": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-theme-lark": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-ui": "^37.0.0-alpha.3", | ||
"@ckeditor/ckeditor5-utils": "^37.0.0-alpha.3", | ||
"typescript": "^4.8.4", | ||
@@ -30,0 +30,0 @@ "webpack": "^5.58.1", |
@@ -8,3 +8,7 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import FontFamily from './fontfamily'; | ||
import FontSize from './fontsize'; | ||
import FontColor from './fontcolor'; | ||
import FontBackgroundColor from './fontbackgroundcolor'; | ||
/** | ||
@@ -25,3 +29,3 @@ * A plugin that enables a set of text styling features: | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof FontFamily, typeof FontSize, typeof FontColor, typeof FontBackgroundColor]; | ||
/** | ||
@@ -28,0 +32,0 @@ * @inheritDoc |
@@ -8,3 +8,5 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import FontBackgroundColorEditing from './fontbackgroundcolor/fontbackgroundcolorediting'; | ||
import FontBackgroundColorUI from './fontbackgroundcolor/fontbackgroundcolorui'; | ||
/** | ||
@@ -24,3 +26,3 @@ * The font background color plugin. | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof FontBackgroundColorEditing, typeof FontBackgroundColorUI]; | ||
/** | ||
@@ -27,0 +29,0 @@ * @inheritDoc |
@@ -5,4 +5,9 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
/** | ||
* @module font/fontcolor | ||
*/ | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import FontColorEditing from './fontcolor/fontcolorediting'; | ||
import FontColorUI from './fontcolor/fontcolorui'; | ||
/** | ||
* The font color plugin. | ||
@@ -20,3 +25,3 @@ * | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof FontColorEditing, typeof FontColorUI]; | ||
/** | ||
@@ -23,0 +28,0 @@ * @inheritDoc |
@@ -5,2 +5,5 @@ /** | ||
*/ | ||
/** | ||
* @module font/fontcolor | ||
*/ | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
@@ -7,0 +10,0 @@ import FontColorEditing from './fontcolor/fontcolorediting'; |
@@ -5,4 +5,9 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
/** | ||
* @module font/fontfamily | ||
*/ | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import FontFamilyEditing from './fontfamily/fontfamilyediting'; | ||
import FontFamilyUI from './fontfamily/fontfamilyui'; | ||
/** | ||
* The font family plugin. | ||
@@ -20,3 +25,3 @@ * | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof FontFamilyEditing, typeof FontFamilyUI]; | ||
/** | ||
@@ -23,0 +28,0 @@ * @inheritDoc |
@@ -5,2 +5,5 @@ /** | ||
*/ | ||
/** | ||
* @module font/fontfamily | ||
*/ | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
@@ -7,0 +10,0 @@ import FontFamilyEditing from './fontfamily/fontfamilyediting'; |
@@ -8,3 +8,5 @@ /** | ||
*/ | ||
import { Plugin, type PluginDependencies } from 'ckeditor5/src/core'; | ||
import { Plugin } from 'ckeditor5/src/core'; | ||
import FontSizeEditing from './fontsize/fontsizeediting'; | ||
import FontSizeUI from './fontsize/fontsizeui'; | ||
import type { FontSizeOption } from './fontconfig'; | ||
@@ -24,3 +26,3 @@ /** | ||
*/ | ||
static get requires(): PluginDependencies; | ||
static get requires(): readonly [typeof FontSizeEditing, typeof FontSizeUI]; | ||
/** | ||
@@ -27,0 +29,0 @@ * @inheritDoc |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
293611
3502
Updatedckeditor5@^37.0.0-alpha.3