diff --git a/packages/common/babel.config.js b/packages/common/babel.config.js index 8c45abc5f..5283cadc3 100644 --- a/packages/common/babel.config.js +++ b/packages/common/babel.config.js @@ -21,7 +21,9 @@ const mapper = { WizardNavItem: 'Wizard', WizardNav: 'Wizard', WizardBody: 'Wizard', - WizardHeader: 'Wizard' + WizardHeader: 'Wizard', + ActionListGroup: 'ActionList', + ActionListItem: 'ActionList', }; const blueprintMapper = { diff --git a/packages/common/config/webpack.config.js b/packages/common/config/webpack.config.js index 0633ecdd3..dd9dc98d6 100644 --- a/packages/common/config/webpack.config.js +++ b/packages/common/config/webpack.config.js @@ -26,6 +26,9 @@ const devConfig = { process: 'process/browser.js' }) ], + devServer: { + port: 3000, + }, module: { rules: [ { diff --git a/packages/pf4-component-mapper/src/wizard/wizard-components/step-buttons.js b/packages/pf4-component-mapper/src/wizard/wizard-components/step-buttons.js index b6f8dc51a..2a1d030cd 100644 --- a/packages/pf4-component-mapper/src/wizard/wizard-components/step-buttons.js +++ b/packages/pf4-component-mapper/src/wizard/wizard-components/step-buttons.js @@ -1,5 +1,5 @@ import React from 'react'; -import { Button } from '@patternfly/react-core'; +import { Button, ActionList, ActionListGroup, ActionListItem } from '@patternfly/react-core'; import selectNext from '@data-driven-forms/common/wizard/select-next'; import { FormSpy } from '@data-driven-forms/react-form-renderer'; @@ -30,43 +30,53 @@ const WizardStepButtons = ({ conditionalSubmitFlag, }) => ( );