Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7264,6 +7264,13 @@
Most important info to be shown in the message bar.
</summary>
</member>
<member name="P:Microsoft.FluentUI.AspNetCore.Components.Message.UseMarkupString">
<summary>
Indicates whether the title and body should be rendered as markup string.
Using MarkupString can introduce XSS vulnerabilities because it renders unencoded HTML.
Only use it with fully trusted, sanitized content.
</summary>
</member>
<member name="P:Microsoft.FluentUI.AspNetCore.Components.Message.Body">
<summary>
Gets or sets the message to be shown in the message bar.
Expand Down Expand Up @@ -7311,6 +7318,9 @@
<member name="M:Microsoft.FluentUI.AspNetCore.Components.IMessageService.ShowMessageBar(System.String,Microsoft.FluentUI.AspNetCore.Components.MessageIntent,System.String)">
<summary />
</member>
<member name="M:Microsoft.FluentUI.AspNetCore.Components.IMessageService.ShowMessageBar(Microsoft.AspNetCore.Components.MarkupString,Microsoft.FluentUI.AspNetCore.Components.MessageIntent,System.String)">
<summary />
</member>
<member name="M:Microsoft.FluentUI.AspNetCore.Components.IMessageService.ShowMessageBarAsync(System.Action{Microsoft.FluentUI.AspNetCore.Components.MessageOptions})">
<summary />
</member>
Expand All @@ -7323,6 +7333,9 @@
<member name="M:Microsoft.FluentUI.AspNetCore.Components.IMessageService.ShowMessageBarAsync(System.String,Microsoft.FluentUI.AspNetCore.Components.MessageIntent,System.String)">
<summary />
</member>
<member name="M:Microsoft.FluentUI.AspNetCore.Components.IMessageService.ShowMessageBarAsync(Microsoft.AspNetCore.Components.MarkupString,Microsoft.FluentUI.AspNetCore.Components.MessageIntent,System.String)">
<summary />
</member>
<member name="M:Microsoft.FluentUI.AspNetCore.Components.IMessageService.Clear(System.String)">
<summary />
</member>
Expand Down Expand Up @@ -7353,6 +7366,13 @@
Most important info to be shown in the message bar.
</summary>
</member>
<member name="P:Microsoft.FluentUI.AspNetCore.Components.MessageOptions.UseMarkupString">
<summary>
Indicates whether the <see cref="P:Microsoft.FluentUI.AspNetCore.Components.MessageOptions.Title"/> and <see cref="P:Microsoft.FluentUI.AspNetCore.Components.MessageOptions.Body"/> should be rendered as markup string.
Using MarkupString can introduce XSS vulnerabilities because it renders unencoded HTML.
Only use it with fully trusted, sanitized content.
</summary>
</member>
<member name="P:Microsoft.FluentUI.AspNetCore.Components.MessageOptions.Body">
<summary>
Gets or sets the message to be shown in the message bar after the title.
Expand Down Expand Up @@ -7457,6 +7477,17 @@
<param name="section">Section to show the message bar in </param>
<returns></returns>
</member>
<member name="M:Microsoft.FluentUI.AspNetCore.Components.MessageService.ShowMessageBar(Microsoft.AspNetCore.Components.MarkupString,Microsoft.FluentUI.AspNetCore.Components.MessageIntent,System.String)">
<summary>
Show a message based on the provided parameters in a message bar.
</summary>
<param name="title"> Main info.
Using MarkupString can introduce XSS vulnerabilities because it renders unencoded HTML.
Only use it with fully trusted, sanitized content.</param>
<param name="intent">Intent of the message</param>
<param name="section">Section to show the message bar in </param>
<returns></returns>
</member>
<member name="M:Microsoft.FluentUI.AspNetCore.Components.MessageService.ShowMessageBar(System.Action{Microsoft.FluentUI.AspNetCore.Components.MessageOptions})">
<summary>
Show a message based on the provided options in a message bar.
Expand Down Expand Up @@ -7488,6 +7519,17 @@
<param name="section">Section to show the message bar in </param>
<returns></returns>
</member>
<member name="M:Microsoft.FluentUI.AspNetCore.Components.MessageService.ShowMessageBarAsync(Microsoft.AspNetCore.Components.MarkupString,Microsoft.FluentUI.AspNetCore.Components.MessageIntent,System.String)">
<summary>
Show a message based on the provided parameters in a message bar.
</summary>
<param name="title"> Main info.
Using MarkupString can introduce XSS vulnerabilities because it renders unencoded HTML.
Only use it with fully trusted, sanitized content.</param>
<param name="intent">Intent of the message</param>
<param name="section">Section to show the message bar in </param>
<returns></returns>
</member>
<member name="M:Microsoft.FluentUI.AspNetCore.Components.MessageService.ShowMessageBarAsync(System.Action{Microsoft.FluentUI.AspNetCore.Components.MessageOptions})">
<summary>
Show a message based on the provided message options in a message bar.
Expand Down
4 changes: 2 additions & 2 deletions src/Core/Components/AppBar/FluentAppBar.razor
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
{
foreach (var item in Items)
{
<FluentAppBarItem IconRest="@item.IconRest" IconActive="@item.IconActive" Text="@item.Text" Href="@item.Href" Count="@item.Count" />
<FluentAppBarItem IconRest="@item.IconRest" IconActive="@item.IconActive" Text="@item.Text" Href="@item.Href" Count="@item.Count" OnClick="@item.OnClick" />
}
}
@if (AppsOverflow.Any())
Expand Down Expand Up @@ -53,7 +53,7 @@
@foreach (var item in _searchResults)
{
<FluentGridItem xs="4" Style="width: 100px; height: 85px; display: flex; height: 85px; align-content: center; flex-wrap: wrap; justify-content: center;">
<FluentAppBarItem IconRest="@item.IconRest" Text="@item.Text" Href="@item.Href" Count="@item.Count" inpopover="true" />
<FluentAppBarItem IconRest="@item.IconRest" Text="@item.Text" Href="@item.Href" Count="@item.Count" inpopover="true" OnClick="@item.OnClick" />
</FluentGridItem>
}
</FluentGrid>
Expand Down
Loading