Fix Icon and Emoji explorer results

Fix FluentToast not using correct font
This commit is contained in:
Vincent Baaij 2023-10-30 11:47:40 +01:00
Родитель 5a2f84fdf2
Коммит 5132a37189
7 изменённых файлов: 14 добавлений и 7 удалений

Просмотреть файл

@ -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)" />

Просмотреть файл

@ -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.
@ -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>

Просмотреть файл

@ -44,5 +44,8 @@
white-space: nowrap;
overflow: hidden;
background: var(--neutral-stroke-rest);
position: fixed;
left: 0;
bottom: 0;
}
}

Просмотреть файл

@ -25,7 +25,7 @@
}
.icon-explorer ::deep .icon {
height: 80px;
height: 50px;
width: 100px;
display: table-cell;
vertical-align: middle;
@ -40,5 +40,8 @@
white-space: nowrap;
overflow: hidden;
background: var(--neutral-stroke-rest);
position: fixed;
bottom: 0;
left: 0;
}
}

Просмотреть файл

@ -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">

Просмотреть файл

@ -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.

Просмотреть файл

@ -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);