UNPKG

@ckeditor/ckeditor5-revision-history

Version:

Document revision history feature for CKEditor 5.

41 lines (40 loc) 834 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 revision-history/ui/revisionviewer/changesnavigationview */ import { View } from "@ckeditor/ckeditor5-ui"; import type { Locale } from "@ckeditor/ckeditor5-utils"; import "../../../theme/changesnavigation.css"; /** * TODO */ export declare class ChangesNavigationView extends View { /** * @observable */ isNavigationMode: boolean; /** * @observable */ isReady: boolean; /** * @observable */ currentChangeNumber: number; /** * @observable */ numberOfChanges: number; /** * @observable */ isForwardNavigationEnabled: boolean; /** * @observable */ isBackwardNavigationEnabled: boolean; constructor(locale: Locale); }