2014-11-26 16:01:00 +00:00
|
|
|
{
|
2014-11-26 18:43:48 +00:00
|
|
|
"name": "MCT Forms",
|
|
|
|
"description": "Form generator; includes directive and some controls.",
|
|
|
|
"extensions": {
|
|
|
|
"directives": [
|
|
|
|
{
|
|
|
|
"key": "mctForm",
|
|
|
|
"implementation": "MCTForm.js"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "mctControl",
|
|
|
|
"implementation": "MCTControl.js",
|
|
|
|
"depends": [ "controls[]" ]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"controls": [
|
|
|
|
{
|
|
|
|
"key": "checkbox",
|
|
|
|
"templateUrl": "templates/controls/checkbox.html"
|
2014-11-26 20:50:51 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "datetime",
|
|
|
|
"templateUrl": "templates/controls/datetime.html"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "select",
|
|
|
|
"templateUrl": "templates/controls/select.html"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "textfield",
|
|
|
|
"templateUrl": "templates/controls/textfield.html"
|
2014-12-03 23:08:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "composite",
|
|
|
|
"templateUrl": "templates/controls/composite.html"
|
2014-11-26 18:43:48 +00:00
|
|
|
}
|
|
|
|
],
|
2014-11-28 21:15:02 +00:00
|
|
|
"controllers": [
|
|
|
|
{
|
|
|
|
"key": "DateTimeController",
|
|
|
|
"implementation": "controllers/DateTimeController.js",
|
|
|
|
"depends": [ "$scope" ]
|
2014-12-04 00:07:46 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "CompositeController",
|
|
|
|
"implementation": "controllers/CompositeController.js"
|
2014-11-28 21:15:02 +00:00
|
|
|
}
|
|
|
|
],
|
2014-11-26 18:43:48 +00:00
|
|
|
"templates": [
|
|
|
|
{
|
|
|
|
"key": "_checkbox",
|
|
|
|
"templateUrl": "templates/_checkbox.html"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "_checkboxes",
|
|
|
|
"templateUrl": "templates/_checkboxes.html"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "_datetime",
|
|
|
|
"templateUrl": "templates/_datetime.html"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "_select",
|
|
|
|
"templateUrl": "templates/_select.html"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "_selects",
|
|
|
|
"templateUrl": "templates/_selects.html"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "_textfield",
|
|
|
|
"templateUrl": "templates/_textfield.html"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "_textfields",
|
|
|
|
"templateUrl": "templates/_textfields.html"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2014-11-26 16:01:00 +00:00
|
|
|
}
|