mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 07:49:07 +00:00
17 lines
463 B
C#
17 lines
463 B
C#
|
namespace AIStudio.Components.CommonDialogs;
|
||
|
|
||
|
public static class DialogOptions
|
||
|
{
|
||
|
public static readonly MudBlazor.DialogOptions FULLSCREEN = new()
|
||
|
{
|
||
|
CloseOnEscapeKey = true,
|
||
|
FullWidth = true, MaxWidth = MaxWidth.Medium,
|
||
|
};
|
||
|
|
||
|
public static readonly MudBlazor.DialogOptions FULLSCREEN_NO_HEADER = new()
|
||
|
{
|
||
|
NoHeader = true,
|
||
|
CloseOnEscapeKey = true,
|
||
|
FullWidth = true, MaxWidth = MaxWidth.Medium,
|
||
|
};
|
||
|
}
|