mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-04-16 08:52:50 +08:00

* Move /Widgets/Live/* to /Live/* * Move /Widgets/Prompt/* to /Prompts/* * Move tests and expectations to match the new locations
13 lines
520 B
C#
13 lines
520 B
C#
namespace Spectre.Console
|
|
{
|
|
internal sealed class ListPromptConstants
|
|
{
|
|
public const string Arrow = ">";
|
|
public const string Checkbox = "[[ ]]";
|
|
public const string SelectedCheckbox = "[[[blue]X[/]]]";
|
|
public const string GroupSelectedCheckbox = "[[[grey]X[/]]]";
|
|
public const string InstructionsMarkup = "[grey](Press <space> to select, <enter> to accept)[/]";
|
|
public const string MoreChoicesMarkup = "[grey](Move up and down to reveal more choices)[/]";
|
|
}
|
|
}
|