2014-11-23 23:41:20 +00:00
|
|
|
{
|
|
|
|
"name": "General UI elements",
|
|
|
|
"description": "General UI elements, meant to be reused across modes.",
|
|
|
|
"resources": "res",
|
|
|
|
"extensions": {
|
2015-01-15 01:01:52 +00:00
|
|
|
"runs": [
|
|
|
|
{
|
|
|
|
"implementation": "StyleSheetLoader.js",
|
|
|
|
"depends": [ "stylesheets[]", "$document" ]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"stylesheets": [
|
|
|
|
{
|
|
|
|
"stylesheetUrl": "css/normalize.min.css",
|
|
|
|
"priority": "mandatory"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"stylesheetUrl": "css/theme-espresso.css",
|
|
|
|
"priority": 1000
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"stylesheetUrl": "css/items.css",
|
|
|
|
"priority": 901
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"stylesheetUrl": "css/tree.css",
|
|
|
|
"priority": 900
|
|
|
|
}
|
|
|
|
],
|
2014-11-23 23:41:20 +00:00
|
|
|
"templates": [
|
|
|
|
{
|
|
|
|
"key": "bottombar",
|
|
|
|
"templateUrl": "templates/bottombar.html"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "action-button",
|
|
|
|
"templateUrl": "templates/controls/action-button.html"
|
2014-12-16 21:23:20 +00:00
|
|
|
},
|
2014-12-31 18:43:01 +00:00
|
|
|
{
|
|
|
|
"key": "input-filter",
|
|
|
|
"templateUrl": "templates/controls/input-filter.html"
|
|
|
|
},
|
2014-12-16 21:23:20 +00:00
|
|
|
{
|
|
|
|
"key": "indicator",
|
|
|
|
"templateUrl": "templates/indicator.html"
|
2014-11-23 23:41:20 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"controllers": [
|
|
|
|
{
|
|
|
|
"key": "TreeNodeController",
|
2014-12-30 21:34:24 +00:00
|
|
|
"implementation": "controllers/TreeNodeController.js",
|
2014-12-05 21:31:57 +00:00
|
|
|
"depends": [ "$scope", "$timeout" ]
|
2014-11-23 23:41:20 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ActionGroupController",
|
2014-12-30 21:34:24 +00:00
|
|
|
"implementation": "controllers/ActionGroupController.js",
|
2014-11-23 23:41:20 +00:00
|
|
|
"depends": [ "$scope" ]
|
|
|
|
},
|
|
|
|
{
|
2014-11-24 15:49:50 +00:00
|
|
|
"key": "ToggleController",
|
2014-12-30 21:34:24 +00:00
|
|
|
"implementation": "controllers/ToggleController.js"
|
2014-11-23 23:41:20 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ContextMenuController",
|
2014-12-30 21:34:24 +00:00
|
|
|
"implementation": "controllers/ContextMenuController.js",
|
2014-11-23 23:41:20 +00:00
|
|
|
"depends": [ "$scope" ]
|
2014-11-24 15:12:45 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ClickAwayController",
|
2014-12-30 21:34:24 +00:00
|
|
|
"implementation": "controllers/ClickAwayController.js",
|
2014-11-24 15:12:45 +00:00
|
|
|
"depends": [ "$scope", "$document" ]
|
2014-12-04 20:12:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "ViewSwitcherController",
|
2014-12-30 21:34:24 +00:00
|
|
|
"implementation": "controllers/ViewSwitcherController.js",
|
2015-01-16 18:28:35 +00:00
|
|
|
"depends": [ "$scope", "$timeout" ]
|
2014-12-15 18:17:00 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "BottomBarController",
|
2014-12-30 21:34:24 +00:00
|
|
|
"implementation": "controllers/BottomBarController.js",
|
2014-12-15 18:17:00 +00:00
|
|
|
"depends": [ "indicators[]" ]
|
2014-12-30 19:37:24 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "GetterSetterController",
|
2014-12-30 21:34:24 +00:00
|
|
|
"implementation": "controllers/GetterSetterController.js",
|
2014-12-30 19:37:24 +00:00
|
|
|
"depends": [ "$scope" ]
|
2014-11-23 23:41:20 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"directives": [
|
|
|
|
{
|
|
|
|
"key": "mctContainer",
|
2014-12-30 21:34:24 +00:00
|
|
|
"implementation": "directives/MCTContainer.js",
|
2014-11-23 23:41:20 +00:00
|
|
|
"depends": [ "containers[]" ]
|
2014-12-04 22:45:19 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "mctDrag",
|
2014-12-30 21:34:24 +00:00
|
|
|
"implementation": "directives/MCTDrag.js",
|
2014-12-04 22:45:19 +00:00
|
|
|
"depends": [ "$document" ]
|
2014-12-30 21:34:24 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "mctResize",
|
|
|
|
"implementation": "directives/MCTResize.js",
|
|
|
|
"depends": [ "$timeout" ]
|
2014-11-23 23:41:20 +00:00
|
|
|
}
|
|
|
|
],
|
|
|
|
"containers": [
|
|
|
|
{
|
|
|
|
"key": "accordion",
|
|
|
|
"templateUrl": "templates/containers/accordion.html",
|
|
|
|
"attributes": [ "title" ]
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"representations": [
|
|
|
|
{
|
|
|
|
"key": "tree",
|
|
|
|
"templateUrl": "templates/tree.html",
|
|
|
|
"uses": [ "composition" ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "test",
|
|
|
|
"templateUrl": "templates/test.html"
|
|
|
|
},
|
|
|
|
{
|
2014-11-24 23:42:09 +00:00
|
|
|
"key": "tree-node",
|
|
|
|
"templateUrl": "templates/tree-node.html",
|
2014-11-23 23:41:20 +00:00
|
|
|
"uses": [ "action" ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "label",
|
|
|
|
"templateUrl": "templates/label.html",
|
|
|
|
"uses": [ "type" ],
|
|
|
|
"gestures": [ "drag", "menu" ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "node",
|
|
|
|
"templateUrl": "templates/label.html",
|
|
|
|
"uses": [ "type" ],
|
|
|
|
"gestures": [ "drag", "menu" ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "action-group",
|
|
|
|
"templateUrl": "templates/controls/action-group.html",
|
|
|
|
"uses": [ "action" ]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "context-menu",
|
|
|
|
"templateUrl": "templates/menu/context-menu.html",
|
|
|
|
"uses": [ "action" ]
|
2014-12-04 20:12:41 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"key": "switcher",
|
|
|
|
"templateUrl": "templates/controls/switcher.html",
|
|
|
|
"uses": [ "view" ]
|
2014-11-23 23:41:20 +00:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2014-12-31 18:43:01 +00:00
|
|
|
}
|