1
0

add initial marp implementation with sample content and build configuration

This commit is contained in:
2025-09-13 18:13:22 +02:00
parent dcacc9b409
commit e5f219507f
10319 changed files with 1402023 additions and 0 deletions

28
node_modules/mj-context-menu/js/info.d.ts generated vendored Normal file
View File

@@ -0,0 +1,28 @@
import { ContextMenu } from './context_menu.js';
import { AbstractPostable } from './abstract_postable.js';
export declare class Info extends AbstractPostable {
private title;
private signature;
protected className: import("./html_classes.js").HtmlClass;
protected role: string;
protected contentDiv: HTMLElement;
menu: ContextMenu;
private close;
private content;
constructor(title: string, content: Function, signature: string);
attachMenu(menu: ContextMenu): void;
generateHtml(): void;
post(): void;
protected display(): void;
click(_event: MouseEvent): void;
keydown(event: KeyboardEvent): void;
escape(_event: KeyboardEvent): void;
unpost(): void;
private generateClose;
private generateTitle;
protected generateContent(): HTMLElement;
private generateSignature;
toJson(): {
type: string;
};
}