Latest updates from IceHrmPro
This commit is contained in:
24
web/node_modules/antd/lib/form/Form.d.ts
generated
vendored
Normal file
24
web/node_modules/antd/lib/form/Form.d.ts
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
import * as React from 'react';
|
||||
import { List } from 'rc-field-form';
|
||||
import { FormProps as RcFormProps } from 'rc-field-form/lib/Form';
|
||||
import { ColProps } from '../grid/col';
|
||||
import { FormLabelAlign } from './interface';
|
||||
import { useForm, FormInstance } from './util';
|
||||
import { SizeType } from '../config-provider/SizeContext';
|
||||
export declare type FormLayout = 'horizontal' | 'inline' | 'vertical';
|
||||
export interface FormProps extends Omit<RcFormProps, 'form'> {
|
||||
prefixCls?: string;
|
||||
hideRequiredMark?: boolean;
|
||||
colon?: boolean;
|
||||
name?: string;
|
||||
layout?: FormLayout;
|
||||
labelAlign?: FormLabelAlign;
|
||||
labelCol?: ColProps;
|
||||
wrapperCol?: ColProps;
|
||||
form?: FormInstance;
|
||||
size?: SizeType;
|
||||
scrollToFirstError?: boolean;
|
||||
}
|
||||
declare const Form: React.ForwardRefExoticComponent<FormProps & React.RefAttributes<FormInstance>>;
|
||||
export { useForm, List, FormInstance };
|
||||
export default Form;
|
||||
Reference in New Issue
Block a user