UNPKG

@ckeditor/ckeditor5-font

Version:

Font feature for CKEditor 5.

35 lines (34 loc) 1.24 kB
/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module font/fontbackgroundcolor */ import { Plugin, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core"; import { FontBackgroundColorEditing } from "./fontbackgroundcolor/fontbackgroundcolorediting.js"; import { FontBackgroundColorUI } from "./fontbackgroundcolor/fontbackgroundcolorui.js"; /** * The font background color plugin. * * For a detailed overview, check the {@glink features/font font feature} documentation * and the {@glink api/font package page}. * * This is a "glue" plugin which loads * the {@link module:font/fontbackgroundcolor/fontbackgroundcolorediting~FontBackgroundColorEditing} and * {@link module:font/fontbackgroundcolor/fontbackgroundcolorui~FontBackgroundColorUI} features in the editor. */ export declare class FontBackgroundColor extends Plugin { /** * @inheritDoc */ static get requires(): PluginDependenciesOf<[FontBackgroundColorEditing, FontBackgroundColorUI]>; /** * @inheritDoc */ static get pluginName(): "FontBackgroundColor"; /** * @inheritDoc */ static override get isOfficialPlugin(): true; }