* Closes #5640 - Layout frame edit handle visually tweaked, no longer resizes frame contents on hover when editing. - Gauge now centers in its container instead of left flush. - Added large bg-icon for aggregate telemetry. - Removed 'no class' single wrapper div in mct-tree.vue. - Refinements to appearance of locator in save/edit overlay dialog. - Better styling for search in progress and 'no results' messaging. - Revised art and glyph for `icon-tabular-scrolling`. - Change TelemetryTableType to use icon-tabular-scrolling icon and bg-icon. - Fix bad/erroneous descriptions for Telemetry Table, LAD Table and LAD Table Set. - Fix descriptions for multiple view types. - Removed unused .bg-icon class. - Fixed bad value check that was causing panes not to collapse when dragged (by design) to a very narrow width. - Visual style for grippy adjusted for better clarity on some monitors. - Normalize size of alphanumeric's labels and values in Display Layouts. - Fix margin strategy for object label in main view. - Fixed Locator to dynamically size itself to use available vertical space. - Added new `l-overlay-dialog` size parameter. - Better approach to overlay sizing to make Properties dialogs larger vertically and fullscreen overlays more apparent to the user. - Normalized approach to numeric inputs to fix cross-browser inconsistency with input spinners. - Fixed layout problem in `Datetime.vue` component due to numeric input spinners changes. - Added object types for Display Layout drawing objects. - Code modded in `ObjectName.vue` to grab layout object cssClass from layoutItem.type. - Big thanks to @jvigliotta for the assist with this! - update snapshots Co-authored-by: Jesse Mazzella <ozyx@users.noreply.github.com> Co-authored-by: Jesse Mazzella <jesse.d.mazzella@nasa.gov> Co-authored-by: Andrew Henry <akhenry@gmail.com>
55 lines
2.4 KiB
JavaScript
55 lines
2.4 KiB
JavaScript
/*****************************************************************************
|
|
* Open MCT, Copyright (c) 2014-2022, United States Government
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
* Administration. All rights reserved.
|
|
*
|
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
* Open MCT includes source code licensed under additional open source
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
* this source code distribution or the Licensing information page available
|
|
* at runtime from the About dialog for additional information.
|
|
*****************************************************************************/
|
|
import LADTableViewProvider from './LADTableViewProvider';
|
|
import LADTableSetViewProvider from './LADTableSetViewProvider';
|
|
import ladTableCompositionPolicy from './LADTableCompositionPolicy';
|
|
|
|
export default function plugin() {
|
|
return function install(openmct) {
|
|
|
|
openmct.objectViews.addProvider(new LADTableViewProvider(openmct));
|
|
openmct.objectViews.addProvider(new LADTableSetViewProvider(openmct));
|
|
|
|
openmct.types.addType('LadTable', {
|
|
name: "LAD Table",
|
|
creatable: true,
|
|
description: "Display the current value for one or more telemetry end points in a fixed table. Each row is a telemetry end point.",
|
|
cssClass: 'icon-tabular-lad',
|
|
initialize(domainObject) {
|
|
domainObject.composition = [];
|
|
}
|
|
});
|
|
|
|
openmct.types.addType('LadTableSet', {
|
|
name: "LAD Table Set",
|
|
creatable: true,
|
|
description: "Group LAD Tables together into a single view with sub-headers.",
|
|
cssClass: 'icon-tabular-lad-set',
|
|
initialize(domainObject) {
|
|
domainObject.composition = [];
|
|
}
|
|
});
|
|
|
|
openmct.composition.addPolicy(ladTableCompositionPolicy(openmct));
|
|
};
|
|
}
|