// vim: set tw=80 ts=2 sw=2 sts=2 : import { Component, ViewChild, AfterViewChecked, Input, Output, EventEmitter } from '@angular/core'; import { NgForm } from '@angular/forms'; import { Logger } from '@nsalaun/ng-logger'; import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap'; import { Account } from './account'; @Component({ selector: 'account-form', template: `
` }) export class AccountFormComponent implements AfterViewChecked { @Input() account: Account; @Output() onFormChanged: EventEmitter