jodit-pro
Version:
PRO Version of Jodit Editor
25 lines (24 loc) • 924 B
TypeScript
/*!
* Jodit Editor PRO (https://xdsoft.net/jodit/)
* See LICENSE.md in the project root for license information.
* Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/
*/
import type { IDictionary, IJodit } from "jodit/esm/types/index";
import { UIBackupItem } from "./item";
import { UIGroup } from "jodit/esm/core/ui/index";
import type { ISnapshotItem } from "../interface";
export declare class UIBackupList extends UIGroup<IJodit> {
/** @override */
className(): string;
elements: UIBackupItem[];
/** @override */
protected createContainer(options?: IDictionary): HTMLElement;
constructor(jodit: IJodit);
build(items: ISnapshotItem[]): void;
private currentSelection;
onChangeCurrentSelection(_: unknown, old: number, index: number): void;
private onSelect;
private onChoose;
selectNext(): void;
selectPrevious(): void;
}