riku
2026-01-16 1f9e43b7bbb848c7ee2aaa89ffece17002b2c915
miniprogram_npm/tdesign-miniprogram/radio/radio.d.ts
@@ -8,16 +8,14 @@
    };
    lifetimes: {
        attached(): void;
        ready(): void;
    };
    properties: {
        borderless: {
            type: BooleanConstructor;
            value: boolean;
        };
        placement?: {
        tId: {
            type: StringConstructor;
            value?: "left" | "right";
        };
        allowUncheck?: {
            type: BooleanConstructor;
@@ -43,21 +41,13 @@
            type: BooleanConstructor;
            value?: boolean;
        };
        style?: {
            type: StringConstructor;
            value?: string;
        };
        disabled?: {
            type: BooleanConstructor;
            value?: boolean;
        };
        externalClasses?: {
            type: ArrayConstructor;
            value?: ["t-class", "t-class-icon", "t-class-label", "t-class-content", "t-class-border"];
        };
        icon?: {
            type: null;
            value?: string[] | "circle" | "line";
            value?: string[] | "circle" | "line" | "dot";
        };
        label?: {
            type: StringConstructor;
@@ -74,6 +64,14 @@
        name?: {
            type: StringConstructor;
            value?: string;
        };
        placement?: {
            type: StringConstructor;
            value?: "left" | "right";
        };
        readonly?: {
            type: BooleanConstructor;
            value?: boolean;
        };
        value?: {
            type: null;
@@ -92,11 +90,18 @@
        optionLinked: boolean;
        iconVal: any[];
        _placement: string;
        _disabled: boolean;
        _readonly: boolean;
    };
    observers: {
        disabled(v: any): void;
        readonly(v: any): void;
    };
    methods: {
        handleTap(e: any): void;
        doChange(): void;
        initStatus(): void;
        init(): void;
        setDisabled(disabled: Boolean): void;
        setReadonly(readonly: Boolean): void;
    };
}