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.
- package/esm2020/lib/components/atoms/input/input.component.mjs +3 -3
- package/esm2020/lib/components/forms/create-user-form/create-user-form.component.mjs +1 -3
- package/fesm2015/iptdevs-design-system.mjs +2 -4
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -4
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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 !== '')
|
|
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 !== '')
|
|
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
|
}
|