-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathStepperExtendedPage.razor
More file actions
30 lines (22 loc) · 1.02 KB
/
StepperExtendedPage.razor
File metadata and controls
30 lines (22 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
@page "/mudstepperextended"
@namespace MudExtensions.Docs.Pages
<ExamplePage Component="typeof(MudStepperExtended)">
<ExampleCard ComponentName="StepperExtended"
ExampleName="StepperExtendedExample1"
Title="Playground"
Description="Basic usage and interactive settings.">
<StepperExtendedExample1 />
</ExampleCard>
<ExampleCard ComponentName="StepperExtended"
ExampleName="StepperExtendedExample2"
Title="Order"
Description="You can set each step's order dynamically and reorder at runtime.">
<StepperExtendedExample2 />
</ExampleCard>
<ExampleCard ComponentName="StepperExtended"
ExampleName="StepperExtendedExample3"
Title="Full Flow & Validation"
Description="Advanced flow with BeforeFinishedAsync, OnFinished, validation, dynamic ResultStep, and step status events.">
<StepperExtendedExample3 />
</ExampleCard>
</ExamplePage>