iptdevs-design-system 3.1.269 → 3.1.271
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/cod/steps/cod-form-step-two/cod-form-step-two.component.mjs +3 -3
- package/fesm2015/iptdevs-design-system.mjs +2 -2
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -2
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -3492,7 +3492,7 @@ class CodFormStepTwoComponent extends CodFormSteps {
|
|
|
3492
3492
|
state: ['', [Validators.required], []],
|
|
3493
3493
|
city: ['', [Validators.required], []],
|
|
3494
3494
|
student_id_card_type: ['', [Validators.required], []],
|
|
3495
|
-
student_id_card: ['', [Validators.required, Validators.minLength(5), Validators.maxLength(20)]],
|
|
3495
|
+
student_id_card: [{ value: '', disabled: true }, [Validators.required, Validators.minLength(5), Validators.maxLength(20)]],
|
|
3496
3496
|
student_last_name: ['', [Validators.required, Validators.minLength(5), Validators.maxLength(32)]],
|
|
3497
3497
|
student_name: ['', [Validators.required, Validators.minLength(3), Validators.maxLength(32)]],
|
|
3498
3498
|
student_email: ['', [Validators.required, Validators.email]],
|
|
@@ -3504,7 +3504,7 @@ class CodFormStepTwoComponent extends CodFormSteps {
|
|
|
3504
3504
|
grade: ['', [Validators.required]],
|
|
3505
3505
|
civil_status: ['', [Validators.required]],
|
|
3506
3506
|
student_phone_indicative: ['', [Validators.required], []],
|
|
3507
|
-
student_phone_number: ['', [Validators.required, Validators.minLength(
|
|
3507
|
+
student_phone_number: ['', [Validators.required, Validators.minLength(8), Validators.maxLength(15)]],
|
|
3508
3508
|
password: [{ value: '', disabled: this.isEditCod }, [Validators.required, Validators.minLength(6)]],
|
|
3509
3509
|
re_password: [{ value: '', disabled: this.isEditCod }, [Validators.required, Validators.minLength(6)]],
|
|
3510
3510
|
});
|