| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import type { ColProps } from '../grid/Col';
- import type { ValidateStatus } from './FormItem';
- import type { CustomSlotsType, VueNode } from '../_util/type';
- export interface FormItemInputMiscProps {
- prefixCls: string;
- errors: VueNode[];
- hasFeedback?: boolean;
- validateStatus?: ValidateStatus;
- }
- export interface FormItemInputProps {
- wrapperCol?: ColProps;
- help?: VueNode;
- extra?: VueNode;
- status?: ValidateStatus;
- }
- declare const FormItemInput: import("vue").DefineComponent<Readonly<{
- marginBottom?: any;
- help?: any;
- errors?: any;
- prefixCls?: any;
- status?: any;
- hasFeedback?: any;
- onErrorVisibleChanged?: any;
- onDomErrorVisibleChange?: any;
- wrapperCol?: any;
- extra?: any;
- }>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<Readonly<{
- marginBottom?: any;
- help?: any;
- errors?: any;
- prefixCls?: any;
- status?: any;
- hasFeedback?: any;
- onErrorVisibleChanged?: any;
- onDomErrorVisibleChange?: any;
- wrapperCol?: any;
- extra?: any;
- }>>>, {
- readonly marginBottom?: any;
- readonly help?: any;
- readonly errors?: any;
- readonly prefixCls?: any;
- readonly status?: any;
- readonly hasFeedback?: any;
- readonly onErrorVisibleChanged?: any;
- readonly onDomErrorVisibleChange?: any;
- readonly wrapperCol?: any;
- readonly extra?: any;
- }, CustomSlotsType<{
- help: any;
- errors: any;
- extra: any;
- default: any;
- }>>;
- export default FormItemInput;
|