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, NG_VALUE_ACCESSOR,
ReactiveFormsModule, ReactiveFormsModule,
} from '@angular/forms' } from '@angular/forms'
import { NgxBootstrapIconsModule } from 'ngx-bootstrap-icons'
import { AbstractInputComponent } from '../abstract-input' import { AbstractInputComponent } from '../abstract-input'
@Component({ @Component({
@ -18,7 +19,7 @@ import { AbstractInputComponent } from '../abstract-input'
selector: 'pngx-input-check', selector: 'pngx-input-check',
templateUrl: './check.component.html', templateUrl: './check.component.html',
styleUrls: ['./check.component.scss'], styleUrls: ['./check.component.scss'],
imports: [FormsModule, ReactiveFormsModule, NgClass], imports: [FormsModule, ReactiveFormsModule, NgClass, NgxBootstrapIconsModule],
}) })
export class CheckComponent extends AbstractInputComponent<boolean> { export class CheckComponent extends AbstractInputComponent<boolean> {
constructor() { constructor() {

View File

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