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