aefis-core-ui 2.3.0-rc36 → 2.3.0-rc37

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.
@@ -14853,7 +14853,7 @@ const Header = props => {
14853
14853
  listStyle: "none"
14854
14854
  },
14855
14855
  children: props.data.map((step, index) => /*#__PURE__*/createElement(Step, _extends({}, stepA11lyProps(index, currentActiveStep), {
14856
- ariaCurrent: true,
14856
+ "aria-current": true,
14857
14857
  component: "li",
14858
14858
  key: `wizardHeaderStep-${step.id}`
14859
14859
  }), /*#__PURE__*/jsx(StepLabel, {
@@ -15072,7 +15072,7 @@ WizardPanel.defaultProps = {
15072
15072
  };
15073
15073
  WizardPanel.propTypes = {
15074
15074
  /** Where to display the panel, a dialog or drawer. */
15075
- display: PropTypes.oneOf(["drawer"], ["dialog"]),
15075
+ display: PropTypes.oneOf(["drawer", "dialog"]),
15076
15076
  /** The data defining the wizard steps and content. */
15077
15077
  panels: PropTypes.arrayOf(PropTypes.shape({
15078
15078
  id: PropTypes.any.isRequired,