survey-core
Version:
survey.js is a JavaScript Survey Library. It is a modern way to add a survey to your website. It uses JSON for survey metadata and results.
18 lines (17 loc) • 699 B
TypeScript
import { InputMaskBase } from "./mask_base";
import { ITextInputParams } from "./mask_utils";
export declare class InputElementAdapter {
private inputMaskInstance;
private inputElement;
private prevUnmaskedValue;
private setInputValue;
constructor(inputMaskInstance: InputMaskBase, inputElement: HTMLInputElement, value?: any);
inputMaskInstancePropertyChangedHandler: (sender: any, options: any) => void;
clickHandler: (event: any) => void;
beforeInputHandler: (event: any) => void;
changeHandler: (event: any) => void;
createArgs(event: any): ITextInputParams;
addInputEventListener(): void;
removeInputEventListener(): void;
dispose(): void;
}