// Project: https://github.com/vueComponent/ant-design-vue // Definitions by: akki-jat // Definitions: https://github.com/vueComponent/ant-design-vue/types import { AntdComponent } from '../component'; import { Col } from '../grid/col'; import Vue from 'vue'; import { NFormItem } from './form-item'; declare interface ValidationRule { trigger?: string; /** * validation error message * @type string */ message?: string; /** * built-in validation type, available options: https://github.com/yiminghe/async-validator#type * @default 'string' * @type string */ type?: string; /** * indicates whether field is required * @default false * @type boolean */ required?: boolean; /** * treat required fields that only contain whitespace as errors * @default false * @type boolean */ whitespace?: boolean; /** * validate the exact length of a field * @type number */ len?: number; /** * validate the min length of a field * @type number */ min?: number; /** * validate the max length of a field * @type number */ max?: number; /** * validate the value from a list of possible values * @type string | string[] */ enum?: string | string[]; /** * validate from a regular expression * @type boolean */ pattern?: RegExp; /** * transform a value before validation * @type Function */ transform?: (value: any) => any; /** * custom validate function (Note: callback must be called) * @type Function */ validator?: (rule: any, value: any, callback: Function) => any; } export declare class NForm extends AntdComponent { static Item: typeof NFormItem; /** * Hide required mark of all form items * @default false * @type boolean */ hideRequiredMark: boolean; /** * The layout of label. You can set span offset to something like {span: 3, offset: 12} or sm: {span: 3, offset: 12} same as with * @type Col */ labelCol: Col; /** * Define form layout * @default 'horizontal' * @type string */ layout: 'horizontal' | 'inline' | 'vertical'; /** * The layout for input controls, same as labelCol * @type Col */ wrapperCol: Col; colon: boolean; labelAlign: 'left' | 'right'; model: object; rules: object; validateOnRuleChange: boolean; }