ckeditor_font-8.x-1.x-dev/js/ckeditor5_plugins/ckeditor5-font/src/fontcolor/fontcolorui.js
js/ckeditor5_plugins/ckeditor5-font/src/fontcolor/fontcolorui.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/fontcolorui
*/
import ColorUI from '../ui/colorui.js';
import { FONT_COLOR } from '../utils.js';
import fontColorIcon from '../../theme/icons/font-color.svg';
/**
* The font color UI plugin. It introduces the `'fontColor'` dropdown.
*/
export default class FontColorUI extends ColorUI {
/**
* @inheritDoc
*/
constructor(editor) {
const t = editor.locale.t;
super(editor, {
commandName: FONT_COLOR,
componentName: FONT_COLOR,
icon: fontColorIcon,
dropdownLabel: t('Font Color')
});
}
/**
* @inheritDoc
*/
static get pluginName() {
return 'FontColorUI';
}
}
