-
Notifications
You must be signed in to change notification settings - Fork 476
[dev-v5][Docs] Add a sticker sheet #4995
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
Vincent Baaij (vnbaaij)
wants to merge
9
commits into
dev-v5
Choose a base branch
from
users/vnbaaij/add-sticker-sheet
base: dev-v5
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
2833f71
Initial work to add a sticker sheet containg aal components (with a ui)
vnbaaij 5b09918
Add a messag to empty cards
vnbaaij 855782f
Add root div (with background color to make the cards stand out more
vnbaaij 9658a0f
Get more cards done
vnbaaij 1b33a28
Merge branch 'dev-v5' into users/vnbaaij/add-sticker-sheet
vnbaaij 37d3fd2
Initial plan for Debounce_Default flaky test fix
Copilot 580ad0b
fix: Debounce.RunAsync silently swallows external cancellations
Copilot f17c236
fix: use explicit two-condition exception filter in Debounce.RunAsync
Copilot 8e6ee06
revert: restore branch content to 1b33a28 without force-push
Copilot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentAccordionCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| <div class="sticker-row"> | ||
| <FluentAccordion> | ||
| <FluentAccordionItem Header="Accordion header 1"> | ||
| Accordion panel 1 | ||
| </FluentAccordionItem> | ||
| <FluentAccordionItem Header="Accordion header 2"> | ||
| Accordion panel 2 | ||
| </FluentAccordionItem> | ||
| </FluentAccordion> | ||
| </div> |
17 changes: 17 additions & 0 deletions
17
...les/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentAnchorButtonCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| <div class="sticker-row"> | ||
| <FluentAnchorButton> | ||
| Default | ||
| </FluentAnchorButton> | ||
| <FluentAnchorButton Appearance="ButtonAppearance.Primary"> | ||
| Primary | ||
| </FluentAnchorButton> | ||
| <FluentAnchorButton Appearance="ButtonAppearance.Outline"> | ||
| Outline | ||
| </FluentAnchorButton> | ||
| <FluentAnchorButton Appearance="ButtonAppearance.Subtle"> | ||
| Subtle | ||
| </FluentAnchorButton> | ||
| <FluentAnchorButton Appearance="ButtonAppearance.Transparent"> | ||
| Transparent | ||
| </FluentAnchorButton> | ||
| </div> |
49 changes: 49 additions & 0 deletions
49
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentAppBarCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| <div class="sticker-row"> | ||
| <FluentAppBar Orientation="Orientation.Horizontal" Style="width: 350px;"> | ||
| <FluentAppBarItem IconRest="ResourcesIcon()" | ||
| IconActive="ResourcesIcon(active: true)" | ||
| Text="Resources" /> | ||
| <FluentAppBarItem IconRest="ConsoleLogsIcon()" | ||
| IconActive="ConsoleLogsIcon(active: true)" | ||
| Text="Console Logs" /> | ||
| <FluentAppBarItem Href="/sticker-sheet" | ||
| IconRest="StickerSheetIcon()" | ||
| IconActive="StickerSheetIcon(active: true)" | ||
| Text="Sticker Sheet" /> | ||
| <FluentAppBarItem IconRest="StructuredLogsIcon()" | ||
| IconActive="StructuredLogsIcon(active: true)" | ||
| Text="Logs" | ||
| Tooltip="Structured Logs" /> | ||
| <FluentAppBarItem IconRest="TracesIcon()" | ||
| IconActive="TracesIcon(active: true)" | ||
| Text="Traces" /> | ||
| <FluentAppBarItem IconRest="MetricsIcon()" | ||
| IconActive="MetricsIcon(active: true)" | ||
| Text="Metrics" /> | ||
| </FluentAppBar> | ||
| </div> | ||
|
|
||
| @code { | ||
| private static Icon ResourcesIcon(bool active = false) => | ||
| active ? new Icons.Filled.Size24.AppFolder() | ||
| : new Icons.Regular.Size24.AppFolder(); | ||
|
|
||
| private static Icon ConsoleLogsIcon(bool active = false) => | ||
| active ? new Icons.Filled.Size24.SlideText() | ||
| : new Icons.Regular.Size24.SlideText(); | ||
|
|
||
| private static Icon StructuredLogsIcon(bool active = false) => | ||
| active ? new Icons.Filled.Size24.SlideTextSparkle() | ||
| : new Icons.Regular.Size24.SlideTextSparkle(); | ||
|
|
||
| private static Icon TracesIcon(bool active = false) => | ||
| active ? new Icons.Filled.Size24.GanttChart() | ||
| : new Icons.Regular.Size24.GanttChart(); | ||
|
|
||
| private static Icon MetricsIcon(bool active = false) => | ||
| active ? new Icons.Filled.Size24.ChartMultiple() | ||
| : new Icons.Regular.Size24.ChartMultiple(); | ||
| private static Icon StickerSheetIcon(bool active = false) => | ||
| active ? new Icons.Filled.Size24.Sticker() | ||
| : new Icons.Regular.Size24.Sticker(); | ||
| } | ||
22 changes: 22 additions & 0 deletions
22
...les/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentAutocompleteCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| @using static FluentUI.Demo.SampleData.Olympics2024 | ||
| <div class="sticker-row"> | ||
|
|
||
| <FluentAutocomplete TOption="Country" | ||
| TValue="string" | ||
| Width="100%" | ||
| Label="Select countries" | ||
| Placeholder="Type to search..." | ||
| OnOptionsSearch="@OnSearchAsync" | ||
| OptionText="@(item => item.Name)" | ||
| OptionDisabled="@(e => e.Code == "au")"/> | ||
|
vnbaaij marked this conversation as resolved.
|
||
| </div> | ||
| @code | ||
| { | ||
| Task OnSearchAsync(OptionsSearchEventArgs<Country> e) | ||
| { | ||
| e.Items = Countries.Where(i => i.Name.StartsWith(e.Text, StringComparison.OrdinalIgnoreCase)) | ||
| .OrderBy(i => i.Name); | ||
|
|
||
| return Task.CompletedTask; | ||
| } | ||
| } | ||
6 changes: 6 additions & 0 deletions
6
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentAvatarCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <div class="sticker-row"> | ||
| <FluentAvatar Shape="AvatarShape.Circle" Size="AvatarSize.Size32" Initials="VB" /> | ||
| <FluentAvatar Shape="AvatarShape.Square" Size="AvatarSize.Size32" Initials="DV" /> | ||
| <FluentAvatar Shape="AvatarShape.Circle" Size="AvatarSize.Size48" Initials="MK" /> | ||
| <FluentAvatar Shape="AvatarShape.Circle" Size="AvatarSize.Size48" Initials="AC" Active="true" /> | ||
| </div> |
14 changes: 14 additions & 0 deletions
14
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentBadgeCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| <div class="sticker-row"> | ||
| <FluentBadge Appearance="BadgeAppearance.Filled" Color="BadgeColor.Brand"> | ||
| Filled | ||
| </FluentBadge> | ||
| <FluentBadge Appearance="BadgeAppearance.Ghost" Color="BadgeColor.Brand"> | ||
| Ghost | ||
| </FluentBadge> | ||
| <FluentBadge Appearance="BadgeAppearance.Outline" Color="BadgeColor.Brand"> | ||
| Outline | ||
| </FluentBadge> | ||
| <FluentBadge Appearance="BadgeAppearance.Tint" Color="BadgeColor.Brand"> | ||
| Tint | ||
| </FluentBadge> | ||
| </div> |
17 changes: 17 additions & 0 deletions
17
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentButtonCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| <div class="sticker-row"> | ||
| <FluentButton> | ||
| Default | ||
| </FluentButton> | ||
| <FluentButton Appearance="ButtonAppearance.Primary"> | ||
| Primary | ||
| </FluentButton> | ||
| <FluentButton Appearance="ButtonAppearance.Outline"> | ||
| Outline | ||
| </FluentButton> | ||
| <FluentButton Appearance="ButtonAppearance.Subtle"> | ||
| Subtle | ||
| </FluentButton> | ||
| <FluentButton Appearance="ButtonAppearance.Transparent"> | ||
| Transparent | ||
| </FluentButton> | ||
| </div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentCalendarCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
5 changes: 5 additions & 0 deletions
5
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentCardCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| <div class="sticker-row"> | ||
| <FluentCard Shadow="CardShadow.Default"> | ||
| Hello! This is a card. | ||
| </FluentCard> | ||
| </div> |
13 changes: 13 additions & 0 deletions
13
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentCheckboxCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| <div class="sticker-col"> | ||
| <FluentCheckbox Margin="0" @bind-Value="@value1" Label="Checked" /> | ||
| <FluentCheckbox Margin="0" @bind-Value="@value2" Disabled="true" Label="Disabled" /> | ||
| <FluentCheckbox Margin="0" @bind-Value="@value3" Label="Unchecked" /> | ||
| <FluentCheckbox Margin="0" @bind-CheckState="value4" ShowIndeterminate="true" Label="Indeterminate" /> | ||
| </div> | ||
|
|
||
| @code { | ||
| bool value1 = true; | ||
| bool value2 = true; | ||
| bool value3; | ||
| bool? value4; | ||
| } |
1 change: 1 addition & 0 deletions
1
...ples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentColorPickerCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentComboboxCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...s/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentCompoundButtonCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...les/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentCounterBadgeCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentDataGridCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentDatePickerCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentDialogCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
12 changes: 12 additions & 0 deletions
12
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentDividerCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| <div class="sticker-col"> | ||
| <FluentDivider /> | ||
| <FluentDivider> | ||
| Text | ||
| </FluentDivider> | ||
| <FluentDivider Appearance="DividerAppearance.Brand"> | ||
| Brand | ||
| </FluentDivider> | ||
| <FluentDivider Appearance="DividerAppearance.Subtle"> | ||
| Subtle | ||
| </FluentDivider> | ||
| </div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentEmojiCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
3 changes: 3 additions & 0 deletions
3
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentFieldCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| <div class="sticker-row"> | ||
| <FluentTextInput Placeholder="Enter text" Label="Label" Message="Helper message" MessageCondition="@FluentFieldCondition.Always"></FluentTextInput> | ||
| </div> |
26 changes: 26 additions & 0 deletions
26
...s/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentFormValidationCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| @using System.ComponentModel.DataAnnotations | ||
|
|
||
| <EditForm Model="@model" novalidate="true"> | ||
| <DataAnnotationsValidator /> | ||
| <FluentValidationSummary /> | ||
|
|
||
| <FluentStack Orientation="Orientation.Vertical"> | ||
| <div> | ||
| <FluentTextInput Name="identifier" @bind-Value="model.Identifier" Label="Identifier" Required="true" /> | ||
| </div> | ||
|
|
||
| <FluentButton Type="ButtonType.Submit" Appearance="ButtonAppearance.Primary">Submit</FluentButton> | ||
| </FluentStack> | ||
| </EditForm> | ||
|
|
||
| @code { | ||
| private class Model | ||
| { | ||
| [Required] | ||
| [StringLength(10, MinimumLength = 3, ErrorMessage = "Identifier must be between 3 and 10 characters.")] | ||
| public string Identifier { get; set; } = string.Empty; | ||
| } | ||
|
|
||
| private Model model = new Model(); | ||
|
|
||
| } |
1 change: 1 addition & 0 deletions
1
...ples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentHighlighterCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentIconCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentImageCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentInputFileCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentLabelCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentLabelInfoCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentLinkCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentListBaseCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentListboxCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentMenuButtonCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentMenuCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentMessageBarCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...mo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentMessageBarProviderCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentMessageBoxCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...es/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentMultiSplitterCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentNavCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...ples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentNumberInputCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentOptionCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentOverflowCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...les/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentOverflowItemCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentOverlayCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentPaginatorCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentPopoverCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...es/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentPresenceBadgeCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...ples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentProgressBarCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...es/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentPullToRefreshCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentRadioGroupCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...es/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentRatingDisplayCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentSelectCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentSkeletonCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentSliderCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...les/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentSortableListCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentSpinnerCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...ples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentSplitButtonCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentSwitchCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentTabsCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentTextAreaCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentTextCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentTextInputCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentTimePickerCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentToastCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
...les/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentToggleButtonCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentTooltipCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentTreeViewCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
1 change: 1 addition & 0 deletions
1
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/Cards/FluentWizardCard.razor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| <div class="sticker-row"></div> |
17 changes: 17 additions & 0 deletions
17
examples/Demo/FluentUI.Demo.Client/Documentation/GetStarted/StickerSheet.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| --- | ||
| title: Sticker Sheet | ||
| order: 0004 | ||
| category: 10|Get Started | ||
| route: /sticker-sheet | ||
| icon: Sticker | ||
| --- | ||
|
|
||
| # Sticker Sheet | ||
|
|
||
| All* the Fluent UI Blazor Components on one page! Overlay components like Dialog and Drawer render a trigger button; click it to open them. | ||
|
|
||
| Many of the components have additional options that can greatly alter the way they look and behave. Use the navigation menu to go to each component's documentation page for more details. | ||
|
|
||
| _* Components that require additional setup or context to function properly or that do not have a simple visual representation are not included in this sticker sheet._ | ||
|
|
||
| {{ StickerSheet sourcecode=false }} |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.