@alitons/ckeditor5 0.0.16 → 0.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -35,9 +35,19 @@ import { EditorWatchdog } from '@ckeditor/ckeditor5-watchdog';
35
35
  import ImportarSei from './plugins/sei';
36
36
  import NumberedDivList from './plugins/listaNumerada';
37
37
  import './css/custom.css';
38
+ import './css/sei.css';
38
39
  declare class Editor extends DecoupledEditor {
39
40
  static builtinPlugins: (typeof NumberedDivList | typeof Alignment | typeof Autoformat | typeof Superscript | typeof Subscript | typeof Bold | typeof Code | typeof Italic | typeof Strikethrough | typeof Underline | typeof BlockQuote | typeof CloudServices | typeof CodeBlock | typeof SelectAll | typeof Essentials | typeof FontBackgroundColor | typeof FontColor | typeof FontFamily | typeof FontSize | typeof Heading | typeof Highlight | typeof HorizontalLine | typeof HtmlEmbed | typeof DataFilter | typeof Image | typeof ImageCaption | typeof ImageInsert | typeof ImageResize | typeof ImageStyle | typeof ImageToolbar | typeof ImageUpload | typeof Indent | typeof TextPartLanguage | typeof Link | typeof LinkImage | typeof List | typeof ListProperties | typeof TodoList | typeof MediaEmbed | typeof Mention | typeof PageBreak | typeof RemoveFormat | typeof StandardEditingMode | typeof ShowBlocks | typeof SpecialCharactersEssentials | typeof Style | typeof Table | typeof TableCaption | typeof TableCellProperties | typeof TableColumnResize | typeof TableProperties | typeof TableToolbar | typeof ImportarSei)[];
40
41
  static defaultConfig: {
42
+ extraAllowedContent: string;
43
+ htmlSupport: {
44
+ allow: {
45
+ name: string;
46
+ classes: boolean;
47
+ attributes: boolean;
48
+ styles: boolean;
49
+ }[];
50
+ };
41
51
  toolbar: {
42
52
  items: string[];
43
53
  shouldNotGroupWhenFull: boolean;