Hello,
i add an input inside kendo stepper using the 'kendoStepperStepTemplate' option, it works fine but in FireFox , you cannot select the input
exemple :
<kendo-stepper
[steps]="steps"
[stepType]="'label'"
[currentStep]="2"
[linear]="false"
[style.width.px]="750"
>
<ng-template kendoStepperStepTemplate let-step let-index="index">
<div class='oval-step'>
<span class="{{step.icon}}"></span>
</div>
<div class='step-label'>{{step.label}}
<ng-container *ngIf="index === 1">
<input type=text value='testtt' >
</ng-container>
</div>
</ng-template>
</kendo-stepper>