Skip to content

Commit

Permalink
Fix Icon and Emoji explorer results
Browse files Browse the repository at this point in the history
Fix FluentToast not using correct font
  • Loading branch information
vnbaaij committed Oct 30, 2023
1 parent 5a2f84f commit 5132a37
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PackageVersion Include="Microsoft.Extensions.Hosting.Abstractions" Version="$(RuntimeVersion)" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="$(RuntimeVersion)" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components" Version="4.0.0-preview.2" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.0.0-preview.1" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Emoji" Version="4.0.0-preview.3" />
<PackageVersion Include="Microsoft.FluentUI.AspNetCore.Components.Icons" version="4.0.0-preview.1" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
<PackageVersion Include="System.Text.Encodings.Web" Version="$(RuntimeVersion)" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2593,9 +2593,6 @@
A event that will be invoked when showing a dialog with a custom component
</summary>
</member>
<member name="P:Microsoft.FluentUI.AspNetCore.Components.FluentDivider.Module">
<summary />
</member>
<member name="P:Microsoft.FluentUI.AspNetCore.Components.FluentDivider.Role">
<summary>
The role of the element.
Expand All @@ -2611,6 +2608,9 @@
Gets or sets the content to be rendered inside the component.
</summary>
</member>
<member name="M:Microsoft.FluentUI.AspNetCore.Components.FluentDivider.DisposeAsync">
<inheritdoc />
</member>
<member name="T:Microsoft.FluentUI.AspNetCore.Components.FluentDragContainer`1">
<summary />
</member>
Expand Down
3 changes: 3 additions & 0 deletions examples/Demo/Shared/Pages/Emoji/EmojiExplorer.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,8 @@
white-space: nowrap;
overflow: hidden;
background: var(--neutral-stroke-rest);
position: fixed;
left: 0;
bottom: 0;
}
}
5 changes: 4 additions & 1 deletion examples/Demo/Shared/Pages/Icon/IconExplorer.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
}

.icon-explorer ::deep .icon {
height: 80px;
height: 50px;
width: 100px;
display: table-cell;
vertical-align: middle;
Expand All @@ -40,5 +40,8 @@
white-space: nowrap;
overflow: hidden;
background: var(--neutral-stroke-rest);
position: fixed;
bottom: 0;
left: 0;
}
}
2 changes: 1 addition & 1 deletion nuget.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</config>
<packageSources>
<clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" />
<add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget">
Expand Down
2 changes: 1 addition & 1 deletion src/Assets/FluentUI.Emojis/Emojis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace Microsoft.FluentUI.AspNetCore.Components;
public static partial class Emojis
{
private const string Namespace = "Microsoft.FluentUI.AspNetCore.Components";
private const string LibraryName = "Microsoft.FluentUI.AspNetCore.Components.Emojis.dll";
private const string LibraryName = "Microsoft.FluentUI.AspNetCore.Components.Emoji.dll";

/// <summary>
/// Returns a new instance of the emoji.
Expand Down
1 change: 1 addition & 0 deletions src/Core/Components/Toast/FluentToast.razor.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
min-width: 292px;
max-width: 500px;
min-height: 44px;
font-family: var(--body-font);
background-color: var(--neutral-layer-floating);
box-shadow: var(--elevation-shadow-tooltip);
border-radius: calc( var(--control-corner-radius) * 1px);
Expand Down

0 comments on commit 5132a37

Please sign in to comment.