@c10t/nice-component-library 0.0.18 → 0.0.20
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,11 +2554,14 @@ class CvaTableComponent {
|
|
|
2542
2554
|
this.goToPageNumber = 1;
|
|
2543
2555
|
return;
|
|
2544
2556
|
}
|
|
2545
|
-
|
|
2557
|
+
if (this.goToPageNumber > this.getTotalPage()) {
|
|
2558
|
+
this.goToPageNumber = this.getTotalPage();
|
|
2559
|
+
}
|
|
2560
|
+
const item = window.document.querySelector('.go-to-page cva-counter-input .mat-mdc-form-field-infix input');
|
|
2546
2561
|
if (item && item.closest) {
|
|
2547
|
-
const itemClosest = item.closest('.mat-form-field-infix');
|
|
2562
|
+
const itemClosest = item.closest('.mat-mdc-form-field-infix');
|
|
2548
2563
|
if (itemClosest) {
|
|
2549
|
-
itemClosest.style.width = ($event.toString().length *
|
|
2564
|
+
itemClosest.style.width = ($event.toString().length * 15 + 20) + 'px';
|
|
2550
2565
|
}
|
|
2551
2566
|
}
|
|
2552
2567
|
}
|