@elliemae/ds-stepper 2.2.0-next.3 → 2.2.0-rc.0

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.
@@ -47,6 +47,7 @@ const DSStepperButton = props$1 => {
47
47
  buttonType: dsButton.BUTTON_TYPES.TEXT,
48
48
  fontSize: fontSize
49
49
  }, dsPropsHelpers.getAriaProps(props$1)), dsPropsHelpers.getDataProps(props$1)), {}, {
50
+ "data-testid": "ds-stepper-btn",
50
51
  children: [chevron === 'left' ? _ChevronLeft || (_ChevronLeft = /*#__PURE__*/_jsx__default["default"](dsIcons.ChevronLeft, {})) : null, /*#__PURE__*/_jsx__default["default"](styled.Label, {
51
52
  value: label
52
53
  }), chevron === 'right' ? _ChevronRight || (_ChevronRight = /*#__PURE__*/_jsx__default["default"](dsIcons.ChevronRight, {})) : null]
@@ -38,6 +38,7 @@ const DSStepperButton = props => {
38
38
  buttonType: BUTTON_TYPES.TEXT,
39
39
  fontSize: fontSize
40
40
  }, getAriaProps(props)), getDataProps(props)), {}, {
41
+ "data-testid": "ds-stepper-btn",
41
42
  children: [chevron === 'left' ? _ChevronLeft || (_ChevronLeft = /*#__PURE__*/_jsx(ChevronLeft, {})) : null, /*#__PURE__*/_jsx(Label, {
42
43
  value: label
43
44
  }), chevron === 'right' ? _ChevronRight || (_ChevronRight = /*#__PURE__*/_jsx(ChevronRight, {})) : null]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elliemae/ds-stepper",
3
- "version": "2.2.0-next.3",
3
+ "version": "2.2.0-rc.0",
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.3",
52
- "@elliemae/ds-icons": "2.2.0-next.3",
53
- "@elliemae/ds-props-helpers": "2.2.0-next.3",
54
- "@elliemae/ds-truncated-tooltip-text": "2.2.0-next.3",
51
+ "@elliemae/ds-button": "2.2.0-rc.0",
52
+ "@elliemae/ds-icons": "2.2.0-rc.0",
53
+ "@elliemae/ds-props-helpers": "2.2.0-rc.0",
54
+ "@elliemae/ds-truncated-tooltip-text": "2.2.0-rc.0",
55
55
  "react-desc": "~4.1.3",
56
56
  "uid": "~2.0.0"
57
57
  },
@@ -15,7 +15,7 @@ declare const DSStepper: {
15
15
  };
16
16
  };
17
17
  declare const StepperWithSchema: {
18
- (props?: DSStepperInternalsT.StepperPropsT | undefined): JSX.Element;
18
+ (props?: unknown): JSX.Element;
19
19
  propTypes: unknown;
20
20
  toTypescript: () => import("react-desc").TypescriptSchema;
21
21
  };
@@ -41,7 +41,7 @@ declare const DSStepperButton: {
41
41
  };
42
42
  };
43
43
  declare const DSStepperButtonWithSchema: {
44
- (props?: DSStepperInternalsT.StepperButtonPropsT | undefined): JSX.Element;
44
+ (props?: unknown): JSX.Element;
45
45
  propTypes: unknown;
46
46
  toTypescript: () => import("react-desc").TypescriptSchema;
47
47
  };