You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
764 B
TypeScript
23 lines
764 B
TypeScript
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: [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() {}
|
|
|
|
}
|