Skip to content

Commit

Permalink
- Add note to select when used with multiple=true, Fix #2044, #2996 (#…
Browse files Browse the repository at this point in the history
…2997)

- Clean up IssueTester

Co-authored-by: Denis Voituron <dvoituron@outlook.com>
  • Loading branch information
vnbaaij and dvoituron authored Dec 2, 2024
1 parent ae45b5f commit fb59bc6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 32 deletions.
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

0 comments on commit fb59bc6

Please sign in to comment.