@elliemae/ds-progress-indicator 2.0.0-next.1 → 2.0.0-next.6

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.
@@ -30,7 +30,7 @@ function useProgressTrait({
30
30
  'aria-valuemax': max,
31
31
  'aria-valuetext': text,
32
32
  style: {
33
- width: `${percentage}%`
33
+ width: "".concat(percentage, "%")
34
34
  }
35
35
  };
36
36
  }
@@ -13,7 +13,7 @@ const defaultRenderer = ({
13
13
  now,
14
14
  max,
15
15
  min
16
- }) => `${min || now} of ${max}`;
16
+ }) => "".concat(min || now, " of ").concat(max);
17
17
 
18
18
  const percentageRenderer = ({
19
19
  now,
@@ -21,7 +21,7 @@ const percentageRenderer = ({
21
21
  min
22
22
  }) => {
23
23
  const percentage = utils.getPercentage(now, min, max);
24
- return `${percentage}%`;
24
+ return "".concat(percentage, "%");
25
25
  };
26
26
 
27
27
  const renderers = {
@@ -23,7 +23,7 @@ function useProgressTrait({
23
23
  'aria-valuemax': max,
24
24
  'aria-valuetext': text,
25
25
  style: {
26
- width: `${percentage}%`
26
+ width: "".concat(percentage, "%")
27
27
  }
28
28
  };
29
29
  }
@@ -7,7 +7,7 @@ const defaultRenderer = ({
7
7
  now,
8
8
  max,
9
9
  min
10
- }) => `${min || now} of ${max}`;
10
+ }) => "".concat(min || now, " of ").concat(max);
11
11
 
12
12
  const percentageRenderer = ({
13
13
  now,
@@ -15,7 +15,7 @@ const percentageRenderer = ({
15
15
  min
16
16
  }) => {
17
17
  const percentage = getPercentage(now, min, max);
18
- return `${percentage}%`;
18
+ return "".concat(percentage, "%");
19
19
  };
20
20
 
21
21
  const renderers = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-progress-indicator",
3
- "version": "2.0.0-next.1",
3
+ "version": "2.0.0-next.6",
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.0.0-next.1",
56
- "@elliemae/ds-truncated-tooltip-text": "2.0.0-next.1",
55
+ "@elliemae/ds-classnames": "2.0.0-next.6",
56
+ "@elliemae/ds-truncated-tooltip-text": "2.0.0-next.6",
57
57
  "prop-types": "~15.7.2",
58
58
  "react-desc": "^4.1.3"
59
59
  },
package/cjs/package.json DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "type": "commonjs",
3
- "sideEffects": [
4
- "*.css",
5
- "*.scss"
6
- ]
7
- }
package/esm/package.json DELETED
@@ -1,7 +0,0 @@
1
- {
2
- "type": "module",
3
- "sideEffects": [
4
- "*.css",
5
- "*.scss"
6
- ]
7
- }