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.Hosting.Abstractions" Version="$(RuntimeVersion)" />
<PackageVersion Include="Microsoft.Extensions.Http" 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" 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.FluentUI.AspNetCore.Components.Icons" version="4.0.0-preview.1" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" /> <PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
<PackageVersion Include="System.Text.Encodings.Web" Version="$(RuntimeVersion)" /> <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 A event that will be invoked when showing a dialog with a custom component
</summary> </summary>
</member> </member>
<member name="P:Microsoft.FluentUI.AspNetCore.Components.FluentDivider.Module">
<summary />
</member>
<member name="P:Microsoft.FluentUI.AspNetCore.Components.FluentDivider.Role"> <member name="P:Microsoft.FluentUI.AspNetCore.Components.FluentDivider.Role">
<summary> <summary>
The role of the element. The role of the element.
@ -2611,6 +2608,9 @@
Gets or sets the content to be rendered inside the component. Gets or sets the content to be rendered inside the component.
</summary> </summary>
</member> </member>
<member name="M:Microsoft.FluentUI.AspNetCore.Components.FluentDivider.DisposeAsync">
<inheritdoc />
</member>
<member name="T:Microsoft.FluentUI.AspNetCore.Components.FluentDragContainer`1"> <member name="T:Microsoft.FluentUI.AspNetCore.Components.FluentDragContainer`1">
<summary /> <summary />
</member> </member>

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

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

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

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

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

@ -11,7 +11,7 @@
</config> </config>
<packageSources> <packageSources>
<clear /> <clear />
<add key="nuget" value="https://api.nuget.org/v3/index.json" /> <add key="NuGet" value="https://api.nuget.org/v3/index.json" />
</packageSources> </packageSources>
<packageSourceMapping> <packageSourceMapping>
<packageSource key="nuget"> <packageSource key="nuget">

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

@ -6,7 +6,7 @@ namespace Microsoft.FluentUI.AspNetCore.Components;
public static partial class Emojis public static partial class Emojis
{ {
private const string Namespace = "Microsoft.FluentUI.AspNetCore.Components"; 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> /// <summary>
/// Returns a new instance of the emoji. /// Returns a new instance of the emoji.

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

@ -9,6 +9,7 @@
min-width: 292px; min-width: 292px;
max-width: 500px; max-width: 500px;
min-height: 44px; min-height: 44px;
font-family: var(--body-font);
background-color: var(--neutral-layer-floating); background-color: var(--neutral-layer-floating);
box-shadow: var(--elevation-shadow-tooltip); box-shadow: var(--elevation-shadow-tooltip);
border-radius: calc( var(--control-corner-radius) * 1px); border-radius: calc( var(--control-corner-radius) * 1px);