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"
|
|
|
|
},
|
2015-01-15 22:23:01 +00:00
|
|
|
{
|
|
|
|
"key": "mctToolbar",
|
|
|
|
"implementation": "MCTToolbar.js"
|
|
|
|
},
|
2014-11-26 18:43:48 +00:00
|
|
|
{
|
|
|
|
"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
|
|
|
},
|
2015-01-15 23:26:27 +00:00
|
|
|
{
|
|
|
|
"key": "button",
|
|
|
|
"templateUrl": "templates/controls/button.html"
|
|
|
|
},
|
2015-01-15 23:35:11 +00:00
|
|
|
{
|
|
|
|
"key": "color",
|
|
|
|
"templateUrl": "templates/controls/color.html"
|
|
|
|
},
|
2014-12-03 23:08:41 +00:00
|
|
|
{
|
|
|
|
"key": "composite",
|
|
|
|
"templateUrl": "templates/controls/composite.html"
|
2015-02-20 19:30:04 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "menu-button",
|
|
|
|
"templateUrl": "templates/controls/menu-button.html"
|
2015-02-24 03:16:09 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "dialog-button",
|
|
|
|
"templateUrl": "templates/controls/dialog.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"
|
2015-02-24 00:47:52 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ColorController",
|
|
|
|
"implementation": "controllers/ColorController.js"
|
2015-02-24 03:16:09 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "DialogButtonController",
|
|
|
|
"implementation": "controllers/DialogButtonController.js",
|
|
|
|
"depends": [ "$scope", "dialogService" ]
|
2014-11-28 21:15:02 +00:00
|
|
|
}
|
2014-11-26 18:43:48 +00:00
|
|
|
]
|
|
|
|
}
|
2014-11-26 16:01:00 +00:00
|
|
|
}
|