Component Development
@Component({
selector: 'bootstrapcomponents-textbox',
templateUrl: './textbox.html',
changeDetection: ChangeDetectionStrategy.OnPush
})@Input() format: Format;
@Input() inputType: string;
@Input() autocomplete: string;
@Input() styleClassForEye: string;@Output() inputTypeChange = new EventEmitter();
this.inputTypeChange.emit(this.inputType);Last updated
Was this helpful?