АО
Size: a a a
АО
MK
АО
NK
SФ
SФ
SФ
АО
SФ
АО
// directive Dropdown
@Directive({ selector: '[dropdown]' })
export class Dropdown implements OnInit, OnDestroy {
@HostBinding('class.open')
@Input() public get isOpen():boolean {}
@Input() public autoClose:string;
@Input() public keyboardNav:boolean;
// enum string: ['nonInput', always', 'outsideClick', 'disabled']
@Input() public appendToBody:boolean;
@Output() public onToggle:EventEmitter<boolean>;
}
AK
AK
AK
NK
АО
this.form.valueChanges .map((value) => { value.firstName = value.firstName.toUpperCase(); return value; }) .filter((value) => this.form.valid) .subscribe((value) => { console.log("valid value: vm = ",JSON.stringify(value)); });
SФ
this.form.valueChanges .map((value) => { value.firstName = value.firstName.toUpperCase(); return value; }) .filter((value) => this.form.valid) .subscribe((value) => { console.log("valid value: vm = ",JSON.stringify(value)); });
АО
АО
SФ
SФ