@elliemae/ds-progress-indicator 2.4.2-rc.9 → 2.4.2

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.
@@ -36,7 +36,7 @@ function useProgressTrait(_ref) {
36
36
  'aria-valuemax': max,
37
37
  'aria-valuetext': text,
38
38
  style: {
39
- width: "".concat(percentage, "%")
39
+ width: `${percentage}%`
40
40
  }
41
41
  };
42
42
  }
@@ -15,7 +15,7 @@ const defaultRenderer = _ref => {
15
15
  max,
16
16
  min
17
17
  } = _ref;
18
- return "".concat(min || now, " of ").concat(max);
18
+ return `${min || now} of ${max}`;
19
19
  };
20
20
 
21
21
  const percentageRenderer = _ref2 => {
@@ -25,7 +25,7 @@ const percentageRenderer = _ref2 => {
25
25
  min
26
26
  } = _ref2;
27
27
  const percentage = utils.getPercentage(now, min, max);
28
- return "".concat(percentage, "%");
28
+ return `${percentage}%`;
29
29
  };
30
30
 
31
31
  const renderers = {
@@ -29,7 +29,7 @@ function useProgressTrait(_ref) {
29
29
  'aria-valuemax': max,
30
30
  'aria-valuetext': text,
31
31
  style: {
32
- width: "".concat(percentage, "%")
32
+ width: `${percentage}%`
33
33
  }
34
34
  };
35
35
  }
@@ -9,7 +9,7 @@ const defaultRenderer = _ref => {
9
9
  max,
10
10
  min
11
11
  } = _ref;
12
- return "".concat(min || now, " of ").concat(max);
12
+ return `${min || now} of ${max}`;
13
13
  };
14
14
 
15
15
  const percentageRenderer = _ref2 => {
@@ -19,7 +19,7 @@ const percentageRenderer = _ref2 => {
19
19
  min
20
20
  } = _ref2;
21
21
  const percentage = getPercentage(now, min, max);
22
- return "".concat(percentage, "%");
22
+ return `${percentage}%`;
23
23
  };
24
24
 
25
25
  const renderers = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-progress-indicator",
3
- "version": "2.4.2-rc.9",
3
+ "version": "2.4.2",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Progress Indicator",
6
6
  "module": "./esm/index.js",
@@ -52,8 +52,8 @@
52
52
  "build": "node ../../scripts/build/build.js"
53
53
  },
54
54
  "dependencies": {
55
- "@elliemae/ds-classnames": "2.4.2-rc.9",
56
- "@elliemae/ds-truncated-tooltip-text": "2.4.2-rc.9",
55
+ "@elliemae/ds-classnames": "2.4.2",
56
+ "@elliemae/ds-truncated-tooltip-text": "2.4.2",
57
57
  "prop-types": "~15.7.2",
58
58
  "react-desc": "~4.1.3"
59
59
  },