You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
874 B

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;
};
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;
};
}