UNPKG

@ant-design/pro-field

Version:

原子信息组件,统一 ProForm、ProTable、ProList、Filter 等组件里面的字段定义。

13 lines (12 loc) 549 B
import React from 'react'; import 'antd/lib/input-number/style'; export type Value = string | number | undefined | null; export type ValuePair = Value[]; export type FieldDigitRangeProps = { text: ValuePair; placeholder?: string | string[]; separator?: string; separatorWidth?: number; }; declare const _default: React.ForwardRefExoticComponent<import("@ant-design/pro-provider").BaseProFieldFC & import("@ant-design/pro-provider").ProRenderFieldPropsType & FieldDigitRangeProps & React.RefAttributes<any>>; export default _default;