Skip to content

Commit 10d9f3c

Browse files
committed
fix(pf4): fix wizard types for new version
1 parent e0f720d commit 10d9f3c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

packages/pf4-component-mapper/src/files/wizard.d.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,17 @@ export interface WizardProps {
6060
buttonsClassName?: string;
6161
title?: ReactNode;
6262
description?: ReactNode;
63-
isCompactNav?: boolean;
6463
inModal?: boolean;
65-
setFullWidth?: boolean;
66-
setFullHeight?: boolean;
6764
isDynamic?: boolean;
6865
showTitles?: boolean;
6966
crossroads?: string[];
7067
fields: WizardField[];
68+
hideClose?: boolean;
69+
titleId?: string;
70+
descriptionId?: string;
71+
closeButtonAriaLabel?: string;
72+
hasNoBodyPadding?: boolean;
73+
navAriaLabel?: string;
7174
}
7275

7376
declare const Wizard: React.ComponentType<WizardProps>;

packages/pf4-component-mapper/src/files/wizard.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,7 @@ WizardInternal.propTypes = {
148148
buttonsClassName: PropTypes.string,
149149
title: PropTypes.any,
150150
description: PropTypes.any,
151-
isCompactNav: PropTypes.bool,
152151
inModal: PropTypes.bool,
153-
setFullWidth: PropTypes.bool,
154-
setFullHeight: PropTypes.bool,
155152
isDynamic: PropTypes.bool,
156153
showTitles: PropTypes.bool,
157154
crossroads: PropTypes.arrayOf(PropTypes.string),

0 commit comments

Comments
 (0)