@progress/kendo-angular-editor
Version:
Kendo UI Editor for Angular
72 lines (71 loc) • 6.7 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
export { EditorComponent } from './editor.component';
export { EditorModule } from './editor.module';
export { schema } from './config/schema';
export { Schema } from '@progress/kendo-editor-common';
export { EditorState, Plugin, PluginKey, Transaction, EditorView, Decoration, DecorationSet, NodeType, Node, MarkType, Mark, InputRule, inputRules, wrappingInputRule, textblockTypeInputRule, keymap, baseKeymap, history, dropCursor, gapCursor, tableNodes, NodeSpec, MarkSpec, TextSelection, NodeSelection, CellSelection, AllSelection, flattenNestedSpans } from '@progress/kendo-editor-common';
export { getSelectionText } from './util';
export { PluginsFn } from './common/plugins-function';
export { ApplyToWordOptions } from './common/apply-to-word-options';
export { EditorResizableOptions } from './common/resizable-options.interface';
export { FontSizeItem } from './common/font-size-item.interface';
export { FontFamilyItem } from './common/font-family-item.interface';
export { EditorPasteEvent } from './preventable-events/paste-event';
export { PasteCleanupSettings } from './common/paste-cleanup-settings';
export { EditorCommand, DialogCommand } from './common/commands';
export { FormatItem } from './common/format-item.interface';
export { PopupTableGridComponent } from './tools/tables/popup-table-grid.component';
export { FormatDropDownListComponent } from './tools/format/editor-format-dropdownlist.component';
export { FontFamilyDropDownListComponent } from './tools/fontfamily/editor-fontfamily-dropdownlist.component';
export { FontSizeDropDownListComponent } from './tools/fontsize/editor-fontsize-dropdownlist.component';
export { EditorFormatComponent } from './tools/format/editor-format.component';
export { EditorFontSizeComponent } from './tools/fontsize/editor-fontsize.component';
export { EditorFontFamilyComponent } from './tools/fontfamily/editor-fontfamily.component';
export { EditorColorPickerComponent } from './tools/colorpicker/editor-colorpicker.component';
export { EditorInsertTableButtonComponent } from './tools/tables/editor-insert-table-button.component';
export { EditorAlignLeftButtonDirective } from './tools/alignment/editor-align-left-button.directive';
export { EditorAlignCenterButtonDirective } from './tools/alignment/editor-align-center-button.directive';
export { EditorAlignRightButtonDirective } from './tools/alignment/editor-align-right-button.directive';
export { EditorAlignJustifyButtonDirective } from './tools/alignment/editor-align-justify-button.directive';
export { EditorRedoButtonDirective } from './tools/history/editor-redo-button.directive';
export { EditorUndoButtonDirective } from './tools/history/editor-undo-button.directive';
export { EditorInsertImageButtonDirective } from './tools/image/editor-insert-image-button.directive';
export { EditorIndentButtonDirective } from './tools/indentation/editor-indent-button.directive';
export { EditorOutdentButtonDirective } from './tools/indentation/editor-outdent-button.directive';
export { EditorCreateLinkButtonDirective } from './tools/link/editor-create-link-button.directive';
export { EditorUnlinkButtonDirective } from './tools/link/editor-unlink-button.directive';
export { EditorInsertOrderedListButtonDirective } from './tools/list/editor-insert-ordered-list-button.directive';
export { EditorInsertUnorderedListButtonDirective } from './tools/list/editor-insert-unordered-list-button.directive';
export { EditorViewSourceButtonDirective } from './tools/source/editor-view-source-button.directive';
export { EditorBoldButtonDirective } from './tools/typographical-emphasis/editor-bold-button.directive';
export { EditorItalicButtonDirective } from './tools/typographical-emphasis/editor-italic-button.directive';
export { EditorUnderlineButtonDirective } from './tools/typographical-emphasis/editor-underline-button.directive';
export { EditorStrikethroughButtonDirective } from './tools/typographical-emphasis/editor-strikethrough-button.directive';
export { EditorSubscriptButtonDirective } from './tools/typographical-emphasis/editor-subscript-button.directive';
export { EditorSuperscriptButtonDirective } from './tools/typographical-emphasis/editor-superscript-button.directive';
export { EditorInsertFileButtonDirective } from './tools/link/editor-insert-file-button.directive';
export { EditorForeColorDirective } from './tools/colorpicker/editor-fore-color.directive';
export { EditorBackColorDirective } from './tools/colorpicker/editor-back-color.directive';
export { EditorCleanFormattingButtonDirective } from './tools/editor-clean-formatting-button.directive';
export { EditorAddColumnBeforeButtonDirective } from './tools/tables/editor-add-column-before-button.directive';
export { EditorAddColumnAfterButtonDirective } from './tools/tables/editor-add-column-after-button.directive';
export { EditorAddRowBeforeButtonDirective } from './tools/tables/editor-add-row-before-button.directive';
export { EditorAddRowAfterButtonDirective } from './tools/tables/editor-add-row-after-button.directive';
export { EditorDeleteColumnButtonDirective } from './tools/tables/editor-delete-column-button.directive';
export { EditorDeleteRowButtonDirective } from './tools/tables/editor-delete-row-button.directive';
export { EditorDeleteTableButtonDirective } from './tools/tables/editor-delete-table-button.directive';
export { EditorMergeCellsButtonDirective } from './tools/tables/editor-merge-cells-button.directive';
export { EditorSplitCellButtonDirective } from './tools/tables/editor-split-cell-button.directive';
export { CustomMessagesComponent } from './localization/custom-messages.component';
export { LocalizedMessagesDirective } from './localization/localized-messages.directive';
export { DropDownToolDirective } from './tools/shared/dropdown-tool.directive';
export { EditorBlockquoteDirective } from './tools/blockquote/editor-blockquote-button.directive';
export { EditorPrintDirective } from './tools/print/editor-print-button.directive';
export { EditorSelectAllButtonDirective } from './tools/select-all/select-all-button.directive';
export { PreventableEvent } from './preventable-events/preventable-event';
export { EditorCssSettings } from './common/css-settings.interface';
export { EditorLocalizationService } from './localization/editor-localization.service';
export * from './directives';