on-codemerge
Version:
A WYSIWYG editor for on-codemerge is a user-friendly interface that allows users to edit and view their code in real time, exactly as it will appear in the final product
24 lines (23 loc) • 681 B
TypeScript
import { HTMLEditor } from '../../../core/HTMLEditor';
export declare const navigationIcons: {
arrowUp: string;
arrowDown: string;
arrowLeft: string;
arrowRight: string;
remove: string;
};
export declare const mergeIcon = "\uD83D\uDFF0";
export declare const splitIcon = "\u2702\uFE0F";
export declare class TableContextMenu {
private contextMenu;
private activeCell;
private popupManager;
private colorPicker;
constructor(editor: HTMLEditor);
private handleBorderConfirm;
private setupColorPicker;
private executeAction;
show(cell: HTMLTableCellElement, x: number, y: number): void;
hide(): void;
destroy(): void;
}