UNPKG

@binay7587/ckeditor5-full-free

Version:

Powerful rich text editor framework with a modular architecture, modern integrations, and features like collaborative editing.

54 lines (53 loc) 5.09 kB
/** * @license Copyright (c) 2014-2023, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license */ import { ClassicEditor } from '@ckeditor/ckeditor5-editor-classic'; import { Alignment } from '@ckeditor/ckeditor5-alignment'; import { Autoformat } from '@ckeditor/ckeditor5-autoformat'; import { Autosave } from '@ckeditor/ckeditor5-autosave'; import { Bold, Code, Italic, Strikethrough, Subscript, Superscript, Underline } from '@ckeditor/ckeditor5-basic-styles'; import { BlockQuote } from '@ckeditor/ckeditor5-block-quote'; import { CloudServices } from '@ckeditor/ckeditor5-cloud-services'; import { CodeBlock } from '@ckeditor/ckeditor5-code-block'; import type { EditorConfig } from '@ckeditor/ckeditor5-core'; import { Essentials } from '@ckeditor/ckeditor5-essentials'; import { FindAndReplace } from '@ckeditor/ckeditor5-find-and-replace'; import { FontBackgroundColor, FontColor, FontFamily, FontSize } from '@ckeditor/ckeditor5-font'; import { Heading } from '@ckeditor/ckeditor5-heading'; import { Highlight } from '@ckeditor/ckeditor5-highlight'; import { HorizontalLine } from '@ckeditor/ckeditor5-horizontal-line'; import { HtmlEmbed } from '@ckeditor/ckeditor5-html-embed'; import { GeneralHtmlSupport, HtmlComment } from '@ckeditor/ckeditor5-html-support'; import { AutoImage, Image, ImageCaption, ImageInsert, ImageResize, ImageStyle, ImageToolbar, ImageUpload } from '@ckeditor/ckeditor5-image'; import { Indent, IndentBlock } from '@ckeditor/ckeditor5-indent'; import { AutoLink, Link, LinkImage } from '@ckeditor/ckeditor5-link'; import { List, ListProperties } from '@ckeditor/ckeditor5-list'; import { MediaEmbed, MediaEmbedToolbar } from '@ckeditor/ckeditor5-media-embed'; import { Mention } from '@ckeditor/ckeditor5-mention'; import { PageBreak } from '@ckeditor/ckeditor5-page-break'; import { Paragraph } from '@ckeditor/ckeditor5-paragraph'; import { PasteFromMarkdownExperimental } from '@ckeditor/ckeditor5-markdown-gfm'; import { PasteFromOffice } from '@ckeditor/ckeditor5-paste-from-office'; import { RemoveFormat } from '@ckeditor/ckeditor5-remove-format'; import { StandardEditingMode } from '@ckeditor/ckeditor5-restricted-editing'; import { SelectAll } from '@ckeditor/ckeditor5-select-all'; import { ShowBlocks } from '@ckeditor/ckeditor5-show-blocks'; import { SpecialCharacters, SpecialCharactersArrows, SpecialCharactersCurrency, SpecialCharactersEssentials, SpecialCharactersLatin, SpecialCharactersMathematical, SpecialCharactersText } from '@ckeditor/ckeditor5-special-characters'; import { Style } from '@ckeditor/ckeditor5-style'; import { Table, TableCaption, TableCellProperties, TableColumnResize, TableProperties, TableToolbar } from '@ckeditor/ckeditor5-table'; import { TextTransformation } from '@ckeditor/ckeditor5-typing'; import { SimpleUploadAdapter } from '@ckeditor/ckeditor5-upload'; import { WordCount } from '@ckeditor/ckeditor5-word-count'; import { ExportPdf } from '@ckeditor/ckeditor5-export-pdf'; import { ExportWord } from '@ckeditor/ckeditor5-export-word'; import { SourceEditing } from '@ckeditor/ckeditor5-source-editing'; /** * Enrich the special characters plugin with emojis. */ declare function SpecialCharactersEmoji(editor: any): void; declare class Editor extends ClassicEditor { static builtinPlugins: (typeof Alignment | typeof AutoImage | typeof AutoLink | typeof Autoformat | typeof Autosave | typeof BlockQuote | typeof Bold | typeof CloudServices | typeof Code | typeof CodeBlock | 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 MediaEmbedToolbar | typeof Mention | typeof PageBreak | typeof Paragraph | typeof PasteFromMarkdownExperimental | typeof PasteFromOffice | typeof RemoveFormat | typeof SelectAll | typeof ShowBlocks | typeof SimpleUploadAdapter | typeof SpecialCharacters | typeof SpecialCharactersArrows | typeof SpecialCharactersCurrency | typeof SpecialCharactersEssentials | typeof SpecialCharactersLatin | typeof SpecialCharactersMathematical | typeof SpecialCharactersText | typeof SpecialCharactersEmoji | typeof StandardEditingMode | typeof Strikethrough | typeof Style | typeof Subscript | typeof Superscript | typeof Table | typeof TableCaption | typeof TableCellProperties | typeof TableColumnResize | typeof TableProperties | typeof TableToolbar | typeof TextTransformation | typeof Underline | typeof WordCount | typeof ExportPdf | typeof ExportWord | typeof SourceEditing)[]; static defaultConfig: EditorConfig; } export default Editor;