Started to rewrite CKEDITOR placeholder plugin for CKEDITOR5.

This commit is contained in:
Jan Böhmer 2022-07-29 01:03:17 +02:00
parent a33e93826a
commit eba89cee62
8 changed files with 374 additions and 1 deletions

View file

@ -0,0 +1,16 @@
import PartDBLabelUI from "./PartDBLabelUI";
import PartDBLabelEditing from "./PartDBLabelEditing";
import "./PartDBLabel.css";
import Plugin from "@ckeditor/ckeditor5-core/src/plugin";
export default class PartDBLabel extends Plugin {
static get requires() {
return [PartDBLabelUI, PartDBLabelEditing];
}
static get pluginName() {
return 'PartDBLabel';
}
}