riku
2026-04-02 3282e95db0207ee133d1e98d9771dec9d83b0fc4
miniprogram_npm/tdesign-miniprogram/tree-select/tree-select.d.ts
@@ -1,4 +1,5 @@
import { SuperComponent } from '../common/src/index';
import type { TreeOptionData } from '../common/common';
export default class TreeSelect extends SuperComponent {
    externalClasses: string[];
    options: {
@@ -7,22 +8,24 @@
    data: {
        prefix: string;
        classPrefix: string;
        labelAlias: string;
        valueAlias: string;
        scrollIntoView: any;
    };
    properties: import("./type").TdTreeSelectProps<import("../common/common").TreeOptionData>;
    properties: import("./type").TdTreeSelectProps<TreeOptionData<string | number>>;
    controlledProps: {
        key: string;
        event: string;
    }[];
    observers: {
        value(): void;
        keys(obj: any): void;
        'value, customValue, options, keys, multiple'(): void;
    };
    lifetimes: {
        ready(): void;
    };
    methods: {
        buildTreeOptions(): void;
        getScrollIntoView(status: string): void;
        onRootChange(e: any): void;
        handleTreeClick(e: any): void;
        handleRadioChange(e: any): void;
        handleChange(e: any): void;
    };
}