You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Select a single string value by choosing options from a list of radio buttons. It should *not* be possible to unset a selected value once its set.',
49
+
options: {
50
+
layout: 'radio',
51
+
direction: 'horizontal',
52
+
list: [
53
+
{
54
+
title: 'One (1)',
55
+
value: 'one'
56
+
},
57
+
{
58
+
title: 'Two (2)',
59
+
value: 'two'
60
+
},
61
+
{
62
+
title: 'Three (3)',
63
+
value: 'three'
64
+
}
65
+
]
66
+
}
67
+
},
44
68
{
45
69
name: 'selectObjectOfString',
46
70
title: 'Select string in object',
@@ -57,6 +81,7 @@ export default {
57
81
description: 'Select a single string value by choosing options from a list of radio buttons. It should *not* be possible to unset a selected value once its set.',
0 commit comments