mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
23 lines
605 B
C#
23 lines
605 B
C#
namespace Radzen;
|
|
|
|
/// <summary>
|
|
/// Specifies the transition animation used when switching between steps in a <see cref="Radzen.Blazor.RadzenSteps" /> component.
|
|
/// </summary>
|
|
public enum StepsTransition
|
|
{
|
|
/// <summary>
|
|
/// No transition animation. Step content changes instantly (default behavior).
|
|
/// </summary>
|
|
None,
|
|
|
|
/// <summary>
|
|
/// Fade-in transition. The new step content fades in.
|
|
/// </summary>
|
|
Fade,
|
|
|
|
/// <summary>
|
|
/// Slide transition. The new step content slides in horizontally. Automatically respects RTL direction.
|
|
/// </summary>
|
|
Slide
|
|
}
|