-
Notifications
You must be signed in to change notification settings - Fork 90
Wizard Enhancements #458
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wizard Enhancements #458
Conversation
src/wizard/wizard-directive.js
Outdated
| * @param {boolean=} hideSidebar Hides page navigation sidebar on the wizard pages | ||
| * @param {boolean=} hideHeader Optional value to hide the title bar. Default is false. | ||
| * @param {string=} stepClass Optional CSS class to be given to the steps page container. Used for the sidebar panel as well unless a sidebarClass is provided. | ||
| * @param {string=} aidebarClass Optional CSS class to be give to the aidebar panel. Only used if the stepClass is also provided. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
noticed typo in two places aidebar -> sidebar
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. Fixed.
cdcabrera
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Appears the "wizard-review-page-directive" directive still makes use of the "require", is that going to interfere with anything?
allow hiding header allow hiding the sidebar navigation panel allow hiding the back button (useful in 2 page wizards) add disabled class to step indicators when disabled allow adding a class to the sidebar and step panels rather than setting a height allow use of the wizard from typescript bases applications
|
Thanks @cdcabrera, I have updated the review page as well. |
The use of require ^ fails when being included in typescript so that has been removed and replaced by using scope to find the required Wizard/WizardStep controllers.
@jwforres @spadgett @rhamilto