@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mailstep/design-system",
3
- "version": "0.7.78-beta.1",
3
+ "version": "0.7.78",
4
4
  "license": "ISC",
5
5
  "type": "module",
6
6
  "main": "./ui/index.js",
@@ -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
  });