chore: add prettier (1/3): add packages, configurations, fix lint issues (#6382)

* fix: remove redundant eslint rules

* chore: bump `prettier` to v2.8.7

* docs: vue files to use html comments for licenses

- Prettier's Vue parser freaks out if it sees a *.js style comment in a *.vue file.

* docs: more licenses for vue files

* fix: don't ignore *.vue files

* fix: use defaults for tabWidth and printWidth

* simplify .prettierignore

* enforce a printWidth of 100

* fix: use `eslint-plugin-prettier`, remove conflicting rules

* test: fix gauge tests (for real)

* test: fix notebook test selectors

* test: fix restrictedNotebook test selectors

* test: remove useless assignment

* lint: __dirname as global

* lint: revert eslint config + whitespace changes, commit new config

* style: remove unnecessary string concat of literals

* test: fix missed gauge test

* fix: use new eslint rules

* feat: add blank `.git-blame-ignore-revs` file

* docs: update to mention Prettier and format.

* Revert "test: fix gauge tests (for real)"

This reverts commit 6afad450389edc2f16ff0d00c9524621a7ba53bc.

* Revert "test: fix notebook test selectors"

This reverts commit 17fe1cbbff02e9298f041b5ea0fea5494fe54d94.

* Revert "test: fix restrictedNotebook test selectors"

This reverts commit 97e0ede826b7dd61c5443845443d806a56f3f305.

* Revert "test: fix missed gauge test"

This reverts commit e2398fc38ca94beff2066cc253173412ad47f8b9.

* test: fix gauge tests (no formatting)

* test: update notebook e2e selectors (no formatting)

* test: update restrictedNotebook e2e selectors (no formatting)

* fix: temporarily disable lint check
This commit is contained in:
Jesse Mazzella
2023-05-18 14:29:20 -07:00
committed by GitHub
parent 5df7971438
commit 172e0b23fd
213 changed files with 4204 additions and 2499 deletions

View File

@ -232,9 +232,9 @@ jobs:
workflows: workflows:
overall-circleci-commit-status: #These jobs run on every commit overall-circleci-commit-status: #These jobs run on every commit
jobs: jobs:
- lint: # - lint:
name: node16-lint # name: node16-lint
node-version: lts/gallium # node-version: lts/gallium
- unit-test: - unit-test:
name: node18-chrome name: node18-chrome
node-version: lts/hydrogen node-version: lts/hydrogen

View File

@ -9,11 +9,13 @@ module.exports = {
"globals": { "globals": {
"_": "readonly" "_": "readonly"
}, },
"plugins": ["prettier"],
"extends": [ "extends": [
"eslint:recommended", "eslint:recommended",
"plugin:compat/recommended", "plugin:compat/recommended",
"plugin:vue/recommended", "plugin:vue/recommended",
"plugin:you-dont-need-lodash-underscore/compatible" "plugin:you-dont-need-lodash-underscore/compatible",
"plugin:prettier/recommended"
], ],
"parser": "vue-eslint-parser", "parser": "vue-eslint-parser",
"parserOptions": { "parserOptions": {
@ -26,6 +28,7 @@ module.exports = {
} }
}, },
"rules": { "rules": {
"prettier/prettier": "error",
"you-dont-need-lodash-underscore/omit": "off", "you-dont-need-lodash-underscore/omit": "off",
"you-dont-need-lodash-underscore/throttle": "off", "you-dont-need-lodash-underscore/throttle": "off",
"you-dont-need-lodash-underscore/flatten": "off", "you-dont-need-lodash-underscore/flatten": "off",
@ -50,20 +53,6 @@ module.exports = {
} }
], ],
"no-console": "off", "no-console": "off",
"no-trailing-spaces": "error",
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"asyncArrow": "always",
"named": "never"
}
],
"array-bracket-spacing": "error",
"space-in-parens": "error",
"space-before-blocks": "error",
"comma-dangle": "error",
"eol-last": "error",
"new-cap": [ "new-cap": [
"error", "error",
{ {
@ -72,7 +61,6 @@ module.exports = {
} }
], ],
"dot-notation": "error", "dot-notation": "error",
"indent": ["error", 4],
// https://eslint.org/docs/rules/no-case-declarations // https://eslint.org/docs/rules/no-case-declarations
"no-case-declarations": "error", "no-case-declarations": "error",
@ -82,8 +70,6 @@ module.exports = {
"no-eq-null": "error", "no-eq-null": "error",
// https://eslint.org/docs/rules/no-eval // https://eslint.org/docs/rules/no-eval
"no-eval": "error", "no-eval": "error",
// https://eslint.org/docs/rules/no-floating-decimal
"no-floating-decimal": "error",
// https://eslint.org/docs/rules/no-implicit-globals // https://eslint.org/docs/rules/no-implicit-globals
"no-implicit-globals": "error", "no-implicit-globals": "error",
// https://eslint.org/docs/rules/no-implied-eval // https://eslint.org/docs/rules/no-implied-eval
@ -112,16 +98,10 @@ module.exports = {
"no-unmodified-loop-condition": "error", "no-unmodified-loop-condition": "error",
// https://eslint.org/docs/rules/no-useless-call // https://eslint.org/docs/rules/no-useless-call
"no-useless-call": "error", "no-useless-call": "error",
// https://eslint.org/docs/rules/wrap-iife
"wrap-iife": "error",
// https://eslint.org/docs/rules/no-nested-ternary // https://eslint.org/docs/rules/no-nested-ternary
"no-nested-ternary": "error", "no-nested-ternary": "error",
// https://eslint.org/docs/rules/switch-colon-spacing
"switch-colon-spacing": "error",
// https://eslint.org/docs/rules/no-useless-computed-key // https://eslint.org/docs/rules/no-useless-computed-key
"no-useless-computed-key": "error", "no-useless-computed-key": "error",
// https://eslint.org/docs/rules/rest-spread-spacing
"rest-spread-spacing": ["error"],
// https://eslint.org/docs/rules/no-var // https://eslint.org/docs/rules/no-var
"no-var": "error", "no-var": "error",
// https://eslint.org/docs/rules/one-var // https://eslint.org/docs/rules/one-var
@ -159,96 +139,11 @@ module.exports = {
"no-implicit-coercion": "error", "no-implicit-coercion": "error",
//https://eslint.org/docs/rules/no-unneeded-ternary //https://eslint.org/docs/rules/no-unneeded-ternary
"no-unneeded-ternary": "error", "no-unneeded-ternary": "error",
// https://eslint.org/docs/rules/semi
"semi": ["error", "always"],
// https://eslint.org/docs/rules/no-multi-spaces
"no-multi-spaces": "error",
// https://eslint.org/docs/rules/key-spacing
"key-spacing": ["error", {
"afterColon": true
}],
// https://eslint.org/docs/rules/keyword-spacing
"keyword-spacing": ["error", {
"before": true,
"after": true
}],
// https://eslint.org/docs/rules/comma-spacing
// Also requires one line code fix
"comma-spacing": ["error", {
"after": true
}],
//https://eslint.org/docs/rules/no-whitespace-before-property
"no-whitespace-before-property": "error",
// https://eslint.org/docs/rules/object-curly-newline
"object-curly-newline": ["error", {
"consistent": true,
"multiline": true
}],
// https://eslint.org/docs/rules/object-property-newline
"object-property-newline": "error",
// https://eslint.org/docs/rules/brace-style
"brace-style": "error",
// https://eslint.org/docs/rules/no-multiple-empty-lines
"no-multiple-empty-lines": ["error", {"max": 1}],
// https://eslint.org/docs/rules/operator-linebreak
"operator-linebreak": ["error", "before", {"overrides": {"=": "after"}}],
// https://eslint.org/docs/rules/padding-line-between-statements
"padding-line-between-statements": ["error", {
"blankLine": "always",
"prev": "multiline-block-like",
"next": "*"
}, {
"blankLine": "always",
"prev": "*",
"next": "return"
}],
// https://eslint.org/docs/rules/space-infix-ops
"space-infix-ops": "error",
// https://eslint.org/docs/rules/space-unary-ops
"space-unary-ops": ["error", {
"words": true,
"nonwords": false
}],
// https://eslint.org/docs/rules/arrow-spacing
"arrow-spacing": "error",
// https://eslint.org/docs/rules/semi-spacing
"semi-spacing": ["error", {
"before": false,
"after": true
}],
"vue/html-indent": [
"error",
4,
{
"attribute": 1,
"baseIndent": 0,
"closeBracket": 0,
"alignAttributesVertically": true,
"ignores": []
}
],
"vue/html-self-closing": ["error",
{
"html": {
"void": "never",
"normal": "never",
"component": "always"
},
"svg": "always",
"math": "always"
}
],
"vue/max-attributes-per-line": ["error", {
"singleline": 1,
"multiline": 1,
}],
"vue/first-attribute-linebreak": "error", "vue/first-attribute-linebreak": "error",
"vue/multiline-html-element-content-newline": "off", "vue/multiline-html-element-content-newline": "off",
"vue/singleline-html-element-content-newline": "off", "vue/singleline-html-element-content-newline": "off",
"vue/multi-word-component-names": "off", // TODO enable, align with conventions "vue/multi-word-component-names": "off", // TODO enable, align with conventions
"vue/no-mutating-props": "off" "vue/no-mutating-props": "off"
}, },
"overrides": [ "overrides": [
{ {

6
.git-blame-ignore-revs Normal file
View File

@ -0,0 +1,6 @@
# git-blame ignored revisions
# To configure, run:
# git config blame.ignoreRevsFile .git-blame-ignore-revs
# Requires Git > 2.23
# See https://git-scm.com/docs/git-blame#Documentation/git-blame.txt---ignore-revs-fileltfilegt

27
.prettierignore Normal file
View File

@ -0,0 +1,27 @@
# Docs
*.md
# Build output
target
dist
# Mac OS X Finder
.DS_Store
# Node dependencies
node_modules
# npm-debug log
npm-debug.log
# karma reports
report.*.json
# e2e test artifacts
test-results
html-test-results
# codecov artifacts
.nyc_output
coverage
codecov

5
.prettierrc Normal file
View File

@ -0,0 +1,5 @@
{
"trailingComma": "none",
"singleQuote": true,
"printWidth": 100
}

View File

@ -24,7 +24,7 @@ The short version:
Open MCT uses git for software version control, and for branching and Open MCT uses git for software version control, and for branching and
merging. The central repository is at merging. The central repository is at
https://github.com/nasa/openmct.git. <https://github.com/nasa/openmct.git>.
### Roles ### Roles
@ -116,6 +116,7 @@ the pull request containing the reviewer checklist (from below) and complete
the merge back to the master branch. the merge back to the master branch.
Additionally: Additionally:
* Every pull request must link to the issue that it addresses. Eg. “Addresses #1234” or “Closes #1234”. This is the responsibility of the pull requests __author__. If no issue exists, [create one](https://github.com/nasa/openmct/issues/new/choose). * Every pull request must link to the issue that it addresses. Eg. “Addresses #1234” or “Closes #1234”. This is the responsibility of the pull requests __author__. If no issue exists, [create one](https://github.com/nasa/openmct/issues/new/choose).
* Every __author__ must include testing instructions. These instructions should identify the areas of code affected, and some minimal test steps. If addressing a bug, reproduction steps should be included, if they were not included in the original issue. If reproduction steps were included on the original issue, and are sufficient, refer to them. * Every __author__ must include testing instructions. These instructions should identify the areas of code affected, and some minimal test steps. If addressing a bug, reproduction steps should be included, if they were not included in the original issue. If reproduction steps were included on the original issue, and are sufficient, refer to them.
* A pull request that closes an issue should say so in the description. Including the text “Closes #1234” will cause the linked issue to be automatically closed when the pull request is merged. This is the responsibility of the pull requests __author__. * A pull request that closes an issue should say so in the description. Including the text “Closes #1234” will cause the linked issue to be automatically closed when the pull request is merged. This is the responsibility of the pull requests __author__.
@ -132,14 +133,15 @@ changes.
### Code Standards ### Code Standards
JavaScript sources in Open MCT must satisfy the ESLint rules defined in JavaScript sources in Open MCT must satisfy the [ESLint](https://eslint.org/) rules defined in
this repository. This is verified by the command line build. this repository. [Prettier](https://prettier.io/) is used in conjunction with ESLint to enforce code style
via automated formatting. These are verified by the command line build.
#### Code Guidelines #### Code Guidelines
The following guidelines are provided for anyone contributing source code to the Open MCT project: The following guidelines are provided for anyone contributing source code to the Open MCT project:
1. Write clean code. Heres a good summary - https://github.com/ryanmcdermott/clean-code-javascript. 1. Write clean code. Heres a good summary - <https://github.com/ryanmcdermott/clean-code-javascript>.
1. Include JSDoc for any exposed API (e.g. public methods, classes). 1. Include JSDoc for any exposed API (e.g. public methods, classes).
1. Include non-JSDoc comments as-needed for explaining private variables, 1. Include non-JSDoc comments as-needed for explaining private variables,
methods, or algorithms when they are non-obvious. Otherwise code methods, or algorithms when they are non-obvious. Otherwise code
@ -159,17 +161,21 @@ The following guidelines are provided for anyone contributing source code to the
(e.g. as arguments to a forEach call). Anonymous functions should always be arrow functions. (e.g. as arguments to a forEach call). Anonymous functions should always be arrow functions.
1. Named functions are preferred over functions assigned to variables. 1. Named functions are preferred over functions assigned to variables.
eg. eg.
```JavaScript ```JavaScript
function renameObject(object, newName) { function renameObject(object, newName) {
Object.name = newName; Object.name = newName;
} }
``` ```
is preferable to is preferable to
```JavaScript ```JavaScript
const rename = (object, newName) => { const rename = (object, newName) => {
Object.name = newName; Object.name = newName;
} }
``` ```
1. Avoid deep nesting (especially of functions), except where necessary 1. Avoid deep nesting (especially of functions), except where necessary
(e.g. due to closure scope). (e.g. due to closure scope).
1. End with a single new-line character. 1. End with a single new-line character.
@ -182,19 +188,24 @@ The following guidelines are provided for anyone contributing source code to the
* Finally, the returned value. A single return statement at the end of the function should be used, except where an early return would improve code clarity. * Finally, the returned value. A single return statement at the end of the function should be used, except where an early return would improve code clarity.
1. Avoid the use of "magic" values. 1. Avoid the use of "magic" values.
eg. eg.
```JavaScript ```JavaScript
const UNAUTHORIZED = 401; const UNAUTHORIZED = 401;
if (responseCode === UNAUTHORIZED) if (responseCode === UNAUTHORIZED)
``` ```
is preferable to is preferable to
```JavaScript ```JavaScript
if (responseCode === 401) if (responseCode === 401)
``` ```
1. Use the ternary operator only for simple cases such as variable assignment. Nested ternaries should be avoided in all cases. 1. Use the ternary operator only for simple cases such as variable assignment. Nested ternaries should be avoided in all cases.
1. Unit Test specs should reside alongside the source code they test, not in a separate directory. 1. Unit Test specs should reside alongside the source code they test, not in a separate directory.
1. Organize code by feature, not by type. 1. Organize code by feature, not by type.
eg. eg.
```
```txt
- telemetryTable - telemetryTable
- row - row
TableRow.js TableRow.js
@ -206,8 +217,10 @@ The following guidelines are provided for anyone contributing source code to the
plugin.js plugin.js
pluginSpec.js pluginSpec.js
``` ```
is preferable to is preferable to
```
```txt
- telemetryTable - telemetryTable
- components - components
TableRow.vue TableRow.vue
@ -219,6 +232,7 @@ The following guidelines are provided for anyone contributing source code to the
plugin.js plugin.js
pluginSpec.js pluginSpec.js
``` ```
Deviations from Open MCT code style guidelines require two-party agreement, Deviations from Open MCT code style guidelines require two-party agreement,
typically from the author of the change and its reviewer. typically from the author of the change and its reviewer.
@ -257,7 +271,7 @@ these standards.
## Issue Reporting ## Issue Reporting
Issues are tracked at https://github.com/nasa/openmct/issues. Issues are tracked at <https://github.com/nasa/openmct/issues>.
Issue severity is categorized as follows (in ascending order): Issue severity is categorized as follows (in ascending order):

View File

@ -19,14 +19,13 @@
* this source code distribution or the Licensing information page available * this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. * at runtime from the About dialog for additional information.
*****************************************************************************/ *****************************************************************************/
/* global __dirname */
const path = require('path'); const path = require('path');
/** /**
* @param {import('@playwright/test').Page} page * @param {import('@playwright/test').Page} page
*/ */
async function navigateToFaultManagementWithExample(page) { async function navigateToFaultManagementWithExample(page) {
// eslint-disable-next-line no-undef
await page.addInitScript({ path: path.join(__dirname, './', 'addInitExampleFaultProvider.js') }); await page.addInitScript({ path: path.join(__dirname, './', 'addInitExampleFaultProvider.js') });
await navigateToFaultItemInTree(page); await navigateToFaultItemInTree(page);
@ -36,7 +35,6 @@ async function navigateToFaultManagementWithExample(page) {
* @param {import('@playwright/test').Page} page * @param {import('@playwright/test').Page} page
*/ */
async function navigateToFaultManagementWithStaticExample(page) { async function navigateToFaultManagementWithStaticExample(page) {
// eslint-disable-next-line no-undef
await page.addInitScript({ path: path.join(__dirname, './', 'addInitExampleFaultProviderStatic.js') }); await page.addInitScript({ path: path.join(__dirname, './', 'addInitExampleFaultProviderStatic.js') });
await navigateToFaultItemInTree(page); await navigateToFaultItemInTree(page);
@ -46,7 +44,6 @@ async function navigateToFaultManagementWithStaticExample(page) {
* @param {import('@playwright/test').Page} page * @param {import('@playwright/test').Page} page
*/ */
async function navigateToFaultManagementWithoutExample(page) { async function navigateToFaultManagementWithoutExample(page) {
// eslint-disable-next-line no-undef
await page.addInitScript({ path: path.join(__dirname, './', 'addInitFaultManagementPlugin.js') }); await page.addInitScript({ path: path.join(__dirname, './', 'addInitFaultManagementPlugin.js') });
await navigateToFaultItemInTree(page); await navigateToFaultItemInTree(page);

View File

@ -19,7 +19,7 @@
* this source code distribution or the Licensing information page available * this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. * at runtime from the About dialog for additional information.
*****************************************************************************/ *****************************************************************************/
/* global __dirname */
/* /*
This test suite is dedicated to tests which verify form functionality in isolation This test suite is dedicated to tests which verify form functionality in isolation
*/ */
@ -72,7 +72,6 @@ test.describe('Form Validation Behavior', () => {
test.describe('Form File Input Behavior', () => { test.describe('Form File Input Behavior', () => {
test.beforeEach(async ({ page }) => { test.beforeEach(async ({ page }) => {
// eslint-disable-next-line no-undef
await page.addInitScript({ path: path.join(__dirname, '../../helper', 'addInitFileInputObject.js') }); await page.addInitScript({ path: path.join(__dirname, '../../helper', 'addInitFileInputObject.js') });
}); });
@ -108,7 +107,6 @@ test.describe('Form File Input Behavior', () => {
test.describe('Persistence operations @addInit', () => { test.describe('Persistence operations @addInit', () => {
// add non persistable root item // add non persistable root item
test.beforeEach(async ({ page }) => { test.beforeEach(async ({ page }) => {
// eslint-disable-next-line no-undef
await page.addInitScript({ path: path.join(__dirname, '../../helper', 'addNoneditableObject.js') }); await page.addInitScript({ path: path.join(__dirname, '../../helper', 'addNoneditableObject.js') });
}); });

View File

@ -19,7 +19,7 @@
* this source code distribution or the Licensing information page available * this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. * at runtime from the About dialog for additional information.
*****************************************************************************/ *****************************************************************************/
/* global __dirname */
/* /*
This test suite is dedicated to tests which verify persistability checks This test suite is dedicated to tests which verify persistability checks
*/ */
@ -31,7 +31,6 @@ const path = require('path');
test.describe('Persistence operations @addInit', () => { test.describe('Persistence operations @addInit', () => {
// add non persistable root item // add non persistable root item
test.beforeEach(async ({ page }) => { test.beforeEach(async ({ page }) => {
// eslint-disable-next-line no-undef
await page.addInitScript({ path: path.join(__dirname, '../../helper', 'addNoneditableObject.js') }); await page.addInitScript({ path: path.join(__dirname, '../../helper', 'addNoneditableObject.js') });
}); });

View File

@ -19,7 +19,7 @@
* this source code distribution or the Licensing information page available * this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. * at runtime from the About dialog for additional information.
*****************************************************************************/ *****************************************************************************/
/* global __dirname */
/* /*
This test suite is dedicated to tests which verify the basic operations surrounding Notebooks. This test suite is dedicated to tests which verify the basic operations surrounding Notebooks.
*/ */
@ -80,21 +80,31 @@ test.describe('Notebook section tests', () => {
}); });
}); });
test('Default and new sections are automatically named Unnamed Section with Unnamed Page', async ({ page }) => { test('Default and new sections are automatically named Unnamed Section with Unnamed Page', async ({ page }) => {
const notebookSectionNames = page.locator('.c-notebook__sections .c-list__item__name');
const notebookPageNames = page.locator('.c-notebook__pages .c-list__item__name');
await expect(notebookSectionNames).toBeHidden();
await expect(notebookPageNames).toBeHidden();
// Expand sidebar
await page.locator('.c-notebook__toggle-nav-button').click();
// Check that the default section and page are created and the name matches the defaults // Check that the default section and page are created and the name matches the defaults
const defaultSectionName = await page.locator('.c-notebook__sections .c-list__item__name').textContent(); const defaultSectionName = await notebookSectionNames.innerText();
await expect(notebookSectionNames).toBeVisible();
expect(defaultSectionName).toBe('Unnamed Section'); expect(defaultSectionName).toBe('Unnamed Section');
const defaultPageName = await page.locator('.c-notebook__pages .c-list__item__name').textContent(); const defaultPageName = await notebookPageNames.innerText();
await expect(notebookPageNames).toBeVisible();
expect(defaultPageName).toBe('Unnamed Page'); expect(defaultPageName).toBe('Unnamed Page');
// Expand sidebar and add a section // Add a section
await page.locator('.c-notebook__toggle-nav-button').click();
await page.locator('.js-sidebar-sections .c-icon-button.icon-plus').click(); await page.locator('.js-sidebar-sections .c-icon-button.icon-plus').click();
// Check that new section and page within the new section match the defaults // Check that new section and page within the new section match the defaults
const newSectionName = await page.locator('.c-notebook__sections .c-list__item__name').nth(1).textContent(); const newSectionName = await notebookSectionNames.nth(1).innerText();
await expect(notebookSectionNames.nth(1)).toBeVisible();
expect(newSectionName).toBe('Unnamed Section'); expect(newSectionName).toBe('Unnamed Section');
const newPageName = await page.locator('.c-notebook__pages .c-list__item__name').textContent(); const newPageName = await notebookPageNames.innerText();
await expect(notebookPageNames).toBeVisible();
expect(newPageName).toBe('Unnamed Page'); expect(newPageName).toBe('Unnamed Page');
}); });
test.fixme('Section selection operations and associated behavior', async ({ page }) => { test.fixme('Section selection operations and associated behavior', async ({ page }) => {
//Create new notebook A //Create new notebook A
@ -270,10 +280,10 @@ test.describe('Notebook entry tests', () => {
// Reveal the notebook in the tree // Reveal the notebook in the tree
await page.getByTitle('Show selected item in tree').click(); await page.getByTitle('Show selected item in tree').click();
await page.dragAndDrop(`role=treeitem[name=/${overlayPlot.name}/]`, '.c-notebook__drag-area'); await page.getByRole('treeitem', { name: overlayPlot.name }).dragTo(page.locator('.c-notebook__drag-area'));
const embed = page.locator('.c-ne__embed__link'); const embed = page.locator('.c-ne__embed__link');
const embedName = await embed.textContent(); const embedName = await embed.innerText();
await expect(embed).toHaveClass(/icon-plot-overlay/); await expect(embed).toHaveClass(/icon-plot-overlay/);
expect(embedName).toBe(overlayPlot.name); expect(embedName).toBe(overlayPlot.name);
@ -291,11 +301,13 @@ test.describe('Notebook entry tests', () => {
await page.getByTitle('Show selected item in tree').click(); await page.getByTitle('Show selected item in tree').click();
await nbUtils.enterTextEntry(page, 'Entry to drop into'); await nbUtils.enterTextEntry(page, 'Entry to drop into');
await page.dragAndDrop(`role=treeitem[name=/${overlayPlot.name}/]`, 'text=Entry to drop into'); await page.getByRole('treeitem', { name: overlayPlot.name }).dragTo(page.locator('text=Entry to drop into'));
const existingEntry = page.locator('.c-ne__content', { has: page.locator('text="Entry to drop into"') }); const existingEntry = page.locator('.c-ne__content', {
has: page.locator('text="Entry to drop into"')
});
const embed = existingEntry.locator('.c-ne__embed__link'); const embed = existingEntry.locator('.c-ne__embed__link');
const embedName = await embed.textContent(); const embedName = await embed.innerText();
await expect(embed).toHaveClass(/icon-plot-overlay/); await expect(embed).toHaveClass(/icon-plot-overlay/);
expect(embedName).toBe(overlayPlot.name); expect(embedName).toBe(overlayPlot.name);

View File

@ -19,7 +19,7 @@
* this source code distribution or the Licensing information page available * this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. * at runtime from the About dialog for additional information.
*****************************************************************************/ *****************************************************************************/
/* global __dirname */
const { test, expect, streamToString } = require('../../../../pluginFixtures'); const { test, expect, streamToString } = require('../../../../pluginFixtures');
const { openObjectTreeContextMenu, createDomainObjectWithDefaults } = require('../../../../appActions'); const { openObjectTreeContextMenu, createDomainObjectWithDefaults } = require('../../../../appActions');
const path = require('path'); const path = require('path');
@ -104,18 +104,15 @@ test.describe('Restricted Notebook with at least one entry and with the page loc
}); });
test('Can still: add page, rename, add entry, delete unlocked pages @addInit', async ({ page }) => { test('Can still: add page, rename, add entry, delete unlocked pages @addInit', async ({ page }) => {
// Click text=Page Add >> button // Add a new page to the section
await Promise.all([ await page.getByRole('button', { name: 'Add Page' }).click();
page.waitForNavigation(), // Focus the new page by clicking it
page.locator('text=Page Add >> button').click() await page.getByText('Unnamed Page').nth(1).click();
]); // Rename the new page
// Click text=Unnamed Page >> nth=1 await page.getByText('Unnamed Page').nth(1).fill(TEST_TEXT_NAME);
await page.locator('text=Unnamed Page').nth(1).click();
// Press a with modifiers
await page.locator('text=Unnamed Page').nth(1).fill(TEST_TEXT_NAME);
// expect to be able to rename unlocked pages // expect to be able to rename unlocked pages
const newPageElement = page.locator(`text=${TEST_TEXT_NAME}`); const newPageElement = page.getByText(TEST_TEXT_NAME);
const newPageCount = await newPageElement.count(); const newPageCount = await newPageElement.count();
await newPageElement.press('Enter'); // exit contenteditable state await newPageElement.press('Enter'); // exit contenteditable state
expect.soft(newPageCount).toEqual(1); expect.soft(newPageCount).toEqual(1);
@ -124,21 +121,18 @@ test.describe('Restricted Notebook with at least one entry and with the page loc
await nbUtils.enterTextEntry(page, TEST_TEXT); await nbUtils.enterTextEntry(page, TEST_TEXT);
// expect new page to be lockable // expect new page to be lockable
const commitButton = page.locator('BUTTON:HAS-TEXT("COMMIT ENTRIES")'); const commitButton = page.getByRole('button', { name: ' Commit Entries' });
expect.soft(await commitButton.count()).toEqual(1); expect.soft(await commitButton.count()).toEqual(1);
// Click text=Unnamed PageTest Page >> button // Click the context menu button for the new page
await page.locator('text=Unnamed PageTest Page >> button').click(); await page.getByTitle('Open context menu').click();
// Click text=Delete Page // Delete the page
await page.locator('text=Delete Page').click(); await page.getByRole('listitem', { name: 'Delete Page' }).click();
// Click text=Ok // Click OK button
await Promise.all([ await page.getByRole('button', { name: 'Ok' }).click();
page.waitForNavigation(),
page.locator('button:has-text("OK")').click()
]);
// deleted page, should no longer exist // deleted page, should no longer exist
const deletedPageElement = page.locator(`text=${TEST_TEXT_NAME}`); const deletedPageElement = page.getByText(TEST_TEXT_NAME);
expect(await deletedPageElement.count()).toEqual(0); expect(await deletedPageElement.count()).toEqual(0);
}); });
}); });
@ -200,7 +194,6 @@ test.describe('can export restricted notebook as text', () => {
* @param {import('@playwright/test').Page} page * @param {import('@playwright/test').Page} page
*/ */
async function startAndAddRestrictedNotebookObject(page) { async function startAndAddRestrictedNotebookObject(page) {
// eslint-disable-next-line no-undef
await page.addInitScript({ path: path.join(__dirname, '../../../../helper/', 'addInitRestrictedNotebook.js') }); await page.addInitScript({ path: path.join(__dirname, '../../../../helper/', 'addInitRestrictedNotebook.js') });
await page.goto('./', { waitUntil: 'domcontentloaded' }); await page.goto('./', { waitUntil: 'domcontentloaded' });

View File

@ -19,7 +19,7 @@
* this source code distribution or the Licensing information page available * this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. * at runtime from the About dialog for additional information.
*****************************************************************************/ *****************************************************************************/
/* global __dirname */
/* /*
* This test suite is dedicated to testing the operator status plugin. * This test suite is dedicated to testing the operator status plugin.
*/ */
@ -40,9 +40,7 @@ STUB (test.fixme) Rolling through each
test.describe('Operator Status', () => { test.describe('Operator Status', () => {
test.beforeEach(async ({ page }) => { test.beforeEach(async ({ page }) => {
// FIXME: determine if plugins will be added to index.html or need to be injected // FIXME: determine if plugins will be added to index.html or need to be injected
// eslint-disable-next-line no-undef
await page.addInitScript({ path: path.join(__dirname, '../../../../helper/', 'addInitExampleUser.js')}); await page.addInitScript({ path: path.join(__dirname, '../../../../helper/', 'addInitExampleUser.js')});
// eslint-disable-next-line no-undef
await page.addInitScript({ path: path.join(__dirname, '../../../../helper/', 'addInitOperatorStatus.js')}); await page.addInitScript({ path: path.join(__dirname, '../../../../helper/', 'addInitOperatorStatus.js')});
await page.goto('./', { waitUntil: 'domcontentloaded' }); await page.goto('./', { waitUntil: 'domcontentloaded' });
}); });

View File

@ -194,9 +194,6 @@ test.describe('Plot Tagging', () => {
await setFixedTimeMode(page); await setFixedTimeMode(page);
// changing to fixed time mode rebuilds canvas?
canvas = page.locator('canvas').nth(1);
await basicTagsTests(page); await basicTagsTests(page);
await testTelemetryItem(page, alphaSineWave); await testTelemetryItem(page, alphaSineWave);

View File

@ -20,7 +20,7 @@
* this source code distribution or the Licensing information page available * this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. * at runtime from the About dialog for additional information.
*****************************************************************************/ *****************************************************************************/
/* global __dirname */
/* /*
Collection of Visual Tests set to run with modified init scripts to inject plugins not otherwise available in the default contexts. Collection of Visual Tests set to run with modified init scripts to inject plugins not otherwise available in the default contexts.
@ -48,7 +48,6 @@ test.describe('Visual - addInit', () => {
}); });
test('Restricted Notebook is visually correct @addInit @unstable', async ({ page, theme }) => { test('Restricted Notebook is visually correct @addInit @unstable', async ({ page, theme }) => {
// eslint-disable-next-line no-undef
await page.addInitScript({ path: path.join(__dirname, '../../helper', './addInitRestrictedNotebook.js') }); await page.addInitScript({ path: path.join(__dirname, '../../helper', './addInitRestrictedNotebook.js') });
//Go to baseURL //Go to baseURL
await page.goto('./#/browse/mine?hideTree=true', { waitUntil: 'networkidle' }); await page.goto('./#/browse/mine?hideTree=true', { waitUntil: 'networkidle' });

View File

@ -19,7 +19,7 @@
* this source code distribution or the Licensing information page available * this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. * at runtime from the About dialog for additional information.
*****************************************************************************/ *****************************************************************************/
/* global __dirname */
const path = require('path'); const path = require('path');
const { test } = require('../../pluginFixtures'); const { test } = require('../../pluginFixtures');
const percySnapshot = require('@percy/playwright'); const percySnapshot = require('@percy/playwright');
@ -29,7 +29,6 @@ const utils = require('../../helper/faultUtils');
test.describe('The Fault Management Plugin Visual Test', () => { test.describe('The Fault Management Plugin Visual Test', () => {
test('icon test', async ({ page, theme }) => { test('icon test', async ({ page, theme }) => {
// eslint-disable-next-line no-undef
await page.addInitScript({ path: path.join(__dirname, '../../helper/', 'addInitFaultManagementPlugin.js') }); await page.addInitScript({ path: path.join(__dirname, '../../helper/', 'addInitFaultManagementPlugin.js') });
await page.goto('./', { waitUntil: 'networkidle' }); await page.goto('./', { waitUntil: 'networkidle' });

View File

@ -52,8 +52,7 @@ export default function () {
key: 'example.imagery', key: 'example.imagery',
name: 'Example Imagery', name: 'Example Imagery',
cssClass: 'icon-image', cssClass: 'icon-image',
description: 'For development use. Creates example imagery ' description: 'For development use. Creates example imagery data that mimics a live imagery stream.',
+ 'data that mimics a live imagery stream.',
creatable: true, creatable: true,
initialize: (object) => { initialize: (object) => {
object.configuration = { object.configuration = {

View File

@ -23,7 +23,9 @@
"d3-selection": "3.0.0", "d3-selection": "3.0.0",
"eslint": "8.40.0", "eslint": "8.40.0",
"eslint-plugin-compat": "4.1.4", "eslint-plugin-compat": "4.1.4",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-playwright": "0.12.0", "eslint-plugin-playwright": "0.12.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-vue": "9.13.0", "eslint-plugin-vue": "9.13.0",
"eslint-plugin-you-dont-need-lodash-underscore": "6.12.0", "eslint-plugin-you-dont-need-lodash-underscore": "6.12.0",
"eventemitter3": "1.2.0", "eventemitter3": "1.2.0",
@ -54,6 +56,7 @@
"playwright-core": "1.32.3", "playwright-core": "1.32.3",
"plotly.js-basic-dist": "2.20.0", "plotly.js-basic-dist": "2.20.0",
"plotly.js-gl2d-dist": "2.20.0", "plotly.js-gl2d-dist": "2.20.0",
"prettier": "2.8.7",
"printj": "1.3.1", "printj": "1.3.1",
"resolve-url-loader": "5.0.0", "resolve-url-loader": "5.0.0",
"sanitize-html": "2.10.0", "sanitize-html": "2.10.0",

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="c-form js-form"> <div class="c-form js-form">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div
ref="autoCompleteForm" ref="autoCompleteForm"

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<span class="form-control shell"> <span class="form-control shell">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="c-form-control--clock-display-format-fields"> <div class="c-form-control--clock-display-format-fields">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<span> <span>

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div :class="compositeCssClass"> <div :class="compositeCssClass">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="c-form-control--datetime"> <div class="c-form-control--datetime">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<span class="form-control shell"> <span class="form-control shell">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<mct-tree <mct-tree

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<span class="form-control shell"> <span class="form-control shell">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="form-control select-field"> <div class="form-control select-field">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<span class="form-control shell"> <span class="form-control shell">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an 'AS IS' BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<span class="form-control shell"> <span class="form-control shell">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<span class="form-control shell"> <span class="form-control shell">

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div <div
class="c-menu" class="c-menu"

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div <div
class="c-menu" class="c-menu"

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div class="c-message"> <div class="c-message">
<!--Uses flex-row --> <!--Uses flex-row -->

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div class="c-overlay js-overlay"> <div class="c-overlay js-overlay">
<div <div

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<dialog-component> <dialog-component>
<progress-component :model="model" /> <progress-component :model="model" />

View File

@ -64,8 +64,7 @@ class TimeContext extends EventEmitter {
if (arguments.length >= 1) { if (arguments.length >= 1) {
if (arguments.length === 1 && !this.activeClock) { if (arguments.length === 1 && !this.activeClock) {
throw new Error( throw new Error(
"Must specify bounds when changing time system without " "Must specify bounds when changing time system without an active clock."
+ "an active clock."
); );
} }

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<tr <tr

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="c-inspect-properties"> <div class="c-inspect-properties">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div <div
ref="plotWrapper" ref="plotWrapper"

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<span class="form-control"> <span class="form-control">

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div <div
ref="plotWrapper" ref="plotWrapper"

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div class="c-indicator c-indicator--clickable icon-clear-data s-status-caution"> <div class="c-indicator c-indicator--clickable icon-clear-data s-status-caution">
<span class="label c-indicator__label"> <span class="label c-indicator__label">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<section <section

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="c-style__condition-desc"> <div class="c-style__condition-desc">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="u-contents"> <div class="u-contents">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<section <section

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="c-style has-local-controls c-toolbar"> <div class="c-style has-local-controls c-toolbar">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="c-inspector__styles c-inspect-styles"> <div class="c-inspector__styles c-inspect-styles">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<layout-frame <layout-frame

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div <div
class="l-layout__grid-holder" class="l-layout__grid-holder"

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<!-- Resize handles --> <!-- Resize handles -->

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<layout-frame <layout-frame

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<layout-frame <layout-frame

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<layout-frame <layout-frame
:item="item" :item="item"

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<layout-frame <layout-frame

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<layout-frame <layout-frame

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="c-fault-mgmt-item-header c-fault-mgmt__list-header c-fault-mgmt__list"> <div class="c-fault-mgmt-item-header c-fault-mgmt__list-header c-fault-mgmt__list">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="c-faults-list-view"> <div class="c-faults-list-view">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="c-fault-mgmt__search-row"> <div class="c-fault-mgmt__search-row">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="c-fault-mgmt__toolbar"> <div class="c-fault-mgmt__toolbar">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<FaultManagementListView <FaultManagementListView

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div class="c-inspect-properties__section c-filter-settings"> <div class="c-inspect-properties__section c-filter-settings">
<li <li

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<li class="c-tree__item-h"> <li class="c-tree__item-h">
<div <div

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<ul <ul
v-if="Object.keys(children).length" v-if="Object.keys(children).length"

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<li class="c-tree__item-h"> <li class="c-tree__item-h">
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div v-show="isValidTarget"> <div v-show="isValidTarget">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div class="c-fl"> <div class="c-fl">

View File

@ -1,25 +1,25 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<a <a
class="l-grid-view__item c-grid-item js-folder-child" class="l-grid-view__item c-grid-item js-folder-child"

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div class="l-grid-view"> <div class="l-grid-view">
<grid-item <grid-item

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<tr <tr
class="c-list-item js-folder-child" class="c-list-item js-folder-child"

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div class="c-table c-table--sortable c-list-view c-list-view--sticky-header c-list-view--selectable"> <div class="c-table c-table--sortable c-list-view c-list-view--sticky-header c-list-view--selectable">
<table class="c-table__body"> <table class="c-table__body">

View File

@ -208,7 +208,7 @@ describe('Gauge plugin', () => {
}); });
it('renders correct min max values', () => { it('renders correct min max values', () => {
expect(gaugeHolder.querySelector('.js-gauge-dial-range').textContent).toEqual(`${minValue} ${maxValue}`); expect(gaugeHolder.querySelector('.js-gauge-dial-range').textContent).toMatch(new RegExp(`\\s*${minValue}\\s*${maxValue}\\s*`));
}); });
it('renders correct current value', (done) => { it('renders correct current value', (done) => {
@ -344,7 +344,7 @@ describe('Gauge plugin', () => {
}); });
it('renders correct min max values', () => { it('renders correct min max values', () => {
expect(gaugeHolder.querySelector('.js-gauge-dial-range').textContent).toEqual(`${minValue} ${maxValue}`); expect(gaugeHolder.querySelector('.js-gauge-dial-range').textContent).toMatch(new RegExp(`\\s*${minValue}\\s*${maxValue}\\s*`));
}); });
it('renders correct current value', (done) => { it('renders correct current value', (done) => {
@ -480,7 +480,7 @@ describe('Gauge plugin', () => {
}); });
it('renders correct min max values', () => { it('renders correct min max values', () => {
expect(gaugeHolder.querySelector('.js-gauge-meter-range').textContent).toEqual(`${maxValue} ${minValue}`); expect(gaugeHolder.querySelector('.js-gauge-meter-range').textContent).toMatch(new RegExp(`\\s*${maxValue}\\s*${minValue}\\s*`));
}); });
it('renders correct current value', (done) => { it('renders correct current value', (done) => {
@ -790,7 +790,8 @@ describe('Gauge plugin', () => {
}); });
it('renders correct min max values', () => { it('renders correct min max values', () => {
expect(gaugeHolder.querySelector('.js-gauge-dial-range').textContent).toEqual(`${gaugeViewObject.configuration.gaugeController.min} ${gaugeViewObject.configuration.gaugeController.max}`); const { min, max } = gaugeViewObject.configuration.gaugeController;
expect(gaugeHolder.querySelector('.js-gauge-dial-range').textContent).toMatch(new RegExp(`\\s*${min}\\s*${max}\\s*`));
}); });
it('renders correct current value', (done) => { it('renders correct current value', (done) => {

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div
class="c-gauge__wrapper js-gauge-wrapper" class="c-gauge__wrapper js-gauge-wrapper"

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<span class="form-control"> <span class="form-control">

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div <div
class="c-control-menu c-menu--to-left c-menu--has-close-btn c-image-controls c-image-controls--filters" class="c-control-menu c-menu--to-left c-menu--has-close-btn c-image-controls c-image-controls--filters"

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,24 +1,24 @@
/***************************************************************************** <!--
* Open MCT, Copyright (c) 2014-2023, United States Government Open MCT, Copyright (c) 2014-2023, United States Government
* as represented by the Administrator of the National Aeronautics and Space as represented by the Administrator of the National Aeronautics and Space
* Administration. All rights reserved. Administration. All rights reserved.
*
* Open MCT is licensed under the Apache License, Version 2.0 (the 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. "License"); you may not use this file except in compliance with the License.
* You may obtain a copy of the License at You may obtain a copy of the License at
* http://www.apache.org/licenses/LICENSE-2.0. http://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations License for the specific language governing permissions and limitations
* under the License. under the License.
*
* Open MCT includes source code licensed under additional open source Open MCT includes source code licensed under additional open source
* licenses. See the Open Source Licenses file (LICENSES.md) included with licenses. See the Open Source Licenses file (LICENSES.md) included with
* this source code distribution or the Licensing information page available this source code distribution or the Licensing information page available
* at runtime from the About dialog for additional information. at runtime from the About dialog for additional information.
*****************************************************************************/ -->
<template> <template>
<div <div

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div class="c-switcher-menu"> <div class="c-switcher-menu">
<button <button

View File

@ -1,3 +1,24 @@
<!--
Open MCT, Copyright (c) 2014-2023, 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.
-->
<template> <template>
<div <div
class="c-control-menu c-menu--to-left c-menu--has-close-btn c-image-controls" class="c-control-menu c-menu--to-left c-menu--has-close-btn c-image-controls"

Some files were not shown because too many files have changed in this diff Show More