User: dan@sartography.com clicked save for playground/dan/pizza-palace-20/select-pizza-uischema.json
This commit is contained in:
parent
4d172f4841
commit
d2b5a3b99d
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"title": "Dropdown list",
|
||||
"description": "A dropdown list with options pulled form existing Task Data. IMPORTANT - Add 'fruits' to Task Data before using this component!!!",
|
||||
"title": "Multiple Choice List",
|
||||
"description": "Build a multiple choice list with a predefined list of options",
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"favoriteFruit": {
|
||||
|
@ -9,6 +9,20 @@
|
|||
"anyOf": [
|
||||
"options_from_task_data_var:fruits"
|
||||
]
|
||||
},
|
||||
"multipleChoicesList": {
|
||||
"type": "array",
|
||||
"title": "A multiple choices list",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"foo",
|
||||
"bar",
|
||||
"fuzz",
|
||||
"qux"
|
||||
]
|
||||
},
|
||||
"uniqueItems": true
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1 +1,5 @@
|
|||
{}
|
||||
{
|
||||
"multipleChoicesList": {
|
||||
"ui:widget": "checkboxes"
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue