UNPKG

@flatbiz/antd

Version:
20 lines (17 loc) 633 B
import { FormItemProps, InputNumberProps } from 'antd'; export type AmountFenInputFormItemProps = FormItemProps & { inputNumberProps?: Omit<InputNumberProps, "value" | "onChange" | "defaultValue">; }; /** * 分金额输入组件(集成了FormItem),入参为分,返回为分,显示为元 * ``` * 例如: * <AmountFenInputFormItem * inputNumberProps={{ placeholder: '请输入', style: { width: 'auto' } }} * name="amount" * label="金额" * /> * ``` */ export declare const AmountFenInputFormItem: (props: AmountFenInputFormItemProps) => import("react").JSX.Element; export {};