ckeditor_font-8.x-1.x-dev/js/ckeditor5_plugins/ckeditor5-font/src/fontcolor.js
js/ckeditor5_plugins/ckeditor5-font/src/fontcolor.js
/**
* @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/**
* @module font/fontcolor
*/
import { Plugin } from 'ckeditor5/src/core.js';
import FontColorEditing from './fontcolor/fontcolorediting.js';
import FontColorUI from './fontcolor/fontcolorui.js';
/**
* The font 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/fontcolor/fontcolorediting~FontColorEditing} and
* {@link module:font/fontcolor/fontcolorui~FontColorUI} features in the editor.
*/
export default class FontColor extends Plugin {
/**
* @inheritDoc
*/
static get requires() {
return [FontColorEditing, FontColorUI];
}
/**
* @inheritDoc
*/
static get pluginName() {
return 'FontColor';
}
/**
* @inheritDoc
*/
static get isOfficialPlugin() {
return true;
}
}
