@mailstep/design-system 0.7.78-beta.1 → 0.7.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.
- package/package.json +1 -1
- package/ui/Blocks/CommonGrid/components/Filters/NumberRange/NumberRange.js +0 -2
- package/ui/index.es.js +6385 -6392
- package/ui/index.umd.js +356 -356
package/package.json
CHANGED
|
@@ -99,9 +99,7 @@ var NumberRange = function (props) {
|
|
|
99
99
|
return;
|
|
100
100
|
}
|
|
101
101
|
}
|
|
102
|
-
console.log('event.target.value', event.target.value);
|
|
103
102
|
var number = normalizeValue(event.target.value, isFloat, decimals);
|
|
104
|
-
console.log('number', number);
|
|
105
103
|
var isValid = number || number === 0;
|
|
106
104
|
onChange({ comparator: comparator, value: isValid ? number : '' });
|
|
107
105
|
});
|