2023-03-03 13:47:34 +00:00
|
|
|
namespace Elsa.Workflows.Core;
|
2022-01-04 08:42:12 +00:00
|
|
|
|
2023-02-16 10:00:06 +00:00
|
|
|
/// <summary>
|
|
|
|
|
/// Provides a set of well-known UI hints.
|
|
|
|
|
/// </summary>
|
2022-01-04 08:42:12 +00:00
|
|
|
public static class InputUIHints
|
|
|
|
|
{
|
|
|
|
|
public const string SingleLine = "single-line";
|
|
|
|
|
public const string MultiLine = "multi-line";
|
|
|
|
|
public const string Checkbox = "checkbox";
|
|
|
|
|
public const string CheckList = "check-list";
|
|
|
|
|
public const string RadioList = "radio-list";
|
|
|
|
|
public const string Dropdown = "dropdown";
|
|
|
|
|
public const string MultiText = "multi-text";
|
|
|
|
|
public const string CodeEditor = "code-editor";
|
2022-11-23 21:36:43 +00:00
|
|
|
public const string VariablePicker = "variable-picker";
|
2023-01-12 10:59:31 +00:00
|
|
|
public const string TypePicker = "type-picker";
|
2023-02-16 10:00:06 +00:00
|
|
|
public const string WorkflowDefinitionPicker = "workflow-definition-picker";
|
2023-02-21 20:15:09 +00:00
|
|
|
public const string OutputPicker = "output-picker";
|
2023-03-03 13:47:34 +00:00
|
|
|
public const string OutcomePicker = "outcome-picker";
|
2023-02-16 10:00:06 +00:00
|
|
|
public const string JsonEditor = "json-editor";
|
2023-09-07 18:34:53 +00:00
|
|
|
public const string DynamicOutcomes = "dynamic-outcomes";
|
2022-01-04 08:42:12 +00:00
|
|
|
}
|