mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-01 11:19:32 -05:00

Ensure that no source files have trailing whitespace at end of lines and ensure that all files end with a single trailing newline. This also adds Github Actions to enforce whitespace conventions.
23 lines
599 B
TypeScript
23 lines
599 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()
|
|
}
|
|
|
|
}
|