@elliemae/ds-wizard 2.4.2-rc.9 → 2.4.3-rc.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.
package/cjs/WizardStep.js CHANGED
@@ -15,7 +15,7 @@ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'defau
15
15
  var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
16
16
 
17
17
  var _Checkmark;
18
- const Item = dsClassnames.aggregatedClasses('div')("".concat(blockNames.indicatorItemBlockName), null, _ref => {
18
+ const Item = dsClassnames.aggregatedClasses('div')(`${blockNames.indicatorItemBlockName}`, null, _ref => {
19
19
  let {
20
20
  active,
21
21
  completed
@@ -25,7 +25,7 @@ const Item = dsClassnames.aggregatedClasses('div')("".concat(blockNames.indicato
25
25
  completed
26
26
  };
27
27
  });
28
- const Wrapper = dsClassnames.aggregatedClasses('div')("".concat(blockNames.indicatorItemBlockName, "-wrapper"));
28
+ const Wrapper = dsClassnames.aggregatedClasses('div')(`${blockNames.indicatorItemBlockName}-wrapper`);
29
29
  const Label = dsClassnames.aggregatedClasses('span')(blockNames.indicatorItemBlockName, 'label');
30
30
  const Bullet = dsClassnames.aggregatedClasses('div')(blockNames.indicatorItemBlockName, 'bullet');
31
31
  const BulletWrapper = dsClassnames.aggregatedClasses('div')(blockNames.indicatorItemBlockName, 'bullet-wrapper');
package/cjs/blockNames.js CHANGED
@@ -3,8 +3,8 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  const wizardBlockName = 'wizard';
6
- const indicatorBlockName = "".concat(wizardBlockName, "-steps-indicator");
7
- const indicatorItemBlockName = "".concat(indicatorBlockName, "-step");
6
+ const indicatorBlockName = `${wizardBlockName}-steps-indicator`;
7
+ const indicatorItemBlockName = `${indicatorBlockName}-step`;
8
8
 
9
9
  exports.indicatorBlockName = indicatorBlockName;
10
10
  exports.indicatorItemBlockName = indicatorItemBlockName;
package/cjs/useWizard.js CHANGED
@@ -1,6 +1,5 @@
1
1
  'use strict';
2
2
 
3
- require('core-js/modules/web.dom-collections.iterator.js');
4
3
  var React = require('react');
5
4
  var dsUtilities = require('@elliemae/ds-utilities');
6
5
 
package/esm/WizardStep.js CHANGED
@@ -7,7 +7,7 @@ import { Checkmark } from '@elliemae/ds-icons';
7
7
  import { indicatorItemBlockName } from './blockNames.js';
8
8
 
9
9
  var _Checkmark;
10
- const Item = aggregatedClasses('div')("".concat(indicatorItemBlockName), null, _ref => {
10
+ const Item = aggregatedClasses('div')(`${indicatorItemBlockName}`, null, _ref => {
11
11
  let {
12
12
  active,
13
13
  completed
@@ -17,7 +17,7 @@ const Item = aggregatedClasses('div')("".concat(indicatorItemBlockName), null, _
17
17
  completed
18
18
  };
19
19
  });
20
- const Wrapper = aggregatedClasses('div')("".concat(indicatorItemBlockName, "-wrapper"));
20
+ const Wrapper = aggregatedClasses('div')(`${indicatorItemBlockName}-wrapper`);
21
21
  const Label = aggregatedClasses('span')(indicatorItemBlockName, 'label');
22
22
  const Bullet = aggregatedClasses('div')(indicatorItemBlockName, 'bullet');
23
23
  const BulletWrapper = aggregatedClasses('div')(indicatorItemBlockName, 'bullet-wrapper');
package/esm/blockNames.js CHANGED
@@ -1,5 +1,5 @@
1
1
  const wizardBlockName = 'wizard';
2
- const indicatorBlockName = "".concat(wizardBlockName, "-steps-indicator");
3
- const indicatorItemBlockName = "".concat(indicatorBlockName, "-step");
2
+ const indicatorBlockName = `${wizardBlockName}-steps-indicator`;
3
+ const indicatorItemBlockName = `${indicatorBlockName}-step`;
4
4
 
5
5
  export { indicatorBlockName, indicatorItemBlockName, wizardBlockName };
package/esm/useWizard.js CHANGED
@@ -1,4 +1,3 @@
1
- import 'core-js/modules/web.dom-collections.iterator.js';
2
1
  import { useCallback } from 'react';
3
2
  import { useDerivedStateFromProps, get } from '@elliemae/ds-utilities';
4
3
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-wizard",
3
- "version": "2.4.2-rc.9",
3
+ "version": "2.4.3-rc.2",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Wizard",
6
6
  "module": "./esm/index.js",
@@ -48,10 +48,10 @@
48
48
  "build": "node ../../scripts/build/build.js"
49
49
  },
50
50
  "dependencies": {
51
- "@elliemae/ds-classnames": "2.4.2-rc.9",
52
- "@elliemae/ds-icons": "2.4.2-rc.9",
53
- "@elliemae/ds-utilities": "2.4.2-rc.9",
54
- "@elliemae/ds-wizard": "2.4.2-rc.9",
51
+ "@elliemae/ds-classnames": "2.4.3-rc.2",
52
+ "@elliemae/ds-icons": "2.4.3-rc.2",
53
+ "@elliemae/ds-utilities": "2.4.3-rc.2",
54
+ "@elliemae/ds-wizard": "2.4.3-rc.2",
55
55
  "prop-types": "~15.7.2",
56
56
  "react-desc": "~4.1.3"
57
57
  },