mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
23 lines
612 B
TypeScript
23 lines
612 B
TypeScript
import { Component, forwardRef, Input, OnInit } from '@angular/core'
|
|
import { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms'
|
|
import { v4 as uuidv4 } from 'uuid'
|
|
import { AbstractInputComponent } from '../abstract-input'
|
|
|
|
@Component({
|
|
providers: [
|
|
{
|
|
provide: NG_VALUE_ACCESSOR,
|
|
useExisting: forwardRef(() => CheckComponent),
|
|
multi: true,
|
|
},
|
|
],
|
|
selector: 'app-input-check',
|
|
templateUrl: './check.component.html',
|
|
styleUrls: ['./check.component.scss'],
|
|
})
|
|
export class CheckComponent extends AbstractInputComponent<boolean> {
|
|
constructor() {
|
|
super()
|
|
}
|
|
}
|