You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/wizard/wizard-directive.js
+62-17Lines changed: 62 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -20,6 +20,12 @@
20
20
*
21
21
* @param {string} title The wizard title displayed in the header
22
22
* @param {boolean=} hideIndicators Hides the step indicators in the header of the wizard
23
+
* @param {boolean=} hideSidebar Hides page navigation sidebar on the wizard pages
24
+
* @param {boolean=} hideHeader Optional value to hide the title bar. Default is false.
25
+
* @param {boolean=} hideBackButton Optional value to hide the back button, useful in 2 step wizards. Default is false.
26
+
* @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.
27
+
* @param {string=} sidebarClass Optional CSS class to be give to the sidebar panel. Only used if the stepClass is also provided.
28
+
* @param {string=} contentHeight The height the wizard content should be set to. This is used ONLY if the stepClass is not given. This defaults to 300px if the property is not supplied.
23
29
* @param {string=} currentStep The current step can be changed externally - this is the title of the step to switch the wizard to
24
30
* @param {string=} cancelTitle The text to display on the cancel button
25
31
* @param {string=} backTitle The text to display on the back button
@@ -32,7 +38,6 @@
32
38
* @param {boolean=} wizardDone Value that is set when the wizard is done
33
39
* @param {string} loadingWizardTitle The text displayed when the wizard is loading
34
40
* @param {string=} loadingSecondaryInformation Secondary descriptive information to display when the wizard is loading
35
-
* @param {string=} contentHeight The height the wizard content should be set to. This defaults to 300px if the property is not supplied.
36
41
* @param {boolean=} embedInPage Value that indicates wizard is embedded in a page (not a modal). This moves the navigation buttons to the left hand side of the footer and removes the close button.
0 commit comments