User: dan@sartography.com clicked save for playground/dan/maz-and-javad-demo/demo-schema.json

This commit is contained in:
sartography-automated-committer 2024-01-19 20:19:38 +00:00
parent 12bb348db4
commit 54849c0326
2 changed files with 16 additions and 3 deletions

View File

@ -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": "Auto Complete",
"description": "Connect a field to a data store to auto-complete entered values.",
"type": "object",
"properties": {
"favoriteFruit": {
@ -9,6 +9,11 @@
"anyOf": [
"options_from_task_data_var:fruits"
]
},
"city": {
"type": "string",
"format": "date",
"title": "Select a city"
}
}
}

View File

@ -1 +1,9 @@
{}
{
"city": {
"ui:widget": "typeahead",
"ui:options": {
"category": "cities",
"itemFormat": "{name} ({state}, {country})"
}
}
}