add checkboxgroup and rename radio to radiogroup

This commit is contained in:
Keegan
2016-02-14 15:22:36 -08:00
parent 9c929a2e43
commit 1180bf2abc
12 changed files with 235 additions and 47 deletions
+15 -2
View File
@@ -62,8 +62,8 @@ module.exports = [
"defaultValue": "More Settings"
},
{
"type": "radio",
"appKey": "radio-test",
"type": "radiogroup",
"appKey": "radiogroup-test",
"defaultValue": "quote' \"test",
"label": "Radio test",
"options": [
@@ -74,6 +74,19 @@ module.exports = [
{ "label": "Final thing", "value": "three" }
]
},
{
"type": "checkboxgroup",
"appKey": "checkboxgroup-test",
"defaultValue": ["quote' \"test", "two"],
"label": "Checkbox test",
"options": [
{ "label": "Test <strong>thing</strong> one", "value": "one" },
{ "label": "Another thing", "value": "two" },
{ "label": "One really long thing that would not fit", "value": "three" },
{ "label": "Small", "value": "quote' \"test" },
{ "label": "Final thing", "value": "three" }
]
},
{
"type": "input",
"appKey": "date",