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 @@ -2,10 +2,13 @@
// This file is licensed to you under the MIT License.
// ------------------------------------------------------------------------

using System.Diagnostics.CodeAnalysis;
using Microsoft.AspNetCore.Components;

namespace Microsoft.FluentUI.AspNetCore.Components;
public partial class CommunicationToast : IToastContentComponent<CommunicationToastContent>

[method: DynamicDependency(DynamicallyAccessedMemberTypes.PublicConstructors, typeof(CommunicationToast))]
public partial class CommunicationToast() : IToastContentComponent<CommunicationToastContent>
{

[Parameter]
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// ------------------------------------------------------------------------
// This file is licensed to you under the MIT License.
// ------------------------------------------------------------------------

using System.Diagnostics.CodeAnalysis;

namespace Microsoft.FluentUI.AspNetCore.Components;

[method: DynamicDependency(DynamicallyAccessedMemberTypes.PublicConstructors, typeof(ConfirmationToast))]
public partial class ConfirmationToast()
{

}
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@
// This file is licensed to you under the MIT License.
// ------------------------------------------------------------------------

using System.Diagnostics.CodeAnalysis;
using Microsoft.AspNetCore.Components;

namespace Microsoft.FluentUI.AspNetCore.Components;

public partial class ProgressToast : IToastContentComponent<ProgressToastContent>
[method: DynamicDependency(DynamicallyAccessedMemberTypes.PublicConstructors, typeof(ProgressToast))]
public partial class ProgressToast() : IToastContentComponent<ProgressToastContent>
{

[Parameter]
public ProgressToastContent Content { get; set; } = default!;

Expand Down
Loading