Skip to content

Commit

Permalink
update breadcrumb component
Browse files Browse the repository at this point in the history
  • Loading branch information
yagizhanNY committed Oct 5, 2023
1 parent e34e4c2 commit e769171
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion SiemensIXBlazor/Components/Breadcrumb/Breadcrumb.razor
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

@namespace SiemensIXBlazor.Components

<ix-breadcrumb @attributes="UserAttributes" class="@Class" style="@Style" ghost="@Ghost" nextItems="@NextItems" visibleItemCount="@VisibleItemCount" id="@Id">
<ix-breadcrumb @attributes="UserAttributes" class="@Class" style="@Style" ghost="@Ghost" nextItems="@NextItems" visibleItemCount="@VisibleItemCount" id="@Id" aria-label-previous-button="@AriaLabelPreviousButton">
@ChildContent
</ix-breadcrumb>
2 changes: 2 additions & 0 deletions SiemensIXBlazor/Components/Breadcrumb/Breadcrumb.razor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ public partial class Breadcrumb
[Parameter]
public bool Ghost { get; set; } = false;
[Parameter]
public string AriaLabelPreviousButton { get; set; } = "previous";
[Parameter]
public string[] NextItems { get; set; } = Array.Empty<string>();
[Parameter]
public int VisibleItemCount { get; set; } = 9;
Expand Down

0 comments on commit e769171

Please sign in to comment.