-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
Co-authored-by: Romuald Lemesle <[email protected]>
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
.eslintcache | ||
|
||
# dependencies | ||
/node_modules | ||
node_modules | ||
|
||
# testing | ||
/coverage | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/** | ||
* @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 { Bold, Code, Italic, Subscript, Superscript, Underline } from '@ckeditor/ckeditor5-basic-styles'; | ||
import { BlockQuote } from '@ckeditor/ckeditor5-block-quote'; | ||
import { CodeBlock } from '@ckeditor/ckeditor5-code-block'; | ||
import type { EditorConfig } from '@ckeditor/ckeditor5-core'; | ||
import { Essentials } from '@ckeditor/ckeditor5-essentials'; | ||
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 { AutoImage, Image, 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 } from '@ckeditor/ckeditor5-list'; | ||
import { MediaEmbed } from '@ckeditor/ckeditor5-media-embed'; | ||
import { PageBreak } from '@ckeditor/ckeditor5-page-break'; | ||
import { Paragraph } from '@ckeditor/ckeditor5-paragraph'; | ||
import { PasteFromOffice } from '@ckeditor/ckeditor5-paste-from-office'; | ||
import { RemoveFormat } from '@ckeditor/ckeditor5-remove-format'; | ||
import { SpecialCharacters } from '@ckeditor/ckeditor5-special-characters'; | ||
import { Table, TableColumnResize } from '@ckeditor/ckeditor5-table'; | ||
import { TextTransformation } from '@ckeditor/ckeditor5-typing'; | ||
import { Base64UploadAdapter } from '@ckeditor/ckeditor5-upload'; | ||
declare class Editor extends ClassicEditor { | ||
static builtinPlugins: (typeof Alignment | typeof AutoImage | typeof AutoLink | typeof Autoformat | typeof Base64UploadAdapter | typeof BlockQuote | typeof Bold | typeof Code | typeof CodeBlock | typeof Essentials | typeof FontBackgroundColor | typeof FontColor | typeof FontFamily | typeof FontSize | typeof Heading | typeof Highlight | typeof HorizontalLine | typeof Image | typeof ImageInsert | typeof ImageResize | typeof ImageStyle | typeof ImageToolbar | typeof ImageUpload | typeof Indent | typeof IndentBlock | typeof Italic | typeof Link | typeof LinkImage | typeof List | typeof MediaEmbed | typeof PageBreak | typeof Paragraph | typeof PasteFromOffice | typeof RemoveFormat | typeof SpecialCharacters | typeof Subscript | typeof Superscript | typeof Table | typeof TableColumnResize | typeof TextTransformation | typeof Underline)[]; | ||
static defaultConfig: EditorConfig; | ||
} | ||
export default Editor; |
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.