Skip to content

Commit

Permalink
patch release to add new (light) icon variant
Browse files Browse the repository at this point in the history
  • Loading branch information
vnbaaij committed Jun 24, 2024
1 parent 6510eaa commit 629fd11
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>

<VersionFile>4.8.0</VersionFile>
<VersionPrefix>4.8.0</VersionPrefix>
<VersionFile>4.8.1</VersionFile>
<VersionPrefix>4.8.1</VersionPrefix>
<VersionSuffix></VersionSuffix>
<AssemblyVersion>$(VersionFile)</AssemblyVersion>
<FileVersion>$(VersionFile)</FileVersion>
Expand Down
2 changes: 1 addition & 1 deletion eng/pipelines/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ variables:
# File and Package version
# dev branch: 1.2.4-Preview-23282-1' (PackageSuffix is always ignored in Dev branch)
# main branch: 1.2.4-RC.1' (PackageSuffix is ignored, if empty, in Main branch)
FileVersion: '4.8.0' # Set the next final version here.
FileVersion: '4.8.1' # Set the next final version here.
PackageSuffix: ''
9 changes: 7 additions & 2 deletions src/Core/Enums/IconVariant.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@ namespace Microsoft.FluentUI.AspNetCore.Components;
public enum IconVariant
{
/// <summary>
/// FluentUI System Icon font size 10x10
/// Filled variant of FluentUI System Icons
/// </summary>
Filled,
/// <summary>
/// FluentUI System Icon font size 12x12
/// Regular variant of FluentUI System Icons
/// </summary>
Regular,

/// <summary>
/// Light variant of FluentUI System Icons
/// </summary>
Light

}

0 comments on commit 629fd11

Please sign in to comment.