Skip to content

Commit 97f6b6c

Browse files
committed
version bump
1 parent 7ba7ac4 commit 97f6b6c

22 files changed

+29
-19
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "simple-react-validator",
33
"description": "A simple react form validator inspired by Laravel validation.",
44
"main": "dist/simple-react-validator.min.js",
5-
"version": "1.2.5",
5+
"version": "1.3.0",
66
"authors": [
77
"Stuart Yamartino"
88
],

dist/locale/es.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Simple React Validator v1.2.5 | Created By Dockwa | MIT License | 2017 - Present
1+
// Simple React Validator v1.3.0 | Created By Dockwa | MIT License | 2017 - Present
22
;(function(root, factory) {
33
if (typeof define === 'function' && define.amd) {
44
define(['simple-react-validator'], factory);
@@ -10,6 +10,7 @@
1010
}(this, function(SimpleReactValidator) {
1111
"use strict";
1212

13+
// Spanish
1314
var es = {
1415
accepted: ':attribute debe ser aceptado.',
1516
after: ':attribute debe ser una fecha posterior a :date.',

dist/locale/fa.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Simple React Validator v1.2.5 | Created By Dockwa | MIT License | 2017 - Present
1+
// Simple React Validator v1.3.0 | Created By Dockwa | MIT License | 2017 - Present
22
;(function(root, factory) {
33
if (typeof define === 'function' && define.amd) {
44
define(['simple-react-validator'], factory);
@@ -10,6 +10,7 @@
1010
}(this, function(SimpleReactValidator) {
1111
"use strict";
1212

13+
// Persian
1314
var fa = {
1415
accepted: ':attribute مورد قبول قرار نگرفت',
1516
after: ':attribute باید تاریخی بعد از :date باشد.',

dist/locale/fr.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Simple React Validator v1.2.5 | Created By Dockwa | MIT License | 2017 - Present
1+
// Simple React Validator v1.3.0 | Created By Dockwa | MIT License | 2017 - Present
22
;(function(root, factory) {
33
if (typeof define === 'function' && define.amd) {
44
define(['simple-react-validator'], factory);
@@ -10,6 +10,7 @@
1010
}(this, function(SimpleReactValidator) {
1111
"use strict";
1212

13+
// French
1314
var fr = {
1415
accepted: 'Le champ :attribute doit être accepté.',
1516
after: 'Le champ :attribute doit être après :date.',

dist/locale/min/es.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locale/min/fa.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locale/min/fr.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locale/min/sr.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locale/min/template-en.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/locale/sr.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Simple React Validator v1.2.5 | Created By Dockwa | MIT License | 2017 - Present
1+
// Simple React Validator v1.3.0 | Created By Dockwa | MIT License | 2017 - Present
22
;(function(root, factory) {
33
if (typeof define === 'function' && define.amd) {
44
define(['simple-react-validator'], factory);
@@ -10,6 +10,7 @@
1010
}(this, function(SimpleReactValidator) {
1111
"use strict";
1212

13+
// Serbian
1314
var sr = {
1415
accepted: 'Polje :attribute mora biti prihvaćeno.',
1516
after: 'Polje :attribute mora biti nakon :date.',

dist/locale/template-en.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Simple React Validator v1.2.5 | Created By Dockwa | MIT License | 2017 - Present
1+
// Simple React Validator v1.3.0 | Created By Dockwa | MIT License | 2017 - Present
22
;(function(root, factory) {
33
if (typeof define === 'function' && define.amd) {
44
define(['simple-react-validator'], factory);
@@ -24,6 +24,7 @@ and hopefully someone else will contribute to fill in the gaps later!
2424
2525
Note: the "const" variable name will be the camelCase filename.
2626
/**********************************************/
27+
// English
2728
var templateEn = {
2829
accepted: 'The :attribute must be accepted.',
2930
after: 'The :attribute must be after :date.',

dist/simple-react-validator.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Simple React Validator v1.2.5 | Created By Dockwa | MIT License | 2017 - Present
1+
// Simple React Validator v1.3.0 | Created By Dockwa | MIT License | 2017 - Present
22
;(function(root, factory) {
33
if (typeof define === 'function' && define.amd) {
44
define(['react'], factory);
@@ -563,7 +563,7 @@ function () {
563563
return SimpleReactValidator;
564564
}();
565565

566-
_defineProperty(SimpleReactValidator, "version", '1.2.5');
566+
_defineProperty(SimpleReactValidator, "version", '1.3.0');
567567

568568
_defineProperty(SimpleReactValidator, "locales", {
569569
'en': {}

0 commit comments

Comments
 (0)