@vee-validate/rules
Advanced tools
Comparing version 4.2.1 to 4.2.2
@@ -6,2 +6,10 @@ # Change Log | ||
## [4.2.2](https://github.com/logaretm/vee-validate/compare/v4.2.1...v4.2.2) (2021-03-03) | ||
**Note:** Version bump only for package @vee-validate/rules | ||
## [4.2.1](https://github.com/logaretm/vee-validate/compare/v4.2.0...v4.2.1) (2021-02-26) | ||
@@ -8,0 +16,0 @@ |
/** | ||
* vee-validate v4.2.1 | ||
* vee-validate v4.2.2 | ||
* (c) 2021 Abdelrahman Awad | ||
@@ -183,3 +183,3 @@ * @license MIT | ||
function getParams(params) { | ||
function getParams$1(params) { | ||
if (!params) { | ||
@@ -200,3 +200,3 @@ return { | ||
} | ||
const { min, max } = getParams(params); | ||
const { min, max } = getParams$1(params); | ||
if (Array.isArray(value)) { | ||
@@ -236,3 +236,3 @@ return value.every(val => !!betweenValidator(val, { min, max })); | ||
}; | ||
function getParams$1(params) { | ||
function getParams(params) { | ||
if (!params) { | ||
@@ -253,3 +253,3 @@ return { width: 0, height: 0 }; | ||
} | ||
const { width, height } = getParams$1(params); | ||
const { width, height } = getParams(params); | ||
const list = []; | ||
@@ -256,0 +256,0 @@ const fileList = Array.isArray(files) ? files : [files]; |
/** | ||
* vee-validate v4.2.1 | ||
* vee-validate v4.2.2 | ||
* (c) 2021 Abdelrahman Awad | ||
@@ -189,3 +189,3 @@ * @license MIT | ||
function getParams(params) { | ||
function getParams$1(params) { | ||
if (!params) { | ||
@@ -206,3 +206,3 @@ return { | ||
} | ||
const { min, max } = getParams(params); | ||
const { min, max } = getParams$1(params); | ||
if (Array.isArray(value)) { | ||
@@ -242,3 +242,3 @@ return value.every(val => !!betweenValidator(val, { min, max })); | ||
}; | ||
function getParams$1(params) { | ||
function getParams(params) { | ||
if (!params) { | ||
@@ -259,3 +259,3 @@ return { width: 0, height: 0 }; | ||
} | ||
const { width, height } = getParams$1(params); | ||
const { width, height } = getParams(params); | ||
const list = []; | ||
@@ -262,0 +262,0 @@ const fileList = Array.isArray(files) ? files : [files]; |
/** | ||
* vee-validate v4.2.1 | ||
* vee-validate v4.2.2 | ||
* (c) 2021 Abdelrahman Awad | ||
@@ -4,0 +4,0 @@ * @license MIT |
{ | ||
"name": "@vee-validate/rules", | ||
"version": "4.2.1", | ||
"version": "4.2.2", | ||
"description": "Form Validation for Vue.js", | ||
@@ -26,3 +26,3 @@ "author": "Abdelrahman Awad <logaretm1@gmail.com>", | ||
], | ||
"gitHead": "6b927113d3df5d1bfb90b804712fcf482b72aadb" | ||
"gitHead": "97f0ca70ab71af4acb217f6d30084ec03a2471bc" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55061