Fix: add missing icon imports to inputs

This commit is contained in:
shamoon 2025-02-10 22:47:00 -08:00
parent fdfea68576
commit ea94626b82
No known key found for this signature in database
2 changed files with 9 additions and 2 deletions

View File

@ -5,6 +5,7 @@ import {
NG_VALUE_ACCESSOR,
ReactiveFormsModule,
} from '@angular/forms'
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
import { AbstractInputComponent } from '../abstract-input'
@Component({
@ -18,7 +19,7 @@ import { AbstractInputComponent } from '../abstract-input'
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() {

View File

@ -5,6 +5,7 @@ import {
NG_VALUE_ACCESSOR,
ReactiveFormsModule,
} from '@angular/forms'
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
import { AbstractInputComponent } from '../abstract-input'
@Component({
@ -18,7 +19,12 @@ import { AbstractInputComponent } from '../abstract-input'
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 = ''