NG_VALUE_ACCESSOR,
ReactiveFormsModule,
} from '@angular/forms'
+import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
import { AbstractInputComponent } from '../abstract-input'
@Component({
selector: 'pngx-input-check',
templateUrl: './check.component.html',
styleUrls: ['./check.component.scss'],
- imports: [FormsModule, ReactiveFormsModule, NgClass],
+ imports: [FormsModule, ReactiveFormsModule, NgClass, NgxBootstrapIconsModule],
})
export class CheckComponent extends AbstractInputComponent<boolean> {
constructor() {
NG_VALUE_ACCESSOR,
ReactiveFormsModule,
} from '@angular/forms'
+import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
import { AbstractInputComponent } from '../abstract-input'
@Component({
selector: 'pngx-input-monetary',
templateUrl: './monetary.component.html',
styleUrls: ['./monetary.component.scss'],
- imports: [CurrencyPipe, FormsModule, ReactiveFormsModule],
+ imports: [
+ CurrencyPipe,
+ FormsModule,
+ ReactiveFormsModule,
+ NgxBootstrapIconsModule,
+ ],
})
export class MonetaryComponent extends AbstractInputComponent<string> {
public currency: string = ''