iptdevs-design-system 3.1.269 → 3.1.270
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
|
@@ -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]],
|