intelicoreact 0.3.45 → 0.3.46

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.
@@ -152,8 +152,9 @@ var NumericInput = function NumericInput(_ref) {
152
152
  blur: function blur(e) {
153
153
  setIsFocused(false);
154
154
  setEditing(false);
155
- if (Number.isNaN(+inputValue) || +inputValue < +min) setInputValue(min);
156
- if (max && +max < parseFloat(inputValue)) setInputValue(max);
155
+ var transformedInputValue = parseFloat(inputValue);
156
+ if (Number.isNaN(inputValue) || inputValue < min) setInputValue(min);
157
+ if (max && +max < inputValue) setInputValue(max);
157
158
  if (onBlur) onBlur(e);
158
159
  },
159
160
  keyDown: function keyDown(e) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelicoreact",
3
- "version": "0.3.45",
3
+ "version": "0.3.46",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "files": [