feature: implement stepper component - #2906
Conversation
rustem-nasyrov
left a comment
There was a problem hiding this comment.
Good job. Have you used any references while you implemented this component?
I have a concerns about using templates instead of creating va-step-item component (or something similar).
- We missing finish button on the last step.
- Vertical example looks odd.
|
Two way: <VaStepper>
<MyStepOne #step-0 />
<MyStepTwo #step-1 />
<MyStepThree #step-2 />
</VaStepper><VaStepper>
<VaStepItem>
<MyStepOne />
</VaStepItem>
<VaStepItem>
<MyStepTwo />
</VaStepItem>
<VaStepItem>
<MyStepThree />
</VaStepItem>
</VaStepper> |
Too difficult at this point. |
aluarius
left a comment
There was a problem hiding this comment.
The component should be accessible: keyboard navigation + aria attributes.
https://docs.telerik.com/kendo-ui/controls/navigation/stepper/accessibility/keyboard-navigation
https://stackoverflow.com/questions/52932018/making-a-step-progress-indicator-accessible-for-screen-readers






close #2245
Types of changes