@ckeditor/ckeditor5-typing
Version:
Typing feature for CKEditor 5.
27 lines (26 loc) • 1.7 kB
TypeScript
/**
* @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options
*/
/**
* @module typing
*/
export { Typing } from "./typing.js";
export { Input } from "./input.js";
export { Delete } from "./delete.js";
export { TextWatcher } from "./textwatcher.js";
export { TwoStepCaretMovement } from "./twostepcaretmovement.js";
export { TextTransformation } from "./texttransformation.js";
export type { TextTransformationConfig } from "./typingconfig.js";
export { inlineHighlight } from "./utils/inlinehighlight.js";
export { findAttributeRange, findAttributeRangeBound } from "./utils/findattributerange.js";
export { getLastTextLine, type LastTextLineData } from "./utils/getlasttextline.js";
export { TypingChangeBuffer } from "./utils/changebuffer.js";
export { InsertTextCommand, type InsertTextCommandExecuteEvent, type InsertTextCommandOptions } from "./inserttextcommand.js";
export { DeleteCommand } from "./deletecommand.js";
export { DeleteObserver as _DeleteObserver, type DeleteEventData } from "./deleteobserver.js";
export type { TypingConfig, TextTypingTransformationDescription } from "./typingconfig.js";
export type { ViewDocumentDeleteEvent } from "./deleteobserver.js";
export { type ViewDocumentInsertTextEvent, type InsertTextEventData, InsertTextObserver } from "./inserttextobserver.js";
export type { TextWatcherMatchedEvent, TextWatcherMatchedDataEvent, TextWatcherMatchedTypingDataEventData, TextWatcherMatchedTypingSelectionEvent, TextWatcherMatchedTypingSelectionEventData, TextWatcherUnmatchedTypingEvent } from "./textwatcher.js";
import "./augmentation.js";