A complete list of RxJS 5 operators with easy to understand explanations and runnable examples.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {Component, ElementRef, AfterViewInit, Output, EventEmitter, Input, Self} from '@angular/core'; | |
import {ControlValueAccessor, NgModel} from '@angular/common'; | |
declare var $: any; | |
@Component({ | |
selector: 'calendar', | |
template: ` | |
<div class="ui calendar"> | |
<div class="ui input left icon"> | |
<i class="calendar icon"></i> | |
<input type="text" placeholder="Click to select Date/Time" [value]="initialDate"> |