mobile-more
Version:
基于 antd-mobile v5 扩展移动端 UI 组件
14 lines (13 loc) • 608 B
TypeScript
import { StepperProps } from 'antd-mobile';
import * as React from 'react';
import { BizFormItemProps } from '../FormItem';
import './index.less';
export interface BizFormItemStepperProps extends Omit<BizFormItemProps, 'children'>, Pick<StepperProps, 'min' | 'max' | 'step' | 'digits' | 'allowEmpty' | 'inputReadOnly'> {
/**
* @description 透传 Steps 组件属性。
* @see {@link https://mobile.ant.design/zh/components/steps#steps|StepsProps}
*/
stepperProps?: StepperProps;
}
declare const BizFormItemStepper: React.FC<BizFormItemStepperProps>;
export default BizFormItemStepper;