File

projects/ngui-common/src/lib/ngui-list/src/ngui-list.directive.ts

Metadata

Index

Properties
Outputs

Constructor

constructor(element: ElementRef)
Parameters :
Name Type Optional
element ElementRef No

Outputs

escaped
Type : EventEmitter<any>

Fired when ESC key is pressed from <ngui-list-item>

selected
Type : EventEmitter<any>

Fired when child <ngui-list-item> is selected

Properties

Public element
Type : ElementRef
import {
  Directive,
  ElementRef,
  EventEmitter,
  Output
} from '@angular/core';

@Directive({
  selector: 'ngui-list' // eslint-disable-line
})
export class NguiListDirective {
  /** Fired when child `<ngui-list-item>` is selected */
  @Output() selected: EventEmitter<any> = new EventEmitter();
  /** Fired when `ESC` key is pressed from `<ngui-list-item>` */
  @Output() escaped: EventEmitter<any> = new EventEmitter();

  constructor(public element: ElementRef) { }
}

results matching ""

    No results matching ""