Skip to content

Commit 84e3e24

Browse files
[COMPLIANCE] Add Copyright and License Headers (#2657)
Co-authored-by: Alex <alex-ju@users.noreply.github.com>
1 parent 2787f32 commit 84e3e24

File tree

6 files changed

+30
-0
lines changed

6 files changed

+30
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
{{!
2+
Copyright (c) HashiCorp, Inc.
3+
SPDX-License-Identifier: MPL-2.0
4+
}}
5+
16
<Hds::Text::Body class="hds-code-editor__description" @tag="p" @size="100" ...attributes>
27
{{yield}}
38
</Hds::Text::Body>

packages/components/src/components/hds/code-editor/full-screen-button.hbs

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
{{!
2+
Copyright (c) HashiCorp, Inc.
3+
SPDX-License-Identifier: MPL-2.0
4+
}}
5+
16
<Hds::Button
27
class={{this.className}}
38
aria-pressed={{@isFullScreen}}

packages/components/src/components/hds/code-editor/title.hbs

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
{{!
2+
Copyright (c) HashiCorp, Inc.
3+
SPDX-License-Identifier: MPL-2.0
4+
}}
5+
16
<Hds::Text::Body
27
id={{this._id}}
38
class="hds-code-editor__title"

packages/components/src/modifiers/hds-code-editor/highlight-styles/hds-dark-highlight-style.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) HashiCorp, Inc.
3+
* SPDX-License-Identifier: MPL-2.0
4+
*/
5+
16
import { tags } from '@lezer/highlight';
27
import { HighlightStyle } from '@codemirror/language';
38
import {

packages/components/src/modifiers/hds-code-editor/palettes/hds-dark-palette.ts

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) HashiCorp, Inc.
3+
* SPDX-License-Identifier: MPL-2.0
4+
*/
5+
16
export const HDS_CODE_BLOCK_WHITE = '#efeff1';
27
export const HDS_CODE_BLOCK_BLUE = '#2d8eff';
38
export const HDS_CODE_BLOCK_GREEN = '#86ff13';

showcase/tests/integration/modifiers/hds-code-editor-test.js

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
/**
2+
* Copyright (c) HashiCorp, Inc.
3+
* SPDX-License-Identifier: MPL-2.0
4+
*/
5+
16
import { module, test } from 'qunit';
27
import { setupRenderingTest } from 'ember-qunit';
38
import {

0 commit comments

Comments
 (0)