2014-11-22 17:29:41 +00:00
|
|
|
{
|
|
|
|
"extensions": {
|
|
|
|
"directives": [
|
|
|
|
{
|
|
|
|
"key": "mctInclude",
|
|
|
|
"implementation": "MCTInclude.js",
|
2015-10-28 21:51:30 +00:00
|
|
|
"depends": [ "templates[]", "templateLinker" ]
|
2014-11-22 17:29:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "mctRepresentation",
|
|
|
|
"implementation": "MCTRepresentation.js",
|
2015-10-28 22:17:36 +00:00
|
|
|
"depends": [ "representations[]", "views[]", "representers[]", "$q", "templateLinker", "$log" ]
|
2014-11-22 17:29:41 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"gestures": [
|
|
|
|
{
|
|
|
|
"key": "drag",
|
|
|
|
"implementation": "gestures/DragGesture.js",
|
2015-03-19 19:34:52 +00:00
|
|
|
"depends": [ "$log", "dndService" ]
|
2014-11-22 17:29:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "drop",
|
|
|
|
"implementation": "gestures/DropGesture.js",
|
2015-04-08 03:35:54 +00:00
|
|
|
"depends": [ "dndService", "$q" ]
|
2014-11-22 17:29:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "menu",
|
|
|
|
"implementation": "gestures/ContextMenuGesture.js",
|
2015-08-04 17:11:25 +00:00
|
|
|
"depends": ["$timeout", "agentService"]
|
2014-11-22 17:29:41 +00:00
|
|
|
}
|
2014-11-22 19:35:57 +00:00
|
|
|
],
|
|
|
|
"components": [
|
|
|
|
{
|
|
|
|
"provides": "gestureService",
|
|
|
|
"type": "provider",
|
2014-11-23 23:35:53 +00:00
|
|
|
"implementation": "gestures/GestureProvider.js",
|
|
|
|
"depends": ["gestures[]"]
|
2014-11-22 19:35:57 +00:00
|
|
|
}
|
2014-12-05 17:43:22 +00:00
|
|
|
],
|
|
|
|
"representers": [
|
|
|
|
{
|
|
|
|
"implementation": "gestures/GestureRepresenter.js",
|
|
|
|
"depends": [ "gestureService" ]
|
|
|
|
}
|
2015-03-19 19:34:52 +00:00
|
|
|
],
|
|
|
|
"services": [
|
|
|
|
{
|
|
|
|
"key": "dndService",
|
|
|
|
"implementation": "services/DndService.js",
|
|
|
|
"depends": [ "$log" ]
|
2015-10-28 21:51:30 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "templateLinker",
|
|
|
|
"implementation": "TemplateLinker.js",
|
2015-10-30 19:22:43 +00:00
|
|
|
"depends": [ "$templateRequest", "$sce", "$compile", "$log" ],
|
2015-10-28 21:51:30 +00:00
|
|
|
"comment": "For internal use by mct-include and mct-representation."
|
2015-03-19 19:34:52 +00:00
|
|
|
}
|
2015-06-30 23:17:00 +00:00
|
|
|
],
|
|
|
|
"actions": [
|
|
|
|
{
|
2015-07-02 17:01:38 +00:00
|
|
|
"key": "menu",
|
2015-06-30 23:17:00 +00:00
|
|
|
"implementation": "actions/ContextMenuAction.js",
|
2015-10-02 18:01:49 +00:00
|
|
|
"depends": [
|
|
|
|
"$compile",
|
|
|
|
"$document",
|
|
|
|
"$rootScope",
|
|
|
|
"popupService",
|
|
|
|
"agentService"
|
|
|
|
]
|
2015-06-30 23:17:00 +00:00
|
|
|
}
|
2015-12-08 20:53:33 +00:00
|
|
|
],
|
|
|
|
"runs": [
|
|
|
|
{
|
|
|
|
"priority": "mandatory",
|
|
|
|
"implementation": "TemplatePrefetcher.js",
|
|
|
|
"depends": [
|
|
|
|
"templateLinker",
|
|
|
|
"templates[]",
|
|
|
|
"views[]",
|
|
|
|
"representations[]",
|
2015-12-08 21:06:24 +00:00
|
|
|
"controls[]",
|
|
|
|
"containers[]"
|
2015-12-08 20:53:33 +00:00
|
|
|
]
|
|
|
|
}
|
2014-11-22 17:29:41 +00:00
|
|
|
]
|
|
|
|
}
|
2015-06-18 21:43:14 +00:00
|
|
|
}
|