riku
2024-08-13 1a0e4972f80278bfa9e53283374b745b6c968341
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
import { SuperComponent } from '../common/src/index';
export default class TreeSelect extends SuperComponent {
    externalClasses: string[];
    options: {
        multipleSlots: boolean;
    };
    data: {
        prefix: string;
        classPrefix: string;
        labelAlias: string;
        valueAlias: string;
    };
    properties: import("./type").TdTreeSelectProps<import("../common/common").TreeOptionData>;
    controlledProps: {
        key: string;
        event: string;
    }[];
    observers: {
        value(): void;
        keys(obj: any): void;
    };
    methods: {
        buildTreeOptions(): void;
        onRootChange(e: any): void;
        handleTreeClick(e: any): void;
        handleRadioChange(e: any): void;
    };
}