Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
}
else
{
<MudIconButton Icon="@_passwordIcon" Color="@AdornmentColor" Size="@IconSize" OnClick="AdornmentClick"></MudIconButton>
<MudIconButton Icon="@_passwordIcon" Color="@AdornmentColor" Size="@IconSize" OnClick="AdornmentClick" tabindex="@(AdornmentTabStop ? 0 : -1)"></MudIconButton>
}
</AdornmentEnd>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,13 @@ public partial class MudPasswordField<T> : MudDebouncedInput<T>
[Category(CategoryTypes.FormComponent.Behavior)]
public bool Clearable { get; set; } = false;

/// <summary>
/// If true, adornment button accepts tab stop. Default is false.
/// </summary>
[Parameter]
[Category(CategoryTypes.FormComponent.Behavior)]
public bool AdornmentTabStop { get; set; }

/// <summary>
/// Button click event for clear button. Called after text and value has been cleared.
/// </summary>
Expand Down