2014-11-26 08:01:00 -08:00
|
|
|
{
|
2014-11-26 10:43:48 -08:00
|
|
|
"name": "MCT Forms",
|
|
|
|
"description": "Form generator; includes directive and some controls.",
|
|
|
|
"extensions": {
|
|
|
|
"directives": [
|
|
|
|
{
|
|
|
|
"key": "mctForm",
|
|
|
|
"implementation": "MCTForm.js"
|
|
|
|
},
|
2015-01-15 14:23:01 -08:00
|
|
|
{
|
|
|
|
"key": "mctToolbar",
|
|
|
|
"implementation": "MCTToolbar.js"
|
|
|
|
},
|
2014-11-26 10:43:48 -08:00
|
|
|
{
|
|
|
|
"key": "mctControl",
|
|
|
|
"implementation": "MCTControl.js",
|
|
|
|
"depends": [ "controls[]" ]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"controls": [
|
|
|
|
{
|
|
|
|
"key": "checkbox",
|
|
|
|
"templateUrl": "templates/controls/checkbox.html"
|
2014-11-26 12:50:51 -08: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 15:08:41 -08:00
|
|
|
},
|
2015-01-15 15:26:27 -08:00
|
|
|
{
|
|
|
|
"key": "button",
|
|
|
|
"templateUrl": "templates/controls/button.html"
|
|
|
|
},
|
2015-01-15 15:35:11 -08:00
|
|
|
{
|
|
|
|
"key": "color",
|
|
|
|
"templateUrl": "templates/controls/color.html"
|
|
|
|
},
|
2014-12-03 15:08:41 -08:00
|
|
|
{
|
|
|
|
"key": "composite",
|
|
|
|
"templateUrl": "templates/controls/composite.html"
|
2015-02-20 11:30:04 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "menu-button",
|
|
|
|
"templateUrl": "templates/controls/menu-button.html"
|
2015-02-23 19:16:09 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "dialog-button",
|
|
|
|
"templateUrl": "templates/controls/dialog.html"
|
2014-11-26 10:43:48 -08:00
|
|
|
}
|
|
|
|
],
|
2014-11-28 13:15:02 -08:00
|
|
|
"controllers": [
|
|
|
|
{
|
|
|
|
"key": "DateTimeController",
|
|
|
|
"implementation": "controllers/DateTimeController.js",
|
|
|
|
"depends": [ "$scope" ]
|
2014-12-03 16:07:46 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "CompositeController",
|
|
|
|
"implementation": "controllers/CompositeController.js"
|
2015-02-23 16:47:52 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ColorController",
|
|
|
|
"implementation": "controllers/ColorController.js"
|
2015-02-23 19:16:09 -08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "DialogButtonController",
|
|
|
|
"implementation": "controllers/DialogButtonController.js",
|
|
|
|
"depends": [ "$scope", "dialogService" ]
|
2014-11-28 13:15:02 -08:00
|
|
|
}
|
2014-11-26 10:43:48 -08:00
|
|
|
]
|
|
|
|
}
|
2014-11-26 08:01:00 -08:00
|
|
|
}
|