riku
2026-04-02 3282e95db0207ee133d1e98d9771dec9d83b0fc4
miniprogram_npm/tdesign-miniprogram/stepper/type.d.ts
@@ -1,8 +1,5 @@
import { SizeEnum } from '../common/common';
export interface TdStepperProps {
    style?: {
        type: StringConstructor;
        value?: string;
    };
    disableInput?: {
        type: BooleanConstructor;
        value?: boolean;
@@ -11,13 +8,13 @@
        type: BooleanConstructor;
        value?: boolean;
    };
    externalClasses?: {
        type: ArrayConstructor;
        value?: ['t-class', 't-class-input', 't-class-add', 't-class-minus'];
    };
    inputWidth?: {
        type: NumberConstructor;
        value?: number;
    };
    integer?: {
        type: BooleanConstructor;
        value?: boolean;
    };
    max?: {
        type: NumberConstructor;
@@ -27,26 +24,24 @@
        type: NumberConstructor;
        value?: number;
    };
    size?: {
        type: StringConstructor;
        value?: SizeEnum;
    };
    step?: {
        type: NumberConstructor;
        value?: number;
    };
    size?: {
        type: StringConstructor;
        value?: string;
    };
    theme?: {
        type: StringConstructor;
        value?: 'normal' | 'filled' | 'outline';
    };
    value?: {
        type: StringConstructor;
        optionalTypes: Array<NumberConstructor>;
        type: null;
        value?: string | number;
    };
    defaultValue?: {
        type: StringConstructor;
        optionalTypes: Array<NumberConstructor>;
        type: null;
        value?: string | number;
    };
}