"...common/components/ui-elements/drop-list.component.ts" did not exist on "6dd9ba11d433506ffe108bb1d55b4390a5145306"
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
}>();