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
32 changes: 1 addition & 31 deletions examples/Demo/Shared/Pages/Lab/IssueTester.razor
Original file line number Diff line number Diff line change
@@ -1,31 +1 @@
<div style="width: 175px;">
<FluentTabs ActiveTabId="tab-1">
<FluentTab Id="tab-1" Label="All">
<Header>
<FluentIcon Value="@(new Icons.Regular.Size16.LeafOne())" />
All
</Header>
<Content>
Content 0
</Content>
</FluentTab>
<FluentTab Id="tab-2" Label="January">
<Header>
<FluentIcon Value="@(new Icons.Regular.Size16.LeafTwo())" Color="@Color.Success" />
January
</Header>
<Content>
Content 1
</Content>
</FluentTab>
<FluentTab Id="tab-3" Label="February">
<Header>
<FluentIcon Value="@(new Icons.Regular.Size16.LeafThree())" Color="@Color.Error" />
<span style="color:forestgreen;">February</span>
</Header>
<Content>
Content 2
</Content>
</FluentTab>
</FluentTabs>
</div>

8 changes: 7 additions & 1 deletion examples/Demo/Shared/Pages/List/Select/SelectPage.razor
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,13 @@

<DemoSection Title="Forced position" Component="@typeof(SelectPositioning)"></DemoSection>

<DemoSection Title="Multiple items" Component="@typeof(SelectMultiple)"></DemoSection>
<DemoSection Title="Multiple items" Component="@typeof(SelectMultiple)">
<Description>
<blockquote>
When the parameter <code>Multiple</code> is set to <code>true</code>, the select list is always shown expanded. The current underlying web component does not support a dropdown
</blockquote>
</Description>
</DemoSection>

<DemoSection Title="Multiple items with selected and disabled options" Component="@typeof(SelectMultipleWithFunctions)"></DemoSection>

Expand Down
Loading