沙盘演示系统应用的微信小程序
zuoxiao
2024-08-28 eb3dbfdcb126beeb1d08f3306ac8f5bbc466e133
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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;
        showClearIcon: boolean;
    };
    lifetimes: {
        ready(): void;
    };
    observers: {
        prefixIcon(v: any): void;
        suffixIcon(v: any): void;
        clearable(v: any): void;
        clearTrigger(): void;
    };
    methods: {
        updateValue(value: any): void;
        updateClearIconVisible(value?: boolean): 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;
    };
}