// Type definitions for @dyna-grid/core v1.1.4 // Project: // Definitions by: zhangkun <> import { PopupComponent } from "../../widgets/popupComponent"; import { ICellEditorComp, ICellEditorParams } from "../../interfaces/iCellEditor"; import { DyInputTextField } from "../../widgets/dyInputTextField"; export interface ITextCellEditorParams extends ICellEditorParams { useFormatter: boolean; } export declare class TextCellEditor extends PopupComponent implements ICellEditorComp { private static TEMPLATE; private highlightAllOnFocus; private focusAfterAttached; protected params: ICellEditorParams; protected eInput: DyInputTextField; constructor(); init(params: ITextCellEditorParams): void; afterGuiAttached(): void; focusIn(): void; focusOut(): void; getValue(): any; private getStartValue; isPopup(): boolean; }