|
2 | 2 | |----------------------|---------------|-----------|---------|-------------------|------------|----|--------|----------|---------------|
|
3 | 3 | | | Empty Vals | | | | | | | | |
|
4 | 4 | | Empty | string,number | | | | | | "" | false | |
|
| 5 | +| EmptyDupeOps | string,number | | | 1,1,1 | | | | | unique | |
5 | 6 | | EmptyList | list(string) | | | | | | "" | false | |
|
| 7 | +| EmptyListDupeOpts | list(string) | | | ["a"],["a"] | | | | | unique | |
6 | 8 | | EmptyMulti | tag-select | | | | | | "" | false | |
|
7 | 9 | | EmptyOpts | string,number | | | 1,2,3 | | | "" | false | |
|
8 | 10 | | EmptyRegex | string | | | | world | | | | regex error |
|
|
13 | 15 | | | | | | | | | | | |
|
14 | 16 | | | Default Set | No inputs | | | | | | | |
|
15 | 17 | | NumDef | number | | 5 | | | | 5 | true | |
|
16 |
| -| NumDefNaN | number | | a | | | | | | type "number" | |
17 | 18 | | NumDefVal | number | | 5 | | 3-7 | | 5 | true | |
|
18 | 19 | | NumDefInv | number | | 5 | | 10- | | | | 10 < 5 < 0 |
|
19 | 20 | | NumDefOpts | number | | 5 | 1,3,5,7 | 2-6 | | 5 | true | |
|
20 | 21 | | NumDefNotOpts | number | | 5 | 1,3,7,9 | 2-6 | | | | valid option |
|
21 | 22 | | NumDefInvOpt | number | | 5 | 1,3,5,7 | 6-10 | | | | 6 < 5 < 10 |
|
| 23 | +| NumDefNotNum | number | | a | | | | | | type "number" | |
| 24 | +| NumDefOptsNotNum | number | | 1 | 1,a,2 | | | | | type "number" | |
22 | 25 | | | | | | | | | | | |
|
23 | 26 | | StrDef | string | | hello | | | | hello | true | |
|
24 | 27 | | StrDefInv | string | | hello | | world | | | | regex error |
|
|
38 | 41 | | | Input Vals | | | | | | | | |
|
39 | 42 | | NumIns | number | 3 | | | | | 3 | false | |
|
40 | 43 | | NumInsOptsNaN | number | 3 | 5 | a,1,2,3,4,5 | 1-3 | | 3 | true | type "number" |
|
41 |
| -| NumInsNaN | number | a | | | | | | | type "number" | |
| 44 | +| NumInsNotNum | number | a | | | | | | | type "number" | |
| 45 | +| NumInsNotNumInv | number | a | | | 1-3 | | | | 1 < a < 3 | |
42 | 46 | | NumInsDef | number | 3 | 5 | | | | 3 | true | |
|
43 | 47 | | NumIns/DefInv | number | 3 | 5 | | 1-3 | | 3 | true | |
|
44 | 48 | | NumIns=DefInv | number | 5 | 5 | | 1-3 | | | | 1 < 5 < 3 |
|
|
49 | 53 | | NumInsNotOpts/NoDef | number | 3 | | 1,2,4,5 | | | | | valid option |
|
50 | 54 | | | | | | | | | | | |
|
51 | 55 | | StrIns | string | c | | | | | c | false | |
|
| 56 | +| StrInsDupeOpts | string | c | | a,b,c,c | | | | | unique | |
52 | 57 | | StrInsDef | string | c | e | | | | c | true | |
|
53 | 58 | | StrIns/DefInv | string | c | e | | [a-c] | | c | true | |
|
54 | 59 | | StrIns=DefInv | string | e | e | | [a-c] | | | | regex error |
|
|
61 | 66 | | | | | | | | | | | |
|
62 | 67 | | | list(string) | | | | | | | | |
|
63 | 68 | | LStrIns | list(string) | ["c"] | | | | | ["c"] | false | |
|
| 69 | +| LStrInsNotList | list(string) | c | | | | | c | false | | |
64 | 70 | | LStrInsDef | list(string) | ["c"] | ["e"] | | | | ["c"] | true | |
|
65 | 71 | | LStrIns/DefInv | list(string) | ["c"] | ["e"] | | [a-c] | | | | regex cannot |
|
66 | 72 | | LStrInsOpts | list(string) | ["c"] | ["e"] | ["c"],["d"],["e"] | | | ["c"] | true | |
|
67 | 73 | | LStrInsNotOpts | list(string) | ["c"] | ["e"] | ["d"],["e"] | | | | | valid option |
|
68 | 74 | | LStrInsNotOpts/NoDef | list(string) | ["c"] | | ["d"],["e"] | | | | | valid option |
|
69 | 75 | | | | | | | | | | | |
|
70 | 76 | | MulInsOpts | multi-select | ["c"] | ["e"] | c,d,e | | | ["c"] | true | |
|
| 77 | +| MulInsNotListOpts | multi-select | c | ["e"] | c,d,e | | | c | true | | |
71 | 78 | | MulInsNotOpts | multi-select | ["c"] | ["e"] | d,e | | | | | valid option |
|
72 | 79 | | MulInsNotOpts/NoDef | multi-select | ["c"] | | d,e | | | | | valid option |
|
73 | 80 | | MulInsInvOpts | multi-select | ["c"] | ["e"] | c,d,e | [a-c] | | | | regex cannot |
|
0 commit comments