Skip to content

Commit 9efb9bd

Browse files
committed
fix(components): 💅 lint:types
1 parent 252695c commit 9efb9bd

File tree

4 files changed

+13
-15
lines changed

4 files changed

+13
-15
lines changed

‎packages/components/src/components/hds/breadcrumb/item.hbs

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
</div>
1515
{{else}}
1616
{{#if @isRouteExternal}}
17-
{{! @glint-expect-error: FIXME: pnpm migration }}
1817
<LinkToExternal
1918
class="hds-breadcrumb__link"
2019
@current-when={{@current-when}}

‎packages/components/src/components/hds/flyout/index.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default class HdsFlyout extends Component<HdsFlyoutSignature> {
6161
@tracked private _isOpen = false;
6262
// TODO: make this property private; currently blocked by our consumers relying on it despite not being part of the public API: https://github.com/hashicorp/cloud-ui/blob/main/engines/waypoint/addon/components/preview-pane.ts#L15
6363
// private _element!: HTMLDialogElement;
64-
element!: HTMLDialogElement;
64+
_element!: HTMLDialogElement;
6565
private _body!: HTMLElement;
6666
private _bodyInitialOverflowValue = '';
6767

@@ -118,7 +118,7 @@ export default class HdsFlyout extends Component<HdsFlyoutSignature> {
118118
@action
119119
didInsert(element: HTMLDialogElement): void {
120120
// Store references of `<dialog>` and `<body>` elements
121-
this.element = element;
121+
this._element = element;
122122
this._body = document.body;
123123

124124
if (this._body) {
@@ -128,18 +128,18 @@ export default class HdsFlyout extends Component<HdsFlyoutSignature> {
128128
}
129129

130130
// Register "onClose" callback function to be called when a native 'close' event is dispatched
131-
this.element.addEventListener('close', this.registerOnCloseCallback, true);
131+
this._element.addEventListener('close', this.registerOnCloseCallback, true);
132132

133133
// If the flyout dialog is not already open
134-
if (!this.element.open) {
134+
if (!this._element.open) {
135135
this.open();
136136
}
137137
}
138138

139139
@action
140140
willDestroyNode(): void {
141-
if (this.element) {
142-
this.element.removeEventListener(
141+
if (this._element) {
142+
this._element.removeEventListener(
143143
'close',
144144
this.registerOnCloseCallback,
145145
true
@@ -150,7 +150,7 @@ export default class HdsFlyout extends Component<HdsFlyoutSignature> {
150150
@action
151151
open(): void {
152152
// Make flyout dialog visible using the native `showModal` method
153-
this.element.showModal();
153+
this._element.showModal();
154154
this._isOpen = true;
155155

156156
// Prevent page from scrolling when the dialog is open
@@ -167,17 +167,17 @@ export default class HdsFlyout extends Component<HdsFlyoutSignature> {
167167
// allow ember test helpers to be aware of when the `close` event fires
168168
// when using `click` or other helpers from '@ember/test-helpers'
169169
// Notice: this code will get stripped out in production builds (DEBUG evaluates to `true` in dev/test builds, but `false` in prod builds)
170-
if (this.element.open) {
170+
if (this._element.open) {
171171
const token = waiter.beginAsync();
172172
const listener = () => {
173173
waiter.endAsync(token);
174-
this.element.removeEventListener('close', listener);
174+
this._element.removeEventListener('close', listener);
175175
};
176-
this.element.addEventListener('close', listener);
176+
this._element.addEventListener('close', listener);
177177
}
178178

179179
// Make flyout dialog invisible using the native `close` method
180-
this.element.close();
180+
this._element.close();
181181

182182
// Reset page `overflow` property
183183
if (this._body) {

‎packages/components/src/components/hds/interactive/index.hbs

-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
{{! NOTICE: we can't support the direct use of the "href" HTML attribute via ...attributes in the <a> elements, because we need to rely on the "@href" Ember argument to differentiate between different types of generated output }}
44
{{~#if @route~}}
55
{{~#if this.isRouteExternal~}}
6-
{{! @glint-expect-error: FIXME: pnpm migration }}
76
<LinkToExternal
87
@current-when={{@current-when}}
98
@models={{hds-link-to-models @model @models}}

‎packages/components/src/components/hds/menu-primitive/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export interface MenuPrimitiveSignature {
3636
export default class MenuPrimitive extends Component<MenuPrimitiveSignature> {
3737
@tracked isOpen: boolean | undefined; // notice: if in the future we need to add a "@isOpen" prop to control the status from outside (eg to have the MenuPrimitive opened on render) just add "this.args.isOpen" here to initalize the variable
3838
@tracked toggleRef: HTMLElement | undefined;
39-
@tracked element!: HTMLElement;
39+
@tracked _element!: HTMLElement;
4040

4141
constructor(owner: Owner, args: MenuPrimitiveSignature['Args']) {
4242
super(owner, args);
@@ -59,7 +59,7 @@ export default class MenuPrimitive extends Component<MenuPrimitiveSignature> {
5959

6060
@action
6161
didInsert(element: HTMLElement): void {
62-
this.element = element;
62+
this._element = element;
6363
}
6464

6565
@action

0 commit comments

Comments
 (0)