Skip to content

Commit bd13f7e

Browse files
authored
Update 6.0.8 (#30)
1 parent 6b49185 commit bd13f7e

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CodeBeam.MudExtensions/CodeBeam.MudExtensions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>net6.0</TargetFramework>
55
<Nullable>disable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
7-
<Version>6.0.7</Version>
7+
<Version>6.0.8</Version>
88
<Title>CodeBeam.MudBlazor.Extensions</Title>
99
<Authors>CodeBeam</Authors>
1010
<Company>CodeBeam</Company>

ComponentViewer/Pages/Components/ApiPage.razor

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,19 @@
2828
</MudTable>
2929
</ExampleCard>
3030

31+
<ExampleCard Title="Api - MudInputStyler" HasExpansionPanel="true">
32+
<MudTable Items="@(typeof(MudInputStyler).GetProperties().OrderBy(x => x.Name).ToList())">
33+
<HeaderContent>
34+
<MudTh>Name</MudTh>
35+
<MudTh>Type</MudTh>
36+
</HeaderContent>
37+
<RowTemplate>
38+
<MudTd>@context.Name</MudTd>
39+
<MudTd>@context.PropertyType.ToString()</MudTd>
40+
</RowTemplate>
41+
</MudTable>
42+
</ExampleCard>
43+
3144
<ExampleCard Title="Api - MudLoading" HasExpansionPanel="true">
3245
<MudTable Items="@(typeof(MudLoading).GetProperties().OrderBy(x => x.Name).ToList())">
3346
<HeaderContent>

0 commit comments

Comments
 (0)