UNPKG

oadp-material

Version:
23 lines (22 loc) 660 B
import * as React from 'react'; import { CommonProps } from '@alifd/next'; import './index.scss'; export interface OadpFormProps extends CommonProps { value?: any; field?: any; size?: 'large' | 'medium' | 'small'; labelAlign?: 'top' | 'left' | 'inset'; labelTextAlign?: 'left' | 'right'; inline?: boolean; fullWidth?: boolean; responsive?: boolean; isPreview?: boolean; useLabelForErrorMessage?: boolean; preferMarginToDisplayHelp?: boolean; colon?: boolean; disabled?: boolean; children?: any; style?: React.CSSProperties; } declare const OadpForm: React.FC<OadpFormProps>; export default OadpForm;