dom-validator
Version:
Validator similar to vee-validator for vuetify Applications
75 lines (73 loc) • 1.59 kB
JavaScript
/* eslint-disable camelcase */
import alpha from './alpha';
import alpha_dash from './alpha_dash';
import alpha_num from './alpha_num';
import alpha_spaces from './alpha_spaces';
import between from './between';
import confirmed from './confirmed';
import credit_card from './credit_card';
import date from './date'
import decimal from './decimal';
import digits from './digits';
import dimensions from './dimensions';
import dummy from './dummy';
import email from './email';
import ext from './ext';
import image from './image';
import In from './in';
import ip from './ip';
import less_than_float from './less_than_float';
import match from './match';
import max from './max';
import max_value from './max_value';
import mimes from './mimes';
import min from './min';
import min_value from './min_value';
import more_than_float from './more_than_float';
import not_in from './notIn';
import numeric from './numeric';
import password from './password';
import regex from './regex';
import required from './required';
import size from './size';
import tax_code from './tax_code';
import telephone from './telephone';
import uppercase from "./uppercase";
import url from './url';
export default {
alpha_dash,
alpha_num,
alpha_spaces,
alpha,
between,
confirmed,
credit_card,
date,
decimal,
digits,
dimensions,
dummy,
email,
ext,
image,
in: In,
ip,
less_than_float,
match,
max,
max_value,
mimes,
min,
min_value,
more_than_float,
not_in,
numeric,
password,
regex,
required,
size,
tax_code,
telephone,
uppercase,
url
};