@c10t/nice-component-library 0.0.18 → 0.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -470,11 +470,23 @@ class CustomDialogDataConfigModel {
470
470
  class Principal {
471
471
  username = null;
472
472
  firstName = null;
473
+ middleName = null;
473
474
  lastName = null;
475
+ fullName = null;
476
+ gender = null;
477
+ email = null;
478
+ phone = null;
479
+ voAuthentication = null;
480
+ orgId = null;
481
+ orgCode = null;
482
+ orgName = null;
483
+ orgType = null;
484
+ orgForm = null;
485
+ orgSapId = null;
486
+ orgPath = null;
487
+ orgIsApproveVo = null;
474
488
  roles = [];
475
- mustChangePassword;
476
- attemptLoginFailed = 0;
477
- enabled = true;
489
+ mustChangePassword = null;
478
490
  }
479
491
 
480
492
  class DialogImportFileConfigModel {
@@ -2542,6 +2554,9 @@ class CvaTableComponent {
2542
2554
  this.goToPageNumber = 1;
2543
2555
  return;
2544
2556
  }
2557
+ if (this.goToPageNumber > this.getTotalPage()) {
2558
+ this.goToPageNumber = this.getTotalPage();
2559
+ }
2545
2560
  const item = window.document.querySelector('.go-to-page cva-counter-input .mat-form-field-infix input');
2546
2561
  if (item && item.closest) {
2547
2562
  const itemClosest = item.closest('.mat-form-field-infix');