intelicoreact 0.0.77 → 0.0.78

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.
@@ -129,7 +129,7 @@ var Input = function Input(_ref) {
129
129
  if (_index.KEYBOARD_SERVICE_KEYS.includes(e.key) || !currentSet) previousValueRef.current = value;else previousValueRef.current = previousValue + currentSet[0];
130
130
  }
131
131
 
132
- if (onKeyUp) onKeyUp(e.keyCode, e.target.value);
132
+ if (onKeyUp) onKeyUp(e.keyCode, e);
133
133
  }
134
134
  };
135
135
  (0, _react.useEffect)(function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelicoreact",
3
- "version": "0.0.77",
3
+ "version": "0.0.78",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -77,7 +77,7 @@ const Input = ({
77
77
  else previousValueRef.current = previousValue + currentSet[0];
78
78
  }
79
79
 
80
- if (onKeyUp) onKeyUp(e.keyCode, e.target.value);
80
+ if (onKeyUp) onKeyUp(e.keyCode, e);
81
81
  }
82
82
  };
83
83