@elliemae/ds-wizard 2.0.0-alpha.9 → 2.0.0-next.4

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
@@ -16,14 +16,14 @@ var _jsx__default = /*#__PURE__*/_interopDefaultLegacy(_jsx);
16
16
  var Checkmark__default = /*#__PURE__*/_interopDefaultLegacy(Checkmark);
17
17
 
18
18
  var _Checkmark;
19
- const Item = dsClassnames.aggregatedClasses('div')(`${blockNames.indicatorItemBlockName}`, null, ({
19
+ const Item = dsClassnames.aggregatedClasses('div')("".concat(blockNames.indicatorItemBlockName), null, ({
20
20
  active,
21
21
  completed
22
22
  }) => ({
23
23
  active,
24
24
  completed
25
25
  }));
26
- const Wrapper = dsClassnames.aggregatedClasses('div')(`${blockNames.indicatorItemBlockName}-wrapper`);
26
+ const Wrapper = dsClassnames.aggregatedClasses('div')("".concat(blockNames.indicatorItemBlockName, "-wrapper"));
27
27
  const Label = dsClassnames.aggregatedClasses('span')(blockNames.indicatorItemBlockName, 'label');
28
28
  const Bullet = dsClassnames.aggregatedClasses('div')(blockNames.indicatorItemBlockName, 'bullet');
29
29
  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 = `${wizardBlockName}-steps-indicator`;
7
- const indicatorItemBlockName = `${indicatorBlockName}-step`;
6
+ const indicatorBlockName = "".concat(wizardBlockName, "-steps-indicator");
7
+ const indicatorItemBlockName = "".concat(indicatorBlockName, "-step");
8
8
 
9
9
  exports.indicatorBlockName = indicatorBlockName;
10
10
  exports.indicatorItemBlockName = indicatorItemBlockName;
package/cjs/useWizard.js CHANGED
@@ -1,5 +1,6 @@
1
1
  'use strict';
2
2
 
3
+ require('core-js/modules/web.dom-collections.iterator.js');
3
4
  var React = require('react');
4
5
  var utils = require('@elliemae/ds-utilities/utils');
5
6
  var useDerivedStateFromProps = require('@elliemae/ds-utilities/hooks/useDerivedStateFromProps');
package/esm/WizardStep.js CHANGED
@@ -7,14 +7,14 @@ import Checkmark from '@elliemae/ds-icons/Checkmark';
7
7
  import { indicatorItemBlockName } from './blockNames.js';
8
8
 
9
9
  var _Checkmark;
10
- const Item = aggregatedClasses('div')(`${indicatorItemBlockName}`, null, ({
10
+ const Item = aggregatedClasses('div')("".concat(indicatorItemBlockName), null, ({
11
11
  active,
12
12
  completed
13
13
  }) => ({
14
14
  active,
15
15
  completed
16
16
  }));
17
- const Wrapper = aggregatedClasses('div')(`${indicatorItemBlockName}-wrapper`);
17
+ const Wrapper = aggregatedClasses('div')("".concat(indicatorItemBlockName, "-wrapper"));
18
18
  const Label = aggregatedClasses('span')(indicatorItemBlockName, 'label');
19
19
  const Bullet = aggregatedClasses('div')(indicatorItemBlockName, 'bullet');
20
20
  const BulletWrapper = aggregatedClasses('div')(indicatorItemBlockName, 'bullet-wrapper');
package/esm/blockNames.js CHANGED
@@ -1,5 +1,5 @@
1
1
  const wizardBlockName = 'wizard';
2
- const indicatorBlockName = `${wizardBlockName}-steps-indicator`;
3
- const indicatorItemBlockName = `${indicatorBlockName}-step`;
2
+ const indicatorBlockName = "".concat(wizardBlockName, "-steps-indicator");
3
+ const indicatorItemBlockName = "".concat(indicatorBlockName, "-step");
4
4
 
5
5
  export { indicatorBlockName, indicatorItemBlockName, wizardBlockName };
package/esm/useWizard.js CHANGED
@@ -1,3 +1,4 @@
1
+ import 'core-js/modules/web.dom-collections.iterator.js';
1
2
  import { useCallback } from 'react';
2
3
  import { get } from '@elliemae/ds-utilities/utils';
3
4
  import useDerivedStateFromProps from '@elliemae/ds-utilities/hooks/useDerivedStateFromProps';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-wizard",
3
- "version": "2.0.0-alpha.9",
3
+ "version": "2.0.0-next.4",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Wizard",
6
6
  "module": "./esm/index.js",
@@ -52,9 +52,9 @@
52
52
  "build": "node ../../scripts/build/build.js"
53
53
  },
54
54
  "dependencies": {
55
- "@elliemae/ds-basic": "2.0.0-alpha.9",
56
- "@elliemae/ds-classnames": "2.0.0-alpha.9",
57
- "@elliemae/ds-utilities": "2.0.0-alpha.9",
55
+ "@elliemae/ds-basic": "2.0.0-next.4",
56
+ "@elliemae/ds-classnames": "2.0.0-next.4",
57
+ "@elliemae/ds-utilities": "2.0.0-next.4",
58
58
  "prop-types": "~15.7.2"
59
59
  },
60
60
  "peerDependencies": {
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
- }