mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
c7149437fc
Show top-level nodes when instantiating tree views, except for the Root object. Supports Add dialogs in WTD-922.
232 lines
7.5 KiB
JSON
232 lines
7.5 KiB
JSON
{
|
|
"name": "General UI elements",
|
|
"description": "General UI elements, meant to be reused across modes.",
|
|
"resources": "res",
|
|
"extensions": {
|
|
"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
|
|
}
|
|
],
|
|
"templates": [
|
|
{
|
|
"key": "bottombar",
|
|
"templateUrl": "templates/bottombar.html"
|
|
},
|
|
{
|
|
"key": "action-button",
|
|
"templateUrl": "templates/controls/action-button.html"
|
|
},
|
|
{
|
|
"key": "input-filter",
|
|
"templateUrl": "templates/controls/input-filter.html"
|
|
},
|
|
{
|
|
"key": "indicator",
|
|
"templateUrl": "templates/indicator.html"
|
|
}
|
|
],
|
|
"controllers": [
|
|
{
|
|
"key": "TreeNodeController",
|
|
"implementation": "controllers/TreeNodeController.js",
|
|
"depends": [ "$scope", "$timeout" ]
|
|
},
|
|
{
|
|
"key": "ActionGroupController",
|
|
"implementation": "controllers/ActionGroupController.js",
|
|
"depends": [ "$scope" ]
|
|
},
|
|
{
|
|
"key": "ToggleController",
|
|
"implementation": "controllers/ToggleController.js"
|
|
},
|
|
{
|
|
"key": "ContextMenuController",
|
|
"implementation": "controllers/ContextMenuController.js",
|
|
"depends": [ "$scope" ]
|
|
},
|
|
{
|
|
"key": "ClickAwayController",
|
|
"implementation": "controllers/ClickAwayController.js",
|
|
"depends": [ "$scope", "$document" ]
|
|
},
|
|
{
|
|
"key": "ViewSwitcherController",
|
|
"implementation": "controllers/ViewSwitcherController.js",
|
|
"depends": [ "$scope", "$timeout" ]
|
|
},
|
|
{
|
|
"key": "BottomBarController",
|
|
"implementation": "controllers/BottomBarController.js",
|
|
"depends": [ "indicators[]" ]
|
|
},
|
|
{
|
|
"key": "GetterSetterController",
|
|
"implementation": "controllers/GetterSetterController.js",
|
|
"depends": [ "$scope" ]
|
|
},
|
|
{
|
|
"key": "SplitPaneController",
|
|
"implementation": "controllers/SplitPaneController.js"
|
|
},
|
|
{
|
|
"key": "SelectorController",
|
|
"implementation": "controllers/SelectorController.js",
|
|
"depends": [ "objectService", "$scope" ]
|
|
}
|
|
],
|
|
"directives": [
|
|
{
|
|
"key": "mctContainer",
|
|
"implementation": "directives/MCTContainer.js",
|
|
"depends": [ "containers[]" ]
|
|
},
|
|
{
|
|
"key": "mctDrag",
|
|
"implementation": "directives/MCTDrag.js",
|
|
"depends": [ "$document" ]
|
|
},
|
|
{
|
|
"key": "mctResize",
|
|
"implementation": "directives/MCTResize.js",
|
|
"depends": [ "$timeout" ]
|
|
},
|
|
{
|
|
"key": "mctScrollX",
|
|
"implementation": "directives/MCTScroll.js",
|
|
"depends": [ "$parse", "MCT_SCROLL_X_PROPERTY", "MCT_SCROLL_X_ATTRIBUTE" ]
|
|
},
|
|
{
|
|
"key": "mctScrollY",
|
|
"implementation": "directives/MCTScroll.js",
|
|
"depends": [ "$parse", "MCT_SCROLL_Y_PROPERTY", "MCT_SCROLL_Y_ATTRIBUTE" ]
|
|
}
|
|
],
|
|
"constants": [
|
|
{
|
|
"key": "MCT_SCROLL_X_PROPERTY",
|
|
"value": "scrollLeft"
|
|
},
|
|
{
|
|
"key": "MCT_SCROLL_X_ATTRIBUTE",
|
|
"value": "mctScrollX"
|
|
},
|
|
{
|
|
"key": "MCT_SCROLL_Y_PROPERTY",
|
|
"value": "scrollTop"
|
|
},
|
|
{
|
|
"key": "MCT_SCROLL_Y_ATTRIBUTE",
|
|
"value": "mctScrollY"
|
|
}
|
|
],
|
|
"containers": [
|
|
{
|
|
"key": "accordion",
|
|
"templateUrl": "templates/containers/accordion.html",
|
|
"attributes": [ "title" ]
|
|
}
|
|
],
|
|
"representations": [
|
|
{
|
|
"key": "tree",
|
|
"templateUrl": "templates/subtree.html",
|
|
"uses": [ "composition" ],
|
|
"type": "root",
|
|
"priority": "preferred"
|
|
},
|
|
{
|
|
"key": "tree",
|
|
"templateUrl": "templates/tree.html"
|
|
},
|
|
{
|
|
"key": "subtree",
|
|
"templateUrl": "templates/subtree.html",
|
|
"uses": [ "composition" ]
|
|
},
|
|
{
|
|
"key": "test",
|
|
"templateUrl": "templates/test.html"
|
|
},
|
|
{
|
|
"key": "tree-node",
|
|
"templateUrl": "templates/tree-node.html",
|
|
"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" ]
|
|
},
|
|
{
|
|
"key": "switcher",
|
|
"templateUrl": "templates/controls/switcher.html",
|
|
"uses": [ "view" ]
|
|
}
|
|
],
|
|
"controls": [
|
|
{
|
|
"key": "selector",
|
|
"templateUrl": "templates/controls/selector.html"
|
|
}
|
|
],
|
|
"licenses": [
|
|
{
|
|
"name": "Modernizr",
|
|
"version": "2.6.2",
|
|
"description": "Browser/device capability finding.",
|
|
"author": "Faruk Ateş",
|
|
"website": "http://modernizr.com",
|
|
"license": "MIT",
|
|
"link": "http://modernizr.com/license/"
|
|
},
|
|
{
|
|
"name": "Normalize.css",
|
|
"version": "1.1.2",
|
|
"description": "Browser style normalization.",
|
|
"author": "Nicolas Gallagher, Jonathan Neal",
|
|
"website": "http://necolas.github.io/normalize.css/",
|
|
"license": "MIT",
|
|
"link": "https://github.com/necolas/normalize.css/blob/master/LICENSE.md"
|
|
}
|
|
]
|
|
}
|
|
}
|