|
9 | 9 | * The basic structure should be: |
10 | 10 | * <pre> |
11 | 11 | * <div pf-wizard> |
12 | | - * <div pf-wizardstep> |
13 | | - * <div pf-wizardsubstep><!-- content here --></div> |
14 | | - * <div pf-wizardsubstep><!-- content here --></div> |
| 12 | + * <div pf-wizard-step> |
| 13 | + * <pf-wizard-substep><!-- content here --></pf-wizard-substep> |
| 14 | + * <pf-wizard-substep><!-- content here --></pf-wizard-substep> |
15 | 15 | * </div> |
16 | | - * <div pf-wizardstep><!-- additional configuration can be added here with substeps if desired --></div> |
17 | | - * <div pf-wizardstep><!-- review steps and final command here --></div> |
| 16 | + * <div pf-wizard-step><!-- additional configuration can be added here with substeps if desired --></div> |
| 17 | + * <div pf-wizard-step><!-- review steps and final command here --></div> |
18 | 18 | * </div> |
19 | 19 | * </pre> |
20 | 20 | * |
|
56 | 56 | <div pf-wizard-step step-title="First Step" substeps="true" step-id="details" step-priority="0" show-review="true" show-review-details="true"> |
57 | 57 | <div ng-include="'detail-page.html'"> |
58 | 58 | </div> |
59 | | - <div pf-wizard-substep step-title="Details - Extra" next-enabled="true" step-id="details-extra" step-priority="1" show-review="true" show-review-details="true" review-template="review-second-template.html"> |
| 59 | + <pf-wizard-substep step-title="Details - Extra" next-enabled="true" step-id="details-extra" step-priority="1" show-review="true" show-review-details="true" review-template="review-second-template.html"> |
60 | 60 | <form class="form-horizontal"> |
61 | 61 | <div pf-form-group pf-label="Lorem" required> |
62 | 62 | <input id="new-lorem" name="lorem" ng-model="data.lorem" type="text" required/> |
|
65 | 65 | <input id="new-ipsum" name="ipsum" ng-model="data.ipsum" type="text" /> |
66 | 66 | </div> |
67 | 67 | </form> |
68 | | - </div> |
| 68 | + </pf-wizard-substep> |
69 | 69 | </div> |
70 | 70 | <div pf-wizard-step step-title="Second Step" substeps="false" step-id="configuration" step-priority="1" show-review="true" review-template="review-second-template.html" > |
71 | 71 | <form class="form-horizontal"> |
|
86 | 86 | </file> |
87 | 87 | <file name="detail-page.html"> |
88 | 88 | <div ng-controller="DetailsGeneralController"> |
89 | | - <div pf-wizard-substep step-title="General" next-enabled="detailsGeneralComplete" step-id="details-general" step-priority="0" on-show="onShow" review-template="{{reviewTemplate}}" show-review-details="true"> |
| 89 | + <pf-wizard-substep step-title="General" next-enabled="detailsGeneralComplete" step-id="details-general" step-priority="0" on-show="onShow" review-template="{{reviewTemplate}}" show-review-details="true"> |
90 | 90 | <form class="form-horizontal"> |
91 | 91 | <div pf-form-group pf-label="Name" required> |
92 | 92 | <input id="new-name" name="name" ng-model="data.name" type="text" ng-change="updateName()" required/> |
|
95 | 95 | <input id="new-description" name="description" ng-model="data.description" type="text" /> |
96 | 96 | </div> |
97 | 97 | </form> |
98 | | - </div> |
| 98 | + </pf-wizard-substep> |
99 | 99 | </div> |
100 | 100 | </file> |
101 | 101 | <file name="review-template.html"> |
|
128 | 128 | </file> |
129 | 129 | <file name="summary.html"> |
130 | 130 | <div ng-controller="SummaryController"> |
131 | | - <div pf-wizard-substep step-title="Summary" step-id="review-summary" step-priority="0" next-enabled="true" prev-enabled="true" ok-to-nav-away="true" wz-disabled="false" on-show="onShow"> |
| 131 | + <pf-wizard-substep step-title="Summary" step-id="review-summary" step-priority="0" next-enabled="true" prev-enabled="true" ok-to-nav-away="true" wz-disabled="false" on-show="onShow"> |
132 | 132 | <div pf-wizard-review-page shown="pageShown" wizard-data="data"></div> |
133 | | - </div> |
| 133 | + </pf-wizard-substep> |
134 | 134 | </div> |
135 | 135 | </file> |
136 | 136 | <file name="deployment.html"> |
137 | 137 | <div ng-controller="DeploymentController"> |
138 | | - <div pf-wizard-substep step-title="Deploy" step-id="review-progress" step-priority="1" next-enabled="true" prev-enabled="false" ok-to-nav-away="true" wz-disabled="false" on-show="onShow"> |
| 138 | + <pf-wizard-substep step-title="Deploy" step-id="review-progress" step-priority="1" next-enabled="true" prev-enabled="false" ok-to-nav-away="true" wz-disabled="false" on-show="onShow"> |
139 | 139 | <div class="wizard-pf-contents" ng-controller="DeploymentController"> |
140 | 140 | <div class="wizard-pf-process blank-slate-pf" ng-if="!deploymentComplete"> |
141 | 141 | <div class="spinner spinner-lg blank-slate-pf-icon"></div> |
|
149 | 149 | <button type="button" class="btn btn-lg btn-primary">View Deployment</button> |
150 | 150 | </div> |
151 | 151 | </div> |
152 | | - </div> |
| 152 | + </pf-wizard-substep> |
153 | 153 | </div> |
154 | 154 | </file> |
155 | 155 | <file name="script.js"> |
|
0 commit comments