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