iptdevs-design-system 2.6.9 → 2.6.10

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.
@@ -324,7 +324,7 @@ InputComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version
324
324
 
325
325
  <label [ngClass]="{'labelUp': formControl.value !== ''}">{{ placeHolder }}</label>
326
326
 
327
- <p *ngIf="(formControl.invalid && formControl.value !== '') || formControl.touched">
327
+ <p *ngIf="(formControl.invalid && formControl.value !== '')">
328
328
  {{ validateText }}
329
329
  </p>
330
330
  </div>
@@ -371,7 +371,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
371
371
 
372
372
  <label [ngClass]="{'labelUp': formControl.value !== ''}">{{ placeHolder }}</label>
373
373
 
374
- <p *ngIf="(formControl.invalid && formControl.value !== '') || formControl.touched">
374
+ <p *ngIf="(formControl.invalid && formControl.value !== '')">
375
375
  {{ validateText }}
376
376
  </p>
377
377
  </div>
@@ -1129,8 +1129,6 @@ class CreateUserFormComponent {
1129
1129
  this.loader = false;
1130
1130
  }
1131
1131
  ngOnInit() {
1132
- console.log(this.userType);
1133
- console.log(this.getRolesOptions());
1134
1132
  this.initForm();
1135
1133
  this.getParameters();
1136
1134
  }