28 lines
641 B
TypeScript
28 lines
641 B
TypeScript
import { Component, Input, forwardRef } from '@angular/core'
|
|
import { NG_VALUE_ACCESSOR } from '@angular/forms'
|
|
import { AbstractInputComponent } from '../abstract-input'
|
|
|
|
@Component({
|
|
providers: [
|
|
{
|
|
provide: NG_VALUE_ACCESSOR,
|
|
useExisting: forwardRef(() => TextAreaComponent),
|
|
multi: true,
|
|
},
|
|
],
|
|
selector: 'pngx-input-textarea',
|
|
templateUrl: './textarea.component.html',
|
|
styleUrls: ['./textarea.component.scss'],
|
|
})
|
|
export class TextAreaComponent extends AbstractInputComponent<string> {
|
|
@Input()
|
|
placeholder: string = ''
|
|
|
|
@Input()
|
|
monospace: boolean = false
|
|
|
|
constructor() {
|
|
super()
|
|
}
|
|
}
|