tenjin-ui-kit 0.3.6 → 0.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -114,7 +114,9 @@ var Input = function Input(_ref) {
114
114
  error: true,
115
115
  onBlur: function onBlur(e) {
116
116
  setTimeout(function () {
117
- rest.onBlur(e);
117
+ if (e && typeof rest.onBlur === "function") {
118
+ rest.onBlur(e);
119
+ }
118
120
  }, onBlurDelay || 100);
119
121
  },
120
122
  autoFocus: !!autoFocus ? rest.value ? rest.value : true : false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tenjin-ui-kit",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "repository": {
5
5
  "url": "https://gitlab.com/yethi/react/tenjin-ui-kit.git"
6
6
  },