@alitons/ckeditor5 0.0.2 → 0.0.3
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.
- package/build/ckeditor.d.ts +1 -0
- package/build/ckeditor.js +16 -16
- package/build/ckeditor.js.map +1 -1
- package/build/plugins/modelo.d.ts +3 -0
- package/package.json +2 -2
- package/sample/script.js +16 -16
- package/src/ckeditor.ts +1 -0
- package/src/css/custom.css +3 -0
- package/src/plugins/modelo.ts +108 -39
package/build/ckeditor.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ import { TextTransformation } from '@ckeditor/ckeditor5-typing';
|
|
|
40
40
|
import { EditorWatchdog } from '@ckeditor/ckeditor5-watchdog';
|
|
41
41
|
import { WordCount } from '@ckeditor/ckeditor5-word-count';
|
|
42
42
|
import ImportarSei from './plugins/sei';
|
|
43
|
+
import './css/custom.css';
|
|
43
44
|
declare class Editor extends DecoupledEditor {
|
|
44
45
|
static builtinPlugins: (typeof ImportarSei | typeof Alignment | typeof AutoImage | typeof AutoLink | typeof Autoformat | typeof Autosave | typeof BlockQuote | typeof Bold | typeof CloudServices | typeof Code | typeof CodeBlock | typeof DataFilter | typeof DataSchema | typeof Essentials | typeof FindAndReplace | typeof FontBackgroundColor | typeof FontColor | typeof FontFamily | typeof FontSize | typeof GeneralHtmlSupport | typeof Heading | typeof Highlight | typeof HorizontalLine | typeof HtmlComment | typeof HtmlEmbed | typeof Image | typeof ImageCaption | typeof ImageInsert | typeof ImageResize | typeof ImageStyle | typeof ImageToolbar | typeof ImageUpload | typeof Indent | typeof IndentBlock | typeof Italic | typeof Link | typeof LinkImage | typeof List | typeof ListProperties | typeof MediaEmbed | typeof Mention | typeof PageBreak | typeof Paragraph | typeof PasteFromOffice | typeof RemoveFormat | typeof SelectAll | typeof ShowBlocks | typeof SourceEditing | typeof SpecialCharacters | typeof SpecialCharactersArrows | typeof SpecialCharactersCurrency | typeof SpecialCharactersEssentials | typeof SpecialCharactersLatin | typeof SpecialCharactersMathematical | typeof SpecialCharactersText | typeof StandardEditingMode | typeof Strikethrough | typeof Style | typeof Subscript | typeof Superscript | typeof Table | typeof TableCaption | typeof TableCellProperties | typeof TableColumnResize | typeof TableProperties | typeof TableToolbar | typeof TextPartLanguage | typeof TextTransformation | typeof TodoList | typeof Underline | typeof WordCount)[];
|
|
45
46
|
static defaultConfig: {
|