* Handles user click on steps' tabs within the header. * **Note:** the handler is bound in the template. * @private
(e: CustomEvent)
| 430 | * @private |
| 431 | */ |
| 432 | onSelectionChangeRequested(e: CustomEvent) { |
| 433 | this.selectionRequestedByClick = true; |
| 434 | this.changeSelectionByStepAction(e.target as WizardTab); |
| 435 | } |
| 436 | |
| 437 | /** |
| 438 | * Handles user scrolling with debouncing. |
nothing calls this directly
no test coverage detected