riku
2026-01-16 1f9e43b7bbb848c7ee2aaa89ffece17002b2c915
miniprogram_npm/tdesign-miniprogram/radio/radio.d.ts
@@ -14,9 +14,8 @@
            type: BooleanConstructor;
            value: boolean;
        };
        placement?: {
        tId: {
            type: StringConstructor;
            value?: "left" | "right";
        };
        allowUncheck?: {
            type: BooleanConstructor;
@@ -42,25 +41,13 @@
            type: BooleanConstructor;
            value?: boolean;
        };
        style?: {
            type: StringConstructor;
            value?: string;
        };
        readonly?: {
            type: BooleanConstructor;
            value?: boolean;
        };
        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;
@@ -77,6 +64,14 @@
        name?: {
            type: StringConstructor;
            value?: string;
        };
        placement?: {
            type: StringConstructor;
            value?: "left" | "right";
        };
        readonly?: {
            type: BooleanConstructor;
            value?: boolean;
        };
        value?: {
            type: null;
@@ -96,14 +91,17 @@
        iconVal: any[];
        _placement: string;
        _disabled: boolean;
        _readonly: boolean;
    };
    observers: {
        disabled(v: any): void;
        readonly(v: any): void;
    };
    methods: {
        handleTap(e: any): void;
        doChange(): void;
        init(): void;
        setDisabled(disabled: Boolean): void;
        setReadonly(readonly: Boolean): void;
    };
}