Skip to content

Commit

Permalink
build 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
logaretm committed Jan 9, 2018
1 parent d45ca4c commit 849b07d
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 21 deletions.
2 changes: 1 addition & 1 deletion dist/locale/pl.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/locale/pt_BR.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions dist/vee-validate.esm.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* vee-validate v2.0.0
* (c) 2017 Abdelrahman Awad
* vee-validate v2.0.1
* (c) 2018 Abdelrahman Awad
* @license MIT
*/
//
Expand Down Expand Up @@ -2005,7 +2005,9 @@ var Validator = function Validator (validations, options) {
this.reset = options.vm && isCallable(options.vm.$nextTick) ? function (matcher) {
return new Promise(function (resolve) {
options.vm.$nextTick(function () {
resolve(this$1._reset(matcher));
options.vm.$nextTick(function () {
resolve(this$1._reset(matcher));
});
});
});
} : this._reset;
Expand Down Expand Up @@ -6943,7 +6945,7 @@ var mapFields = function (fields) {
}, {});
};

var version = '2.0.0';
var version = '2.0.1';

var rulesPlugin = function (ref) {
var Validator$$1 = ref.Validator;
Expand Down
10 changes: 6 additions & 4 deletions dist/vee-validate.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* vee-validate v2.0.0
* (c) 2017 Abdelrahman Awad
* vee-validate v2.0.1
* (c) 2018 Abdelrahman Awad
* @license MIT
*/
(function (global, factory) {
Expand Down Expand Up @@ -5903,7 +5903,9 @@ var Validator = function Validator (validations, options) {
this.reset = options.vm && isCallable(options.vm.$nextTick) ? function (matcher) {
return new Promise(function (resolve) {
options.vm.$nextTick(function () {
resolve(this$1._reset(matcher));
options.vm.$nextTick(function () {
resolve(this$1._reset(matcher));
});
});
});
} : this._reset;
Expand Down Expand Up @@ -6957,7 +6959,7 @@ var minimal$1 = {
mapFields: mapFields,
Validator: Validator,
ErrorBag: ErrorBag,
version: '2.0.0'
version: '2.0.1'
};

// rules plugin definition.
Expand Down
2 changes: 1 addition & 1 deletion dist/vee-validate.min.js

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions dist/vee-validate.minimal.esm.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* vee-validate v2.0.0
* (c) 2017 Abdelrahman Awad
* vee-validate v2.0.1
* (c) 2018 Abdelrahman Awad
* @license MIT
*/
//
Expand Down Expand Up @@ -2005,7 +2005,9 @@ var Validator = function Validator (validations, options) {
this.reset = options.vm && isCallable(options.vm.$nextTick) ? function (matcher) {
return new Promise(function (resolve) {
options.vm.$nextTick(function () {
resolve(this$1._reset(matcher));
options.vm.$nextTick(function () {
resolve(this$1._reset(matcher));
});
});
});
} : this._reset;
Expand Down Expand Up @@ -3051,7 +3053,7 @@ var mapFields = function (fields) {
}, {});
};

var version = '2.0.0';
var version = '2.0.1';

var index_minimal_esm = {
install: install,
Expand Down
10 changes: 6 additions & 4 deletions dist/vee-validate.minimal.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* vee-validate v2.0.0
* (c) 2017 Abdelrahman Awad
* vee-validate v2.0.1
* (c) 2018 Abdelrahman Awad
* @license MIT
*/
(function (global, factory) {
Expand Down Expand Up @@ -2011,7 +2011,9 @@ var Validator = function Validator (validations, options) {
this.reset = options.vm && isCallable(options.vm.$nextTick) ? function (matcher) {
return new Promise(function (resolve) {
options.vm.$nextTick(function () {
resolve(this$1._reset(matcher));
options.vm.$nextTick(function () {
resolve(this$1._reset(matcher));
});
});
});
} : this._reset;
Expand Down Expand Up @@ -3065,7 +3067,7 @@ var index_minimal = {
mapFields: mapFields,
Validator: Validator,
ErrorBag: ErrorBag,
version: '2.0.0'
version: '2.0.1'
};

return index_minimal;
Expand Down
2 changes: 1 addition & 1 deletion dist/vee-validate.minimal.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vee-validate",
"version": "2.0.0",
"version": "2.0.1",
"description": "Simple Vue.js input validation plugin",
"author": "Abdelrahman Awad <[email protected]>",
"license": "MIT",
Expand Down

0 comments on commit 849b07d

Please sign in to comment.