-
Notifications
You must be signed in to change notification settings - Fork 377
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: chinese abbreviated day name in FluentCalendar (#834) * Minor documentation corrections (#837) * Fix #836 * fix NavMenuLink width * Rename solution file * FluentMenu: move overlay into anchored section code * Update version on index page * Update Menu example * Add some (😉) more tests * [Unit Tests] Add Unit Tests in .razor files (#844) * Fix gitignore * Add FluentBadgeTests.razor * Fix #845 Exception with NavMenuLink * Fix #841 (#842) * Hide collapse button on demo site menu and remove some commented code * Fix #851 * Fix #852 * Update Fluent UI System Icons to 1.1.220 (#854) * Small ToC script optimization * Use latest SDKs * Make demos better when opening in light/dark mode * Fix initial theme switch setting * Fix: Add '@' to keyframe for fade-out animation (#855) * MessageBar: fix fadein effect * [Accessibility] Fix some FluentButton and FluentNav aria attributes (#853) * Fix FluentButton aria-label based on Title * Fix NavMenu aria * Fix Button Titles * Fix unit Tests * Add examples and documentation for the Persona component. (#843) * Fix the Persona samples to use "@DataSource.SamplePicture" instead of using external resources. * [Autocomplete] Update some Accessibility issues (#866) * Update Autocomplete Accessibility items * Fix Enter key when popup is closed * Update Previous and Next titles (and Unit Tests) * [FluentGrid] Add FluentGridItem with no breakpoints (#862) * Add FluentGridItem with no breakpoints * Update FluentValidationSummary.razor * Fix #865 * docs: Update sample InputFileDefault.razor (#867) * Update InputFileDefault.razor * Update InputFileByCode.razor * Update the documentation: inverse Api and Example sections * fix: Implement DesignToken.WithDefault and use in Demo site (#869) * Add 'System' option to theme settings * Fix aria-orientation (#877) * Fix #861 and also fix rendering in case of manual grid (#874) * Fix security scanning workflow * Add @ref to some layout components and adjust css of those to use css vars for font properties * Update WhatsNew * Update docs
- Loading branch information
Showing
324 changed files
with
4,772 additions
and
1,008 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,24 +1,30 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<Authors>Microsoft</Authors> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<Owners>Microsoft Corporation</Owners> | ||
<PackageProjectUrl>https://github.com/microsoft/fluentui-blazor</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<RepositoryUrl>https://github.com/microsoft/fluentui-blazor</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<PropertyGroup> | ||
<Authors>Microsoft</Authors> | ||
<Copyright>© Microsoft Corporation. All rights reserved.</Copyright> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<Owners>Microsoft Corporation</Owners> | ||
<PackageProjectUrl>https://github.com/microsoft/fluentui-blazor</PackageProjectUrl> | ||
<PackageLicenseExpression>MIT</PackageLicenseExpression> | ||
<RepositoryUrl>https://github.com/microsoft/fluentui-blazor</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
|
||
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir> | ||
|
||
<VersionFile>3.2.0</VersionFile> | ||
<VersionPrefix>3.2.0</VersionPrefix> | ||
<VersionSuffix></VersionSuffix> | ||
|
||
<AssemblyVersion>$(VersionFile)</AssemblyVersion> | ||
<FileVersion>$(VersionFile)</FileVersion> | ||
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio> | ||
<Version>$(VersionPrefix)$(VersionSuffix)</Version> | ||
</PropertyGroup> | ||
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir> | ||
|
||
<VersionFile>3.2.1</VersionFile> | ||
<VersionPrefix>3.2.1</VersionPrefix> | ||
<VersionSuffix></VersionSuffix> | ||
|
||
<AssemblyVersion>$(VersionFile)</AssemblyVersion> | ||
<FileVersion>$(VersionFile)</FileVersion> | ||
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio> | ||
<Version>$(VersionPrefix)$(VersionSuffix)</Version> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo"> | ||
<_Parameter1>Microsoft.Fast.Components.FluentUI.Tests</_Parameter1> | ||
</AssemblyAttribute> | ||
</ItemGroup> | ||
</Project> |
File renamed without changes.
This file contains 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
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
|
@@ -7,8 +7,36 @@ | |
<title>FluentUI.Demo.Client</title> | ||
<base href="/" /> | ||
<link href="_content/FluentUI.Demo.Shared/css/site.css" rel="stylesheet" /> | ||
<style> | ||
:root { | ||
--neutral-fill-layer-rest: #ffffff; | ||
color: #000000; | ||
} | ||
|
||
.loading-progress-text { | ||
color: #000000; | ||
} | ||
|
||
@media(prefers-color-scheme: dark) { | ||
:root { | ||
--neutral-fill-layer-rest: #464646; | ||
color: #ffffff; | ||
} | ||
|
||
.loading-progress-text { | ||
color: #ffffff; | ||
} | ||
} | ||
|
||
body, | ||
#container { | ||
font: 14px "Segoe UI Variable", "Segoe UI", sans-serif; | ||
color: var(--neutral-base-color); | ||
background-color: var(--neutral-fill-layer-rest); | ||
} | ||
</style> | ||
<link href="FluentUI.Demo.Client.styles.css" rel="stylesheet" /> | ||
|
||
<!-- Monaco editor --> | ||
<link rel="stylesheet" data-name="vs/editor/editor.main" href="_content/Microsoft.Fast.Components.FluentUI/lib/monaco-editor/min/vs/editor/editor.main.min.css"> | ||
|
||
|
@@ -18,17 +46,17 @@ | |
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/highlightjs-copy.min.css"> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-VML6BZWWTC"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { dataLayer.push(arguments); } | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-VML6BZWWTC'); | ||
gtag('config', 'G-VML6BZWWTC'); | ||
</script> | ||
<script type="text/javascript"> | ||
(function(c,l,a,r,i,t,y){ | ||
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)}; | ||
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i; | ||
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y); | ||
(function (c, l, a, r, i, t, y) { | ||
c[a] = c[a] || function () { (c[a].q = c[a].q || []).push(arguments) }; | ||
t = l.createElement(r); t.async = 1; t.src = "https://www.clarity.ms/tag/" + i; | ||
y = l.getElementsByTagName(r)[0]; y.parentNode.insertBefore(t, y); | ||
})(window, document, "clarity", "script", "hnr14wvzj8"); | ||
</script> | ||
</head> | ||
|
@@ -48,6 +76,8 @@ | |
<a class="dismiss">🗙</a> | ||
</div> | ||
<script src="_framework/blazor.webassembly.js"></script> | ||
<script src="js/site.js"></script> | ||
<script src="_content/FluentUI.Demo.Shared/js/theme.js" type="module"></script> | ||
|
||
<!-- Monaco Editor --> | ||
<script src="_content/Microsoft.Fast.Components.FluentUI/lib/monaco-editor/min/vs/loader.min.js"></script> | ||
|
Empty file.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
@inject IDialogService DialogService | ||
|
||
<FluentButton BackgroundColor="var(--neutral-layer-4)" OnClick="OpenSiteSettingsAsync"> | ||
<FluentButton BackgroundColor="var(--neutral-layer-4)" OnClick="OpenSiteSettingsAsync" Title="Site settings"> | ||
<FluentIcon Icon="Icons.Regular.Size20.Settings" Color="Color.Neutral" Title="Site settings" /> | ||
</FluentButton> |
This file contains 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
Oops, something went wrong.