chore(release): 0.7.3
This commit is contained in:
parent
2f3a63b012
commit
0b5607bbbe
@ -2,6 +2,13 @@
|
||||
|
||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||
|
||||
### [0.7.3](https://github.com/retailcrm/vue-formulario/compare/v0.7.2...v0.7.3) (2021-11-11)
|
||||
|
||||
|
||||
### Fixes
|
||||
|
||||
* Fixed toString calls in validators ([da56b04](https://github.com/retailcrm/vue-formulario/commit/da56b04213b6ebc3d001a273b26a350a59e0382b))
|
||||
|
||||
### [0.7.2](https://github.com/retailcrm/vue-formulario/compare/v0.7.1...v0.7.2) (2021-10-21)
|
||||
|
||||
|
||||
|
4
dist/formulario.esm.js
vendored
4
dist/formulario.esm.js
vendored
@ -482,7 +482,7 @@ const rules = {
|
||||
return value <= maximum;
|
||||
}
|
||||
if (typeof value === 'string' || (force === 'length')) {
|
||||
value = !isNaN(value) ? value.toString() : value;
|
||||
value = !isNaN(value) ? String(value) : value;
|
||||
return value.length <= maximum;
|
||||
}
|
||||
return false;
|
||||
@ -500,7 +500,7 @@ const rules = {
|
||||
return value >= minimum;
|
||||
}
|
||||
if (typeof value === 'string' || (force === 'length')) {
|
||||
value = !isNaN(value) ? value.toString() : value;
|
||||
value = !isNaN(value) ? String(value) : value;
|
||||
return value.length >= minimum;
|
||||
}
|
||||
return false;
|
||||
|
2
dist/formulario.min.js
vendored
2
dist/formulario.min.js
vendored
File diff suppressed because one or more lines are too long
4
dist/formulario.umd.js
vendored
4
dist/formulario.umd.js
vendored
@ -487,7 +487,7 @@
|
||||
return value <= maximum;
|
||||
}
|
||||
if (typeof value === 'string' || (force === 'length')) {
|
||||
value = !isNaN(value) ? value.toString() : value;
|
||||
value = !isNaN(value) ? String(value) : value;
|
||||
return value.length <= maximum;
|
||||
}
|
||||
return false;
|
||||
@ -505,7 +505,7 @@
|
||||
return value >= minimum;
|
||||
}
|
||||
if (typeof value === 'string' || (force === 'length')) {
|
||||
value = !isNaN(value) ? value.toString() : value;
|
||||
value = !isNaN(value) ? String(value) : value;
|
||||
return value.length >= minimum;
|
||||
}
|
||||
return false;
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@retailcrm/vue-formulario",
|
||||
"version": "0.7.2",
|
||||
"version": "0.7.3",
|
||||
"license": "MIT",
|
||||
"author": "RetailDriverLLC <integration@retailcrm.ru>",
|
||||
"main": "dist/formulario.umd.js",
|
||||
|
Loading…
Reference in New Issue
Block a user