docs: configurando deploy via ssh para angular

This commit is contained in:
2026-01-02 19:55:27 -05:00
parent a16d0f0701
commit b0beb50d59
544 changed files with 97696 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
import { ActionsLayout } from '@progress/kendo-angular-dialog';
@Component({
selector: 'app-message-information',
templateUrl: './message-information.component.html',
styleUrls: ['./message-information.component.scss']
})
export class MessageInformationComponent implements OnInit {
@Input() opened = false;
@Input() title: string;
@Input() message: string;
@Input() information: string;
@Output() resultEvent = new EventEmitter<boolean>();
openedDialog = false;
public loadingIcon = '';
public actionsLayout: ActionsLayout = 'normal';
public onDialogClose(): void {
this.resultEvent.emit(false);
this.openedDialog = false;
}
public open(): void {
this.opened = true;
}
public closeDialog() {
this.openedDialog = false;
this.resultEvent.emit(false);
}
constructor() { }
ngOnInit() {
}
}