36 lines
945 B
TypeScript
36 lines
945 B
TypeScript
import { SuperComponent } from '../common/src/index';
|
|
export default class Input extends SuperComponent {
|
|
options: {
|
|
multipleSlots: boolean;
|
|
};
|
|
externalClasses: string[];
|
|
behaviors: string[];
|
|
properties: import("./type").TdInputProps;
|
|
data: {
|
|
prefix: string;
|
|
classPrefix: string;
|
|
classBasePrefix: string;
|
|
excludeType: string[];
|
|
};
|
|
lifetimes: {
|
|
ready(): void;
|
|
};
|
|
observers: {
|
|
prefixIcon(v: any): void;
|
|
suffixIcon(v: any): void;
|
|
clearable(v: any): void;
|
|
};
|
|
methods: {
|
|
updateValue(value: any): void;
|
|
onInput(e: any): void;
|
|
onFocus(e: any): void;
|
|
onBlur(e: any): void;
|
|
onConfirm(e: any): void;
|
|
onSuffixClick(): void;
|
|
onSuffixIconClick(): void;
|
|
clearInput(e: any): void;
|
|
onKeyboardHeightChange(e: any): void;
|
|
onNickNameReview(e: any): void;
|
|
};
|
|
}
|