"...git@scm.cms.hu-berlin.de:iqb/verona-modules-aspect.git" did not exist on "c17801e6f25f70b81700cd2b083dda9d0145a665"
Newer
Older
import {
Directive, EventEmitter, OnInit, Output
} from '@angular/core';
import { FormElementComponent } from 'common/directives/form-element-component.directive';
@Directive()
export abstract class TextInputComponent extends FormElementComponent implements OnInit {
@Output() focusChanged = new EventEmitter<{ inputElement: HTMLElement; focused: boolean }>();
@Output() onKeyDown = new EventEmitter<{
keyboardEvent: KeyboardEvent;
inputElement: HTMLInputElement | HTMLTextAreaElement
}>();