mirror of
https://github.com/nasa/openmct.git
synced 2024-12-21 06:03:08 +00:00
92252b41d4
Remove unused container definition for split pane; this turned out not to be a suitable quick-fix approach to WTD-747 (implementation of this behavior directly from the browse template turned out to be more convenient.)
162 lines
5.1 KiB
JSON
162 lines
5.1 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"
|
|
}
|
|
],
|
|
"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" ]
|
|
}
|
|
],
|
|
"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"
|
|
},
|
|
{
|
|
"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" ]
|
|
}
|
|
]
|
|
}
|
|
}
|