Skip to content

Commit

Permalink
Add Light to IconVariant
Browse files Browse the repository at this point in the history
  • Loading branch information
vnbaaij committed Jun 24, 2024
1 parent c7ac00c commit 803e154
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 7 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>3.7.3</VersionFile>
<VersionPrefix>3.7.3</VersionPrefix>
<VersionFile>3.7.4</VersionFile>
<VersionPrefix>3.7.4</VersionPrefix>
<VersionSuffix></VersionSuffix>
<AssemblyVersion>$(VersionFile)</AssemblyVersion>
<FileVersion>$(VersionFile)</FileVersion>
Expand Down
13 changes: 12 additions & 1 deletion WHATSNEW.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
## v3.7.2
## V3.7.4

### Icons
- [Icons] Add new `Light` value to `IconVariant` enum.


## v3.7.3

### Components
- [AutoComplete] Fix AutoComplet no longer working when the user tries to select an item using the mouse.

## v3.7.2

### Components
- [Card] Support AreaRestricted for MinimalStyle also ([#2170](https://github.com/microsoft/fluentui-blazor/pull/2170))
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: '3.7.3' # Set the next final version here.
FileVersion: '3.7.4' # Set the next final version here.
PackageSuffix: ''
12 changes: 11 additions & 1 deletion examples/Demo/Shared/wwwroot/docs/WhatsNew.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,14 @@
## v3.7.2
## V3.7.4

### Icons
- [Icons] Add new `Light` value to `IconVariant` enum.

## v3.7.3

### Components
- [AutoComplete] Fix AutoComplet no longer working when the user tries to select an item using the mouse.

## v3.7.2

### Components

Expand Down
9 changes: 7 additions & 2 deletions src/Core/Enums/IconVariant.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,18 @@
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 803e154

Please sign in to comment.