beem-component 1.3.2 → 1.3.3

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.
@@ -128,9 +128,6 @@ var BmProgressRing = function BmProgressRing(props) {
128
128
  progress = props.progress,
129
129
  variant = props.variant,
130
130
  children = props.children;
131
- console.log({
132
- children: children
133
- });
134
131
  var initialMeasure = measurement(size);
135
132
  circumference = initialMeasure.circumference;
136
133
  radius = initialMeasure.radius;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "beem-component",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
4
4
  "private": false,
5
5
  "main": "dist/components/index.js",
6
6
  "scripts": {
@@ -90,7 +90,6 @@ const BmProgressRing = (props) => {
90
90
  const circleRef = useRef(null);
91
91
  const { size, progress, variant, children } = props;
92
92
 
93
- console.log({ children });
94
93
  const initialMeasure = measurement(size);
95
94
 
96
95
  circumference = initialMeasure.circumference;