mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
687 B
31 lines
687 B
import {
|
|
ChangeDetectionStrategy,
|
|
Component,
|
|
EventEmitter,
|
|
Input,
|
|
OnInit,
|
|
Output
|
|
} from '@angular/core';
|
|
|
|
@Component({
|
|
host: { class: 'justify-content-center' },
|
|
selector: 'gf-dialog-header',
|
|
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
templateUrl: './dialog-header.component.html',
|
|
styleUrls: ['./dialog-header.component.scss']
|
|
})
|
|
export class DialogHeaderComponent implements OnInit {
|
|
@Input() deviceType: string;
|
|
@Input() symbolUrl: string;
|
|
@Input() title: string;
|
|
|
|
@Output() closeButtonClicked = new EventEmitter<void>();
|
|
|
|
public constructor() {}
|
|
|
|
public ngOnInit() {}
|
|
|
|
public onClickCloseButton() {
|
|
this.closeButtonClicked.emit();
|
|
}
|
|
}
|
|
|