adding VarText and removing text minimum length

This commit is contained in:
2021-06-27 22:24:53 -06:00
parent dff01d03c8
commit c6419fb216
4 changed files with 32 additions and 12 deletions

View File

@@ -9,7 +9,8 @@ import uuid.Uuid;
enum CommandArgType {
SelectedEntry;
SelectedEntries(min:Null<Int>, max:Null<Int>);
Text(minLength:Null<Int>, maxLength:Null<Float>); // max length is a float so Math.POSITIVE_INFINITY can be used
Text(maxLength:Null<Float>); // max length is a float so Math.POSITIVE_INFINITY can be used
VarText(maxLength:Null<Float>);
Number(min:Null<Float>, max:Null<Float>, inStepsOf:Null<Float>);
OneEntry; // This constructor must be disambiguated from the typedef "Entry"
Entries(min:Null<Int>, max:Null<Int>);