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.
45 lines
1.1 KiB
TypeScript
45 lines
1.1 KiB
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { Component } from '@angular/core';
|
|
import { FormGroup, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
import { NgSelectModule } from '@ng-select/ng-select';
|
|
import { TranslateModule } from '@ngx-translate/core';
|
|
import { pageSizeOptions } from '../../utils/app.constants';
|
|
|
|
@Component({
|
|
selector: 'app-setup-user',
|
|
standalone: true,
|
|
imports: [TranslateModule, ReactiveFormsModule, FormsModule, CommonModule, NgSelectModule],
|
|
templateUrl: './setup-user.component.html',
|
|
styleUrl: './setup-user.component.scss'
|
|
})
|
|
export class SetupUserComponent {
|
|
allItems: any[] = [];
|
|
currentPage: number = 1;
|
|
pageSizeOptions = pageSizeOptions
|
|
itemsPerPage: number = 5;
|
|
searchText: any;
|
|
createUserForm!: FormGroup<any>;
|
|
|
|
nextPage() {
|
|
throw new Error('Method not implemented.');
|
|
}
|
|
|
|
previousPage() {
|
|
throw new Error('Method not implemented.');
|
|
}
|
|
|
|
totalPages() {
|
|
return 1;
|
|
}
|
|
|
|
toggleCard(arg0: string) {
|
|
throw new Error('Method not implemented.');
|
|
}
|
|
|
|
onSubmit() {
|
|
throw new Error('Method not implemented.');
|
|
}
|
|
|
|
|
|
}
|