mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
25 lines
576 B
TypeScript
25 lines
576 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(() => TextComponent),
|
|
multi: true,
|
|
},
|
|
],
|
|
selector: 'pngx-input-text',
|
|
templateUrl: './text.component.html',
|
|
styleUrls: ['./text.component.scss'],
|
|
})
|
|
export class TextComponent extends AbstractInputComponent<string> {
|
|
@Input()
|
|
autocomplete: string
|
|
|
|
constructor() {
|
|
super()
|
|
}
|
|
}
|