mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: add missing icon imports to inputs
This commit is contained in:
parent
fdfea68576
commit
ea94626b82
@ -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() {
|
||||||
|
@ -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 = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user