Я использую Angular 8 framework с CKeditor для сборки моего приложения.
Я установил модуль Ckeditor angular, он работает нормально.
Тем не менее, он не показывает кнопку цвета шрифта.
Согласно веб-странице , мне нужно установить и кнопку Цвет, и плагин Panel Button, чтобы сделать ее работает.
К сожалению, я не знаю, как установить эти плагины. Не могли бы вы сказать мне, как это сделать?
PS: Вот моя переменная "config":
this.config.toolbarGroups = [
{ name: 'document', groups: [ 'mode', 'document', 'doctools' ] },
{ name: 'clipboard', groups: [ 'clipboard', 'undo' ] },
{ name: 'editing', groups: [ 'find', 'selection', 'spellchecker', 'editing' ] },
{ name: 'forms', groups: [ 'forms' ] },
{ name: 'basicstyles', groups: [ 'basicstyles', 'cleanup' ] },
{ name: 'paragraph', groups: [ 'list', 'indent', 'blocks', 'align', 'bidi', 'paragraph' ] },
{ name: 'links', groups: [ 'links' ] },
{ name: 'insert', groups: [ 'insert' ] },
{ name: 'styles', groups: [ 'styles' ] },
{ name: 'colors', groups: [ 'colors' ] },
{ name: 'tools', groups: [ 'tools' ] },
{ name: 'others', groups: [ 'others' ] },
{ name: 'about', groups: [ 'about' ] }
];
this.config.removeButtons = 'Forms,Anchor,Underline,Strike,Subscript,Superscript,Link,Unlink,Styles,About,HorizontalRule,Blockquote,Italic,SpecialChar,Format,Outdent,NumberedList,Indent,BulletedList,RemoveFormat,Bold,PasteFromWord';
this.config.extraPlugins = 'colorbutton';