UNPKG

@ckeditor/ckeditor5-track-changes

Version:

CKEditor 5 track changes plugin.

32 lines (31 loc) 958 B
/** * @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 track-changes/trackchangespreview * @publicApi */ import { Plugin, type Editor, type PluginDependenciesOf } from "@ckeditor/ckeditor5-core"; import { Dialog } from "@ckeditor/ckeditor5-ui"; import { TrackChangesData } from "./trackchangesdata.js"; import "../theme/trackchangespreview.css"; /** * Plugin allowing to preview the final content where all the suggestions are accepted. */ export declare class TrackChangesPreview extends Plugin { static get requires(): PluginDependenciesOf<[TrackChangesData, Dialog]>; static get pluginName(): "TrackChangesPreview"; /** * @inheritDoc */ static override get isOfficialPlugin(): true; /** * @inheritDoc */ static override get isPremiumPlugin(): true; /** * @inheritDoc */ constructor(editor: Editor); }