iptdevs-design-system 3.1.940 → 3.1.941
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 -2
- package/fesm2015/iptdevs-design-system.mjs +3 -2
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +2 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -5056,6 +5056,7 @@ class CodFormStepTwoComponent extends CodFormSteps {
|
|
|
5056
5056
|
}
|
|
5057
5057
|
trackStudentIdCardChanges() {
|
|
5058
5058
|
console.log('entro aqui');
|
|
5059
|
+
this.idTypes = this.parametersAll?.TypeIdCardByCountryCol;
|
|
5059
5060
|
this.codFormStepTwo.controls['student_id_card'].valueChanges.pipe().subscribe(value => {
|
|
5060
5061
|
console.log('student_id_card value:', value); // Depuración
|
|
5061
5062
|
if (value && /[a-zA-Z]/.test(value)) {
|
|
@@ -5064,7 +5065,7 @@ class CodFormStepTwoComponent extends CodFormSteps {
|
|
|
5064
5065
|
}
|
|
5065
5066
|
else {
|
|
5066
5067
|
console.log('No letters, restoring idTypes'); // Depuración
|
|
5067
|
-
this.idTypes = this.parametersAll?.TypeIdCardByCountryCol;
|
|
5068
|
+
// this.idTypes = this.parametersAll?.TypeIdCardByCountryCol;
|
|
5068
5069
|
}
|
|
5069
5070
|
console.log('Current idTypes:', this.idTypes); // Depuración
|
|
5070
5071
|
});
|