import { NgClass } from '@angular/common' import { Component, Input, forwardRef } from '@angular/core' import { FormsModule, NG_VALUE_ACCESSOR, ReactiveFormsModule, } from '@angular/forms' import { NgbTooltipModule } from '@ng-bootstrap/ng-bootstrap' import { AbstractInputComponent } from '../abstract-input' @Component({ providers: [ { provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SwitchComponent), multi: true, }, ], selector: 'pngx-input-switch', templateUrl: './switch.component.html', styleUrls: ['./switch.component.scss'], imports: [FormsModule, ReactiveFormsModule, NgClass, NgbTooltipModule], }) export class SwitchComponent extends AbstractInputComponent { @Input() showUnsetNote: boolean = false constructor() { super() } get isUnset(): boolean { return this.value === null || this.value === undefined } }