Skip to content

Commit

Permalink
version bump and rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
stuyam committed Dec 4, 2019
1 parent c1eb025 commit 7fa7652
Show file tree
Hide file tree
Showing 17 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "simple-react-validator",
"description": "A simple react form validator inspired by Laravel validation.",
"main": "dist/simple-react-validator.min.js",
"version": "1.3.1",
"version": "1.3.2",
"authors": [
"Stuart Yamartino"
],
Expand Down
2 changes: 1 addition & 1 deletion dist/locale/es.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Simple React Validator v1.3.1 | Created By Dockwa | MIT License | 2017 - Present
// Simple React Validator v1.3.2 | Created By Dockwa | MIT License | 2017 - Present
;(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['simple-react-validator'], factory);
Expand Down
2 changes: 1 addition & 1 deletion dist/locale/fa.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Simple React Validator v1.3.1 | Created By Dockwa | MIT License | 2017 - Present
// Simple React Validator v1.3.2 | Created By Dockwa | MIT License | 2017 - Present
;(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['simple-react-validator'], factory);
Expand Down
2 changes: 1 addition & 1 deletion dist/locale/fr.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Simple React Validator v1.3.1 | Created By Dockwa | MIT License | 2017 - Present
// Simple React Validator v1.3.2 | Created By Dockwa | MIT License | 2017 - Present
;(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['simple-react-validator'], factory);
Expand Down
2 changes: 1 addition & 1 deletion dist/locale/min/es.min.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/min/fa.min.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/min/fr.min.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/min/sr.min.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/min/template-en.min.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/sr.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Simple React Validator v1.3.1 | Created By Dockwa | MIT License | 2017 - Present
// Simple React Validator v1.3.2 | Created By Dockwa | MIT License | 2017 - Present
;(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['simple-react-validator'], factory);
Expand Down
2 changes: 1 addition & 1 deletion dist/locale/template-en.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Simple React Validator v1.3.1 | Created By Dockwa | MIT License | 2017 - Present
// Simple React Validator v1.3.2 | Created By Dockwa | MIT License | 2017 - Present
;(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['simple-react-validator'], factory);
Expand Down
6 changes: 3 additions & 3 deletions dist/simple-react-validator.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Simple React Validator v1.3.1 | Created By Dockwa | MIT License | 2017 - Present
// Simple React Validator v1.3.2 | Created By Dockwa | MIT License | 2017 - Present
;(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define(['react'], factory);
Expand Down Expand Up @@ -364,7 +364,7 @@ function () {
phone: {
message: 'The :attribute must be a valid phone number.',
rule: function rule(val) {
return _this.helpers.testRegex(val, /^(\+?\d{0,4})?\s?-?\s?(\(?\d{3}\)?)\s?-?\s?(\(?\d{3}\)?)\s?-?\s?(\(?\d{4}\)?)$/) && !_this.helpers.testRegex(/^\b(\d)\1{8,}\b$/);
return _this.helpers.testRegex(val, /^(\+?\d{0,4})?\s?-?\s?(\(?\d{3}\)?)\s?-?\s?(\(?\d{3}\)?)\s?-?\s?(\(?\d{4}\)?)$/) && !_this.helpers.testRegex(val, /^\b(\d)\1{8,}\b$/);
}
},
regex: {
Expand Down Expand Up @@ -563,7 +563,7 @@ function () {
return SimpleReactValidator;
}();

_defineProperty(SimpleReactValidator, "version", '1.3.1');
_defineProperty(SimpleReactValidator, "version", '1.3.2');

_defineProperty(SimpleReactValidator, "locales", {
'en': {}
Expand Down
Loading

0 comments on commit 7fa7652

Please sign in to comment.