iptdevs-design-system 3.1.270 → 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 +2 -2
- package/fesm2015/iptdevs-design-system.mjs +1 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +1 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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
|
});
|