Update framework

This commit is contained in:
2022-11-26 02:22:02 +01:00
parent 9a6ce1f832
commit ae057940af
508 changed files with 26011 additions and 14248 deletions

13
framework/ui/menu/items/edit-item.d.ts vendored Normal file
View File

@@ -0,0 +1,13 @@
import { BaseItem } from './base-item';
export declare class EditItem extends BaseItem {
private initialText;
private isPassword;
private contents;
private label;
private editField;
constructor(id: string, title: string, initialText: string, isPassword?: boolean);
getDOMNode(): HTMLElement;
getContents(): string;
private onChange;
focus(): void;
}