parent
cda611495b
commit
bf3fe98e63
@ -1,11 +1,24 @@
|
||||
import { Component } from '@angular/core';
|
||||
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
||||
import { NgSelectModule } from '@ng-select/ng-select';
|
||||
import { TranslateModule } from '@ngx-translate/core';
|
||||
import { pageSizeOptions } from '../../utils/app.constants';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
@Component({
|
||||
selector: 'app-ib-unblock-user',
|
||||
imports: [],
|
||||
imports: [TranslateModule, FormsModule, NgSelectModule, CommonModule, ReactiveFormsModule],
|
||||
templateUrl: './ib-unblock-user.component.html',
|
||||
styleUrl: './ib-unblock-user.component.scss'
|
||||
})
|
||||
export class IbUnblockUserComponent {
|
||||
renewalDataExpanded: boolean = true
|
||||
itemsPerPage: number = 5;
|
||||
pageSizeOptions = pageSizeOptions
|
||||
optionValue: any;
|
||||
|
||||
itemsPerPageChanged() {
|
||||
throw new Error('Method not implemented.');
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue