Resets the stepper to its initial state. Note that this includes clearing form data.
()
| 506 | |
| 507 | /** Resets the stepper to its initial state. Note that this includes clearing form data. */ |
| 508 | reset(): void { |
| 509 | this._updateSelectedItemIndex(0); |
| 510 | this.steps.forEach(step => step.reset()); |
| 511 | this._stateChanged(); |
| 512 | } |
| 513 | |
| 514 | /** Returns a unique id for each step label element. */ |
| 515 | _getStepLabelId(i: number): string { |
nothing calls this directly
no test coverage detected