@elliemae/ds-stepper 2.2.0-next.7 → 2.2.0-next.8

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.
@@ -46,7 +46,8 @@ const DSStepperButton = props$1 => {
46
46
  onClick: onClick,
47
47
  innerRef: innerRef,
48
48
  buttonType: dsButton.BUTTON_TYPES.TEXT,
49
- fontSize: fontSize
49
+ fontSize: fontSize,
50
+ "data-testid": "ds-stepper-btn"
50
51
  }, globalAttributes), {}, {
51
52
  children: [chevron === 'left' ? _ChevronLeft || (_ChevronLeft = /*#__PURE__*/_jsx__default["default"](dsIcons.ChevronLeft, {})) : null, /*#__PURE__*/_jsx__default["default"](styled.Label, {
52
53
  value: label
@@ -37,7 +37,8 @@ const DSStepperButton = props => {
37
37
  onClick: onClick,
38
38
  innerRef: innerRef,
39
39
  buttonType: BUTTON_TYPES.TEXT,
40
- fontSize: fontSize
40
+ fontSize: fontSize,
41
+ "data-testid": "ds-stepper-btn"
41
42
  }, globalAttributes), {}, {
42
43
  children: [chevron === 'left' ? _ChevronLeft || (_ChevronLeft = /*#__PURE__*/_jsx(ChevronLeft, {})) : null, /*#__PURE__*/_jsx(Label, {
43
44
  value: label
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-stepper",
3
- "version": "2.2.0-next.7",
3
+ "version": "2.2.0-next.8",
4
4
  "license": "MIT",
5
5
  "description": "ICE MT - Dimsum - Stepper",
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-button": "2.2.0-next.7",
52
- "@elliemae/ds-icons": "2.2.0-next.7",
53
- "@elliemae/ds-props-helpers": "2.2.0-next.7",
54
- "@elliemae/ds-truncated-tooltip-text": "2.2.0-next.7",
51
+ "@elliemae/ds-button": "2.2.0-next.8",
52
+ "@elliemae/ds-icons": "2.2.0-next.8",
53
+ "@elliemae/ds-props-helpers": "2.2.0-next.8",
54
+ "@elliemae/ds-truncated-tooltip-text": "2.2.0-next.8",
55
55
  "react-desc": "~4.1.3",
56
56
  "uid": "~2.0.0"
57
57
  },
@@ -376,7 +376,7 @@ declare const DSStepper: {
376
376
  };
377
377
  };
378
378
  declare const StepperWithSchema: {
379
- (props?: DSStepperInternalsT.StepperPropsT | undefined): JSX.Element;
379
+ (props?: unknown): JSX.Element;
380
380
  propTypes: unknown;
381
381
  toTypescript: () => import("react-desc").TypescriptSchema;
382
382
  };
@@ -387,7 +387,7 @@ declare const DSStepperButton: {
387
387
  };
388
388
  };
389
389
  declare const DSStepperButtonWithSchema: {
390
- (props?: DSStepperInternalsT.StepperButtonPropsT | undefined): JSX.Element;
390
+ (props?: unknown): JSX.Element;
391
391
  propTypes: unknown;
392
392
  toTypescript: () => import("react-desc").TypescriptSchema;
393
393
  };