mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2026-06-07 03:56:35 +00:00
Some checks are pending
Build and Release / Build app (${{ matrix.dotnet_runtime }}) (-aarch64-unknown-linux-gnu, linux-arm64, ubuntu-22.04-arm, aarch64-unknown-linux-gnu, appimage,updater, appimage) (push) Blocked by required conditions
30 lines
844 B
C#
30 lines
844 B
C#
namespace AIStudio.Dialogs;
|
|
|
|
public static class DialogOptions
|
|
{
|
|
public static readonly MudBlazor.DialogOptions FULLSCREEN = new()
|
|
{
|
|
CloseOnEscapeKey = true,
|
|
FullWidth = true, MaxWidth = MaxWidth.Medium,
|
|
};
|
|
|
|
public static readonly MudBlazor.DialogOptions FULLSCREEN_MANUAL_ESCAPE = new()
|
|
{
|
|
CloseOnEscapeKey = false,
|
|
FullWidth = true, MaxWidth = MaxWidth.Medium,
|
|
};
|
|
|
|
public static readonly MudBlazor.DialogOptions FULLSCREEN_NO_HEADER = new()
|
|
{
|
|
NoHeader = true,
|
|
CloseOnEscapeKey = true,
|
|
FullWidth = true, MaxWidth = MaxWidth.Medium,
|
|
};
|
|
|
|
public static readonly MudBlazor.DialogOptions BLOCKING_FULLSCREEN = new()
|
|
{
|
|
BackdropClick = false,
|
|
CloseOnEscapeKey = false,
|
|
FullWidth = true, MaxWidth = MaxWidth.Medium,
|
|
};
|
|
} |