intelicoreact 0.1.96 → 0.1.97

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.
@@ -189,10 +189,10 @@ var NumericInput = function NumericInput(_ref) {
189
189
  if (onKeyUp) onKeyUp(e.keyCode, e.target.value);
190
190
  },
191
191
  decrement: function decrement(e) {
192
- handle.change(+intMemoVal - +numStep);
192
+ handle.change(+intMemoVal.toString().replace(/,/g, '') - +numStep);
193
193
  },
194
194
  increment: function increment(e) {
195
- handle.change(+intMemoVal + +numStep);
195
+ handle.change(+intMemoVal.toString().replace(/,/g, '') + +numStep);
196
196
  }
197
197
  }; //Check Outside Click
198
198
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelicoreact",
3
- "version": "0.1.96",
3
+ "version": "0.1.97",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "files": [